/* 施設タイプ毎の調整 */
.type-castle .type-bg {
    background: #36496C;
}
.type-castle .type-th {
    background: #E6EFF2;
}
.type-forest .type-bg {
    background: #408681;
}
.type-forest .type-th {
    background: #ebf1e5;
}
.type-ds .type-bg {
    background: #FBDF6D;
}
.type-ds .type-th {
    background: #FAECB2;
}
.base-bg {
    background: var(--background-color);
}
.white-bg {
    background: #fff;
}


/* banner */
.header-banner {
    height: 24rem;
    overflow: hidden;
}
.header-banner img {
    width: 100%;
    height: calc(100% + 110px);
    object-fit: cover;
    object-position: center;
    /* margin-top: -110px; */
}
@media screen and (max-width: 991px) {
    .header-banner img {
        height: calc(100% + 55px);
        margin-top: -55px;
    }
}

/* content-top */
.content-section-top {
    color: white;
    padding: 1rem 1rem 2rem;
    position: relative;
    text-align: center;
}
    .type-ds .content-section-top {
        color: #000;
    }
.content-section-top p {
    font-size: 1rem;
}
.content-section-top p.svc-info {
    /* font-family: 'Noto Serif JP', serif; */
    max-width: 80%;
    margin: 0 auto;
}
.content-section-top p.svc-info-day {
    color: #707070;
    margin-bottom: 2rem;
    z-index: 2;
    position: relative;
}
.info-box {
    position: relative;
    margin-top: -6.5rem;
    margin-bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(252, 242, 216, 0.9);
    padding: 1.5rem 3rem;
    border: 1px solid #957611;
    width: max-content;
    border-radius: 5px;
}
.info-box p { 
    font-size: 1.2rem;
    color: var(--text-color);
    letter-spacing: 1px;
}
.info-box .section-title {
    color: var(--text-color);
}
.info-box br {
    display: none;
}


/* section */
section {
    padding: 4rem 0;
}
.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: normal;
    padding: 0 10px;
    /* font-family: 'Noto Serif JP', serif; */
}

h1.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}
.catch-copy {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: normal;
    padding: 0 10px;
    font-family: 'Noto Serif JP', serif;
}

@media screen and (max-width: 545px) {
    section {
        padding: 4rem 0;
    }
    /* h1.section-title {
        font-size: 36px !important;
    } */
}
@media screen and (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    h1.section-title {
        font-size: 1.7rem;
        letter-spacing: -3px;
    }
}
@media screen and (max-width: 383px) {
    .section-title {
        font-size: 31px;
        margin-bottom: 1rem;
    }
    h1.section-title {
        font-size: 34px !important;
    }
}
@media screen and (max-width: 338px) {
    section {
        padding: 3rem 0;
    }
    .section-title {
        font-size: 28px;
    }
    h1.section-title {
        font-size: 32px !important;
    }
}

/* slider-section 
.swiper {
    position: relative;
    width: 100%;
    height: 400px;
}
.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.swiper-button-next,
.swiper-button-prev {
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: center;
}
.swiper-button-next {
    background-image: url('img/slide-next.png');
}
.swiper-button-prev {
    background-image: url('img/slide-prev.png');
}
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    display: none;
}
.swiper-pagination {
    position: unset;
    padding: 5px 12px 1.5rem;
}
.swiper-pagination-bullet {
    background: #fff;
}
.slider-section-day .swiper-pagination-bullet {
    background: #000;
}
*/

/* slider-section */
.swiper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden; /* 追加: オーバーフローを非表示に */
}

.swiper-slide {
    display: flex; /* 追加: フレックスボックスを使用 */
    justify-content: center; /* 追加: 中央揃え */
    align-items: center; /* 追加: 縦方向中央揃え */
    height: 100%; /* 追加: 高さ100%を確保 */
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* 追加: ブロック要素として表示 */
}

/* 以下は既存のスタイルを維持 */
.swiper-button-next,
.swiper-button-prev {
    background-size: 60px;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10; /* 追加: 重なり順を上に */
}

.swiper-button-next {
    background-image: url('img/slide-next.png');
}

.swiper-button-prev {
    background-image: url('img/slide-prev.png');
}

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

.swiper-pagination {
    position: unset;
    padding: 5px 12px 1.5rem;
    z-index: 10; /* 追加: 重なり順を上に */
}

.swiper-pagination-bullet {
    background: #fff;
}

.slider-section-day .swiper-pagination-bullet {
    background: #000;
}


/* overview-section */
.overview-section {
    background: var(--background-color);
}
.overview-table {
    margin-bottom: 2.5rem;
}
.overview-table tr {
    border-top: 1px solid #D5D5D5;
    border-bottom: 1px solid #D5D5D5;
}
.overview-table th {
    color: #36496C;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    font-weight: normal;
    width: 25%;
    text-align: center;
}
.overview-table td {
    font-size: 1rem;
    color: #3E4E56;
    background: rgba(255, 255, 255, 0.5);
    padding: 0 30px;
}
.overview-map {
    /* margin: 1.5rem 0 3rem; */
    margin: 5rem 0 3rem;
}
.overview-map-day {
    margin: 5rem 0 1rem;
}
.cta-btn {
    text-align: center;
}
.cta-btn a,
.cta-btn a:focus {
    background: var(--page-cta-color);
    color:#fff;
    display: inline-block;
    text-decoration: none;
    padding: 15px 4.5rem 10px;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.5s ease;
    border: 1px solid var(--page-cta-color);
}
.cta-btn a:hover,
.cta-btn a:active {
    background: #fff;
    color: var(--page-cta-color);
    border: 1px solid var(--page-cta-color);
}
.cta-btn a:hover .cta-btn-icon svg path,
.cta-btn a:hover .cta-btn-icon svg g path {
    fill: var(--page-cta-color) !important;
}
.cta-btn a p.small-title {
    margin: 0;
    font-size: 18px;
}
.cta-btn-icon {
    display: flex;
    align-items: center;
    margin-top: -5px;
}
.cta-btn-icon svg {
    margin-right: 1.5rem;
}
.cta-btn a p.request-materials {
    margin: 0;
    font-size: 30px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    color: #fff;
}
.cta-btn a:hover p.request-materials {
    color: var(--page-cta-color) !important;
}
@media screen and (max-width: 991px) {
    .overview-map {
        margin: 4rem 0 3rem;
    }
    .overview-map-day {
        margin: 4rem 0 1rem;
    }
}
@media screen and (max-width: 767px) {
    .overview-map {
        margin: 3rem 0 3rem;
    }
    .overview-map-day {
        margin: 3rem 0 1rem;
    }
}
@media screen and (max-width: 545px) {
    .cta-btn a {
        padding: 15px 4rem 10px;
    }
    .cta-btn-icon svg {
        width: 35px;
        margin-right: 1.5rem;
    }
}
@media screen and (max-width: 480px) {
    .cta-btn a {
        padding: 15px 3rem 10px;
    }
}
@media screen and (max-width: 428px) {
    .cta-btn a {
        padding: 15px 2rem 10px;
    }
    .cta-btn a p.small-title {
        font-size: 17px;
    }
    .cta-btn a p.request-materials {
        font-size: 27px;
    }
    .cta-btn-icon svg {
        width: 30px;
        margin-right: 1rem;
    }

    .swiper {
        height: 300px;
    }
}
@media screen and (max-width: 339px) {
    .cta-btn {
        padding: 0.5rem 12px 1rem;
    }
    .cta-btn a {
        padding: 15px 1.5rem 10px;
    }
    .cta-btn a p.small-title {
        font-size: 15px;
    }
    .cta-btn a p.request-materials {
        font-size: 24px;
    }
    .cta-btn-icon svg {
        width: 28px;
        margin-right: 1rem;
    }
}

/* price-section */
.price-section p {
    color: #3E4E56;
}
.price-title {
    color: #36496C;
    font-size: 24px;
    margin-bottom: 1rem;
}
.price-title span {
    color: #57B9CF;
}
.price-section table {
    width: 100%;
    text-align: center;
    table-layout: fixed;
}
.price-section tr {
    border: 1px solid #D5D5D5;
}
.price-section th {
    border: 1px solid #D5D5D5;
    color: #36496C;
    font-size: 1.2rem;
    padding: 15px 10px;
    font-weight: normal;
}
.price-section th.th-left {
    padding: 15px 30px;
    text-align: center;
    width: 18%;
}
.price-section td {
    border: 1px solid #D5D5D5;
    color: #3E4E56;
    padding: 0 10px;
    width: 20.5%;
    font-size: 1.5rem;
}
.price-text-small {
    font-size: 1rem;
}
.price-point {
    font-size: 20px;
    color: #F39924 !important;
}

/* feature-section */
.feature-section {
    background: var(--background-color);
}
.feature-section p {
    color: #3E4E56;
    /* font-family: 'Noto Serif JP', serif; */
}
.feature-section .list-title {
    font-size: 1.5rem;
    color: #000;
    /* font-family: 'Noto Serif JP', serif; */
}
.feature-section .list-title ~ .list-title {
    margin-top: 2rem;
}
@media screen and (max-width: 991px) {
    .feature-section .row {
        flex-direction: column-reverse;
    }
    .feature-section .col-lg-5 {
        margin-bottom: 3.5rem;
    }
    .feature-section .col-lg-5 img {
        width: 100vw !important;
        margin-left: calc(-50vw + 50%);
    }
}

/* message-section */
.message-section {
    text-align: center;
    padding: 5rem 12px;
}
.message-section p {
    color: #fff;
}
.message-title {
    color: #fff;
    text-align: start;
    /* font-family: 'Noto Serif JP', serif; */
    margin-bottom: 1.5rem;
    padding: 0;
}
    .type-ds .message-title {
        color: #000;
    }
.message-text {
    font-size: 1.2rem;
    text-align: start;
    padding-right: 0 1rem;
    font-family: 'Noto Serif JP', serif;
}
    .type-ds .message-text {
        color: #000;
    }
.img-caption {
    text-align: end;
    margin-top: 5px;
    font-size: 1.2rem;
}
    .type-ds .img-caption {
        color: #000;
    }
.message-section hr {
    border: 1px solid var(--page-cta-color);
    margin: 2rem 0 3rem;
}
.message-section a {
    background: var(--page-cta-color);
    color:#fff;
    display: inline-block;
    text-decoration: none;
    padding: 15px 4.5rem 10px;
    border-radius: 10px;
    text-align: center;
}
@media screen and (max-width: 991px) {
    .message-section .col-lg-5 {
        margin-top: 2.5rem;
    }
}
@media screen and (max-width: 545px) {
    .message-section a {
        padding: 15px 4rem 10px;
    }
}
@media screen and (max-width: 480px) {
    .message-section a {
        padding: 15px 3rem 10px;
    }
}
@media screen and (max-width: 428px) {
    .message-section a {
        padding: 15px 2rem 10px;
    }
}
@media screen and (max-width: 339px) {
    .message-section a {
        padding: 15px 1.5rem 10px;
    }
}
.message-title-day,
.message-text-day,
.img-caption-day {
    color: #3E2E01 !important;
}


/* 0401 余白の調整 */
.overview-section .container,
.price-section .container,
.feature-section .container,
.message-section .container {
    padding: 0 6rem;
}

.scroll-text {
    display: none;
}

@media screen and (max-width:1399px) {
    .overview-section .container,
    .price-section .container,
    .feature-section .container,
    .message-section .container {
        padding: 0 4rem;
    }
}

@media screen and (max-width:1200px) {
    .overview-section .container,
    .price-section .container,
    .feature-section .container,
    .message-section .container {
        padding: 0 12px;
    }

    .overview-table th {
        padding: 20px 45px;
        width: 22%;
    }
}

@media screen and (max-width:1199px) {
    .price-section th.th-left {
        padding: 15px 25px;
    }
}

@media screen and (max-width:991px) {
    .overview-table th {
        padding: 20px 30px;
    }

    .price-section th.th-left {
        padding: 15px 20px;
        width: 20%;
    }
    .price-section .table-box {
        overflow: scroll;
    }
    .price-section table {
        width: 800px;
    }
    .scroll-text {
        display: block;
        font-size: .875em;
        color: #787878 !important;
    }

    .info-box {
        padding: 2rem;
    }
}

@media screen and (max-width: 885px) {
    .info-box {
        padding: 2rem 12px;
    }
    .info-box .section-title {
        letter-spacing: -3px;
    }
}

@media screen and (max-width: 858px) {
    .content-section-top p.svc-info{
        text-align: start;
    }
    .content-section-top p.svc-info br {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .overview-table th {
        width: 30%;
    }
    .info-box {
        padding: 2rem;
        margin-top: -10rem;
    }
    .info-box br {
        display: block;
    }
}

@media screen and (max-width: 575px) {
    .overview-section .container,
    .price-section .container,
    .message-section .container {
        padding: 0 12px;
    }

    .message-section {
        padding: 5rem 0;
    }
}

@media screen and (max-width: 480px) {
    .info-box {
        padding: 2rem 12px;
    }
    .info-box p {
        letter-spacing: 0;
    }

    .overview-table th {
        padding: 20px 10px;
    }

    .price-title, .feature-section .list-title {
        font-size: 22px;
    }

    .overview-table th {
        font-size: 16px;
    }
    .overview-table td {
        padding: 0 15px;
    }
    .price-section th {
        font-size: 16px;
    }
    .price-point {
        font-size: 18px;
    }
    .price-text-small {
        font-size: 14px;
    }
    .img-caption {
        font-size: 14px;
    }
}

@media screen and (max-width: 383px) {
    .info-box p {
        letter-spacing: -0.5px;
    }

    .content-section-top {
        padding: 153px 20px 40px;
    }
}

@media screen and (max-width: 375px) {
    .content-section-top p, .message-text {
        font-size: 19px;
    }
    .message-section .col-lg-5 {
        margin-top: 1rem;
    }
}

@media screen and (max-width: 338px) {
    .info-box {
        padding: 2rem 10px;
    }
    .content-section-top p, .message-text {
        font-size: 17px;
    }

    .overview-table th, .overview-table td, 
    .price-section th, .price-section td {
        font-size: 14.5px;
    }
}

/* ボタン */
.dl-container p {
    text-align: center;
    color: var(--text-color);
    margin: 4rem 0 2rem;
}
.dl-button-row {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    justify-content: center;
  }
.dl-btn {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background-color: #838343;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    /* transition: background-color 0.3s; */
    justify-content: center;
    border: 1px solid #838343;
    max-width: 257px;
}
.dl-btn:hover {
    background-color: #9b9b50;
    color: white;
    border: 1px solid #838343;
}
.type-ds .dl-btn {
    background-color: var(--btn-color);
    border: 1px solid var(--btn-color);
}
.type-ds .dl-btn:hover {
    background-color: #ffd24d;
    color: white;
    border: 1px solid var(--btn-color);
}
.dl-btn img {
    width: 12%;
    margin-right: 10px;
}

@media screen and (max-width: 767px) {
    .dl-btn img {
        display: none;
    }
}




/* facility-banner */
.facility-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}
.facility-info {
    position: relative;
    width: 55%;
    height: 100%;
    text-align: right;
    padding: 3rem;
}
    .facility-info h1 {
        font-size: 2rem;
        margin: 0 0 1rem 0;
    }
    .type-castle .facility-info {
        color: #fff;
    }
    .type-forest .facility-info {
        color: #fff;
    }
    .type-ds .facility-info {
        color: #6e5920;
    }
.facility-img {
    position: relative;
    width: 45%;
    height: 320px;
    background-size: cover;
    background-position: center;
}
@media screen and (max-width: 991px) {
    .facility-banner {
        flex-direction: column;
    }
    .facility-info {
        width: 100%;
        padding: 2rem;
        order: 2;
        text-align: center;
    }
    .facility-img {
        width: 100%;
        height: 250px;
        order: 1;
    }
}

/* キャッチコピー */
.catch-copy-section {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid #fff;
    padding: 1.5rem 3rem;
    width: 100%;
    text-align: center;
}
    .catch-copy-section h2 {
        font-size: 1.8rem;
        margin: 0;
        font-family: 'Noto Serif JP', serif;
    }
    .catch-copy-section p {
        font-size: 1.2rem;
        margin: 0.5rem 0 0 0;
    }
@media screen and (max-width: 991px) {
    .catch-copy-section {
        text-align: left;
    }
    .catch-copy-section h2 {
        text-align: left;
        margin: 0 0 0.8rem 0;
    }
}
    

/* 以下消しても良い*/

.bg-castle {
    background: #36496C;
}
.bg-forest01 {
    background: #3b7da7;
}
.bg-forest02 {
    background: #408681;
}
.bg-day {
    background: #FBDF6D;
}

.th-castle {
    background: #E6EFF2;
}
.th-forest01 {
    background: #E6EFF2;
}
.th-forest02 {
    background: #ebf1e5;
}
.th-day {
    background: #FAECB2;
}


.info-box-day{
    position: absolute;
    top: -178px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    opacity: 0.8;
    width: 350px;
    height: 350px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 4rem 1rem 1rem !important;
    flex-direction: column;
}
.info-box-day .section-title {
    margin-bottom: 0.5rem !important;
    color: #000;
}
.info-box-day p {
    font-size: 14px;
    color: #000;
}

.overview-table th.th-day {
    padding: 20px 10px;
}

.content-section-top-day {
    padding: 100px 20px 40px !important;
}

.header-banner-day {
    height: 18rem !important;
}


.facility-wrapper {
    padding: 30px 20px;
}

.section-title-day {
    color: #000;
    z-index: 2;
    position: relative;
}
