@charset "UTF-8";

/*============================
全体
============================*/
html {
    font-size: 62.5%;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    color: #2F2F2F;
    font-size: 2.0rem;
    line-height: 1.5;
    letter-spacing: 0;
}
main {
    overflow: hidden;
}
.serif {
    font-family: "Noto Serif JP", serif;
}
a {
    color: #2F2F2F;
    text-decoration: none;
}
img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
li {
    list-style: none;
}

@media screen and (min-width: 769px){
    .sp_only {
        display: none;
    }
}

@media screen and (max-width: 768px){
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
    main {
        margin-top: 5.0rem;
    }
}

/*============================
レイアウト
============================*/
.container {
    flex: 1;
    margin-left: 13%;
    min-height: 100vh;
    overflow: hidden;
}
.wrapper {
    margin: 0 7%;
    box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
    .container {
        margin-left: 14%;
    }
}

@media screen and (max-width: 768px) {
    .container {
        flex: 1;
        margin-left: 0;
    }
    .wrapper {
        margin: 0 5%;
    }
}

/*============================
共通
============================*/
.section-title {
    font-size: clamp(2.8rem, calc(40 / 1920 * 100vw), 4.0rem);
    font-weight: bold;
    color: #3FA6CB;
}
.dots-content {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}
.dot-item {
    width: 8px;
    height: 8px;
    background-color: #E68539;
    border-radius: 50%;
}
.page-title {
    font-size: 8.0rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .section-title {
        font-size: 2.4rem;
    }
    .page-title {
        font-size: 6.0rem;
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: clamp(2.0rem, calc(20 / 500 * 100vw), 2.4rem);
    }
    .page-title {
        font-size: clamp(4.0rem, calc(60 / 500 * 100vw), 4.8rem);
    }
    .dots-content {
        display: flex;
        align-items: center;
        gap: 1.3rem;
    }
}

/*============================
トップページ
============================*/

/* ヘッダー */
.main-header {
    display: flex;
    flex-flow: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 13%;
    min-height: 100vh;
    z-index: 5;
}
.header-logo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 17vh;
    background-color: #fff;
}
.header-logo-link {
    display: flex;
    flex-flow: column;
    align-items: center;
    transition: all .3s;
}
.header-subtitle {
	display: flex;
    flex-flow: column;
    align-items: center;
    color: #3FA6CB;
    font-size: clamp(1.6rem, calc(20 / 1920 * 100vw), 2.0rem);
    font-weight: bold;
    line-height: .75;
	margin-bottom: 1.0rem;
}
.header-title {
    color: #3FA6CB;
    font-size: clamp(2.4rem, calc(35 / 1920 * 100vw), 3.5rem);
    font-weight: bold;
	line-height: 1.8;
}
.side-menu {
    height: 70vh;
    background-color: #F3E6D3;
    padding: 5vh 0;
}
.side-menu .nav-menu {
    height: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.nav-menu a {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: .4rem;
    transition: all .3s;
}
.nav-menu img {
    width: 6.8rem;
    height: auto;
}
.nav-menu p {
    font-size: clamp(2.0rem, calc(24 / 1920 * 100vw), 2.5rem);
    font-weight: bold;
}
.business-hours-box {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: 13vh;
    background-color: #3FA6CB;
}
.business-hours-title {
    font-size: clamp(2.0rem, calc(25 / 1920 * 100vw), 2.5rem);
    color: #fff;
}
.business-hours-txt {
    font-size: clamp(1.4rem, calc(18 / 1920 * 100vw), 1.8rem);
    color: #fff;
}
/* ハンバーガーメニュー非表示 */
.hamburger-menu {
    display: none;
}

@media screen and (min-width: 769px) {
    .header-logo-link:hover,
    .nav-menu a:hover {
        opacity: .7;
    } 
}

@media screen and (max-width: 1024px) {
    .main-header {
        width: 14%;
    }
    .header-subtitle {
        font-size: clamp(1.2rem, calc(16 / 1024 * 100vw), 1.6rem);
    }
    .header-title {
        font-size: clamp(2.0rem, calc(22 / 1024 * 100vw), 2.2rem);
    }
    .side-menu {
        padding: 3vh 0;
    }
    .nav-menu img {
        width: 4.0rem;
    }
    .nav-menu p {
        font-size: 2.0rem;
    }
    .business-hours-title {
        font-size: clamp(1.8rem, calc(20 / 1024 * 100vw), 2.0rem);
    }
    .business-hours-txt {
        font-size: clamp(1.0rem, calc(14 / 1024 * 100vw), 1.4rem);
    }

    @media screen and (min-width: 769px) {
        .header-logo-link:hover,
        .nav-menu a:hover {
            opacity: .7;
        } 
    }
}

@media screen and (max-width: 768px) {
    .main-header {
        width: 80%;
        height: calc( 100vh - 5.0rem);
        left: -80%;
        bottom: 0;
        margin-top: 5.0rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }
    .header-logo-content {
        display: none;
    }
    .side-menu {
        height: calc(80vh - 5.0rem);
        background-color: #F3E6D3;
        padding: 7vh 0;
    }
    .side-menu .nav-menu {
        height: 100%;
        display: flex;
        flex-flow: column;
        justify-content: space-between;
    }
    .nav-menu a {
        display: flex;
        flex-flow: row;
        justify-content: center;
        align-items: center;
        gap: 1.4rem;
        transition: all .3s;
    }
    .nav-menu img {
        width: 6.8rem;
        height: auto;
    }
    .nav-menu p {
        font-size: 2.5rem;
        font-weight: bold;
    }
    .business-hours-box {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        height: 20%;
        background-color: #3FA6CB;
    }
    .business-hours-title {
        font-size: 2.4rem;
        color: #fff;
    }
    .business-hours-txt {
        font-size: 1.8rem;
        color: #fff;
    }
    .header-mobile-menu {
        display: flex;
        justify-content: space-between;
        position: fixed;
        background-color: #fff;
        top: 0;
        left: 0;
        width: 100%;
        height: 5.0rem;
        z-index: 999;
    }
    .hamburger-menu {
        position: relative;
        width: 5.0rem;
        height: 5.0rem;
        display: flex;
        align-items: center;
        z-index: 1002;
    }
    .hamburger-menu .hamburger-line-top,
    .hamburger-menu .hamburger-line-bottom {
        position: absolute;
        left: 50%;
        transform: translate( -50%, 0);
        width: 24px;
        height: 2px;
        border-radius: 2px;
        background-color: #E68539;
        transition: .3s;
    }
    .hamburger-menu .hamburger-line-top {
        top: 20px;
    }
    .hamburger-menu .hamburger-line-bottom {
        top: 28px;
    }
    .mobile-header-logo-content {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .mobile-header-subtitle {
		display: flex;
		flex-flow: column;
        color: #3FA6CB;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: .75;
    }
    .mobile-header-title {
        color: #3FA6CB;
        font-size: 2.6rem;
        font-weight: bold;
        line-height: 1.25;
    }
    .tel-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 5.0rem;
        height: 5.0rem;
        background-color: #3FA6CB;
    }
    .tel-btn img {
        width: 2.4rem;
        height: auto;
    }
    .active.hamburger-menu .hamburger-line-top {
        transform: translateX(-50%) rotate(-45deg);
        top: 24px;
    }
    .active.hamburger-menu .hamburger-line-bottom {
        transform: translateX(-50%) rotate(45deg);
        top: 24px;
    }
    .main-header.active {
        left: 0;
        overflow: auto;
    }
    .overlay {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc( 100vh - 5.0rem);
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ファーストビュー */
#fv {
    position: relative;
}
#fv-splide .splide__slide img {
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
    transition: 10s ease-out;
}
#fv-splide .splide__slide.is-active img {
    transform: scale(1.10);
    transition-delay: 0s;
}
.fv-btn {
    position: absolute;
    background-color: #3FA6CB;
    padding: 2.1rem 7.1rem 2.0rem 6.4rem;
    top: 5.3rem;
    right: 3%;
    border-radius: 999px;
    display: flex;
    align-items: normal;
    gap: 5px;
    transition: all .3s;
}
.fv-btn img {
    width: 1.8rem;
    height: auto;
}
.fv-btn-txt {
    font-size: 2.5rem;
    font-weight: 500;
    color: #fff;
}
.fv-txt-box {
    color: #fff;
    position: absolute;
    background-color: rgba(0, 0, 0, .2);
    border-radius: 60px;
    width: auto;
    height: 73vh;
    right: 7%;
    bottom: 3.4rem;
    padding: 2.0rem 4%;
    display: flex;
    flex-flow: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 2.0rem;
    white-space: nowrap;
}
.fv-txt {
    font-size: clamp( 2.4rem, calc(34 / 1920 * 100vw), 3.4rem);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media screen and (min-width: 769px) {
    .fv-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    .fv-btn {
        padding: 1.6rem 6.6rem 1.6rem 5.9rem;
        top: 3.3rem;
    }
    .fv-btn img {
        width: 1.6rem;
    }
    .fv-btn-txt {
        font-size: 2.0rem;
    }
    .fv-txt-box {
        border-radius: 48px;
        bottom: 2.4rem;
        padding: 2.0rem 4%;
        gap: 1.6rem;
    }
    .fv-txt {
        font-size: clamp( 1.8rem, calc(20 / 1024 * 100vw), 2.0rem);
    }
}

@media screen and (max-width: 768px) {
    #fv {
        position: relative;
    }
    #fv-splide .splide__slide img {
        height: 60vh;
    }
    .fv-btn {
        display: none;
    }
    .fv-txt-box {
        color: #fff;
        position: absolute;
        background-color: rgba(0, 0, 0, .2);
        border-radius: 30px;
        width: auto;
        height: 56vh;
        right: 5%;
        bottom: 1.2rem;
        padding: 2.0rem 4%;
        display: flex;
        flex-flow: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
    }
    .fv-txt {
        font-size: 1.8rem;
    }
}

/* セクション1 */
#section1 {
    position: relative;
    padding: 5.6rem 0 8.0rem;
    background-image: url("../../images/top-page/section1-bg.png");
    background-position: right;
    background-size: cover;
    background-repeat: no-repeat;
    
}
#section1::before {
    position: absolute;
    content: '';
    background-image: url("../../images/top-page/top-section1-bg-text.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    width: 14.4rem;
    height: 60.0rem;
}
#section1::after {
    position: absolute;
    content: '';
    background-image: url("../../images/top-page/section1-sakura.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    right: -14.0rem;
    width: 47.6rem;
    height: 16.2rem;
    transform: rotate(-5deg);
    z-index: -1;
}
.section1-wrapper {
    padding: 0 14%;
}
.section1-transition-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 4.4rem 10.4rem;
    background-color: #fff;
    border-radius: 68px;
    margin-bottom: 18.6rem;
}
.transition-item {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 31%;
}
.transition-img {
    width: 100%;
    max-width: 30.8rem;
    height: auto;
}
.transition-btn {
    position: relative;
    display: block;
    text-align: center;
    background-color: #7EC8E3;
    width: 80%;
    min-width: 18.0rem;
    margin: 3.7rem auto 0;
    padding: 2.0rem 0 1.9rem;
    border-radius: 999px;
    border: 3px solid #7EC8E3;
    transition: .3s;
}
.transition-btn-txt {
    font-size: 2.0rem;
    font-weight: bold;
    color: #2F2F2F;
    white-space: nowrap;
}

@media screen and (min-width: 769px) {
    .transition-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1300px) {
    #section1 {
        padding: 4.0rem 0 6.0rem;
    }
    #section1::before {
        width: 10.5rem;
        height: 44.0rem;
    }
    .section1-transition-content {
        padding: 4.0rem 4.8rem;
        border-radius: 60px;
        margin-bottom: 12.6rem;
    }
    .transition-btn {
        width: 80%;
        min-width: 0;
        margin: 2.4rem auto 0;
        padding: 1.6rem 0 1.6rem;
    }
    .transition-btn-txt {
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 1024px) {
    #section1 {
        padding: 3.2rem 0 4.0rem;
    }
    #section1::before {
        width: 8.0rem;
        height: 34.0rem;
    }
    #section1::after {
        right: -10.0rem;
        width: 40.0rem;
        height: 12.0rem;
    }
    .section1-transition-content {
        padding: 3.2rem 4.0rem;
        border-radius: 48px;
        margin-bottom: 10.6rem;
    }
    .transition-btn {
        width: 90%;
        min-width: 0;
        margin: 2.0rem auto 0;
        padding: 1.2rem 0;
    }
    .transition-btn-txt {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    #section1 {
        position: relative;
        background-image: url("../../images/top-page/section1-bg-sp.png");
        background-size: right;
        background-repeat: no-repeat;
        padding: 2.4rem 0 17.0rem;
    }
    #section1::before {
        position: absolute;
        content: '';
        background-image: url("../../images/top-page/top-section1-bg-text.png");
        background-size: cover;
        background-repeat: no-repeat;
        top: 0;
        left: 0;
        width: 3.6rem;
        height: 15.0rem;
    }
    .section1-wrapper {
        padding: 0 10%;
    }
    .section1-transition-content {
        width: 100%;
        display: flex;
        flex-flow: column;
        align-items: center;
        padding: 2.4rem 0;
        border-radius: 40px;
        margin-bottom: 0;
        gap: 4.0rem;
    }
    .transition-item {
        width: 90%;
    }
    .transition-btn {
        position: relative;
        display: block;
        text-align: center;
        background-color: #7EC8E3;
        font-size: 1.6rem;
        font-weight: bold;
        width: 80%;
        margin: 1.6rem auto 0;
        padding: 1.6rem 0;
        border-radius: 999px;
        border: 3px solid #7EC8E3;
        transition: .3s;
    }
    .transition-btn a {
        color: #2F2F2F;
    }
}

/* セクション2 */
#section2 {
    position: relative;
    background-color: #F3E6D3;
    padding: 18.0rem 0 8.0rem;
    margin-top: -23.0rem;
    z-index: -10;
}
#section2::before {
    position: absolute;
    content: '';
    background-image: url("../../images/top-page/section2-sakura.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: 11.0rem;
    left: -17.5rem;
    width: 40.0rem;
    height: 40.0rem;
    transform: rotate(-2deg);
    z-index: -1;
}
.section2-wrapper {
    padding: 0 14%;
}
.section2-txt-content .section-title {
    text-align: center;
    margin-bottom: 4.2rem;
}
.section2-txt-content .dots-content {
    justify-content: center;
    margin-bottom: 4.0rem;
}
.section2-txt {
    font-size: 2.0rem;
}

@media screen and (max-width: 1024px) {
    #section2 {
        padding: 18.0rem 0 4.0rem;
    }
    #section2::before {
        top: 15.0rem;
        left: -13.0rem;
        width: 30.0rem;
        height: 30.0rem;
    }
    .section2-txt-content .section-title {
        text-align: center;
        margin-bottom: 2.8rem;
    }
    .section2-txt-content .dots-content {
        justify-content: center;
        margin-bottom: 2.4rem;
    }
    .section2-txt {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    #section2 {
        position: relative;
        background-color: #F3E6D3;
        padding: 18.0rem 0 2.4rem;
        margin-top: -19.0rem;
        z-index: -10;
    }
    #section2::before {
        position: absolute;
        content: '';
        background-image: url("../../images/top-page/section2-sakura.png");
        background-size: contain;
        background-repeat: no-repeat;
        top: 12.0rem;
        left: -8.5rem;
        width: 20.0rem;
        height: 20.0rem;
        transform: rotate(-2deg);
        z-index: -1;
    }
    .section2-wrapper {
        padding: 0 5%;
    }
    .section2-txt-content .section-title {
        text-align: center;
        margin-bottom: 2.0rem;
    }
    .section2-txt-content .dots-content {
        justify-content: center;
        margin-bottom: 2.0rem;
    }
    .section2-txt {
        font-size: 1.6rem;
    }
}

/* セクション3 */
#section3 {
    padding: 7.6rem 0;
    background-image: url("../../images/top-page/top-section2-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
.section3-content {
    background-color: rgba( 255, 255, 255, .95);
    padding: 8.8rem 0;
    border-radius: 68px;
}
#section3 .section-title {
    text-align: center;
    margin-bottom: 5.4rem;
}
#section3 .dots-content {
    justify-content: center;
    margin-bottom: 5.8rem;
}
.section3-txt {
    width: 67%;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    #section3 {
        padding: 4.0rem 0;
    }
    .section3-content {
        padding: 4.0rem 0;
        border-radius: 48px;
    }
    #section3 .section-title {
        text-align: center;
        margin-bottom: 2.8rem;
    }
    #section3 .dots-content {
        justify-content: center;
        margin-bottom: 3.2rem;
    }
    .section3-txt {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    #section3 {
        padding: 2.4rem 0;
    }
    .section3-content {
        padding: 2.4rem 0;
        border-radius: 40px;
    }
    #section3 .section-title {
        margin-bottom: 2.4rem;
    }
    #section3 .dots-content {
        margin-bottom: 2.4rem;
    }
    .section3-txt {
        width: 80%;
        font-size: 1.6rem;
    }
}
/* セクション4 */
#section4 {
    padding-top: 11.5rem;
    padding-bottom: 23.0rem;
    background-image: url("../../images/top-page/section4-bg.png");
    background-position: right;
    background-repeat: no-repeat;
    background-size: cover;
}
.section4-wrapper {
    margin: 0 4% 0 7%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    max-height: 84.5rem;
}
.section4-left-content {
    width: 41%;
}
.section4-txt-content {
    margin-bottom: 4.9rem;
}
.section4-txt-content .section-title {
    margin-bottom: 3.2rem;

}
.section4-txt-content .dots-content {
    justify-content: center;
    margin-bottom: 4.9rem;
}
.section4-txt {
    font-size: 2.0rem;
}
.section4-img {
    width: 100%;
}
.section4-btn {
    position: relative;
    display: block;
    text-align: center;
    background-color: #fff;
    width: 30.0rem;
    margin: 6.8rem auto 0;
    padding: 2.1rem 0;
    border-radius: 999px;
    border: 3px solid #3FA6CB;
    transition: .3s;
}
.section4-btn-txt{
    font-size: 2.0rem;
    font-weight: bold;
    color: #3FA6CB;
}
.section4-right-content {
    width: 52%;
}
.section4-main-img {
    width: 100%;
    height: 100%;
}
.section4-main-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 145px;
    display: block;
}

@media screen and (min-width: 769px) {
    .section4-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    #section4 {
        padding-top: 4.0rem;
        padding-bottom: 16.0rem;
    }
    .section4-txt-content {
        margin-bottom: 3.2rem;
    }
    .section4-txt-content .section-title {
        margin-bottom: 2.8rem;
    }
    .section4-txt-content .dots-content {
        margin-bottom: 3.2rem;
    }
    .section4-txt {
        font-size: 1.6rem;
    }
    .section4-btn {
        width: 24.0rem;
        margin: 4.0rem auto 0;
        padding: 1.6rem 0;
    }
    .section4-btn-txt {
        font-size: 1.6rem;
    }
    .section4-main-img img{
        border-radius: 80px;
    }
}

@media screen and (max-width: 768px) {
    #section4 {
        padding-top: 2.4rem;
        padding-bottom: 14.0rem;
        background-image: url("../../images/top-page/section4-bg-sp.png");
        background-position: right;
        background-repeat: no-repeat;
        background-size: cover;
    }
    .section4-wrapper {
        margin: 0 5%;
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        gap: 4.0rem;
        max-height: none;
    }
    .section4-left-content {
        width: 100%;
    }
    .section4-txt-content {
        margin-bottom: 2.8rem;
    }
    .section4-txt-content .section-title {
        margin-bottom: 2.0rem;

    }
    .section4-txt-content .dots-content {
        margin-bottom: 2.0rem;
    }
    .section4-txt {
        font-size: 1.6rem;
    }
    .section4-btn {
        width: 24.0rem;
        margin: 2.8rem auto 0;
        padding: 1.6rem 0;
        border: 2px solid #3FA6CB;
    }
    .section4-btn-txt {
        font-size: 1.6rem;
    }
    .section4-right-content {
        width: 100%;
    }
    .section4-main-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 80px;
        display: block;
    }
}

/* ニュース */
#news {
    position: relative;
    padding: 0 0 14.7rem;
    margin-top: -4.0rem;
}
#news::before {
    position: absolute;
    content: '';
    background-image: url("../../images/top-page/news-top-sakura.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: -3.0rem;
    left: -18.5rem;
    width: 50.3rem;
    height: 34.0rem;
    z-index: -5;
}
#news::after {
    position: absolute;
    content: '';
    background-image: url("../../images/top-page/news-bottom-sakura.png");
    background-size: contain;
    background-repeat: no-repeat;
    bottom: -3.6rem;
    right: -8.0rem;
    width: 65.9rem;
    height: 27.2rem;
    z-index: -5;
}
.news-content {
    width: 80%;
    margin: 0 auto;
    padding: 8.0rem 0 6.5rem;
    background-color: #fff;
    border: 1px solid #7EC8E3;
    border-radius: 84px;
    box-shadow: 0px 13px 13px rgba(0, 0, 0, .16);
}
#news .section-title {
    text-align: center;
    margin-bottom: 4.4rem;
}
.news-item {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 3.0rem;
    margin: 4.0rem auto 0;
    padding-bottom: 1.35rem;
    border-bottom: 1px dotted #B1B1B1;
    transition: .3s;
}
.news-date {
    font-size: 1.6rem;
    white-space: nowrap;
}
.news-tab {
    font-size: 1.6rem;
    padding: .4rem 2.9rem;
    color: #fff;
    background-color: #7EC8E3;
    border-radius: 999px;
    white-space: nowrap;
}
.news-title {
    font-weight: bold;
}
.news-btn {
    position: relative;
    display: block;
    text-align: center;
    background-color: #fff;
    width: 30.0rem;
    margin: 3.1rem auto 0;
    padding: 2.1rem 0;
    border-radius: 999px;
    border: 3px solid #3FA6CB;
    transition: .3s;
}
.news-btn-txt {
    font-size: 2.0rem;
    font-weight: bold;
    color: #3FA6CB;
}

@media screen and (min-width: 769px) {
    .news-item:hover,
    .news-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    #news {
        padding: 0 0 6.0rem;
    }
    #news::before {
        top: -5.0rem;
        left: -12.5rem;
        width: 34.0rem;
        height: 20.0rem;
    }
    #news::after {
        bottom: -.6rem;
        right: -7.0rem;
        width: 50.0rem;
        height: 18.0rem;
    }
    .news-content {
        padding: 4.0rem 0 3.2rem;
        border-radius: 64px;
    }
    #news .section-title {
        text-align: center;
        margin-bottom: 3.2rem;
    }
    .news-item {
        gap: 2.0rem;
        margin: 2.8rem auto 0;
        padding-bottom: .8rem;
    }
    .news-date {
        font-size: 1.4rem;
    }
    .news-tab {
        font-size: 1.4rem;
        padding: .4rem 2.0rem;
    }
    .news-title {
        font-size: 1.6rem;
    }
    .news-btn {
        width: 24.0rem;
        margin: 2.4rem auto 0;
        padding: 1.6rem 0;
    }
    .news-btn-txt {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    #news {
        position: relative;
        padding: 2.4rem 0;
        margin-top: -4.0rem;
    }
    #news::before {
        top: -4.0rem;
        left: -10.0rem;
        width: 25.0rem;
        height: 17.0rem;
    }
    #news::after {
        bottom: -1.6rem;
        right: -4.0rem;
        width: 33.0rem;
        height: 13.5rem;
    }
    .news-content {
        width: 90%;
        padding: 4.0rem 0 3.2rem;
        border-radius: 48px;
    }
    #news .section-title {
        margin-bottom: 2.4rem;
    }
    .news-item {
        width: 90%;
        display: flex;
        align-items: center;
        gap: 1.0rem 3.0rem;
        flex-wrap: wrap;
        margin: 2.0rem auto 0;
        padding-bottom: .8rem;
        
    }
    .news-date {
        font-size: 1.2rem;
    }
    .news-tab {
        font-size: 1.2rem;
        padding: .2rem 1.8rem;
        color: #fff;
        background-color: #7EC8E3;
        border-radius: 999px;
    }
    .news-title {
        font-size: 1.6rem;
    }
    .news-btn {
        position: relative;
        display: block;
        text-align: center;
        background-color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
        width: 24.0rem;
        margin: 2.8rem auto 0;
        padding: 1.6rem 0;
        border-radius: 999px;
        border: 2px solid #3FA6CB;
        transition: .3s;
    }
}

/* カレンダー */
#calendar {
    padding: 4.2rem 0 3.4rem;
    background-image: url("../../images/top-page/top-calendar-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
}
#calendar .wrapper {
    display: flex;
    justify-content: flex-end;
}
.calendar-content {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 35%;
    max-width: 50.0rem;
    aspect-ratio: 1 / 1;
    background-color: #fff;
    border-radius: 21px;
    margin-right: 7%;
    padding: 1.4rem 3.7rem 2.5rem;
}
.calendar-title {
    font-size: 2.1rem;
    font-weight: 500;
    color: #3FA6CB;
    text-align: center;
    margin-bottom: 1.5rem;
}
.calendar-content iframe {
    width: 100%;
    max-width: 42.0rem;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
}

@media screen and (max-width: 1440px) {
    .calendar-content {
        padding: 1.4rem 2.8rem 2.0rem;
        min-width: 38.0rem;
    }
}
@media screen and (max-width: 1024px) {
    #calendar {
        padding: 3.2rem 0 2.8rem;
    }
    .calendar-content {
        padding: 1.4rem 2.4rem 2.0rem;
        margin-right: 0;
    }
    .calendar-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    #calendar {
        padding: 30.0rem 0 2.4rem;
        background-image: url("../../images/top-page/top-calendar-bg-sp.jpg");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 100%;
        height: auto;
    }
    #calendar .wrapper {
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
    }
    .calendar-content {
        padding: .8rem 1.6rem 1.0rem;
        width: 100%;
        max-width: 50.0rem;
        min-width: 32.0rem;
        margin: 0 auto;
    }
    .calendar-title {
        font-size: 1.6rem;
        margin-bottom: .8rem;
    }
}

/* アクセス */
#access {
    background-color: #F3E6D3;
    padding: 10.6rem 0 6.0rem;
}
#access .section-title {
    text-align: center;
    margin-bottom: 3.8rem;
}
#access .dots-content {
    justify-content: center;
    margin-bottom: 5.6rem;
}
.access-txt-content {
    display: flex;
    gap: 9.0rem;
    background-color: #fff;
    border-radius: 35px;
    padding: 2.4rem 9% 1.4rem;
    margin-bottom: 5.6rem;
}
.access-left-txt {
    width: 50%;
}
.access-right-txt {
    width: 50%;
}
.access-txt {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    position: relative;
    margin-bottom: 1.4rem;
}
.access-txt::before {
    content:'';
    display: inline-block;
	box-sizing: border-box;
	width: 12px;
	height: 5px;
	border: 6px solid transparent;
	border-left: 6px solid #2f2f2f;
}
.access-map iframe {
    width: 100%;
    border-radius: 48px;
}

@media screen and (max-width: 1024px) {
    #access {
        padding: 6.0rem 0 4.0rem;
    }
    #access .section-title {
        margin-bottom: 2.8rem;
    }
    #access .dots-content {
        margin-bottom: 3.2rem;
    }
    .access-txt-content {
        gap: 4.8rem;
        border-radius: 28px;
        padding: 2.0rem 5%;
        margin-bottom: 3.2rem;
    }
    .access-txt {
        font-size: 1.6rem;
        gap: .6rem;
        margin-bottom: 1.0rem;
    }
    .access-map iframe {
        border-radius: 28px;
    }
}

@media screen and (max-width: 768px) {
    #access {
        padding: 2.4rem 0;
    }
    #access .section-title {
        margin-bottom: 2.0rem;
    }
    #access .dots-content {
        margin-bottom: 2.4rem;
    }
    .access-txt-content {
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        gap: 0;
        background-color: #fff;
        border-radius: 35px;
        padding: 1.6rem 5%;
        margin-bottom: 2.4rem;
    }
    .access-left-txt {
        width: 100%;
    }
    .access-txt {
        font-size: 1.6rem;
    }
    .access-right-txt {
        width: 100%;
    }
    .access-map iframe {
        border-radius: 24px;
    }
}

/* フッター */
.footer {
    color: #fff;
    background-color: #7EC8E3;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 4.8rem 0;
}
.footer-logo-link {
    display: inline-block;
    color: #fff;
    transition: all .3s;
}
.footer-subtitle {
	display: flex;
	flex-flow: column;
    font-size: 2.0rem;
	font-weight: bold;
    line-height: .75;
	margin-bottom: 1.0rem;
}
.footer-title {
    font-size: 3.5rem;
	line-height: 1.8;
}
.footer-address-txt {
    font-size: 1.8rem;
}
.footer-nav {
    width: 50%;
    display: flex;
    align-items: center;
}
.footer-nav-lists {
    display: flex;
    flex-wrap: wrap;
    gap: 4.0rem 9.6rem;
    font-size: 2.5rem;
}
.footer-nav-lists li a {
    color: #fff;
    transition: all .3s;
}
.footer-copy {
    padding: .5rem 0;
    background-color: #2E6072;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .footer-logo-link:hover,
    .footer-nav-lists li a:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    .footer-content {
        padding: 3.2rem 0;
    }
    .footer-subtitle {
        font-size: 1.6rem;
    }
    .footer-title {
        font-size: 2.8rem;
    }
    .footer-address-txt {
        font-size: 1.2rem;
    }
    .footer-nav-lists {
        display: flex;
        flex-wrap: wrap;
        gap: 2.4rem 4.0rem;
        font-size: 2.0rem;
    }
    .footer-nav-lists li a {
        color: #fff;
        transition: all .3s;
    }
    .footer-copy {
        padding: .5rem 0;
        background-color: #2E6072;
        text-align: center;
    }

    @media screen and (min-width: 769px) {
        .footer-logo-link:hover,
        .footer-nav-lists li a:hover {
            opacity: .7;
        }
    }
}

@media screen and (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        gap: 2.0rem;
        padding: 2.4rem 0;
    }
    .footer-address-txt {
        font-size: 1.4rem;
    }
    .footer-nav {
        width: 100%;
        display: flex;
        align-items: center;
    }
    .footer-nav-lists {
        display: flex;
        flex-wrap: wrap;
        gap: 2.0rem 4.0rem;
        font-size: 2.0rem;
    }
    .footer-copy {
        font-size: 1.2rem;
    }
}

/*============================
施設紹介
============================*/

/* ページビュー */
#page-fv {
    position: relative;
    padding: 8.1rem 0 12.0rem;
    background-image: url("../../images/facility-page/facility-bg.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}
.page-big-title {
    font-size: 10.0rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    #page-fv {
        padding: 6.0rem 0 10.0rem;
    }
    .page-big-title {
        font-size: 8.0rem;
    }
}

@media screen and (max-width: 768px) {
    #page-fv {
        padding: 4.0rem 0 6.0rem;
    }
    .page-big-title {
        font-size: clamp(4.0rem, calc(60 / 500 * 100vw), 4.8rem);
    }
}

/* マップ */
#facility-map {
    position: relative;
    padding: 7.1rem 0 11.5rem;
}
#facility-map::before {
    content: '';
    position: absolute;
    background-image: url("../../images/facility-page/map-sakura1.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 50.3rem;
    height: 32.9rem;
    top: -1.0rem;
    right: 1.0rem;
    z-index: -10; 
}
#facility-map::after {
    content: '';
    position: absolute;
    background-image: url("../../images/facility-page/map-sakura2.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 56.6rem;
    height: 37.3rem;
    top: 20.0rem;
    left: -1.0rem;
    z-index: -10; 
}
.facility-map-img {
    text-align: center;
    margin-bottom: 10.0rem;
}
.facility-map-img img {
    width: 60%;
    max-width: 82.3rem;
    height: 100%;
}
.facility-map-txt-box {
    text-align: center;
}
.facility-map-txt {
    font-size: 2.9rem;
    font-weight: bold;
    color: #3FA6CB;
    line-height: 2;
}
.facility-map-txt-frame {
    background-color: #3FA6CB;
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff;
    width: 58.6rem;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    #facility-map {
        padding: 6.0rem 0;
    }
    #facility-map .wrapper {
        margin: 0;
    }
    #facility-map::before {
        width: 22.0rem;
        height: 14.0rem;
        top: 1.0rem;
        right: 1.0rem;
    }
    #facility-map::after {
        width: 26.0rem;
        height: 14.0rem;
        top: 16.0rem;
        left: -1.0rem;
    }
    .facility-map-img {
        margin-bottom: 6.0rem;
    }
    .facility-map-txt {
        font-size: 2.0rem;
    }
    .facility-map-txt-frame {
        font-size: 2.4rem;
        width: 40.0rem;
    }
}

@media screen and (max-width: 768px) {
    #facility-map {
        padding: 4.0rem 0;
    }
    #facility-map::before {
        width: 12.0rem;
        height: 10.0rem;
        top: 0;
        right: 1.0rem;
    }
    #facility-map::after {
        width: 14.0rem;
        height: 11.0rem;
        top: 7.0rem;
        left: 0;
    }
    .facility-map-img {
        margin-bottom: 2.4rem;
    }
    .facility-map-img img {
        width: 80%;
    }
    .facility-map-txt {
        font-size: 1.6rem;
    }
    .facility-map-txt-frame {
        font-size: 2.0rem;
        width: 33.0rem;
    }
}

/* ショッピング */
#shopping {
    background-color: #F3E6D3;
    padding: 9.4rem 0 10.2rem;
}
.facility-section-content {
    display: flex;
    align-items: flex-start;
    gap: 6%;
    margin-bottom: 8.6rem;
}
.facility-txt-box {
    width: 100%;
    max-width: 60.9rem;
}
.facility-section-title {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    font-size: clamp(2.8rem, calc(40 / 1920 * 100vw), 4.0rem);
    font-weight: bold;
    color: #3FA6CB;
    margin-bottom: .5rem;
}
.facility-eng-title {
    font-size: 1.8rem;
    margin-left: .8rem;
}
.facility-dots-content {
    width: 100%;
    margin-bottom: 4.2rem;
}
.facility-info-content {
    display: flex;
    flex-flow: column;
    gap: 4.0rem;
    width: 100%;
    max-width: 61.5rem;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    padding: 4.1rem 4.6rem 4.3rem;
}
.facility-hours,
.facility-holiday {
    display: flex;
    align-items: center;
    gap: 2.6rem;
}
.facility-tab {
    font-size: 1.8rem;
    color: #fff;
    background-color: #7EC8E3;
    border-radius: 11px;
    text-align: center;
    width: 100%;
    max-width: 11.3rem;
    padding: .5rem 0 .7rem;
}
.shopping-img-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12.9rem;
}
.shopping-img {
    width: 31%;
}
.shopping-wrapper {
    padding: 0 5%;
}
.shopping-menu-content {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 70px;
    padding: 6.8rem 5% 6.5rem;
    border: 4px solid #7EC8E3;
    z-index: 5;
    overflow: hidden;
}
.shopping-menu-content::after {
    position: absolute;
    content: '';
    background-image: url("../../images/facility-page/shopping-sakura.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: 1.0rem;
    right: -2.0rem;
    width: 62.1rem;
    height: 35.3rem;
    z-index: -10;
}
.shopping-menu-title-box {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 7.1rem;
}
.shopping-menu-title-img {
    margin-right: 3.1rem;
}
.shopping-menu-title-img img {
    width: 14.9rem;
    height: 100%;
}
.shopping-menu-title {
    font-weight: bold;
    margin-bottom: 1.4rem;
    margin-right: .9rem;
}
.shopping-s-title {
    font-size: 1.8rem;
    line-height: 1.25;
}
.shopping-center-title {
    font-size: 2.5rem;
    text-align: center;
}
.shopping-menu-txt {
    font-size: 4.0rem;
    font-weight: bold;
    margin-bottom: 1.0rem;
}
.shopping-menu-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 63.6rem 63.6rem;
    gap: 10.3rem 3.4rem;
}
.shopping-menu-item {
    display: flex;
    flex-flow: column;
    border-radius: 35px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .16);
}
.shopping-menu-item:first-child {
    position: relative;
}
.shopping-menu-item:first-child::before {
    position: absolute;
    content: '';
    background-image: url("../../images/facility-page/shopping-menu-icon.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: -1.4rem;
    left: -1.4rem;
    width: 9.0rem;
    height: 9.0rem;
}
.shopping-menu-img {
    margin-bottom: 2.9rem;
}
.shopping-menu-item p {
    margin: 0 4.4rem;
}
.menu-title {
    font-weight: 500;
    padding-bottom: 2.1rem;
    border-bottom: 1px dashed #3FA6CB;
}
.menu-txt {
    padding-top: 1.9rem;
    font-size: 1.8rem;
}
@media screen and (max-width: 1300px) {
    .shopping-menu-item:first-child::before {
        top: -1.0rem;
        left: -1.0rem;
        width: 7.2rem;
        height: 7.2rem;
    }
}

@media screen and (max-width: 1024px) {
    #shopping {
        padding: 6.0rem 0 6.0rem;
    }
    .facility-section-content {
        margin-bottom: 4.8rem;
    }
    .facility-section-title {
        font-size: clamp(2.0rem, calc(28 / 1024 * 100vw), 2.8rem);
        margin-bottom: 0;
    }
    .facility-eng-title {
        font-size: 1.2rem;
        margin-left: .6rem;
    }
    .facility-dots-content {
        margin-bottom: 2.0rem;
    }
    .facility-txt {
        font-size: 1.8rem;
    }
    .facility-info-content {
        gap: 3.2rem;
        max-width: 61.5rem;
        height: 100%;
        background-color: #fff;
        border-radius: 26px;
        padding: 3.2rem 2.8rem;
    }
    .facility-hours,
    .facility-holiday {
        display: flex;
        align-items: center;
        gap: 1.6rem;
    }
    .facility-tab {
        font-size: 1.4rem;
        border-radius: 8px;
        max-width: 9.0rem;
        padding: .4rem 0 .5rem;
    }
    .facility-info-txt {
        font-size: 1.6rem;
    }
    .shopping-img-content {
        margin-bottom: 6.0rem;
    }
    .shopping-menu-content {
        border-radius: 54px;
        padding: 4.8rem 5% 4.0rem;
        border: 3px solid #7EC8E3;
    }
    .shopping-menu-content::after {
        top: 0.6rem;
        right: -0.4rem;
        width: 30.0rem;
        height: 20.0rem;
    }
    .shopping-menu-title-box {
        margin-bottom: 4.0rem;
    }
    .shopping-menu-title-img {
        margin-right: 1.6rem;
    }
    .shopping-menu-title-img img {
        width: 9.0rem;
    }
    .shopping-menu-title {
        font-weight: bold;
        margin-bottom: 0.4rem;
        margin-right: .5rem;
    }
    .shopping-s-title {
        font-size: 1.4rem;
    }
    .shopping-center-title {
        font-size: 2.0rem;
    }
    .shopping-menu-txt {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 0.4rem;
    }
    .shopping-menu-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 48.0rem 48.0rem 48.0rem;
        gap: 6.0rem 3.4rem;
    }
    .shopping-menu-item {
        border-radius: 28px;
    }
    .shopping-menu-item:first-child::before {
        top: -1.0rem;
        left: -1.0rem;
        width: 6.0rem;
        height: 6.0rem;
    }
    .shopping-menu-img {
        margin-bottom: 2.0rem;
    }
    .shopping-menu-item p {
        margin: 0 2.0rem;
    }
    .menu-title {
        padding-bottom: 1.4rem;
    }
    .menu-txt {
        padding-top: 1.4rem;
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    #shopping {
        padding: 4.0rem 0 4.0rem;
    }
    .facility-section-content {
        flex-flow: column;
        gap: 2.4rem;
        margin-bottom: 2.4rem;
    }
    .facility-txt-box {
        max-width: none;
    }
    .facility-section-title {
        font-size: clamp(2.0rem, calc(24 / 500 * 100vw), 2.4rem);
        margin-bottom: 0;
    }
    .facility-eng-title {
        font-size: 1.0rem;
        margin-left: .4rem;
    }
    .facility-dots-content {
        width: 100%;
        margin-bottom: 1.6rem;
    }
    .facility-txt {
        font-size: 1.6rem;
    }
    .facility-info-content {
        gap: 2.0rem;
        max-width: none;
        border-radius: 20px;
        padding: 2.0rem;
    }
    .facility-hours,
    .facility-holiday {
        display: flex;
        align-items: center;
        gap: 1.4rem;
    }
    .facility-tab {
        font-size: 1.4rem;
        border-radius: 6px;
        max-width: 8.0rem;
        padding: .2rem 0 .3rem;
    }
    .facility-info-txt {
        font-size: 1.6rem;
    }
    .shopping-img-content {
        display: flex;
        flex-flow: column;
        gap: 2.4rem;
        margin-bottom: 2.4rem;
    }
    .shopping-img {
        width: 100%;
    }
    .shopping-wrapper {
        padding: 0 5%;
    }
    .shopping-menu-content {
        border-radius: 35px;
        padding: 2.4rem 5% 2.4rem;
        border: 2px solid #7EC8E3;
    }
    .shopping-menu-content::after {
        top: .4rem;
        right: -.4rem;
        width: 20.0rem;
        height: 10.0rem;
    }
    .shopping-menu-title-box {
        flex-wrap: wrap;
        margin-bottom: 2.4rem;
    }
    .shopping-menu-title-img {
        margin-right: 1.4rem;
    }
    .shopping-menu-title-img img {
        width: 8.0rem;
        height: 100%;
    }
    .shopping-menu-title {
        margin-bottom: 0;
        margin-right: 0;
    }
    .shopping-s-title {
        font-size: 1.4rem;
        line-height: 1.25;
    }
    .shopping-center-title {
        font-size: 2.0rem;
        text-align: center;
    }
    .shopping-menu-txt {
        font-size: 2.8rem;
        margin-bottom: 0;
    }
    .shopping-menu-items {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 2.4rem 0;
    }
    .shopping-menu-item {
        border-radius: 28px;
    }
    .shopping-menu-item:first-child::before {
        top: -.6rem;
        left: -.6rem;
        width: 8.0rem;
        height: 8.0rem;
    }
    .shopping-menu-img {
        margin-bottom: 1.6rem;
    }
    .shopping-menu-item p {
        margin: 0 5%;
    }
    .menu-title {
        padding-bottom: 1.4rem;
    }
    .menu-txt {
        padding-top: 1.0rem;
        padding-bottom: 2.4rem;
        font-size: 1.6rem;
    }
}

/* 農産物 */
#direct-form {
    padding-top: 5.4rem;
}
#direct-form .facility-info-content {
    border: 3px solid #7EC8E3;
    gap: 4.0rem;
    max-height: none;
}
.direct-form-img-content {
    display: flex;
    gap: 2.4rem;
    margin-right: auto;
    margin-left: 7%;
    max-width: none;
}
.direct-form-img img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1024px) {
    #direct-form {
        padding-top: 4.0rem;
    }
    #direct-form .facility-info-content {
        gap: 3.2rem;
    }
    .direct-form-img-content {
        gap: 1.8rem;
    }
    .direct-form-img img {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    #direct-form {
        padding-top: 2.4rem;
    }
    #direct-form .facility-info-content {
        border: 2px solid #7EC8E3;
        gap: 2.0rem;
    }
    .direct-form-img-content {
        gap: .8rem;
        margin-left: 5%;
    }
}

/* 食堂 */
#cafeteria {
    padding-bottom: 9.3rem;
}
#cafeteria .facility-section-content {
    display: flex;
    flex-flow: column;
    position: relative;
    padding: 20.9rem 0 59.2rem 5.7rem;
    background-color: #F2F2F2;
    border-bottom-left-radius: 100% 25vw;
    border-bottom-right-radius: 100% 25vw;
    z-index: -10;
}
#cafeteria .facility-section-content::before {
    content: '';
    position: absolute;
    background-image: url("../../images/facility-page/cafeteria-img.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 0 35px 35px 0;
    top: 8.3rem;
    left: 0;
    width: 94%;
    height: 96.5rem;
    z-index: -5;
}
#cafeteria .facility-section-content::after {
    content: '';
    position: absolute;
    background-image: url("../../images/facility-page/cafeteria-sakura.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    top: 0;
    right: -5.0rem;
    width: 58.2rem;
    height: 91.4rem;
    z-index: -8;
}
#cafeteria .facility-section-title {
    color: #fff;
}
#cafeteria .facility-txt-box {
    width: 100%;
    max-width: 60.9rem;
    margin-bottom: 9.5rem;
}
#cafeteria .facility-dots-content {
    margin-bottom: 3.1rem;
}
#cafeteria .facility-txt {
    color: #fff;
}
#cafeteria .facility-info-content {
    gap: 4.0rem;
    max-width: 50.0rem;
    padding: 4.1rem 2.4rem 4.3rem;
}
#cafeteria .wrapper {
    margin-top: -22.4rem;
}
.cafeteria-title-box {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 12.8rem;
}
.cafeteria-subtitle {
    font-size: 2.5rem;
}
.cafeteria-s-title {
    font-size: 1.8rem;
    margin-right: .4rem;
}
.cafeteria-title {
    font-size: 4.0rem;
}
.cafeteria-menu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.2rem 10%;
}
.cafeteria-menu-item {
    display: flex;
    flex-flow: column;
}
.cafeteria-menu-img {
    margin-bottom: 3.7rem;
}
.cafeteria-menu-title {
    font-weight: 500;
    margin-bottom: 1.0rem;
}
.cafeteria-menu-dots-content {
    margin-bottom: 3.2rem;
}
.cafeteria-menu-txt {
    font-size: 1.8rem;
}
.cafeteria-btn {
    position: relative;
    display: block;
    text-align: center;
    background-color: #fff;
    max-width: 29.6rem;
    width: 100%;
    margin: 14.0rem auto 0;
    padding: 2.1rem 0;
    border-radius: 999px;
    border: 3px solid #3FA6CB;
    transition: .3s;
}
.cafeteria-btn-txt {
    color: #3FA6CB;
    font-weight: bold;
}
@media screen and (min-width: 769px) {
    .cafeteria-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    #cafeteria {
        padding-bottom: 6.0rem;
    }
    #cafeteria .facility-section-content {
        padding: 16.0rem 0 36.0rem 4.0rem;
        border-bottom-left-radius: 100% 20vw;
        border-bottom-right-radius: 100% 20vw;
    }
    #cafeteria .facility-section-content::before {
        border-radius: 0 30px 30px 0;
        top: 6.0rem;
        height: 70.5rem;
    }
    #cafeteria .facility-section-content::after {
        top: 0;
        right: -5.0rem;
        width: 30.0rem;
        height: 50.0rem;
    }
    #cafeteria .facility-txt-box {
        max-width: 40.0rem;
        margin-bottom: 6.0rem;
    }
    #cafeteria .facility-dots-content {
        margin-bottom: 2.4rem;
    }
    #cafeteria .facility-txt {
        font-size: 1.8rem;
    }
    #cafeteria .facility-info-content {
        gap: 3.2rem;
        max-width: 40.0rem;
        padding: 2.8rem 1.8rem;
    }
    #cafeteria .wrapper {
        margin-top: -16.0rem;
    }
    .cafeteria-title-box {
        margin-bottom: 8.0rem;
    }
    .cafeteria-subtitle {
        font-size: 2.0rem;
    }
    .cafeteria-s-title {
        font-size: 1.4rem;
    }
    .cafeteria-title {
        font-size: 3.2rem;
    }
    .cafeteria-menu-content {
        gap: 6.0rem 10%;
    }
    .cafeteria-menu-img {
        margin-bottom: 2.6rem;
    }
    .cafeteria-menu-title {
        margin-bottom: 0;
    }
    .cafeteria-menu-dots-content {
        margin-bottom: 2.4rem;
    }
    .cafeteria-menu-txt {
        font-size: 1.6rem;
    }
    .cafeteria-btn {
        max-width: 24.0rem;
        margin: 10.0rem auto 0;
        padding: 1.6rem 0;
    }
    .cafeteria-btn-txt {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 768px) {
    #cafeteria {
        padding-bottom: 4.0rem;
    }
    #cafeteria .facility-section-content {
        display: flex;
        flex-flow: column;
        position: relative;
        padding: 8.0rem 0 24.0rem 5%;
        background-color: #F2F2F2;
        border-bottom-left-radius: 100% 20vw;
        border-bottom-right-radius: 100% 20vw;
        z-index: -10;
    }
    #cafeteria .facility-section-content::before {
        border-radius: 0 28px 28px 0;
        top: 4.0rem;
        height: 50.0rem;
    }
    #cafeteria .facility-section-content::after {
        top: 0;
        right: 0;
        width: 20.0rem;
        height: 40.0rem;
    }
    #cafeteria .facility-txt-box {
        width: 80%;
        margin-bottom: 2.4rem;
    }
    #cafeteria .facility-dots-content {
        margin-bottom: 1.6rem;
    }
    #cafeteria .facility-txt {
        font-size: 1.6rem;
    }
    #cafeteria .facility-info-content {
        gap: 2.0rem;
        max-width: 50.0rem;
        width: 80%;
        padding: 2.4rem 1.6rem;
    }
    #cafeteria .wrapper {
        margin-top: -14.0rem;
    }
    .cafeteria-title-box {
        margin-bottom: 6.0rem;
    }
    .cafeteria-subtitle {
        font-size: 2.0rem;
    }
    .cafeteria-s-title {
        font-size: 1.4rem;
        margin-right: .2rem;
    }
    .cafeteria-title {
        font-size: 2.4rem;
    }
    .cafeteria-menu-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 4.0rem 10%;
    }
    .cafeteria-menu-item {
        display: flex;
        flex-flow: column;
    }
    .cafeteria-menu-img {
        margin-bottom: 1.6rem;
    }
    .cafeteria-menu-title {
        margin-bottom: -1.0rem;
    }
    .cafeteria-menu-dots-content {
        margin-bottom: 1.6rem;
    }
    .cafeteria-menu-txt {
        font-size: 1.6rem;
    }
    .cafeteria-btn {
        margin: 4.0rem auto 0;
    }
}
/* 観光 */
#sightseeing {
    position: relative;
    background-color: #F1FBFF;
    padding: 12.9rem 0 19.3rem;
    border-top-left-radius: 100% 25vw;
    border-top-right-radius: 100% 25vw;
}
#sightseeing .facility-txt-box {
    width: 100%;
    max-width: 65.6rem;
}
.park-content {
    display: flex;
    flex-flow: column;
    gap: 4.2rem;
    margin-bottom: 12.0rem;
}
.park-content .facility-dots-content,
.museum-content .facility-dots-content {
    width: 92%;
}
.park-img-content,
.museum-img-content {
    display: flex;
    justify-content: space-between;
}
.park-img {
    width: 48%;
}
.park-note-txt {
    width: 100%;
    max-width: 78%;
    font-weight: bold;
    color: #B20606;
}
.museum-content .facility-section-content {
    display: flex;
    align-items: flex-end;
    gap: 6%;
    margin-bottom: 8.6rem;
}
.museum-content .facility-txt-box {
    width: 100%;
    max-width: 64.5rem;
}
.museum-content .facility-info-content {
    display: flex;
    flex-flow: column;
    gap: 3.2rem;
    width: 100%;
    max-width: 64.5rem;
    max-height: none;
    height: 100%;
    background-color: #fff;
    border-radius: 30px;
    padding: 2.3rem 1.1rem 2.3rem 1.9rem;
}
.museum-content .facility-hours,
.museum-content .facility-holiday,
.museum-content .facility-price {
    display: flex;
    align-items: center;
    gap: 2.1rem;
}
.museum-tab {
    font-size: 1.8rem;
    color: #fff;
    background-color: #7EC8E3;
    border-radius: 11px;
    text-align: center;
    width: 100%;
    max-width: 9.1rem;
    padding: .5rem 0 .7rem;
    white-space: nowrap;
}
.museum-img {
    width: 48%;
}

@media screen and (max-width: 1024px) {
    #sightseeing {
        padding: 6.0rem 0 8.0rem;
        border-top-left-radius: 100% 20vw;
        border-top-right-radius: 100% 20vw;
    }
    #sightseeing .facility-txt-box {
        max-width: 48.0rem;
    }
    .park-content {
        gap: 2.8rem;
        margin-bottom: 6.0rem;
    }
    .park-note-txt {
        max-width: 100%;
        font-size: 1.8rem;
    }
    .museum-content .facility-section-content {
        margin-bottom: 4.0rem;
    }
    .museum-content .facility-txt-box {
        max-width: 40.0rem;
    }
    .museum-content .facility-info-content {
        gap: 2.6rem;
        border-radius: 24px;
        padding: 1.8rem .8rem 1.8rem 1.4rem;
    }
    .museum-content .facility-hours,
    .museum-content .facility-holiday,
    .museum-content .facility-price {
        gap: 1.8rem;
    }
    .museum-tab {
        font-size: 1.4rem;
        border-radius: 8px;
        padding: .4rem 0 .5rem;
    }
}

@media screen and (max-width: 768px) {
    #sightseeing {
        padding: 4.0rem 0 4.0rem;
        border-top-left-radius: 100% 20vw;
        border-top-right-radius: 100% 20vw;
    }
    .park-content {
        gap: 2.4rem;
        margin-bottom: 4.0rem;
    }
    .park-img-content,
    .museum-img-content {
        display: flex;
        flex-flow: column;
        gap: 2.4rem;
    }
    .park-img {
        width: 100%;
    }
    .park-note-txt {
        font-size: 1.6rem;
        max-width: 100%;
    }
    .museum-content .facility-section-content {
        gap: 2.4rem;
        margin-bottom: 2.4rem;
    }
    .museum-content .facility-txt-box {
        width: 100%;
        max-width: 64.5rem;
    }
    .museum-content .facility-info-content {
        display: flex;
        flex-flow: column;
        gap: 1.6rem;
        width: 100%;
        max-width: 100%;
        max-height: none;
        height: 100%;
        background-color: #fff;
        border-radius: 30px;
        padding: 1.4rem .8rem;
    }
    .museum-content .facility-hours,
    .museum-content .facility-holiday,
    .museum-content .facility-price {
        display: flex;
        align-items: center;
        gap: 2.1rem;
    }
    .museum-tab {
        font-size: 1.4rem;
        border-radius: 8px;
        max-width: 6.8rem;
        padding: .2rem 0 .4rem;
    }
    .museum-img {
        width: 100%;
    }
}

/*============================
周辺観光
============================*/
#sightseeing-fv {
    position: relative;
    padding: 8.9rem 0 13.2rem;
    background-image: url("../../images/sightseeing-page/sightseeing-bg.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}
.sightseeing-txt-content {
    position: relative;
    background-image: url("../../images/sightseeing-page/sightseeting-txt-content-bg.jpg");
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 29.0rem 0 23.2rem;
    margin-top: -10.0rem;
}
.sightseeing-txt-content::after {
    content: '';
    position: absolute;
    background-image: url("../../images/sightseeing-page/nature-top-sakura.png");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 71.1rem;
    height: 15.5rem;
    bottom: -7.5rem;
    right: -10.0rem;
    z-index: 10; 
}
.sightseeing-txt-box {
    display: flex;
    flex-flow: column;
    gap: 4.0rem
}
.sightseeing-title {
    font-size: 4.0rem;
    font-weight: bold;
    color: #3FA6CB;
}

@media screen and (max-width: 1300px) {
    .sightseeing-txt {
        font-size: 1.8rem;
    }
}
@media screen and (max-width: 1024px) {
    #sightseeing-fv {
        padding: 8.0rem 0 10.0rem;
    }
    .sightseeing-txt-content {
        padding: 18.0rem 0 16.0rem;
        margin-top: -10.0rem;
    }
    .sightseeing-txt-content::after {
        width: 60.0rem;
        height: 12.0rem;
        bottom: -6.0rem;
        right: -8.0rem;
    }
    .sightseeing-txt-box {
        gap: 2.8rem
    }
    .sightseeing-title {
        font-size: clamp(2.8rem, calc(40 / 1024 * 100vw), 4.0rem);
    }
    .sightseeing-txt {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 768px) {
    #sightseeing-fv {
        padding: 4.0rem 0 6.0rem;
    }
    .sightseeing-txt-content {
        padding: 14.0rem 0 10.0rem;
        margin-top: -10.0rem;
    }
    .sightseeing-txt-content::after {
        width: 40.0rem;
        height: 10.0rem;
        bottom: -4.5rem;
        right: -4.0rem;
    }
    .sightseeing-txt-box {
        gap: 2.0rem
    }
    .sightseeing-title {
        font-size: clamp(2.2rem, calc(28 / 500 * 100vw), 2.8rem);
    }
}
/* 自然 */
#nature {
    position: relative;
    background-color: #fff;
}
.nature-big-title {
    position: absolute;
    font-size: clamp(10.0rem, calc(144 / 1920 * 100vw), 14.4rem);
    font-weight: bold;
    color: #F3E6D3;
    writing-mode: vertical-rl;
    line-height: .9;
    letter-spacing: 0.1em;
}
.nature-content {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 12.7rem 0 24.0rem;
    z-index: 30;
}
.nature-item {
    display: flex;
    flex-flow: column;
    width: 29%;
}
.nature-img {
    margin-bottom: 4.3rem;
}
.nature-item .dots-content {
    justify-content: center;
    margin-bottom: 2.9rem;
}
.nature-item-title,
.hot-spring-item-title {
    font-size: clamp(2.2rem, calc(40 / 1920 * 100vw), 4.0rem);
    font-weight: 500;
    color: #3FA6CB;
    text-align: center;
    margin-bottom: 2.7rem;
}
.nature-item-txt {
    padding: 0 12% 3.3rem;
}
.nature-btn {
    border: 1px solid #E68539;
    border-radius: 5px;
    width: 100%;
    max-width: 26.0rem;
    padding: 1.4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .8rem;
    background-color: #fff;
    margin: auto auto 0;
    transition: all .3s;
}
.nature-btn-txt {
    font-size: 1.6rem;
    font-weight: 500;
    color: #E68539;
}
.nature-btn img {
    width: 1.5rem;
    height: 1.5rem;
}

@media screen and (min-width: 769px) {
    .nature-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    .nature-big-title {
        font-size: clamp(7.0rem, calc(90 / 1024 * 100vw), 9.0rem);
    }
    .nature-content {
        display: flex;
        justify-content: space-between;
        padding: 8.0rem 0 20.0rem;
    }
    .nature-item {
        width: 31%;
    }
    .nature-img {
        margin-bottom: 3.2rem;
    }
    .nature-item .dots-content {
        margin-bottom: 2.4rem;
    }
    .nature-item-title,
    .hot-spring-item-title {
        font-size: clamp(2.0rem, calc(24 / 1024 * 100vw), 2.2rem);
        margin-bottom: 2.0rem;
    }
    .nature-item-txt {
        font-size: 1.8rem;
        padding: 0 8% 2.9rem;
    }
    .nature-btn {
        min-width: 18.0rem;
        padding: 1.2rem 0;
        gap: .6rem;
    }
    .nature-btn-txt {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .nature-big-title {
        font-size: clamp(6.8rem, calc(100 / 500 * 100vw), 12.0rem);
    }
    .nature-content {
        display: flex;
        flex-flow: column;
        align-items: center;
        gap: 3.2rem;
        padding: 4.0rem 0 10.0rem;
    }
    .nature-item {
        width: 80%;
    }
    .nature-img {
        margin-bottom: 2.4rem;
    }
    .nature-item .dots-content {
        margin-bottom: 1.6rem;
    }
    .nature-item-title,
    .hot-spring-item-title {
        font-size: clamp(2.4rem, calc(32 / 500 * 100vw), 3.2rem);
        margin-bottom: 1.6rem;
    }
    .nature-item-txt {
        font-size: 1.6rem;
        padding: 0 5% 2.0rem;
    }
    .nature-btn {
        padding: 1.2rem 0;
    }
    .nature-btn-txt {
        font-size: 1.4rem;
    }
    .nature-btn img {
        width: 1.3rem;
        height: 1.3rem;
    }
}
/* 温泉 */
#hot-spring {
    position: relative;
    background-image: url("../../images/sightseeing-page/hot-spring-bg.png");
    background-position: bottom left;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
    padding: 22.0rem 0 12.6rem;
    margin-top: -20.0rem;
    z-index: 20;
}
#hot-spring::before {
    position: absolute;
    content: '';
    background-image: url("../../images/sightseeing-page/nature-bottom-sakura.png");
    background-size: contain;
    background-repeat: no-repeat;
    top: -8.5rem;
    left: -5.5rem;
    width: 46.0rem;
    height: 45.5rem;
    z-index: 10;
}
.hot-spring-content {
    position: relative;
    width: 71%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    z-index: 30;
}
.hot-spring-item {
    display: flex;
    flex-flow: column;
    width: 44%;
}
.hot-spring-img {
    width: 93%;
    margin-bottom: 5.0rem;
}
.hot-spring-item .dots-content {
    justify-content: center;
    margin-bottom: 2.9rem;
}
.hot-spring-item-txt {
    padding: 0 7% 3.3rem;
}
.hot-spring-btn {
    border: 1px solid #E68539;
    border-radius: 5px;
    width: 100%;
    max-width: 24.0rem;
    padding: 1.4rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.8rem;
    background-color: #fff;
    margin: auto auto 0;
    transition: all .3s;
}
.hot-spring-btn-txt {
    font-size: 1.6rem;
    font-weight: 500;
    color: #E68539;
}
.hot-spring-btn img {
    width: 1.5rem;
    height: 1.5rem;
}
.hot-spring-big-title {
    position: absolute;
    font-size: clamp(10.0rem, calc(144 / 1920 * 100vw), 14.4rem);
    font-weight: bold;
    color: #fff;
    writing-mode: vertical-rl;
    line-height: .9;
    letter-spacing: 0.1em;
    bottom: 5.6rem;
    right: 0;
}
@media screen and (min-width: 769px) {
    .hot-spring-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    #hot-spring {
        padding: 14.0rem 0 10.0rem;
        z-index: 20;
    }
    #hot-spring::before {
        top: -5.0rem;
        left: -3.5rem;
        width: 30.0rem;
        height: 30.0rem;
        z-index: 10;
    }
    .hot-spring-content {
        width: 80%;
        display: flex;
        justify-content: space-between;
        margin: 0 auto;
    }
    .hot-spring-item {
        display: flex;
        flex-flow: column;
        width: 48%;
    }
    .hot-spring-img {
        margin-bottom: 3.2rem;
    }
    .hot-spring-item .dots-content {
        margin-bottom: 2.4rem;
    }
    .hot-spring-item-txt {
        font-size: 1.8rem;
        padding: 0 5% 2.8rem;
    }
    .hot-spring-btn {
        max-width: 24.0rem;
        min-width: 18.0rem;
        padding: 1.2rem 0;
        gap: 1.4rem;
    }
    .hot-spring-btn-txt {
        font-size: 1.4rem;
    }
    .hot-spring-btn img {
        width: 1.3rem;
        height: 1.3rem;
    }
    .hot-spring-big-title {
        font-size: clamp(7.0rem, calc(90 / 1024 * 100vw), 9.0rem);
        bottom: 4.0rem;
    }
}

@media screen and (max-width: 768px) {
    #hot-spring {
        position: relative;
        background-image: url("../../images/sightseeing-page/hot-spring-bg-sp.png");
        background-position: bottom left;
        background-size: cover;
        background-repeat: no-repeat;
        z-index: 10;
        padding: 10.0rem 0 9.0rem;
        margin-top: -10.0rem;
        z-index: 20;
    }
    #hot-spring::before {
        top: -3.0rem;
        left: -2.8rem;
        width: 23.0rem;
        height: 22.0rem;
    }
    .hot-spring-content {
        width: 80%;
        flex-flow: column;
        align-items: center;
        justify-content: flex-start;
        gap: 3.2rem;
    }
    .hot-spring-item {
        display: flex;
        flex-flow: column;
        align-items: center;
        width: 100%;
    }
    .hot-spring-img {
        margin-bottom: 2.4rem;
    }
    .hot-spring-item .dots-content {
        justify-content: center;
        margin-bottom: 1.6rem;
    }
    .hot-spring-item-txt {
        font-size: 1.6rem;
        padding: 0 5% 2.0rem;
    }
    .hot-spring-big-title {
        position: absolute;
        font-size: clamp(3.0rem, calc(90 / 500 * 100vw), 9.0rem);
        font-weight: bold;
        color: #fff;
        writing-mode: vertical-rl;
        line-height: .9;
        letter-spacing: 0.1em;
        bottom: 2.4rem;
        right: 0;
    }
}
/* 観光画像スライダー */
#sightseeing-splide {
    position: relative;
}
#sightseeing-splide .splide__slide img {
    width: 100%;
    aspect-ratio: 553 / 369;
    object-fit: cover;
    display: block;
}
/* === ページネーションの全体配置を中央に === */
.splide__pagination {
    gap: 5%;
    position: absolute;
}
/* === ページネーションのドット === */
.splide__pagination__page {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1px solid #E68539;
    transition: all 0.3s ease;
    opacity: 1;
}
/* アクティブなドット */
.splide__pagination__page.is-active {
    background-color: #E68539;
    opacity: 1;
    transform: scale(1);
}
/* === 矢印をページネーションの左右に配置 === */
.splide__arrows {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  top: -2.6rem;
}
/* === 矢印ボタンの共通スタイル === */
.splide__arrow {
  background: none;
  cursor: pointer;
  opacity: 1;
}
/* テキストとして表示 */
.splide__arrow--prev::before,
.splide__arrow--next::before {
    content: "";
    width: 16px;
    height: 16px;
    border-bottom: solid 3px #E68539;
    border-left: solid 3px #E68539;
    position: absolute;
    top: 1.4rem;
    transition: all .3s;
}
.splide__arrow--prev::before {
    transform: rotate(45deg);
    left: 29vw;
}
.splide__arrow--next::before {
    transform: rotate(225deg);
    right: 29vw;
}

@media screen and (min-width: 769px) {
    .splide__arrow .splide__arrow--prev:hover,
    .splide__arrow .splide__arrow--next:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1024px) {
    .splide__pagination {
        gap: 3%;
        position: absolute;
    }
    .splide__pagination__page {
        width: 1.6rem;
        height: 1.6rem;
    }
    .splide__arrow--prev::before,
    .splide__arrow--next::before {
        content: "";
        width: 12px;
        height: 12px;
        border-bottom: solid 3px #E68539;
        border-left: solid 3px #E68539;
        position: absolute;
        top: 1.9rem;
        transition: all .3s;
    }
}

@media screen and (max-width: 768px) {
    .splide__pagination {
        gap: 10%;
        position: absolute;
    }
    .splide__arrow--prev::before {
        transform: rotate(45deg);
        left: 15vw;
    }
    .splide__arrow--next::before {
        transform: rotate(225deg);
        right: 15vw;
    }
}
/*============================
会社概要
============================*/
#about-page-fv {
    position: relative;
    padding: 10.0rem 0 12.2rem;
    background-image: url("../../images/about-page/about-bg.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: 10;
}
#about {
    position: relative;
    background-color: #E4F2F7;
    padding: 20.0rem 0 12.4rem;
    margin-top: -10.0rem;
    z-index: -10;
}
#about::before {
    content: '';
    position: absolute;
    background-image: url("../../images/about-page/about-top-sakura.png");
    background-size: cover;
    background-repeat: no-repeat;
    top: 8.0rem;
    right: -12.0rem;
    width: 47.6rem;
    height: 16.2rem;
    z-index: -5;
}
.about-content {
    background-color: #fff;
    border-radius: 78px;
    padding: 9.4rem 20% 10.4rem;
}
.about-title {
    display: flex;
    flex-flow: column;
    align-items: flex-start; 
    font-weight: bold;
    margin-bottom: 6.4rem;
    width: fit-content;
}
.about-s-title {
    font-size: 1.8rem;
    line-height: 1.25;
}
.about-center-title {
    font-size: 2.5rem;
    text-align: center;
    width: 100%;
}
.about-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 10.0rem;
    font-size: clamp(1.4rem, calc(18 / 1920 * 100vw), 1.8rem);
}
.about-table tr {
    border: 1px solid #3FA6CB;
}
.about-table th {
    width: calc(200 / 800 * 100%);
    text-align: left;
    border-right: 1px solid #3FA6CB;
    background-color: #F1FBFF;
    font-weight: 400;
    padding: 2.2rem 0 2.1rem 1.5rem;
    vertical-align: middle;
}
.about-table .table-space {
    height: 15.5rem;
}
.about-table .table-space td {
    vertical-align: top;
}
.about-table td{
    width: calc(600 / 800 * 100%);
    padding: 2.2rem 0 2.1rem 1.8rem;
}
.about-map {
    width: 100%;
}
.about-map iframe {
    width: 100%;
    border-radius: 48px;
}
.about-map-txt {
    text-align: right;
    font-size: 1.3rem;
    color: #3FA6CB;
}

@media screen and (max-width: 1300px) {
    .about-content {
        padding: 9.4rem 16% 10.4rem;
    }
}
@media screen and (max-width: 1024px) {
    #about-page-fv {
        padding: 8.0rem 0 10.0rem;
    }
    #about {
        padding: 16.0rem 0 8.0rem;
    }
    #about::before {
        top: 9.0rem;
        right: -4.5rem;
        width: 25.0rem;
        height: 10.0rem;
    }
    .about-content {
        background-color: #fff;
        border-radius: 60px;
        padding: 6.0rem 6% 6.0rem;
    }
    .about-title {
        margin-bottom: 4.0rem;
    }
    .about-table {
        margin-bottom: 4.0rem;
    }
    .about-map iframe {
        border-radius: 32px;
    }
}

@media screen and (max-width: 768px) {
    .about-table,
    .about-table tbody,
    .about-table tr,
    .about-table th,
    .about-table td {
        display: block;
        width: 100%;
    }
    #about-page-fv {
        padding: 4.0rem 0 6.0rem;
    }
    #about {
        padding: 10.0rem 0 2.4rem;
        margin-top: -8.0rem;
    }
    #about::before {
        top: 8.0rem;
        right: -1.5rem;
        width: 10.0rem;
        height: 4.0rem;
    }
    .about-content {
        border-radius: 40px;
        padding: 3.2rem 5% 3.2rem;
    }
    .about-title {
        margin-bottom: 1.4rem;
    }
    .about-s-title {
        font-size: 1.4rem;
    }
    .about-center-title {
        font-size: 2.4rem;
    }
    .about-table {
        margin-bottom: 2.4rem;
        font-size: clamp(1.0rem, calc(14 / 500 * 100vw), 1.4rem);
        border: none;
    }
    .about-table .table-space {
        height: auto;
    }
    .about-table tr {
        border: 1px solid #3FA6CB;
    }
    .about-table tr:not(:first-child) {
        border-top: none;
    }
    .about-table th,
    .about-table td {
        padding: 1.0rem 0 1.0rem .8rem;
        width: 100%;
        border: none;
        border-top: 1px solid #3FA6CB;
    }
    .about-table th:first-child {
        border-top: none;
    }
    .about-map iframe {
        border-radius: 24px;
    }
    .about-map-txt {
        font-size: 1.0rem;
    }
}
/*============================
お問い合わせ
============================*/
#contact {
    background-image: url("../../images/about-page/contact-bg.jpg");
    padding: 14.7rem 0;
}
.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2E5E4E;
    background-color: #fff;
    border-radius: 28px;
    padding: 7.2rem 8.0rem;
}
.contact-title {
    font-size: 4.6rem;
    font-weight: bold;
    margin-bottom: 1.7rem;
}
.contact-txt {
    position: relative;
    font-size: 1.8rem;
    font-weight: 900;
}
.contact-txt::after {
    content: '';
    display: inline-block;
    background-image: url("../../images/about-page/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 1.4rem;
    height: 1.3rem;
    margin-left: 1.6rem;
}
.contact-btn {
    border: 3px solid #2E5E4E;
    border-radius: 999px;
    padding: 2.3rem 10.3rem 1.8rem 6.9rem;
    display: flex;
    align-items: center;
    gap: 4.6rem;
    transition: all .3s;
}
.contact-btn img {
    width: 5.6rem;
    height: 100%;
}
.contact-btn-txt {
    font-size: 3.9rem;
    font-weight: bold;
    color: #2E5E4E;
}

@media screen and (min-width: 769px) {
    .contact-btn:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 1300px) {
    .contact-btn {
        padding: 2.3rem 6.0rem 1.8rem 4.0rem;
        gap: 3.2rem;
    }
    .contact-btn img {
        width: 4.8rem;
    }
    .contact-btn-txt {
        font-size: 3.2rem;
    }
}
@media screen and (max-width: 1024px) {
    #contact {
        background-image: url("../../images/about-page/contact-bg.jpg");
        padding: 8.0rem 0;
    }
    .contact-content {
        flex-flow: column;
        justify-content: flex-start;
        align-items: center;
        gap: 2.0rem;
        border-radius: 20px;
        padding: 4.0rem 4.8rem;
    }
    .contact-title {
        font-size: 3.2rem;
        margin-bottom: 1.0rem;
    }
    .contact-txt {
        font-size: 1.6rem;
    }
    .contact-btn {
        padding: 1.6rem 8.0rem 1.6rem 4.8rem;
        gap: 3.2rem;
    }
    .contact-btn img {
        width: 4.0rem;
    }
    .contact-btn-txt {
        font-size: 2.8rem;
    }
}

@media screen and (max-width: 768px) {
    #contact {
        background-image: url("../../images/about-page/contact-bg.jpg");
        padding: 4.0rem 0;
    }
    .contact-content {
        border-radius: 20px;
        padding: 2.4rem 2.0rem;
    }
    .contact-title {
        font-size: 2.8rem;
        margin-bottom: .4rem;
    }
    .contact-txt {
        font-size: 1.4rem;
    }
    .contact-txt::after {
        width: 1.2rem;
        height: .8rem;
        margin-left: .8rem;
    }
    .contact-btn {
        border: 2px solid #2E5E4E;
        padding: 1.6rem 3.2rem 1.6rem 2.4rem;
        gap: 1.8rem;
    }
    .contact-btn img {
        width: 3.2rem;
    }
    .contact-btn-txt {
        font-size: 2.4rem;
    }
}

/*============================
投稿一覧
============================*/
#news-content-fv {
    position: relative;
    padding: 8.1rem 0 12.0rem;
    background-image: url("../../images/news-content-page/news-content-bg.png");
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 10;
}
.news-content-big-title {
    font-size: 10.0rem;
    font-weight: bold;
    color: #fff;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    #news-content-fv {
        padding: 6.0rem 0 10.0rem;
    }
    .news-content-big-title {
        font-size: 8.0rem;
    }
}

@media screen and (max-width: 768px) {
    #news-content-fv {
        padding: 4.0rem 0 6.0rem;
    }
    .news-content-big-title {
        font-size: clamp(4.0rem, calc(60 / 500 * 100vw), 4.8rem);
    }
}
/* 投稿一覧 */
#archive,
#post {
    background-color: #F3E6D3;
    padding: 25.8rem 0 14.0rem;
    margin-top: -12.0rem;
}
.archive-content {
    width: 100%;
    padding: 8.1rem 0 9.3rem;
    background-color: #fff;
    border: 1px solid #7EC8E3;
    border-radius: 84px;
    box-shadow: 0px 13px 13px rgba(0, 0, 0, .16);
}
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 4.0rem;
}
.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
}
.nav-links .page-numbers {
    transition: all .3s;
}
.nav-links .page-numbers:not(.next):not(.prev) {
    color: #fff;
    background-color: #7EC8E3;
    padding: 0 .8rem;
}
.nav-links .page-numbers.current {
    opacity: .7;
}

@media screen and (min-width: 769px) {
  .nav-links .page-numbers:hover {
    opacity: .7;
  }
}
@media screen and (max-width: 1024px) {
    #archive,
    #post {
        background-color: #F3E6D3;
        padding: 16.0rem 0 6.0rem;
        margin-top: -8.0rem;
    }
    .archive-content {
        padding: 4.8rem 0 4.0rem;
        border-radius: 64px;
    }
    .pagination {
        margin-top: 2.0rem;
    }
    .pagination .nav-links {
        font-size: 1.6rem;
        gap: 2.4rem;
    }
    .nav-links .page-numbers:not(.next):not(.prev) {
        padding: 0 .6rem;
    }
}
@media screen and (max-width: 768px) {
    #archive,
    #post {
        background-color: #F3E6D3;
        padding: 10.0rem 0 4.0rem;
        margin-top: -4.0rem;
    }
    .archive-content {
        padding: 2.4rem 0 4.0rem;
        border-radius: 48px;
    }
    .pagination {
        margin-top: 1.4rem;
    }
}
/*============================
投稿
============================*/
.post-content {
    width: 100%;
    padding: 7.7rem 5.6rem 4.4rem;
    background-color: #fff;
    border: 1px solid #7EC8E3;
    border-radius: 84px;
    box-shadow: 0px 13px 13px rgba(0, 0, 0, .16);
}
.post-title {
    font-size: 2.5rem;
    font-weight: bold;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 2px solid #707070;
}
.post-time {
    display: block;
    font-size: 1.6rem;
    text-align: right;
    margin-bottom: 1.4rem;
}
.post-breadcrumbs {
    font-size: 1.8rem;
    text-align: right;
    margin-bottom: 3.3rem;
}
.post-txt {
    margin-bottom: 4.0rem;
}
.post-pager {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.8rem;
}
.post-page-prev,
.post-page-next {
    transition: all .3s;
}

@media screen and (min-width: 769px) {
    .post-page-prev:hover,
    .post-page-next:hover {
        opacity: .7;
    }
}

@media screen and (max-width: 768px) {
    .post-content {
        padding: 4.0rem 2.4rem 2.4rem;
        border-radius: 48px;
    }
    .post-title {
        font-size: 2.0rem;
        padding-bottom: .8rem;
        margin-bottom: .8rem;
    }
    .post-time {
        font-size: 1.4rem;
        margin-bottom: .8rem;
    }
    .post-breadcrumbs {
        font-size: 1.6rem;
        margin-bottom: 2.0rem;
    }
    .post-txt {
        margin-bottom: 2.4rem;
    }
    .post-pager {
        font-size: 1.6rem;
    }
}