@charset "utf-8";

/* ===================================
common
====================================== */
:root {
    --primary-white: #fdfdfd;
    --primary-black: #444;
    --primary-lightGray: #a3a3a3;
    --line-lightGray: #e4e4e4;
    --primary-beige: rgba(220, 214, 210, 0.86);
    --trial-beige: #DCD6D2;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Noto Serif JP",
        "Cormorant Garamond",
        sans-serif;
    background-color: var(--primary-white);
    color: var(--primary-black);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

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

.container {
    max-width: 768px;
}

@media screen and (min-width: 769px) {
    .container {
        max-width: 390px;
        margin: 0 auto;
        
    }
}

/* ===================================
header
====================================== */

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

.logo {
    width: 93px;
    margin: 21px 0 0 8%;
    position: relative;
}

.catchphrase {
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 4.2rem;
    font-weight: 700;
    line-height: 100%;
    margin-top: 25px;
}

.subCatchphrase {
    font-size: 2rem;
    display: block;
    margin-top: 10px;
    font-weight: 400;
}

.header__btn {
    position: relative;
    right: 22px;
    top: 38px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: none;
    width: 30px;
    height: 20px;
    background-color: transparent;
}

.header__btn .sp-menu {
    display: block;
    position: relative;
    top: 0;
    margin: 0 auto;
    width: 30px;
    height: 1px;
    background-color: var(--primary-black);
    transition: .3s;
}

.header__btn .sp-menu::before,
.header__btn .sp-menu::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    transition: all .3s;
    background-color: inherit;
}

.header__btn .sp-menu::before {
    top: -10px;
}

.header__btn .sp-menu::after {
    top: 10px;
}

/* nav初期表示 */
.nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
    background-color: var(--primary-white);
    padding: 0;
}

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

.line-nav {
    display: block;
    width: 326px;
    height: 1px;
    background-color: var(--primary-lightGray);
    margin: 20px auto 0;
}

.nav__list {
    text-align: center;
}

.nav-contents {
    font-family: "Cormorant Garamond";
    font-size: 1.6rem;
    margin-top: 41px;
    text-align: center;
}

.nav__number {
    color: var(--primary-lightGray);
    font-family: "Cormorant Garamond";
    font-size: 1.4rem;
    margin-top: 20px;
}

.nav__number:first-of-type {
    margin-top: 31px;
}

.nav__number::after {
    content: '';
    display: block;
    width: 14px;
    height: 1px;
    background-color: var(--primary-lightGray);
    margin: 0 auto;
}

.nav__item {
    font-family: "Cormorant Garamond";
    font-size: 1.8rem;
    margin-top: 8px;
}

.sns {
    display: flex;
    margin-top: 25px;
    justify-content: center;
    gap: 59px;
}

.snsImg {
    display: block;
    width: 26px;
    height: 26px;
}

/* .header__btn.active表示 */

.header__btn.active {
    z-index: 200;
}

.header__btn.active .sp-menu {
    width: 30px;
    background-color: inherit;
}

.header__btn.active .sp-menu::before,
.header__btn.active .sp-menu::after {
    top: 0;
    background-color: var(--primary-black);
}

.header__btn.active .sp-menu::before {
    transform: rotate(45deg);
}

.header__btn.active .sp-menu::after {
    transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {
    .headerSp {
        display: none;
    }
}

/* ===================================
plan
====================================== */

.category {
    position: relative;
    margin-top: 34px;
}


.categoryTitle {
    background-color: rgba(220, 214, 210, 0.86);
    text-align: center;
    padding: 0 3% 0 5%;
    position: absolute;
    bottom: 23px;
    left: 5%;
    line-height: 1;
}

.categoryNum {
    font-family: "Cormorant Garamond";
    font-size: 1.4rem;
    margin-right: 12px;
}

.categoryEn {
    font-family: "Cormorant Garamond";
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 6px;
}

.categoryJa {
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
}

/* ===================================
shokai
====================================== */
.taiken {
    display: flex;
    margin-top: 49px;
    padding: 0 12%;
    justify-content: space-between;
}


.t-title,
.shousai {
    font-family: "Noto Serif JP";
    font-size: 1.5rem;
}

/* .t-title {
    font-weight: 700;
} */

.minutes {
    font-family: "Noto Serif JP";
    font-size: 1.3rem;
    line-height: 15px;
    background-color: rgba(220, 214, 210, 0.86);
    border-radius: 13px;
    padding: 2px 6px 2px 8px;
    width: 61px;
}


.plantax {
    font-size: 1.2rem;
    margin-left: 10px;
}

.taikentxt {
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    line-height: 17px;
    margin-top: 8px;
    padding: 0 8%;
}

.trialBtn {
    padding: 0 8%;
}

/* ===================================
premium
====================================== */
.section--premium,
.section--kaisuken,
.other {
    padding: 0 8%;
    margin-top: 60px;
}

.change {
    background-color: rgba(202, 183, 167, 0.50);
    border-radius: 4px;
    padding: 50px;
    text-align: center;
}

.planTitle {
    font-family: "Noto Serif JP";
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}

.planSubtitle {
    font-family: "Noto Serif JP";
    font-size: 1.4rem;
    font-weight: 700;
    margin: 10px 0;
}

.submenu {
    font-size: 1.2rem;
}

.setsumei {
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    margin-top: 20px;
}

.kaisu {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.ticketNum {
    font-family: "Noto Serif JP";
    font-size: 1.3rem;
}

.price {
    margin-top: -25px;
    text-align: right;
}

.priceshousai {
    font-size: 1.2rem;
    line-height: 15px;
    text-align: right;
}

.remarks {
    margin-top: 30px;
    color: #A3A3A3;
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
}

.mark {
    border: 1px solid #A3A3A3;
    border-radius: 50%;
    padding: 0 7px;
    margin-right: 7px;
}

.remarksTxt {
    color: #A3A3A3;
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    line-height: 15px;
    margin-top: 2px;
}

/* ===================================
kaisuken
====================================== */
.repeat {
    margin-top: -40px;
}

.ticket-price {
    margin-top: 15px;
    text-align: right;
}

.halfticket-price {
    margin-top: -26px;
    text-align: right;
}

.minutes--kaisu {
    margin-top: 50px;
}

/* ===================================
other
====================================== */
.o-title {
    margin-top: 22px;
    color: #584B40;
    font-family: "Noto Serif JP";
    font-size: 1.8rem;
    font-weight: 700;
}

.option {
    display: flex;
    margin-top: 6px;
    align-items: center;
    justify-content: space-between;
}

.remarksOption {
    margin-top: 22px;
    color: #A3A3A3;
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
}

.touroku {
    color: #584B40;
    font-family: "Noto Serif JP";
    font-size: 1.8rem;
    font-weight: 700;
}

.stretch {
    display: flex;
    margin-top: 6px;
}

.minutes--stretch {
    margin-top: 5px;
    width: 150px;
}

.tesuryo {
    display: flex;
    justify-content: space-between;
    margin: 40px auto 9px;
}

.tesuryo--toroku {
    margin-top: 15px;
}

.charge {
    font-size: 1.8rem;
    text-align: right;
}

.chargetax {
    font-size: 1.2rem;
}

.nyukai {
    font-size: 1.3rem;
    text-align: center;
    background: linear-gradient(transparent 50%, #ffcc99 50%);
}

.img2 {
    margin-top: 37px;
    padding: 0;
}

/* ===================================
trial
====================================== */
.trialBtn {
    padding: 10px 0;
    display: flex;
    background-color: #DCD6D2;
    justify-content: center;
    margin: 28px auto 0;
    width: 328px;
}

.img-trialbtn {
    width: 155px;
}

.trialBox {
    background-color: #F4F5F2;
    padding: 10px 20px;
    text-align: center;
}

.first {
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
}

.trialPrice {
    font-family: "Noto Serif JP";
    font-size: 2rem;
}

.trialTax,
.trialBook {
    font-size: 1.2rem;
}

/* ===================================
footer
====================================== */
.footer {
    padding: 60px 0 35px;
}
.logo-footer {
    display: block;
    width: 118px;
    margin: 0 auto;
}

.sns--footer {
    margin-top: 15px;
    gap: 20px;
}

.footerTxt,
.copy {
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1.2rem;
    margin-top: 15px;
}

/* ===================================
scroll top
====================================== */
.topBtn {
    display: inline-block;
    padding: 0;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--primary-white);
    font-family: "Cormorant Garamond";
    color: var(--primary-black);
    font-size: 1.2rem;
    box-shadow: 2px 2px 4px 2px rgba(29, 101, 101, 0.2);
    position: fixed;
    bottom: 1.4%;
    right: 1.4%;
}

@media screen and (min-width: 769px) {
    .topBtn {
        display: none;
    }
}

/* ===================================
fadeIn
====================================== */
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

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

