@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: calc(6px + 4 * ((100vw - 320px) / 1120));
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #5C4243;
  font-style: normal;
}

@media (min-width: 1440px) {
  html {
    font-size: 10px;
  }
}

@media (max-width: 834px) {
  html {
    font-size: calc(100vw / 83.4);
    /* 834px → 10px（=1rem） */
  }
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

.hidden_pc {
  display: none;
}

.hidden_sp {
  display: block;
}

@media (max-width: 834px) {
  .hidden_pc {
    display: block;
  }

  .hidden_sp {
    display: none;
  }
}

/* パンくず */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li:not(:last-of-type)::after {
  content: "-";
  margin: 0 .6em;
  /* 記号の左右の余白 */
  color: #777;
  /* 記号の色 */
}

.breadcrumb_area {
  padding-bottom: 3rem;
}

/* section title */

.section_title_area {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.section_title_txt {
  font-family: "Cormorant SC", serif;
  font-weight: 700;
  font-size: 5rem;
}

.section_title_txt_jp {
  font-weight: 400;
  font-size: 1.4rem;
  margin-top: 2rem;
}

.section_title_center {

  flex-direction: column;
  align-items: center;
  gap: 0.4rem;

  .section_title_txt_jp {
    margin: 0;
  }

}

@media (max-width: 834px) {
  .section_title_txt {
    font-family: "Cormorant SC", serif;
    font-weight: 700;
    font-size: 5rem;
  }

  .section_title_txt_jp {
    font-weight: 400;
    font-size: 2.6rem;
    margin-top: 2rem;
  }

}

/* readmore */


.readmore_area {
  display: flex;
  justify-content: flex-end;
  margin-right: 3.5rem;
}

.readmore_link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.readmore_txt {
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
}

.readmore_icon {
  width: 8.9rem;
  height: 4.3rem;
}

@media (max-width: 834px) {
  .readmore_txt {
    font-size: 2.5rem;
  }
}


/* header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 11rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  transition: background-color .25s ease, box-shadow .25s ease;
}

nav {
  display: flex;
  align-items: center;
}

.header_inner {
  display: flex;
  position: relative;
  z-index: 5;
  justify-content: space-between;
  max-width: 1300px;
  margin-inline: auto;
  gap: 2rem;
  padding-block: 2rem;
  padding-inline: 2.5rem;
}



h1 img {
  width: 18.3rem;
  height: 6.1rem;
}

ul.header_menu {
  list-style: none;
  display: flex;
  gap: 7.5rem;
  align-items: center;
}




.header_EN {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 5.2rem;
}
.header_JP {
  font-size: 2.4rem;
}
@media (min-width: 835px) {
.header_EN {
  font-family: "Cormorant SC", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.2rem;
}

.header_JP {
  font-size: 1.4rem;
}
}
/* ドロップダウン */
.dropdown_item {
  position: relative;
}

/* PCだけ */
@media (min-width: 835px) {
  .header_menu li.menu-item-has-children {
    position: relative;
  }

  .header_menu .sub-menu {
    position: absolute;
    display: none;
    width: 380%;
    position: absolute;
    top: 5.3rem;
    left: -1rem;
  }

  .header_menu li.menu-item-has-children:hover>.sub-menu {
    display: block;
  }

  .sub-menu li {
    background-color: #FFFFFF;
    opacity: 1;
    transition: all .3s;
    position: relative;
    margin-top: 0 !important;
  }

  .sub-menu li:not(:first-child)::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #de6666;
    position: absolute;
    top: 0;
    left: 0;
  }

  .sub-menu li:hover {
    background-color: #e0a9a9;
    opacity: 1;
  }

  .sub-menu li a {
    display: flex;
    flex-direction: column;
    padding: 14px 20px;
    line-height: 1.4;
    position: relative;
  }

  .sub-menu li a p {
    color: #5C4243 !important;
    text-decoration: none;
    position: relative;
  }

  .sub-menu li .header_EN {
    font-size: 2.6rem;
    margin-bottom: 4px;
  }

  .sub-menu li .header_JP {
    font-size: 2.2rem;
    opacity: 0.7;
  }

  .sub-menu li:hover a p {
    color: #FFF;
  }


  .sub-menu li a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #5C4243;
    border-left: 2px solid #5C4243;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
  }

  .sub-menu li:hover a::before {
    border-top: 2px solid #FFFFFF;
    border-left: 2px solid #FFFFFF;
  }
}



/* ハンバーガー */
.hamburger1 {
  display: none;
}

@media (max-width: 834px) {

  .header_menu {
    display: none !important;
  }

  /* PC用ULだけ消す */
  .hamburger1 {
    display: flex;
  }


  .hamburger1 {
    display: block;
    position: relative;
    margin-left: auto;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    margin-block: auto;
    padding: 0;
    border: none;
    cursor: pointer;
    z-index: 15;
  }

  .hamburger1 .MenuBtn-BarFrame {
    position: relative;
    display: block;
    width: 30px;
    height: 2px;
  }

  .hamburger1 .MenuBtn-BarFrame-FirstBar {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;

    transition: all 0.15s linear;
  }

  .hamburger1 .MenuBtn-BarFrame-SecondBar {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;

    transition: all 0.15s linear;

    transform: translateY(-8px) rotate(0deg);
  }

  .hamburger1 .MenuBtn-BarFrame-ThirdBar {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    transition: all 0.15s linear;
    transform: translateY(8px) rotate(0deg);
  }

  .hamburger1.isClosed .MenuBtn-BarFrame-FirstBar {
    opacity: 0;
  }

  .hamburger1.isClosed .MenuBtn-BarFrame-SecondBar {
    transform: translateY(0) rotate(45deg);
    background-color: #5C4243;
  }

  .hamburger1.isClosed .MenuBtn-BarFrame-ThirdBar {
    transform: translateY(0) rotate(-45deg);
    background-color: #5C4243;
  }

  .MenuBtn-BarFrame-FirstBar.scrolled,
  .MenuBtn-BarFrame-SecondBar.scrolled,
  .MenuBtn-BarFrame-ThirdBar.scrolled {
    background-color: #5C4243;
  }

}

/* ハンバーガー内サブメニュー */
.overlay .hamburgeritems .sub-menu {
  display: none;
  margin-top: 3rem;
}

.overlay .hamburgeritems li.menu-item-has-children.open>.sub-menu {
  display: block;
}

.drawer_nav_item {
  padding: 15px;
  position: relative;
}

.sub-menu li {
  margin-top: 1.6rem;
}

.sub-menu li a p {
  text-align: center;
}

.sub-menu li a .header_JP {
  font-size: 2.4rem;
  font-weight: 400;
}



/* overlay */

.overlay {
  display: none;
  opacity: 0;
}

@media(max-width:834px) {
  .overlay {
    display: flex;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #ffffff;
    width: 100%;
    height: 100vh;
    margin-left: auto;
    z-index: 10;
    transition: all 0.6s ease-in-out;
    justify-content: center;
    align-items: center;
  }

  .overlay.show {
    pointer-events: auto;
    opacity: 0.95;
    transform: translateY(0);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-around;

  }

  ul.hamburgeritems {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }




  .hamburgeritems li a {
    /* flex: 1; */
    /* line-height: 60px; */
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  li.hamburgeritem a {
    display: block;
    width: 100%;
    color: #5C4243;
    font-weight: bold;
    font-size: 20px;
  }


  button.hamburgerclose {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: transparent;
    letter-spacing: 0.1rem;
    color: #5C4243;
    border-top: 0.1rem solid #f8f9fa;
    padding: 9px 120px;
    width: 100%;
    cursor: pointer;
    z-index: 3;
  }

  .hamburgerlink .header_JP {
    font-size: 1.6rem;
    font-weight: 400;
  }

}

/* container */



.container_inner {
  max-width: 1160px;
  margin-inline: auto;
}

/* contact */

.contact {
  background-color: #EEDEDE;
  padding: 5rem 8rem;

  .container_inner {
    background-color: #FFFFFF;
    border-radius: 5px;
    padding-top: 4rem;
    padding-bottom: 6.4rem;
  }
}

.contact_txt {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: center;
  margin-top: 2.6rem;
}

.contact .readmore_area {
  justify-content: center;
  margin: 0;
}

.contact .readmore_link {
  background-color: rgba(198, 144, 144, 0.3);
  padding: 1.3rem 1.3rem 1.3rem 2rem;
  border-radius: 30px;
  margin-top: 4rem;
}

@media (max-width: 834px) {
  .contact_txt {
    font-size: 2.2rem;
    line-height: 4rem;
    margin-top: 4rem;
  }

  .contact .readmore_link {
    margin-top: 5rem;
  }
}


/* footer */
.footer_line {
  width: 100%;
  height: 1.6rem;
  background-color: #A74D4D;
}

.footer_copy {
  width: 100%;
  height: 4rem;
  text-align: center;
  background-color: #EBEAEA;
  line-height: 4rem;
}

/* ==== フルブリード（全幅に） ==== */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}