@charset "UTF-8";
/*================================
リニューアル202512
================================*/
.site_main {
  min-height: calc(100vh - 78px);
}
@media screen and (max-width: 480px) {
  .site_main {
    min-height: calc(100vh - 195px);
  }
}
.site_footer__inner {
  box-sizing: border-box;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .site_footer__inner {
    padding-inline: 20px;
  }
}
/*================================
common
================================*/
body:has(.is-open) {
  overflow: hidden;
}

.l-header *,
.l-main * {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0;
}

.l-inner {
  width: min(100%, 1316px);
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-inline: 20px;
  }
}

.c-section__head {
  flex: 0 0 auto;
}

.c-section__head-en {
  font-family: "Abhaya Libre", serif;
  font-weight: 600;
  font-size: 80px;
  line-height: 1;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-section__head-en {
    font-size: 48px;
  }
}

.c-section__head-jp {
  display: block;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-section__head-jp {
    margin-top: 5px;
    font-size: 14px;
  }
}
.p-top-gree .c-section__head-jp {
  margin-left: 4px;
}
@media screen and (max-width: 768px) {
  .p-top-gree .c-section__head-jp {
    margin-left: 0;
  }
}

.u-pc-only {

}
@media screen and (max-width: 575px) {
  .u-pc-only {
    display: none !important;
  }
}

.u-sp-only {
  display: none !important;
}
@media screen and (max-width: 575px) {
  .u-sp-only {
    display: block !important;
  }
}
/*================================
l-header
================================*/
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: background-color 0.3s;
}
.l-header.is-scroll {
  background: #fff;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
}

.l-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.l-header__inner {
  padding-block: 32px 14px;
  padding-inline: 104px 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1439px) {
  .l-header__inner {
    padding-inline: 7.222vw 4.861vw;
  }
}
@media screen and (max-width: 1279px) {
  .l-header__inner {
    padding-inline: 32px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    padding-block: 25px 12px;
    padding-inline: 19px 20px;
    gap: 0;
  }
}

.l-header__logo {
  flex-shrink: 0;
  width: 316px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    width: 241px;
  }
}
@media screen and (max-width: 575px) {
  .l-header__logo {
    width: 166px;
    flex-shrink: 1;
  }
}
.l-header__logo .logo-white,
.l-header__logo .logo-black {

}
.l-header__logo .logo-black {
  height: 66px;
  position: absolute;
  top: 0;
  left: 0;
  scale: 1.04762;
  opacity: 0;
  transition: opacity 0.3s;
  scale: 1 1.05;
  translate: -0.3%;
}
@media screen and (max-width: 575px) {
  .l-header__logo .logo-black {
    height: 33px;
  }
}
.l-header.is-scroll .logo-black,
.l-header.is-open .logo-black {
  opacity: 1;
}

.l-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.l-header__list {
  display: flex;
  align-items: center;
  gap: 42px;
}
@media screen and (max-width: 768px) {
  .l-header__list {
    display: none;
  }
}

.l-header__item {

}

.l-header__item a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s, color 0.3s;
}
@media (hover: hover) {
  .l-header__item a:hover {
    opacity: 0.4;
  }
}

.l-header.is-scroll .l-header__item a,
.l-header.is-open .l-header__item a {
  color: #000;
}

.l-header__item a .en {
  display: block;
  font-family: "Abhaya Libre", serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1;
  letter-spacing: 0;
}

.l-header__item a .jp {
  margin-top: -4px;
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.l-header__btn {
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .l-header__btn {
    margin-left: 16px;
  }
}

.l-header__btn a {
  display: block;
  color: #fff;
  width: 160px;
  height: 45px;
  line-height: 45px;
  border-radius: 999px;
  padding-left: 32px;
  font-size: 14px;
  font-weight: 700;
  background: #ED6C00 url(../img/renewal202512/common/link-icon.svg) no-repeat center right 33px/13.5px;
  transition: background-color 0.3s;
}
@media screen and (max-width: 575px) {
  .l-header__btn a {
    width: 98px;
    height: 31px;
    line-height: 31px;
    padding-left: 16px;
    font-size: 10px;
    background-size: 12px;
    background-position: center right 16px;
  }
}
@media (hover: hover) {
  .l-header__btn a:hover {
    background: #000 url(../img/renewal202512/common/link-icon.svg) no-repeat center right 33px/13.5px;
  }
}

.l-header__sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header__sp {
    display: block;
  }
}

.l-header__hum {
  margin-left: 10px;
  width: 32px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.l-header__hum-part {
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: translate 0.5s, rotate 0.5s, opacity 0.5s;
}
.l-header.is-scroll .l-header__hum-part,
.l-header.is-open .l-header__hum-part {
  background: #000;
}
.l-header.is-open .l-header__hum-part:first-child {
  translate: 0 9.5px;
  rotate: -45deg;
}
.l-header.is-open .l-header__hum-part:nth-child(2) {
  opacity: 0;
  translate: 100%;
  transition: translate 0.5s, rotate 0.5s;
}
.l-header.is-open .l-header__hum-part:last-child {
  translate: 0 -9.5px;
  rotate: 45deg;
}

.l-drawer__nav {
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background: #f3f2f2;
  padding-top: calc(110px * 1.35);
  padding-bottom: calc(40px * 1.35);
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity ease 0.5s, visibility ease 0.5s;
}
@media screen and (max-width: 575px) {
  .l-drawer__nav {
    padding-top: 28.974vw;
    padding-bottom: 10.256vw;
  }
}
.l-header.is-open .l-drawer__nav {
  opacity: 1;
  visibility: visible;
}

.l-drawer__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: calc(40px * 1.35);
}
@media screen and (max-width: 575px) {
  .l-drawer__list {
    gap: 12.051vw;
  }
}

.l-drawer__item a {
  color: #000;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: calc(6px * 1.35);
}
@media screen and (max-width: 575px) {
  .l-drawer__item a {
    gap: 1.538vw;
  }
}

.l-drawer__item a .en {
  font-family: "Abhaya Libre", serif;
  font-size: calc(32px * 1.35);
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .l-drawer__item a .en {
    font-size: 8.205vw;
  }
}

.l-drawer__item a .jp {
  font-size: calc(14px * 1.35);
  font-weight: 500;
}
@media screen and (max-width: 575px) {
  .l-drawer__item a .jp {
    font-size: 3.59vw;
  }
}
/*================================
p-top-mv
================================*/
.p-top-mv {

}

.p-top-mv__inner {

}

.p-top-mv__content {
  width: 100%;
  height: calc(100vh + 50px);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-top-mv__content {
    height: auto;
    aspect-ratio: 390/466;
  }
}

.p-top-mv__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.p-top-mv__lead {
  font-family: "Abhaya Libre", serif;
  font-size: max(5.556vw, calc(80px * 0.9));
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: 0;
  color: #fff;
  position: absolute;
  bottom: max(6.736vw, calc(97px * 0.9));
  left: 7.153vw; /* 80px; */
}
@media screen and (max-width: 768px) {
  .p-top-mv__lead {
    bottom: 15.641vw; /* 61px; */
    left: 5.128vw; /* 20px; */
    font-size: 8.718vw; /* 34px; */
  }
}

.p-top-mv__lead .fz-sm {
  display: block;
  font-family: "Abhaya Libre", serif;
  font-size: max(2.778vw, calc(40px * 0.9));
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-top-mv__lead .fz-sm {
    margin-top: 1.026vw; /* 4px; */
    font-size: 5.641vw; /* 22px; */
  }
}
/*================================
p-top-info
================================*/
.p-top-info {
  margin-top: -50px;
  padding-top: 120px;
  padding-bottom: 187px;
  background: #F3F2F2;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-info {
    margin-top: -30px;
    padding-top: 75px;
    padding-bottom: 109px;
    border-radius: 30px 30px 0 0;
  }
}

.p-top-info__inner {

}

.p-top-info__content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 575px) {
  .p-top-info__content {
    gap: 32px;
  }
}

.p-top-info__x {
  margin-top: 20px;
  margin-left: auto;
  display: block;
  flex: 0 0 216px;
  height: 41px;
  line-height: 41px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-radius: 999px;
  color: #fff;
  background: #000 url(../img/renewal202512/common/link-icon.svg) no-repeat center right 23px/13px;
  padding-left: 23px;
  transition: background-color 0.3s;
}
@media screen and (max-width: 575px) {
  .p-top-info__x {
    order: 3;
    margin-top: 0;
    flex: 0 0 280px;
    height: 48px;
    line-height: 48px;
    font-size: 13px;
    padding-left: 74px;
    margin-inline: auto;
    background-position: center right 74px;
  }
}

.p-top-info__x.pc {
  
}
@media screen and (max-width: 575px) {
  .p-top-info__x.pc {
    display: none;
  }
}
.p-top-info__x.sp {
  display: none;
}
@media screen and (max-width: 575px) {
  .p-top-info__x.sp {
    display: block;
  }
}

@media (hover: hover) {
  .p-top-info__x:hover {
    background: #ED6C00 url(../img/renewal202512/common/link-icon.svg) no-repeat center right 23px/13px;
  }
}

.p-top-info__list {
  flex: 0 1 100%;
  max-height: 500px;
  overflow: scroll;
  position: relative;
  padding-right: 16px;
  margin-right: -16px;
}
@media screen and (max-width: 768px) {
  .p-top-info__list {
    max-height: 658px;
    padding-right: 4px;
    margin-right: 4px;
  }
}

.p-top-info__list .ps__rail-y {
  opacity: 0;
  right: 4px !important;
}

.ps__thumb-y {
  background: #000;
}

.p-top-info__list .ps__rail-x {
  opacity: 0 !important;
}

.p-top-info__item {
  padding-block: 24px;
  border-bottom: solid 1px #dbdada;
}
@media screen and (max-width: 768px) {
  .p-top-info__item {
    padding-right: 8px;
  }
}

.p-top-info__meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-top-info .date {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
}

.p-top-info .tag {
  flex-shrink: 0;
  min-width: 96px;
  height: 25px;
  line-height: 21px;
  padding-inline: 16px;
  border: solid 1px #E7E7E7;
  text-align: center;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-top-info .txt {
  margin-top: 8px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 575px) {
  .p-top-info .txt {
    font-size: 14px;
  }
}
/*================================
p-top-gree
================================*/
.p-top-gree {
  margin-top: -50px;
  padding-top: 110px;
  padding-bottom: 150px;
  background: url(../img/renewal202512/top/greetings-bg.png) no-repeat top center/cover;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 1;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .p-top-gree {
    margin-top: -30px;
    padding-top: 90px;
    padding-bottom: 105px;
    background: url(../img/renewal202512/top/sp-greetings-bg.png) no-repeat top center/cover;
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (max-width: 575px) {
  .p-top-gree {
    padding-top: 75px;
  }
}

.p-top-gree__inner {

}

.p-top-gree__content {
  display: flex;
  justify-content: space-between;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .p-top-gree__content {
    flex-direction: column;
    gap: 42px;
  }
}

.p-top-gree__txts {
  margin-top: 19px;
  flex: 0 1 730px;
}
@media screen and (max-width: 768px) {
  .p-top-gree__txts {
    margin-top: 0;
  }
}

.p-top-gree__txt {
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (max-width: 575px) {
  .p-top-gree__txt {
    font-size: 14px;
  }
}

.p-top-gree__txt span {
  display: block;
}

.p-top-gree__txt span + span {
  margin-top: 1.8em;
}
@media screen and (max-width: 575px) {
  .p-top-gree__txt span + span {
    margin-top: 2em;
  }
}

.p-top-gree__name {
  margin-top: 1.8em;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.9;
}
@media screen and (max-width: 575px) {
  .p-top-gree__name {
    margin-top: 2em;
    font-size: 14px;
  }
}

.p-top-gree__person {
  margin-top: 0.2em;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.9;
  opacity: 0.8;
}
@media screen and (max-width: 575px) {
  .p-top-gree__person {
    margin-top: 0.8em;
  }
}
/*================================
p-top-access
================================*/
.p-top-access__wrap {
  background: #361808;
}

.p-top-access {
  padding-top: 92px;
  padding-bottom: 53px;
  background: #f3f2f2;
  border-radius: 50px 50px 0 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-access {
    margin-top: -30px;
    padding-top: 70px;
    padding-bottom: 47px;
    border-radius: 30px 30px 0 0;
  }
}

.p-top-access__inner {

}

.p-top-access__content {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  .p-top-access__content {
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
}

.p-top-access__note {
  margin-left: auto;
  font-size: 16px;
  font-weight: 700;
  translate: 7px 10px;
}
@media screen and (max-width: 575px) {
  .p-top-access__note {
    margin-top: -10px;
    width: 100%;
    font-size: 14px;
    translate: none;
  }
}

.p-top-access__map {
  margin-top: 59px;
  width: 100%;
  aspect-ratio: 1236/558;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-top-access__map {
    aspect-ratio: 3/2;
  }
}
@media screen and (max-width: 575px) {
  .p-top-access__map {
    margin-top: 0;
    aspect-ratio: 1;
  }
}

.p-top-access__map iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-top-access__map.is-active iframe {
  pointer-events: auto !important;
}

.p-top-access__btn {
  display: none;
}
@media screen and (max-width: 575px) {
  .p-top-access__btn {
    display: block;
    width: min(100%, 338px);
    margin-inline: auto;
    text-align: center;
    background: #000;
    border-radius: 999px;
    color: #fff;
    height: 50px;
    line-height: 48px;
    letter-spacing: 0.05em;
  }
}

.p-top-access__bottom {
  flex: 0 1 100%;
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .p-top-access__bottom {
    margin-top: 0;
  }
}

.p-top-access__station {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 575px) {
  .p-top-access__station {
    margin-top: 7px;
  }
}

.p-top-access__address {
  margin-top: 29px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 575px) {
  .p-top-access__address {
    margin-top: 12px;
  }
}

.p-top-access__address.--en {
  margin-top: 13px;
  font-size: 13px;
}
@media screen and (max-width: 575px) {
  .p-top-access__address.--en {
    margin-top: 10px;
  }
}

.p-top-access__info {
  margin-top: 3px;
}
@media screen and (max-width: 575px) {
  .p-top-access__info {
    margin-top: 13px;
  }
}

.p-top-access__tel,
.p-top-access__mail {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 575px) {
  .p-top-access__tel,
  .p-top-access__mail {
    display: block;
  }
}

.p-top-access__tel .fw-bold,
.p-top-access__mail .fw-bold {
  font-weight: 700;
}

.p-top-access__tel {

}

.p-top-access__mail {

}
/*================================
l-mv
================================*/
.l-mv {

}

.l-mv__inner {

}

.l-mv__content {
  width: 100%;
  aspect-ratio: 1440/393;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-mv__content {
    aspect-ratio: 10/6;
  }
}

.l-mv__content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.l-mv__ttl {
  color: #fff;
  position: absolute;
  bottom: 5.556vw; /* 80px */
  left: 7.847vw; /* 113px */
}
@media screen and (max-width: 768px) {
  .l-mv__ttl {
    bottom: 6.154vw;
    left: 5.128vw;
  }
}

.l-mv__ttl .en {
  font-family: "Abhaya Libre", serif;
  font-size: max(5.556vw, 56px); /* 80px */
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-mv__ttl .en {
    font-size: 11.538vw;
  }
}

.l-mv__ttl .jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: max(1.111vw, 12px);
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .l-mv__ttl .jp {
    font-size: 3.59vw;
  }
}