@charset "utf-8";
/* ==================
common
================== */
html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    font-family: 
        'Zen Kaku Gothic New',
        'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    color: #333;
    background-color: #F7F3F0;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.section__title {
    font-family: 'Cormorant Garamond';
    font-size: 3.2rem;
    margin-top: 100px;
    padding-left: 37px;
}

.viewMore__btn {
    text-align: center;
    width: 187px;
    height: 42px;
    font-family: 'Cormorant Garamond';
    font-size: 1.6rem;
    font-weight: 600;
    color: #D8A6A1;
    background: #fff;
    border: 1px solid #D8A6A1;
    border-radius: 24px;
    padding: 8px 45px ;
    display: block;
    margin: 30px auto 0;
    -webkit-transition: all .3s;
    transition: all .6s;
}

.viewMore__btn::after {
    content: ""; 
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 20px;
}

.fadeIn {
    opacity: 0;
    transform: translateY(50px);
    transition: 2s ease-out;
}

.fadeIn.animated {
    transform: translateY(0);
    opacity: 1;
}


/* common pc */
@media screen and (min-width: 769px) {

    .section__title {
        font-size: 56px;
        padding-left: 93px;
        position: relative;
    }

    .section__title::before {
        content: "";
        text-align: center;
        position: absolute;
        top: 50%;
        left: 0;
        width: 53px; 
        height: 1px; 
        background-color: #333; 
    }

    .spBr {
        display: none;
    }

    .viewMore__btn {
        width: 242px;
        height: 48px;
        font-size: 2.0rem;
        margin: 0 auto;
    }

    .viewMore__btn:hover {
        background: #D8A6A1;
        color: #fff;
        border-color: #D8A6A1;
    }
}
/* pc 769px */

/* ==================
header
================== */
.header {
    width: 100%;
    position: absolute;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.header__logo {
    width: 15%;
    position: relative;
    top: 36px;
    left: 20px;
    cursor: pointer;
    transition: opacity .3s ease;
}

.header__logo:hover {
    opacity: 0.7;
}

.header__menu {
    width: 7%;
    position: relative;
    top: 36px;
    right: 25px;
}

/* .nav初期表示 */
.nav {
    background: #F7F3F0;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s;
    z-index: 100;
}

.nav.active {
    transform: translateX(0);
    z-index: 100;
}


.nav__logo {
    display: block;
    width: 15%;
    position: relative;
    top: 36px;
    left: 20px;
}

.btn-trigger {
    position: fixed;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);

    display: flex;
    justify-content: center;
    align-items: center;

    top: 20px;
    right: 20px;
    z-index: 100;
    box-sizing: border-box;
    transition: all .6s;
    cursor: pointer;
}

.btn-trigger:hover {
    transform: scale(1.2);
}

.btn-trigger:active {
    transform: scale(0.92);
}   

.btn-trigger span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #D8A6A1;
    border-radius: 2px;
    transform-origin: center;
}

.btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}

.btn-trigger span:nth-child(1) {
    transform:translate(-50%, calc(-50% + 8px));
}

.btn-trigger span:nth-child(2) {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.btn-trigger span:nth-child(3) {
    transform:translate(-50%, calc(-50% - 8px));
}

#btn01.active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

#btn01.active span:nth-child(2) {
    opacity: 0;
}

#btn01.active span:nth-child(3) {
    transform:translate(-50%, -50%) rotate(-45deg);
}

.nav__list {
    font-family: 'Cormorant Garamond';
    font-size: 2.0rem;
    line-height: 2.5;
    padding: 0 60px;
    margin-top: 60px;
}

.nav__item {
    border-bottom: 1px solid #333;
    margin-top: 5px;
    padding: 0 20px;
}

.nav__item a {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all .6s;
}

.nav__item a:hover {
    transform: scale(1.05);
}

.nav__item a::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
}

.nav__item:last-of-type {
    border: none;
}

.nav__item:last-of-type a::after {
    display: none;
}

.nav__item:last-of-type a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    padding: 0;
    margin: 0 auto;
    color: #D8A6A1;
    border: 1px solid #D8A6A1;
    border-radius: 22px;
    background-color: #fff;
    margin-top: 40px;
    -webkit-transition: all .6s;
    transition: all .6s;
}

.nav__item:last-of-type a:hover {
    transform: scale(1.05);
}

/* header PC */
@media screen and (min-width: 769px) {
    .header__logo {
        max-width: 10%;
    }

    .header__menu {
        display: none;
    }

    .nav__logo {
        display: none;
    }

    .nav__btn {
        display: none;
    }

    .nav {
        background: #F7F3F0;
        width: 500px;
        height: 100vh;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100;
        transform: translateX(500px);
        transition: transform 0.4s;
        z-index: 100;
    }

    .btn-trigger {
        width: 56px;
        height: 56px;
        top: 40px;
        right: 40px;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        margin-top: 120px;
    }

    .nav__item {
        font-size: 2.4rem;
    }

    .nav__item:last-of-type{
        margin-top: 0;
    }

}

/* PC 769px */

/* ==================
top
================== */
.top {
    position: relative;
    z-index: 1;
}

.top__fv {
    height: 670px;
    position: relative;
}

.mainImg--pc,
.mainImg--sp {
    width: 100%;
    display: block;
}

.mainImg--pc img,
.mainImg--sp img {
    width: 100%;
    height: 670px;
    object-fit: cover;
    display: block;
}

.mainImg--pc {
    display: none;
}

.mainImg--sp {
    display: block;
}

.top__fv-title {
    width: 100%;
    position: absolute;
    bottom: 290px;
    left: 0;
    font-family: 'Zen Old Mincho';
    font-size: 2.0rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 4px 12px rgba(0, 0, 0,0.3);
    text-align: center;
}

.top__fv-subtitle {
    width: 100%;
    position: absolute;
    bottom: 20px;
    left: 0;
    font-family: 'Zen Old Mincho';
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 0px 4px 12px rgba(0, 0, 0,0.3);
    text-align: center;
}

/* top Tablet & PC*/
@media screen and (min-width: 769px) {

    .mainImg--sp {
        display: none;
    }

    .mainImg--pc {
        display: block;
    }

    .mainImg--pc img {
        height: 100vh;
    }

    .top__fv-title {
        font-size: 2.4rem;
        bottom: 250px;
    }

    .top__fv-subtitle {
        font-size: 1.8rem;
        bottom: 10px;
    }
}

/* Tablet & PC 769px */

@media screen and (min-width: 1024px) {
    .top__fv {
        height: 100vh;
        position: relative;
        overflow: hidden;
    }
    
    .mainImg--sp {
        display: none;
        height: 100%;
    }

    .mainImg--pc {
        display: block;
        height: 100%;
    }

    .mainImg--pc img {
        width: 100%;
        height: auto !important;
    }

    .top__fv-title {
        font-size: 2.8rem;
        bottom: 45%;
    }

    .top__fv-subtitle {
        font-size: 2.0rem;
        bottom: 15%;
    }

    .concept__txt {
        margin-top: 30px;
    }

    .spBr {
        display: none;
    }
}
/* pc 769px */

/* ==================
concept
================== */
.section--concept {
    position: relative;
    z-index: 10;
}

.section--concept::after {
    content: "";
    position: absolute;
    top: -300px;
    left: -250px;
    width: 800px;
    height: 800px;
    background-image: url(../images/background_moyamoya.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    animation: fadeBg 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes fadeBg {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.6;
    }
}

.concept__txt {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-top: 25px;
    margin-left: 37px;
}

.concept__txt:last-of-type {
    width: 80%;
    margin: 60px auto 0;
    text-align: justify;
}


.concept__img {
    display: flex;
    justify-content: space-between;
}

.concept__img-left {
    width: 38%;
    margin-top: 100px;
}

.concept__img-right {
    width: 48%;
    margin-top: 40px;
}

/* concept pc */
@media screen and (min-width: 769px) {
    .section--concept {
        width: 80%;
        position: relative;
        max-width: 1440px;
        margin: 312px auto 0;
    }

    .section--concept::after {
        top: -300px;
        left: -250px;
        width: 900px;
        height: 900px;
    }

    .concept__txt {
        width: 50%;
        margin: 0;
        margin-top: 50px;
        padding-left: 100px;
        font-size: 1.6rem;
    }

    .concept__img {
        width: 40%;
        /* min-height: 610px; */
        position: absolute;
        top: 100px;
        right: 0;
        aspect-ratio: 583 / 726;
    }

    .concept__txt:last-of-type {
        width: 50%;
        margin: 0;
    }

    .concept__img-left {
        width: 60%;
        margin-top: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

    .concept__img-right {
        width: 85%;
        margin-top: 0;
        position: absolute;
        top: 0;
        right: 0;
    }

    .viewMore-wrapper.concept {
        width: 50%;
    }

    .viewMore__btn.concept {
        margin: 0;
        margin-top: 100px;
        margin-left: auto;
        font-size: 2.0rem;
    }

@media screen and (min-width: 1024px) {

    .concept__txt {
        margin-top: 30px;
    }
    
     .concept__img {
        width: 40%;
        /* min-height: 610px; */
        position: absolute;
        top: 0;
        right: 0;
        aspect-ratio: 583 / 726;
    }

    .concept__img-left {
        width: 60%;
        margin-top: 0;
        position: absolute;
        top: 45%;
        left: 0;
        z-index: 1;
    }

    .concept__img-right {
        width: 85%;
        margin-top: 0;
        position: absolute;
        top: 0;
        right: 0;
    }

}
    
}

/* ==================
menu/price
================== */
.menuPrice__txt {
    width: 80%;
    font-size: 1.4rem;
    line-height: 1.7;
    margin: 20px auto 0;
    text-align: justify;
}

.menuPrice__content {
    margin-top: 82px;
}

.menuPrice__item {
    display: flex;
    justify-content: space-between;
}

.menuPrice__item.second {
    margin-top: 62px;
    flex-direction:row-reverse;
}

.menuPrice__body {
    width: 37%;
    margin-left: 7%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menuPrice__body.second {
    margin-right: 7%;
}

.menu__title {
    display: block;
    font-family: 'Cormorant Garamond';
    font-size: 2.4rem;
}

.menu__subtitle {
    font-size: 1.4rem;
}

.menu__img-first {
    width: 50%;
    right: 0;
}

.menu__img-second {
    width: 50%;
    left: 0;
}

.more__btn-sp {
    font-family: "Cormorant Garamond";
    font-size: 2.0rem;
    text-align: right;
}

.more__btn-sp::after {
    content: ""; 
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 20px;
}

.more__btn-pc {
    display: none;
}

.menuPrice__item .menu__txt {
    display: none;
}

.viewMore__btn {
    margin-top: 52px;
}

/* menu/price pc */
@media screen and (min-width: 769px) {
    .section--menuPrice {
        max-width: 1440px;
        margin: 312px auto 0;
        padding: 0 10%;
    }

    .menuPrice__header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .menuPrice__txt {
        font-size: 1.6rem;
        line-height: 2.0;
        width: 50%;
        margin: 0;
    }

    .menuPrice__content {
        display: flex;
        justify-content: space-between;
    }

    .menuPrice__item {
        width: 45%;
        display: block;
        border-right: 1px solid #D8A6A1;
        border-bottom: 1px solid #D8A6A1;
        padding-right: 20px;
    }

    .menuPrice__item.first {
        transition: transform 0.3s 
    }

    .menuPrice__item.first:hover {
    transform: scale(1.05);
    }

    .menuPrice__item.second {
        margin-top: 0px;
        transition: transform 0.3s 
    }

    .menuPrice__item.second:hover {
    transform: scale(1.05);
    }

    .menuPrice__body {
        margin-left: 0;
    }

    .menu__title {
        font-size: 3.2rem;
    }

    .menu__subtitle {
        font-size: 1.6rem;
    }

    .menu__img-first {
        width: 100%;
        right: 0;
        margin-top: 53px;
        padding: 0 53px;
    }

    .menu__img-second {
        width: 100%;
        left: 0;
        margin-top: 53px;
        padding: 0 53px;
    }

    .more__btn-sp {
        display: none;
    }

    .more__btn-pc {
        display: block;
        font-size: 2.0rem;
        font-family: 'Cormorant Garamond';
        width: 20%;
        margin: 40px 0px 20px auto;
    }

    .more__btn-pc::after {
        content: ""; 
        display: inline-block;
        width: 6px;
        height: 6px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(-45deg);
        margin-left: 20px;
    }

    .menuPrice__item .menu__txt {
        display: block;
        font-size: 1.6rem;
        margin-top: 33px;
        padding: 0 53px;
    }

    .section--menuPrice .viewMore-wrapper {
        margin: 0 auto;
    }

    .section--menuPrice .viewMore__btn {
        margin-top: 90px;
    }
}

/* ==================
voice
================== */
.section--voice {
    margin: auto;
    background-image: url(../images/voice_bg-sp.png);
    background-size: cover;
    background-position: bottom;
    padding: 10px 0;
    margin-top: 100px;
}

.section__title--voice {
    font-family: 'Cormorant Garamond';
    font-size: 3.2rem;
    margin-top: 0;
    padding-left: 37px;
}

.voice__txt {
    width: 80%;
    margin: 20px auto 0;
    font-size: 1.4rem;
    text-align: justify;
}

.voice__content {
    margin-top: 54px;
}

.voice__img  {
    width: 45%;
    margin: 0 auto;
}

.voice__item--title {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}
.voice__meta {
    margin: 20px auto 0;
    padding: 0 7%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px 0;
}

.voice__item--category {
    font-size: 1.3rem;
    color: #fff;
    background: #D8A6A1;
    padding: 3px 9px;
}

.voice__item--info {
    font-size: 1.3rem;
}

.voice__item--txt {
    width: 76%;
    margin: 13px auto 0;
    font-size: 1.4rem;
    line-height: 1.7;
    text-align: justify;
}

.voice__content.slick-initialized.slick-slider.slick-dotted{
    margin-bottom: 100px;
}

/* voice pc */
@media screen and (min-width: 769px) {
    .section--voice {
        margin: 290px auto 0;
        background-image: url(../images/voice_bg-pc.jpg);
    }

    .voice__inner {
        max-width: 1440px;
        margin: 0 auto;
    }

    .voice__header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        padding: 0 10%;
    }

    .voice__txt {
        width: 50%;
        font-size: 1.6rem;
        line-height: 2.0;
        margin: 0;
    }

    .voice__item {
        width: 80%;
        display: flex;
        align-items: center;
        position: relative;
        margin: 100px auto 0;
        gap: 60px;
    }

    .voice__img {
        width: 20%;
    }

    .voice__item-wrapper {
        width: 60%;
    }

    .voice__item--title {
        font-size: 2.0rem;
        font-weight: 500;
    }

    .voice__meta {
        flex-direction: row;
        justify-content: start;
        align-items: center;
        gap: 0 28px;
        margin-top: 30px;
    }

    .voice__item--category {
        font-size: 1.6rem;
    }

    .voice__item--info {
        font-size: 1.6rem;
    }

    .voice__item--txt {
        width: 100%;
        font-size: 1.6rem;
        margin: 0;
        margin-top: 13px;
    }

    .slick-next {
        position: relative;
        right: 50px
    }

    .slick-prev:before {
        content: '';
    }

    .slick-prev.slick-arrow {
        content: ""; 
        display: inline-block;
        position: absolute;
        top: 50%;
        /* right: 30px; */
        transform: translateY(-50%) rotate(135deg);
        flex-shrink: 0;
        width: 25px;
        height: 25px;
        border-right: 3px solid #D8A6A1;
        border-bottom: 3px solid #D8A6A1;
        margin-left: 20px;
        opacity: 1;
        z-index: 100;
    }

    .slick-prev {
        position: relative;
        left: 50px
    }

    .slick-next::before {
        content: '';
    }

    .slick-next.slick-arrow{
        content: ""; 
        display: inline-block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%) rotate(-45deg);
        flex-shrink: 0;
        width: 25px;
        height: 25px;
        border-right: 3px solid #D8A6A1;
        border-bottom: 3px solid #D8A6A1;
        margin-left: 20px;
        z-index: 100;
    }
    
    .slick-prev.slick-arrow {
        display: none;
    }
}
/* pc 769px */

/* ==================
staff
================== */
.section--staff {
    position: relative;
}

.section--staff::after {
    content: "";
    position: absolute;
    top: -180px;
    right: -280px;
    width: 790px;
    height: 450px;
    background-image: url(../images/background_moyamoya.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    animation: fadeBg 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes fadeBg {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.6;
    }
}

.staff__txt {
    width: 80%;
    font-size: 1.4rem;
    margin: 20px auto 0;
    text-align: justify;
}

.staff__img {
    width: 80%;
    margin-top: 64px;
    position: relative;
    top: 0;
    left: 83px;
}
/* staff pc */
@media screen and (min-width: 769px) {
    .section--staff {
        max-width: 1440px;
        margin: 312px auto 0;
        padding: 0 10%;
    }

    .section--staff::after {
    content: "";
    position: absolute;
    top: -390px;
    right: -610px;
    width: 1510px;
    height: 1300px;
    background-image: url(../images/background_moyamoya.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    animation: fadeBg 6s ease-in-out infinite alternate;
    z-index: -1;
}

    .staff__header {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
    }

    .staff__txt {
        width: 50%;
        font-size: 1.6rem;
        line-height: 2.0;
        margin: 0;
    }

    .staff__img {
        max-width: 70%;
        position: relative;
        top: 0;
        left: -160px;
        margin-top: 160px;
    }
    
    .viewMore-wrapper--staff {
        width: 242px;
        margin-left: auto;
    }
}
/* pc 769px */

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

.access__wrapper {
    display: block;
}

.access__txt {
    width: 80%;
    font-size: 1.4rem;
    margin: 20px auto 0;
    text-align: justify;
}

.map {
    display: block;
    width: 70%;
    height: 250px;
    margin: 38px auto 0;
}


@media screen and (min-width: 769px) {
    .section--access {
        max-width: 1440px;
        margin: 312px auto 0;
        padding: 0 10%;
    }

    .section--concept::after {
    content: "";
    position: absolute;
    top: -300px;
    left: -250px;
    width: 900px;
    height: 900px;
    background-image: url(../images/background_moyamoya.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    animation: fadeBg 6s ease-in-out infinite alternate;
    z-index: -1;
    }

    @keyframes fadeBg {
        0% {
            opacity: 0.4;
        }
        100% {
            opacity: 0.6;
        }
    }
    .access__wrapper {
        display: flex;
        align-items: flex-end;
        justify-content: space-between
    }

    .access__info {
        width: 75%;
    }

    .access__txt {
        width: 70%;
        font-size: 1.6rem;
        line-height: 2.0;
        margin-top: 50px;
        margin-left: 92px;
    }

    .map {
        width: 25%;
        height: 340px;
        margin: 0;

    }
}


/* ==================
reservation
================== */
.section--reservation {
    position: relative;
}

.section--reservation::after {
    content: "";
    position: absolute;
    top: -190px;
    left: -270px;
    width: 830px;
    height: 520px;
    background-image: url(../images/background_moyamoya.png);
    background-size: cover;
    background-position: center;
    opacity: 1;
    animation: fadeBg 6s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes fadeBg {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.6;
    }
}

.reservation__wrapper {
    margin-top: 100px;
}

.reservation__txt {
    width: 80%;
    font-size: 1.4rem;
    line-height: 2.0;
    margin: 20px auto 0;
    text-align: justify;
}


.reservation__btn--insta,
.reservation__btn--line{
    text-align: center;
    width: 266px;
    height: 50px;
    font-family: 'Cormorant Garamond';
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    background: #D8A6A1;
    border-radius: 50px;
    padding: 8px 45px ;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 0;
}

.reservation__btn--insta p,
.reservation__btn--line p {
    font-family: 'Zen Old Mincho';
    font-size: 1.6rem;
}

.reservation__btn--insta {
    margin-top: 50px;
}

.reservation__btn--line {
    margin-top: 80px;
}

/* reservation pc */
@media screen and (min-width: 769px) {

    .section--reservation {
        max-width: 1440px;
        margin: 312px auto 0;
        padding: 0 10%;
    }

    .section--reservation::after {
        content: "";
        position: absolute;
        top: -320px;
        left: -260px;
        width: 1000px;
        height: 1000px;
        background-image: url(../images/background_moyamoya.png);
        background-size: cover;
        background-position: center;
        opacity: 1;
        animation: fadeBg 6s ease-in-out infinite alternate;
        z-index: -1;
    }

    .reservation__wrapper {
        display: flex;
        align-items: flex-end;
        gap: 30px;
    }

    .reservation__txt {
        width: 71%;
        font-size: 1.6rem;
        margin-top: 50px;
        margin-left: 92px;
    }

    .reservation__btn {
        display: block;
    }

    .reservation__btn--wrapper {
        margin-top: 147px;
    }

    .reservation__btn--insta {
        width: 380px;
        height: 94px;
        margin: 0 auto;
        font-size: 3.6rem;
        border-radius: 100px;
        padding: 0;
        text-align: center;
        line-height: 94px;
        -webkit-transition: all .6s;
        transition: all .6s;
    }

    .reservation__btn--insta:hover {
        background: #fff;
        color: #D8A6A1;
        border: 1px solid #D8A6A1;
    }

    .reservation__btn--line p {
        font-size: 2.4rem;
        margin-left: 5px;
    }

    .reservation__btn--line {
        width: 380px;
        height: 94px;
        margin: 0 auto;
        font-size: 3.6rem;
        border-radius: 100px;
        padding: 0;
        text-align: center;
        line-height: 94px;
        -webkit-transition: all .6s;
        transition: all .6s;
    }

    .reservation__btn--line:hover {
        background: #fff;
        color: #D8A6A1;
        border: 1px solid #D8A6A1;
    }

    @media screen and (min-width: 1024px) {
        .reservation__btn--wrapper {
            width: 40%;
            margin: 147px auto 0;
        }
        .reservation__btn {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
    }
}
/* pc 769px */

/* ==================
footer
================== */
.footer {
    position: relative;
    margin-top: 135px;
    padding-bottom: 60px;
    background:  linear-gradient(360deg, #e9a6a6 0%, #e8baba 65%,rgba(225,187,187,0) 98%);
}

.footer__wrapper {
    padding: 205px 62px 62px 62px;
}

.footer__logo {
    display: none;
}

.footer__list {
    color: #fff;
    height: 239px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer__item {
    font-size: 2.0rem;
    font-family: 'Cormorant Garamond';
    margin-top: 30px;
}

.footer__item:first-of-type {
    margin: 0;
}

.footer__item:nth-of-type(5) {
    margin-top: 0;
}

.footer__reservation a{
    text-align: center;
    width: 100%;
    font-family: 'Cormorant Garamond';
    font-size: 1.6rem;
    font-weight: 600;
    color: #D8A6A1;
    background: #fff;
    border: 1px solid #D8A6A1;
    border-radius: 24px;
    padding: 8px 45px;
    display: block;
    margin: 30px auto 0;
    -webkit-transition: all .6s;
        transition: all .6s;
    }

.footer__reservation a:hover {
    transform: scale(1.05);
}



.copy {
    color: #fff;
    font-size: 2.0rem;
    font-family: 'Cormorant Garamond';
    margin-top: 42px;
    text-align: center;
}

/* footer pc */
@media screen and (min-width: 769px) {
.footer {
    height: auto;
}

.footer__logo {
    display: inline-block;
    max-width: 10%;
    position: absolute;
    top: 210px;
    left: 50px;
    left: 20px;
    cursor: pointer;
    transition: opacity .3s ease;
}

.footer__logo:hover {
    opacity: 0.7;
}

.footer__list {
    width: 38%;
    margin-left: auto;
}

.footer__item {
    font-size: 2.4rem;
    transition: opacity .3s ease;
    cursor: pointer;
}

.footer__item:hover {
    opacity: 0.7;
}

.footer__reservation {
    width: 38%;
    margin-left: auto;
}

}