@charset "utf-8";

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #9D896C;
    background-color: #FFFDF6;

}

h1 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

p {
    font-size: 16px;
}

h6 {
    font-size: 12px;
}


.entext {
    font-size: 16px;
    color: #84B9CB;
    padding-bottom: 10px;
}

.jptext {
    font-size: 32px;
}

.calling {
    color: #84B9CB;
}

.custom-button {
    border-radius: 50px;
    display: block;
    width: 200px;
    padding: 15px;
    box-sizing: border-box;
    background: #84B9CB;
    color: #FFFDF6;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
    transition: transform 0.4s ease;
}

.custom-button:hover {

    transform: scale(1.03);
}

.feature-num {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 77px;
    height: 77px;
    background: #84B9CB;
    color: #FFFDF6;
    text-decoration: none;
    text-align: center;
    margin: 10px 0;
    font-size: 16px;

}

.cate {
    border-radius: 50px;
    display: block;
    width: 100px;
    padding: 5px;
    box-sizing: border-box;
    background: #84B9CB;
    color: #FFFDF6;
    text-decoration: none;
    text-align: center;
    margin: 5px 0;
    font-size: 12px;
}

.date {
    color: #84B9CB;
}

.calling a {
    font-size: 32px;
    font-weight: 400;
}


/* ヘッダー */




.header {
    width: 100%;
    position: fixed;
    z-index: 1000;
    background-color: #FFFDF6;
}


.header-inner {
    /* ナビゲーション全体の設定 */
    max-width: 1440px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.header-logo {
    z-index: 9999;
    /* border: 2px solid red; */
    display: block;
    max-width: 300px;
    min-width: 50px;
}

.site-menu ul {
    display: flex;
}

.site-menu ul li {
    margin-left: 30px;
    font-size: 16px;
    line-height: 70px;
}


.header-phone {
    max-width: 30px;
}

.header p {
    /* border: 2px solid red; */
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.nav-item-calling {
    /* border: 2px solid red; */
    display: flex;
    color: #84B9CB;
    font-size: 30px;
}

.nav-item-calling a {
    font-size: 30px;
}

.header p {
    position: absolute;
    top: 5px;
    right: 40px;
    margin: 0;
    font-size: 14px;
}





/* フッター全体 */
.footer {
    width: 100%;
    padding: 100px 20px;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}


.footer-left {
    flex: 1;
    max-width: 450px;
}

#logo {
    margin: 0 0 20px 0;
}

.iai-ac-logo {
    max-height: 80px;
    display: block;
}

.footer-info {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.footer-info p {
    margin: 4px 0;
}


.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
    column-gap: 20px;
}

.footer-nav a {

    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.footer-nav a:hover {
    opacity: 0.7;
}


.footer-nav a::before {
    content: "▶︎";
    font-size: 12px;
    margin-right: 6px;

}

/* --- 右側セクション --- */
.footer-right {
    flex: 1;
    max-width: 550px;
}

.schedule-calendar {
    width: 100%;
    border-collapse: collapse;
    background-color: #e3eff2;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
}

.schedule-calendar th,
.schedule-calendar td {
    text-align: center;
    padding: 14px 10px;
    font-size: 13px;
    vertical-align: middle;
}

.schedule-calendar thead tr {
    border-bottom: 1px solid #c9dce0;
}

.schedule-calendar tbody tr:first-child {
    border-bottom: 1px solid #c9dce0;
}


.schedule-calendar th:first-child {
    padding-left: 20px;
    text-align: left;
    width: 110px;
}

.schedule-calendar .icon-maru {
    color: #7ab2c4;
    font-size: 15px;
}


.schedule-calendar .icon-batu {
    color: #71878c;
    font-size: 13px;
}

/* 注意書き */
.footer-notes {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.footer-notes p {
    margin: 4px 0;
}

/* お支払い方法 */
.payment-info {
    font-size: 12px;
    line-height: 1.7;
}

.payment-info p {
    margin: 0;
}

.payment-title {
    font-size: 13px;
    margin-bottom: 6px !important;
}





/* その場で */
.fadeIn {
    animation-name: fadeInAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* 下から */

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 上から */

.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 左から */

.fadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 右から */

.fadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}