@charset "UTF-8";
/* aタグ設定
------------------------------------- */
a:hover,
.alpha {
  opacity: 0.75;
}

a {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  font-family: "Noto Serif JP", serif;
}

ul {
  list-style: none;
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
main {
  overflow: hidden;
}

#footer {
  margin-top: 0 !important;
  border-top: none !important;
}
#footer .sp_only {
  display: none !important;
}

#wrapper .sp-bottom-banner {
  display: none;
}
@media screen and (max-width: 768px) {
  #wrapper .sp-bottom-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    background-color: #313030;
    z-index: 70;
  }
  #wrapper .sp-bottom-banner a {
    display: block;
    position: relative;
    display: block;
    max-width: 302px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #a02e2e;
    padding: 12px 0;
    border-radius: 100px;
    margin: 0 auto;
  }
  #wrapper .sp-bottom-banner a span {
    font-size: 1.6rem;
    letter-spacing: 0.07em;
    font-weight: 500;
    color: #fff;
  }
  #wrapper .sp-bottom-banner a img {
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
  }
}
#wrapper #header {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0 20px;
  transition: 0.5s;
  box-shadow: initial;
  border-bottom: initial;
  background-color: initial;
}
@media screen and (max-width: 768px) {
  #wrapper #header {
    top: 22px;
  }
}
#wrapper #header .inner {
  max-width: 1620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#wrapper #header .inner .logo {
  position: relative;
  z-index: 90;
  display: block;
  width: 258px !important;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #wrapper #header .inner .logo {
    width: 180px !important;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner .logo {
    width: 125px !important;
  }
}
#wrapper #header .inner .logo img {
  width: 100%;
  height: auto;
  aspect-ratio: initial !important;
}
#wrapper #header .inner .logo img.sub_logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, calc(100% + 16px));
  width: 225px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #wrapper #header .inner .logo img.sub_logo {
    transform: translate(-50%, calc(100% + 10px));
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner .logo img.sub_logo {
    transform: translate(-50%, calc(100% + 8px));
    width: 100px;
  }
}
#wrapper #header .inner .sp-reservation {
  display: none;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner .sp-reservation {
    position: relative;
    z-index: 90;
    width: 160px;
    height: 36px;
    background-color: #a02e2e;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin-left: auto;
    opacity: 1;
    transition: 0.5s;
  }
  #wrapper #header .inner .sp-reservation span {
    font-size: 1.2rem;
    letter-spacing: 0.07em;
    font-weight: 500;
    color: #fff;
    margin-left: 1em;
  }
  #wrapper #header .inner .sp-reservation img {
    width: 13px;
    height: auto;
  }
  #wrapper #header .inner .sp-reservation.on {
    opacity: 0;
  }
}
#wrapper #header .inner .header-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner .header-btn {
    position: relative;
    z-index: 90;
    margin-left: 10px;
    width: 38px;
    height: 38px;
    display: block;
    border: 1px solid #fff;
    border-radius: 100px;
    background-color: initial;
  }
  #wrapper #header .inner .header-btn::before {
    transition: 0.5s;
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    position: absolute;
    top: calc(50% + 3px);
    left: calc(50% + 2px);
    background-color: #d9d9d9;
    transform: translate(-50%, -50%);
  }
  #wrapper #header .inner .header-btn::after {
    transition: 0.5s;
    content: "";
    display: block;
    width: 15px;
    height: 1px;
    position: absolute;
    top: calc(50% - 3px);
    left: calc(50% - 2px);
    background-color: #d9d9d9;
    transform: translate(-50%, -50%);
  }
}
#wrapper #header .inner .header-btn.active::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
#wrapper #header .inner .header-btn.active::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background-color: #161616;
    padding: 120px 28px;
    gap: initial;
    z-index: 80;
    transition: 0.5s;
    overflow: scroll;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav.active {
    left: 0;
  }
}
#wrapper #header .inner nav .sp-scroll {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #wrapper #header .inner nav .sp-scroll {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-scroll {
    flex-direction: column;
    gap: initial;
  }
}
#wrapper #header .inner nav ul {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #wrapper #header .inner nav ul {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav ul {
    flex-direction: column;
    align-self: flex-start;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav ul li {
    width: 100%;
  }
}
#wrapper #header .inner nav ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
@media screen and (min-width: 769px) and (max-width: 950px) {
  #wrapper #header .inner nav ul li a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav ul li a {
    justify-content: flex-start;
    text-align: start;
    gap: 10px;
  }
}
#wrapper #header .inner nav ul li a .en-txt {
  opacity: 1;
  transition: 0.5s;
  font-family: "Marcellus", serif;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav ul li a .en-txt {
    font-size: 2.1rem;
    letter-spacing: 0.07em;
    font-weight: 400;
  }
}
#wrapper #header .inner nav ul li a .jp-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  transition: 0.5s;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav ul li a .jp-txt {
    position: initial;
    top: initial;
    left: initial;
    transform: initial;
    opacity: 1;
    font-size: 1.2rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 769px) {
  #wrapper #header .inner nav ul li a:hover {
    opacity: 1;
  }
  #wrapper #header .inner nav ul li a:hover .en-txt {
    opacity: 0;
    transform: translateY(-150%);
  }
  #wrapper #header .inner nav ul li a:hover .jp-txt {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
#wrapper #header .inner nav .reservation {
  display: flex;
  align-items: center;
  padding: 15px 25px 15px 40px;
  gap: 9px;
  background-color: #a02e2e;
  border-radius: 100px;
}
@media screen and (min-width: 769px) and (max-width: 950px) {
  #wrapper #header .inner nav .reservation {
    padding: 8px 10px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .reservation {
    position: relative;
    width: 302px;
    height: 84px;
    padding: 0;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 769px) {
  #wrapper #header .inner nav .reservation.sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .reservation.sp {
    display: flex !important;
  }
}
#wrapper #header .inner nav .reservation span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 950px) {
  #wrapper #header .inner nav .reservation span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .reservation span:first-child {
    font-size: 1.2rem;
    padding: 3px 10px;
    color: #a02e2e;
    background-color: #fff;
    border-radius: 100px;
  }
}
#wrapper #header .inner nav .reservation span:nth-child(2) {
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .reservation img {
    position: absolute;
    top: 50%;
    right: 23px;
    transform: translateY(-50%);
    width: 20px;
    height: auto;
  }
}
#wrapper #header .inner nav .sp-link-box {
  display: none;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-link-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
  }
}
#wrapper #header .inner nav .sp-link-box .document-request {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  gap: 30px;
  padding-right: 54px;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-link-box .document-request {
    max-width: 280px;
    gap: 12px;
    padding-right: 0;
  }
}
#wrapper #header .inner nav .sp-link-box .document-request img {
  width: 24px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-link-box .document-request img {
    width: 17px;
  }
}
#wrapper #header .inner nav .sp-link-box .document-request span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-link-box .document-request span {
    font-size: 1.4rem;
  }
}
#wrapper #header .inner nav .sp-link-box .contact {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-link-box .contact {
    max-width: 280px;
    gap: 12px;
    padding-right: 0;
  }
}
#wrapper #header .inner nav .sp-link-box .contact img {
  width: 16px;
  height: auto;
}
#wrapper #header .inner nav .sp-link-box .contact span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav .sp-link-box .contact span {
    font-size: 1.4rem;
  }
}
#wrapper #footer .conts_in {
  display: none;
}
#wrapper #footer .site_menu {
  margin-top: 0;
}

#wrapper {
  background-color: #161616;
}

.fv {
  position: relative;
  width: 100%;
  height: 865px;
  padding: 0 20px;
  /* background-image: url(../images/fv.png); */
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: 149.3333333333vw;
    padding: 0;
    /* background-image: url(../images/sp-fv.png); */
  }
}
.fv .scroll-anime {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .fv .scroll-anime {
    right: 4.8vw;
    gap: 3.2vw;
  }
}
.fv .scroll-anime::before {
  content: "";
  display: block;
  width: 1px;
  height: 83px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .fv .scroll-anime::before {
    width: 0.2666666667vw;
    height: 22.1333333333vw;
  }
}
.fv .scroll-anime p {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  font-weight: 400;
  font-family: "Marcellus", serif;
}
@media screen and (max-width: 768px) {
  .fv .scroll-anime p {
    font-size: 3.2vw;
  }
}
.fv .inner {
  max-width: 1100px;
  width: 100%;
  padding-top: 296px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv .inner {
    padding-top: 102.6666666667vw;
  }
}
.fv .inner .txt-box {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-box {
    padding-left: 6.4vw;
  }
}
.fv .inner .txt-box p {
  display: inline-block;
  font-size: 2.1rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  margin-bottom: 33px;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-box p {
    font-size: 4.2666666667vw;
    padding-bottom: 2.6666666667vw;
    margin-bottom: 4.5333333333vw;
  }
}
.fv .inner .txt-box h1 {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-box h1 {
    font-size: 4.8vw;
  }
}
.fv .inner .txt-box h1 span.largeFont {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-box h1 span.largeFont {
    font-size: 8vw;
  }
}
.fv .inner .txt-scroll {
  font-size: 20rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  font-weight: 400;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18em;
  margin: 0 auto;
  width: 100%;
  display: flex;
  gap: 0 1em;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-scroll {
    font-size: 17.0666666667vw;
  }
}
.fv .inner .txt-scroll .txt {
  display: inline-block;
  color: rgba(162, 150, 150, 0.12);
  white-space: nowrap;
  -webkit-animation: loop-slide 100s infinite linear;
          animation: loop-slide 100s infinite linear;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-scroll .txt {
    -webkit-animation: loop-slide 50s infinite linear;
            animation: loop-slide 50s infinite linear;
  }
}
.fv .inner .txt-scroll .txt span {
  font-style: italic;
  font-family: "Alegreya", serif;
  font-size: 22rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .fv .inner .txt-scroll .txt span {
    font-size: 18.1333333333vw;
  }
}

.fv .sub_logo {
  position: absolute;
  top: 124px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1660px;
  width: 100%;
  margin: 0 auto;
  /* margin: 124px auto 0; */
  padding: 0 37px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .fv .sub_logo {
    top: 106px;
    margin: 0 auto;
    /* margin: 106px auto 0; */
    padding: 0 30px;
  }
}
@media screen and (max-width: 768px) {
  .fv .sub_logo {
    top: 62px;
    margin: 0 auto;
    /* margin: 62px auto 0; */
    padding: 0 34px;
  }
}

.fv .sub_logo img {
  width: 225px;
}

@media screen and (min-width: 769px) and (max-width: 1400px) {
  .fv .sub_logo img {
    width: 160px;
  }
}
@media screen and (max-width: 768px) {
  .fv .sub_logo img {
    width: 100px;
  }
}


.pre-order {
  padding: 5px 0 0;
  background-color: #313030;
}
@media screen and (max-width: 768px) {
  .pre-order {
    padding: 4px 0 0;
  }
}
.pre-order .inner {
  position: relative;
  text-align: center;
}
.pre-order .inner .head {
  padding: 20px;
  background-color: #161616;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .head {
    padding: 11px 10px;
  }
}
.pre-order .inner .bottom {
  padding: 20px 20px 50px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .bottom {
    padding: 20px 23px 40px;
  }
}
.pre-order .inner .pre-order-illustration {
  position: absolute;
  top: -40px;
  left: calc(50% + 460px);
  transform: translateX(-50%);
  width: 224px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .pre-order-illustration {
    width: 141px;
    top: -45px;
    left: auto;
    right: 4px;
    transform: translateX(0);
  }
}
.pre-order .inner h2 {
  font-size: 2.4rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  color: #fff;
  text-align: center;
  margin-bottom: 2px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pre-order .inner h2 {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
}
.pre-order .inner p {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #fff;
  margin-bottom: 30px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .pre-order .inner p {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 19px;
    text-align: left;
  }
}
.pre-order .inner p.fill {
  font-size: 1.6rem;
  font-weight: 400;
  padding-bottom: 0.2em;
  margin-bottom: 0;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pre-order .inner p.fill {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }
}
.pre-order .inner p.text {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  margin-bottom: 17px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .pre-order .inner p.text {
    display: inline-block;
    font-size: 2.4rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}
.pre-order .inner p.text span {
  font-size: 2.6rem;
  background-color: #a02e2e;
  padding: 0.05em 0.15em 0.2em 0.4em;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner p.text span {
    display: inline-block;
    margin-bottom: 5px;
    margin-right: 0;
    padding: 3px 10px 5px;
    font-size: 2rem;
  }
}
.pre-order .inner p.text span.space {
  background-color: transparent;
  margin-right: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .pre-order .inner p.text span.space.sp {
    display: inline !important;
  }
}
.pre-order .inner p.period {
  display: inline-block;
  padding: 5px 10px;
  font-size: 2rem;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #5a5a5a;
}
@media screen and (max-width: 768px) {
  .pre-order .inner p.period {
    font-size: 1.6rem;
    padding: 0 0 10px 0;
  }
}
.pre-order .inner .pre-order-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 600px;
  width: 100%;
  height: 66px;
  background-color: #a02e2e;
  border-radius: 100px;
  padding: 8px 7px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .pre-order-btn {
    max-width: 302px;
    height: initial;
    padding: 10px 0 18px;
    margin-bottom: 20px;
    flex-direction: column;
  }
}
.pre-order .inner .pre-order-btn .sub-txt {
  position: absolute;
  top: 50%;
  left: 7px;
  transform: translateY(-50%);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  padding: 8px 10px;
  background-color: #fff;
  border-radius: 100px;
  text-align: center;
  color: #a02e2e;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .pre-order-btn .sub-txt {
    position: initial;
    transform: initial;
    padding: 3px 10px;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
  }
}
.pre-order .inner .pre-order-btn .main-txt {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .pre-order-btn .main-txt {
    font-size: 1.8rem;
    letter-spacing: 0.07em;
    font-weight: 500;
  }
}
.pre-order .inner .pre-order-btn img {
  width: 20px;
  height: auto;
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .pre-order .inner .pre-order-btn img {
    right: 23px;
  }
}
.pre-order .inner .link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .link-box {
    flex-direction: column;
    gap: 15px;
  }
}
.pre-order .inner .link-box .document-request {
  max-width: 364px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  gap: 30px;
  padding-right: 56px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .link-box .document-request {
    max-width: 280px;
    gap: 12px;
    padding-right: 0;
  }
}
.pre-order .inner .link-box .document-request img {
  width: 24px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .link-box .document-request img {
    width: 17px;
  }
}
.pre-order .inner .link-box .document-request span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .link-box .document-request span {
    font-size: 1.4rem;
  }
}
.pre-order .inner .link-box .contact {
  max-width: 364px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  gap: 30px;
  padding-right: 36px;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .link-box .contact {
    max-width: 280px;
    gap: 12px;
    padding-right: 0;
  }
}
.pre-order .inner .link-box .contact img {
  width: 16px;
  height: auto;
}
.pre-order .inner .link-box .contact span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .pre-order .inner .link-box .contact span {
    font-size: 1.4rem;
  }
}
.pre-order .inner .asterisk {
  display: block;
  text-align: center;
  color: #fff;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 200;
}
.pre-order.pre-order02 .inner .bottom {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .pre-order.pre-order02 .inner .bottom {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .pre-order.pre-order02 .inner p.text {
    margin-bottom: 10px;
    text-align: center;
  }
}

.special .sec-top {
  padding-top: 133px;
  width: 100%;
  background-image: url(../images/special-bg.png);
  background-position: center;
  background-size: cover;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .special .sec-top {
    padding-top: 65px;
    background-image: none;
    background-position: top;
    background-size: cover;
    margin-bottom: initial;
  }
}
.special .sec-top .inner {
  color: #fff;
}
.special .sec-top .inner h2 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 2.5;
  margin-bottom: 48px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .special .sec-top .inner h2 {
    font-size: 1.8rem;
    margin-bottom: 32px;
  }
}
.special .sec-top .inner h2 span {
  font-size: 5rem;
}
@media screen and (max-width: 768px) {
  .special .sec-top .inner h2 span {
    line-height: 1.5;
    font-size: 2.8rem;
  }
}
.special .sec-top .inner p {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1.875;
  margin-bottom: 80px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .special .sec-top .inner p {
    padding: 0 20px;
    font-size: 1.4rem;
    text-align: justify;
    margin-bottom: 40px;
  }
}
.special .sec-top .inner .img-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .special .sec-top .inner .img-box {
    margin-bottom: 100px;
  }
}
.special .sec-top .inner .img-box .img01 {
  margin-left: auto;
  width: 69.375vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .special .sec-top .inner .img-box .img01 {
    width: 92.2666666667vw;
  }
}
.special .sec-top .inner .img-box .img01 img {
  width: 100%;
  height: auto;
}
.special .sec-top .inner .img-box .img02 {
  position: absolute;
  width: 31.25vw;
  height: auto;
  right: 47.34375vw;
  bottom: -5.2083333333vw;
}
@media screen and (max-width: 768px) {
  .special .sec-top .inner .img-box .img02 {
    width: 61.6vw;
    right: initial;
    left: 0;
    bottom: -16.2666666667vw;
  }
}
.special .sec-top .inner .img-box .img02 img {
  width: 100%;
  height: auto;
}
.special .special-list {
  padding: 0 20px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .special .special-list {
    padding: 0 20px;
    max-width: 375px;
    margin: 0 auto 60px;
  }
}
.special .special-list ul {
  max-width: 1098px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .special .special-list ul {
    flex-direction: column;
  }
}
.special .special-list ul li {
  display: flex;
  flex-direction: column;
  max-width: 366px;
  width: 100%;
  height: auto;
  aspect-ratio: 366/284;
  border: 1px solid #8c8888;
  padding: 20px 20px 30px;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .special .special-list ul li {
    padding: 20px 10px 30px;
  }
}
@media screen and (max-width: 768px) {
  .special .special-list ul li {
    flex-direction: row;
    aspect-ratio: initial;
    padding: 10px 20px 20px 0;
    gap: 10px;
    background-color: rgba(162, 150, 150, 0.12);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
  }
}
.special .special-list ul li .img {
  max-width: 273px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 273/172;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .special .special-list ul li .img {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .special .special-list ul li .img {
    max-width: 130px;
  }
}
.special .special-list ul li .img img {
  width: 100%;
  height: auto;
}
.special .special-list ul li span {
  display: inline-block;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-weight: 500;
  text-align: center;
  color: #fff;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .special .special-list ul li span {
    padding-top: 15px;
    margin: 0;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 1.625;
    text-align: start;
    white-space: nowrap;
  }
}
.special .special-list ul li:nth-child(1) .img img {
  width: 100%;
  height: auto;
}
.special .special-list ul li:nth-child(2) {
  border-left: none;
  border-right: none;
}
@media screen and (max-width: 768px) {
  .special .special-list ul li:nth-child(2) {
    border: 1px solid #8c8888;
    border-top: none;
    border-bottom: none;
  }
}
.special .special-list ul li:nth-child(2) .img img {
  width: 119px;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .special .special-list ul li:nth-child(2) .img img {
    width: 80px;
  }
}
@media screen and (max-width: 768px) {
  .special .special-list ul li:nth-child(2) .img img {
    width: 56px;
  }
}
.special .special-list ul li:nth-child(3) .img img {
  width: 101px;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .special .special-list ul li:nth-child(3) .img img {
    width: 90px;
  }
}
@media screen and (max-width: 768px) {
  .special .special-list ul li:nth-child(3) .img img {
    width: 48px;
  }
}
@media screen and (max-width: 768px) {
  .special .sec-bottom {
    margin-bottom: 135px;
  }
}
.special .sec-bottom .inner {
  position: relative;
  max-width: 1297px;
  width: 100%;
  padding: 155px 100px 120px;
  margin: 0 auto;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  .special .sec-bottom .inner {
    padding: 155px 20px 120px;
  }
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner {
    max-width: 375px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 0 20px 0 3px;
  }
}
.special .sec-bottom .inner .img01 {
  position: absolute;
  max-width: 565px;
  left: -85px;
  top: 0;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .img01 {
    position: initial;
    order: 3;
    max-width: 279px;
    width: 100%;
  }
}
.special .sec-bottom .inner .img01 img {
  width: 100%;
  height: auto;
}
.special .sec-bottom .inner .img02 {
  position: absolute;
  max-width: 240px;
  left: 270px;
  top: 375px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .img02 {
    max-width: 198px;
    width: 100%;
    top: initial;
    left: initial;
    bottom: -45px;
    right: 40px;
  }
}
.special .sec-bottom .inner .img02 img {
  width: 100%;
  height: auto;
}
.special .sec-bottom .inner .ttl-box {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-bottom: 40px;
  padding-right: 40px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .ttl-box {
    width: initial;
    margin: 0 0 15px;
    order: 1;
    padding: 0 0 0 22px;
  }
}
.special .sec-bottom .inner .ttl-box p {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .ttl-box p {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
}
.special .sec-bottom .inner .ttl-box h3 {
  font-size: 3.2rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .ttl-box h3 {
    font-size: 2.4rem;
  }
}
.special .sec-bottom .inner .technology-list {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .technology-list {
    order: 2;
    gap: 1;
  }
}
.special .sec-bottom .inner .technology-list li {
  position: relative;
  width: 355px;
  height: 75px;
  display: flex;
  align-items: center;
  padding-left: 24px;
  background-color: #313030;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-weight: 400;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .technology-list li {
    width: 100%;
    padding-left: 25px;
    padding-right: 40px;
  }
}
.special .sec-bottom .inner .technology-list li::before {
  content: "";
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  position: absolute;
  color: #2b2929;
  font-size: 6rem;
  letter-spacing: 0.15em;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Marcellus", serif;
  z-index: 1;
}
.special .sec-bottom .inner .technology-list li span {
  position: relative;
  z-index: 10;
}
.special .sec-bottom .inner .technology-list li:nth-child(1) {
  margin-right: 160px;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .technology-list li:nth-child(1) {
    margin-right: 0;
  }
}
.special .sec-bottom .inner .technology-list li:nth-child(1)::before {
  content: "01";
}
.special .sec-bottom .inner .technology-list li:nth-child(2) {
  width: 388px;
  margin-right: 50px;
}
@media screen and (max-width: 768px) {
  .special .sec-bottom .inner .technology-list li:nth-child(2) {
    width: 100%;
    margin-right: 0;
  }
}
.special .sec-bottom .inner .technology-list li:nth-child(2)::before {
  content: "02";
}
.special .sec-bottom .inner .technology-list li:nth-child(3)::before {
  content: "03";
}

.service {
  padding-top: 65px;
  padding-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .service {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.service .inner .ttl-box {
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .service .inner .ttl-box {
    margin-bottom: 33px;
  }
}
.service .inner .ttl-box h2 {
  text-align: center;
  font-size: 9rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  line-height: 1.2;
  font-family: "Marcellus", serif;
  color: #fff;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .service .inner .ttl-box h2 {
    font-size: 6rem;
  }
}
.service .inner .ttl-box p {
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .service .inner .ttl-box p {
    margin-top: -5px;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.service .inner .service-list li {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li {
    flex-direction: column-reverse;
  }
}
/* 0725 改修 ここから */
.service .inner .service-list li .img {
  position: relative;
  z-index: 1;
  width: 50%;
  height: auto;
  /* aspect-ratio: 960/366; */
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .service .inner .service-list li .img {
    /* aspect-ratio: initial; */
    /* height: 450px; */
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li .img {
    width: 100%;
    /* aspect-ratio: initial; */
    /* height: 250px; */
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .img {
    width: 100%;
    /* height: auto; */
    /* aspect-ratio: 375/143; */
  }
}
.service .inner .service-list li .img img {
  width: 100%;
  /* height: auto; */
}
@media screen and (min-width: 769px) and (max-width: 1600px) {
  .service .inner .service-list li .img img {
    margin-left: auto;
    margin-right: auto;
    /* height: 100%; */
    /* -o-object-fit: cover; */
       /* object-fit: cover; */
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .img img {
    /* height: 100%; */
    /* -o-object-fit: cover; */
       /* object-fit: cover; */
  }
}
@media screen and (min-width: 769px) and (max-width: 1600px) {
  .service .inner .service-list li:first-of-type .img img {
    max-width: 953px;
  }
}
.service .inner .service-list li .txt-area .area-inner .txt-area-img {
  margin-top: 23px;
  max-width: 553px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li .txt-area .area-inner .txt-area-img {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .txt-area-img {
    max-width: 100%;
  }
}
/* 0725 改修 ここまで */
.service .inner .service-list li .txt-area {
  width: 50%;
  min-height: 205px;
  padding: 0 20px;
  color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li .txt-area {
    width: 100%;
    min-height: initial;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area {
    width: 100%;
    min-height: initial;
    padding: 0 20px 30px;
  }
}
.service .inner .service-list li .txt-area .area-inner {
  max-width: 860px;
  padding-right: 50px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (min-width: 1201px) and (max-width: 1600px) {
  .service .inner .service-list li .txt-area .area-inner {
    padding-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li .txt-area .area-inner {
    flex-direction: column;
    margin-top: -40px;
    gap: 10px;
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner {
    flex-direction: column;
    padding: 0;
    gap: 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1600px) {
  .service .inner .service-list li .txt-area .area-inner br.pc {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li .txt-area .area-inner .numbers {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .numbers {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: -35px;
  }
}
/* 0725 改修 ここから */
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .numbers.--01 {
    margin-top: -20px;
  }
}
/* 0725 改修 ここまで */
.service .inner .service-list li .txt-area .area-inner .numbers span {
  font-size: 8rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  line-height: 1;
  font-family: "Marcellus", serif;
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .numbers span {
    font-size: 6rem;
  }
}
.service .inner .service-list li .txt-area .area-inner .txt {
  max-width: 630px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li .txt-area .area-inner .txt {
    max-width: initial;
  }
}

/* 0725 改修 ここから */
/* @media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .txt {
    padding-left: 10px;
  }
} */
.service .inner .service-list li .txt-area .area-inner .txt h3 {
  font-size: 2.4rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .txt h3 {
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    padding-left: 10px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1600px) {
  .service .inner .service-list li .txt-area .area-inner .txt h3 .service-br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .txt h3 .service-br {
    display: block;
  }
}
.service .inner .service-list li .txt-area .area-inner .txt p {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li .txt-area .area-inner .txt p {
    font-size: 1.4rem;
    padding-left: 10px;
  }
}
/* 0725 改修 ここまで */
.service .inner .service-list li:nth-child(1) .txt-area .area-inner .numbers img {
  margin-top: -10px;
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li:nth-child(1) .txt-area .area-inner .numbers img {
    margin-top: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .service .inner .service-list li:nth-child(2) {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .service .inner .service-list li:nth-child(2) {
    flex-direction: column;
  }
}
.service .inner .service-list li:nth-child(2) .txt-area .area-inner .numbers img {
  margin-top: -5px;
  width: 200px;
}
/* 0725 改修 ここから */
/* @media screen and (max-width: 768px) {
  .service .inner .service-list li:nth-child(3) .txt-area .area-inner .numbers {
    margin-top: -60px;
  }
} */
/* 0725 改修 ここまで */
.service .inner .service-list li:nth-child(3) .txt-area .area-inner .numbers img {
  margin-top: 0px;
}

.location {
  margin-bottom: 165px;
}
@media screen and (max-width: 768px) {
  .location {
    margin-bottom: 55px;
  }
}
.location .inner {
  padding-top: 215px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .location .inner {
    padding-top: 75px;
    overflow: hidden;
  }
}
.location .inner h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 22rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-family: "Marcellus", serif;
  color: #222121;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .location .inner h2 {
    font-size: 7rem;
  }
}
.location .inner .zoomimg {
  width: 100%;
  aspect-ratio: 1920/740;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .location .inner .zoomimg {
    aspect-ratio: 750/816;
  }
}
.location .inner .bg-img {
  position: relative;
  width: 100%;
  margin-bottom: 8.125vw;
}
@media screen and (max-width: 768px) {
  .location .inner .bg-img {
    margin-bottom: 46.6666666667vw;
  }
}
.location .inner .bg-img img {
  width: 100%;
  height: auto;
}
.location .inner .bg-img .bg-img02 {
  position: absolute;
  top: 24.4791666667vw;
  left: 50%;
  transform: translateX(-50%);
  width: 25.9375vw;
  height: auto;
}
@media screen and (max-width: 768px) {
  .location .inner .bg-img .bg-img02 {
    top: 65.8666666667vw;
    width: 78.6666666667vw;
    height: 58.6666666667vw;
  }
  .location .inner .bg-img .bg-img02 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.location .inner .contents {
  font-family: "Noto Sans JP", sans-serif;
  max-width: 597px;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .location .inner .contents {
    max-width: initial;
    margin-bottom: 30px;
  }
}
.location .inner .contents h3 {
  text-align: center;
  border-bottom: 1px solid #8c8888;
  color: #fff;
  padding-bottom: 20px;
  margin-bottom: 40px;
  font-size: 2.4rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .location .inner .contents h3 {
    padding: 0 20px 10px;
    margin-bottom: 30px;
  }
}
.location .inner .contents .txt-box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .location .inner .contents .txt-box {
    max-width: 335px;
    width: 100%;
    margin: 0 auto;
  }
}
.location .inner .contents .txt-box .txt {
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .location .inner .contents .txt-box .txt {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.location .inner .contents .txt-box .txt p {
  width: 175px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 768px) {
  .location .inner .contents .txt-box .txt p {
    width: initial;
  }
}
.location .inner .contents .txt-box .txt div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.location .inner .contents .txt-box .txt div div {
  position: relative;
  flex-direction: row;
}
.location .inner .contents .txt-box .txt div div.img-box {
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .location .inner .contents .txt-box .txt div div.img-box {
    flex-direction: column;
    gap: 7px;
  }
}
.location .inner .contents .txt-box .txt div div img {
  position: absolute;
  top: 1em;
  left: 0%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .location .inner .contents .txt-box .txt div div img {
    transform: initial;
    top: 7px;
  }
}
.location .inner .contents .txt-box .txt div div span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .location .inner .contents .txt-box .txt div div span {
    font-size: 1.6rem;
  }
}
.location .inner .contents .txt-box .txt div div span:nth-child(2) {
  margin-right: 19px;
}
.location .inner .map {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .location .inner .map {
    height: 280px;
  }
}
.location .inner .map iframe {
  width: 100%;
  height: 100%;
}

/* PLAN */
.plan {
  margin-bottom: 125px;
}
.plan .inner {
  max-width: 1270px;
  margin: 0 auto;
  padding: 0 20px;
}
.plan .inner .ttl-box {
  color: #FFFFFF;
}

.plan .inner .ttl-box h2 {
  text-align: center;
  font-size: 9rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-family: "Marcellus", serif;
  line-height: 1.5;
  margin-bottom: 3px;
}

.plan .inner .ttl-box p {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-bottom: 30px;
}

.plan .inner .asterisk {
  font-size: 14px;
  color: #BABABA;
  letter-spacing: .07em;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
}
.plan .inner .plan_box {
  margin-top: 80px;
}
.plan .inner .plan_box h3 {
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: .07em;
  color: #FFFFFF;
  text-align: center;
}
.plan .inner .plan_box .main_img.img_l {
  margin-bottom: 30px;
}

.plan .inner .plan_box .plan_items {
  display: flex;
  gap: 30px;
}
.plan .inner .plan_box .plan_items .item {
  width: 600px;
  /* height: 480px; */ /* 2025.08.21 - ボタンありの高さ */
  height: 380px;
  padding: 50px 60px;
  background-color: #373535;
  color: #FFFFFF;
}
.plan .inner .plan_box .plan_items .main_img.img_s {
  position: relative;
  width: 600px;
  /* height: 480px; */ /* 2025.08.21 - ボタンありの高さ */
  height: 380px;
  overflow: hidden;
}
.plan .inner .plan_box .plan_items .main_img.img_s img {
  /* position: absolute;
  top: 0;
  left: 0;
  width: auto; */
  width: 100%;
  /* height: 100%; */
  /* object-fit: cover; */
}

.plan .inner .plan_box .plan_items .item h4 {
  margin-bottom: 40px;
  padding-bottom: 20px;
  font-size: 30px;
  letter-spacing: .07em;
  text-align: center;
  border-bottom: 1px solid #8C8888;
}
.plan .inner .plan_box .plan_items .item h4 span {
  font-family: "Marcellus", serif;
}
.plan .inner .plan_box .plan_items .item .item_content:not(:first-of-type) {
  margin-top: 30px;
}
.plan .inner .plan_box .plan_items .item .item_content h5 {
  position: relative;
  padding-left: 32px;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: .07em;
}
.plan .inner .plan_box .plan_items .item .item_content h5::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}
.plan .inner .plan_box .plan_items .item .item_content p {
  margin-top: 10px;
  padding-left: 42px;
  font-size: 26px;
  letter-spacing: .07em;
}
.plan .inner .plan_box .plan_items .item .btn_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  padding: 17px 60px;
  height: 66px;
  background-color: #a02e2e;
  border-radius: 100px;
}
.plan .inner .plan_box .plan_items .item .btn_item span {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: #fff;
}
.plan .inner .plan_box .plan_items .item .btn_item img {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  width: 20px;
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  .plan .inner .plan_box .plan_items .main_img.img_s {
    position: relative;
    width: calc(50% - 15px);
    /* height: 440px; */ /* 2025.08.21 - ボタンありの高さ */
    height: 340px;
    overflow: hidden;
  }

  .plan .inner .plan_box .plan_items .main_img.img_s img {
    position: absolute;
    top: 0;
    left: 0;
    /* width: auto; */
    width: 100%;
    /* height: 100%; */
    height: auto;
    /* object-fit: cover; */
  }
  .plan .inner .plan_box .plan_items .item {
    width: calc(50% - 15px);
    /* height: 440px; */ /* 2025.08.21 - ボタンありの高さ */
    height: 340px;
  }
  .plan .inner .plan_box .plan_items .item h4 {
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 24px;
  }
  .plan .inner .plan_box .plan_items .item .item_content h5 {
    padding-left: 26px;
    font-size: 16px;
  }
  .plan .inner .plan_box .plan_items .item .item_content p {
    margin-top: 8px;
    padding-left: 36px;
    font-size: 24px;
  }
  .plan .inner .plan_box .plan_items .item .btn_item span {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .plan {
    margin-bottom: 95px;
  }

  .plan .inner .ttl-box h2 {
    font-size: 6rem;
    line-height: 1;
  }

  .plan .inner .ttl-box p {
    text-align: center;
    font-size: 1.6rem;
  }

  .plan .inner .asterisk {
    margin-bottom: 30px;
    padding-left: 1.1em;
    font-size: 1.2rem;
    text-align: left;
    text-indent: -1.1em;
  }
  .plan .inner .plan_box {
    margin-top: 40px;
  }
  .plan .inner .plan_box .plan_items {
    flex-direction: column;
    gap: 20px;
  }
  .plan .inner .plan_box .plan_items .item {
    /* width: calc(50% - 15px); */
    width: 100%;
    height: auto;
    padding: 20px 22px;
  }
  .plan .inner .plan_box .plan_items .main_img.img_s {
    width: 100%;
    height: auto;
  }
  .plan .inner .plan_box .plan_items .main_img.img_s img {
    position: static;
  }
  .plan .inner .plan_box h3 {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .plan .inner .plan_box .main_img.img_l {
    margin-bottom: 20px;
  }
  .plan .inner .plan_box .plan_items .item h4 {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .plan .inner .plan_box .plan_items .item .item_content h5 {
    padding-left: 30px;
    font-size: 16px;
  }
  .plan .inner .plan_box .plan_items .item .item_content h5::before {
    width: 14px;
    height: 14px;
  }
  .plan .inner .plan_box .plan_items .item .item_content p {
    padding-left: 30px;
    font-size: 20px;
  }
  .plan .inner .plan_box .plan_items .item .item_content:not(:first-of-type) {
    margin-top: 20px;
  }
  .plan .inner .plan_box .plan_items .item .btn_item {
    margin-top: 20px;
    padding: 18px 40px 19px 22px;
    height: 60px;
  }
  .plan .inner .plan_box .plan_items .item .btn_item span {
    font-size: 18px;
  }
  .plan .inner .plan_box .plan_items .item .btn_item img {
    right: 20px;
    transform: translateY(-50%);
  }
}
/* .plan .plan_box {
  position: relative;
  margin-bottom: 125px;
}
.plan .plan_box:first-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .plan .plan_box:first-of-type {
    margin-bottom: 48px;
  }
}
.plan .plan_box .bg {
  width: 49.4791666667vw;
  height: 32.8125vw;
  min-height: 630px;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .bg {
    width: 92vw;
    height: 51.2vw;
    max-width: 375px;
    margin: 0 auto 25px;
    min-height: initial;
  }
}
.plan .plan_box .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan .plan_box .inner {
  position: absolute;
  top: 3.0729166667vw;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1138px;
  padding: 0 20px;
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner {
    position: initial;
    transform: initial;
    max-width: 375px;
    margin: 0 auto 25px;
  }
}
.plan .plan_box .inner .content {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content {
    max-width: initial;
  }
}
.plan .plan_box .inner .content .ttl-box h2 {
  text-align: center;
  font-size: 9rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-family: "Marcellus", serif;
  line-height: 1.5;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .ttl-box h2 {
    font-size: 6rem;
    margin-bottom: 0;
  }
}
.plan .plan_box .inner .content .ttl-box p {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .ttl-box p {
    font-size: 1.6rem;
    margin-top: -5px;
    margin-bottom: 30px;
  }
}
.plan .plan_box .inner .content .table_contents .ttl {
  padding: 10px;
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  text-align: center;
  background-color: #3f3b3b;
}
.plan .plan_box .inner .content .table_contents table {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #000;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table {
    margin: 0 auto;
  }
}
.plan .plan_box .inner .content .table_contents table th {
  width: 262px;
  height: 63px;
  background-color: #3f3b3b;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 700;
  vertical-align: middle;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table th {
    width: 164px;
    height: 57px;
    text-align: start;
    padding-left: 12px;
  }
}
.plan .plan_box .inner .content .table_contents table th span {
  font-size: 1.4rem;
}
.plan .plan_box .inner .content .table_contents table th:first-child {
  width: 157px;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table th:first-child {
    width: 89px;
    text-align: center;
    padding-left: 0;
  }
}
.plan .plan_box .inner .content .table_contents table th:last-child {
  width: 181px;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table th:last-child {
    width: 81px;
    text-align: center;
    padding-left: 0;
  }
}
.plan .plan_box .inner .content .table_contents table td {
  background-color: #3f3b3b;
  width: 262px;
  height: 43px;
  background-color: #3f3b3b;
  padding-left: 12px;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table td {
    width: 164px;
    height: 57px;
    text-align: start;
    padding-left: 12px;
    font-size: 1.4rem;
  }
}
.plan .plan_box .inner .content .table_contents table td:first-child {
  width: 157px;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table td:first-child {
    width: 89px;
    text-align: start;
  }
}
.plan .plan_box .inner .content .table_contents table td:last-child {
  width: 181px;
  padding: 0;
  padding-right: 12px;
  text-align: end;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .table_contents table td:last-child {
    width: 81px;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
}
.plan .plan_box .inner .content .table_contents table {
  border-collapse: collapse;
  border: none;
}
.plan .plan_box .inner .content .table_contents td,
.plan .plan_box .inner .content .table_contents th {
  border: none;
  border-left: 1px solid #000;
  border-top: 1px solid #000;
}
.plan .plan_box .inner .content .table_contents td:first-child,
.plan .plan_box .inner .content .table_contents th:first-child {
  border-left: none;
}
.plan .plan_box .inner .content .table_contents tr:first-child td,
.plan .plan_box .inner .content .table_contents tr:first-child th {
  border-top: none;
}
.plan .plan_box .inner .content .asterisk {
  text-align: center;
  margin-bottom: 70px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  color: #bababa;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .plan .plan_box .inner .content .asterisk {
    margin-top: 10px;
    margin-bottom: 31px;
    font-size: 1.2rem;
    text-align: start;
    padding-left: 1.3em;
    text-indent: -1.3em;
  }
}
.plan .plan_box.img_right .bg {
  width: 100%;
}
.plan .plan_box.img_right .bg img {
  position: absolute;
  right: 0;
  width: 49.5833333333vw;
}
@media screen and (max-width: 768px) {
  .plan .plan_box.img_right .bg img {
    position: static;
    width: 92vw;
    max-width: 375px;
    margin: 0 auto 25px;
  }
}
.plan .plan_box.img_right .inner {
  top: 50%;
  left: 21.3541666667vw;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .plan .plan_box.img_right .inner {
    transform: initial;
  }
} */

.faq {
  max-width: 1140px;
  margin: 0 auto 100px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 0;
    margin-bottom: 0;
  }
}
.faq .inner {
  max-width: 800px;
  width: 100%;
}
.faq .inner h2 {
  color: #fff;
  font-size: 9rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-family: "Marcellus", serif;
  margin-bottom: 35px;
}
.faq .inner a {
  color: #fff;
  text-decoration: underline;
  margin-top:0.5em;
  display: block;
}
@media screen and (max-width: 768px) {
  .faq .inner h2 {
    padding: 0 20px;
    font-size: 6rem;
    margin-bottom: 25px;
  }
}
.faq .inner .accordion_list {
  color: #fff;
}
.faq .inner .accordion_list .accordion_box {
  padding: 0 20px;
  border-bottom: 1px solid #8c8888;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_list .accordion_box {
    padding: 0 20px;
  }
}
.faq .inner .accordion_list .accordion_box .accordion {
  position: relative;
  display: flex;
  align-items: center;
  padding: 25px 50px 20px 0;
  gap: 10px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_list .accordion_box .accordion {
    padding-right: 35px;
    gap: 15px;
  }
}
.faq .inner .accordion_list .accordion_box .accordion .q {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}
.faq .inner .accordion_list .accordion_box .accordion p {
  font-size: 2rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_list .accordion_box .accordion p {
    font-size: 1.8rem;
    letter-spacing: 0.07em;
  }
}
.faq .inner .accordion_list .accordion_box .accordion .btn {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.faq .inner .accordion_list .accordion_box .accordion .btn span {
  position: relative;
}
.faq .inner .accordion_list .accordion_box .accordion .btn span::before {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
}
.faq .inner .accordion_list .accordion_box .accordion .btn span::after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 1px;
  background-color: #fff;
  transform: rotate(90deg);
  transition: 0.5s;
}
.faq .inner .accordion_list .accordion_box .accordion.open .btn span::after {
  transform: rotate(0);
}
.faq .inner .accordion_list .accordion_box .accordion_content {
  display: none;
  padding-bottom: 30px;
}
.faq .inner .accordion_list .accordion_box .accordion_content .content_inner p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .faq .inner .accordion_list .accordion_box .accordion_content .content_inner p {
    font-size: 1.4rem;
  }
}

.experience {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .experience {
    background-image: url(../images/experience-bg.png);
    background-position: center;
    background-size: cover;
    padding: 50px 20px 50px;
  }
}
.experience .bg {
  width: 49.1666666667vw;
  height: 30.8333333333vw;
  margin-left: auto;
  min-height: 550px;
}
.experience .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.experience .inner {
  position: absolute;
  max-width: 1100px;
  width: 100%;
  top: 4.53125vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .experience .inner {
    position: initial;
    transform: initial;
  }
}
.experience .inner .content {
  color: #fff;
  max-width: 780px;
  width: 100%;
  padding-left: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .experience .inner .content {
    padding-left: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.experience .inner .content h2 {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.15em;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .experience .inner .content h2 {
    margin-bottom: 30px;
  }
}
.experience .inner .content .txt-box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 45px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .txt-box {
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 1em;
  }
}
.experience .inner .content .txt-box p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: 0.15em;
  font-weight: 400;
  padding-left: 1.5em;
  line-height: 2.875;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .txt-box p {
    font-size: 1.4rem;
    line-height: 1.85;
  }
}
.experience .inner .content .txt-box p::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: -10px;
  transform: translateY(-50%) rotate(-65deg);
  width: 21px;
  height: 1px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .txt-box p::before {
    width: 18px;
  }
}
.experience .inner .content .txt01 {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.07em;
  margin-bottom: 60px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .txt01 {
    text-align: start;
    font-size: 1.4rem;
    margin-bottom: 40px;
  }
}
.experience .inner .content .link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .link-box {
    flex-direction: column;
    gap: 15px;
  }
}
.experience .inner .content .link-box .document-request {
  max-width: 364px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  gap: 30px;
  padding-right: 54px;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .link-box .document-request {
    max-width: 280px;
    gap: 12px;
    padding-right: 0;
  }
}
.experience .inner .content .link-box .document-request img {
  width: 24px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .link-box .document-request img {
    width: 17px;
  }
}
.experience .inner .content .link-box .document-request span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .link-box .document-request span {
    font-size: 1.4rem;
  }
}
.experience .inner .content .link-box .contact {
  max-width: 364px;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .link-box .contact {
    max-width: 280px;
    gap: 12px;
    padding-right: 0;
  }
}
.experience .inner .content .link-box .contact img {
  width: 16px;
  height: auto;
}
.experience .inner .content .link-box .contact span {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .experience .inner .content .link-box .contact span {
    font-size: 1.4rem;
  }
}

.operation {
  margin-top: 90px;
  margin-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .operation {
    margin: 50px 0;
  }
}
.operation .inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
}
.operation .inner h2 {
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .operation .inner h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
}
.operation .inner table {
  font-family: "Noto Sans JP", sans-serif;
  border-collapse: separate;
  border-spacing: 0px 30px;
}
@media screen and (max-width: 768px) {
  .operation .inner table {
    border-spacing: 0;
  }
}
@media screen and (max-width: 768px) {
  .operation .inner table tr {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
  }
  .operation .inner table tr:first-child {
    margin-top: 0;
  }
}
.operation .inner table tr th {
  text-align: start;
  vertical-align: top;
  width: 175px;
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .operation .inner table tr th {
    width: initial;
    font-weight: 700;
    margin-bottom: 7px;
  }
}
.operation .inner table tr td {
  font-size: 1.6rem;
  letter-spacing: 0.07em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .operation .inner table tr td {
    font-size: 1.4rem;
  }
}

.webp .fv.type_1 {
  background-image: url(../images/fv.webp);
}
@media screen and (max-width: 768px) {
  .webp .fv.type_1 {
    background-image: url(../images/sp-fv.webp);
  }
}
.webp .fv.type_2 {
  background-image: url(../images/fv_bg_type2.png);
}
@media screen and (max-width: 768px) {
  .webp .fv.type_2 {
    background-image: url(../images/sp_fv_bg_type2.png);
  }
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}
.fade-anime {
  transform: translateY(-40px);
  opacity: 0;
  transition: 1s;
}
.fade-anime.on {
  transform: translateY(0);
  opacity: 1;
}

.tieup {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tieup {
    padding: 0 22px;
    margin-bottom: 31px;
  }
}
@media screen and (min-width: 769px) {
  .tieup {
    margin-bottom: 79px;
  }
}
.tieup_banner {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .tieup_banner {
    max-width: 640px;
  }
}
.tieup_banner:last-child {
  margin-bottom: 0;
}
.tieup_banner img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .column,
.news {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 769px) {
  .column,
.news {
    margin-bottom: 160px;
  }
}
.column .inner,
.news .inner {
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .column .inner,
.news .inner {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
.column .ttl-box,
.news .ttl-box {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .column .ttl-box,
.news .ttl-box {
    margin-bottom: 46px;
  }
}
@media screen and (min-width: 769px) {
  .column .ttl-box,
.news .ttl-box {
    margin-bottom: 50px;
  }
}
.column .ttl-box h2,
.news .ttl-box h2 {
  text-align: center;
  font-size: 9rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-family: "Marcellus", serif;
  line-height: 1.5;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .column .ttl-box h2,
.news .ttl-box h2 {
    font-size: 6rem;
    margin-bottom: 0;
  }
}
.column .ttl-box p,
.news .ttl-box p {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .column .ttl-box p,
.news .ttl-box p {
    font-size: 1.6rem;
    margin-top: -5px;
    margin-bottom: 30px;
  }
}
.column .ttl-box + .news_list,
.news .ttl-box + .news_list {
  margin-top: 0;
}

.more-button {
  text-align: center;
  margin-top: 50px;
}
.more-button a {
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .more-button a {
    max-width: 283px;
  }
}
@media screen and (min-width: 769px) {
  .more-button a {
    max-width: 364px;
  }
}

.fv-info {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .fv-info {
    margin: 20px 0 60px;
  }
}
@media screen and (min-width: 769px) {
  .fv-info {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  .fv-info_inner {
    padding: 0 29px;
  }
}
@media screen and (min-width: 769px) {
  .fv-info_inner {
    max-width: 1120px;
    text-align: center;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.fv-info_link {
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv-info_link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .fv-info_link {
    font-size: 1.8rem;
  }
}
.fv-info_link:hover {
  opacity: 0.7;
  color: #fff;
}
.fv-info_link:hover .fv-info_title {
  text-decoration: underline;
}
.fv-info_new {
  background-color: #B29068;
  display: inline-block;
  width: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-info_new {
    padding: 1px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 769px) {
  .fv-info_new {
    font-size: 1.4rem;
    padding: 2px;
    margin-right: 12px;
  }
}
.fv-info_time {
  letter-spacing: 0.15em;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .fv-info_time {
    display: none;
  }
}
.fv-info_title {
  letter-spacing: 0.15em;
}

#wrapper #header .inner nav ul {
  gap: 26px;
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #wrapper #header .inner nav ul {
    gap: 26px;
  }
}
@media screen and (max-width: 768px) {
  #wrapper #header .inner nav ul {
    gap: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1400px) {
  #wrapper #header .inner nav ul li a {
    font-size: 1.4rem;
  }
}
#wrapper #header .inner nav ul li a .jp-txt {
  font-size: 1.3rem;
}
@media screen and (min-width: 951px) and (max-width: 1400px) {
  #wrapper #header .inner nav .reservation span {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 950px) {
  #wrapper #header .inner nav .reservation span {
    font-size: 1.2rem;
  }
}

.special .sec-top {
  padding-top: 62px;
}
@media screen and (max-width: 768px) {
  .special .sec-top {
    padding-top: 40px;
  }
}

.webp .fv.type_2,
.fv.type_2 {
  background-image: url(../images/fv_bg_type2.png);
}
@media screen and (max-width: 768px) {
  .webp .fv.type_2,
.fv.type_2 {
    background-image: url(../images/sp_fv_bg_type2.png);
  }
}

.tieup {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .tieup {
    padding: 0 22px;
    margin-bottom: 31px;
  }
}
@media screen and (min-width: 769px) {
  .tieup {
    margin-bottom: 79px;
  }
}
.tieup_banner {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .tieup_banner {
    max-width: 640px;
  }
}
.tieup_banner:last-child {
  margin-bottom: 0;
}
.tieup_banner img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .column,
.news {
    margin-bottom: 120px;
  }
}
@media screen and (min-width: 769px) {
  .column,
.news {
    margin-bottom: 160px;
  }
}
.column .inner,
.news .inner {
  padding: 0 20px;
}
@media screen and (min-width: 769px) {
  .column .inner,
.news .inner {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
}
.column .ttl-box,
.news .ttl-box {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .column .ttl-box,
.news .ttl-box {
    margin-bottom: 46px;
  }
}
@media screen and (min-width: 769px) {
  .column .ttl-box,
.news .ttl-box {
    margin-bottom: 50px;
  }
}
.column .ttl-box h2,
.news .ttl-box h2 {
  text-align: center;
  font-size: 9rem;
  letter-spacing: 0.07em;
  font-weight: 400;
  font-family: "Marcellus", serif;
  line-height: 1.5;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .column .ttl-box h2,
.news .ttl-box h2 {
    font-size: 6rem;
    margin-bottom: 0;
  }
}
.column .ttl-box p,
.news .ttl-box p {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.07em;
  font-weight: 500;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .column .ttl-box p,
.news .ttl-box p {
    font-size: 1.6rem;
    margin-top: -5px;
    margin-bottom: 30px;
  }
}
.column .ttl-box + .news_list,
.news .ttl-box + .news_list {
  margin-top: 0;
}

.more-button {
  text-align: center;
  margin-top: 50px;
}
.more-button a {
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  border: 1px solid #fff;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .more-button a {
    max-width: 283px;
  }
}
@media screen and (min-width: 769px) {
  .more-button a {
    max-width: 364px;
  }
}

.fv-info {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .fv-info {
    margin: 20px 0 60px;
  }
}
@media screen and (min-width: 769px) {
  .fv-info {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 768px) {
  .fv-info_inner {
    padding: 0 29px;
  }
}
@media screen and (min-width: 769px) {
  .fv-info_inner {
    max-width: 1120px;
    text-align: center;
    padding: 0 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.fv-info_link {
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .fv-info_link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 769px) {
  .fv-info_link {
    font-size: 1.8rem;
  }
}
.fv-info_link:hover {
  opacity: 0.7;
  color: #fff;
}
.fv-info_link:hover .fv-info_title {
  text-decoration: underline;
}
.fv-info_new {
  background-color: #B29068;
  display: inline-block;
  width: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-info_new {
    padding: 1px;
    margin-right: 10px;
  }
}
@media screen and (min-width: 769px) {
  .fv-info_new {
    font-size: 1.4rem;
    padding: 2px;
    margin-right: 12px;
  }
}
.fv-info_time {
  letter-spacing: 0.15em;
  margin-right: 1em;
}
@media screen and (max-width: 768px) {
  .fv-info_time {
    display: none;
  }
}
.fv-info_title {
  letter-spacing: 0.15em;
}
/*# sourceMappingURL=base_b.css.map */