@charset "UTF-8";
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --navy-color: #142335;
  --black-color: #262626;
  --gray-color: #f2f2f2;
  --gray-color2: #ebf0eb;
  --green-color: #617d64;
  --blue-color: #515b8e;
}

.secTitle2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0 0 48px;
}
@media (max-width: 1024px) {
  .secTitle2 {
    font-size: 2.2rem;
    margin: 0 0 20px;
    letter-spacing: 0.08em;
  }
}
.secTitle2 small.en {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
  margin: 0 auto 24px;
}
@media (max-width: 1024px) {
  .secTitle2 small.en {
    font-size: 1.2rem;
  }
}

.secTitle3 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}
@media (max-width: 1024px) {
  .secTitle3 {
    font-size: 2rem;
    margin: 0 0 16px;
  }
}

.btn2 {
  margin: 0;
}
.btn2 a {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 100vmax;
  background: var(--navy-color);
  color: var(--gray-color);
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9;
  min-width: 250px;
  min-height: 54px;
  padding: 10px calc(0.5em + 20px) 8px;
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .btn2 a {
    font-size: 1.3rem;
    line-height: 1.6;
    width: 78%;
    margin-inline: auto;
    padding: 10px calc(0.5em + 16px) 8px;
  }
}
.btn2 a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 8px;
  height: 8px;
  border-right: 1px solid var(--gray-color);
  border-bottom: 1px solid var(--gray-color);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .btn2 a::before {
    right: 16px;
    width: 6px;
    height: 6px;
  }
}
.btn2 a:hover {
  color: inherit;
  opacity: 1;
}
.btn2 a:hover::before {
  right: 16px;
}
@media (max-width: 1024px) {
  .btn2 a:hover::before {
    right: 13px;
  }
}
.btn2.clear a {
  background: transparent;
  border: 1px solid var(--gray-color);
}
.btn2.white a {
  background: #fff;
  color: var(--navy-color);
  border: 1px solid var(--navy-color);
}
.btn2.white a::before {
  border-color: var(--navy-color);
}

.btnList {
  display: flex;
  justify-content: center;
  gap: 12px 40px;
}
@media (max-width: 1024px) {
  .btnList {
    flex-direction: column;
  }
}
.btnList .btn2 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.btnList .btn2 a {
  flex-grow: 1;
}

.contents {
  background: #fff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contents {
    padding-top: 56px;
  }
}
.contents section {
  font-family: YuGothic, "游ゴシック", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: var(--black-color);
}
@media (max-width: 1024px) {
  .contents section {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.contents section .wrapper {
  max-width: 1300px;
}
@media (max-width: 1024px) {
  .contents section .wrapper {
    max-width: 86.6%;
  }
}

/* =========================================================
fv
========================================================= */
.fv {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100vh - 88px - 88px);
  min-height: 420px;
  color: #fff !important;
}
@media (max-width: 1024px) {
  .fv {
    height: 420px;
    min-height: auto;
  }
}
.fv picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.fv picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.fv picture::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: rgb(from var(--navy-color) r g b/46%);
  z-index: 1;
}
.fv .text-block {
  max-width: 1300px;
  margin-inline: auto;
  padding: 72px 0 176px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .fv .text-block {
    width: 86.6%;
    padding: 40px 0 64px;
  }
}
.fv_title {
  font-size: 5.6rem;
  line-height: 1.25;
  margin: 0 0 32px;
}
@media (max-width: 1024px) {
  .fv_title {
    font-size: 2.8rem;
    margin: 0 0 16px;
    letter-spacing: 0.05em;
  }
}
.fv_title small.en {
  color: var(--gray-color);
}
@media (max-width: 1024px) {
  .fv_title small.en {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
}
.fv_text {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.15;
}
@media (max-width: 1024px) {
  .fv_text {
    font-size: 1.4rem;
  }
}
.fv .hotelName {
  display: none;
}

/* =========================================================
intro
========================================================= */
.intro {
  margin-top: -88px;
}
@media (max-width: 1024px) {
  .intro {
    margin-top: -72px;
  }
}
.intro .wrapper {
  padding-top: 0;
  padding-bottom: 136px;
}
@media (max-width: 1024px) {
  .intro .wrapper {
    padding-bottom: 80px;
  }
}
.intro-photo {
  position: relative;
  display: flex;
  background: var(--navy-color);
  color: #fff;
  z-index: 1;
}
@media (max-width: 767px) {
  .intro-photo {
    display: block;
  }
}
.intro-photo picture {
  display: block;
  flex: 61.5;
}
.intro-photo picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  aspect-ratio: 800/390;
  min-height: 240px;
}
@media (max-width: 1024px) {
  .intro-photo picture img {
    min-height: auto;
  }
}
.intro-photo .text-block {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: auto 0 0;
  padding: 72px 48px;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 1300px) {
  .intro-photo .text-block {
    padding-block: 48px;
  }
}
@media (max-width: 1024px) {
  .intro-photo .text-block {
    font-size: 1.5rem;
    padding: 24px 20px;
    min-height: 176px;
    justify-content: flex-end;
  }
}
.intro-photo .text-block .hotel-name {
  font-size: 3.2rem;
  line-height: 1.9;
}
@media (max-width: 1024px) {
  .intro-photo .text-block .hotel-name {
    font-size: 2rem;
  }
}
.intro .lead {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.6;
  margin-block: 96px;
  text-align: center;
}
@media (max-width: 1024px) {
  .intro .lead {
    font-size: 1.4rem;
    line-height: 2.4;
    margin-block: 40px;
    text-align: left;
  }
}
.intro .bg-area {
  background: var(--gray-color);
}
.intro .bg-area .inner {
  display: flex;
  align-items: center;
  gap: 24px 80px;
  padding: 48px 0;
  max-width: 1140px;
  width: 87.8%;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .intro .bg-area .inner {
    flex-direction: column-reverse;
    padding: 32px 0;
    width: 84.8%;
  }
}
.intro .bg-area .text-block {
  width: calc(60.2% - 80px);
}
@media (max-width: 1024px) {
  .intro .bg-area .text-block {
    width: 100%;
  }
}
.intro .bg-area .text-block p:not([class]) {
  line-height: 2;
  letter-spacing: 0.011em;
}
@media (max-width: 1024px) {
  .intro .bg-area .text-block p:not([class]) {
    line-height: 2.4;
    letter-spacing: 0.05em;
  }
}
.intro .bg-area .secTitle2 {
  font-size: 3.2rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 0 -1em 24px 0;
}
@media (max-width: 1024px) {
  .intro .bg-area .secTitle2 {
    font-size: 2rem;
    line-height: 1.7;
    margin: 0 0 16px;
  }
}
.intro .bg-area .secTitle2 small.en {
  position: relative;
  font-size: 1.6rem;
  margin: 0 0 20px;
}
@media (max-width: 1024px) {
  .intro .bg-area .secTitle2 small.en {
    font-size: 1.2rem;
    margin: 0 0 8px;
  }
}
.intro .bg-area .secTitle2 small.en::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-color);
  margin-right: 0.75em;
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  .intro .bg-area .secTitle2 small.en::before {
    margin-right: 0.5em;
  }
}
.intro .bg-area picture {
  display: block;
  width: 39.8%;
}
@media (max-width: 1024px) {
  .intro .bg-area picture {
    width: 100%;
  }
}
.intro .bg-area picture img {
  width: 445px;
  height: auto;
}
@media (max-width: 1024px) {
  .intro .bg-area picture img {
    width: 100%;
    min-width: auto;
  }
}

/* =========================================================
details
========================================================= */
.details {
  position: relative;
  background: var(--gray-color2);
}
.details .wrapper {
  padding-bottom: 176px;
}
@media (max-width: 1024px) {
  .details .wrapper {
    padding-bottom: 80px;
  }
}
.details .tab-area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
  counter-reset: counter01;
}
@media (max-width: 1024px) {
  .details .tab-area {
    display: flex;
    flex-direction: column;
  }
}
.details .tab-area .title-area {
  display: flex;
  gap: 0 8px;
  margin: 0 0 16px;
  color: var(--green-color);
}
.details .tab-area .title-area svg {
  width: 54px;
  height: 54px;
  fill: currentColor;
  margin: 3px 0 0 0;
}
@media (max-width: 1024px) {
  .details .tab-area .title-area svg {
    width: 44px;
    height: 44px;
  }
}
.details .tab-area .secTitle2 {
  font-size: 2.1rem;
  margin: 0;
}
@media (max-width: 1024px) {
  .details .tab-area .secTitle2 {
    font-size: 1.5rem;
  }
}
.details .tab-area .secTitle2 small.en {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 1024px) {
  .details .tab-area .secTitle2 small.en {
    font-size: 1.2rem;
  }
}
.details .tab-area .secTitle3 {
  font-size: 2.6rem;
  line-height: 1.75;
  margin: 0 0 40px;
}
@media (max-width: 1024px) {
  .details .tab-area .secTitle3 {
    font-size: 1.6rem;
    margin: 0 0 16px;
  }
}
.details .tab-area .tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.details .tab-area .tab-list > li {
  counter-increment: counter01;
}
.details .tab-area .tab-list > li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.7;
  padding: 4px 40px 4px 72px;
  min-height: 64px;
}
@media (max-width: 1024px) {
  .details .tab-area .tab-list > li a {
    font-size: 1.5rem;
    padding-inline: 48px 32px;
    min-height: 58px;
  }
}
.details .tab-area .tab-list > li a:hover {
  color: inherit;
  opacity: 1;
}
.details .tab-area .tab-list > li a:hover::after {
  bottom: -4px;
}
.details .tab-area .tab-list > li a::before {
  content: counter(counter01, decimal-leading-zero);
  display: block;
  width: fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  color: var(--green-color);
  margin: auto 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.75;
}
@media (max-width: 1024px) {
  .details .tab-area .tab-list > li a::before {
    font-size: 1.7rem;
    left: 16px;
  }
}
.details .tab-area .tab-list > li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 24px;
  margin: auto 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--black-color);
  border-bottom: 1px solid var(--black-color);
  transform: rotate(45deg);
  transition: all 0.3s;
}
@media (max-width: 1024px) {
  .details .tab-area .tab-list > li a::after {
    right: 16px;
    width: 5px;
    height: 5px;
  }
}
.details .tab-area .tab-item:nth-child(2) .title-area {
  color: var(--blue-color);
}
.details .tab-area .tab-item:nth-child(2) .tab-list > li a::before {
  color: var(--blue-color);
}
.details-list {
  display: flex;
  flex-direction: column;
  gap: 68px 0;
  margin-block: 80px 144px;
  counter-reset: counter02;
}
@media (max-width: 1024px) {
  .details-list {
    gap: 44px 0;
    margin-block: 56px 88px;
  }
}
.details-item {
  background: #fff;
  border-top: 1px solid #595959;
  counter-increment: counter02;
}
.details-item .inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px 48px;
  padding: 40px 0 56px;
  max-width: 1140px;
  width: 87.8%;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .details-item .inner {
    gap: 20px 0;
    padding: 24px 0 40px;
    width: 84.8%;
  }
}
.details-item .inner > picture {
  display: block;
  width: 43.8%;
}
@media screen and (max-width: 1200px) {
  .details-item .inner > picture {
    width: 34%;
  }
}
@media (max-width: 1024px) {
  .details-item .inner > picture {
    width: 100%;
    order: -2;
  }
}
.details-item .inner > picture img {
  object-fit: cover;
  width: 100%;
  height: auto;
  aspect-ratio: 500/375;
}
.details-item .secTitle2 {
  font-size: 3.2rem;
  line-height: 1.6;
  margin: 0 0 -8px;
  letter-spacing: 0.08em;
  width: 100%;
}
@media (max-width: 1024px) {
  .details-item .secTitle2 {
    font-size: 2rem;
    order: -2;
    margin-right: 1.5em;
  }
}
.details-item .secTitle2 small.en {
  position: relative;
  font-size: 1.6rem;
  color: var(--green-color);
  margin: 0 0 8px;
}
@media (max-width: 1024px) {
  .details-item .secTitle2 small.en {
    font-size: 1.2rem;
  }
}
.details-item .secTitle2 small.en::before {
  content: counter(counter02, decimal-leading-zero);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-color);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-right: 1em;
  margin-top: -4px;
}
@media (max-width: 1024px) {
  .details-item .secTitle2 small.en::before {
    width: 20px;
    height: 20px;
    font-size: 1.1rem;
    margin-right: 0.5em;
    margin-top: -2px;
  }
}
.details-item .text {
  letter-spacing: 0.015em;
  width: 72.4%;
}
@media screen and (max-width: 1200px) {
  .details-item .text {
    width: calc(100% - 176px - 12px - 48px);
  }
}
@media (max-width: 1024px) {
  .details-item .text {
    width: 100%;
  }
}
.details-item .btn2 {
  position: absolute;
  left: 0;
  bottom: 56px;
}
@media (max-width: 1024px) {
  .details-item .btn2 {
    position: static;
    width: 92%;
    margin-inline: auto;
  }
}
.details-item .btn2 a {
  min-width: 245px;
  min-height: 36px;
  padding-block: 4px 2px;
  line-height: 1.2;
  max-width: 592px;
}
@media (max-width: 1024px) {
  .details-item .btn2 a {
    min-width: auto;
    width: 100%;
    max-width: none;
  }
}
.details-item[id^=society] .secTitle2 small.en {
  color: var(--blue-color);
}
.details-item[id^=society] .secTitle2 small.en::before {
  background-color: var(--blue-color);
}
.details-item[id^=society] .details-point {
  border-color: var(--blue-color);
}
.details-item[id^=society] .details-point-title::before {
  background-color: var(--blue-color);
}
.details-item[id^=society] .details-number {
  color: var(--blue-color);
}
.details-item[id^=society] .details-number dt span:not([class]) {
  background: repeating-linear-gradient(to right, var(--blue-color) 0, var(--blue-color) 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
}
.details .sdgs-icon {
  display: flex;
  gap: 0 12px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .details .sdgs-icon {
    margin-left: 0;
    margin-bottom: -4px;
    gap: 0 4px;
    order: -1;
  }
}
.details .sdgs-icon img {
  aspect-ratio: 1;
}
@media (max-width: 767px) {
  .details .sdgs-icon img {
    width: 40px;
    height: 40px;
  }
}
.details-point {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
  border: 1px solid var(--green-color);
  padding: 36px 31px;
  width: calc(56.2% - 48px);
}
@media screen and (max-width: 1200px) {
  .details-point {
    width: calc(66% - 48px);
  }
}
@media (max-width: 1024px) {
  .details-point {
    gap: 6px 0;
    padding: 14px 16px;
    width: 100%;
  }
}
.details-point:has(+ .btn2) {
  margin-bottom: 64px;
}
@media (max-width: 1024px) {
  .details-point:has(+ .btn2) {
    margin-bottom: 0;
  }
}
.details-point-title {
  position: relative;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.08em;
  padding-left: 24px;
  text-indent: -27px;
}
@media (max-width: 1024px) {
  .details-point-title {
    font-size: 1.5rem;
    padding-left: 12px;
    text-indent: -15px;
  }
}
.details-point-title::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-color);
  margin-right: 0.75em;
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  .details-point-title::before {
    width: 6px;
    height: 6px;
    margin-right: 0.5em;
  }
}
.details-point dd {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  margin: 0 0 12px 24px;
}
@media (max-width: 1024px) {
  .details-point dd {
    font-size: 1.2rem;
    margin: 0 2em 8px 12px;
  }
}
.details-point dd:last-child {
  margin-bottom: 0;
}
.details-point__wrap {
  width: calc(56.2% - 48px);
}
@media screen and (max-width: 1200px) {
  .details-point__wrap {
    width: calc(66% - 48px);
  }
}
@media (max-width: 1024px) {
  .details-point__wrap {
    width: 100%;
  }
}
.details-point__wrap .details-point {
  width: 100%;
}
.details-text {
  margin: 24px 0 0;
}
@media (max-width: 1024px) {
  .details-text {
    margin: 16px 0 0;
  }
}
.details-text .secTitle3 {
  color: var(--green-color);
  font-size: 2.1rem;
  line-height: 1.3;
  margin: 0 0 16px;
}
@media (max-width: 1024px) {
  .details-text .secTitle3 {
    font-size: 1.5rem;
    margin: 0 0 8px;
  }
}
.details-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gray-color2);
  color: var(--green-color);
  font-weight: 700;
  padding: 18px 8px 6px;
  min-width: 233px;
}
@media (max-width: 1024px) {
  .details-number {
    padding: 12px 4px 4px;
    width: calc(50% - 3px);
    min-width: auto;
  }
}
.details-number dt {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media (max-width: 1024px) {
  .details-number dt {
    font-size: 1.1rem;
  }
}
.details-number dt span:not([class]) {
  background: repeating-linear-gradient(to right, var(--green-color) 0, var(--green-color) 4px, transparent 4px, transparent 8px);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  padding-bottom: 8px;
  padding-inline: 0.25em;
}
@media (max-width: 1024px) {
  .details-number dt span:not([class]) {
    padding-bottom: 4px;
    padding-inline: 0;
  }
}
body.lang_en .details-number dt span:not([class]), body.lang_fr .details-number dt span:not([class]), body.lang_de .details-number dt span:not([class]), body.lang_es .details-number dt span:not([class]), body.lang_th .details-number dt span:not([class]), body.lang_vi .details-number dt span:not([class]), body.lang_id .details-number dt span:not([class]), body.lang_ms .details-number dt span:not([class]) {
  padding-bottom: 4px;
}
@media (max-width: 1024px) {
  body.lang_en .details-number dt span:not([class]), body.lang_fr .details-number dt span:not([class]), body.lang_de .details-number dt span:not([class]), body.lang_es .details-number dt span:not([class]), body.lang_th .details-number dt span:not([class]), body.lang_vi .details-number dt span:not([class]), body.lang_id .details-number dt span:not([class]), body.lang_ms .details-number dt span:not([class]) {
    padding-bottom: 2px;
  }
}
.details-number dd {
  font-size: 2.5rem;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .details-number dd {
    font-size: 1.4rem;
  }
}
@media (max-width: 767px) {
  body.lang_en .details-number dd, body.lang_fr .details-number dd, body.lang_de .details-number dd, body.lang_es .details-number dd, body.lang_th .details-number dd, body.lang_vi .details-number dd, body.lang_id .details-number dd, body.lang_ms .details-number dd {
    font-size: 1.1rem;
  }
}
.details-number dd span:not([class]) {
  font-family: "Montserrat", sans-serif;
  font-size: 7.1rem;
  font-weight: 700;
}
@media (max-width: 1024px) {
  .details-number dd span:not([class]) {
    font-size: 4.1rem;
  }
}
@media (max-width: 767px) {
  body.lang_en .details-number dd span:not([class]), body.lang_fr .details-number dd span:not([class]), body.lang_de .details-number dd span:not([class]), body.lang_es .details-number dd span:not([class]), body.lang_th .details-number dd span:not([class]), body.lang_vi .details-number dd span:not([class]), body.lang_id .details-number dd span:not([class]), body.lang_ms .details-number dd span:not([class]) {
    font-size: 3.3rem;
  }
}
.details-number dd span:not([class]) small {
  font-size: 4.7rem;
}
@media (max-width: 1024px) {
  .details-number dd span:not([class]) small {
    font-size: 2.7rem;
  }
}
@media (max-width: 767px) {
  body.lang_en .details-number dd span:not([class]) small, body.lang_fr .details-number dd span:not([class]) small, body.lang_de .details-number dd span:not([class]) small, body.lang_es .details-number dd span:not([class]) small, body.lang_th .details-number dd span:not([class]) small, body.lang_vi .details-number dd span:not([class]) small, body.lang_id .details-number dd span:not([class]) small, body.lang_ms .details-number dd span:not([class]) small {
    font-size: 2.2rem;
  }
}
.details-number dd span:not([class]) small.plus {
  display: inline-block;
  font-size: 4.3rem;
  vertical-align: top;
  margin-top: 0.25em;
}
@media (max-width: 1024px) {
  .details-number dd span:not([class]) small.plus {
    font-size: 2.4rem;
  }
}
@media (max-width: 767px) {
  body.lang_en .details-number dd span:not([class]) small.plus, body.lang_fr .details-number dd span:not([class]) small.plus, body.lang_de .details-number dd span:not([class]) small.plus, body.lang_es .details-number dd span:not([class]) small.plus, body.lang_th .details-number dd span:not([class]) small.plus, body.lang_vi .details-number dd span:not([class]) small.plus, body.lang_id .details-number dd span:not([class]) small.plus, body.lang_ms .details-number dd span:not([class]) small.plus {
    font-size: 1.9rem;
  }
}
.details-number dd span.note {
  position: absolute;
  top: 100%;
  right: 0;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black-color);
  margin-top: 8px;
  text-align: left;
}
@media (max-width: 1024px) {
  .details-number dd span.note {
    font-size: 1rem;
    margin-top: 6px;
  }
}
@media (max-width: 767px) {
  body.lang_en .details-number dd span.note, body.lang_fr .details-number dd span.note, body.lang_de .details-number dd span.note, body.lang_es .details-number dd span.note, body.lang_th .details-number dd span.note, body.lang_vi .details-number dd span.note, body.lang_id .details-number dd span.note, body.lang_ms .details-number dd span.note {
    font-size: 0.8rem;
  }
}
.details-number__wrap {
  display: flex;
  gap: 0 8px;
  margin: 24px 0 0;
}
@media (max-width: 1024px) {
  .details-number__wrap {
    gap: 0 6px;
    margin: 16px 0 0;
  }
}
.details .bg-area {
  display: flex;
  gap: 0 206px;
  background: var(--navy-color);
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .details .bg-area {
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .details .bg-area {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.details .bg-area .text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 56px 24px 56px 80px;
  width: calc(67.4% - 206px);
}
@media screen and (max-width: 1200px) {
  .details .bg-area .text-block {
    padding: 56px 5.4vw 56px 80px;
    width: calc(60% - 0px);
  }
}
@media (max-width: 1024px) {
  .details .bg-area .text-block {
    padding: 30px 24px 36px;
    width: 100%;
  }
}
.details .bg-area .text-block p:not([class]) {
  line-height: 1.875;
}
@media screen and (max-width: 1200px) {
  .details .bg-area .text-block p:not([class]) {
    margin: 0 0 24px;
  }
}
@media (max-width: 1024px) {
  .details .bg-area .text-block p:not([class]) {
    line-height: 2;
    margin: 0 0 24px;
  }
}
.details .bg-area .photos {
  display: flex;
  flex-direction: column;
  width: 32.6%;
}
@media screen and (max-width: 1200px) {
  .details .bg-area .photos {
    width: 40%;
  }
}
@media (max-width: 1024px) {
  .details .bg-area .photos {
    width: 100%;
  }
}
.details .bg-area .photos picture {
  display: block;
  height: 50%;
}
.details .bg-area .photos picture img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.details .bg-area .logos {
  position: absolute;
  top: 160px;
  right: -132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  padding: 20px 9px;
  background: #fff;
}
@media screen and (max-width: 1200px) {
  .details .bg-area .logos {
    position: static;
    flex-direction: row;
    justify-content: center;
    gap: 0 32px;
    margin: 0 0 24px;
  }
}
.details .bg-area .logos picture {
  display: block;
}
.details .bg-area .logos picture:first-child img {
  width: 72px;
  height: auto;
}
@media (max-width: 1024px) {
  .details .bg-area .logos picture:first-child img {
    width: 76px;
  }
}
.details .bg-area .logos picture:last-child img {
  width: 100px;
  height: auto;
}
@media (max-width: 1024px) {
  .details .bg-area .logos picture:last-child img {
    width: 105px;
  }
}
.details .bg-area .btn2 {
  margin: 32px 0 0;
}
@media (max-width: 1024px) {
  .details .bg-area .btn2 {
    width: 92%;
    margin: 0 auto;
  }
}
.details .bg-area .btn2 a {
  align-items: flex-start;
  min-width: 348px;
  min-height: 36px;
  padding-block: 4px 2px;
  line-height: 1.2;
}
@media (max-width: 1024px) {
  .details .bg-area .btn2 a {
    min-width: auto;
    width: 100%;
  }
}
.details .bg-area .btn2 a span {
  display: contents;
}

/* =========================================================
vision
========================================================= */
.vision {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--gray-color) !important;
}
@media (max-width: 1024px) {
  .vision {
    color: #fff !important;
  }
}
.vision .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
}
.vision .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.vision .bg::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background: rgb(from var(--black-color) r g b/40%);
  z-index: 1;
}
.vision .wrapper {
  margin-inline: auto;
  padding: 112px 0 128px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .vision .wrapper {
    padding: 64px 0 64px;
  }
}
.vision .secTitle2 small.en {
  color: var(--gray-color);
}
.vision .text {
  line-height: 2.375;
  margin: 0 0 48px;
}
@media (max-width: 1024px) {
  .vision .text {
    margin: 0 0 16px;
    text-align: left;
    letter-spacing: 0.015em;
  }
}
@media (min-width: 1025px) {
  .vision .btnList {
    max-width: 540px;
    margin-inline: auto;
  }
}/*# sourceMappingURL=sustainable.css.map */