/* =======================================================
common
========================================================*/
:root {
    --primary-black:#000000;
    --primary-brown:#5B4C4C;
    --primary-white:#FFFFFF;
    --primary-lightBrown:#C0B3AA;
    --primary-darkGreen:#038588;
    --primary-blue:#D9EDED;
    --primary-lightGreen:#00A5A8;
    --primary-lightbrown: #C0B3AA;
    --primary-Gray: #828282;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 
                   "Zen Old Mincho", serif,
                    "lora ",
                    "Shippori Mincho", serif,
                    Arial, 
                    sans-serif;
    font-style: normal;
    color: var(--primary-black,#000000);
    font-weight: 400;
    line-height: normal;
}

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

.header__topic a,
.nav__topic,
.footer__topic {
    color: var(--primary-black,#000);
    font-family: Lora;
    font-size: 2.2rem;
    font-weight: 600;
}

.subTopic {
    color: var(--primary-black, #000);
    font-family: "Zen Old Mincho";  
    font-size: 1.1rem;
    font-style: normal;
    line-height: 20px;
    letter-spacing: 1.1px;
}

.header__subtopic,
.nav__subtopic,
.footer__subtopic {
    color:var(--primary-black,#000);
    font-family: "Zen Old Mincho";  
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.72px;
    margin-left: 5px;
}

.topic {
    text-align: center;
    font-family: Lora;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 3.3px;
}

.topic span  {
    font-family: "Zen Old Mincho";
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
}

.menu__btn {
    display: flex;
    width: 140px;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    color: var(--primary-darkGreen, #038588);
    text-align: center;
    font-family: Lora;
    font-size: 1.4rem;
    font-weight: 500;
    border-radius: 50px;
    border: 0.5px solid var(--primary-darkGreen, #038588);
    background: var(--primary-white, #FFF);
}

.menu__btn::after {
    content: '';
    display: inline-block;
     width: 10px;
     height: 10px;
     background-image: url(../images/menu_arrow.svg);
     background-repeat: no-repeat;
     background-size: contain;
     background-position: center;
     margin: 0 8px;
}

.menu__btn:hover {
    background-color: var(--primary-darkGreen);
    color: var(--primary-white);
}

.menu__btn:hover::after {
    content: '';
    display: inline-block;
     width: 10px;
     height: 10px;
     background-image: url(../images/menu__rrowhite.svg);
     background-repeat: no-repeat;
     background-size: contain;
     background-position: center;
     margin: 0 8px;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/*common pc */
@media screen and (min-width:769px)  {
    .footer__topic {
        font-size: 2.8rem;
       font-weight: 500;
   }
}
@media screen and (min-width:1047px) {
    .header__topic a,
    .nav__topic,
    .footer__topic {
         font-size: 2.8rem;
        font-weight: 500;
    }
    
    .subTopic { 
        font-size: 1.3rem;
        line-height: 20px;
        letter-spacing: 1.5px;
    }
    
    .header__subtopic,
    .nav__subtopic,
    .footer__subtopic {
        text-align: center;
        font-size: 1.6rem;
        line-height: 40px;
        font-weight: 700;
        letter-spacing: 0.72px;
        margin-left: 5px;
    }

}
/* =======================================================
header
========================================================*/
.header {
    display: flex;
    height: 70px;
    align-items: center;
    padding-left: 15px;
    justify-content: space-between;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    background-color: #fff;
}

.header__topic {
    width: 150px;
    padding-left: 5px;
    padding-bottom: 5px;
}

.footer__topic {
    width: 150px;
}

.headerReserve {
    padding-left:15px;
    text-align: center;
    border-radius: 50px;
    background-color: #C0B3AA;
    color: var(--primary-white, #FFF);
    font-size: 1rem;
    font-weight: 700;
    line-height: 16px;
    position: relative;
    transition: 0.4s;
    width: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
}

.headerReserve::after {
    content: '';
    display: inline-block;
     width: 10px;
     height: 10px;
     background-image: url(../images/headerReserve.svg);
     background-repeat: no-repeat;
     background-size: contain;
     background-position: center;
     margin: 0 8px;
}

/* nav初期表示 */
.nav {
    background-color: var( --primary-lightGreen,#00A5A8);
    opacity: 0.97;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 70px;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.nav__item  span {
    text-align: center;
    font-family: "Zen Old Mincho";
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    padding-left: 20px;
}

.nav__list {
    margin-top: 10px;
    padding: 30px;
}

.nav__item a {
    color: var(--primary-white,#FFFFFF);
    font-family: Lora;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.header__btn {
    background-color: var(--primary-lightGreen);
    display: flex;
    width: 70px;
    height: 70px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.btn__line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 5px;
    margin: -2.5px 0 0 -15px;
    background-color: var(--primary-white,#FFFFFF);
    transition-duration: .2s;
    transition-property: transform;
}

.btn__line::before,
.btn__line::after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 5px;
    margin: -2.5px 0 0 -15px;
    background-color: var(--primary-white,#FFFFFF);
    transition-duration: .2s;
    transition-property: transform;
}

.btn__line::before {
    margin-top:-15px;
}

.btn__line::after {
    margin-top: 10px;
}

.btn__line.active {
    background: transparent;
}

.btn__line.active:before {
    transform: rotate(-45deg);
     -webkit-transform: rotate(-45deg);
     margin-top: -2.5px;
}

.btn__line.active::after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    margin-top:-2.5px;
}


/*header pc */
@media screen and (min-width:769px) {
    .header {
        display: flex;
        height: 100px;
        align-items: center;
        padding-left: 15px;
        justify-content: space-between;
        padding: 30px 0px 30px 50px;
    }

    .header__topic {
        width: 150px;
        padding-bottom: 10px;
    }
    
    .footer__topic {
        width: 200px;
    }

    .headerReserve {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translateX(0);
    }

    .nav__list  {
        display: flex;
        padding: 10px 20px 10px 20px;
        justify-content: flex-end;
        align-items: center;
        gap: 3px;
        width: 100%;
        margin-top: 0;
    }

    .nav__item {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .nav__item a {
        color: var(--primary-black);
        margin-top: 0;
        display: block;
        width: 100px;
        text-align: center;
        font-size: 1.8rem;
    }

    .nav__item span {
        text-align: center;
        font-size: 1.3rem;
        font-weight: 500;
        letter-spacing: 1.3px;
        padding-left: 0;
        content:"￥A";
        white-space:pre;

    }

    .footer__list {
        display: flex;
        max-width: 1280px;
        padding: 20px 100px;
        justify-content: space-between;
        align-items: center;
        margin:0 auto;
    }
    
    .nav__footer {
        display: flex;
    }

    .nav__footer a {
        color:var(--primary-black,#000);
        text-align: center;
        font-family: Lora;
        font-size: 1.8rem;
        font-weight: 500;
        letter-spacing: 2px;
    }
    
    .header__btn {
        display: none;
    }
}

@media screen and (min-width:780px) {
    .nav__list  {
        gap: 5px;
    }
}

@media screen and (min-width:830px) {
.nav__list  {
    gap: 20px;
    }
}

@media screen and (min-width:870px) {
    .nav__item a {
        font-size: 2rem;
    }
}

@media screen and (min-width:900px) {
    .nav__list  {
        padding: 10px 30px 10px 30px;
        gap: 30px;
    }
}
@media screen and (min-width:1000px) {
    .nav__list  {
        padding: 10px 50px 10px 50px;
        gap: 50px;
    }
}
@media screen and (min-width:1040px) {
.header__topic {
    width: 200px;
    padding-bottom: 10px;
}
}
 /* =======================================================
Topmenu
========================================================*/
.menu__list {
    background-color: var(--primary-blue,#D9EDED);
    padding: 60px 8%;
}

.topic--menu {
    color: var(--primary-darkGreen, #038588);
    font-family: Lora;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 3.3px;
}

.topic--menu span {
    font-family: "Zen Old Mincho";
    font-size: 1.3rem;
    font-weight: 700;
}

.topMenu {
    margin:60px 0;
    padding-left: 0;
}

.topMenu__content {
    display: flex;
    padding: 30px  8%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-color: var(--primary-white,#FFFFFF);
    margin: 0 auto;
    box-shadow: 0px 10px 10px 8px rgba(0, 0, 0, 0.25);
    width: 85%;
}

.topMenu__content:last-of-type {
    margin-top: 60px;
}

.topMenu__name {
    color: var(--primary-darkGreen, #038588);
    text-align: center;
    font-family: Lora;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.54px;
    margin-top: 30px;
}

.topMenu__name span {
    font-family: "Zen Old Mincho";
    font-size: 1.4rem;
    font-weight: 700;
}

.menu__btn--menu {
    padding: 10px;
    margin-top: 30px;
}

.menu__btn--menu:nth-of-type(2) {
    margin-top: 30px;
}
@media screen and (min-width:520px) {
    .topMenu__content {
        padding: 40px  8%;
}
}
/* topmenu pc */
@media screen and (min-width:769px) {
    .menu__list  {
        padding: 100px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .topic--menu {
        text-align: center;
        font-size: 2.8rem;
        font-weight: 500;
        letter-spacing: 3.3px;
    }

    .topic--menu span {
        font-size: 1.6rem;
        line-height: 40px;
    }
    .topMenu {
        display: flex;
        width: 80%;
        padding: 40px;
        justify-content: space-between;
        align-items: center;
        gap: 100px;
        flex-direction: column;
    }
    .topMenu__content {
        width: 60%;
        padding: 40px 30px;
    }
}

@media screen and (min-width:1000px) {
    .topMenu {
        display: flex;
        flex-direction: row;
    }

    .topMenu__content {
        display: flex;
        width: 40%;
        padding: 40px 30px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-shrink: 0;
    }

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

    .topMenu__name {
        text-align: center;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: 2.5px;
        margin-top: 0;
    }

    .topMenu__name span {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .menu__btn--menu {
        display: flex;
        width: 180px;
        padding: 15px 20px;
        align-items: center;
        gap: 10px;
        font-size: 1.6rem;
        margin-top: 0;
        justify-content: flex-end;
    }
    
    .menu__btn--menu:nth-of-type(2) {
        margin-top: 0;
    }

    .menu__btn::after {
        width: 13px;
        height: 13px;
}
.menu__btn:hover:after {
        width: 13px;
        height: 13px;
}
}
/* =======================================================
Reserve
========================================================*/
.section--reserve {
    background-color: var(--primary-lightGreen,#00A5A8);
    padding: 60px 8%;
}

.reserve__txt {
    color: var(--primarywhite,#FFF);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 25px;
    margin: 60px 0;
}

.reserve__btn {
    background-color: var(--primarywhite,#FFFFFF);
    display: flex;
    width: 240px;
    height: 50px;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    border-radius: 50px;
    margin-top: 60px;
    color: var(--primary-lightGreen, #00A5A8);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 28px;
}

.reserve__btn::after {
    content: '';
    display: inline-block;
     width: 10px;
     height: 10px;
     background-image: url(../images/reserve.svg);
     background-repeat: no-repeat;
     background-size: contain;
     background-position: center;
     margin: 0 8px;
}

/*reserve pc */
@media screen and (min-width:769px) {
    .section--reserve {
        display: flex;
        padding: 100px 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .reserve__txt {
        text-align: center;
        font-size: 1.8rem;
        line-height: 45px; 
        margin-top: 90px;
    }

    .reserve__btn {
        display: flex;
        width: 300px;
        height: 60px;
        padding: 0px 10px;
        justify-content: center;
        align-items: center;
        gap: 20px;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 28px;
    }

    .reserve__btn::after {
         width: 15px;
         height: 15px;
    }
}
/* =======================================================
footer
========================================================*/
.footer {
    padding: 60px 8% 0;
    display: flex;
    flex-direction: column;
}

.map {
    width: 100%;
    height: 240px;
}

.address {
    margin: 60px 0;
}

.address__postcode {
    margin-top: 20px;
    font-family: Lora;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 25px;
}

.address__txt {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 25px; 
}

.address__phone {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 25px;
    margin-top: 20px;
}

.parking,
.room {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 25px; 
    margin-top: 20px;
}

.address__phone span  {
    margin-left: 41px;
}

.parking span,
.room span {
    margin-left: 30px;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    margin-top: 20px;
    }

.contact__txt {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 25px; 
}

.contact__icon {
    width: 15%;
}

 .contact__icon img {
     width: 100%;
}

.copy {
    color: var(--primary-white, #FFF);
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    background: var(--primary-lightGreen, #00A5A8);
    display: flex;
    padding: 18px 0;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer__list {
    display: none;
}


/*footer pc */
@media screen and (min-width:440px) {
.contact__icon {
    width: 12%;
}
}

@media screen and (min-width:540px) {
    .contact__icon {
        width: 10%;
    }
    }

@media screen and (min-width:769px) {
    .footer {
        display: flex;
        padding: 100px 60px 80px;
        justify-content: space-between;
        align-items: center;
        flex-direction: row;
        max-width: 1200px;
        margin: 0 auto;
        gap: 40px;
    }

    .map {
        width: 560px;
        height: 420px;
    }

    .address {
        margin:0;
    }

    .address__phone span  {
        margin-left: 45px;
    }

    .address__postcode,
    .address__txt,
    .address__phone,
    .parking,
    .room,
    .contact__txt  {
        font-size: 1.8rem;
        line-height: 40px;
    }

    .contact__icon {
        width: 17%;
    }

    .copy  {
        font-size: 1.8rem;
        padding: 25px 0;
    }
}

@media screen and (min-width:1100px) {
    .contact__icon {
        width: 15%;
    }
    }