:root {
  /* PC基準：1440pxで16px */
  --fs-base-pc: calc(100vw / 90);
  /* 1440 ÷ 16 ≈ 90 */
  --fs-base-tb: calc(100vw / 64);
  /* 1024 ÷ 16 ≈ 64 */
  --fs-base-sp: calc(100vw / 23.4375);
  /* 375 ÷ 16 ≈ 23.4375 */

  --serifFont: "Cormorant Garamond", serif;
  --sansSerifFont: "Be Vietnam Pro", sans-serif;
  --mainColor: #B28575;
}

html {
  font-size: var(--fs-base-pc);
  font-family: var(--sansSerifFont);
}

@media (max-width: 768px) {
  html {
    font-size: var(--fs-base-sp);
  }
}


body {
  font-family: var(--sansSerifFont);
}

.is-noscroll {
  overflow: hidden;
}

/* --------------------------------
header
-------------------------------- */
.bl_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #fff;
  transition: all 0.3s ease-in-out;

}

.bl_header_inner {
  display: grid;
  grid-template-columns: calc(224 / 16 * 1rem) auto;
  gap: calc(40 / 16 * 1rem);
  padding-inline: calc(60 / 16 * 1rem);
  padding-block: calc(20 / 16 * 1rem);
  justify-content: space-between;
  align-items: center;
}

.bl_header_inner h1 {
  margin-bottom: 0;
}

.bl_header_logo {
  display: block;
  width: 100%;
}

.bl_header_logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.bl_header_logo svg path {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}


.bl_header_nav_inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: calc(36 / 16 * 1rem);
}

.bl_header_pageBtnWrapper {
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(9, auto);
  gap: calc(20 / 16 * 1rem);
  align-items: center;
}

.el_header_pageNav_btn {
  color: #FFF;
  font-size: calc(13 / 16 * 1rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: calc(0.78 / 16 * 1rem);
  width: fit-content;
  transition: all 0.3s ease-in-out;

}

@media (any-hover: hover) {
  .el_header_pageNav_btn:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
  }
}

.bl_header_ctaBtnWrapper {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  gap: calc(8 / 16 * 1rem);
}

.el_header_ctaBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(4 / 16 * 1rem);
  color: var(--mainColor);
  font-size: calc(13 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: calc(0.26 / 16 * 1rem);
  padding-block: calc(12 / 16 * 1rem);
  padding-inline: calc(18 / 16 * 1rem);
  border-radius: calc(100 / 16 * 1rem);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.el_header_ctaBtn span {
  display: block;
  width: fit-content;
}

.el_header_ctaBtn svg {
  max-width: calc(16 / 16 * 1rem);
  width: 100%;
  height: auto;
  display: block;
}

.el_header_ctaBtn svg path {
  fill: var(--mainColor);
  transition: all 0.3s ease-in-out;
}

.is-headerBgWhite .el_header_ctaBtn svg path {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}

@media (any-hover: hover) {
  .el_header_ctaBtn:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
  }
}

.bl_header_menuToggleBtnWrapper {
  display: none;
}

.bl_fixed_ctaBtnWrapper{
  display: none;
}

@media (max-width: 768px) {

  .bl_header_inner {
    grid-template-columns: calc(184/ 16 * 1rem) calc(40 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
  }

  .bl_header_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 100;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s ease-in-out;

  }

  .is-naviOpen {
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }

  .bl_header_nav::after {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-image: url(../img/language-mv.jpg);
    z-index: -2;
    filter: blur(0px);
    transition: all 0.3s ease-in-out;
  }

  .is-naviOpen::after {
    opacity: 1;
    filter: blur(6px);
    transition: all 0.7s cubic-bezier(0.55, 0.06, 0.68, 0.19);
  }


  .el_header_ctaBtn {
    text-align: center;
    padding-block: calc(18 / 16 * 1rem);
  }


  .bl_header_nav_inner {
    padding-top: calc(120 / 16 * 1rem);
    padding-bottom: calc(40 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
    grid-template-columns: auto;
    gap: calc(60 / 16 * 1rem);
  }

  .bl_header_pageBtnWrapper {
    grid-template-columns: auto;
    gap: calc(20 / 16 * 1rem);
    width: fit-content;
    margin-inline: auto;
  }

  .bl_header_ctaBtnWrapper {
    grid-template-columns: auto;
    gap: calc(20 / 16 * 1rem);
    transition: opacity 0.2s ease-in-out 0.4s, translate 0.4s ease-in-out 0.4s;
    opacity: 0;
    filter: blur(10px);
    translate: 0 10%;
  }

  .is-activeCtaBtnWrapper {
    opacity: 1;
    translate: 0 0;
    transition: all 0.4s cubic-bezier(0.71, 0.58, 0.74, 0.95);
  }


  .el_header_pageNav_btn {
    font-size: calc(16 / 16 * 1rem);
    margin-inline: auto;
    transition: all 0.4s cubic-bezier(0.71, 0.58, 0.74, 0.95);
    opacity: 0;
    translate: 0 80%;
    filter: blur(10px);
  }

  .is-activeNavBtn {
    opacity: 1;
    translate: 0 0;
    transition: all 0.4s cubic-bezier(0.28, 0.5, 1, 1);
    filter: blur(0px);
  }

  .is-activeCtaBtnWrapper {
    opacity: 1;
    translate: 0 0;
    filter: blur(0px);
    transition: filter 0.6s cubic-bezier(0.28, 0.5, 1, 1) 0.1s, opacity 0.6s cubic-bezier(0.28, 0.5, 1, 1) 0.1s, translate 0.6s cubic-bezier(0.28, 0.5, 1, 1) 0.1s;
  }

  .bl_header_menuToggleBtnWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
  }

  .bl_header_menuToggleBtn {
    position: relative;
    width: 100%;
    min-height: calc(17 / 16 * 1rem);
    background-color: transparent;
    border: none;
    padding: 0;
    margin: 0;
  }

  .el_header_menuToggleBtn_line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
  }

  .el_header_menuToggleBtn_line:nth-child(1) {
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
  }

  .el_header_menuToggleBtn_line:nth-child(2) {
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    transition: all 0.3s ease-in-out;
  }

  .el_header_menuToggleBtn_line:nth-child(3) {
    bottom: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
  }

  .is-menuOpen {
    transition: all 0.5s ease-in-out;
  }

  .is-menuOpen .el_header_menuToggleBtn_line:nth-child(1) {
    rotate: 30deg;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.1s;
  }

  .is-menuOpen .el_header_menuToggleBtn_line:nth-child(2) {
    width: 0;
    right: 0;
    transition: width 0.3s ease-in-out, opacity 0.2s ease-in-out 0.4s;
    opacity: 0;
  }

  .is-menuOpen .el_header_menuToggleBtn_line:nth-child(3) {
    rotate: -30deg;
    left: 50%;
    bottom: 50%;
    translate: -50% -50%;
    transition: all 0.3s ease-in-out;
    transition-delay: 0.1s;
  }

  .bl_fixed_ctaBtnWrapper.is-headerBgWhite{
    background-color: transparent !important;
  }

  .bl_fixed_ctaBtnWrapper{
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    gap: calc(8 / 16 * 1rem);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 90;
    padding-inline: calc(8 / 16 * 1rem);
    padding-bottom: calc(env(safe-area-inset-bottom) +  calc(8 / 16 * 1rem));
  }

  .bl_fixed_ctaBtnWrapper .el_header_ctaBtn{
    padding-block: calc(16 / 16 * 1rem);
    border : 1px solid #fff;
  }

  .bl_fixed_ctaBtnWrapper  .el_header_ctaBtn svg{
    max-width: calc(14 / 16 * 1rem);
  }
}

/* --------------------------------
header bg white
-------------------------------- */
.is-headerBgWhite {
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}

.is-headerBgWhite .el_header_pageNav_btn {
  color: rgba(55, 42, 39, 1);
  transition: all 0.3s ease-in-out;

}

.is-headerBgWhite .el_header_ctaBtn {
  background-color: rgba(178, 133, 117, 1);
  color: #fff;
  transition: all 0.3s ease-in-out;
}


.is-headerBgWhite .bl_header_logo svg path {
  fill: #372A27;
  transition: all 0.3s ease-in-out;
}

.is-headerBgWhite .el_header_menuToggleBtn_line {
  background-color: #372A27;
  transition: all 0.3s ease-in-out;
}

/* --------------------------------
navi open
-------------------------------- */

.is-naviOpen .el_header_pageNav_btn {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.is-naviOpen .el_header_ctaBtn {
  background-color: rgba(178, 133, 117, 1);
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.is-menuOpen .el_header_menuToggleBtn_line {
  background-color: #fff;
}

.is-menuOpen  svg path {
  fill: #fff !important;
  transition: all 0.3s ease-in-out;
}
 


/* --------------------------------
FV
-------------------------------- */
.ly_fvWrapper {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: url(../img/language-mv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: calc(190 / 16 * 1rem);
  padding-inline: calc(20 / 16 * 1rem);
}

.el_fvWrapper_title {
  color: #FFF;
  text-align: center;
  font-family: var(--serifFont);
  font-size: calc(100 / 16 * 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: calc(-2 / 16 * 1rem);
  text-transform: uppercase;
  margin-bottom: calc(117 / 16 * 1rem);
}

.el_fvWrapper_scroll {
  color: #FFF;
  text-align: center;
  font-family: var(--sansSerifFont);
  font-size: calc(13 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: calc(0.78 / 16 * 1rem);
}

@media (max-width: 768px) {
  .ly_fvWrapper {
    padding-top: calc(276 / 16 * 1rem);
  }

  .el_fvWrapper_title {
    font-size: calc(44 / 16 * 1rem);
    margin-bottom: calc(243 / 16 * 1rem);
    color: #FFF;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: calc(-0.88 / 16 * 1rem);
    text-transform: uppercase;
  }

  .el_fvWrapper_scroll {
    margin-bottom: calc(40 / 16 * 1rem);
  }
}


/* --------------------------------
共通
-------------------------------- */
.bl_language_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.el_language_title_main,
.el_language_title_sub {
  width: fit-content;
  color: #372A27;
  font-family: var(--sansSerifFont);
  font-size: calc(16 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  letter-spacing: calc(0.96 / 16 * 1rem);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .bl_language_title {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(14 / 16 * 1rem);
  }


  .el_language_title_main,
  .el_language_title_sub {
    font-size: calc(15 / 16 * 1rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: calc(0.9 / 16 * 1rem);
  }

}

/* --------------------------------
About
-------------------------------- */

.ly_aboutWrapper {
  background: linear-gradient(180deg, #FAFAFA 0%, #F2EBE8 100%);
  padding-top: calc(60 / 16 * 1rem);
  padding-bottom: calc(120 / 16 * 1rem);
  padding-inline: calc(60 / 16 * 1rem);
}

.ly_aboutWrapper_inner .bl_language_title {
  margin-bottom: calc(104 / 16 * 1rem);
}

.bl_aboutMessageWrapper {
  position: relative;
  padding-top: calc(130 / 16 * 1rem);
  display: grid;
  grid-template-columns: calc(460 / 16 * 1rem) auto;
  align-items: flex-end;
  padding-right: calc(120 / 16 * 1rem);
  gap: calc(200 / 16 * 1rem);
  margin-bottom: calc(200 / 16 * 1rem);
}


.el_aboutMessageWrapper_copy {
  position: absolute;
  top: 0;
  right: 0;
  color: #B28575;
  text-align: right;
  font-family: var(--serifFont);
  font-size: calc(66 / 16 * 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: calc(-1.32 / 16 * 1rem);
  text-transform: uppercase;
  margin-bottom: 0;
  white-space: pre-wrap;
}

.el_aboutMessageWrapper_img {
  display: block;
  border-radius: calc(16 / 16 * 1rem);
  overflow: hidden;
  width: 100%;
  margin-bottom: calc(60 / 16 * 1rem);
}

.bl_aboutMessageWrapper_message_main {
  display: flex;
  flex-flow: column;
  gap: calc(30 / 16 * 1rem);
  margin-bottom: calc(50 / 16 * 1rem);
}

.el_aboutMessageWrapper_message_main_text {
  color: #938787;
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

.el_aboutMessageWrapper_message_sub {
  color: #938787;
  font-size: calc(12 / 16 * 1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
}

.bl_aboutCardWrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: calc(20 / 16 * 1rem);
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
}

.bl_aboutCardWrapper_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  padding-top: calc(40 / 16 * 1rem);
  padding-right: calc(40 / 16 * 1rem);
  padding-bottom: calc(50 / 16 * 1rem);
  padding-left: calc(40 / 16 * 1rem);
  background-color: #fff;
  border-radius: calc(16 / 16 * 1rem);
}

.bl_aboutCardWrapper_item_title {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: calc(20 / 16 * 1rem);
}

.bl_aboutCardWrapper_item_title_icon {
  display: grid;
  grid-template-columns: calc(26 / 16 * 1rem);
  align-items: center;
  justify-content: center;
  background-color: #FAF7F3;
  border-radius: 100%;
  width: 100%;
  aspect-ratio: 1/1;
  max-width: calc(60 / 16 * 1rem);
}

.el_aboutCardWrapper_item_title_text {
  color: #372A27;
  text-align: center;
  font-family: var(--sansSerifFont);
  font-size: calc(26 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}

.bl_aboutCardWrapper_item_title img {
  width: calc(40 / 16 * 1rem);
  height: calc(40 / 16 * 1rem);
}

.el_aboutCardWrapper_item_text {
  color: #938787;
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 768px) {

  .ly_aboutWrapper {
    padding-inline: calc(24 / 16 * 1rem);
    padding-top: calc(60 / 16 * 1rem);
    padding-bottom: calc(80 / 16 * 1rem);
  }


  .ly_aboutWrapper_inner .bl_language_title {
    margin-bottom: calc(60 / 16 * 1rem);
  }


  .bl_aboutMessageWrapper {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-top: 0;
    gap: calc(0 / 16 * 1rem);
    margin-bottom: calc(80 / 16 * 1rem);
  }

  .el_aboutMessageWrapper_copy {
    position: relative;
    order: 2;
    text-align: left;
    font-size: calc(43 / 16 * 1rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: calc(-0.88 / 16 * 1rem);
    margin-top: calc(-24 / 16 * 1rem);
    margin-bottom: calc(50 / 16 * 1rem);
  }

  .el_aboutMessageWrapper_img {
    order: 1;
    margin-bottom: 0;
  }

  .bl_aboutMessageWrapper_message {
    order: 3;
  }

  .el_aboutMessageWrapper_message_main_text {
    color: #938787;
    font-size: calc(14 / 16 * 1rem);
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
  }

  .el_aboutMessageWrapper_message_sub {
    margin-bottom: 0;
  }

  .bl_aboutCardWrapper_item {
    padding-inline: calc(24 / 16 * 1rem);
    padding-top: calc(40 / 16 * 1rem);
    padding-bottom: calc(50 / 16 * 1rem);
  }

  .bl_aboutCardWrapper {
    grid-template-columns: 1fr;
    gap: calc(20 / 16 * 1rem);
  }

  .el_aboutCardWrapper_item_title_text {
    font-size: calc(20 / 16 * 1rem);
    font-weight: 600;
    line-height: 1.2;
  }

  .el_aboutCardWrapper_item_text {
    font-size: calc(14 / 16 * 1rem);
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
  }
}

/* --------------------------------
Menu
-------------------------------- */
.bl_menuContaier {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #B28575;
}

.bl_menuContaier:nth-child(even) {
  background-color: #AA9A95;
}

.bl_menuContaier:nth-child(even) .bl_menuContainer_content {
  order: 2;
}

.bl_menuContent_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_menuContaier:nth-child(even) .bl_menuContent_imgWrapper {
  order: 1;
}

.bl_menuContainer_content {
  padding: calc(60 / 16 * 1rem);
}

.bl_menuContainer_content .bl_language_title {
  margin-bottom: calc(60 / 16 * 1rem);
  color: #FFF;
}

.bl_menuContainer_content .el_language_title_main {
  color: #FFF;
}

.bl_menuContentTtl {
  margin-bottom: calc(180 / 16 * 1rem);
}

.el_menuContentTtl_num {
  color: #FFF;
  font-size: calc(12 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: calc(6 / 16 * 1rem);
}

.el_menuContentTtl_title {
  color: #FFF;
  font-family: var(--serifFont);
  font-size: calc(44 / 16 * 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: calc(-0.88 / 16 * 1rem);
  text-transform: uppercase;
  white-space: pre-wrap;
}


.bl_menuContentTextWrapper {
  display: flex;
  flex-flow: column;
  gap: calc(26 / 16 * 1rem);
  color: #FFF;
  font-family: var(--sansSerifFont);
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  max-width: calc(387 / 16 * 1rem);
}

.bl_menuContaier:nth-child(even) .bl_menuContentTextWrapper {
  margin-left: auto;
}


.bl_menuContentTextWrapper p {
  margin-bottom: 0;
}


.bl_menuContentTextWrapper_listWrapper {
  display: flex;
  flex-flow: column;
  gap: calc(10 / 16 * 1rem);
}


.bl_menuContentTextWrapper_list {
  padding-left: calc(18 / 16 * 1rem);
}

.bl_menuContentTextWrapper_list li {
  list-style: disc;
  font-weight: 300;
  line-height: 1.6;
}

.el_menuContent_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bl_menuListWrapper {
  padding-block: calc(60 / 16 * 1rem);
  background-color: #F1EFED;
}

.bl_menuListWrapper_inner {
  padding: calc(60 / 16 * 1rem);
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
  background-color: #fff;
  border-radius: calc(16 / 16 * 1rem);
}

.bl_menuListWrapper_inner .el_language_title_main {
  color: #938787;
  font-size: calc(11 / 16 * 1rem);
}

.bl_menuListWrapper_inner .bl_language_title {
  margin-bottom: calc(40 / 16 * 1rem);
}

.bl_menuListWrapper_list {
  display: flex;
  flex-flow: column;
  gap: calc(20 / 16 * 1rem);
  margin-bottom: 0;
}

.bl_menuListWrapper_list_item {
  position: relative;
  padding-left: calc(26 / 16 * 1rem);

}

.bl_menuListWrapper_list_item::before {
  content: "";
  position: absolute;
  top: calc(8 / 16 * 1rem);
  left: calc(9 / 16 * 1rem);
  width: calc(6 / 16 * 1rem);
  height: calc(6 / 16 * 1rem);
  background-color: #B28575;
  border-radius: 100%;
}

.bl_menuListWrapper_list_item:first-child .bl_menuListWrapper_list_item_title {
  margin-bottom: calc(4 / 16 * 1rem);
}

.bl_menuListWrapper_list_item_title {
  color: #372A27;
  font-family: var(--sansSerifFont);
  font-size: calc(16 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0;
}

.bl_menuListWrapper_list_item_text {
  color: #938787;
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .bl_menuContaier {
    grid-template-columns: 1fr;
  }

  .bl_menuContainer_content {
    padding-inline: calc(24 / 16 * 1rem);
    padding-block: calc(60 / 16 * 1rem);
  }

  .bl_menuContaier:nth-child(even) .bl_menuContainer_content {
    order: 1;
  }

  .bl_menuContaier:nth-child(even) .el_menuContent_img {
    order: 2;
  }

  .bl_menuContentTtl {
    margin-bottom: calc(40 / 16 * 1rem);

  }

  .el_menuContentTtl_num {
    font-size: calc(12 / 16 * 1rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: calc(6 / 16 * 1rem);
  }

  .el_menuContentTtl_title {
    font-size: calc(36 / 16 * 1rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: calc(-0.72 / 16 * 1rem);
    text-transform: uppercase;
  }

  .bl_menuListWrapper {
    padding-block: calc(40 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
  }

  .bl_menuListWrapper_inner {
    padding-inline: calc(24 / 16 * 1rem);
    padding-block: calc(40 / 16 * 1rem);
  }

  .bl_menuListWrapper_list_item_title {
    font-size: calc(16 / 16 * 1rem);
    font-weight: 600;
    line-height: 1.4;
  }

  .bl_menuListWrapper_list_item_text {
    font-size: calc(14 / 16 * 1rem);
    font-weight: 300;
    line-height: 1.4;
  }

}

/* --------------------------------
Reason
-------------------------------- */
.ly_reasonWrapper {
  padding-top: calc(172 / 16 * 1rem);
  padding-bottom: calc(180 / 16 * 1rem);
  background-color: #FAFAFA;
}

.ly_reasonWrapper_inner {
  display: grid;
  grid-template-columns: auto calc(400 / 16 * 1rem);
  justify-content: space-between;
  gap: calc(40 / 16 * 1rem);
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
}

.el_reasonWrapper_title {
  color: #B28575;
  font-family: var(--serifFont);
  font-size: calc(66 / 16 * 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: calc(-1.32 / 16 * 1rem);
  text-transform: uppercase;
  white-space: pre-wrap;
  word-break: break-all;
}

.bl_reasonWrapper_list {
  display: flex;
  flex-flow: column;
  gap: calc(10 / 16 * 1rem);
  color: #938787;
  font-size: calc(15 / 16 * 1rem);
  font-weight: 300;
  line-height: 1.6;
  padding-top: calc(12 / 16 * 1rem);
}

.bl_reasonWrapper_list li {
  list-style: decimal;
}

@media (max-width: 768px) {
  .ly_reasonWrapper {
    padding-block: calc(60 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
  }

  .ly_reasonWrapper_inner {
    grid-template-columns: 1fr;
    gap: calc(60 / 16 * 1rem);
  }

  .el_reasonWrapper_title {
    font-size: calc(43 / 16 * 1rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: calc(-0.88 / 16 * 1rem);
    text-transform: uppercase;
    white-space: pre-wrap;
    word-break: break-all;
  }

  .bl_reasonWrapper_list {
    padding-inline: calc(24 / 16 * 1rem);
  }


}

/* --------------------------------
Doctors
-------------------------------- */


.bl_menuListWrapper_list_item_title {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 600;
  line-height: 1.4;
}

.bl_menuListWrapper_list_item_text {
  font-size: calc(14 / 16 * 1rem);
  font-weight: 300;
  line-height: 1.4;
}

.ly_doctorsWrapper {
  background-color: #EDEBE9;
  padding-top: calc(60 / 16 * 1rem);
  padding-inline: calc(60 / 16 * 1rem);
  padding-bottom: calc(160 / 16 * 1rem);
}


.ly_doctorsWrapper .bl_language_title {
  margin-bottom: calc(124 / 16 * 1rem);
}

.bl_doctorsContent {
  display: grid;
  grid-template-columns: calc(340 / 16 * 1rem) 1fr;
  gap: calc(100 / 16 * 1rem);
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
  padding: calc(100 / 16 * 1rem);
  background-color: rgba(250, 250, 250, 0.80);
  border-radius: calc(16 / 16 * 1rem);
}

.bl_doctorsContent_nameWrapper {
  margin-bottom: calc(30 / 16 * 1rem);
}

.bl_doctorsContent>img {
  border-radius: calc(8 / 16 * 1rem);
}


.el_doctorsContent_nameWrapper_job {
  color: #938787;
  font-size: calc(11 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.el_doctorsContent_nameWrapper_name {
  color: #372A27;
  font-size: calc(28 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}

.el_doctorsContent_snsWrapper_link {
  display: grid;
  grid-template-columns: calc(16 / 16 * 1rem) auto;
  align-items: center;
  gap: calc(6 / 16 * 1rem);
  width: fit-content;
}

.bl_doctorsContent_snsWrapper {
  margin-bottom: calc(30 / 16 * 1rem);
}

.el_doctorsContent_snsWrapper_link img {
  width: 100%;
  height: 100%;
}

.el_doctorsContent_snsWrapper_link_text {
  color: #B28575;
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
}

.el_doctorsContent_description {
  color: #938787;
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: calc(30 / 16 * 1rem);
}

.bl_doctorsContent_careerWrapper_title {
  display: grid;
  grid-template-columns: calc(12 / 16 * 1rem) auto;
  align-items: center;
  gap: calc(6 / 16 * 1rem);
  margin-bottom: calc(12 / 16 * 1rem);
}

.el_doctorsContent_careerWrapper_title_text {
  color: #372A27;
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.el_doctorsContent_careerWrapper_title_icon {
  display: block;
  width: 100%;
  height: auto;
}

.bl_doctorsContent_careerWrapper_list {
  display: flex;
  flex-flow: column;
  gap: calc(10 / 16 * 1rem);
  padding-left: calc(15 / 16 * 1rem);
  margin-bottom: 0;
}

.el_doctorsContent_careerWrapper_list_item {
  list-style: disc;
  color: #938787;
  font-size: calc(12 / 16 * 1rem);
  font-weight: 300;
  line-height: 1.4;
}

.el_doctorsContent_careerWrapper_list_item_year {
  font-weight: 600;
}

@media (max-width: 768px) {

  .ly_doctorsWrapper {
    padding-block: calc(60 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
  }

  .ly_doctorsWrapper .bl_language_title {
    margin-bottom: calc(60 / 16 * 1rem);
  }

  .bl_doctorsContent {
    padding-block: calc(40 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
    grid-template-columns: 1fr;
    gap: calc(40 / 16 * 1rem);
  }

  .bl_doctorsContent_infoWrapper {
    order: 2;
  }

  .bl_doctorsContent>img {
    display: block;
    order: 1;
  }
}

/* --------------------------------
Facility
-------------------------------- */
.ly_facilityWrapper {
  position: relative;
  padding: calc(60 / 16 * 1rem);
  background: linear-gradient(180deg, #FAFAFA 0%, #F2EBE8 100%);
}

.ly_facilityWrapper .bl_language_title {
  margin-bottom: calc(239 / 16 * 1rem);
}

.bl_facilityContent {
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
}


.el_facilityContent_title {
  position: absolute;
  top: calc(160 / 16 * 1rem);
  left: calc(327 / 16 * 1rem);
  color: #B28575;
  font-family: var(--serifFont);
  font-size: calc(80 / 16 * 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: calc(-1.6 / 16 * 1rem);
  text-transform: uppercase;
  max-width: calc(870 / 16 * 1rem);
  width: 100%;
  z-index: 1;
}

.el_facilityContent_title_top,
.el_facilityContent_title_bottom {
  display: block;
  width: fit-content;
}

.el_facilityContent_title_bottom {
  margin-left: auto;
}

.bl_facilityContent_container_text {
  max-width: calc(400 / 16 * 1rem);
  width: 100%;
  padding-top: calc(247 / 16 * 1rem);
  color: #938787;
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
  flex-flow: column;
  gap: calc(30 / 16 * 1rem);
}

.bl_facilityContent_container_text p {
  margin-bottom: 0;
}

.bl_facilityContent_container_text_list {
  display: flex;
  flex-flow: column;
  gap: calc(10 / 16 * 1rem);
}

.bl_facilityContent_container_text_list_ol {
  display: flex;
  flex-flow: column;
  gap: calc(10 / 16 * 1rem);
  padding-left: calc(15 / 16 * 1rem);
}

.bl_facilityContent_container_text_list_ol li {
  list-style: decimal;
}

.bl_facilityContent_container_img {
  position: absolute;
  top: calc(315 / 16 * 1rem);
  right: calc(60 / 16 * 1rem);
  max-width: calc(520 / 16 * 1rem);
  width: 100%;
}

.el_facilityContent_container_img_01img {
  display: block;
  max-width: calc(400 / 16 * 1rem);
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(16 / 16 * 1rem);
  aspect-ratio: 1/1;
  margin-bottom: calc(40 / 16 * 1rem);
}

.el_facilityContent_container_img_02img {
  display: block;
  max-width: calc(254 / 16 * 1rem);
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: calc(16 / 16 * 1rem);
  aspect-ratio: 1/1;
  margin-left: auto;
}

@media (max-width: 768px) {

  .ly_facilityWrapper_inner .bl_language_title {
    margin-bottom: calc(60 / 16 * 1rem);
  }

  .ly_facilityWrapper {
    padding-block: calc(60 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
  }

  .bl_facilityContent_container_text {
    padding-top: calc(40 / 16 * 1rem);
    margin-bottom: calc(60 / 16 * 1rem);
  }

  .el_facilityContent_title {
    position: relative;
    top: auto;
    left: auto;
  }

  .bl_facilityContent_container_img {
    position: relative;
    top: auto;
    right: auto;
    padding-inline: calc(24 / 16 * 1rem);
  }

  .el_facilityContent_container_img_02img {
    max-width: calc(180 / 16 * 1rem);
  }

  .el_facilityContent_title {
    font-size: calc(44 / 16 * 1rem);
  }

}

/* --------------------------------
Flow
-------------------------------- */
.ly_flowWrapper {
  padding: calc(60 / 16 * 1rem);
  background-color: #FAFAFA;
}

.ly_flowWrapper .bl_language_title {
  margin-bottom: calc(74 / 16 * 1rem);
}

.bl_flowContent {
  max-width: calc(1080 / 16 * 1rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr calc(540 / 16 * 1rem);
  gap: calc(140 / 16 * 1rem);
  align-items: flex-start;
  justify-content: space-between;
}

.bl_flowContent_flowImgWrapper {
  border-radius: calc(16 / 16 * 1rem);
  overflow: hidden;
}

.bl_flowContent_flowList {
  display: flex;
  flex-flow: column;
  gap: calc(50 / 16 * 1rem);
}

.el_flowContent_flowList_item_num {
  color: #938787;
  font-size: calc(10 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
}

.el_flowContent_flowList_item_title {
  color: #B28575;
  font-size: calc(26 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.el_flowContent_flowList_item_text {
  color: #938787;
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .ly_flowWrapper {
    padding-top: calc(60 / 16 * 1rem);
    padding-bottom: 0;
    padding-inline: 0;
  }

  .ly_flowWrapper .bl_language_title {
    padding-left: calc(24 / 16 * 1rem);
  }

  .bl_flowContent {
    grid-template-columns: 1fr;
    gap: calc(80 / 16 * 1rem);
  }


  .bl_flowContent_flowImgWrapper {
    width: 100%;
    border-radius: 0;
  }

  .bl_flowContent_flowList {
    padding-inline: calc(24 / 16 * 1rem);
  }
}


/* --------------------------------
FAQ
-------------------------------- */
.ly_faqWrapper {
  padding-inline: calc(60 / 16 * 1rem);
  padding-top: calc(60 / 16 * 1rem);
  padding-bottom: calc(160 / 16 * 1rem);
  background-color: #F1EFED;
}

.ly_faqWrapper .bl_language_title {
  margin-bottom: calc(84 / 16 * 1rem);
}

.bl_faqWrapper_inner {
  max-width: calc(880 / 16 * 1rem);
  margin-inline: auto;
}

.bl_faqWrapper_inner_ttl {
  width: fit-content;
  margin-inline: auto;
  margin-bottom: calc(80 / 16 * 1rem);
}

.el_faqWrapper_inner_ttl_title {
  color: #B28575;
  text-align: center;
  font-family: var(--serifFont);
  font-size: calc(80 / 16 * 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: calc(-1.6 / 16 * 1rem);
  text-transform: uppercase;
  margin-bottom: calc(80 / 16 * 1rem);
}

.el_faqWrapper_inner_ttl_text {
  color: #938787;
  text-align: center;
  font-family: var(--sansSerifFont);
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
}

.bl_faqWrapper_contentslist {
  display: flex;
  flex-flow: column;
  gap: calc(16 / 16 * 1rem);
}

.bl_faqWrapper_contentslist_item_wrapper {
  background-color: #fff;
  border-radius: calc(16 / 16 * 1rem);

}



.bl_faqWrapper_contentslist_item_summary {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr calc(36 / 16 * 1rem);
  align-items: center;
  gap: calc(14 / 16 * 1rem);
  padding-block: calc(30 / 16 * 1rem);
  padding-inline: calc(40 / 16 * 1rem);
  border-radius: calc(16 / 16 * 1rem);
}

.bl_faqWrapper_contentslist_item_summary::-webkit-details-marker {
  display: none;
}

.bl_faqWrapper_contentslist_item_summary::marker {
  content: "";
}

.bl_faqWrapper_contentslist_item_summary_title {
  display: block;
  color: #372A27;
  font-family: var(--sansSerifFont);
  font-size: calc(24 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.2;
}

.bl_faqWrapper_contentslist_item_summary_arrow {
  display: block;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  border-radius: 100%;
  background-color: #B28575;
}


.bl_faqWrapper_contentslist_item_summary_arrow img {
  display: block;
  width: 100%;
}

.bl_faqWrapper_contentslist_item_summary_arrow {
  display: grid;
  grid-template-columns: calc(14 / 16 * 1rem);
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.is-open .bl_faqWrapper_contentslist_item_summary_arrow {
  transform: rotate(-180deg);
  transition: transform 0.3s ease-in-out;
}

.bl_faqWrapper_contentslist_item_content {
  overflow: hidden;
}

.el_faqWrapper_contentslist_item_content_text {
  color: #938787;
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 0;
  padding-inline: calc(40 / 16 * 1rem);
  padding-bottom: calc(18 / 16 * 1rem);
}

@media (max-width: 768px) {
  .ly_faqWrapper {
    padding-top: calc(60 / 16 * 1rem);
    padding-bottom: calc(80 / 16 * 1rem);
    padding-inline: calc(24 / 16 * 1rem);
  }

  .bl_faqWrapper_inner_ttl {
    margin-bottom: calc(40 / 16 * 1rem);
  }

  .ly_faqWrapper .bl_language_title {
    margin-bottom: calc(50 / 16 * 1rem);
  }


  .el_faqWrapper_inner_ttl_title {
    color: #B28575;
    text-align: center;
    font-size: calc(44 / 16 * 1rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: calc(-0.88 / 16 * 1rem);
    text-transform: uppercase;
  }

  .el_faqWrapper_inner_ttl_title {
    margin-bottom: calc(40 / 16 * 1rem);
  }

  .el_faqWrapper_inner_ttl_text {
    text-align: center;
    font-size: calc(14 / 16 * 1rem);
    font-weight: 300;
    line-height: 1.5;
  }

  .bl_faqWrapper_contentslist_item_summary {
    grid-template-columns: 1fr calc(36 / 16 * 1rem);
    gap: calc(14 / 16 * 1rem);
    padding: calc(20 / 16 * 1rem);
  }

  .bl_faqWrapper_contentslist_item_summary_title {
    font-size: calc(18 / 16 * 1rem);
    font-weight: 600;
    line-height: 1.2;
  }

  .bl_faqWrapper_contentslist_item_summary_arrow {
    grid-template-columns: calc(14 / 16 * 1rem);
  }

  .el_faqWrapper_contentslist_item_content_text {
    font-size: calc(14 / 16 * 1rem);
    font-weight: 300;
    line-height: 1.5;
    padding-inline: calc(20 / 16 * 1rem);
  }
}


/* --------------------------------
Location
-------------------------------- */
.ly_locationWrapper {
  padding-top: calc(60 / 16 * 1rem);
  padding-inline: calc(60 / 16 * 1rem);
  padding-bottom: calc(160 / 16 * 1rem);
  background-color: #FAFAFA;
}

.ly_locationWrapper .bl_language_title {
  margin-bottom: calc(60 / 16 * 1rem);
}

.el_locationWrapper_content_text {
  color: #938787;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: calc(24 / 16 * 1rem);
}

.el_locationWrapper_content_btn {
  color: #B28575;
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

@media (max-width: 768px) {
  .ly_locationWrapper {
    padding-inline: calc(24 / 16 * 1rem);
    padding-top: calc(60 / 16 * 1rem);
    padding-bottom: calc(80 / 16 * 1rem);
  }

  .ly_locationWrapper .bl_language_title {
    margin-bottom: calc(50 / 16 * 1rem);
  }

  .el_locationWrapper_content_text {
    font-size: calc(14 / 16 * 1rem);
  }
}


/* --------------------------------
Form
-------------------------------- */

.ly_enFooterWrapper {
  position: relative;
  background-image: url(../img/from-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-inline: calc(24 / 16 * 1rem);
  z-index: 0;
}

.ly_enFooterWrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/img-texture.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.ly_enFooterWrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(178, 133, 117, .8);
  z-index: 0;
}

.ly_formSection {
  position: relative;
  z-index: 2;
  padding-top: calc(140 / 16 * 1rem);
}

.ly_formSection_inner {
  max-width: calc(880 / 16 * 1rem);
  margin-inline: auto;
}

.bl_formSection_titleWrapper {
  margin-bottom: calc(80 / 16 * 1rem);
}

.el_formSection_title_main {
  color: #FAFAFA;
  text-align: center;
  font-family: var(--serifFont);
  font-size: calc(100 / 16 * 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: calc(101 / 16 * 1rem);
}

.el_formSection_title_sub {
  color: #FAFAFA;
  text-align: center;
  font-size: calc(15 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.6;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 0;
}


.bl_formUpper {
  display: flex;
  flex-flow: column;
  gap: calc(24 / 16 * 1rem);
  padding-block: calc(50 / 16 * 1rem);
  border-block: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: calc(50 / 16 * 1rem);
}

.bl_enForm_item p {
  margin-bottom: 0;
}

.bl_enForm p {
  margin-bottom: 0;
}


.bl_enForm_item_ttl {
  display: grid;
  grid-template-columns: calc(16 / 16 * 1rem) auto;
  gap: calc(4 / 16 * 1rem);
  align-items: center;
  padding-block: calc(17 / 16 * 1rem);
}

.el_enForm_item_ttl_txt {
  display: block;
  grid-column: 2;
  color: #FFF;
  font-size: calc(16 / 16 * 1rem);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
}

.bl_enForm_item_label {
  display: grid;
  grid-template-columns: calc(200 / 16 * 1rem) 1fr;
  align-items: flex-start;
  gap: calc(80 / 16 * 1rem);
}

.is-req {
  position: relative;
}

.is-req::before {
  content: "";
  position: relative;
  width: calc(6 / 16 * 1rem);
  height: calc(6 / 16 * 1rem);
  background-color: #FF9A6F;
  border-radius: 100%;
}

.wpcf7-form-control-wrap input {
  display: block;
  width: 100%;
  padding-block: calc(16 / 16 * 1rem);
  padding-inline: calc(24 / 16 * 1rem);
  border-radius: calc(8 / 16 * 1rem);
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  color: #372A27 !important;
}

.bl_dateItem {
  display: block;
  margin-bottom: calc(16 / 16 * 1rem);
}

.bl_timeItemWrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: calc(10 / 16 * 1rem);
  align-items: center;
}

.bl_timeItemWrapper>span {
  display: block;
  position: relative;
}

.bl_timeItemWrapper>span::before {
  content: "";
  position: absolute;
  top: 44%;
  right: calc(24 / 16 * 1rem);
  transform: translate(-50%, 0);
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  max-width: calc(10 / 16 * 1rem);
  background-image: url(../img/form-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bl_timeItemWrapper .wpcf7-select {
  display: block;
  appearance: none;
  width: 100%;
  padding-block: calc(16 / 16 * 1rem);
  padding-inline: calc(24 / 16 * 1rem);
  border-radius: calc(8 / 16 * 1rem);
  background-color: #fff;
  color: #372A27;
  border: none;
}

.bl_radioList {
  padding-top: calc(10 / 16 * 1rem);
}

.bl_radioList .wpcf7-radio {
  display: flex;
  flex-flow: column;
  gap: calc(20 / 16 * 1rem);
}

.bl_radioList .wpcf7-list-item {
  margin-left: 0;
}

.bl_radioList .wpcf7-list-item label {
  display: grid;
  grid-template-columns: calc(24 / 16 * 1rem) auto;
  gap: calc(10 / 16 * 1rem);
  align-items: center;
}

.wpcf7-validates-as-date {
  background-color: #fff;
  min-height: calc(58 / 16 * 1rem);
  color: #372A27;
  text-align: left !important;
}


.wpcf7-list-item-label {
  display: block;
  color: #FFF;
  font-size: calc(16 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1.5;
}


.bl_radioList .wpcf7-list-item label input {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  background-color: #fff;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  border: none !important;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}

.bl_radioList .wpcf7-list-item label input:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: calc(12 / 16 * 1rem);
  background-color: #372A27;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  padding: 0;
}

.wpcf7-not-valid-tip {
  margin-top: calc(10 / 16 * 1rem);
  font-size: calc(12 / 16 * 1rem);
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form-control-wrap textarea {
  display: block;
  width: 100%;
  appearance: none;
  border: none;
  padding-block: calc(16 / 16 * 1rem);
  padding-inline: calc(24 / 16 * 1rem);
  border-radius: calc(8 / 16 * 1rem);
  color: #372A27 !important;
}

.wpcf7-form-control-wrap textarea::placeholder {
  color: #938787 !important;
  font-family: var(--sansSerifFont);
  font-size: calc(16 / 16 * 1rem);
  font-weight: 300;
  line-height: 1.5;
}

.date-line {
  color: #FFF;
}

.date-line::before {
  content: "";
  display: none;
}

.wpcf7-submit {
  display: block;
  width: 100%;
  max-width: calc(220 / 16 * 1rem);
  margin-inline: auto;
  background-color: #372A27;
  border-radius: calc(100 / 16 * 1rem);
  border: none;
  color: #FFF;
  font-size: calc(16 / 16 * 1rem);
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  /* 16px */
  letter-spacing: calc(0.32 / 16 * 1rem);
  padding-block: calc(28 / 16 * 1rem);
  padding-inline: calc(55 / 16 * 1rem);
  transition: all 0.3s ease-in-out;

}

@media (any-hover: hover) {
  .wpcf7-submit:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
  }
}

.wpcf7-response-output {
  color: #fff;
  text-align: center;
  padding-block: 32px;
  border: none !important;
}

.bl_enForm_item_label p {
  display: contents;
}


@media (max-width: 768px) {

  .ly_formSection {
    padding-top: calc(80 / 16 * 1rem);
  }

  .bl_formSection_titleWrapper {
    margin-bottom: calc(40 / 16 * 1rem);
  }

  .el_formSection_title_main {
    font-size: calc(44 / 16 * 1rem);
    line-height: 1.1;
    letter-spacing: calc(-0.88 / 16 * 1rem);
    margin-bottom: calc(40 / 16 * 1rem);
  }

  .bl_enForm_item_label {
    grid-template-columns: auto;
    gap: calc(10 / 16 * 1rem);
  }

  .bl_enForm_item_ttl {
    padding-block: 0;
  }

  .bl_formUpper {
    gap: calc(32 / 16 * 1rem);
    padding-block: calc(40 / 16 * 1rem);
    margin-bottom: calc(40 / 16 * 1rem);
  }

  .bl_radioList {
    padding-top: 0;
  }
}



/* --------------------------------
Footer
-------------------------------- */

.bl_enFooter {
  position: relative;
  z-index: 1;
  padding-block: calc(60 / 16 * 1rem);
  padding-inline: calc(20 / 16 * 1rem);
}

.bl_enFooter_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_enFooter_link {
  width: fit-content;
  display: grid;
  grid-template-columns: auto calc(14 / 16 * 1rem);
  align-items: center;
  gap: calc(2 / 16 * 1rem);
  justify-content: center;
  color: #FFF;
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

.bl_enFooter_link p {
  margin-bottom: 0;
}


.bl_enFooter_copyright {
  color: #FFF;
  font-size: calc(14 / 16 * 1rem);
  font-style: normal;
  font-weight: 300;
  line-height: 1;
}

@media (max-width: 768px) {
  .bl_enFooter {
    padding-top: calc(50 / 16 * 1rem);
    padding-bottom: calc(80 / 16 * 1rem);
    padding-inline: 0;
  }

  .bl_enFooter_inner {
    flex-flow: column;
    gap: calc(16 / 16 * 1rem);
    align-items: center;
  }
}


.hiddenInput {
  display: none !important;
}