@charset "utf-8";

/* ==================================================================
common
===================================================================== */
:root {
    --primary-green: #4F8F7A;
    --primary-greenR: #D8EDE2;
    --primary-greenL: #06C755;
    --primary-black: #333333;
    --primary-beige: #FFFCF5;
    --primary-mocha: #EEEADD;
    --primary-lightGray: #F8F6F1;
    --primary-white: #FFFFFF;
    --contentwidth: 91.4%;
    --content-pading: 4.2%;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans Jp',
        'Zen Kaku Gothic New',
        'M PLUS 1p',
        system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-style: normal;
    font-size: 1.6rem;
    color: var(--primary-black, #333333);
    background-color: var(--primary-lightGray, #F8F6F1);
    line-height: 1.5;
    width: 100%;
}

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

section h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.btn-01 {
    text-align: center;
    margin-top: 48px;
}

.btn-clinic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    max-width: 300px;
    letter-spacing: 0.1;
    line-height: 1.5;
    padding: 14px;
    position: relative;
    width: 100%;
    background: var(--primary-green);
    color: var(--primary-white);
    font-size: 1.4rem;
    font-weight: 700;
    transition: 0.4s;
    text-decoration: none;

}

.btn-clinic::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 8px;
    background-image: url(../images/arow.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-clinic:hover {
    opacity: 0.5;
}

.footer-access {
    position: relative;
    width: 100%;
    height: 400px;
    padding-top: 56.25%;
    margin-top: 35px;
}

.footer-access iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    top: 0;
    left: 0;
}

/*common pc*/
@media screen and (min-width: 769px) {   
section h2 {
     font-size: 3.2rem;
 }

.btn-01 {
    margin-top: 0;
}

.btn-clinic {
    max-width: 320px;
    padding: 10px 16px 10px 16px;
    font-size: 1.6rem;
}

.btn-clinic::after {
    right: 16px;
}

.footer-access {
    height: 600px;
}
}/* pc769px */

/* ==================================================================
header
===================================================================== */
.header {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-topic,
.nav-topic {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
}

.header-topic span,
.nav-topic span {
    font-size: 1.4rem;
}

.hamburger {
    width: 44px;
    height: 44px;
    border: none;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}


.hamburger span {
    position: block;
    left: 50%;
    width: 18px;
    height: 2px;
    background-color: var(--primary-black);
    border-radius: 1px;
    transform: rotateX(-50%);
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(1) {
    top: 21px;
    transform: translate(-50% -50%);
}

.hamburger span:nth-child(1) {
    bottom: 28px;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* .header pc */

@media screen and (min-width: 1024px) {
    .header {
        margin: 0 auto;
        padding: 24px 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        width: 100%;
        height: 130px;
        background: rgba(255, 255, 255, 0.9);
    }

    .main {
        padding-top: 130px;
    }

    .header-topic {
        font-size: 3.2rem;
    }

    .header-topic span {
        font-size: 1.6rem;
    }

    .hamburger {
        display: none;
    }
}/* pc 1024px */

/* .nav初期表示 */
.nav {
    background: var(--primary-green);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    display: flex;
    flex-direction: column;
    transform: translate(-100%);
    transition: transform 0.4s ease;
}

.nav.is-open {
    transform: translate(0);
}

.nav-header {
    padding: 24px 16px 16px 16px;
}

.nav-topic {
    color: var(--primary-white);
}

.nav-list {
    list-style: none;
    padding: 0 16px;
    margin-top: 67px;
}

.nav-item {
    font-weight: 700;
    color: var(--primary-white);
    border-bottom: 1px solid var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    line-height: 1;
}

.pc-only {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    border-radius: 999px;
    background: var(--primary-greenL);
    padding: 16px;
    display: inline-flex;
    align-items: center;
    transition: 0.4s;
    width: 240px;
    display: none;
}

.pc-only::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/line-icon.svg);
    background-size: contain;
    background-position: center;
    margin-right: 10px;
}

.pc-only:hover {
    opacity: 0.5;
}

.menu-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 42px;
    margin-top: auto;
}

.menu-btns .btn-line {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: var(--primary-greenL);
    color: var(--primary-white);
    font-size: 1.8rem;
    text-decoration: none;
    /* hover */
    transition: background-color 0.3s ease,transform 0.3s ease;;
}

.btn-02:hover {
    background-color: #7de3b3;
    transform: scale(1.1);
}

.pc-only:hover {
    background-color: #7de3b3;
    transform: scale(1.1); 
}

.menu-btns.btn-tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: var(--primary-white);
    font-size: 1.8rem;
    text-decoration: none;
    /* hover */
    transition: background-color 0.3s ease,transform 0.3s ease;  
}

.tel__number {
    white-space: nowrap;
}

.btn-03:hover {
    background-color: #7de3b3;
    transform: scale(1.1);
}


.menu-btns .btn-line::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/line-icon.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 8px;
}

.menu-btns.btn-tel::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/phone01.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 3px;
}

@media screen and (min-width: 769px) {
    .btn-03:hover {
        background: var(--primary-green);
        transform: none;
    }

    
        a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
    }
}/* pc 769px */

/* .nav pc */
@media screen and (min-width: 1024px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        display: flex;
        align-items: center;
        flex-direction: row;
    }

    .nav-list {
        display: flex;
        margin-top: 0;
        padding: 0;
        flex-wrap: nowrap;
        white-space: nowrap;
    }

    .nav-item:first-child {
        display: none;
    }

    .nav-item {
        color: var(--primary-black);
        border-bottom: none;
        margin-right: 19px;
        padding: 0;
    }

    .nav-header {
        display: none;
    }

    .menu-btns {
        display: none;
    }

    .pc-only {
        display: inline-flex;    
    }
}/*pc 1024px */

/* .calender  */
.calender {
    padding: 16px 4.2%;
    background-color: var(--primary-mocha);
    border-radius: 10px;
    font-size: 1.4rem;
}

.calender-hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10px;
    text-align: left;
}

.calender-hours-table th {
    padding: 13px 20px 0 0;
    border-bottom: 1px solid var(--primary-green);
    text-align: left;
    white-space: norap;
}

.reception-time {
    white-space: nowrap;
}

.calender-hours-table td {
    position: relative;
    padding: 13px 8px;
    border-bottom: 1px solid var(--primary-green);
    text-align: center;
    vertical-align: middle;
}

.calender-hours-table td span {
    position: relative;
}

.calender-hours-table .circle::before {
    content: "●";
    color: var(--primary-green);
}

.calender-note span {
    position: relative;
}

.triangle::before {
    content: "▲";
    color: var(--primary-green);
    display: inline-block;
}

.calender-note .triangle::before {
    display: inline-block;
    margin-right: 8px;
    left: 0;
    transform: translate(10%);
}

.calender-hours-table td span.dash {
    display: block;
    background-color: var(--primary-green);
    width: 1em;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.calender-note .dash {
    padding-left: 24px;
}

.calender-note .dash::before {
    transform: translate(10%);
}

.calender-overlay {
    position: absolute;
    right: 1px;
    bottom: -54px;
    z-index: 3;
}

.calender-note li:last-child {
    display: flex;
    justify-content: space-between;
}

.calender-tel:hover {
    text-decoration: underline;
    text-decoration-color: var(--primary-green);
}

@media screen and (min-width: 769px) {
    .calender-tel:hover {
        text-decoration: none;
    }
}

/* footer */
.info-title {
    background-color: var(--primary-green);
    padding: 12px 66px 12px;
    text-align: center;   
}

.info-title h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-white);
    line-height: 1.3;

}

.info-title p {
    font-size: 1.8rem;
    color: var(--primary-white);
    text-align: center;
    margin-top: 12px;
}

.contact-action {
    margin: 32px 5% 0 5%;
    text-align: center;
}
.contact-action-btn {
    text-align: center;
    margin-top: 32px;
}

.contact-lead .big {
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-lead {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 24px;
    white-space: nowrap;
}

.btn-02 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    max-width: 320px;
    letter-spacing: 0.1;
    line-height: 1.5;
    padding: 10px 18px;
    position: relative;
    width: 100%;
    background: var(--primary-greenL);
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.4s;
    text-decoration: none;
}

.btn-02::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/line-icon.svg);
    margin-right: 12px;
}

.btn-03 {
    display: inline-block;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    max-width: 320px;
    letter-spacing: 0.1;
    line-height: 1.5;
    padding: 10px 18px;
    position: relative;
    width: 100%;
    background: var(--primary-green);
    color: var(--primary-white);
    font-size: 1.6rem;
    font-weight: 700;
    transition: 0.4s;
    text-decoration: none;
}

.btn-03::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../images/phone02.svg);
    margin-right: 24px;
}

.info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 4.2%;
    margin-top: 50px;
    max-width: 600px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: var(--primary-mocha);
    border-radius: 10px; 
    margin-top: 50px;  
}

.info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 24px;
    text-align: center;
}

.info-icon {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}



.ticket-list {
    margin-top: 12px;
    list-style: disc;
    list-style-position: inside;
}

.price-list {
    padding: 42px 4.2% 42px 4.2%;
    justify-content: center;
    border-radius: 10px;
     
}

.price-item {
    display: flex;
    font-size: 2rem;
    gap: 12px;
}

.price-list p {
    font-size: 1.4rem;
    margin-top: 12px;
}

.ticket-item {
    font-size: 1.4rem;
    margin-top: 12px;
    padding-left: 20px;
}


.info-calender {
    margin-top: 16px;
}

.calender-footer {
    margin-top: 16px;
}

.footer-address {
    background-color: var(--primary-white); 
}

.footer-address-exterior,
.footer-address__main {
    flex: 1;
}

.footer-address__main {
    padding: 1em;
    text-align: center;
}

.footer-address__main-inner {
    text-align: center;
}

.footer-address__name {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1;
}

.footer-address__name-en {
    font-size: 2rem;
    line-height: 1;
}

.footer-address__list {
    margin-top: 24px;    
}

.parkinng {
    gap: 12px;
    margin-top: 12px;
}

.footer-address__tel {
    height: auto;
    margin-top: 12px;
    text-align: center;
}

.footer-address__list {
    margin-bottom: 12px;
}

.footer-copyright {
    padding: 21px 0;
    text-align: center;
    font-size: 1.4rem;
    background-color: var(--primary-green);
    color: var(--primary-white);
}

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


.info-title {
    padding: 56px 0 44px;     
}
.info-title h2 {
    font-size: 3.2rem;
}

.info-title p {
    font-size: 2rem;
    margin-top: 24px;
}
.contact-action {
   display: flex;
   justify-content: space-around;
   align-items: center;
}

.btn-02, .btn-03 {
    width: 310px;
}

.info {
    margin: 0 auto;
    padding: 40px 5.5% 0;
    grid-template-columns: repeat(2, 1fr);
    max-width: none;
}

.info-item {
    margin-top: 0;
}

.info-calender {
    margin-top: 0;
}

.price-item {
    display: flex;
    font-size: 2.4rem;
    gap: 12px;
}

.price-list {
 padding: 34px 4.2% 34px 4.2%;    
}

.price-list p {
    font-size: 1.6rem;
    margin-top: 12px;
}

.ticket-item {
    font-size: 1.6rem;
    margin-top: 20px;
}

.footer-address {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    
}


/* footer-copyright */
.footer-copyright {
    padding: 10px 0;
}
}/* pc 769px */