@charset "utf-8";

@font-face {
    font-family: 'Makinas';
    src: url('../fonts/Makinas-4-Flat.woff2') format('woff2'),
        url('../fonts/Makinas-4-Flat.woff') format('woff');
}

.wrap {
    width: 600px;
    height: auto;
    margin: 0 auto;
    overflow-x: hidden;
    filter: drop-shadow(1px 1px 10px #000);
}

.red-text {
    color: red;
}

body {
    font-family: "Noto Serif JP", serif;
    font-size: 0.98rem;
    color: #333;
}

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

button {
    padding: 1.2rem 1rem;
    border: 1px solid black;
}

button:hover {
    opacity: 60%;
}

.button-a {
    color: black;
}

.button-b {
    background-color: #000;
    color: #fafafa;
}

.button-c {
    color: black;
}

.back-Ground {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.back-Ground img {
    height: 100vh;
    object-fit: cover;
}

@media (max-width: 600px) {
    .wrap {
        width: 100%;
    }
}


/* header Section  */
.header-box {
    height: 60px;
    width: 600px;
    background-color: #f4f4f4;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
}

.header-box h1 {
    font-size: 1.7rem;
    letter-spacing: -2px;
    color: #9C8256;
}

@media (max-width: 600px) {
    .header-box {
        width: 100%;
    }
}

.hamburger {
    width: 38px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 30px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.hamburger.active {
    background-color: rgba(255, 255, 255, 0.9);
}

.hamburger span {
    display: block;
    height: 4px;
    width: 30px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 2px 0;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    background-color: #333;
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    background-color: #333;
}

/* オーバーレイ背景 */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* メニュー本体 */
.nav-menu {
    position: fixed;
    top: 100px;
    right: -100%;
    background-color: #f4f4f4;
    border-radius: 20px 0 0 20px;
    padding: 3rem 2rem;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
}

.nav-menu.active {
    opacity: 1;
    visibility: visible;
    right: 0;
}

.nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu li {
    margin: 1.5rem 0;
    text-align: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.nav-menu a:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* 将来のメニュー項目のためのスタイル */
.nav-menu li.new-item {
    position: relative;
}

.nav-menu li.new-item::after {
    content: 'NEW';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background-color: #ff4444;
    color: white;
    font-size: 0.6rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-weight: bold;
}


/* index top Image section  */
.top-image {
    position: relative;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 350px;
    width: 600px;
    filter: brightness(2) blur(3px);
}

.top-image img {
    height: 350px;
    width: 600px;
    object-fit: cover;
}

.top-image-box> :nth-child(1) {
    position: absolute;
    top: 135px;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    width: 200px;
    height: auto;
    filter: drop-shadow(4px 4px 8px black);
}

/* index TOPIX section  */
.topics-sec {
    background-color: #f4f4f4;
    padding: 4rem 0;
}

.topics-sec h2 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid black;
}

.first-letter {
    color: #9C8256;
}

.topics-sec> :nth-child(2)>P {
    font-size: 1rem;
    text-align: center;
}

.topics-sec> :nth-child(2) {
    margin-bottom: 2rem;
    padding-left: 5%;
    padding-right: 5%;
}

.topics-sec> :nth-child(3) {
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.topics-sec> :nth-child(3)>div {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.before-item::before {
    content: "◇ ";
    font-size: 0.7rem;
}

.before-item {
    padding: 0.5rem;
    background-color: rgb(229, 229, 229);
    border-radius: 8px;
}

.topics-sec> :nth-child(1) {
    display: flex;
    gap: 10%;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: flex-end;
}

.topics-sec> :nth-child(1)> :nth-child(1) {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.topics-sec> :nth-child(1)> :nth-child(1)>p {
    padding-bottom: 0.5rem;
}

.topics-item :nth-child(2) {
    font-size: 0.8rem;
}

/* index therapist section */
.therapist-sec {
    margin-top: 10px;
    height: auto;
    padding: 2rem 5% 0 5%;
    color: #f4f4f4;
}

.therapist-sec h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f4f4f487;
}

.therapist-box {
    margin-top: 3rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 5%;
}

.therapist-item {
    height: auto;
    width: fit-content;
    text-align: center;
    transition: 0.5s;
}

.therapist-item:hover {
    scale: 1.1;
    cursor: pointer;
}

.therapist-item>p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: #00faff;
}

.therapist-item-des {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.therapist-image {
    width: 150px;
    height: auto;
    /* filter: grayscale(80%); */
}

/* Index last section  */
.last-sec {
    background-color: #f4f4f4;
    padding-bottom: 4rem;
    padding-top: 1rem;
}

.last-sec> :nth-child(3) {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10%;
}

.last-sec> :nth-child(2) {
    margin-top: 2rem;
    text-align: center;
    padding-bottom: 0.5rem;
}

/* Index footer Section  */
footer {
    height: 6rem;
    color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    font-size: 0.8rem;
}

/* Reserved & Price Page  */
.top-Heading {
    height: 4rem;
    color: #f4f4f4;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-image: url("../images/heading-background.webp");
    width: 100%;
    height: 110px;
}

.top-Heading h2 {
    font-size: 1.5rem;
    text-align: center;
}

.top-Heading p {
    font-size: 0.8rem;
    line-height: 1.8;
    text-align: center;
}

/* Reserved page  */
.text-box {
    background-color: #f4f4f4;
    line-height: 1.8;
    width: 100%;
    height: auto;
    padding: 2rem 5%;
}

.text-box h3 {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 0.5rem;
}

.reserved-button-box {
    width: 100%;
    height: auto;
    display: flex;
    gap: 5%;
    justify-content: center;
    background-color: #f4f4f4;
    padding-top: 1rem;
    padding-bottom: 3rem;
    padding-left: 5%;
    padding-right: 5%;
    z-index: -1;
}

@media (max-width:460px) {
    .reserved-button-box {
        font-size: 0.8rem;
    }
}

.reserved-format {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #f4f4f4;
}

.reserved-format h4 {
    text-align: center;
    font-size: 1.3rem;
    padding: 1rem;
    border-radius: 10px 10px 0 0;
    background-color: #00c300;
    width: fit-content;
    height: auto;
    color: #f4f4f4;
    margin: 0 auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1rem
}

.reserved-format p {
    line-height: 2;
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-left: 5%;
    margin-right: 5%;
    padding-left: 2%;
    padding-right: 2%;
    border: 3px solid #00c300;
    border-radius: 10px;
    background-color: #fff;
}

.reserved-format button {
    display: block;
    margin: 2rem auto;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
}

.question-box {
    background-color: #f4f4f4;
    padding-bottom: 3rem;
}

.question-box h5 {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    padding: 1rem;
    border-radius: 10px;
    background-color: #000;
    color: #f4f4f4;
    width: fit-content;
    height: auto;
    display: block;
    margin: 0 auto;
}

.triangle {
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 15px solid black;
    margin: 0 auto;
}

/* reserved Page Q&A Section  */
.accordionItem dt,
.accordionItem dd {
    padding-right: 30px;
}

.accordionItem {
    line-height: 1.8;
    border: 2px solid black;
    border-radius: 10px;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 1.5rem;
}

dl div {
    margin-bottom: 1rem;
}

dt,
dd {
    padding: 1rem;
}

dt {
    position: relative;
}

dt::before {
    content: "Q. ";
    font-family: 'natom-Pro', sans-serif;
}

dt::after {
    content: "+";
    position: absolute;
    top: 12px;
    right: 16px;
    transition: transform .3s;
}

dd::before {
    content: "A. ";
    font-family: 'natom-Pro', sans-serif;
}

dt {
    cursor: pointer;
    user-select: none;
}

dd {
    display: none;
}

dl div.appear dt::after {
    transform: rotate(45deg);
}

dl div.appear dd {
    display: block;
    animation: .3s fadeIn;
}

@keyframes fadeIn {

    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

.question-box-div {
    letter-spacing: 0.1rem;
}


/* price section  */

.price-box {
    text-align: center;
    height: auto;
    background-color: #f4f4f4;
    line-height: 1.8;
}

.price-box-adjust {
    padding-top: 4rem;
}

.price-box-adjust-h4 {
    text-align: center;
    height: auto;
    background-color: #f4f4f4;
    line-height: 1.8;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    font-size: 1.3rem;
}

.price-box h3 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: -0.5rem;
}

.price-box h4 {
    padding-bottom: 2rem;
    font-size: 1.3rem;
}

/* menu table section */
.menu-table-wrap {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f4f4f4;
    padding-bottom: 3%;
}

.menu-table {
    width: 100%;
    margin: 0 auto;
    border: 1px solid #000;
    border-collapse: collapse;
    background-color: #fff;
}

.menu-table th {
    background-color: #000;
    color: #fff;
    padding: 20px;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    border: none;
}

.menu-table td {
    padding: 25px;
    border: none;
    text-align: left;
}

.menu-table td:first-child {
    border-right: 1px solid #000;
}

.menu-table td:last-child {
    text-align: right;
    font-weight: bold;
}

.menu-table tr:not(:last-child) td {
    border-bottom: 1px solid #ddd;
}

/* menu table section end  */

.attention-text {
    background-color: #f4f4f4;
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 2rem;
    line-height: 1.5;
}

mark {
    color: red;
    background: none;
}

.attention-text-gray {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f4f4f4;
}

.attention-text-gray>div {
    padding: 5% 5%;
    background-color: #00000020;
    line-height: 1.5;
}

.attention-text-gray>div :nth-child(1) {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.attention-text-gray>div :nth-child(2) {
    color: red;
}

.price-box-dis {
    padding-left: 5%;
    padding-right: 5%;
    background-color: #f4f4f4;
    line-height: 1.8;
    font-size: 1rem;
}

.price-button-box {
    width: 100%;
    height: auto;
    display: flex;
    gap: 5%;
    justify-content: center;
    background-color: #f4f4f4;
    padding-top: 40px;
    padding-bottom: 2rem;
    padding-left: 5%;
    padding-right: 5%;
}

@media (max-width:460px) {
    .price-button-box {
        font-size: 0.8rem;
    }
}

.menu-table-wrap-adjust {
    padding-top: 2rem;
}

.price-box-dis-adjust {
    padding-bottom: 4rem;
}

/* therapist page section  */
.therapist-page-heading-text {
    background-color: #e4e4e4;
    padding: 1.5rem 5% 1.5rem 5%;
    font-weight: 700;
}

.therapist-page-box {
    background-color: #f4f4f4;
    padding: 1rem 5% 0;
}

.therapist-page-box>div {
    display: flex;
    gap: 1rem;
    line-height: 1.8;
    align-items: first baseline;
}

.therapist-page-box> :nth-child(1)> :nth-child(2) {
    font-size: 1.2rem;
    color: rgb(248, 161, 222);
}

.swiper-wrap {
    height: 450px;
    width: 100%;
    background-color: #f4f4f4;
    padding-top: 1rem;
}

.swiper {
    width: 90%;
    height: 400px;
    margin: 40px 0;
    margin: 0 auto 4rem;
}

.swiper-slide {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.slide-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.therapist-page-heading {
    height: 150px;
    background: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/shower-heading.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cast-heading-text {
    font-size: 1.5rem;
}

.therapist-page-heading-image {
    width: 120px;
    height: auto;
    margin: 0 auto;
    display: flex;
    filter: drop-shadow(1px 1px 5px black);
}

.therapist-page-heading-text-adjust {
    background-color: #f4f4f4;
}

.therapist-page-heading-text-adjust h2 {
    background-image: url("../images/heading-cast-h2.webp");
    color: #fff;
    padding: 1.5em;
    padding: 1rem 3% 1rem 3%;
    font-weight: 700;
    font-size: 0.8rem;
    margin: 0 5%;
}

.therapist-page-heading-text-adjust> :nth-child(2) {
    padding: 1.5rem 5% 1.5rem 5%;
    line-height: 1.8;
    background-color: #f4f4f4;
    margin: 0 5%;
}




/* therapist QA Table section */
.qa-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: #f4f4f4;
    border-radius: 8px;
    overflow: hidden;
}

.qa-table tbody {
    width: 100%;
    display: table-row-group;
}

.qa-table tr {
    width: 100%;
    display: table-row;
}

.qa-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.qa-table tr:nth-child(odd) {
    background-color: white;
}

.qa-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.qa-table tr:last-child td {
    border-bottom: none;
}

.question {
    width: 40%;
    color: #000;
    font-weight: 500;
    border-right: 1px solid #e0e0e0;
}

.answer {
    width: 60%;
    color: #000;
    font-weight: 500;
}

.q-label {
    font-weight: bold;
    margin-right: 5px;
    color: #1976d2;
}

.a-label {
    font-weight: bold;
    margin-right: 5px;
    color: #d32f2f;
}

.qa-table tr:hover {
    background-color: #f0f7ff;
}

@media screen and (max-width: 500px) {
    .qa-table {
        display: block;
        border: none;
        width: 100%;
        max-width: 100%;
    }

    .qa-table tbody {
        display: block;
        width: 100%;
    }

    .qa-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .qa-table td {
        display: block;
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
        border-right: none;
    }

    .qa-table tr td:last-child {
        border-bottom: none;
    }

    .question {
        background-color: #f8f9fa;
        border-bottom: 1px solid #e0e0e0;
    }

    .answer {
        background-color: white;
    }

    .qa-table tr:nth-child(even) {
        background-color: transparent;
    }

    .qa-table tr:nth-child(odd) {
        background-color: transparent;
    }
}


/* エントランスページSection */
.entrance-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.entrance-page.hidden {
    opacity: 0;
    visibility: hidden;
}

.entrance-logo {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #9C8256;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    font-weight: bold;
    color: #9C8256;
}

.entrance-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.entrance-button-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.entrance-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.entrance-enter-btn {
    background: #9C8256;
    color: #FFFFFF;
    box-shadow: 0 3px 15px rgba(156, 130, 86, 0.3);
    border: 2px solid #9C8256;
}

.entrance-enter-btn:hover {
    background: #8B7049;
    border-color: #8B7049;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(156, 130, 86, 0.4);
    color: #FFFFFF;
    text-decoration: none;
}

.entrance-exit-btn {
    background: rgba(255, 255, 255, 0.8);
    color: #333333;
    border: 2px solid #333333;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.entrance-exit-btn:hover {
    background: #333333;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.main-site-content {
    transition: opacity 0.8s ease-in;
}

.main-site-content.visible {
    opacity: 1;
}

@media (max-width: 600px) {
    .entrance-page {
        width: 100vw;
    }

    .entrance-logo {
        width: 150px;
        height: 150px;
        font-size: 20px;
        margin-bottom: 30px;
    }

    .entrance-button-container {
        flex-direction: column;
        gap: 20px;
    }

    .entrance-btn {
        min-width: 200px;
        font-size: 16px;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .entrance-logo {
        width: 120px;
        height: 120px;
        font-size: 18px;
        margin-bottom: 40px;
    }

    .entrance-btn {
        min-width: 180px;
        font-size: 16px;
    }
}


/* service page  */
.service-wrap {
    background-color: #f4f4f4;
    text-align: center;
    padding-left: 5%;
    padding-right: 5%;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
    color: #9C8256;
}

.service-wrap-h3-dammy{
    padding-top: 3rem;
    padding-bottom: 3rem;
    font-weight: 400;
    font-size: 1.2rem;
}

.service-box h4{
    font-weight: 700;
    padding: 1rem 1rem;
    background-color: #9C8256;
    width: fit-content;
    display: inline-block;
    border-radius: 10px;
    color: #f4f4f4;
}

.service-box-heading{
    padding-top: 1rem;
    padding-bottom: 2rem;
    font-weight: 700;
}

.service-material{
    padding-bottom: 0.5rem;
    padding-top: 2rem;
}

.service-box-bottom-space{
    padding-bottom: 3rem;
}

.service-last-section{
    padding-top: 3rem;
    padding-bottom: 3rem;
}