.section-content {
  max-width: 69rem;
  margin-left: auto;
}

.section-second {
  border-left: 2px solid var(--accent-color);
  padding-left: 4rem;
  margin-bottom: 6.5rem;
}

.section-second .en {
  font-size: 3.2rem;
  color: var(--accent-color);
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.section-second .ja {
  font-size: 2rem;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 768px) {
  .section-second {
      border-width: 1px;
      padding-left: 1rem;
      margin-bottom: 2rem;
  }
  .section-second .en {
      font-size: 1.7rem;
      line-height: 1.5;
      margin: 0.5rem;
  }
  .section-second .ja {
      font-size: 1.1rem;
  }
}

/* main */
.mv-logo {
  display: none;
}

@media screen and (max-width: 768px) {
  .mv-logo {
  left: 50%;
  top: 50%;
  position: absolute;
  display: inline-block;
  z-index: 8;
  opacity: 0;
  transform: translate(-50%, -30%); /* 中央から少し下→上へフェード */
  animation: fadeUpLogo 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes fadeUpLogo {
  0% {
    opacity: 0;
    transform: translate(-50%, -20%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
  

  .mv-logo img {
  width: 260px;
}
}




.main-hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.main-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: opacity;
  z-index: 1;
}

.main-hero-image.active {
  opacity: 1;
  z-index: 2;
}

.main-menu {
  position: absolute;
  bottom: 0%;
  left: 5%;
  z-index: 50;
}

@media screen and (max-width: 768px) {
  .main-menu {
    display: none;
  }
}

.main-logo {
  width: 260px;
  height: auto;
  margin-bottom: 20px;
  position: relative;
  z-index: 40;
}

.main-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 5%;
  padding-left: 20px;
  border-left: 1px solid var(--base-color);
}

.main-menu-list li a {
  display: inline-block;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.145em;
  position: relative;
}

.main-menu-list li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s cubic-bezier(0.4,0,0.2,1), left 0.3s cubic-bezier(0.4,0,0.2,1);
}

.main-menu-list li a:hover::after,
.main-menu-list li a:focus::after {
  width: 100%;
  left: 0;
}

.main-menu-list li a:not(:hover):not(:focus)::after {
  left: auto;
  right: 0;
  width: 0;
}

.main-menu-list li {
  opacity: 0;
  font-size: 4rem;
  letter-spacing: 0.145em;
  transform: translateX(-100px);
  animation: slideInLeft 0.3s forwards;
}

.main-menu-list li:nth-child(1) { animation-delay: 0s; }
.main-menu-list li:nth-child(2) { animation-delay: 0.05s; }
.main-menu-list li:nth-child(3) { animation-delay: 0.10s; }
.main-menu-list li:nth-child(4) { animation-delay: 0.15s; }
.main-menu-list li:nth-child(5) { animation-delay: 0.20s; }
.main-menu-list li:nth-child(6) { animation-delay: 0.25s; }
.main-menu-list li:nth-child(7) { animation-delay: 0.30s; }
.main-menu-list li:nth-child(8) { animation-delay: 0.35s; }

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.main-menu-list .mv-nav_menu__item._en {
  margin-top: 2.5rem;
  line-height: 1;
}

.main-menu-list .mv-nav_menu__item._en a {
  width: 14rem;
  height: 3rem;
  padding: 0 1.5rem;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.main-menu-list .mv-nav_menu__item._en a:after {
  width: 0;
  height: 0;
  background: none;
}

.main-menu-list .mv-nav_menu__item._en a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

/** section-concept **/

.section-concept {
  padding: 15rem 0;
  background: var(--accent-color-light);
}

.section-concept .concept-heading {
  position: relative;
  padding-bottom: 4.5rem;
}

.section-concept .concept-heading:after {
  position: absolute;
  content: '';
  width: 6.5rem;
  height: 1.8rem;
  left: 0;
  bottom: 0;
  background: url(../img/common/ico_title.svg) left top no-repeat;
  background-size: cover;
}

.section-concept .concept-heading .en {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.section-concept .concept-heading .ja {
  display: inline-block;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
}

.section-concept .concept-copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 7rem;
  margin-bottom: 12.5rem;
}

.section-concept .concept-copy p {
  display: block;
  font-size: 2.1rem;
  line-height: 1.857142857;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .section-concept {
      padding: 4rem 0 0;
  }
  .section-concept .concept-heading {
      padding-bottom: 3.5rem;
      text-align: center;
  }
  .section-concept .concept-heading:after {
      width: 4.3rem;
      height: 1.2rem;
      left: 50%;
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%);
  }
  .section-concept .concept-heading .en {
      font-size: 2rem;
      letter-spacing: 0.06em;
      margin-bottom: 0.7rem;
  }
  .section-concept .concept-heading .ja {
      font-size: 1.1rem;
      font-weight: 500;
  }
  .section-concept .concept-copy {
      text-align: center;
      margin-top: 3rem;
      margin-bottom: 3rem;
  }
  .section-concept .concept-copy p {
      font-size: 1.25rem;
      line-height: 1.6;
  }
  .section-concept .concept-img {
      margin: 0 -2.5rem;
  }
}

/** section-menu **/

.section-menu {
  padding: 0 0 15rem;
  background: #F9F5F0;
}

@media screen and (max-width: 768px) {
  .section-menu {
      padding: 5rem 0 0;
  }
}

.section-menu .section-title {
  margin-bottom: 18rem;
}

@media screen and (max-width: 768px) {
  .section-menu .section-title {
      margin-bottom: 4rem;
  }
}

.section-menu_lunch {
  padding: 15rem 0 5rem;
}

@media screen and (max-width: 768px) {
  .section-menu_lunch {
      padding: 0 0 1.5rem;
  }
}

.section-menu_dinner {
  padding: 15rem 0 5rem 0;
}

@media screen and (max-width: 768px) {
  .section-menu_dinner {
      padding: 5rem 0;
  }
}

.section-menu_drink {
  padding: 15rem 0 0 0;
}

@media screen and (max-width: 768px) {
  .section-menu_drink {
      padding: 5rem 2.5rem;
      margin: 0 -2.5rem;
      background: #fff;
  }
}

/* menu */
.menu-article .lead-txt {
  font-size: 2.1rem;
  font-weight: 400;
  line-height: 1.857142857;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .menu-article .lead-txt {
      font-size: 1.2rem;
      line-height: 1.66666667;
  }
}

.menu-article .menu-cpp {
  margin: 3.5rem 0 0;
}

.menu-article .menu-cpp li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2rem;
  line-height: 1.85;
  letter-spacing: 0.11em;
}

.menu-article .menu-cpp li span {
  display: inline-block;
}

.menu-article .menu-cpp li .dot {
  margin: 0 1rem;
  vertical-align: middle;
  line-height: 1.35;
}

.menu-article .menu-cpp li .pri small {
  display: inline-block;
  font-size: 1.7rem;
}

@media screen and (max-width: 768px) {
  .menu-article .menu-cpp {
      margin: 1.6rem 0 0;
  }
  .menu-article .menu-cpp li {
      font-size: 1.2rem;
      letter-spacing: 0.075em;
  }
  .menu-article .menu-cpp li .dot {
      margin: 0 0.5rem;
  }
  .menu-article .menu-cpp li .pri small {
      font-size: 1rem;
  }
}

.menu-article+.menu-article {
  margin-top: 16rem;
}

@media screen and (max-width: 768px) {
  .menu-article+.menu-article {
      margin-top: 5.5rem;
  }
}

.menu-article .menu-attention {
  margin: 3rem 0 0;
}

.menu-article .menu-attention li {
  line-height: 1.9375;
  letter-spacing: 0.06em;
  font-size: 1.4rem;
}

@media screen and (max-width: 768px) {
  .menu-article .menu-attention {
      margin-top: 1.6rem;
  }
  .menu-article .menu-attention li {
      font-size: 1rem;
      line-height: 1.77789;
      letter-spacing: 0.025em;
  }
}

.menu-article .btn {
  color: #fff;
  background: var(--accent-color);
  font-size: 2.1rem;
  line-height: 1.857142857;
  width: 100%;
  height: 6.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 4.5rem 0 0;
}

.menu-article .btn:hover {
  opacity: 0.5;
  duration: 0.3s;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .menu-article .btn {
      font-size: 1.2rem;
      height: 4.4rem;
      letter-spacing: 0.01em;
      margin: 2.5rem 0 0;
  }
}


.menu-article .menu-link {
  max-width: 38.5rem;
  margin-bottom: 10rem;
}

.menu-article .menu-link li+li {
  margin-top: 5rem;
}

.menu-article .menu-link li h3 {
  font-size: 3rem;
  letter-spacing: 0.07em;
  line-height: 1.86666667;
  color: var(--accent-color);
  font-weight: 500;
}

.menu-article .menu-link li a {
  display: block;
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 2.3333333;
  letter-spacing: 0.06em;
  position: relative;
  border-bottom: 1px dashed var(--accent-color);
}

.menu-article .menu-link li a:after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  border-top: solid 1px var(--accent-color);
  border-right: solid 1px var(--accent-color);
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .menu-article .menu-link {
      margin-bottom: 5rem;
  }
  .menu-article .menu-link li+li {
      margin-top: 3rem;
  }
  .menu-article .menu-link li h3 {
      font-size: 1.6rem;
      letter-spacing: 0.05em;
  }
  .menu-article .menu-link li a {
      font-size: 1.4rem;
      line-height: 2;
      display: inline-block;
      padding-right: 1.5rem;
  }
  .menu-article .menu-link li a:after {
      width: 0.8rem;
      height: 0.8rem;
  }
}

/* section-private-room */
.section-private-room {
  padding: 15rem 0;
  background: var(--accent-color-light);
}

@media screen and (max-width: 768px) {
  .section-private-room {
      padding: 5rem 0;
  }
}

.section-private-room h3 {
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .section-private-room h3 {
      font-size: 1.6rem;
      line-height: 2.8rem;
      margin-bottom: 1.8rem;
  }
}

.section-private-room p {
  font-size: 2.1rem;
  line-height: 3.9rem;
}

@media screen and (max-width: 768px) {
  .section-private-room p {
      font-size: 1.2rem;
      line-height: 2.1rem;
  }
}

.section-private-room p+p {
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .section-private-room p+p {
      margin-top: 2rem;
  }
}

.section-private-room .l-btn {
  margin-top: 7rem;
}

.section-private-room .l-btn > li:hover {
  opacity: 0.5;
  duration: 0.3s;
  transition: opacity 0.3s ease-in-out;
}

@media screen and (max-width: 768px) {
  .section-private-room .l-btn {
      margin-top: 2.5rem;
  }
}

.section-private-room .l-btn li:not(:last-child) {
  margin-bottom: 1.8rem;
}

@media screen and (max-width: 768px) {
  .section-private-room .l-btn li:not(:last-child) {
      margin-bottom: 0.8rem;
  }
}

.section-private-room .l-btn {
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .section-private-room .l-btn {
      margin-top: 2.5rem;
  }
}

.section-private-room .l-btn li:not(:last-child) {
  margin-bottom: 1.8rem;
}

@media screen and (max-width: 768px) {
  .section-private-room .l-btn li:not(:last-child) {
      margin-bottom: 0.8rem;
  }
}

.btn-default {
  width: 100%;
  height: 6.8rem;
  background-color: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 2.1rem;
  line-height: 1;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .btn-default {
      height: 4.5rem;
      font-size: 1.2rem;
  }
}

/* section-booking */
.section-booking {
  padding: 15rem 0 0;
}

@media screen and (max-width: 768px) {
  .section-booking {
      padding: 5rem 0 0;
  }
  .section-booking .section-title:after {
      width: 13rem;
  }
}

.section-booking p {
  font-size: 2.1rem;
  line-height: 4.2rem;
}

@media screen and (max-width: 768px) {
  .section-booking p {
      font-size: 1.2rem;
      line-height: 2rem;
  }
}

@media screen and (min-width: 769px) {
  .section-booking p.fz-md {
      font-size: 2rem;
  }
}

.section-booking_ctn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 2.7rem 0 2.5rem -2.3rem;
}

@media screen and (max-width: 768px) {
  .section-booking_ctn {
      display: block;
      margin: 1.5rem 0 1.2rem;
  }
}

.section-booking_ctn li {
  width: calc(50% - 2.3rem);
  margin: 0 0 0 2.3rem;
}

@media screen and (max-width: 768px) {
  .section-booking_ctn li {
      width: 100%;
      margin: 0;
  }
  .section-booking_ctn li:not(:last-child) {
      margin-bottom: 0.8rem;
  }
}

.section-booking_ctn li small {
  font-size: 2.3rem;
}

@media screen and (max-width: 768px) {
  .section-booking_ctn li small {
      font-size: 1.3rem;
  }
}

.section-booking_ctn li:nth-child(1) a {
  font-size: 2.9rem;
}

@media screen and (max-width: 768px) {
  .section-booking_ctn li:nth-child(1) a {
      font-size: 1.7rem;
  }
}

/* section-access */
.section-access {
  padding: 15rem 0;
}

@media screen and (max-width: 768px) {
  .section-access {
      padding: 5rem 0;
  }
}

.section-access .map {
  line-height: 0;
  margin-bottom: 9rem;
}

@media screen and (max-width: 768px) {
  .section-access .map {
      margin: 0 -2.5rem 3.5rem;
  }
}

.section-access .map iframe {
  width: 100%;
  height: 38.2rem;
}

@media screen and (max-width: 768px) {
  .section-access .map iframe {
      height: 17rem;
  }
}

.section-access .information-list {
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .section-access .information-list {
      margin-bottom: 3rem;
  }
}

.section-access .information-list_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_item {
      display: block;
  }
}

.section-access .information-list_item:not(:last-child) {
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_item:not(:last-child) {
      margin-bottom: 2.5rem;
  }
}

.section-access .information-list_ttl {
  width: 12rem;
  font-size: 1.8rem;
  line-height: 3.9rem;
  color: var(--accent-color);
  border-left: 1px solid var(--accent-color);
  padding-left: 1rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_ttl {
      font-size: 1.2rem;
      line-height: 2rem;
      width: 100%;
      margin-bottom: 0.5rem;
  }
}

.section-access .information-list_txt {
  width: calc(100% - 12rem);
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_txt {
      width: 100%;
  }
}

.section-access .information-list_txt em {
  display: block;
  font-size: 2rem;
  line-height: 3.9rem;
  font-style: normal;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_txt em {
      font-size: 1.2rem;
      line-height: 2rem;
  }
}

.section-access .information-list_sub li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.section-access .information-list_sub li:before {
  content: "";
  width: 100%;
  height: 0.2rem;
  border-bottom: 0.2rem dotted var(--accent-color);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_sub li:before {
      height: 1px;
      border-width: 1px;
  }
}

.section-access .information-list_sub li span {
  width: 16rem;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_sub li span {
      width: 8rem;
  }
}

.section-access .information-list_sub li span ins {
  display: inline-block;
  background-color: #fff;
  text-decoration: none;
  padding-right: 1rem;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_sub li span ins {
      padding-right: 0.5rem;
  }
}

.section-access .information-list_sub li em {
  background-color: #fff;
  display: block;
  width: calc(100% - 16rem);
  padding-left: 1rem;
}

@media screen and (max-width: 768px) {
  .section-access .information-list_sub li em {
      width: calc(100% - 8rem);
      padding-left: 0.5rem;
  }
}

.section-location_guide .dl:not(:last-child) {
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .section-location_guide .dl:not(:last-child) {
      margin-bottom: 3rem;
  }
}

.section-location_guide .dl .dt {
  width: 19rem;
  height: 4.8rem;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 768px) {
  .section-location_guide .dl .dt {
      width: 13rem;
      height: 3rem;
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
  }
}

.section-location_guide .dl .dd p {
  font-size: 2rem;
  line-height: 3.4rem;
}

@media screen and (max-width: 768px) {
  .section-location_guide .dl .dd p {
      font-size: 1.2rem;
      line-height: 2rem;
  }
}

.section-location_guide .dl .dd p+p {
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .section-location_guide .dl .dd p+p {
      margin-top: 1.8rem;
  }
}

.section-location_guide .dl .dd p.note {
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 768px) {
  .section-location_guide .dl .dd p.note {
      font-size: 1.2rem;
      line-height: 1.666666;
      letter-spacing: 0.1em;
  }
}

/* section-information */
.section-information {
  padding: 15rem 0;
}

@media screen and (max-width: 768px) {
  .section-information {
      padding: 5rem 0;
  }
  .section-information .section-title:after {
      width: 13rem;
  }
}

.section-information_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 -4rem;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section-information_wrap {
      display: block;
      margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .section-information_wrap {
      display: block;
      margin: 0;
  }
}

.section-information_item {
  width: calc(33.33% - 4rem);
  margin: 0 0 0 4rem;
  background-color: var(--accent-color-light);
  padding: 3.5rem 4rem;
}

.section-information_item:nth-child(1) {
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.section-information_item:nth-child(2) {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.section-information_item:nth-child(3) {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .section-information_item {
      width: 100%;
      margin: 3rem 0 0;
  }
}

@media screen and (max-width: 768px) {
  .section-information_item {
      width: 100%;
      margin: 0;
      padding: 1.5rem;
  }
  .section-information_item:not(:last-child) {
      margin-bottom: 2rem;
  }
}

.section-information_item .time {
  display: block;
  font-size: 1.7rem;
  line-height: 3.5rem;
  color: var(--accent-color);
}

@media screen and (max-width: 768px) {
  .section-information_item .time {
      font-size: 1.2rem;
      line-height: 2rem;
      margin-bottom: 0.5rem;
  }
}

.section-information_item h3 {
  font-size: 1.7rem;
  line-height: 2.7rem;
  color: var(--accent-color);
  border-bottom: 0.2rem dotted var(--accent-color);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

@media screen and (max-width: 768px) {
  .section-information_item h3 {
      font-size: 1.2rem;
      line-height: 2rem;
      padding-bottom: 1rem;
      margin-bottom: 1rem;
      border-width: 1px;
  }
}

.section-information_item p {
  font-size: 1.7rem;
  line-height: 3rem;
}

@media screen and (max-width: 768px) {
  .section-information_item p {
      font-size: 1.1rem;
      line-height: 1.9rem;
  }
}

@media screen and (max-width: 768px) {
  .section-information_item .btn_more {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: end;
      -ms-flex-pack: end;
      justify-content: flex-end;
  }
}

.section-information_item .btn_more .more {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 3rem;
  border-bottom: 1px dashed var(--accent-color);
  position: relative;
  padding-right: 1.5rem;
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .section-information_item .btn_more .more {
      margin-top: 1rem;
      font-size: 1rem;
      padding-right: 1rem;
      line-height: 1.9rem;
  }
}

.section-information_item .btn_more .more:after {
  content: "";
  width: 0.8rem;
  height: 1.6rem;
  background: url("../img/common/arr_link.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
}

@media screen and (max-width: 768px) {
  .section-information_item .btn_more .more:after {
      width: 0.5rem;
      height: 0.9rem;
  }
}

/* in-viewアニメーション */
.js-view {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}

.js-view.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* contact */

.section-contact {
  padding: 15rem 0;
}

.section-contact {
  padding: 15rem 5rem 22rem;
}

.section-contact .section-title {
  margin-bottom: 8rem;
}

.section-contact .section-title .ja {
  display: block;
  margin: 1rem 0 0;
}

/* フォームの基本スタイル */
.ipt {
  width: 100%;
  height: 8.8rem;
  outline: none;
  border: 1px solid var(--accent-color);
  padding: 1rem;
}

.ipt.are {
  height: 33rem;
}

@media screen and (max-width: 768px) {
  .ipt {
      height: 4.4rem;
  }
  .ipt.are {
      height: 16rem;
  }
}

.form-group {
  border-bottom: 1px dashed #333333;
}

.wpr-ipt {
  position: relative;
}

.wpr-ipt span {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  color: #999;
}

.wpr-ipt+.wpr-ipt {
  margin-top: 1rem;
}

.form-ctrl {
  display: flex;
  flex-wrap: wrap;
  padding: 6rem 0;
}

.form-ctrl_lbl {
  width: 27rem;
  font-weight: bold;
}

.pt0 {
  padding-top: 0 !important;
}

.form-ctrl_lbl .en {
  display: inline-block;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.form-ctrl_lbl .ja {
  display: inline-block;
  font-size: 1.7rem;
  letter-spacing: 0.1em;
}

.form-ctrl_ctn {
  flex: 1;
}

/* ボタンスタイル */
.form-btn {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 5rem;
}

.form-btn .btn {
  width: 100%;
  height: 100%;
  display: inline-block;
  min-width: 20rem;
  padding: 0 3rem;
  background: var(--accent-color);
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
  line-height: 5rem;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-btn .btn:hover {
  opacity: 0.8;
}

/* エラー表示 */
.formErrorContent {
  color: #ff0000;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.is-error input,
.is-error textarea {
  border-color: #ff0000;
}

.is-error input::-webkit-input-placeholder,
.is-error textarea::-webkit-input-placeholder {
  color: #ff0000;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .section-contact {
    padding: 8rem 0;
  }

  .section-contact .section-title {
    margin: 0 0 4rem 0;
  }

  .section-contact .section-title:after {
    width: 17rem;
  }
  .section-contact .form-ctrl_lbl {
    margin-bottom: 1rem;
  }

  .ipt {
    height: 4rem;
    margin-top: 1rem;
  }

  .ipt.are {
    height: 15rem;
  }

  .wpr-ipt span {
    font-size: 1.2rem;
  }

  .wpr-ipt+.wpr-ipt {
    margin-top: 1rem;
  }

  .form-ctrl_lbl {
    width: 100%;
    display: inline-block;
}

  .form-ctrl {
    display: block;
    padding: 3rem 0;
  }

  .form-ctrl_lbl .en {
    font-size: 1.6rem;
    display: inline-block;
    margin: 0;
  }
  .form-ctrl_lbl .ja {
      font-size: 1.1rem;
      margin-left: 2rem;
      display: inline-block;
      margin: 0;
  }
  .form-ctrl_ctn {
      width: 100%;
  }

  .form-btn {
    flex-flow: column;
    gap: 2rem;
    margin-top: 0;
  }

  .form-btn .btn {
    width: 100%;
    font-size: 1.4rem;
    height: 4.6rem;
    line-height: 4.6rem;
  }
}

.reservation-btn {
  width: 29.6rem;
  height: 7.2rem;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 8;
}

@media screen and (max-width: 768px) {
  .reservation-btn {
      width: 100%;
      height: 5.8rem;
      font-size: 1.5rem;
      letter-spacing: 0.15em;
  }
}