@charset "UTF-8";

/* ====================
common
==================== */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 
    "Noto Serif JP",
    "Roboto" ,
    serif;
    font-style: normal;
    color: #333;
    background-color: #fff;
    line-height: 1.2;
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
}

img {
    width: 100%;
    height: auto;
}

.pcBr {
    display: none;
}

.pcSpan {
    display: none;
}

.btn:hover { 
    opacity: 0.7;
}

/* common pc */
@media screen and (min-width: 769px) {
    .spBr{
        display: none;
    }
    
    .pcBr {
        display: block;
    }

    .spSpan {
        display: none;
    }

    .pcSpan {
        display: inline-block;
    }

}

/* ====================
header
==================== */

.header {
    padding: 15px 2.6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #223148;
}

.header__tittle {
    display: flex;
    align-items: center;
}

.header__logo {
    width: 30px;
    margin-right: 5px;
}

h1 {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 16px;
}

.header__topic__sub {
    font-size: 1.2rem;
    font-weight: 400;
}

.sp__reservationBtn {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.2rem;
    padding: 10px 5px;
    background-color: #982228;
    display: inline-block;
    margin-right: 10px;
}

.sp__header__btn {
    display: flex;
    align-items: center;
}

/* header__btn */
.header__btn {
    position: relative;
    cursor: pointer;
    width: 35px;
    height: 36px;
    z-index: 120;
}

.header__btn span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #FFF;
    border-radius: 1px;
    transition: all 0.4s;
}

.header__btn span:nth-of-type(1) {
    top: 10px;
}

.header__btn span:nth-of-type(2) {
    top: 18px;
}

.header__btn span:nth-of-type(3) {
    top: 26px;
}

/* sp .header__btn.active表示 */
.header__btn.active span:nth-of-type(1) {
    top: 6px;
    left: 5px;
    transform: translateY(12px) rotate(-45deg);
}

.header__btn.active span:nth-of-type(2) {
    opacity: 0;
}

.header__btn.active span:nth-of-type(3) {
    top: 30px;
    left: 5px;
    transform: translateY(-12px) rotate(45deg);
}

/* nav 初期表示 */
.nav {
    background: #223148;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__list {
    color: #fff;
    font-family: Roboto;
    font-size: 2rem;
    margin-top: 30px;
}

.nav__list:nth-of-type(1) {
    margin-top: 0;
}

.pc__reservationBtn {
    display: none;
}

.nav__menu {
    margin-top: 115px;
    text-align: center;
}

/* nav.active表示 */
.nav.active {
    transform: translateX(0);
}

/* header pc */
@media screen and (min-width: 600px) {
    .sp__reservationBtn {
        display: block;
        font-size: 1.6rem;
        padding: 20px 30px;
        background-color: #982228;
        margin-right: 20px;
        
    }

    .header__logo {
        width: 53px;
        margin-right: 10px;
    }

    h1 {
        font-size: 3.2rem;
        line-height: 0.8;
    }

    .header__topic__sub {
        font-size: 1.5rem;
    }
}

/* header pc */
@media screen and (min-width: 1200px) {
    .header {
        padding: 30px 3.4% 20px;
        align-items: center;
    }

    .sp__reservationBtn {
        display: none;
    }

    .header__btn {
        display: none;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        position: static;
        transform: translateX(0);
    }

    .nav__menu {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-top: 0;
        gap: 20px;
    }

    .nav__list {
        margin: 0;
        font-size: 1.8rem;
    }

    .pc__reservationBtn {
        display: block;
        font-size: 1.8rem;
        padding: 20px 37px;
        background-color: #982228;
        transition: all .3s;
    }

    .pc__reservationBtn:hover {
        background-color: #A7262D;
        border-radius: 10px;
    }

} /* 769px pc */ 

/* ====================
top footer
==================== */
.top__footer {
    padding: 40px 2% 50px;
    background-color: #223148;
    border-bottom: 3px solid #FFF;
}


.footer__tittle {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 2.5rem;
    font-weight: 700;
}

.footer__menu {
    margin-top: 25px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__item {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.5rem;
    width: 140px;
}

/* top footer pc */
@media screen and (min-width: 769px) {
    .top__footer {
        padding: 60px 0;
    }

    .footer__tittle {
        font-size: 3rem;
    }

    .footer__menu {
        gap: 30px;
        justify-content: center;
    }

    .footer__item {
        font-size: 1.6rem;
        width: auto;
    }

} /* 769px pc */

/* ====================
bottom footer
==================== */

.bottom__footer {
    background-color: #223148;
    padding: 30px 2.4%;
}

.company__logo {
    width: 30px;
    margin-right: 10px;
}

.company__name {
    color: #FFF;
    font-family: Roboto;
    font-size: 2rem;
    display: flex;
    align-items: center;
}

.mail {
    width: 20px;
    margin: 0 10px;
}

.company__mail {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.6rem;
    margin-top: 15px;
}

.tel {
    width: 20px;
    margin: 0 10px;
}

.company__tel {
    color: #FFF;
    font-family: Roboto;
    font-size: 2rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

.company__time {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.6rem;
    padding: 5px;
    border: 1px solid #FFF;
    display: inline-block;
    margin-top: 5px;
    margin-left: 40px;
}

.footer__btn {
    display: flex;
    margin-top: 30px;
    justify-content: center;
    gap: 20px;
}

.contact__btn {
    color: #2F486B;
    font-family: Roboto;
    font-size: 1.5rem;
    padding: 16px 30px;
    background-color: #FFF;
}

.reservation__btn {
    color: #FFF;
    font-family: Roboto;
    font-size: 1.5rem;
    padding: 16px 30px;
    background-color: #982228;
}

.footer__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.instagram {
    width: 30px;
}

.line {
    width: 130px;
}

.sugitagroup {
    width: 125px;
}

.copy {
    color: #FFF;
    text-align: center;
    font-family: Roboto;
    font-size: 1.2rem;
    margin-top: 50px;
}

@media screen and (min-width: 400px) {
    .footer__company {
        width: fit-content;
        margin-inline: auto;
    }
}

/* bottom footer pc */
@media screen and (min-width: 1000px) {
    .bottom__footer {
        padding: 30px 9% 20px;
    }

    .footer__container {
        max-width: 1150px;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
        padding: 0 20px;
        align-items: center;
    }

    .footer__company {
        margin: 0;
    }

    .company__logo {
        width: 40px;
        margin-right: 10px;
    }

    .company__name {
        font-size: 2.4rem;
    }

    .mail {
        width: 25px;
        margin-right: 10px;
    }

    .company__mail {
        font-size: 2rem;
    }

    .tel {
        width: 25px;
        margin-right: 10px;
    }

    .tel__box {
        max-width: 700px;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-top: 15px;
    }

    .company__tel {
        font-size: 3.2rem;
        margin-top: 0;
    }

    .footer__content {
        margin-left: 10px;
    }

    .company__time {
        font-size: 2rem;
        margin-left: 10px;
    }

    .footer__btn {
        gap: 30px;
    }

    .contact__btn {
        font-size: 1.6rem;
        width: 180px;
        height: 60px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s;
    }

    .contact__btn:hover {
        opacity: 0.8;
    }

    .reservation__btn {
        font-size: 1.6rem;
        width: 180px;
        height: 60px;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all .3s;
    }

    .reservation__btn:hover {
        opacity: 0.8;
    }

    .footer__icon {
        gap: 18.5px;
    }

    .instagram {
        width: 48px;
    }

    .line {
        width: 145px;
    }

    .sugitagroup {
        width: 200px;
    }

    .copy {
        font-size: 1.5rem;
    }

} /* 769px pc */

/* ====================
topic
==================== */
.topic {
    color: #223148;
    text-align: center;
    font-family: Roboto;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 50px;
}

.topic__jp {
    color: #223148;
    text-align: center;
    font-family: Roboto;
    font-size: 1.5rem;
    margin-top: 5px;
}

.topic__jp::after {
    content: '';
    display: block;
    width: 15px;
    height: 2px;
    background-color: #223148;
    margin: 40px auto 0;
}

/* topic pc */
@media screen and (min-width: 769px) {
    .topic {
        font-size: 4.8rem;
        margin-top: 70px;
    }

    .topic__jp {
        font-size: 2.2rem;
    }

} /* 769px pc */

/* ====================
details tittle
==================== */
.plan__details__tittle {
    color: #223148;
    text-align: center;
    font-family: Roboto;
    font-size: 3rem;
    font-weight: 700;
    margin-top: 50px;
}

/* details tittle pc */
@media screen and (min-width: 769px) {
    .plan__details__tittle {
        font-size: 4rem;
        margin-top: 70px;
    }
} /* 769px pc */

/* ====================
plan__reservation__btn
==================== */
.plan__reservation__btn {
    display: block;
    color: #FFF;
    font-family: Roboto;
    font-size: 1.5rem;
    line-height: 30px;
    padding: 15px 25px;
    background: #982228;
    border-radius: 10px;
    position: relative;
    width: 93vw;
    max-width: 400px;
    margin: 40px auto 50px;
    text-align: left;
}

.plan__reservation__btn::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 26px;
    width: 30px;
    height: 30px;
    margin: auto;
    border-radius: 20px;
    background-color: #FFF;
}

.plan__reservation__btn::after {
    content: '→';
    position: absolute;
    right: 31px;
    top: 16px;
    font-family: Roboto;
    font-size: 2rem;
    color: #982228;
}


/* plan reservation btn pc */
@media screen and (min-width: 769px) {
    .plan__reservation__btn {
        font-size: 2.2rem;
        padding: 26px 30px;
        position: relative;
        max-width: 500px;
        margin: 70px auto 50px;
    }
    
    .plan__reservation__btn::before {
        content: '';
        position: absolute;
        right: 34px;
        width: 40px;
        height: 40px;
        margin: auto;
    }
    
    .plan__reservation__btn::after {
        content: '→';
        position: absolute;
        right: 42px;
        top: 27px;
        font-family: Roboto;
        font-size: 2.5rem;
    }
} /* 769px pc */