@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #565651;
  --color-white: #ffffff;





  --noto: "Noto Sans JP", sans-serif;
  --urbanist: "Urbanist", sans-serif;
  --header: 14rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:768px) {
  :root {
    --header: 7rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  scroll-behavior: smooth;
  font-size: clamp(6.5px, 0.6613756vw, 10px);
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-black);
  background: #fff;
  letter-spacing: 0.05em;
}

#content-wrapper {
  transition: all 0.6s 0s ease;
}

body.nav-open #content-wrapper {
  filter: blur(50px);
}

body * {
  letter-spacing: 0.05em;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100vh;
  opacity: 1;
}

#bg video {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  opacity: .4;
}

#bg::before {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg.webp) no-repeat center top/cover;
  opacity: .9;
  top: 0;
  left: 0;
}

a {
  text-decoration: none;
  transition: all .4s;
}

a:hover {
  opacity: 1;
}

img {
  max-width: 100%;

  display: block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}




@media screen and (max-width:767px) {
  html {
    font-size: 2.6666vw;
  }

  body {
    font-size: 1.4rem;
  }
}



/*================================================
 *  header / ヘッダー
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 14rem 0 0;
  transition: all .4s;
}

header * {
  transition: all .4s;
}

header.changeNav {
  padding: 4rem 0 0;
}

.nav_inner {
  display: flex;
  align-items: start;
  justify-content: space-between;

  width: 86.67%;
  margin-left: auto;
  margin-right: auto;
  min-width: 750px;
}

.nav_left {
  width: 23.8vw;
  max-width: 36rem;
  padding-top: 4.4rem;
}

.changeNav .nav_left {
  width: 20rem;
  padding-top: 0;
}

.nav_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 1.4rem;
  gap: 2.5rem;
}

.nav_menu li:not(.contact) a .en {
  display: none;
}

.nav_menu li.contact {
  margin-left: 2rem;
}


.nav_menu li a .en {
  display: block;
  font-family: var(--urbanist);
}

@media screen and (max-width:767px) {
  header {
    padding-top: 3rem;
  }

  header.changeNav {
    padding-top: 1rem;
  }

  .nav_inner {
    min-width: unset;
    width: 94%;
  }



  .nav_left {
    width: 20rem;
    padding-top: 0;
    transition: .4s;
  }

  .changeNav .nav_left {
    width: 12rem;
    padding-top: 0;
  }

  .open_nav .nav_left {
    opacity: 0;
  }

  .hamburger {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 5rem;
    height: 5rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }


  .open_nav .hamburger::after {
    opacity: 0;
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 90%;
    height: 1px;
    background-color: var(--color-black);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 45%;
  }



  .hamburger__line--3 {
    top: 65%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(35deg);
    top: 50%;
  }


  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-35deg);
    top: 50%;
  }

  /* ハンバーガーメニュー内 */
  nav.global__nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    padding: 6rem 2rem 0;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
  }

  nav.global__nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /* backdrop-filter: blur(30px); */
    background: rgb(255 255 255 / 60%);
    z-index: -1;
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }


  .nav_menu {
    display: block;
  }

  .nav_menu li:not(.contact) a .en {
    display: block;
    opacity: 0.5;
    font-size: 1.6rem;
    font-weight: 100;
    padding-left: 0.2rem;
    margin-bottom: 0;
  }

  .nav_menu li {
    margin-bottom: 2rem;
  }

  .nav_menu li a {
    font-size: 1.4rem;
  }

  .nav_menu li.contact a::before {
    background: rgb(173 149 87 / 10%);
  }

  .nav_menu li.contact {
    margin-left: 0;
  }

  .nav_menu li.contact a {
    width: 100%;
  }
}

/*================================================
 *  section btn
 ================================================*/
section {
  position: relative;
  padding-bottom: 10rem;
}

.section {
  padding-top: 10rem;
}


.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_arrow {
  background-image: url(../images/icon_arrow.svg);
  width: 2rem;
  height: 2rem;
}

.c_btn-wrap {
  margin-top: 4rem;
}

.c_btn {
  position: relative;
  padding: 1.4rem 7rem 1.4rem 3rem;
  border-radius: 2rem 0 2rem 0;
  border: 1px solid rgb(255 255 255 / 40%);
  z-index: 1;
  line-height: 1.2;
  display: block;
  width: fit-content;
}


.c_btn::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2rem 0 2rem 0;
  backdrop-filter: blur(30px);
  background: rgb(255 255 255 / 10%);
  z-index: -1;
}

.c_btn.bk {
  color: var(--color-white);
}

.c_btn.bk::before {
  background: rgb(0 0 0 / 30%);
}


.c_btn .en {
  display: block;
  font-family: var(--urbanist);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.c_btn .c_btn-arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  overflow: hidden;
  display: block;

  width: 2rem;
  height: 2rem;
}

.arrow-icon:before,
.arrow-icon:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  animation-fill-mode: both;
  animation-duration: 0.6s;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_arrow.svg);
  width: 2rem;
  height: 2rem;
  transition: .4s;
}

.bk .arrow-icon:before,
.bk .arrow-icon:after {
  background-image: url(../images/icon_arrow_w.svg);
}

a:hover .arrow-icon:before {
  animation-name: transformLeftRight;
  animation-delay: 0.2s;
}

a:hover .arrow-icon:after {
  animation-name: transformRightLeft;
}


@keyframes transformLeftRight {
  0% {
    transform: translate(-100%, 100%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes transformRightLeft {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(100%, -100%);
  }
}

.c_wrap-lg {
  width: 86.67%;
  margin-left: auto;
  margin-right: auto;
}

.c_wrap-md {
  width: 78.8%;
  margin-left: auto;
  margin-right: auto;
}

.hd {
  margin-bottom: 8rem;
}

.hd .en {
  display: block;
  font-size: 2rem;
  font-family: var(--urbanist);
  padding-left: 2.5rem;
  position: relative;
  font-weight: 200;
}

.hd .en::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_hd.svg);
  width: 1.5rem;
  height: 1.5rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hd.wt .en::before {
  background-image: url(../images/icon_hd_wt.svg);
}

@media screen and (max-width:767px) {
  section {
    padding-bottom: 8rem;
  }

  .section {
    padding-top: 8rem;
  }

  .c_wrap-lg,
  .c_wrap-md {
    width: 94%;
  }

  .hd {
    margin-bottom: 4rem;
  }

  .hd .en {
    font-size: 1.6rem;
    padding-left: 2rem;
  }

  .hd .en::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}

/*================================================
* access
================================================*/
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 1s ease;
}


#preloader video {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  opacity: .4;
  position: absolute;
  top: 0;
  left: 0;
}

#preloader::before {
  position: absolute;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  background: url(../images/bg.webp) no-repeat center top/cover;
  opacity: .9;
  top: 0;
  left: 0;
}

#preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

#preloader .loader {
  width: 30rem;
  z-index: 1;
  position: relative;

  opacity: 0;
  transition: all 1s ease;
}

#preloader .loader.on {
  opacity: 1;
}


@media screen and (max-width:767px) {
  #preloader .loader {
    width: 22rem;
  }
}

/*================================================
* mainVisual
================================================*/
#mainVisual {
  padding-top: 30rem;
}

#mainVisual .lead {
  line-height: 2;
  width: fit-content;
  margin: 3rem auto 0;
  font-size: clamp(1rem, 1.058vw, 1.8rem);
}

.mv_scroll {
  position: absolute;
  width: 26rem;
  height: 26rem;
  top: 40rem;
  right: 15rem;
  display: grid;
  place-content: center;
  z-index: 3;
}

.mv_scroll.circle {
  mix-blend-mode: color-burn;
}

.mv_scroll .scroll_arrow {
  width: 3rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.scroll_circle {
  display: block;
  animation: 20s linear infinite rotation;
  width: 26rem;
  height: 26rem;
}




@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}



.mv_slide-outer {
  width: 100%;
  margin-top: 15rem;
  position: relative;
}

.roop_swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.mv_slide-outer .mv_swiper {
  padding: 6rem 0;
}


.mv_swiper .swiper-slide {
  width: 43.5rem;
  height: 57.5rem;
  margin-left: 1rem;
  overflow: clip;
}

.mv_swiper .swiper-slide img,
.mv_swiper .swiper-slide video {
  width: 100%;
  height: 100%;
  overflow: hidden;
  object-fit: cover;
  object-position: center;
}

.mv_swiper .swiper-slide.slide01 {
  border-radius: 12rem 12rem 0 0;
  top: -6rem;
}

.mv_swiper .swiper-slide.slide02 {
  border-radius: 0 0 0 12rem;
  top: 6rem;
}

.mv_swiper .swiper-slide.slide03 {
  border-radius: 12rem 0 12rem 0;
  top: -4rem;
}

.mv_swiper .swiper-slide.slide04 {
  border-radius: 12rem 12rem 0 0;
  top: 4rem;
}

.mv_swiper .swiper-slide.slide05 {
  border-radius: 0 0 0 12rem;
}

.mv_video {
  width: 15.5vw;
  aspect-ratio: 235/342;
  position: absolute;
  top: 42.4vw;
  left: 0;
  z-index: 1;

  border-radius: 0 10rem 0 10rem;
  overflow: hidden;
}

.mv_video video {
  display: block;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: 100%;
}


@media screen and (max-width:767px) {

  #mainVisual {
    padding-top: 24rem;
    padding-bottom: 0;
    overflow: clip;
  }


  #mainVisual .lead {
    font-size: 1.4rem;
    margin-left: 2rem;
  }

  .mv_swiper .swiper-slide {
    width: 24.4rem;
    height: 33rem;
    margin-left: 0.6rem;
  }

  .mv_slide-outer .mv_swiper {
    padding: 3rem 0;
  }

  .mv_swiper .swiper-slide.slide01 {
    border-radius: 6rem 6rem 0 0;
    top: -3rem;
  }

  .mv_swiper .swiper-slide.slide02 {
    border-radius: 0 0 0 6rem;
    top: 3rem;
  }

  .mv_swiper .swiper-slide.slide03 {
    border-radius: 6rem 0 6rem 0;
    top: -2rem;
  }

  .mv_swiper .swiper-slide.slide04 {
    border-radius: 6rem 6rem 0 0;
    top: 2rem;
  }

  .mv_swiper .swiper-slide.slide05 {
    border-radius: 0 0 0 6rem;
  }

  .mv_slide-outer {
    margin-top: 14rem;
  }

  .mv_scroll {
    width: 18rem;
    height: 18rem;
    top: 36.5rem;
    right: -2rem;
  }

  .scroll_circle {
    width: 18rem;
    height: 18rem;
  }
}


/*================================================
* Concept
================================================*/

#concept .inner {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 16rem;
}

.concept_txt {
  width: 38%;
  position: relative;
  z-index: 2;
}

.concept_txt p {
  margin-top: 3.2rem;
}

.concept_txt p.en {
  font-size: 1.2rem;
  margin-top: 4.2rem;
  line-height: 1.7;
  font-weight: 200;
  font-family: var(--urbanist);
  width: 90%;
}

.concept_video {
  width: 36rem;
  aspect-ratio: 360/569;
  margin-top: -10rem;
}

.concept_video video {
  display: block;
  border-radius: 0 0 30rem 30rem;
  width: 100%;
  height: 100%;

  overflow: hidden;
  object-fit: cover;
}

#concept .concept_swiper {
  position: absolute;
  bottom: 13rem;
  left: 0;
  width: 100%;
  mix-blend-mode: soft-light;
}



#concept .concept_swiper .swiper-slide {
  width: 181rem;
  margin-left: 1.5rem;
}

@media screen and (max-width:767px) {
  #concept {
    padding-bottom: 5rem;
  }

  #concept .inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    width: 94%;
    margin: 0 auto;
  }

  .concept_txt {
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .concept_video {
    margin-left: auto;
    width: 24rem;
    height: 38rem;
    margin-right: 2rem;
    margin-top: -18rem;
  }

  .concept_video video {
    border-radius: 0 0 18rem 18rem;
    margin-top: -3rem;
  }

  #concept .concept_swiper {
    bottom: 1rem;
  }

  #concept .concept_swiper .swiper-slide {
    width: 160rem;
  }
}

/*================================================
* service
================================================*/
#service {
  padding-bottom: 0;
}

#service .inner {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 6rem;
  max-width: 131.2rem;
  min-width: 750px;
}


.service_img {
  width: 53rem;
}

.service_slide {
  width: 84%;
  position: relative;
}

.service_slide .service_swiper {
  border-radius: 0 16.5rem 16.5rem 0;
  overflow: hidden;
}

.service_slide .service_swiper .swiper-slide img {
  overflow: hidden;
  object-fit: cover;
  aspect-ratio: 450/330;
}

.service_slide-en {
  position: absolute;
  bottom: -1.2rem;
  right: -0.8rem;
  width: 13rem;
}

.service_img-under01 {
  width: 47%;
  margin-left: auto;
  margin-top: 5rem;
  border-radius: 0 16.5rem 0 0;
  overflow: clip;
}

.service_img-under02 {
  width: 40%;
  margin-top: -10rem;

  border-radius: 0 0 0 16.5rem;
  overflow: clip;
}


.service_txt {
  width: 72.2rem;
  min-width: 60rem;
}

.service_txt p {
  margin-top: 3.2rem;
}

.service_txt p.small {
  font-size: 1.4rem;
}

.service_txt p.en {
  font-size: 1.2rem;
  margin-top: 4.2rem;
  line-height: 1.7;
  font-weight: 200;
  font-family: var(--urbanist);
}


.service_img-right {
  width: 28rem;
  margin-left: auto;
  margin-top: -4rem;
}

@media screen and (max-width:767px) {
  #service {
    padding-top: 10rem;
  }

  #service .inner {
    flex-wrap: wrap;
    gap: 2rem;
    min-width: unset;
    width: 100%;
  }



  .service_slide {
    width: 96%;
    margin-left: 0;
    margin-top: -6rem;
  }

  .service_slide-en {
    width: 9rem;
    bottom: -0.6rem;
    right: 0rem;
  }

  .service_img .service_swiper {
    border-radius: 0 20rem 20rem 0;
  }

  .service_txt {
    width: 100%;
    min-width: unset;
  }

  .service_txt h2 {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }

  .service_txt-inner {
    width: 94%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6rem;
  }

  .service_txt p.small {
    font-size: 1.2rem;
  }

  .service_img {
    width: 85%;
  }

  .service_img-under01 {
    margin-top: -10rem;
    margin-right: 2rem;
  }

  .service_img-under02 {
    margin-top: -3rem;
    width: 35%;
  }
}

/*================================================
* secImg
================================================*/
.secImg {
  position: relative;
  margin-top: -4rem;
  z-index: -1;
  position: sticky;
  top: 0;
  height: 100vh;
}

.secImg img {
  overflow: hidden;
  object-fit: cover;
  height: 100vh;
  border-radius: 0 42rem 0 42rem;
}

@media screen and (max-width:767px) {
  .secImg {
    margin-top: -2rem;
  }


  .secImg img {
    border-radius: 0 18rem 0 18rem;
    object-position: center top;
  }
}

/*================================================
* message
================================================*/

#message {
  padding-top: 14rem;
  padding-bottom: 18rem;
  background: rgb(0 0 0 / 70%);
  border-radius: 0 42rem 0 42rem;
  display: flex;
  align-items: center;
  justify-content: center;
}


#message .inner {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 16rem;
  color: var(--color-white);
}

.message_txt {
  width: 46%;
  position: relative;
}

.message_txt p {
  margin-top: 3.2rem;
}

.message_txt p.en {
  font-size: 1.2rem;
  margin-top: 4.2rem;
  line-height: 1.7;
  font-weight: 200;
  font-family: var(--urbanist);
}

.message_img {
  width: 28rem;
  position: relative;
  padding-top: 10rem;
}

.message_img .img {
  border-radius: 0 13rem 0 0;
  overflow: hidden;
  display: block;
}

.message_img .logo {
  display: block;
  width: 38rem;
  position: absolute;
  left: -20.5rem;
  bottom: -9rem;
}

.message_img .en {
  display: block;
  width: 14.2rem;
  position: absolute;
  top: 8.4rem;
  right: 0rem;
}

@media screen and (max-width:767px) {
  #message {
    border-radius: 0 18rem 0 18rem;
    padding-top: 8rem;
    padding-bottom: 16rem;
  }

  #message .inner {
    flex-wrap: wrap;
    gap: 4.2rem;
    width: 90%;
  }

  .message_txt {
    width: 100%;
    position: relative;
  }

  .message_img {
    width: 20rem;
    position: relative;
    padding-top: 0rem;
    margin-left: auto;
  }

  .message_img .img {
    border-radius: 0 10rem 0 0;
    margin: 0 auto;
  }

  .message_img .logo {
    width: 24rem;
    left: -12.5rem;
    bottom: -5rem;
  }

  .message_img .en {
    width: 11.2rem;
    top: -1.2rem;
    right: 0rem;
  }
}

/*================================================
* social
================================================*/
#social .inner {
  display: flex;
  align-items: start;
  justify-content: end;
  gap: 4rem;
}

.social_txt p.en {
  font-size: 1.2rem;
  font-weight: 200;
  font-family: var(--urbanist);
  margin: 8rem 0 1rem;
}



#social .c_btn .en {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.social_insta {
  width: 68%;

}

.social_insta-wrap {
  /* height: 25rem; */
  /* background: #565651; */
  /* opacity: 0.3; */
}

@media screen and (max-width:767px) {
  #social .inner {
    flex-wrap: wrap;
    gap: 2rem;
  }

  .social_txt {
    width: 100%;
  }

  .social_txt p.en {
    margin: 4rem 0 1rem;
  }

  .social_insta {
    width: 100%;
  }
}

/*================================================
* access
================================================*/
#access {
  padding-top: 4rem;
}

#access .inner {
  margin-left: 0;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: row-reverse;
  gap: 10rem;

  min-width: 760px;
}

.access_map {
  width: 50%;
  height: 52rem;
  position: relative;
}

.access_map .access_en {
  width: 11.8rem;
  position: absolute;
  bottom: 1.2rem;
  right: 2rem;
  display: block;
}

.access_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 0 26rem 0;
  filter: grayscale(60%);
  -webkit-filter: grayscale(60%);
}

.access_txt {
  min-width: 50rem;
}

.access_txt p {
  margin-top: 3.2rem;
}

#access .under_inner {
  position: relative;
  top: -18rem;
}

.acc_slide {
  width: 45rem;
  margin-left: auto;
  position: relative;
}

.acc_swiper {
  border-radius: 12rem 0 12rem 0;
}

.acc_slide .acc_img {
  width: 18rem;
  position: absolute;
  bottom: -5rem;
  left: -20rem;
  z-index: 1;
  border-radius: 0 10rem 0 0;
  overflow: hidden;
}

@media screen and (max-width:767px) {
  #access {
    padding-top: 0;
  }

  #access .inner {
    margin-left: 0;
    flex-wrap: wrap;
    gap: 4rem;

    min-width: unset;
  }

  .access_map {
    width: 100%;
    height: 30rem;
  }

  .access_map .access_en {
    width: 7.8rem;
    bottom: 0;
    right: 0;

  }

  .access_map iframe {
    border-radius: 0 0 14rem 0;
  }

  .access_txt {
    min-width: unset;
    width: 100%;
  }


  .access_txt h2,
  .access_txt-inner {
    width: 94%;
  }

  .access_txt-inner {
    margin: 6rem auto;
  }

  .access_txt h2 {
    margin: 0 auto 4rem;
  }


  .access_txt p {
    margin-top: 4.2rem;
  }

  #access .under_inner {
    width: 100%;
    top: -9rem;
  }

  .acc_slide {
    width: 70%;

  }

  .acc_swiper {
    border-radius: 8rem 0 8rem 0;
  }

  .acc_slide .acc_img {
    width: 8rem;
    bottom: 6rem;
    left: -10rem;
    border-radius: 0 4rem 0 0;
  }
}

/*================================================
* reservation
================================================*/
#reservation {
  padding: 14rem 0 13rem;
  color: var(--color-white);
  overflow: hidden;
  margin-top: -12rem;
}


#reservation::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2B4163;
  border-radius: 28.8rem 28.8rem 0 0;
  background: linear-gradient(90deg, rgba(43, 65, 99, 0.80) 0%, rgba(0, 46, 120, 0.21) 100%);
  z-index: -1;
}

#reservation .c_wrap-md {
  width: 70%;
  min-width: 610px;
}

#reservation h2 {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 3rem;
}

#reservation h2 .en {
  font-size: 2.4rem;
  padding-left: 3.5rem;
}

#reservation h2 .en::before {
  width: 2rem;
  height: 2rem;
}

#reservation .c_btn-wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}

#reservation .c_btn-wrap .c_btn.bk::before {
  background: transparent;
  content: none;
}

#reservation .c_btn-wrap .c_btn {
  border: 1px solid var(--color-white);
}

#reservation .reserve_swiper {
  position: absolute;
  bottom: -4rem;
  left: 0;
  width: 100%;
  mix-blend-mode: soft-light;
}

#reservation .reserve_swiper .swiper-slide {
  width: 181rem;
  margin-left: 1.5rem;
}

@media screen and (max-width:767px) {
  #reservation {
    padding: 16rem 0 10rem;
    margin-top: -7rem;
  }

  #reservation::before {
    border-radius: 10rem 10rem 0 0;
  }

  #reservation h2 {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  #reservation h2 .en {
    width: 100%;
  }

  #reservation .c_wrap-md {
    width: 94%;
    min-width: unset;
  }

  #reservation .c_btn-wrap {
    flex-wrap: wrap;
    gap: 2rem;
  }

  #reservation .reserve_swiper .swiper-slide {
    width: 160rem;
    margin-left: 1.5rem;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  padding: 12rem 0 8rem;
}

footer .inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8rem 0;
}


.ft_logo {
  width: 30rem;
}


.ft_menu {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 2.5rem;
}

.ft_copy {
  width: 100%;
  font-family: var(--urbanist);
  font-size: 1.4rem;
}

@media screen and (max-width:767px) {
  footer {
    padding: 12rem 0 8rem;
  }

  footer .inner {
    gap: 8rem 0;
    justify-content: center;
  }


  .ft_logo {
    width: 22rem;
    margin-bottom: 3rem;
  }


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

  .ft_menu li {
    margin-bottom: 2rem;
    text-align: center;
  }

  .ft_copy {
    text-align: center;
    font-size: 1.2rem;
  }
}



/*================================================
* ani
================================================*/
/* fadeup */
.fadeIn {
  opacity: 0;
  transition: all 1s ease;
}

.fadeIn.on {
  opacity: 1;
}



.delay02 {
  transition-delay: .2s;
}

.delay03 {
  transition-delay: .3s;
}

.delay04 {
  transition-delay: .4s;
}

@media screen and (max-width:767px) {}

/*================================================
* access
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* price
================================================*/

@media screen and (max-width:767px) {}