@charset "UTF-8";

/* =========================================
   ページ共通ヒーロー
========================================= */
.p-page-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-green);
    overflow: hidden;
}
.p-page-hero__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.p-page-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}
.p-page-hero__text-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.p-page-hero__title {
    font-size: 40px;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}
.p-page-hero__sub {
    font-size: 16px;
    opacity: 0.9;
    letter-spacing: 0.2em;
}

@media screen and (max-width: 768px) {
    .p-page-hero { height: 40vh; }
    .p-page-hero__title { font-size: 32px; }
}

/* =========================================
   リード文
========================================= */
.p-reserve-lead {
    padding: 80px 4vw;
    text-align: center;
    background-color: var(--color-base);
}
.p-reserve-lead__title {
    font-size: 28px;
    color: var(--color-blue);
    line-height: 1.6;
    margin-bottom: 30px;
}
.p-reserve-lead__text {
    font-size: 16px;
    line-height: 2;
    max-width: 700px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .p-reserve-lead { padding: 50px 4vw; }
    .p-reserve-lead__title { font-size: 22px; }
    .p-reserve-lead__text { text-align: left; }
}

/* =========================================
   プランの再掲
========================================= */
.p-reserve-plan {
    padding: 0 0 80px;
    background-color: var(--color-base);
}
.p-reserve-plan__box {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    border: 2px solid var(--color-accent);
    border-radius: 15px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.p-reserve-plan__img {
    flex: 0 0 300px;
}
.p-reserve-plan__img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 10px;
}
.p-reserve-plan__info {
    flex: 1;
}
.p-reserve-plan__name {
    font-size: 22px;
    color: var(--color-text);
    margin-bottom: 15px;
    line-height: 1.5;
}
.p-reserve-plan__desc {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}
.p-reserve-plan__price-wrap {
    display: inline-block;
    background-color: #FDFCF8;
    border: 1px solid #EFEBE4;
    padding: 15px 25px;
    border-radius: 8px;
}
.p-reserve-plan__price-note {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}
.p-reserve-plan__price {
    font-size: 32px;
    color: #d9534f;
    font-weight: 700;
    line-height: 1;
}
.p-reserve-plan__price small {
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-base);
}

@media screen and (max-width: 768px) {
    .p-reserve-plan { padding: 0 0 50px; }
    .p-reserve-plan__box {
        flex-direction: column;
        padding: 25px;
        gap: 25px;
    }
    .p-reserve-plan__img { flex: auto; width: 100%; }
    .p-reserve-plan__name { font-size: 18px; }
    .p-reserve-plan__price-wrap { width: 100%; text-align: center; }
}

/* =========================================
   予約カレンダー埋め込みエリア
========================================= */
.p-reserve-calendar {
    padding: 80px 0;
    background-color: #fff;
}
.p-reserve-calendar__wrap {
    max-width: 1000px;
    margin: 0 auto;
    /* 外部システム読み込み遅延時のガタつき防止 */
    min-height: 600px; 
}
.p-reserve-calendar__dummy {
    width: 100%;
    height: 600px;
    background-color: #f8f9fa;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    border-radius: 10px;
}
/* 実際のiframeに適用させるスタイル */
.p-reserve-calendar__wrap iframe {
    width: 100%;
    border: none;
    min-height: 800px; /* カレンダーの高さに応じて調整してください */
}

@media screen and (max-width: 768px) {
    .p-reserve-calendar { padding: 50px 0; }
    .p-reserve-calendar__dummy { height: 400px; text-align: center; padding: 20px; }
}

/* =========================================
   宿泊に関するご案内
========================================= */
.p-reserve-info {
    padding: 80px 0 100px;
    background-color: #FDFCF8;
}
.p-reserve-info__content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.03);
    border: 1px solid #EFEBE4;
}
.p-reserve-info__list dt {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-green);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-base);
}
.p-reserve-info__list dd {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
}
.p-reserve-info__list dd:last-child {
    margin-bottom: 0;
}
.p-reserve-info__list small {
    display: block;
    color: #d9534f; /* 注意書きを少し赤みをつけて目立たせる */
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .p-reserve-info { padding: 50px 0 80px; }
    .p-reserve-info__content { padding: 30px 20px; }
    .p-reserve-info__list dt { font-size: 16px; }
}