:root {
  --mainFont: 'Zen Old Mincho', YuGothic, 'Yu Gothic medium', 'Hiragino Sans', Meiryo, 'sans-serif';

  --Wh: #fff;
  --txt: #473636;
  --BG-primary: #FFF1F7;
  --BG-secondary: #F3FEFF;
  --main-primary: #FF7C7E;
  --main-secondary: #4596FF;
  --main-tertiary: #B46BA6;
  --primary_sub: #BCEBEF;
  --secondary_sub: #FFE8E3;
 
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-origin: border-box;
}

body {
  font-family: var(--mainFont);
  /* background: #1e1f38; */
  color: var(--txt);
}
main {
    overflow-x: hidden; 
}

a {
  text-decoration: none;
  color: var(--txt);
}
a:hover {
  opacity: 0.7;
}
p,
ul,
ol,
li {
  list-style: none;
  line-height: 180%;
}
img {
    display: block;
    width: 100%;
}
table {
    width: 100%;
}
tr {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 0;
}
tr:nth-child(2),.three_table tr:nth-child(3){
    background-image: linear-gradient(to right, var(--txt), var(--txt) 6px, transparent 6px);
    background-size: 10px 1px;
    background-position: left top;
    background-repeat: repeat-x;
}
.three_table tr:nth-child(2){
    background-image :none; 
}
th {
    position: relative;
    padding: 0 0 0 16px;
    display: flex;
    align-items: flex-start;
}
th::after {
  position: absolute;
  content: '';
  top: 9px;
  left: 0;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);/*45度回転*/
}
td {
    text-align: right;
    line-height: 200%;
    letter-spacing: -0.5px;
}
h2{
    position: relative;
    display: inline-block;
    font-size: 2rem;
    font-weight: 600;
    line-height: 130%;
    text-align: center;
    padding-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
    h2 {
        font-size: 1.5rem;
    }
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
.c-btn {
   width: 100%;
   display: flex;
   padding: 20px 10px;
   flex-direction: column;
   align-items: center;
   gap: 16px;
   border-radius: 5px;
   font-size: 1.3rem;
   max-width: 480px;
   margin: 0 auto;
}

.kv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  height: auto;
}

.kv-bg {
  width: 100%;
  object-fit: cover;
}
.kv-bg img {
  width: 100%;
}
.comingsoon {
  background-image: none;
  position: relative;
  pointer-events: none;
}
.comingsoon::before {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  border-radius: 50px;
  z-index: 20;
}
.title_sub {
  /* margin-top: 100px; */
  margin-bottom: 8px;
  position: relative;
  color: #04679a;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 43.2px */

  &::before,
  &::after {
    position: absolute;
    content: url('../img/snowflower.svg');
    top: 4px;
  }
  &::before {
    left: -30px;
  }
  &::after {
    right: -30px;
  }
}
.title_sub:not(:first-child) {
  margin-top: 100px;
}

#restaurant .title_sub {
  margin: 0;
}

.btn_box {
  width: 500px;
  margin: 120px auto;
}
.r-color {
  border: 1px solid linear-gradient(270deg, #da8406 0%, #b93740 100%) !important;
  background: none !important;
}

.outer-button {
  display: flex;
  width: 100%;
  height: 56px;
  /* background: linear-gradient(0deg, #da8406 0%, #b93740 100%); */
  border: 1px solid var(--mainColor);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  transition: all 0.3s;

  &:hover {
    box-shadow: 1px 1px 4px var(--mainColor);
  }
}
.inner-button::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--mainColor);
  border-bottom: 2px solid var(--mainColor);
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}

.inner-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  width: 99.3%;
  height: 52px;
  /* background: #1e1f38; */
  border-radius: 9999px;
  text-align: center;
}
/*======= footer ========*/

/*========================== ハンバーガーメニュー ========================== */

.header--pc {
    margin: 1.5rem auto;
    position: fixed;
    left: 25rem;
    z-index: 999;
}
.header--pc a {
    width: 80%;
    display: block;
}
.hamburger_menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: fit-content;
    background: var(--gradation, linear-gradient(0deg, #85DAE0 0%, #A3E5EA 100%));
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 204;
    opacity: 0;
    transform: translatey(-100vw);
    transition: all .6s;
    visibility: hidden; 
}
.hamburger_menu .inner h3 {
    font-size: 2.5rem;
    font-weight: 100;
    text-align: center;
    margin-bottom: 2.5rem;
}
.open .hamburger_menu {
    transform: translatey(0);
    left: 0;
    opacity: 1;
    visibility: visible;
}
.hamburger_menu .inner {
    margin: 7rem 10% 4rem;
}
.hamburger_menu .inner ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.hamburger_menu .inner ul li {
    position: relative;
    margin: 0;
    border-bottom: 1px solid #000;
}
.hamburger_menu .inner ul li a:hover {
    background: #e4e4e4;
}


@media screen and (max-width: 768px) {
    .hamburger_menu {
        width: 100%;
        height: auto;
    }
    .hamburger_menu .inner {
        margin: 6rem 5%;
        padding: 0;
    }
    .hamburger_menu .inner h3 {
        font-size: 1.7rem;
        text-align: left;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
}
/*----------.toggle_btn ----------=*/
.toggle_btn {
    display: inline;
    position: fixed;
    background: #fff;
    border-radius: 50px;
    color: #293F36;
    font-size: 24px;
    top: 1.5rem;
    right: 1rem;
    width: 60px;
    height: 60px;
    transition: all .5s;
    cursor: pointer;
    z-index: 180;
    box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.15);
}
.toggle_btn::before {
    position: absolute;
    content: "";
    background-image: url("../images/common/nav_img.webp");
    background-size: cover;
    background-repeat: no-repeat;
    width: 60px;
    height: 60px;
}
.toggle_btn span {
    display: block;
    position: absolute;
    left: 14px;
    width: 2rem;
    height: 3px;
    background-color: #473636;
    border-radius: 50px;
    transition: all .5s;
}
.toggle_btn span:nth-child(1) {
    top: 1.2rem;
}
.toggle_btn span:nth-child(2) {
    top: 1.9rem;
}
.toggle_btn span:nth-child(3) {
    bottom: 1rem;
}
.open .toggle_btn {
    background: #fff;
    z-index: 208;
}
.open .toggle_btn::before {
    display: none;
}
.open .toggle_btn span {
  background-color: #000;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) translateX(0) rotate(-315deg);
  transform: translateY(10px) translateX(0) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-12px) translateX(0) rotate(315deg);
  transform: translateY(-12px) translateX(0) rotate(315deg);
}

.nav_language {
    display: none;
}

.open .nav_language{
    display: block;
    position: fixed;
    font-size: 1rem;
    top: 1.8rem;
    right: 5.5rem;
    z-index: 204;
}
/*----------#link_list ----------*/
.link_list {
    display: flex;
    justify-content: center;
    flex-direction: row;
    gap: 1.5rem;
}
.link_box h4{
    font-size: 1rem;
    color: #fff;
    background: #000;
    font-weight: 400;
    padding: 0.2rem 1rem 0.3rem;
    border-radius: 50px;   
}
.link_box h4 span{
    float: right;
    font-size: 0.8rem;
    line-height: 2;
}
.link_contents {
    max-width: 1080px;
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 1rem 0 0;
}
.link_contents a {
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    border-bottom: solid 1px #333;
    padding: 0 3rem 1rem 0;
}
.link_contents a::before {
    content: '';
    background-image: url(../img/nav-arrow.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 26px;
    height: 26px;
    right: 0rem;
    bottom: 12px;
}
.link_contents a span {
    font-size: 0.8rem;
}
.link_artist{
    width: 17.3rem;
    display: block;
    margin-bottom: 1rem;
}
.link_artist h4 span{
    font-size: 0.8rem; 
}
.link_website h4 {
    color: #000!important;
    background: #fff!important;
    font-weight: 500 !important;
}
@media screen and (max-width: 1440px) {
    .hamburger_menu .inner {
        margin: 6rem 5% 4rem;
        height: 90vh;
        overflow-y: auto;
    }
    .link_areas {
        height: auto;
    }
    .link_artist, .link_website{
        width: auto;
    }
    .link_box {
        width: 100%;
    }
}
@media screen and (max-width: 900px) {
    .link_list {
        flex-direction: column;
    }
    .link_areas {
        margin: 2rem 0 0!important;
    }
    .link_artist {
        width: 100%;
    }
    .link_box h4 {
        line-height: 1.3;
    }
    .link_box h4 span {
        line-height: 1.7;
    }
    .link_box .guest-room {
        margin: 1rem 0 0;
    }
    .toggle_btn {
        top: 1rem;
        right: 1rem;
        left: auto;
    }
    .header--pc {
        left: 1rem;
    }
    .header--pc a {
        width: 50%;
    }
}

/*---------- #mask ----------*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 102;
  cursor: pointer;
}

/* =================== lead-recommended =================== */

#lead-recommended {
  margin: 4rem 0;
}
#plan {
    text-align: center;
    margin: 4rem 0 10rem;
}
#plan h2::before {
    position: absolute;
    content: '';
    background-image: url(../img/title-icon01.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: -12px;
    left: -24px;
    width: 64px;
    height: 64px;
    z-index: -1;
}
#plan nav,
#plan ul {
  max-width: 979px;
  margin: 0 auto;
}
#plan nav {
  flex-direction: column;
  margin-bottom: 100px;
}
#plan li {
  background-color: #fff;
  border-radius: 4px;
}
#plan li p {
  text-align: left;
  font-weight: 500;
  font-size: 1rem;
}
#plan .slide-plan {
    padding-bottom: 1rem;
    margin-bottom: 4rem;
}
#plan .slide-plan-list {
    width: 95% !important;
    background: var(--BG-primary);
    padding: 2rem;
    border-radius: 20px;
}
#plan .slide-plan-list h3 {
    margin: 2.5rem 0 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}
#plan .slide-plan-list h3 span {
    font-size: 18px;
}
#plan .slide-plan-list .line-img {
    width: 60%;
    margin: 1.5rem auto;
}
#plan .slide-plan-list th {
    color: var(--main-primary);
    font-size: 1rem;
    font-weight: 900;
}
#plan .slide-plan-list th::after {
  background-color: var(--main-primary);
}
#plan .slide-plan-list a{
    background: var(--secondary_sub);
}
#plan .slide-plan-list a:hover {
   background: #F1C0B7!important;
}
#plan .slide-plan-list p span{
    font-size: 14px;
}
#plan .plan-btn {
    background: var(--main-primary);
    color: var(--Wh);
}

@media screen and (max-width: 768px) {
    #plan {
        margin: 2rem 1rem 5rem;
    }
    #plan h2::before {
        top: -10px;
        left: -22px;
        width: 50px;
        height: 50px;
    }
    #plan .slide-plan {
        
    }
    #plan .slide-plan-list {
        
        padding: 1.5rem 1rem;
    }
    #plan .slide-plan-list h3 {
        font-size: 20px;
    }
    #plan .slide-plan-list h3 span {
        font-size: 16px;
    }
    .slick-next {
        right: -8px!important;
    }
    .slick-prev {
        left: -12px!important;
    }
    .slick-prev, .slick-next {
        top: 20rem!important;
    }
}

/* =================== event =================== */

#event {
    position: relative;
    background-image: url(../img/bg_wave.webp);
    background-size: 1920px, 1920px;
    background-repeat: repeat-x, repeat-x;
    background-position: center top, center bottom;
    background-color: var(--BG-secondary);
    padding: 95px 0 7.5rem;
    text-align: center;
    z-index: 0;
}
#event h2 {
    position: relative;
}
#event h2::before {
    position: absolute;
    content: '';
    background-image: url(../img/title-icon02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: -12px;
    left: -24px;
    width: 64px;
    height: 64px;
    z-index: -1;
}
#event h3 {
    font-size: 1.5rem;
}
#event h4 {
    font-size: 1.1rem;
}
#event .event_details {
    position: relative;
    max-width: 1080px;
    padding: 2rem;
    margin: 2rem auto;
    background: var(--Wh);
    border-radius: 20px;
}
#event .event_details::before {
    position: absolute;
    content: '';
    background-image: url(../img/event-top.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: -20rem;
    right: 0;
    width: 235px;
    height: 290px;
}
#event .event_details::after {
    position: absolute;
    content: '';
    background-image: url(../img/event-bottom.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: 21rem;
    left: 0;
    width: 214px;
    height: 280px;
}
#event .event_details-content {
    text-align: left;
    display: grid;
    grid-template-columns: 508px 1fr;
    gap: 2rem;
}
#event .event_details-img img {
  width: 100%;
}
.event_details-text{
    display: flex;
    flex-direction: column;
    gap: 1rem; 
}
#event th {
    color: var(--main-secondary);
    font-size: 1rem;
    font-weight: 900;
}
#event th::after {
    background-color: var(--main-secondary);
    top: 4px!important;
}
#event .event-btn {
    background: var(--primary_sub);
}
@media screen and (max-width: 768px) {
    #event {
        background-size: 768px, 768px;
        padding: 4rem 20px;
    }
    #event h2::before {
        top: -10px;
        left: -22px;
        width: 50px;
        height: 50px;
    }
    #event h3 {
        font-size: 18px;
        line-height: 1.3;
    }
    #event h4 {
        line-height: 1.3;
    }
    #event .event_details {
        margin: 0 auto;
        padding: 1.5rem 1rem;
    }
    #event .event_details-content {
        grid-template-columns: 1fr;
    }
    #event .event_details::before {
        top: -14.8rem;
        right: 1rem;
        width: 96px;
        height: 116px;
    }
    #event .event_details::after {
        top: auto;
        bottom: -8rem;
        width: 88px;
        height: 112px;
    }
    .event_details-img img {
        height: auto;
    }
    #event th {
        font-weight: 600;
    }
}

/* =================== restaurant =================== */

#restaurant {
    padding: 7.5rem 0 12rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    position: relative;
    overflow-x: hidden;
}
#restaurant h2 {
    padding-bottom: 1rem;
}
#restaurant h2::before {
    position: absolute;
    content: '';
    background-image: url(../img/title-icon03.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: -20px;
    left: 92px;
    width: 64px;
    height: 64px;
    z-index: -1;
}
#restaurant h3 {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    margin-bottom: 7.5rem;
}
#restaurant h3 img {
    width: 1.5%;
    margin: 0 0.5rem;
}
#restaurant > ul li::before {
  content: '※';
  position: absolute;
  transform: translate(-150%);
}
#restaurant th::after {
  background-color: var(--main-tertiary);
  top: 4px!important;
}
#restaurant th {
    color: var(--main-tertiary);
}
#restaurant .restaurant-box {
  margin-bottom: 5rem;
}
#restaurant::before,#restaurant::after,#modelcourse .model_inner::before,#modelcourse .model_inner::after{
   position: absolute;
   content: '';
   background-image: url(../img/rest_bg.webp);
   background-repeat: no-repeat;
   background-size: cover;
   width: 406px;
   height: 442px;
   z-index: -1;
}
#restaurant::before {
   top: 12rem;
   left: -4rem;
   transform: rotate(-15deg); 
}
#restaurant::after {
   top: 70rem;
   right: -4rem;
   transform: rotate(-150.12deg);
}
#modelcourse .model_inner::before {
   top: -85rem;
   left: -4rem;
   transform: rotate(-21.743deg);
}
#modelcourse .model_inner::after {
   top: -38rem;
   right: -4rem;
   transform: rotate(-21.743deg); 
}
#modelcourse .model_inner {
    position: relative;
    width: 100%;
}

@media screen and (max-width: 768px) {
  .p-title {
    font-size: 14px;
  }
  .p-text {
    font-size: 1rem;
  }
  #restaurant .p-title span {
    font-size: 16px;
  }
  #restaurant h2::before {
    left: -21px;
    }
  #restaurant h3 {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    }
  #restaurant h3 img {
      width: 4%;   
    }
  #restaurant::before,#restaurant::after,#modelcourse .model_inner::before,#modelcourse .model_inner::after{
    width: 148px;
    height: 160px;
    }
    #restaurant::after {
    top: 119rem;
    right: -2rem;
    }
    #modelcourse .model_inner::before {
    top: -104rem;
    left: -2rem;
    }
    #modelcourse .model_inner::after {
    top: -14rem;
    right: -2rem;
    }
}

/* =================== modelcourse =================== */

#modelcourse {
    background-color: var(--BG-secondary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../img/bg_wave.webp);
    background-size: 1920px, 1920px;
    background-repeat: repeat-x, repeat-x;
    background-position: center top, center bottom;
    padding: 7.5rem 0;
    text-align: center;
    gap: 32px;
}
#modelcourse h2 {
    position: relative;
    padding-bottom: 5rem;
    z-index: 1;
}
#modelcourse h2::before {
    position: absolute;
    content: '';
    background-image: url(../img/title-icon02.webp);
    background-repeat: no-repeat;
    background-size: cover;
    top: -12px;
    left: -26px;
    width: 64px;
    height: 64px;
    z-index: -1;
}
#modelcourse .plan {
    background: var(--Wh);
    padding: 2rem;
    gap: 32px;
}
#modelcourse .plan + .plan {
  margin-top: 116px;
}
#modelcourse .plan:first-of-type .p-content {
  text-align: center;
}
#modelcourse .plan:first-of-type .p-link:last-of-type, #modelcourse .p-link {
    font-weight: 600;
    color: var(--txt);
    font-size: 1.3rem;
    background-color: var(--primary_sub);
    padding: 32px;
}
#modelcourse .p-title {
  background: #fff;
  text-align: left;
  line-height: 160%;
  padding-bottom: 1.5rem;
}
#modelcourse .p-text {
  padding: 1rem 0;
}
#modelcourse .plan:first-of-type .p-link:last-of-type::after ,#modelcourse .p-link::after{
    border-right: 2px solid var(--txt);
    border-bottom: 2px solid var(--txt);
}
#modelcourse .day {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 5rem 0 4rem;
}
#modelcourse .col {
    max-width: 1080px;
    display: flex;
    flex-direction: row;
    margin: 1.5rem auto 0;
    gap: 32px;
}
#modelcourse .p-slide,#modelcourse .p-content {
  width: 50%;
}
#modelcourse .p-maintitle {
    background: var(--Wh);
    display: flex;
    width: 1080px;
    padding: 16px 24px;
    align-items: center;
    gap: 16px;
    line-height: 200%;
    margin: 0 auto;
}
#modelcourse .number {
    font-size: 2rem;
    color: var(--main-secondary);
}
#modelcourse .maintext {
    font-size: 1.6rem;
}
#modelcourse .p-info {
    font-size: 14px;
    text-align: left;
    line-height: 140%;
    margin-bottom: 1.5rem;
}
#modelcourse .p-access {
    font-size: 1.2rem;
    padding: 20px 2rem;
    text-align: left;
    background: var(--Wh);
    border-radius: 5px;
    margin-top: 1.5rem;
}
#modelcourse .bg-wh {
   display: flex;
   flex-direction: column;
   gap: 2rem;
   max-width: 1080px;
   margin: 1.5rem auto;
   background: var(--Wh);
   padding: 2.5rem 2rem;
}
#modelcourse .bg-wh .p-title {
   font-size: 18px;
   color: var(--main-secondary); 
}
#modelcourse th{
   color: var(--main-secondary);
   width: 16%;
   letter-spacing: -0.5px;
}
#modelcourse th::after{
   background: var(--main-secondary);
   top: 4px;
}
.model-btn {
    color: var(--Wh)!important;
    background: var(--main-secondary)!important;
}
.model-btn::after {
    border-right: 2px solid var(--Wh)!important;
    border-bottom: 2px solid var(--Wh)!important;
}

@media screen and (max-width: 768px) {
    #modelcourse {
        background-size: 350px, 350px;
        padding: 4rem 1rem;
        gap:1.5rem;
    }
    #modelcourse h2 {
        padding-bottom: 1rem;
    }
    #modelcourse h2::before {
        top: -7px;
        left: -23px;
        width: 50px;
        height: 50px;
    }
    #modelcourse .col {
        flex-direction: column;
        gap:1.5rem;
    }
    #modelcourse .p-slide, #modelcourse .p-content {
        width: 100%;
    }
    #modelcourse .plan {
        padding: 1.5rem 1rem;
    }
    #modelcourse .plan:first-of-type .p-link:last-of-type, #modelcourse .p-link {
        font-size: 1rem;
    }
    #modelcourse .day {
        font-size: 1.5rem;
        padding: 1.5rem 0;
    }
    #modelcourse .p-maintitle {
        width: 100%;
    }
    #modelcourse .number {
        font-size: 1.5rem;
    }
    #modelcourse .maintext{
        font-size: 18px;
        line-height: 140%;
        text-align: left;
    }
    #modelcourse .p-text {
        padding: 0 0 1rem;
    }
    #modelcourse .bg-wh {
        padding: 1.5rem 1rem;
    }
    #modelcourse th {
        width: 40%;
    }
    #modelcourse td {
        width: 100%;
    }
}

/*======= footer ========*/

/* footer */
footer {
  min-height: 100px;
  background: var(--gradation, linear-gradient(0deg, #9ADCE2 0%, #BCEBEF 100%));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--txt);
  padding: 96px 0 0;
}
footer img {
  margin-bottom: 32px;
}
footer h3 {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
  letter-spacing: 3.84px;
  margin-bottom: 8px;
}
footer .address {
  color: var(--txt);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 2.08px;
  margin-bottom: 32px;
}
.ft-nav ul {
  display: flex;
  justify-content: center;
}
.ft-nav li {
  list-style-type: none;
  padding: 0 16px;
  margin: 32px 0 120px;
  border-left: 1px solid var(--txt);
}
.ft-nav li:last-child {
  border-right: 1px solid var(--txt);
}
.ft-nav a {
  color: var(--txt);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 12.2px;
}
.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: var(--main-secondary);
  color: var(--Wh);
  text-align: center;
  font-family: 'NZen Old Mincho';
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 14.4px */
  letter-spacing: 1.28px;
  padding: 8px;
}


.l-btn {
  width: 280px;
  height: 72px;
  color: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}
.l-btn::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 10;
  transform: translate(50%, -50%) rotate(45deg);
}
.l-btn p {
  /* width: 238px; */

  color: var(--txt, #030322);
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
}
.l-btn p:after {
  content: '';
  display: block;
  width: 20px;
  height: 100%;
  border-radius: 0px 4px 4px 0px;
  background: linear-gradient(0deg, #a2cff9 0%, #04679a 100%);
  position: absolute;
  top: 0;
  right: 0;
}

/* recommended */
.title {
  margin-bottom: 26px;

  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%; /* 43.2px */
}
.title img {
  width: 50%;
  margin: 0 auto;
}
.plan {
  width: 1080px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.plan > div {
  width: 50%;
  max-width: 547px;
}
.p-slide {
  /* border: 1px solid #fff; */
  /* border-radius: 8px; */
  /* position: relative; */
}
.p-slide img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-slide img {
    height: auto;
  }
}

.slick-prev, .slick-next {
    width: 32px;
    height: 32px;
    background: var(--main-primary);
    border-radius: 50px;
}
.slick-prev {
    left: -48px;
    z-index: 10;
}
.slick-next {
    right: -48px;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    background: #FD575A;
}

.slick-dotted.slick-slider {
  margin: 0;
}
.slick-dots {
  height: 23px;
}
.slick-dots li {
  list-style-type: none;
  width: 12px;
  height: 12px;
}
.slick-dots li button:before {
  content: '';
  background-color: var(--main-primary);
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.p-content {
  position: relative;
  /* top: -16px; */
  /* max-height: none !important; */
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.p-title {
  font-size: 1.5rem!important;
  line-height: 130%;
  font-weight: 700;
}
.p-sub-title {
  font-size: 1.5rem;
  line-height: 130%;
  font-weight: 700; 
  color: var(--main-tertiary);
  padding: 1rem 0;
}
.p-text {
  font-size: 1rem;
  font-style: normal;
  text-align: left;
  font-weight: 500;
  line-height: 180%;
  color: #000;
}
.p-text span {
  padding-bottom: 8px;
}

.f-plan .p-text {
  color: #fff;
}
.p-link {
  display: flex;
  width: 100%;
  height: 56px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  font-family: 'Zen Old Mincho';
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
  position: relative;
  border-radius: 7px;
  background: var(--main-tertiary);
  transition: all 0.3s;
}
.p-link:hover {
  /* opacity: 0.7; */
  box-shadow: 1px 1px 4px black;
}

.p-link:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}
.plan + .plan {
  margin-top: 80px;
}

.p-box {
  background-color: #a7dce6;
  padding-top: 16px;
  margin-bottom: 24px;
}
.p-box td {
  vertical-align: top;
  padding: 0 0 16px 16px;
  line-height: 1.6;
  font-weight: 400;
}
@media (max-width: 769px) {
    .p-title {
        font-size: 18px!important;
    }
    .p-sub-title {
        font-size: 18px;
    }
}


/* even */
#even {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 72px 0 120px;
}
.even-title {
  position: absolute;
  top: -80px;
}
/* stay */
#stay {
  padding: 120px 0 160px;
  background: url(../img/stay_bg.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stay-title {
  text-align: center;
  margin: 0 auto 64px;
}
.stay-box {
  max-width: 1200px;
  background-color: #fff;
  padding: 106px 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  border: 4px solid #e2a5be;
}
.p-all-link {
  display: flex;
  width: 80%;
  height: 70px;
  border-radius: 5px;
  background: #dd719c;
  margin: 0 auto;
  font-size: 24px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 400;
  position: relative;
}
.p-all-link:after {
  content: '';
  display: block;
  width: 14px;
  height: 14px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 10;
  transform: translate(0, -50%) rotate(-45deg);
}
#stay .p-slide,
#stay .p-box,
#stay .slick-dots li button:before {
  background: #f8cbdd;
}
#stay .p-title {
  padding: 0;
}
#even .p-title {
  padding: 1rem;
}


/* recommended-p */
#recommended-p {
  padding: 120px 0 160px;
  background: url(../img/stay_bg.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recommended-p-title {
  text-align: center;
  margin: 0 auto 80px;
}
.box-title {
  background: #fbbe3b;
}
.recommended-p-box {
  max-width: 1080px;
  padding: 0 0 80px;
  background-color: #fff;
  border: 4px solid #fbbe3b;
}
.recommended-p-box h5 {
  color: #fbbe3b;
  font-size: 32px;
  font-weight: 700;
  margin: 32px 128px 16px;
}
.recommended-p-box .recommended-banner {
  width: 100%;
}
.schedule-box {
  display: flex;
  margin: 0 128px;
  gap: 42px;
  position: relative;
}
.schedule-box:not(:last-of-type):after {
  content: '';
  display: block;
  width: 2px;
  height: 56px;
  background-color: #fbbe3b;
  position: absolute;
  bottom: 40px;
  right: 50%;
}
.schedule-box > * {
  width: 390px;
  height: 248px;
  margin-bottom: 136px;
}
.schedule-box:last-of-type > * {
  margin: 0;
}
.schedule-title {
  color: #092d77;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%;
}
.schedule-text {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%;
}

/* access */

  .p-content {
    display: block;
  }
  .p-text {
    color: var(--mainColor);
  }
    p,
    h5 {
      color: var(--mainColor);
    }
.access-title {
  text-align: center;
  margin: 0 auto 68px;
}
.access-box {
  width: 1080px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  /* border: 2px solid #062c6f; */
}
.access-box img {
  width: 100%;
}
.arrow {
  position: relative;
  margin: 9.5rem auto 0 !important;
}
.arrow::after {
  content: url(../img/dots.svg);
  position: absolute;
  left: 50%;
  top: -6.5rem;
}

.ft-link {
  width: 200px;
  height: 48px;
  background: #fff;
  color: #1d2141;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 21.6px */
  display: flex;
  justify-content: center;
  align-items: center;
}

#move-top {
  position: fixed;
  bottom: 40px;
  right: 16px;
  z-index: 10;
}
#move-top img {
  width: 54px;
  border: 1px solid black;
  border-radius: 8px;
}
@media (min-width: 1920px) {
  #lead-recommended {
    background-size: cover;
  }
  #restaurant {
    background-size: cover;
  }
  .kv-cont {
    width: 30%;
  }
}
@media (max-width: 769px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  .btn_box {
    width: 90%;
    margin: 40px 0 80px;
  }

  #lead-recommended {
    padding: 80px 1rem 120px;
    background-size: cover;
  }
  .kv-bg {
    /* height: 540px; */
  }
  .kv-logo {
    top: 40px;
    right: 5%;
    width: 45%;
  }
  .kv-cont {
    width: 85%;
    top: 110px !important;
  }
  .title {
    font-size: 20px;
  }
  .title_sub {
    font-size: 14px;
  }
  .title img {
    width: 60%;
  }
  #plan nav,
  #plan ul {
    gap: 16px;
  }
  #plan nav {
    margin-bottom: 80px;
  }
  .l-btn {
    width: 156px;
  }
  .l-btn p {
    width: 140px;
    font-size: 14px;
  }
  .recom-title img {
    width: 100%;
  }
  .plan {
    flex-direction: column;
    width: 100%;
    height: auto;
  }
  .plan > div {
    width: 100%;
  }
  .p-slide {
    /* right: -4px; */
  }
  .recom-title {
    margin-bottom: 40px;
  }
  .plan + .plan {
    margin-top: 100px;
  }
  .even-title {
    top: -110px;
    width: 100%;
  }
  #even .even-title img {
    width: 40%;
    margin: 0 auto;
  }
  #even {
    padding: 0 0 120px;
  }
  #even .plan {
    width: 90%;
  }
  #even .p-title {
    padding: 1rem 0.5rem;
  }
  .p-box td {
    padding: 0 0 12px 12px;
    font-size: 16px;
    white-space: nowrap;
  }
  #stay {
    padding: 80px 0;
  }
  #stay .stay-title img {
    width: 80%;
    margin: 0 auto;
  }
  #stay .stay-box {
    width: 90%;
    padding: 40px 16px;
  }
  #stay .plan + .plan {
    margin-top: 40px;
  }
  #stay .p-box td {
    padding: 0 0 16px 14px;
    font-size: 14px;
  }
  .p-all-link {
    width: 100%;
    font-size: 18px;
  }
  #restaurant {
    padding: 5rem 0 1.5rem;
  }
  #restaurant .plan{
    gap:32px;
    }
  #restaurant .intro {
    width: 90%;
    margin-bottom: 64px;
    text-align: left;
  }
  #restaurant .plan,
  #special .plan {
    width: 100%;
  }
  .restaurant_info {
    width: 90%;
    padding-left: 20px;
  }
  .restaurant-box {
    width: 89%;
    margin-bottom: 2.5rem;
  }
  #recommended-p {
    padding: 80px 0;
  }
  .recommended-p-box {
    width: 90%;
  }
  .recommended-p-box .recommended-banner {
    background: #fbbe3b;
    padding: 16px 0 32px;
  }
  .recommended-p-box h5 {
    text-align: center;
    margin: 32px 0;
  }
  .schedule-box {
    margin: 0 1rem;
    margin-bottom: 80px;
    flex-direction: column;
    gap: 16px;
  }
  .schedule-box:last-child {
    margin-bottom: -20px;
  }
  .schedule-box > * {
    width: 100%;
    height: auto;
    margin-bottom: 0px;
  }
  .schedule-box:not(:last-of-type):after {
    height: 40px;
    bottom: -58px;
  }
  .slick-dots {
    bottom: -17px;
    right: -6px;
  }
  .arrow::after {
    bottom: -87px;
  }
  .access-title {
    margin: 0 auto 64px;
  }
  .access-box {
    width: 90%;
    padding: 16px;
  }
  .access-box img {
    width: 100%;
  }
  .ft-nav {
    width: 90%;
  }
  .ft-nav ul {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .ft-nav li {
    padding: 0 8px;
    margin: 16px 0;
    border-right: 1px solid var(--txt);
    text-align: center;
  }
  .ft-nav a {
    font-size: 16px;
  }
  .copyright {
    font-size: 11px;
  }
}
