@charset "UTF-8";
/** 共通 **/
* {
  font-family: "Jomolhari", serif;
}

html, body {
  overflow-x: hidden;
}

.tour-tab-content {
  transition: opacity 0.3s ease;
}

h1 {
  font-size: clamp(3.125rem, 0.78125rem + 6.25vw, 5.625rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(1.5rem, 0.2109375rem + 3.4375vw, 2.875rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.25rem, 0.78125rem + 1.25vw, 1.75rem);
  font-weight: 400;
}

p, th, td {
  font-size: clamp(0.875rem, 0.640625rem + 0.625vw, 1.125rem);
  font-weight: 400;
}

span {
  font-size: clamp(1rem, 0.53125rem + 1.25vw, 1.5rem);
  font-weight: 400;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.button {
  border-radius: 10px;
  padding: 20px 10px;
  width: 100%;
  font-size: 20px;
  max-width: 300px;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .button {
    padding: 15px 5px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.button:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.button-A {
  background-color: #CD549A;
  color: #FFFFFF;
}
.button-A:hover {
  background-color: #FFFFFF;
  color: #CD549A;
  border: 1px solid #CD549A;
}
.button-B {
  background-color: #FFFFFF;
  color: #CD549A;
  border: 1px solid #CD549A;
}
.button-B:hover {
  background-color: #CD549A;
  color: #FFFFFF;
}
.button-C {
  font-size: clamp(1.5rem, 1.1484375rem + 0.9375vw, 1.875rem);
  line-height: 34px;
}

.section {
  width: 100%;
  height: 100vh;
}

/** Loading **/
#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #284155;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1.6s ease-out, visibility 1.6s ease-out, transform 1.6s ease-out, filter 1.6s ease-out;
}
#loading .fade-out {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.05);
  filter: blur(4px);
}
#loading .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #FAFAFA;
  border-top-color: #CD549A;
  border-radius: 50px;
  animation: spin 3s linear infinite;
  transition: opacity 3s ease;
  -webkit-transition: opacity 3s ease;
  -moz-transition: opacity 3s ease;
  -ms-transition: opacity 3s ease;
  -o-transition: opacity 3s ease;
  -webkit-animation: spin 3s linear infinite;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/** Animation **/
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  will-change: opacity, transform;
  -webkit-transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  -moz-transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  -ms-transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  -o-transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/** Header **/
header {
  position: fixed;
  top: 3rem;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 70px;
}
@media screen and (max-width: 767px) {
  header {
    top: 1.5rem;
    height: 50px;
    padding: 0 10px;
  }
}
header .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  width: 90%;
  border-radius: 50px;
  margin: 0 auto;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  height: 70px;
  padding: 0 2rem;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.2509803922);
}
@media screen and (max-width: 767px) {
  header .header {
    position: relative;
    box-shadow: none;
    width: 100%;
    padding: 0 5%;
    height: 50px;
  }
  header .header .hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 3001;
  }
  header .header .hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background-color: #CD549A;
    border-radius: 3px;
    transition: all 0.3s ease;
  }
  header .header .hamburger span:nth-child(1) {
    top: 0;
  }
  header .header .hamburger span:nth-child(2) {
    top: 8px;
  }
  header .header .hamburger span:nth-child(3) {
    top: 16px;
  }
  header .header nav {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FFFFFF;
    width: 100%;
    display: none;
    height: 100vh;
    top: -1.5rem;
  }
  header .header nav ul {
    flex-direction: column;
  }
  header .header nav ul li {
    margin: 1rem 0 !important;
    text-align: center;
  }
  header .header.menu-open nav {
    display: block;
    padding: 6rem 0;
    box-shadow: 4px 4px 4px rgba(40, 65, 85, 0.5019607843);
  }
  header .header.menu-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 8px;
  }
  header .header.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
  }
  header .header.menu-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 8px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
  }
}
header .header .logo {
  width: 200px;
  min-width: 200px;
}
@media screen and (max-width: 767px) {
  header .header .logo {
    min-width: 140px;
    width: 140px;
    margin-left: -15px;
  }
}
header .header nav ul {
  display: flex;
  align-items: center;
  justify-content: right;
  flex-wrap: wrap;
}
header .header nav ul li {
  margin-left: 2rem;
}
header .header nav ul li a {
  color: #CD549A;
  font-size: clamp(1.125rem, 1.0078125rem + 0.3125vw, 1.25rem);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  header .header nav ul li a {
    font-size: clamp(1.5rem, 1.3828125rem + 0.3125vw, 1.625rem);
  }
}
header .header nav ul li a:hover {
  color: rgba(205, 84, 155, 0.4117647059);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

/** MV **/
.mv-wrap {
  position: relative;
}
.mv-wrap .bg-img {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background-color: #000;
}
.mv-wrap .bg-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  filter: brightness(50%);
  transform: scale(1);
  transition: opacity 1.8s ease, transform 8s ease;
}
.mv-wrap .bg-img img.active {
  opacity: 1;
  transform: scale(1.1);
  z-index: 1;
}
.mv-wrap .catch {
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .mv-wrap .catch {
    margin-top: 0;
  }
}
.mv-wrap .catch .title {
  color: #FFFFFF;
  text-align: center;
}
.mv-wrap .catch .title h1 {
  text-shadow: 3px 3px 3px black;
}
.mv-wrap .catch .button {
  box-shadow: 3px 3px 3px black;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .mv-wrap .catch .button {
    margin-top: 3rem;
  }
}

/** About **/
.about-wrap .mission, .about-wrap .vision, .about-wrap .value {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10rem 5rem;
}
@media screen and (max-width: 767px) {
  .about-wrap .mission, .about-wrap .vision, .about-wrap .value {
    padding: 7rem 5%;
  }
}
.about-wrap .mission:nth-child(odd) h1, .about-wrap .vision:nth-child(odd) h1, .about-wrap .value:nth-child(odd) h1 {
  margin-right: auto;
  text-align: left;
}
.about-wrap .mission:nth-child(odd) p, .about-wrap .vision:nth-child(odd) p, .about-wrap .value:nth-child(odd) p {
  margin-left: auto;
}
.about-wrap .mission:nth-child(even) h1, .about-wrap .vision:nth-child(even) h1, .about-wrap .value:nth-child(even) h1 {
  text-align: end;
  margin-left: auto;
}
.about-wrap .mission:nth-child(even) p, .about-wrap .vision:nth-child(even) p, .about-wrap .value:nth-child(even) p {
  margin-right: auto;
}
.about-wrap .mission {
  background-color: #FFFFFF;
  color: #CD549A;
}
.about-wrap .vision {
  background-color: #CD549A;
  color: #FFFFFF;
}
.about-wrap .value {
  background-color: #284155;
  color: #FFFFFF;
}
.about-wrap h1, .about-wrap p {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .about-wrap h1, .about-wrap p {
    width: 80%;
  }
}
.about-wrap p {
  line-height: 30px;
  margin-top: 30vh;
}
@media screen and (max-width: 767px) {
  .about-wrap p {
    line-height: 25px;
  }
}

/** Company Info **/
.info-wrap {
  padding: 6rem 0;
}
@media screen and (max-width: 767px) {
  .info-wrap {
    padding: 4rem 0;
  }
}
.info-wrap .title {
  margin-left: auto;
  text-align: right;
  width: 60%;
  padding: 0 5rem;
}
@media screen and (max-width: 767px) {
  .info-wrap .title {
    text-align: center;
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
}
.info-wrap .title h1 {
  color: #284155;
}
@media screen and (max-width: 767px) {
  .info-wrap .title h1 {
    line-height: 70px;
  }
}
.info-wrap .button {
  margin: 1rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  .info-wrap .button {
    margin: 0 auto;
  }
}
.info-wrap .button a p {
  color: #284155;
}
@media screen and (max-width: 767px) {
  .info-wrap .button a p {
    text-align: center;
  }
}
.info-wrap .roll {
  display: flex;
  animation: scroll-left 60s linear infinite;
  width: -moz-max-content;
  width: max-content;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .info-wrap .roll {
    margin-top: 1rem;
  }
}
.info-wrap .roll div {
  flex-shrink: 0;
  width: 500px;
  height: 250px;
}
@media screen and (max-width: 767px) {
  .info-wrap .roll div {
    width: 220px;
    height: 120px;
  }
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/** Our Business **/
.business-wrap {
  padding: 0 5rem 6rem 5rem;
}
@media screen and (max-width: 767px) {
  .business-wrap {
    padding: 0 5% 4rem 5%;
  }
}
@media screen and (max-width: 767px) {
  .business-wrap .title {
    text-align: center;
  }
}
.business-wrap .title h1 {
  color: #284155;
}
.business-wrap .land {
  padding: 5rem 3rem;
  background-color: #FAFAFA;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin: 5rem 10px 10px 10px;
}
@media screen and (max-width: 767px) {
  .business-wrap .land {
    border-radius: 5px;
    padding: 3rem 5%;
    margin: 1rem 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.business-wrap .land .title h2 {
  color: #284155;
}
.business-wrap .land .services {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem 2rem;
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .business-wrap .land .services {
    flex-direction: column;
    padding-top: 3rem;
    gap: 3rem 0;
  }
}
.business-wrap .land .services .service {
  display: flex;
  width: calc(50% - 1rem);
  align-items: center;
}
@media screen and (max-width: 767px) {
  .business-wrap .land .services .service {
    width: 100%;
    flex-direction: column;
  }
}
.business-wrap .land .services .service h3, .business-wrap .land .services .service p {
  color: #284155;
}
.business-wrap .land .services .service .icon {
  width: 20%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .business-wrap .land .services .service .icon {
    width: 30%;
  }
}
.business-wrap .land .services .service .icon img {
  width: 60px;
  height: 60px;
}
.business-wrap .land .services .service .description {
  padding: 0 12px;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .business-wrap .land .services .service .description {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
}
.business-wrap .land .services .service .description p {
  margin-top: 12px;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .business-wrap .land .services .service .description p {
    line-height: 20px;
  }
}
.business-wrap .flexible {
  display: flex;
  color: #FFFFFF;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible {
    flex-direction: column;
    margin-bottom: 30px;
  }
}
.business-wrap .flexible:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible:nth-child(even) {
    flex-direction: column;
  }
}
.business-wrap .flexible:nth-child(even) .content {
  background-color: #284155;
}
.business-wrap .flexible:nth-child(odd) .content {
  background-color: #CD549A;
}
.business-wrap .flexible .img, .business-wrap .flexible .content {
  width: 50%;
  margin: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible .img, .business-wrap .flexible .content {
    width: 100%;
    margin: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.business-wrap .flexible .img img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible .img img {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -ms-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
  }
}
.business-wrap .flexible .content {
  padding: 9rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible .content {
    padding: 3rem 5%;
    border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -ms-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
  }
}
.business-wrap .flexible .content .description {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible .content .description {
    margin-top: 1.5rem;
    text-align: center;
  }
}
.business-wrap .flexible .content .description p {
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .business-wrap .flexible .content .description p {
    line-height: 20px;
  }
}

/** Journey Routes **/
.tour-wrap {
  background-color: #FAFAFA;
  padding: 6rem 5rem;
}
@media screen and (max-width: 767px) {
  .tour-wrap {
    padding: 4rem 5%;
  }
}
.tour-wrap .title h1 {
  color: #284155;
  text-align: center;
}
.tour-wrap .buttons {
  margin-top: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 4rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tour-wrap .buttons {
    margin-top: 2rem;
    gap: 0.5rem;
    padding: 0;
  }
}
.tour-wrap .buttons .button {
  width: calc(30% - 1rem);
  margin: 0;
}
@media screen and (max-width: 767px) {
  .tour-wrap .buttons .button {
    width: calc(50% - 1rem);
  }
}
.tour-wrap .description {
  margin: 0 auto;
  width: 60%;
  padding: 3rem 0;
}
@media screen and (max-width: 767px) {
  .tour-wrap .description {
    width: 100%;
    padding: 2rem 0;
  }
}
.tour-wrap .description p {
  color: #284155;
  text-align: center;
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .tour-wrap .description p {
    line-height: 25px;
  }
}
.tour-wrap .routes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4rem;
}
@media screen and (max-width: 767px) {
  .tour-wrap .routes {
    gap: 2rem 0;
    flex-direction: column;
  }
}
.tour-wrap .routes .route {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 4rem;
}
@media screen and (max-width: 767px) {
  .tour-wrap .routes .route {
    padding: 0;
    width: 70%;
    margin: 0 auto;
  }
}
.tour-wrap .routes .route::after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  width: 6rem;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translate(-80%, 50%);
  -webkit-transform: translate(-80%, 50%);
  -moz-transform: translate(-80%, 50%);
  -ms-transform: translate(-80%, 50%);
  -o-transform: translate(-80%, 50%);
}
@media screen and (max-width: 767px) {
  .tour-wrap .routes .route::after {
    width: 1px;
    height: 1.2rem;
    top: -1.5rem;
    left: 1rem;
    transform: translate(0, 0);
  }
}
.tour-wrap .routes .route:first-child::after {
  content: none;
}
.tour-wrap .routes .route .index {
  background-color: #284155;
  color: #FFFFFF;
  text-align: center;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  padding-top: 8px;
}
@media screen and (max-width: 767px) {
  .tour-wrap .routes .route .index {
    width: 35px;
    height: 30px;
    padding-top: 6px;
  }
}
.tour-wrap .routes .route .name {
  color: #284155;
  padding-left: 10px;
  word-break: break-all;
}
@media screen and (max-width: 767px) {
  .tour-wrap .routes .route .name {
    width: 100%;
  }
}

/** Achievements **/
.achievement-wrap {
  padding: 6rem 5rem;
}
@media screen and (max-width: 767px) {
  .achievement-wrap {
    padding: 4rem 5%;
  }
}
.achievement-wrap .title {
  text-align: left;
  color: #284155;
}
@media screen and (max-width: 767px) {
  .achievement-wrap .title {
    text-align: center;
  }
}
.achievement-wrap .slider-wrap {
  width: 350px;
  margin-left: 30%;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .achievement-wrap .slider-wrap {
    width: 90%;
    margin: 0 auto;
  }
}
.achievement-wrap .slider {
  display: flex;
  gap: 2rem;
  transition: all 0.4s ease;
}
.achievement-wrap .slide {
  flex-shrink: 0;
  width: 100%;
  transform: scale(0.9);
  opacity: 0.6;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  -webkit-transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  -moz-transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  -ms-transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
  -o-transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
}
.achievement-wrap .slide a {
  color: #284155;
}
.achievement-wrap .slide img {
  margin-bottom: 10px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .achievement-wrap .slide img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.achievement-wrap .slide p {
  margin-top: 10px;
}
.achievement-wrap .slide.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 1;
}
.achievement-wrap .slide.active.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 1;
}
.achievement-wrap .slide.active img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-bottom: 10px;
}
.achievement-wrap .slide.active p {
  margin-top: 10px;
}
.achievement-wrap .slide.active.active {
  transform: scale(1.1);
  z-index: 2;
  opacity: 1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.achievement-wrap .slider-nav {
  display: flex;
  justify-content: right;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .achievement-wrap .slider-nav {
    margin-top: 5rem;
  }
}
.achievement-wrap .slider-nav .button {
  width: 48px;
  height: 48px;
  background-color: #CD549A;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 48px;
  margin: 0 1rem;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s;
}
.achievement-wrap .slider-nav .button:hover {
  background-color: #FFFFFF;
  border: 1px solid #CD549A;
  color: #CD549A;
}

/** News **/
.news-wrap {
  padding: 6rem 5rem;
  background-color: #284155;
  color: #FFFFFF;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .news-wrap {
    padding: 4rem 5%;
    flex-direction: column;
  }
}
.news-wrap .title {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .news-wrap .title {
    width: 100%;
  }
}
.news-wrap .list {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .news-wrap .list {
    width: 100%;
  }
}
.news-wrap .list ul li {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.news-wrap .list ul li:hover {
  color: rgba(255, 255, 255, 0.4117647059);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.news-wrap .list ul li .img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .news-wrap .list ul li .img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.news-wrap .list ul li .img img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .news-wrap .list ul li .img img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.news-wrap .list ul li .content {
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .news-wrap .list ul li .content {
    padding-left: 15px;
    width: 70%;
  }
}
.news-wrap .list ul li .content .date {
  font-size: clamp(0.75rem, 0.6328125rem + 0.3125vw, 0.875rem);
}
.news-wrap .list ul li .content div {
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .news-wrap .list ul li .content div {
    padding-top: 5px;
  }
}

/** Contanct Form **/
.contact-wrap {
  padding: 15rem 5rem;
}
@media screen and (max-width: 767px) {
  .contact-wrap {
    padding: 4rem 5%;
  }
}
.contact-wrap .title {
  text-align: center;
}
.contact-wrap .title h1 {
  color: #284155;
}
.contact-wrap .button {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contact-wrap .button {
    margin-top: 2rem;
  }
}

/** Footer **/
footer .footer {
  display: flex;
  justify-content: space-between;
  background-color: #FAFAFA;
  padding: 4rem 2rem 6rem 2rem;
}
@media screen and (max-width: 767px) {
  footer .footer {
    padding: 4rem 5%;
    flex-direction: column;
  }
}
footer .footer .logo {
  width: 12%;
  min-width: 180px;
}
@media screen and (max-width: 767px) {
  footer .footer .logo {
    min-width: 120px;
    margin-left: auto;
  }
}
footer .footer nav {
  width: 50%;
}
@media screen and (max-width: 767px) {
  footer .footer nav {
    padding: 3rem 10px;
  }
}
footer .footer nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  justify-content: left;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  footer .footer nav ul {
    height: 15vh;
  }
}
footer .footer nav ul li {
  margin-right: 5rem;
}
footer .footer nav ul li a {
  color: #CD549A;
  font-size: clamp(1rem, 0.765625rem + 0.625vw, 1.25rem);
}
footer .footer nav ul li a:hover {
  color: rgba(205, 84, 155, 0.4117647059);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
footer .under {
  background-color: #CD549A;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 4rem;
}
@media screen and (max-width: 767px) {
  footer .under {
    padding: 1rem 5%;
  }
}
footer .under p {
  color: #FFFFFF;
}

/** Modal **/
.contact-modal-close {
  font-size: 30px;
  text-align: right;
  color: #284155;
  cursor: pointer;
}
.contact-modal-send {
  padding: 15px 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 250px;
  color: #284155;
  background-color: #EFEFEF;
}
@media screen and (max-width: 767px) {
  .contact-modal-send {
    border-radius: 5px;
  }
}
.contact-modal .content {
  height: 35vh;
  overflow-x: scroll;
}
.contact-modal .wpcf7-not-valid-tip {
  font-size: 14px;
}

.company-modal-close,
.privacy-modal-close {
  padding: 15px 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 250px;
  color: #284155;
  background-color: #EFEFEF;
}
@media screen and (max-width: 767px) {
  .company-modal-close,
  .privacy-modal-close {
    border-radius: 5px;
  }
}

.contact-modal,
.company-modal,
.privacy-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
}
.contact-modal h2,
.company-modal h2,
.privacy-modal h2 {
  color: #284155;
}
.contact-modal-content,
.company-modal-content,
.privacy-modal-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 1001;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .contact-modal-content,
  .company-modal-content,
  .privacy-modal-content {
    padding: 2.5rem 1rem;
    border-radius: 5px;
  }
}
.contact-modal .content,
.company-modal .content,
.privacy-modal .content {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .contact-modal .content,
  .company-modal .content,
  .privacy-modal .content {
    margin: 5vh 0;
  }
}
.contact-modal .close-button,
.company-modal .close-button,
.privacy-modal .close-button {
  text-align: center;
}
.contact-modal .privacy-modal-content .content,
.company-modal .privacy-modal-content .content,
.privacy-modal .privacy-modal-content .content {
  padding: 15px;
  border: 1px solid #CD549A;
  border-radius: 10px;
  height: 50vh;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .contact-modal .privacy-modal-content .content,
  .company-modal .privacy-modal-content .content,
  .privacy-modal .privacy-modal-content .content {
    height: 56vh;
  }
}
.contact-modal .privacy-modal-content .content h3,
.company-modal .privacy-modal-content .content h3,
.privacy-modal .privacy-modal-content .content h3 {
  color: #284155;
  line-height: 30px;
}
.contact-modal .privacy-modal-content .content p,
.company-modal .privacy-modal-content .content p,
.privacy-modal .privacy-modal-content .content p {
  color: #284155;
  line-height: 22px;
  margin: 25px 0;
}
.contact-modal .privacy-modal-content .content ol,
.company-modal .privacy-modal-content .content ol,
.privacy-modal .privacy-modal-content .content ol {
  list-style: decimal;
}
.contact-modal .privacy-modal-content .content ol li,
.company-modal .privacy-modal-content .content ol li,
.privacy-modal .privacy-modal-content .content ol li {
  color: #284155;
  line-height: 30px;
  line-height: 22px;
  margin: 25px 0;
  font-size: clamp(0.875rem, 0.640625rem + 0.625vw, 1.125rem);
  font-weight: 400;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .contact-modal .privacy-modal-content .content ol li,
  .company-modal .privacy-modal-content .content ol li,
  .privacy-modal .privacy-modal-content .content ol li {
    margin-left: 10px;
  }
}
@media screen and (min-width: 768px) {
  .contact-modal .company-modal-content .sp,
  .company-modal .company-modal-content .sp,
  .privacy-modal .company-modal-content .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .contact-modal .company-modal-content .pc,
  .company-modal .company-modal-content .pc,
  .privacy-modal .company-modal-content .pc {
    display: none;
  }
}
.contact-modal .company-modal-content .content,
.company-modal .company-modal-content .content,
.privacy-modal .company-modal-content .content {
  height: 55vh;
  overflow-x: scroll;
}
.contact-modal .company-modal-content .content .company-info-table,
.company-modal .company-modal-content .content .company-info-table,
.privacy-modal .company-modal-content .content .company-info-table {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 767px) {
  .contact-modal .company-modal-content .content .company-info-table tr,
  .company-modal .company-modal-content .content .company-info-table tr,
  .privacy-modal .company-modal-content .content .company-info-table tr {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.contact-modal .company-modal-content .content .company-info-table th, .contact-modal .company-modal-content .content .company-info-table td,
.company-modal .company-modal-content .content .company-info-table th,
.company-modal .company-modal-content .content .company-info-table td,
.privacy-modal .company-modal-content .content .company-info-table th,
.privacy-modal .company-modal-content .content .company-info-table td {
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 25px 15px;
  text-align: left;
  line-height: 22px;
}
@media screen and (max-width: 767px) {
  .contact-modal .company-modal-content .content .company-info-table th, .contact-modal .company-modal-content .content .company-info-table td,
  .company-modal .company-modal-content .content .company-info-table th,
  .company-modal .company-modal-content .content .company-info-table td,
  .privacy-modal .company-modal-content .content .company-info-table th,
  .privacy-modal .company-modal-content .content .company-info-table td {
    padding: 15px 8px;
  }
}
.contact-modal .company-modal-content .content .company-info-table th,
.company-modal .company-modal-content .content .company-info-table th,
.privacy-modal .company-modal-content .content .company-info-table th {
  background-color: #2f4a5c;
  color: white;
  text-align: center;
  white-space: nowrap;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .contact-modal .company-modal-content .content .company-info-table th,
  .company-modal .company-modal-content .content .company-info-table th,
  .privacy-modal .company-modal-content .content .company-info-table th {
    width: 100%;
    text-align: left;
  }
}
.contact-modal .company-modal-content .content .company-info-table td,
.company-modal .company-modal-content .content .company-info-table td,
.privacy-modal .company-modal-content .content .company-info-table td {
  background-color: #fff;
  color: #2f4a5c;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .contact-modal .company-modal-content .content .company-info-table td,
  .company-modal .company-modal-content .content .company-info-table td,
  .privacy-modal .company-modal-content .content .company-info-table td {
    width: 100%;
  }
}
.contact-modal .company-modal-content .content .company-info-table .address-header,
.company-modal .company-modal-content .content .company-info-table .address-header,
.privacy-modal .company-modal-content .content .company-info-table .address-header {
  background-color: #2f4a5c;
  color: white;
  text-align: center;
  font-weight: bold;
  vertical-align: top;
  width: 35%;
}
.contact-modal .company-modal-content .content .company-info-table .address-cell,
.company-modal .company-modal-content .content .company-info-table .address-cell,
.privacy-modal .company-modal-content .content .company-info-table .address-cell {
  background-color: #fff;
  color: #2f4a5c;
  vertical-align: top;
  padding: 25px 15px;
  width: 35%;
}
.contact-modal .company-modal-content .content .company-info-table .address-cell div,
.company-modal .company-modal-content .content .company-info-table .address-cell div,
.privacy-modal .company-modal-content .content .company-info-table .address-cell div {
  margin-bottom: 1rem;
}
.contact-modal .contact-modal-content,
.company-modal .contact-modal-content,
.privacy-modal .contact-modal-content {
  color: #284155;
  overflow-x: scroll;
}
@media screen and (max-width: 767px) {
  .contact-modal .contact-modal-content,
  .company-modal .contact-modal-content,
  .privacy-modal .contact-modal-content {
    padding: 2rem 1rem;
  }
}
.contact-modal .contact-modal-content p,
.company-modal .contact-modal-content p,
.privacy-modal .contact-modal-content p {
  margin-top: 15px;
  padding: 0 5px;
}
.contact-modal .contact-modal-content .content .form-flex,
.company-modal .contact-modal-content .content .form-flex,
.privacy-modal .contact-modal-content .content .form-flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-modal .contact-modal-content .content .form-flex,
  .company-modal .contact-modal-content .content .form-flex,
  .privacy-modal .contact-modal-content .content .form-flex {
    flex-direction: column;
  }
}
.contact-modal .contact-modal-content .content .form-flex .item,
.company-modal .contact-modal-content .content .form-flex .item,
.privacy-modal .contact-modal-content .content .form-flex .item {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact-modal .contact-modal-content .content .form-flex .item,
  .company-modal .contact-modal-content .content .form-flex .item,
  .privacy-modal .contact-modal-content .content .form-flex .item {
    width: 100%;
  }
}
.contact-modal .contact-modal-content .content .item,
.company-modal .contact-modal-content .content .item,
.privacy-modal .contact-modal-content .content .item {
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  margin: 15px 0;
}
@media screen and (max-width: 767px) {
  .contact-modal .contact-modal-content .content .item,
  .company-modal .contact-modal-content .content .item,
  .privacy-modal .contact-modal-content .content .item {
    padding: 0 5px;
  }
}
.contact-modal .contact-modal-content .content .item input,
.company-modal .contact-modal-content .content .item input,
.privacy-modal .contact-modal-content .content .item input {
  border-bottom: 1px solid #CD549A;
  margin-top: 8px;
  height: 35px;
  padding: 0 10px;
  outline: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .contact-modal .contact-modal-content .content .item input,
  .company-modal .contact-modal-content .content .item input,
  .privacy-modal .contact-modal-content .content .item input {
    height: 30px;
    padding: 0 5px;
    margin-top: 0;
  }
}

.wpcf7-spinner {
  position: absolute !important;
}

.single-post_wrap,
.single-achiwvement_wrap {
  width: 90%;
  margin: auto;
  max-width: 1000px;
  padding: 200px 0;
  color: #284155;
}
@media screen and (max-width: 767px) {
  .single-post_wrap,
  .single-achiwvement_wrap {
    padding: 100px 0;
  }
}
.single-post_wrap .date,
.single-achiwvement_wrap .date {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .date,
  .single-achiwvement_wrap .date {
    margin: 20px 0;
  }
}
.single-post_wrap .thumbnail img,
.single-achiwvement_wrap .thumbnail img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .thumbnail img,
  .single-achiwvement_wrap .thumbnail img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}
.single-post_wrap .content,
.single-achiwvement_wrap .content {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .content,
  .single-achiwvement_wrap .content {
    margin-top: 20px;
  }
}
.single-post_wrap .content p,
.single-achiwvement_wrap .content p {
  line-height: 30px;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .content p,
  .single-achiwvement_wrap .content p {
    line-height: 22px;
  }
}
.single-post_wrap .content h1, .single-post_wrap .content h2, .single-post_wrap .content h3,
.single-achiwvement_wrap .content h1,
.single-achiwvement_wrap .content h2,
.single-achiwvement_wrap .content h3 {
  margin-bottom: 10px;
}
.single-post_wrap .content ul,
.single-achiwvement_wrap .content ul {
  list-style-type: disc;
  padding: 0 2%;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .content ul,
  .single-achiwvement_wrap .content ul {
    padding: 0 5%;
  }
}
.single-post_wrap .content ol,
.single-achiwvement_wrap .content ol {
  list-style-type: decimal;
  padding: 0 2%;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .content ol,
  .single-achiwvement_wrap .content ol {
    padding: 0 5%;
  }
}
.single-post_wrap .content li,
.single-achiwvement_wrap .content li {
  margin: 8px 0;
}
.single-post_wrap .content img,
.single-achiwvement_wrap .content img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .single-post_wrap .content img,
  .single-achiwvement_wrap .content img {
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
}/*# sourceMappingURL=style.css.map */