@charset "utf-8";
:root {
  /* Color */
  --color-green: #9ADBAE;
  --color-orange: #FF835D;
  --color-green-light: #E0FDEA;
  --color-black: #616F6E;

  /* Font Family */
  --ffm-en: "Outfit", sans-serif;
  --ffm-jp: "M PLUS 2", sans-serif;
  --ffm-jp: "M PLUS 2", sans-serif;
}

/*  ---  common  ---   */
html{
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
      /* overflow-x: hidden; */
}
body {
  font-family: var(--ffm-jp);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: calc(27/16);
  color: var(--color-black);
  /* overflow-x: hidden;
    transform: rotate(0.04deg); */
}
/* .wrap {
  transform: rotate(0.04deg);
} */
.grecaptcha-badge { 
    display: none;
}
h1, h2, h3, h4, h5, h6, p, a, li, figcaption, th, td {
transform: translateZ(0);
}
/*  header  */
.l-header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 50px;
    background: #fff;
}
@media (min-width: 768px){
    .l-header{
        height: 70px;
    } 
}
.l-header .l-header__inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    height: inherit;
}
.l-header .l-header__logo{
    padding-left: 15px;
    height: 100%;
    display: flex;
    align-items: center;
}
@media (min-width: 576px){
    .l-header .l-header__logo{
        padding-left: 30px;
    }
}
.l-header .l-header__logo img{
    width: 130px;
}
@media (min-width: 576px){
    .l-header .l-header__logo img{
        width: 150px;
    }
}
@media (min-width: 992px){
    .l-header .l-header__logo img{
        width: auto;
    }
}
.l-header .l-header__logo figure{
    display: flex;
    align-items: center;
}

.l-header .l-header__menu{
        display: flex;
        gap: 30px;
        height: inherit;
}
.l-header .l-header__nav{
    display: flex;
    align-items: center;
    position: absolute;
    top: 50px;
    right: -100%;
    background-color: #fff;
    padding: 40px;
    border-radius: 0 0 0 20px;
    transition: 0.3s;
}
@media (min-width: 768px){
    .l-header .l-header__nav{
        display: flex;
        align-items: center;
        padding: 0;
        position: static;
    }  
}
.l-header .l-header__nav.is-show{
    right: 0;
}
.l-header .l-header__nav .l-header__nav__list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
@media (min-width: 768px){
    .l-header .l-header__nav .l-header__nav__list{
        flex-direction: row;
    }
}
.l-header .l-header__nav .l-header__nav__link{
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (min-width: 768px){
    .l-header .l-header__nav .l-header__nav__link{
        font-size: 14px;
    }
}
@media (min-width: 992px){
    .l-header .l-header__nav .l-header__nav__link{
        font-size: 16px;
    }
}
.l-header .l-header__nav .l-header__nav__link:hover{
    opacity: 0.5;
}
.l-header .l-header__nav .l-header__nav__link::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-orange);
}
.l-header .l-header__contact{
    display: none;
}
.l-header .l-header__contact:hover{
    background-color: #fff;
    color: var(--color-orange);
    opacity: 1;
}
@media (min-width: 768px){
    .l-header .l-header__contact{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        background-color: var(--color-orange);
        border: 2px solid var(--color-orange);
        padding: 20px;
    }
}
@media (min-width: 992px){
    .l-header .l-header__contact{
      font-size: 16px;
      padding: 20px 30px;
    }
}


.l-header .l-header__hamburger{
    display: block;
    width: 24px;
    height: 20px;
    position: relative;
    right: 15px;
}
@media (min-width: 576px){
    .l-header .l-header__hamburger{
        width: 30px;
        height: 25px; 
    }
}
@media (min-width: 768px){
    .l-header .l-header__hamburger{
        display: none;
    }
}
.l-header .l-header__hamburger span{
  display: block;
  width: 24px;
  height: 4px;
  background-image: radial-gradient(circle, var(--color-orange) 2px, transparent 2px);
    background-size: 6px 4px;
  background-repeat: repeat-x;
  transition: .3s;
  position: absolute;
  left: 0;
}
@media (min-width: 576px){
    .l-header .l-header__hamburger span{
        width: 30px;
        height: 4px;
        background-size: 8px 4px;
    }
}
.l-header .l-header__hamburger.is-active span {
  background: var(--color-orange);
  width: 24px;
  height: 2px;
}
@media (min-width: 768px){
    .l-header .l-header__hamburger.is-active span {
        width: 30px;
        height: 4px;
    }
}
.l-header .l-header__hamburger span:nth-child(1){
    top: 0;
}
.l-header .l-header__hamburger span:nth-child(2){
    top: 50%;
    transform: translateY(-50%);
}
.l-header .l-header__hamburger span:nth-child(3){
    bottom: 0;
}
.l-header .l-header__hamburger.is-active span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}

.l-header .l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header .l-header__hamburger.is-active span:nth-child(3) {
  transform: translateY(50%) rotate(-45deg);
  bottom: 50%;
}

.l-footer{
    padding-bottom: 100px;
}
@media (min-width: 576px){
    .l-footer{
        padding-bottom: 110px;
    }
}
@media (min-width: 768px){
    .l-footer{
        padding-bottom: 50px;
    }
}
.l-footer .l-footer__list{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px 3rem;
    margin-bottom: 4rem;
}
.l-footer .l-footer__list .l-footer__list__link{
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: calc(28/16);
    display: flex;
    align-items: center;
    gap: 8px;
}
.l-footer .l-footer__list .l-footer__list__link:hover{
    opacity: 0.5;

}
.l-footer .l-footer__list .l-footer__list__link i{
    color: var(--color-green);
}
.l-footer .l-footer__copyright{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: calc(21 / 14);
    font-family: var(--ffm-en);
    text-align: center;
}

/* main */
.l-main{
    padding-top: 50px;
}
@media (min-width: 768px){
    .l-main{
        padding-top: 70px;
    }  
}

/* section */
.c-section{
    padding: 50px 0;
}
@media (min-width: 576px){
    .c-section{
        padding: 60px 0;
    }
}
@media (min-width: 768px){
    .c-section{
        padding: 80px 0;
    }
}
.c-section[id]{

}

/* heading */
.c-heading{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    text-align: center;
}
@media (min-width: 576px){
    .c-heading{
        margin-bottom: 40px;
    }
}
@media (min-width: 768px){
    .c-heading{
        margin-bottom: 50px;
    }
}
.c-heading span{
    font-size: 28px;
    font-weight: var(--ffm-en);
    letter-spacing: 0.1em;
    line-height: 1.2;
    font-weight: 900;
    color: var(--color-orange);
}
@media (min-width: 576px){
    .c-heading span{
        font-size: 40px;
    }
}
@media (min-width: 768px){
    .c-heading span{
        font-size: 60px;
    }
}
@media (min-width: 992px){
    .c-heading span{
        font-size: 85px;
    }
}
.c-heading h2{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 700;
}
@media (min-width: 576px){
    .c-heading h2{
        font-size: 20px;
    }
}
@media (min-width: 768px){
    .c-heading h2{
        font-size: 23px;
    }
}

/* text */
.c-text p{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: calc(27/16);
}
.c-text > * + *{
    margin-top: 20px;
}

/* floatBanner */
.c-floatBanner{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
}
@media (min-width: 768px){
    .c-floatBanner{
        display: none;
    }
}
.c-floatBanner .c-floatBanner__link{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    background-color: var(--color-orange);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 17px 20px;
    height: 60px;
}
@media (min-width: 576px){
    .c-floatBanner .c-floatBanner__link{
        padding: 20px;
        font-size: 20px;
    }
}
.c-floatBanner .c-floatBanner__link i{
    color: #fff;
    font-size: 20px;
}
@media (min-width: 576px){
    .c-floatBanner .c-floatBanner__link i{
        font-size: 24px;
    }
}

/*////////////////////////////////////////////////////////////////////// */
/*  ---  MV  ---   */
.c-mv .c-mv__inner{
    background-color: var(--color-green);
    height: calc(100vh - 50px - 60px - 155px);
    display: flex;
    align-items: center;
}
@media (min-width: 768px){
    .c-mv .c-mv__inner{
        height: 500px;
    }
}
@media (min-width: 992px){
    .c-mv .c-mv__inner{
        height: 700px;
    }
}
@media (min-width: 2000px){
    .c-mv .c-mv__inner{
        height: 900px;
    }
}


.c-mv .c-mv__img{
    background-color: var(--color-green);
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding: 10px;
    margin: 0 auto;
}
@media (min-width: 576px){
    .c-mv .c-mv__img{
        padding: 20px 30px 30px;
    }
}
.c-mv .c-mv__img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.c-mv .c-mv__scroll{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    font-family: var(--ffm-en);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.c-mv .c-mv__scroll i{
    position: relative;
    top: -10px;
    font-size: 25px;
    color: var(--color-green);
    animation: scrollDown 2s infinite ease-in-out;
}
@keyframes scrollDown {
	0%,100% {
		transform: translateY(0) rotate(0deg);
	}
	50% {
		transform: translateY(5px) rotate(0deg);
	}
}

@keyframes scrollUp {
	0%,100% {
		transform: translateY(0) rotate(180deg);
	}
	50% {
		transform: translateY(-5px) rotate(180deg);
	}
}

/*////////////////////////////////////////////////////////////////////// */
/*  ---  detail  ---   */
.p-detail{
    padding-top: 50px;
}
.p-detail .c-heading span::after{
    content: "⚫︎⚫︎⚫︎";
    font-size: 10px;
    letter-spacing: -0.05em;
}
@media (min-width: 576px){
    .p-detail .c-heading span::after{
        font-size: 12px;
    }
}
@media (min-width: 768px){
    .p-detail .c-heading span::after{
        font-size: 16px;
    }
}
@media (min-width: 992px){
    .p-detail .c-heading span::after{
       font-size: 24px;
    }
}
.p-detail .p-detail__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 560px;
    width: 100%;
    color: #fff;
    background-color: var(--color-black);
    border: 2px solid var(--color-black);
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 700;
    line-height: calc(34/20);
    letter-spacing: 0.08em;
    border-radius: 55px;
    position: relative;
    text-align: center;
    margin: 0 auto;
}
@media (min-width: 576px){
    .p-detail .p-detail__btn{
        font-size: 18px;
        padding: 20px;
    }
}
@media (min-width: 768px){
    .p-detail .p-detail__btn{
      font-size: 20px;
    }
}
.p-detail .p-detail__btn:hover{
    cursor: pointer;
    background-color: var(--color-green-light);
    border: 2px solid var(--color-black);
    color: var(--color-black);
    opacity: 1;
}
.p-detail .p-detail__btn i{
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-green);
    font-size: 20px;
}
@media (min-width: 576px){
    .p-detail .p-detail__btn i{
        font-size: 24px;
        right: 30px;
    }
}
@media (min-width: 576px){
    .p-detail .p-detail__btn i{
        font-size: 30px;
        right: 50px;
    }
}
.p-detail .p-detail__btn:hover i{
    color: var(--color-black);
    
}
/*////////////////////////////////////////////////////////////////////// */
/*  ---  infomation  ---   */
.p-info{
    background-color: var(--color-green-light);
}

.p-info .p-info__inner{
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}
.p-info .p-info__list{
    margin-bottom: 2rem;
}
.p-info .p-info__list .p-info__list__item{
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 10px 15px;
    border-top: 3px dotted var(--color-black);
    min-height: 8rem;
}
@media (min-width: 768px){
    .p-info .p-info__list .p-info__list__item{
        flex-direction: row;
    }
}
@media (min-width: 768px){
    .p-info .p-info__list .p-info__list__item:nth-child(2),
    .p-info .p-info__list .p-info__list__item:nth-child(3){
        align-items: center;
    }
}
.p-info .p-info__list .p-info__list__title{
    font-size: 16px;
    font-weight: 500;
    line-height: calc(27/16);
    letter-spacing:0.08em;
    width: 145px;
}
.p-info .p-info__list .p-info__list__detail{
    font-size: 16px;
    font-weight: 500;
    line-height: calc(27/16);
    letter-spacing:0.08em;
    flex: 1;
    text-align: left;
}
.p-info .p-info__list .p-info__list__detail--bold{
    font-weight: 700;
}
.p-info .p-info__list .p-info__list__detail i{
    color: var(--color-orange);
    margin-left: 8px;
}
.p-info .p-info__map{
  width: 100%;
  height: 250px;
}
@media (min-width: 768px){
    .p-info .p-info__map{
        height: 400px;
    }
}
.p-info .p-info__map iframe{
    width: 100%;
    height: 100%;
    border: 0;
}

/*////////////////////////////////////////////////////////////////////// */
/*  ---  RESERVATION  ---   */

.p-form .p-form__btn{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 560px;
    width: 100%;
    color: #fff;
    background-color: var(--color-orange);
    border: 2px solid var(--color-orange);
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 700;
    line-height: calc(34 / 20);
    letter-spacing: 0.08em;
    border-radius: 55px;
    position: relative;
    text-align: center;
    margin: 0 auto 4rem;
}
@media (min-width: 768px){
    .p-form .p-form__btn{
      font-size: 20px;
      padding: 20px;
    }
}
.p-form .p-form__btn:hover{
    cursor: pointer;
    background-color: #fff;
    border: 2px solid var(--color-orange);
    color: var(--color-orange);
    opacity: 1;
}
.p-form .p-form__btn i{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 18px;
}
@media (min-width: 768px){
    .p-form .p-form__btn i{
        font-size: 22px;
        right: 50px;
    }
}
.p-form .p-form__btn:hover i{
    color: var(--color-orange);
}

.p-form .p-form__note{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: calc(21/14);
    font-family: var(--ffm-en);
}