@charset "UTF-8";

/* 共通css
-----------------------------------------------*/

html {
    font-size: 62.5%;
    scroll-behavior: smooth;

    @media (min-width: 769px) and (max-width: 1040px) {
        font-size: calc(10 / 1040 * 100vw);
    }

    @media (max-width: 576px) {
        font-size: calc(10 / 576 * 100vw);
    }
}

body {
    color: #333;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Roboto", "M PLUS Rounded 1c", "Mulish", "Noto Sans JP", serif;
}

img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

a,
span {
    display: inline-block;
}

@media screen and (min-width: 768px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

.c-title {
    position: relative;
    z-index: 1;
}

.c-title span {
    margin-bottom: 20px;
    color: #ffe066;
    font-size: 8rem;
    font-weight: 700;
    font-family: "Mulish", serif;
}

.c-title h3 {
    font-size: 4rem;
    font-weight: 700;
    font-family: "Hiragino Kaku Gothic Pro", serif;
}

.u-sp-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .c-title {
        order: 1;
        margin-right: auto;
    }

    .c-title span {
        margin-bottom: 10px;
    }

    .u-sp-only {
        display: block;
    }
}

/* ヘッダー
-----------------------------------------------*/

.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100px;
    background-color: #a7d3f5;
}

.l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    height: 100%;
    margin-inline: auto;
    padding-inline: 20px;
}

.l-header__logo {
    height: 100%;
}

.l-header__logo a {
    display: flex;
    align-items: center;
    height: 100%;
    transition: opacity 0.3s;
}

.l-header__logo a:hover {
    opacity: 0.7;
}

.l-header__logo img {
    width: 100px;
    height: auto;
}

.l-header__logo span {
    color: #fff;
    font-size: 2.4rem;
    line-height: 1.5;
    font-family: "Shippori Mincho", serif;
    text-align: center;
}

.p-nav-pc {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p-nav-pc__button {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.p-button__contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 220px;
    padding: 5px 10px;
    background-color: #ffa7a7;
    border-radius: 0 0 10px 10px;
    transition: opacity 0.3s;
}

.p-button__contact:hover {
    opacity: 0.7;
}

.p-button__contact img {
    width: 40px;
    height: auto;
}

.p-button__contact span {
    color: #fff;
}

.p-nav-pc__list {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    height: 100%;
}

.p-nav-pc__item {
    height: 100%;
}

.p-nav-pc__item a {
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    transition: opacity 0.3s;
}

.p-nav-pc__item a:hover {
    opacity: 0.7;
}

.p-nav-sp {
    display: none;
}

.c-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.c-overlay.open {
    opacity: 1;
    visibility: visible;
}


@media screen and (max-width: 768px) {

    .l-header {
        height: 70px;
        padding: 15px 0;
    }

    .l-header__logo img {
        width: 50px;
    }

    .p-nav-pc {
        display: none;
    }

    .p-nav-sp {
        position: fixed;
        top: 70px;
        left: -100%;
        z-index: 100;
        display: flex;
        flex-direction: column;
        width: 50%;
        height: 100vh;
        background-color: #a7d3f5;
        transition: all 0.3s;
        opacity: 0.95;
    }

    .p-nav-sp.open {
        left: 0;
    }

    .p-nav-sp__list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 50px;
        padding-top: 30px;
    }

    .p-nav-sp__item {
        width: 100%;
        height: 60px;
    }

    .p-nav-sp__item a {
        display: flex;
        align-items: center;
        color: #fff;
        font-size: 2.4rem;
        width: 100%;
        height: 100%;
        padding: 12px 0 13px 20px;
    }

    .p-nav-sp__item a:hover {
        color: #333;
        background-color: #fff;
    }

    .p-button__contact {
        width: 75%;
        max-width: 100%;
        height: 70px;
        margin-inline: auto;
        border-radius: 0;
    }

    .p-button__contact:nth-of-type(1) {
        margin-bottom: 50px;
    }

    .p-button__contact img {
        width: 30px;
    }

    .p-button__contact span {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 576px) {
    .p-nav-sp {
        width: 100%;
    }

    .p-nav-sp__list {
        margin-bottom: 20px;
        padding-top: 0;
    }

    .p-button__contact:nth-of-type(1) {
        margin-bottom: 20px;
    }
}

/* ハンバーガーメニュー */

.p-hamburger {
    display: none;
}

@media screen and (max-width: 768px) {
    .p-hamburger {
        position: relative;
        top: 0;
        right: -20px;
        z-index: 200;
        display: block;
        width: 72px;
        height: 50px;
    }

    .p-hamburger__line,
    .p-hamburger__line::before,
    .p-hamburger__line::after {
        content: "";
        position: absolute;
        width: 32px;
        height: 4px;
        background-color: #fff;
        border-radius: 4px;
        transition: all 0.3s;
        z-index: 200;
    }

    .p-hamburger__line {
        top: 23px;
        left: 20px;
    }

    .p-hamburger__line::before {
        top: 10px;
        transition: all 0.3s;
    }

    .p-hamburger__line::after {
        bottom: 10px;
        transition: all 0.3s;
    }

    .p-hamburger.open .p-hamburger__line {
        background-color: transparent;
    }

    .p-hamburger.open .p-hamburger__line::before {
        top: 0;
        transform: rotate(45deg);
    }

    .p-hamburger.open .p-hamburger__line::after {
        bottom: 0;
        transform: rotate(-45deg);
    }
}

/* first view
-----------------------------------------------*/

.p-fv {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    padding-top: 100px;
}

.p-fv__img {
    width: 100%;
    height: 100%;
}

.p-fv__img img {
    height: 100%;
}

.p-fv__title {
    position: absolute;
    bottom: 8%;
    left: 9%;
}

.p-fv__title h2 {
    margin-bottom: 25px;
    color: #1b99fb;
    font-size: 8rem;
    font-weight: 700;
    font-family: "M PLUS Rounded 1c", serif;
    line-height: 1.5;
    letter-spacing: 0.1em;
    filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
    text-stroke: 5px #fff;
    -webkit-text-stroke: 5px #fff;
    paint-order: stroke;
}

.p-fv__title h2 span {
    font-size: 6.4rem;
}

.p-fv__title-sub {
    padding: 15px;
    color: #ffa7a7;
    font-size: 2.4rem;
    letter-spacing: 0.08em;
    background-color: #fff;
    border-radius: 10px;
}

@media screen and (max-width: 1200px) {

    .p-fv {
        padding-top: 70px;
    }

    .p-fv__title h2 {
        font-size: 6rem;
    }

    .p-fv__title h2 span {
        font-size: 4.8rem;
    }

    .p-fv__title-sub {
        font-size: 2rem;
    }
}


/* about
-----------------------------------------------*/

.p-about {
    position: relative;
    overflow: hidden;
}

.p-about__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding: 240px 20px;
}

.p-about__flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10%;
}

.p-about__flex-text {
    width: calc(420 / 1040 * 100%);
}

.p-about__text {
    margin-top: 21.5%;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.p-about__flex-img {
    width: calc(540 / 1040 * 100%);
    max-width: 500px;
}

.p-about__circle--top-left {
    position: absolute;
    top: 0;
    left: 0;
}

.p-about__circle--color01 {
    position: absolute;
    top: 20px;
    left: -135px;
    width: 270px;
    height: 270px;
    background-color: #cbe8ff;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--blank01 {
    position: absolute;
    top: 0;
    left: 55px;
    width: 165px;
    height: 165px;
    border: 5px solid #ffeded;
    background-color: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--top-right {
    position: absolute;
    top: 0;
    right: 0;
}

.p-about__circle--color02 {
    position: absolute;
    top: -65px;
    right: -50px;
    width: 175px;
    height: 175px;
    background-color: #ffeded;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--blank02 {
    position: absolute;
    top: 20px;
    right: 35px;
    width: 210px;
    height: 210px;
    border: 5px solid #ffefb1;
    background-color: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.p-about__circle--color03 {
    position: absolute;
    bottom: 150px;
    right: 105px;
    width: 280px;
    height: 280px;
    background-color: #ffeded;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--blank03 {
    position: absolute;
    bottom: 150px;
    right: 300px;
    width: 175px;
    height: 175px;
    border: 5px solid #ffe789;
    background-color: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--bottom-left {
    position: absolute;
    bottom: 0;
    left: 0;
}

.p-about__circle--color04 {
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 400px;
    height: 400px;
    background-color: #ffefb1;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-about__circle--blank04 {
    position: absolute;
    bottom: -30px;
    left: 250px;
    width: 225px;
    height: 225px;
    border: 5px solid #cbe8ff;
    background-color: transparent;
    border-radius: 50%;
}

@media screen and (max-width: 1200px) {

    .p-about__circle--color03 {
        position: absolute;
        bottom: 150px;
        right: 0px;
        width: 280px;
        height: 280px;
        background-color: #ffeded;
        border-radius: 50%;
        mix-blend-mode: multiply;
    }

    .p-about__circle--blank03 {
        position: absolute;
        bottom: 150px;
        right: 200px;
        width: 175px;
        height: 175px;
        border: 5px solid #ffe789;
        background-color: transparent;
        border-radius: 50%;
        mix-blend-mode: multiply;
    }
}

@media screen and (max-width: 992px) {

    .p-about__circle--color01 {
        left: -90px;
        width: 186px;
        height: 186px;
    }

    .p-about__circle--blank01 {
        left: 35px;
        width: 113px;
        height: 113px;
    }

    .p-about__circle--color02 {
        top: -45px;
        right: -35px;
        width: 120px;
        height: 120px;
    }

    .p-about__circle--blank02 {
        top: 10px;
        right: 25px;
        width: 140px;
        height: 140px;
    }

    .p-about__circle--color03 {
        bottom: 100px;
        right: 0;
        width: 200px;
        height: 200px;
    }

    .p-about__circle--blank03 {
        bottom: 100px;
        right: 150px;
        width: 120px;
        height: 120px;
    }

    .p-about__circle--color04 {
        bottom: -50px;
        left: -25px;
        width: 250px;
        height: 250px;
    }

    .p-about__circle--blank04 {
        bottom: 10px;
        left: 150px;
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .p-about__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 70px 20px 60px 20px;
    }

    .p-about__flex {
        display: contents;
    }

    .p-about__flex-text {
        display: contents;
    }

    .p-about__text {
        order: 3;
        margin-top: 0;
    }

    .p-about__flex-img {
        order: 2;
        width: calc(310 / 375 * 100%);
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .p-about__circle--top-left {
        display: none;
    }

    .p-about__circle--bottom-left {
        display: none;
    }

    .p-about__circle--color02 {
        top: -20px;
        right: -20px;
        width: 65px;
        height: 65px;
    }

    .p-about__circle--blank02 {
        width: 80px;
        height: 80px;
        border: 2px solid #ffe789;
    }

    .p-about__circle--color03 {
        bottom: 200px;
        right: 15px;
        width: 120px;
        height: 120px;
    }

    .p-about__circle--blank03 {
        bottom: 200px;
        right: 95px;
        width: 75px;
        height: 75px;
        border: 2px solid #ffe789;
    }
}


/* staff
-----------------------------------------------*/

.p-staff {
    padding: 120px 0;
    background-color: #eff8ff;
}

.p-staff__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 70px;
}

.p-staff__card-img {
    width: calc(400 / 450 * 100%);
    margin-inline: auto;
    margin-bottom: 40px;
}

.p-staff__card-info {
    width: 100%;
}

.p-staff__card-label {
    display: inline-block;
    margin-bottom: 25px;
    padding: 8px calc(40 / 450 * 100%);
    font-size: 2.6rem;
    font-family: "Hiragino Kaku Gothic Pro", serif;
    border: 1px solid #333;
}

.p-staff__card-info h4 {
    margin-bottom: 25px;
    font-size: 3.2rem;
    font-family: "Hiragino Kaku Gothic Pro", serif;
}

.p-staff__card-text {
    line-height: 1.8;
    letter-spacing: 0.1em;
}


/* swiper */

.swiper-container {
    position: relative;
}

.swiper {
    margin-top: 10%; /* 90px */
}

.swiper-button-prev,
.swiper-button-next {
    top: 30%;
    width: 60px;
}

.swiper-button-prev {
    left: -7%;
}

.swiper-button-next {
    right: -7%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none;
}

.triangle--left {
    display: inline-block;
    width: 60px;
    height: 70px;
    background: #ffa7a7;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.triangle--right {
    display: inline-block;
    width: 60px;
    height: 70px;
    background: #ffa7a7;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
}

@media screen and (max-width: 992px) {
    .swiper-button-prev,
    .swiper-button-next {
        top: 25%;
    }

    .triangle--left,
    .triangle--right {
        width: 40px;
        height: 50px;
    }
}

@media screen and (max-width: 768px) {

    .p-staff {
        padding: 70px 0;
    }

    .p-staff__inner {
        padding-inline: 35px;
    }

    .p-staff .c-title h3 {
        font-size: 2.4rem;
    }

    .p-staff__card-info {
        text-align: center;
    }

    .p-staff__card-text {
        text-align: left;
    }

    .swiper-button-prev,
    .swiper-button-next {
        top: 30%;
    }
}

@media screen and (max-width: 576px) {

    .swiper-button-prev,
    .swiper-button-next {
        top: 30%;
    }

    .swiper-button-prev {
        left: -8%;
    }

    .swiper-button-next {
        right: -8%;
    }

    .triangle--left,
    .triangle--right {
        width: 30px;
        height: 40px;
    }
}

@media screen and (max-width: 480px) {
    .swiper-button-prev {
        left: -10%;
    }

    .swiper-button-next {
        right: -10%;
    }
}

/* medical
-----------------------------------------------*/

.p-medical {
    padding: 120px 0;
}

.p-medical__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-medical__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10%;
}

.p-medical__grid-item {
    padding: 50px 40px 40px 40px;
    background-color: #a7d3f5;
}

.p-medical__grid-img {
    width: calc(140 / 330 * 100%);
    margin-inline: auto;
    margin-bottom: 50px;
}

.p-medical__grid-item h4 {
    margin-bottom: 25px;
    padding-bottom: 20px;
    font-size: 3.2rem;
    font-family: "Hiragino Kaku Gothic Pro", serif;
    text-align: center;
    border-bottom: 1px solid #333;
}

.p-medical__grid-text {
    line-height: 1.8;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {

    .p-medical {
        padding: 70px 0;
    }

    .p-medical__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 576px) {
    .p-medical__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* news
-----------------------------------------------*/

.p-news {
    position: relative;
    overflow-x: clip;
    background-color: #eff8ff;
}

.p-news__inner {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin-inline: auto;
    padding: 120px 20px;
}

.p-news__list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 10%;
    padding: 30px 25px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.p-news__item a {
    display: flex;
    gap: 40px;
    transition: opacity 0.3s;
}

.p-news__item a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

.p-news__circle--top-left {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.p-news__circle--color01 {
    position: absolute;
    top: 30px;
    right: 125px;
    width: 210px;
    height: 210px;
    background-color: #ffeded;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-news__circle--top-right {
    position: absolute;
    top: 0;
    right: 0;
}

.p-news__circle--blank01 {
    position: absolute;
    top: 40px;
    right: 140px;
    width: 175px;
    height: 175px;
    border: 5px solid #ffefb1;
    background-color: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-news__circle--blank02 {
    position: absolute;
    top: -90px;
    right: -40px;
    width: 260px;
    height: 260px;
    border: 5px solid #cbe8ff;
    background-color: transparent;
    border-radius: 50%;
}

@media screen and (max-width: 992px) {

    .p-news__circle--color01 {
        top: 70px;
        right: 125px;
        width: 140px;
        height: 140px;
    }

    .p-news__circle--blank01 {
        top: 20px;
        right: 100px;
        width: 90px;
        height: 90px;
    }

    .p-news__circle--blank02 {
        top: -60px;
        right: -25px;
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width: 768px) {

    .p-news__inner {
        padding: 70px 20px;
    }

    .p-news__list {
        gap: 15px;
        padding: 25px;
    }

    .p-news__item a {
        flex-direction: column;
        gap: 5px;
    }

    .p-news__circle--color01 {
        top: 30px;
        right: -50px;
        width: 100px;
        height: 100px;
    }

    .p-news__circle--blank01 {
        top: 10px;
        right: 40px;
        width: 60px;
        height: 60px;
        border: 2px solid #ffefb1;
    }

    .p-news__circle--blank02 {
        top: -30px;
        right: -17px;
        width: 85px;
        height: 85px;
        border: 2px solid #cbe8ff;
    }
}


/* reservation
-----------------------------------------------*/

.p-reservation {
    position: relative;
    overflow-x: clip;
    padding: 120px 0;
}

.p-reservation__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

/* form */

.p-form__wrapper {
    position: relative;
    z-index: 1;
    margin-top: 10%;
    padding: 40px 20px;
    background-color: #eff8ff;
}

.p-form__text {
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.p-form__flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 70px;
}

.p-form__flex-item {
    width: 100%;
}

.p-form__item {
    margin-bottom: 25px;
}

.c-label {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #1b224c;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
    line-height: 1.6;
}

.c-label__tag,
.p-checkbox__tag {
    width: 45px;
    margin-left: 10px;
    padding: 2px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
    line-height: 1.6;
    text-align: center;
    background-color: #ffa7a7;
    border-radius: 54px;
}

.c-input {
    width: 100%;
    padding: 10px;
    font-size: 1.4rem;
    font-family: "Noto Sans JP", serif;
    line-height: 1.6;
    border: 1px solid #1b224c;
    border-radius: 4px;
    background-color: #fff;
}

.c-select__wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-select {
    width: 100%;
    padding: 10px;
    font-size: 1.4rem;
    text-align: right;
    border: 1px solid #1b224c;
    border-radius: 4px;
    background-color: #fff;
}

.p-checkbox__wrapper {
    display: flex;
    align-items: center;
}

.p-checkbox {
    flex: 1;
}

.p-checkbox__label {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.p-checkbox__label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #999999;
    border-radius: 4px;
}

.p-checkbox__input:checked + .p-checkbox__label::before {
    border-color: #3498db;
}

.p-checkbox__input:checked + .p-checkbox__label::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%) rotate(45deg);
    display: block;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
}

.p-checkbox__input:focus + .p-checkbox__label::before {
    outline: 2px solid #3498db;
}

/* calendar */

.calendar-container {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 2.6rem;
    font-weight: 500;
    font-family: "Hiragino Kaku Gothic Pro", serif;
    background-color: #a7d3f5;
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 5px 0;
    font-size: 2rem;
    text-align: center;
    background-color: rgba(255,255,255,0.15);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 10px 0;
    font-size: 2rem;
    text-align: center;
    background: #f9fafc;
    border-bottom: 1px solid #eee;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-days div {
    padding: 14px 0;
    font-size: 2rem;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.calendar-days div:hover:not(.disabled) {
    background-color: #fff;
    transform: scale(1.2);
}

.calendar-days .selected {
    width: 75%;
    margin-left: 8px;
    color: #fff;
    border-radius: 50%;
    font-weight: bold;
    background: linear-gradient(135deg, #0077cc, #00aaff);
    transform: scale(1.15);
}

.calendar-days .disabled {
    color: #ccc;
    pointer-events: none;
    background: #fafafa;
}

.calendar-weekdays div:nth-child(1),
.calendar-days div:nth-child(7n+1) {
    color: #e63946; /* 日曜 */
}
.calendar-weekdays div:nth-child(7),
.calendar-days div:nth-child(7n) {
    color: #0077cc; /* 土曜 */
}

#selected-date {
    display: none;
}

.p-form__item__privacy {
    width: 100%;
    max-width: 300px;
    margin-inline: auto;
    margin-bottom: 10px;
}

.p-form__item__privacy .p-checkbox__label {
    justify-content: center;
}

.p-checkbox__label a {
    text-decoration: underline;
}

.p-form__item__submit {
    width: calc(465 / 1040 * 100%);
    margin-inline: auto;
    padding: 17px;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    font-family: "Noto Sans JP", serif;
    text-align: center;
    background-color: #ffa7a7;
    border-radius: 8px;
}

.p-button__submit {
    display: block;
    width: 100%;
}

.p-reservation__circle--top-left {
    position: absolute;
    top: 0;
    left: 0;
}

.p-reservation__circle--color01 {
    position: absolute;
    top: 50px;
    left: 105px;
    width: 150px;
    height: 150px;
    background-color: #cbe8ff;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-reservation__circle--bottom-right {
    position: absolute;
    bottom: 0;
    right: 0;
}

.p-reservation__circle--color02 {
    position: absolute;
    bottom: -145px;
    right: -125px;
    width: 440px;
    height: 440px;
    background-color: #ffefb1;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

.p-reservation__circle--blank01 {
    position: absolute;
    bottom: 0;
    right: 135px;
    width: 320px;
    height: 320px;
    border: 5px solid #ffeded;
    background-color: transparent;
    border-radius: 50%;
    mix-blend-mode: multiply;
}

@media screen and (max-width: 992px) {

    .p-reservation__circle--color01 {
        top: 50px;
        left: 0;
        width: 150px;
        height: 150px;
    }

    .p-reservation__circle--color02 {
        bottom: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
    }

    .p-reservation__circle--blank01 {
        bottom: 50px;
        right: 50px;
        width: 250px;
        height: 250px;
    }
}

@media screen and (max-width: 768px) {

    .p-reservation {
        padding: 70px 0;
    }

    .p-reservation .c-title span {
        font-size: 7rem;
    }

    .p-form__flex {
        flex-direction: column;
        gap: 20px;
    }

    .p-form__flex-item {
        width: 100%;
    }

    .p-reservation__circle--color01 {
        top: 40px;
        left: -10px;
        width: 70px;
        height: 70px;
    }

    .p-reservation__circle--color02 {
        bottom: -10px;
        right: -60px;
        width: 125px;
        height: 125px;
    }

    .p-reservation__circle--blank01 {
        bottom: 50px;
        right: 10px;
        width: 90px;
        height: 90px;
        border: 2px solid #ffeded;
    }
}

@media screen and (max-width: 480px) {

    .p-form__item__privacy {
        max-width: 260px;
    }
}

/* access
-----------------------------------------------*/

.p-access {
    padding: 120px 0;
}

.p-access__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
}

.p-access__map {
    width: 100%;
    aspect-ratio: 1040 / 600;
    margin-top: 90px;
}

.p-access__map iframe {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 768px) {

    .p-access {
        padding: 70px 0;
    }

    .p-access__map {
        margin-top: 50px;
    }
}


/* footer
-----------------------------------------------*/

.l-footer {
    padding-top: 100px;
    background-color: #2472ae;
}

.l-footer__inner {
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 20px;
    padding-bottom: 100px;
}

.l-footer__flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.l-footer__address {
    margin-bottom: 20px;
    color: #fff;
}

.l-footer__address p {
    margin-bottom: 20px;
}

.l-footer__address a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.l-footer__address a img {
    width: 20px;
}

.p-table {
    width: 100%;
    margin-bottom: 10px;
}

.p-table__row {
    display: flex;
    align-items: center;
}

.p-table__row:nth-child(1) {
    background-color: #ffa7a7;
}

.p-table__row:nth-child(2),
.p-table__row:nth-child(3) {
    border-bottom: 1px solid #fff;
}

.p-table__head,
.p-table__body {
    text-align: center;
}

.p-table__head-text,
.p-table__body-text {
    padding: 10px;
    color: #fff;
}

.p-table__head {
    width: 165px;
}

.p-table__body {
    width: 40px;
}

.l-footer__table-box-text {
    display: flex;
    gap: 25px;
    color: #fff;
}

.l-footer__table-box-text p {
    margin-bottom: 10px;
}

.l-footer__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: opacity 0.3s;
}

.l-footer__logo:hover {
    opacity: 0.7;
}

.l-footer__logo span {
    color: #fff;
    font-size: 2.4rem;
    font-family: "Shippori Mincho", serif;
    text-align: center;
}

.l-footer__copyright {
    padding: 15px;
    font-size: 1.2rem;
    background-color: #fff;
    text-align: center;
}

@media screen and (max-width: 768px) {

    .l-footer {
        padding-top: 25px;
    }

    .l-footer__inner {
        padding-bottom: 40px;
    }

    .l-footer__flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .l-footer__flex-item {
        margin-inline: auto;
    }

    .l-footer__flex-item:nth-of-type(1) {
        order: 2;
    }

    .l-footer__flex-item:nth-of-type(2) {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 520px) {
    .p-table__head {
        width: 100px;
    }

    .p-table__body {
        width: 30px;
    }
}