@charset "utf-8";


/*----------------------------------------------------

	Topページ用CSS

----------------------------------------------------*/

/*----------------------------------------------------

	.main-visual-sec

----------------------------------------------------*/
.main-visual-sec {
    background: #FFF3EE;
    position: relative;
    overflow-x: hidden;
    /*overflow-y: scroll;*/ /* スクロール自体は有効にする */
    -ms-overflow-style: none;    /* IE, Edge用 */
    scrollbar-width: none;       /* Firefox用 */
    z-index: 1;
}

.main-visual-sec::-webkit-scrollbar {
    display: none;               /* Chrome, Safari用 */
}

.main-visual-sec img {
    display: block;
}

.main-visual-sec .main-visual-box {
    width: 100%;
    text-align: right;
}

.main-visual-sec .main-pic {
   /* position: absolute;
    top: 0;
    right: 0;*/
}

.main-visual-sec .main-visual-box img {
    width: 90%;
    height: auto;
    display: inline;
}

.main-visual-sec .main-img01 {
    position: absolute;
    top: 70px;
    left: -40px;
    /*left: calc(50% - 100px);*/
    
    width: 20%;
    height: auto;
}

.main-visual-sec .main-img02 {
    position: absolute;
    bottom: 0px;
    /*top: calc(50% - 50px);*/
    right: -80px;
    width: 22%;
    height: auto;
}

.main-visual-sec .yukemuri01 {
    position: absolute;
    top: 4%;
    left: 24%;
    width: 30%;
    height: auto;
    z-index: 1;
}

.main-visual-sec .yukemuri02 {
    position: absolute;
    top: 20%;
    left: -8%;
    width: 25%;
    height: auto;
    z-index: 1;
}

.main-visual-sec .yukemuri03 {
    position: absolute;
    top: 6%;
    right: -3%;
    width: 22%;
    height: auto;
    z-index: 1;
}

.main-visual-sec .yukemuri04 {
    position: absolute;
    top: 50%;
    right: -18%;
    width: 30%;
    height: auto;
    z-index: 1;
}

.main-visual-sec .yukemuri05 {
    position: absolute;
    top: 64%;
    right: 33%;
    width: 20%;
    height: auto;
    z-index: 1;
}

.main-visual-sec .yukemuri06 {
    position: absolute;
    bottom: 10%;
    left: -6%;
    width: 25%;
    height: auto;
    z-index: 1;
}

.main-visual-sec .main-catchcopy {
    position: absolute;
    top: calc(28%);
    left: 5%;
    
    width: 50%;
    height: auto;
    z-index: 2;
}

.main-visual-sec .maji-txt {
    position: absolute;
    top: 13%;
    left: 47%;
    width: 12%;
    height: auto;
    z-index: 2;
}

.main-visual-sec .main-read-box {
    position: absolute;
    top: calc(53%);
    left: 8%;
    width: 550px;
    /*width: 33%;*/
    z-index: 2;
}

.main-visual-sec .main-read-box h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.main-visual-sec .main-read-box h2 span {
    font-size: 24px;
}

.main-visual-sec .main-read-box h2 e {
    color: #EC5C4E;
    font-style: normal;
}

.main-visual-sec .main-read-box .main-read-txt {
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
    margin-bottom: 20px;
}



/*　max-width: 960px より小さい幅の時　*/
@media screen and (max-width: 959px) {
    .main-visual-sec .yukemuri01 {
        position: absolute;
        top: 4%;
        left: 14%;
        width: 34%;
        height: auto;
        z-index: 1;
    }

    .main-visual-sec .yukemuri02 {
        position: absolute;
        top: 17%;
        left: -4%;
        width: 25%;
        height: auto;
        z-index: 1;
    }

    .main-visual-sec .yukemuri03 {
        position: absolute;
        top: 8%;
        right: -3%;
        width: 25%;
        height: auto;
        z-index: 1;
    }

    .main-visual-sec .yukemuri04 {
        position: absolute;
        top: 42%;
        right: -8%;
        width: 30%;
        height: auto;
        z-index: 1;
    }

    .main-visual-sec .yukemuri05 {
        position: absolute;
        top: 66%;
        right: 6%;
        width: 25%;
        height: auto;
        z-index: 1;
    }

    .main-visual-sec .yukemuri06 {
        position: absolute;
        bottom: 14%;
        left: -6%;
        width: 40%;
        height: auto;
        z-index: 1;
    }
    
}



/* アニメーションの定義 */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px); /* 左に50pxズレた状態から */
    }
    100% {
        opacity: 1;
        transform: translateX(0);    /* 元の位置へ */
    }
}

/* アニメーションを適用する共通クラス */
.mv-fade {
    opacity: 0; /* 最初は隠しておく */
    animation: slideInLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* 各要素の遅延（delay）設定：少しずつズラして発動 */
.mv-fade-01 { animation-delay: 0.2s; } /* キャッチコピー */
.mv-fade-02 { animation-delay: 0.5s; } /* マジで！？ */
.mv-fade-03 { animation-delay: 0.8s; } /* H2タイトル */
.mv-fade-04 { animation-delay: 1.1s; } /* リード文 */
.mv-fade-05 { animation-delay: 1.4s; } /* お問い合わせボタン */



/* 右下から飛び込み ＋ 拡大 ＋ バウンド ＋ 元に戻る */
@keyframes bounceInBottomRight {
    0% {
        opacity: 0;
        /* 右下に配置、かつ最初はかなり小さくしておく */
        transform: translate(60px, 60px) scale(0.3);
    }
    60% {
        opacity: 1;
        /* 一旦、本来の位置を通り越して少し左上へ、サイズは1.2倍まで膨らむ */
        transform: translate(-10px, -10px) scale(1.2);
    }
    80% {
        /* 反動で少し戻りつつ、サイズを1倍に近づける */
        transform: translate(5px, 5px) scale(0.95);
    }
    100% {
        opacity: 1;
        /* 最終的に本来の位置・サイズ(1.0)でピタッと止まる */
        transform: translate(0, 0) scale(1);
    }
}

/* 適用するクラス */
.mv-fade-special {
    opacity: 0;
    /* 0.8秒くらいでキビキビ動かすのが「マジで！？」感が出ます */
    animation: bounceInBottomRight 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1.4s; /* 前の要素が出終わるタイミングに合わせて調整 */
}








/*----------------------------------------------------

	.slider-sec

----------------------------------------------------*/
.slider-sec {
    overflow: hidden;
    padding: 50px 0; /* 上下の余白はお好みで */
    background: #FFF3EE;
}

.slider-sec.swiper {
    width: 100%;
    overflow: hidden;
}

.slider-sec .swiper-wrapper {
    /* 等速移動を実現するためのタイミング関数 */
    transition-timing-function: linear !important;
    align-items: center;
}

.slider-sec .swiper-slide {
    width: auto; /* 画像のサイズに合わせる */
}

.slider-sec img {
    display: block;
    height: auto;
    max-width: none; /* Swiperの制約をリセット */
}

/* スライダー全体のクリック反応をCSSレベルで無効化する */
.js-infinite-slider {
    pointer-events: none; /* 要素への全てのクリック・タッチを「無視」させる */
}

.js-infinite-slider .swiper-wrapper {
    /* pointer-events: none の影響で止まるのを防ぐ */
    will-change: transform;
}



/*----------------------------------------------------

	.about-sec

----------------------------------------------------*/
.about-sec {
    position: relative;
    background: #FFF3EE;
    padding: 100px 0 50px;
    z-index: 1;
    overflow: hidden;
}

.about-sec .about-box {
    margin-bottom: 200px;
}

/*-----*/

.about-sec .about-everyday-box {
    margin-bottom: 100px;
}

.about-sec .about-everyday-box .sub-ttl-01 {
    text-align: center;
}

.about-sec .about-everyday-box .section-ttl-h3-02 {
    text-align: center;
}

.about-sec .about-everyday-box .textC {
    margin-bottom: 50px;
}

.about-sec .about-everyday-box ul {
    display: flex;
    gap: 35px;
    padding: 0;
}

.about-sec .about-everyday-box ul li {
    width: 33.3333%;
    position: relative;
    overflow: visible !important;
}

.about-sec .about-everyday-box ul li a {
    display: block;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 30px 0;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: visible !important;
}

.about-sec .about-everyday-box ul li a:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-sec .about-everyday-box ul li h4 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.4;
}

.about-sec .about-everyday-box ul li img {
    display: block;
    margin: 0 auto 20px;
}

.about-sec .about-everyday-box ul li p {
    letter-spacing: 0;
}

.about-sec .about-everyday-box ul li img.link-arrow {
    width: 34px;
    height: 34px;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
}

/*-----*/

.about-sec .about-data-box {
    margin-top: 180px;
}

/*-----*/

.about-sec .about-data-box {
    margin-bottom: 150px;
}

.about-sec .about-data-box .about-data-inner {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.about-sec .about-data-box .data-txt {
    width: 480px;
}

.about-sec .about-data-box .data-txt p {
    margin-bottom: 30px;
}

.about-sec .about-data-box .data-box {
    width: 480px;
    background: #FFFFFF;
    border-radius: 40px;
    padding: 30px;
    margin-bottom: 30px;
}

.about-sec .about-data-box .data-box h4 {
    font-size: 24px;
    color: #EC5C4E;
    text-align: center;
    border: 1px solid #EC5C4E;
    padding: 8px 0;
    margin-bottom: 20px;
    border-radius: 100px;
    line-height: 1;
}

.about-sec .about-data-box .data-box dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.about-sec .about-data-box .data-box dl dt {
    color: #EC5C4E;
    font-weight: 600;
    width: 25%;
    margin-bottom: 15px;
}

.about-sec .about-data-box .data-box dl dd {
    width: 75%;
    margin-bottom: 15px;
}

.about-sec .price-lifecycle-box {
}

.about-sec .price-lifecycle-box ul {
    color: #EC5C4E;
    border: 1px solid #EC5C4E;
    background: #FFFFFF;
    padding: 20px;
    font-weight: 600;
}

.about-sec .price-lifecycle-box ul li {
    list-style: disc;
    margin-left: 1.5em;
}

/*-----*/

.about-sec  .about-features-box {
    margin-bottom: 150px;
}

.about-sec  .about-features-box .expert-box {
    font-size: 14px;
    margin-top: 20px;
}

.about-sec  .about-features-box .expert-box strong {
    font-size: 18px;
}

/*-----*/

.about-sec .about-infra-box {
    
}

.about-sec .about-infra-box .about-infra-inner {
    display: flex;
    gap:40px;
    margin-bottom: 30px;
}

.about-sec .about-infra-box .about-infra-inner h3 {
    font-size: 50px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.about-sec .about-infra-box .about-infra-inner ul {
}

.about-sec .about-infra-box .about-infra-inner ul li {
    width: 430px;
    background: #FFFFFF;
    border: solid 3px #EC5C4E;
    border-radius: 30px;
    padding: 25px 0;
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
}

.about-sec .about-infra-box .about-infra-inner ul li .value{
    font-size: 22px;
    line-height: 1;
}

.about-sec .about-infra-box .about-infra-inner ul li .value strong{
    font-size: 44px;
    color: #EC5C4E;
}

.about-sec .about-infra-box table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #EC5C4E;
    background-color: #fff;
    text-align: center;
    font-size: 14px;
    table-layout: fixed;
}

.about-sec .about-infra-box table th,
.about-sec .about-infra-box table td {
    border: 1px solid #EC5C4E;
    padding: 5px 5px;
    color: #4a3632;
    vertical-align: middle;
}

.about-sec .about-infra-box table th {
    background-color: #F5C3BC;
    font-weight: bold;
}

.about-sec .about-infra-box table tr:first-child th:nth-child(1),
.about-sec .about-infra-box table tr:first-child th:nth-child(2) {
    background-color: #F5C3BC;
}

/*-----*/

.about-sec .yukemuri-about01 {
    position: absolute;
    display: block;
    top: 1%;
    left: 5%;
}

.about-sec .yukemuri-about02 {
    position: absolute;
    display: block;
    top: 12%;
    right: 2%;
}

.about-sec .yukemuri-about03 {
    position: absolute;
    display: block;
    top: 26%;
    left: 2%;
}

.about-sec .yukemuri-about04 {
    position: absolute;
    display: block;
    top: 32%;
    right: -3%;
}

.about-sec .yukemuri-about05 {
    position: absolute;
    display: block;
    top: 40%;
    right: 10%;
}

.about-sec .yukemuri-about06 {
    position: absolute;
    display: block;
    top: 56%;
    left: 5%;
}

.about-sec .yukemuri-about07 {
    position: absolute;
    display: block;
    top: 72%;
    right: 10%;
}

.about-sec .yukemuri-about08 {
    position: absolute;
    display: block;
    top: 87%;
    left: 10%;
}

@media screen and (max-width: 959px) {
    .about-sec .yukemuri-about01 {
        position: absolute;
        display: block;
        top: 1%;
        left: -4%;
        width: 40%;
        height: auto;
    }

    .about-sec .yukemuri-about02 {
        position: absolute;
        display: block;
        top: 12%;
        right: -10%;
        width: 50%;
        height: auto;
    }

    .about-sec .yukemuri-about03 {
        position: absolute;
        display: block;
        top: 27%;
        left: -8%;
        width: 60%;
        height: auto;
    }

    .about-sec .yukemuri-about04 {
        position: absolute;
        display: block;
        top: 35%;
        right: -8%;
        width: 40%;
        height: auto;
    }

    .about-sec .yukemuri-about05 {
        position: absolute;
        display: block;
        top: 43%;
        right: 2%;
        width: 50%;
        height: auto;
    }

    .about-sec .yukemuri-about06 {
        position: absolute;
        display: block;
        top: 52%;
        left: 40%;
        width: 50%;
        height: auto;
    }

    .about-sec .yukemuri-about07 {
        position: absolute;
        display: block;
        top: 73%;
        right: -5%;
        width: 50%;
        height: auto;
    }

    .about-sec .yukemuri-about08 {
        position: absolute;
        display: block;
        top: 83%;
        left: -6%;
        width: 60%;
        height: auto;
    }
}

/* スマホ対応：画面が狭いときは横スクロールを許可する */
/*@media screen and (max-width: 768px) {
    .about-sec div:has(table) {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .about-sec table {
        min-width: 600px;
    }
}*/



/*----------------------------------------------------

	.structure-sec

----------------------------------------------------*/
.structure-sec {
    position: relative;
    padding: 75px 0 100px;
}

.structure-sec .structure-system-box {
    border: 1px solid #EC5C4E;
    border-radius: 20px;
    padding: 30px 0 40px;
    text-align: center;
    margin-bottom: 50px;
}

.structure-sec .structure-system-box h3 {
    font-size: 24px;
    color: #EC5C4E;
    margin-bottom: 20px;
}

.structure-sec .structure-txt {
    margin: 50px 0 150px;
    text-align: center;
}

.structure-sec .structure-txt p {
    margin-bottom: 40px;
}

/*-----*/

.structure-sec .structure-reach-box {
    margin-bottom: 100px;
}

.structure-sec .structure-reach-inner {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.structure-sec .structure-reach-l {
    
}

.structure-sec .structure-reach-l h3 {
    font-size: 50px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.structure-sec .structure-reach-l p {
}

.structure-sec .structure-reach-r {
    
}

.structure-sec .structure-reach-r h4 {
    font-size: 24px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 5px;
    color: #EC5C4E;
}

.structure-sec .structure-reach-r ul {
    width: 380px;
    background: #FFFFFF;
    border: solid 3px #EC5C4E;
    border-radius: 30px;
    padding: 25px 20px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 18px;
}

.structure-sec .structure-reach-r ul li {
    list-style: disc;
    margin-left: 1.5em;
    /*width: 370px;
    background: #FFFFFF;
    border: solid 3px #EC5C4E;
    border-radius: 30px;
    padding: 25px 30px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 600;
    font-size: 18px;*/
}

.structure-sec .structure-reach-r ul li strong {
    font-size: 18px;
    font-weight: 600;
}

/*-----*/

.structure-sec .structure-check-box01 {
    
}

.structure-sec .structure-check-box01 h3 {
    font-size: 24px;
    text-align: center;
    color: #EC5C4E;
    margin-bottom: 20px;
}

.structure-sec .structure-check-box01 .textC {
    margin-bottom: 50px;
    
}

/*-----*/

.structure-sec .structure-check-box02 {
    margin-bottom: 50px;
}

/*-----*/

.structure-sec .structure-check-box03 {
    margin-bottom: 100px;
}

.structure-sec .structure-check-box03 ul {
    
}

.structure-sec .structure-check-box03 ul li {
    list-style: disc;
    margin-left: 1.5em;
}

/*-----*/

.vendor-list {
    display: flex;
    margin: 50px 0 0;
    justify-content: center;
    gap: 30px;
}

/*-----*/

.structure-sec .structure-note-box {
    text-align: center;
    color: #EC5C4E;
    border: 1px solid #EC5C4E;
    background: #FFFFFF;
    padding: 30px 0;
    font-weight: 600;
    margin-bottom: 50px;
}



/*----------------------------------------------------

	.price-sec

----------------------------------------------------*/
.price-sec {
    position: relative;
    padding: 20px 0 150px;
    background: #FFF3EE;
    overflow: hidden;
    z-index: 1;
}

.price-sec .price-box01 {
    display: flex;
    gap: 40px;
    margin-bottom: 100px;
}

.price-sec .price-box01 .price-box01-txt {
    width: 460px;
}

.price-sec .price-box01 h3 {
    font-size: 50px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.price-sec .price-box01 h4 {
    font-size: 24px;
    color: #EC5C4E;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.price-sec .price-box01 .btn03 {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
}

.price-sec .price-box01 h5 {
    font-size: 24px;
    padding-left: 58px;
    padding-bottom: 10px;
}

.price-sec .price-box01 h5:nth-of-type(1) {
    background-image: url("../img/no-icon01.png");
    background-position: top left;
    background-repeat: no-repeat;
}

.price-sec .price-box01 h5:nth-of-type(2) {
    background-image: url("../img/no-icon02.png");
    background-position: top left;
    background-repeat: no-repeat;
}

.price-sec .price-box01 h5:nth-of-type(3) {
    background-image: url("../img/no-icon03.png");
    background-position: top left;
    background-repeat: no-repeat;
}

.price-sec .price-box01 .price-txt01 {
    padding-left: 58px;
    margin-bottom: 20px;
}

.price-sec .price-box01 .price-txt02 {
    padding-left: 58px;
    margin-bottom: 10px;
}

.price-sec .price-box01 .price-txt02 span {
    /*background: linear-gradient(transparent 50%, #FACDC6 50%);*/
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    border: 1px solid #EC5C4E;
    text-align: center;
    padding: 5px 0;
}

.price-sec .price-box01 .price-box01-img {
    width: 500px;    
}

/*-----*/

.price-sec .price-box02 {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    margin-top: 40px;
}

.price-sec .price-box02 li {
    background: #FFFFFF;
    border-radius: 20px;
    width: 50%;
    padding: 15px 25px 25px;
}

.price-sec .price-box02 li h4 {
    font-size: 24px;
    color: #EC5C4E;
    margin-bottom: 5px;
    text-align: center;   
}

.price-sec .price-box02 li p {
    margin-bottom: 20px;
}

.price-sec .price-box02 .price-txt02 {
    margin-bottom: 10px;
}

.price-sec .price-box02 .price-txt02 span {
    /*background: linear-gradient(transparent 50%, #FACDC6 50%);*/
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    border: 1px solid #EC5C4E;
    text-align: center;
    padding: 5px 0;
}

/*-----*/

.price-sec .price-box03 {
    margin-bottom: 150px;
    margin-top: 40px;
    padding: 20px 0 30px;
    background: #FFFFFF;
    border-radius: 20px;
    text-align: center;
}

.price-sec .price-box03 h4 {
    font-size: 24px;
    color: #EC5C4E;
    margin-bottom: 15px;
}

/*-----*/

.price-sec .price-box04 {
    margin-bottom: 40px;
    margin-top: 40px;
    background: #FFFFFF;
    border-radius: 20px;
    text-align: center;
    padding: 25px 25px 35px;
}

.price-sec .price-box04 h4 {
    font-size: 24px;
    color: #EC5C4E;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.price-sec .price-box04 p {
    margin-bottom: 20px
}

.price-sec .price-box04 .btn03 {
    margin-bottom: 40px;
}

.price-sec .price-box04 h5 {
    font-size: 18px;
    letter-spacing: 0;
    border: 1px solid #000000;
    width: 30%;
    margin: 0 auto 10px;
    padding: 5px 0 7px;
}

/*-----*/

.price-sec .yukemuri-price01 {
    position: absolute;
    display: block;
    top: 2%;
    right: 2%;
}

.price-sec .yukemuri-price02 {
    position: absolute;
    display: block;
    top: 45%;
    left: 5%;
}

.price-sec .yukemuri-price03 {
    position: absolute;
    display: block;
    top: 80%;
    right: 4%;
}

@media screen and (max-width: 959px) {    
    .price-sec .yukemuri-price01 {
        position: absolute;
        display: block;
        top: 2%;
        right: -10%;
        width: 80%;
        height: auto;
    }

    .price-sec .yukemuri-price02 {
        position: absolute;
        display: block;
        top: 45%;
        left: -8%;
        width: 50%;
        height: auto;
    }

    .price-sec .yukemuri-price03 {
        position: absolute;
        display: block;
        top: 77%;
        right: -5%;
        width: 65%;
        height: auto;
    }
}



/*----------------------------------------------------

	.separator-sec

----------------------------------------------------*/
.separator-sec {
    width: 100%;
    /* フェードインを確実に効かせるための設定 */
}

.parallax-window {
    height: 450px; /* 指定の高さに固定 */
    width: 100%;
    
    /* 画像の指定 */
    background-image: url("../../img/sec-img01.jpg");
    
    /* パララックスの肝：画像をスクロールに追従させない */
    background-attachment: fixed;
    
    /* 画像の表示位置とサイズ調整 */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* スマホ（iOS Safari）対策：background-attachment: fixed が効かない場合 */
@supports (-webkit-touch-callout: none) {
    .parallax-window {
        background-attachment: scroll; /* iOSではパララックスを無効化するか、別のJS制御にするのが一般的 */
    }
}







/*----------------------------------------------------

	.user-voice-sec

----------------------------------------------------*/
.user-voice-sec {
    position: relative;
    padding: 125px 0 0;
    background: #FFF3EE;
    overflow: hidden;
    z-index: 1;
}

.user-voice-sec .user-voice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 130px;
    justify-content: center;
}

.user-voice-sec .user-voice-list li {
    position: relative; /* 三角形の位置基準にするため */
    width: 40%; /* 3つ並びで余白を考慮し少し調整 */
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px 25px; /* 余白を固定値にすると綺麗です */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); /* 柔らかい影 */
    list-style: none;
    flex-direction: column; /* 文章と名前を縦に並べる */
    justify-content: space-between;
    font-size: 18px;
}

.user-voice-sec .user-voice-list li::after {
    content: "";
    position: absolute;
    bottom: -20px; /* 三角の高さ分だけ下に */
    left: 50%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 20px 15px 0 15px; /* 三角の形を調整 */
    border-color: #FFFFFF transparent transparent transparent;
}

.user-voice-sec .user-voice-list li p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

.user-voice-sec .user-voice-list li div .user-name {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    margin-bottom: 0;
}

.user-voice-sec .youtube-box {
    /*margin-bottom: 150px;*/
}

.user-voice-sec .youtube-box div {
    margin-bottom: 100px;
}

.user-voice-sec .youtube-box iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
}

.user-voice-sec .user-voice-trial-box {
    margin-bottom: 50px;
}

.user-voice-sec .user-voice-trial-box .onsen-stand-box01 .onsen-stand-txt {
    position: relative;
}

.user-voice-sec .user-voice-trial-box .onsen-stand-box01 .onsen-stand-txt .fukidashi01 {
    position: absolute;
    top: -50px;
    left: 180px;
}

.user-voice-sec .user-voice-trial-box .onsen-stand-box01 .onsen-stand-txt .stand-label {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    border: 1px solid #000000;
    padding: 5px 15px;
    margin-bottom: 15px;
    background: #FFFFFF;
}

.user-voice-sec .user-voice-trial-box .onsen-stand-box01 h4 {
    font-size: 24px;
    color: #EC5C4E;
    letter-spacing: 0;
    margin-bottom: 10px;
}

.user-voice-sec .user-voice-trial-box .onsen-stand-box01 .onsen-stand-txt .btn03 {
    margin-top: 20px;
}

.user-voice-sec .model-room-box {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.user-voice-sec .model-room-box h4 {
    font-size: 24px;
}

.user-voice-sec .model-room-box div div{
    display: flex;
    gap: 40px;
}

.user-voice-sec .model-room-box div .model-room-txt {
    margin-bottom: 15px;
}

.user-voice-sec .model-room-box div div img {
    width: 70px;
    height: 70px;
}

.user-voice-sec .model-room-box div div p {
    background: #FFFFFF;
    width: 400px;
    padding: 15px 20px;
    border-radius: 20px;
    position: relative;
}

.user-voice-sec .model-room-box div div p::before {
    content: "";
    position: absolute;
    top: 25%;
    left: -15px;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 15px solid #FFFFFF;
}

.user-voice-sec .yukemuri-user-voice01 {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
}

.user-voice-sec .yukemuri-user-voice02 {
    position: absolute;
    display: block;
    top: 40%;
    right: 4%;
}

.user-voice-sec .yukemuri-user-voice03 {
    position: absolute;
    display: block;
    top: 75%;
    left: 0;
}

@media screen and (max-width: 959px) {    
    .user-voice-sec .yukemuri-user-voice01 {
        position: absolute;
        display: block;
        top: 0;
        left: -10%;
        width: 80%;
        height: auto;
    }

    .user-voice-sec .yukemuri-user-voice02 {
        position: absolute;
        display: block;
        top: 38%;
        right: -15%;
        width: 60%;
        height: auto;
    }

    .user-voice-sec .yukemuri-user-voice03 {
        position: absolute;
        display: block;
        top: 75%;
        left: -50;
        width: 70%;
        height: auto;
    }
}



/*----------------------------------------------------

	.faq-sec

----------------------------------------------------*/
.faq-sec {
    padding: 70px 0 100px;
}

/* --- アコーディオン全体のスタイル (前回の続き) --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto 100px;;
}

.faq-item {
    background: #fff;
    border: 1px solid #EC5C4E;
    border-radius: 15px;
    margin-bottom: 20px;
    /* overflow: hidden; ← これを削除またはコメントアウト */
    transition: border-color 0.4s;
    position: relative; /* 子要素の基準をここにする */
}

/* アイコン自体の設定を少し強化 */
.faq-toggle-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 16px;
    height: 16px;
    display: block;
    z-index: 10;
    transition: transform 0.4s ease-in-out;
}

/* ★開いた状態 (.is-open) の枠線色。Qアイコンと同じピンク色にする */
.faq-item.is-open {
    border-color: #EC5C4E;
}

/* --- 質問 (Q) 部分 --- */
.faq-q {
    padding: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    color: #4a3632;
}

/* Qアイコン */
.faq-icon-q {
    background: #EC5C4E; /* ピンク */
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* ★＋/✕ の棒を描画 --- */
.faq-toggle-icon::before,
.faq-toggle-icon::after {
    content: "";
    position: absolute;
    background-color: #EC5C4E; /* 閉じたときの薄ピンク棒色。枠線と同じ色 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.4s ease-in-out; /* 棒の色変化のスムーズさ */
}

/* 横棒 */
.faq-toggle-icon::before {
    width: 100%;
    height: 2px;
}

/* 縦棒 */
.faq-toggle-icon::after {
    width: 2px;
    height: 100%;
}

/* --- 開いた状態 (.is-open) の開閉アイコンスタイル --- */

/* ★1. 全体を45度回転させて✕にする */
.faq-item.is-open .faq-toggle-icon {
    transform: translateY(-50%) rotate(45deg);
}

/* ★2. 棒の色を枠線色（少し濃いピンク）に合わせる */
.faq-item.is-open .faq-toggle-icon::before,
.faq-item.is-open .faq-toggle-icon::after {
    background-color: #ec5c4e; /* 画像5の少し濃いピンク棒色 */
}

/* --- 回答 (A) 部分 --- */
.faq-a {
    padding: 0 20px 20px 20px;
    align-items: flex-start;
    color: #666;
    line-height: 1.6;
}

/* Aアイコン */
.faq-icon-a {
    background: #999; /* グレー */
    color: #fff;
    width: 32px; /* Qと同じサイズ */
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    font-weight: bold;
}

.faq-a-txt {
    padding-top: 4px; /* アイコンとテキストの高さを微調整 */
}

/*.faq-sec .manga-img {
    text-align: center;
    margin-bottom: 30px;
}*/

/* 吹き出しのベーススタイル */
.manga-fukidashi {
    position: relative;
    display: inline-block; /* 幅をテキストに合わせる */
    background: #EC5C4E;   /* サイトのテーマカラー */
    color: #FFFFFF;        /* 文字色 */
    padding: 10px 20px;
    border-radius: 50px;   /* 丸みのあるデザイン */
    font-size: 15px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;   /* 下の画像との距離 */
}

/* 吹き出しの「ツノ（三角形）」 */
.manga-fukidashi::after {
    content: "";
    position: absolute;
    top: 100%;             /* 吹き出しの真下に配置 */
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 12px solid #EC5C4E; /* 上側だけ色をつけて下向き三角形に */
}

/* スマホ用の微調整 */
@media screen and (max-width: 959px) {
    .manga-fukidashi {
        font-size: 14px;
        padding: 8px 15px;
        width: 90%;        /* スマホでは少し幅を持たせる */
        box-sizing: border-box;
    }
}

/* 吹き出しをゆっくり上下に動かすアニメーション（任意追加） */
.manga-fukidashi {
    animation: yura-fuki 3s ease-in-out infinite;
}

@keyframes yura-fuki {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}



/* マンガスライダー全体のコンテナ */
.manga-slider-container {
    max-width: 450px; /* 画像(280px) + 左右の矢印スペース(約80pxずつ) */
    margin: 0 auto;
    position: relative; /* 矢印の配置基準 */
    padding: 0 50px;    /* 左右に矢印が収まる余白を作る */
}

/* スライダー本体（画像部分） */
.js-manga-slider {
    width: 280px;      /* 画像の幅に合わせる */
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 40px;
}

/* 矢印を画像の外側（コンテナの端）に配置 */
.manga-slider-container .swiper-button-prev,
.manga-slider-container .swiper-button-next {
    color: #EC5C4E;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -20px; /* ページネーションの余白分、少し上にずらして中央へ */
}

/* 左の矢印をコンテナの左端へ */
.manga-slider-container .swiper-button-prev {
    left: 0;
}

/* 右の矢印をコンテナの右端へ */
.manga-slider-container .swiper-button-next {
    right: 0;
}

/* スマホ表示での調整 (959px以下) */
@media screen and (max-width: 959px) {
    .manga-slider-container {
        /* コンテナ全体の幅を画面に合わせる */
        max-width: 100%; 
        width: 90%; /* 画面端に密着しないよう少し絞る */
        margin: 0 auto;
        padding: 0 45px; /* 矢印用のスペースを左右に均等に確保 */
        box-sizing: border-box; /* パディングを含めた幅計算にする */
    }

    /* スライダー本体（画像部分） */
    .js-manga-slider {
        /* ★重要：固定幅を解除して中央配置を安定させる */
        width: auto !important; 
        max-width: 280px; /* 画像の最大サイズに合わせる */
        margin: 0 auto;
        overflow: hidden;
    }

    .js-manga-slider img {
        width: 100%; /* 親要素(280px)いっぱいに広げる */
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* 矢印の調整 */
    .manga-slider-container .swiper-button-prev,
    .manga-slider-container .swiper-button-next {
        /* 画像に被らないよう、コンテナの端に配置 */
        width: 30px; 
    }

    .manga-slider-container .swiper-button-prev::after,
    .manga-slider-container .swiper-button-next::after {
        font-size: 24px; /* 矢印を少し小さく */
    }
    
    /* 矢印の位置を微調整（コンテナのpadding内に収める） */
    .manga-slider-container .swiper-button-prev { left: 5px; }
    .manga-slider-container .swiper-button-next { right: 5px; }
}



/*----------------------------------------------------

	.sns-sec

----------------------------------------------------*/
.sns-sec {
    position: relative;
    padding: 0 0 150px;
    background: #FFF3EE;
    overflow: hidden;
    z-index: 1;
}

.sns-sec .sec-inner.sns-facebook {
    display: flex;
    justify-content: center;
    width: 100%;
}

.sns-sec .fb-page {
    width: 500px;
    margin: 0 auto 130px;
}

.sns-sec .yukemuri-sns01 {
    position: absolute;
    display: block;
    top: 5%;
    right: 4%;
}

.sns-sec .yukemuri-sns02 {
    position: absolute;
    display: block;
    top: 30%;
    left: 0;
}

.sns-sec .yukemuri-sns03 {
    position: absolute;
    display: block;
    top: 60%;
    right: 4%;
}

.sns-sec .yukemuri-sns04 {
    position: absolute;
    display: block;
    top: 75%;
    right: 4%;
}

.sns-sec .yukemuri-sns05 {
    position: absolute;
    display: block;
    top: 90%;
    left: 18%;
}

@media screen and (max-width: 959px) {    
    .sns-sec .yukemuri-sns01 {
        position: absolute;
        display: block;
        top: 5%;
        right: -20%;
        width: 80%;
        height: auto;
    }

    .sns-sec .yukemuri-sns02 {
        position: absolute;
        display: block;
        top: 36%;
        left: 0;
        width: 50%;
        height: auto;
    }

    .sns-sec .yukemuri-sns03 {
        position: absolute;
        display: block;
        top: 47%;
        right: -30%;
        width: 60%;
        height: auto;
    }

    .sns-sec .yukemuri-sns04 {
        position: absolute;
        display: block;
        top: 77%;
        right: 0%;
        width: 40%;
        height: auto;
    }

    .sns-sec .yukemuri-sns05 {
        position: absolute;
        display: block;
        top: 90%;
        left: -10%;
        width: 40%;
        height: auto;
    }
}




/*----------------------------------------------------
	Responsive (959px以下)
----------------------------------------------------*/
@media screen and (max-width: 959px) {
    /* メインビジュアル */
    .main-visual-sec {
        padding-bottom: 50px;
    }
    
    .main-visual-sec .main-visual-box img {
        width: 100%; /* スマホでは端まで使う */
    }
    
    .main-visual-sec .main-img01 {
        top: 60px;
        left: -17px;
        width: 30%;
        height: auto;
    }
    
    .main-visual-sec .main-img02 {
        bottom: auto !important;
        top: 31%;
        right: -35px;
        width: 33%;
        height: auto;
    }
    
    .main-visual-sec .main-catchcopy {
        top: 31%;
        left: 3%;
        width: 82%;
    }
    
    .main-visual-sec .maji-txt {
        top: 9%;
        left: 28%;
        width: 16%;
    }
    
    .main-visual-sec .main-read-box {
        position: relative; /* 重ねず、画像の下に配置 */
        top: 0;
        left: 0;
        width: 90%;
        margin: 20px auto 0;
    }
    
    .main-visual-sec .main-read-box h2 {
        font-size: 21px;
        letter-spacing: 0;
    }
    
    .main-visual-sec .main-read-box h2 span {
        font-size: 15px;
    }
    
    .slider-sec {
        padding: 0 0 20px;
    }
    
    /* スライドの幅を直接小さくして、等速移動を安定させる */
    .slider-sec .swiper-slide {
        width: 280px !important; /* PC版(400〜500px)の約70%のサイズ */
        height: auto;
    }
    
    .slider-sec .swiper-slide img {
        width: 100%;
        height: auto;
    }
    
    .about-sec {
        padding: 50px 0 50px;
    }
    
    .about-sec .about-box {
        margin-bottom: 100px;
    }

    /* 浜坂温泉の日常（3カラムを縦に） */
    .about-sec .about-everyday-box ul {
        flex-direction: column;
        gap: 50px;
    }
    
    .about-sec .about-everyday-box ul li {
        width: 100%;
    }
    
    .about-sec .about-everyday-box ul li img.everyday-img{
        width: 100%;
        height: auto;
    }
    
    .about-sec .about-everyday-box ul li a {
        padding: 30px 30px 35px;
    }
    
    .about-sec .about-everyday-box ul li h4 {
        font-size: 20px;
    }

    /* 泉質データ */
    .about-sec .about-data-box {
        margin-top: 100px;
        margin-bottom: 100px;
    }
    
    .about-sec .about-data-box .about-data-inner {
        flex-direction: column;
    }
    
    .about-sec .about-data-box .data-txt {
        width: 100%;
    }
    
    .about-sec .about-data-box .data-box {
        width: 90%;
        padding: 25px 5%;
        border-radius: 30px;
    }
    
    .about-sec .about-data-box .data-box h4 {
        font-size: 20px;
    }
    
    .about-sec .about-data-box .data-box dl dt {
        width: 33%;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .about-sec .about-data-box .data-box dl dd {
        width: 67%;
        margin-bottom: 15px;
        line-height: 1.4;
    }    
    
    .about-sec .price-lifecycle-box {
        margin-bottom: 0;
    }
    
    .about-sec  .about-features-box {
        margin-bottom: 100px;
    }
    
    /* 生活インフラ（統計） */
    .about-sec .about-infra-box .about-infra-inner {
        flex-direction: column;
    }
    
    .about-sec .about-infra-box .about-infra-inner h3 {
        font-size: 30px;
    }
    
    .about-sec .about-infra-box .about-infra-inner ul li {
        width: 98%;
        margin: 0 auto 20px;
        padding: 15px 0 20px;
    }
    
    .about-sec .about-infra-box .about-infra-inner ul li .value{
        font-size: 18px;
        line-height: 1;
    }
    
    .about-sec .about-infra-box .about-infra-inner ul li .value strong{
        font-size: 36px;
    }
    
    .about-sec .about-infra-box table {
        font-size: 12px;
        line-height: 1.2
    }

    .about-sec .about-infra-box table th {
        padding: 7px 2px;
    }

    .about-sec .about-infra-box table td {
        padding: 12px 2px;
    }

    .about-sec .about-infra-box table th {
    }

    .about-sec .about-infra-box table tr:first-child th:nth-child(1),
    .about-sec .about-infra-box table tr:first-child th:nth-child(2) {
    }

    /* 配湯のしくみ */
    .structure-sec .structure-reach-inner {
        flex-direction: column;
    }
    
    .structure-sec .structure-system-box {
        padding: 15px 20px 25px;
        margin-bottom: 30px;
    }
    
    .structure-sec .structure-system-box h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .structure-sec .structure-txt {
        margin: 30px 0 100px;
    }
    
    .structure-sec .structure-reach-l h3 {
        font-size: 30px;
    }
    
    .structure-sec .structure-reach-r h4 {
        font-size: 20px;
    }
    
    .structure-sec .structure-reach-r ul {
        width: 80%;
        padding: 25px 9% 30px;
        font-size: 16px;
    }
    
    .structure-sec .structure-reach-r ul li {
    }
    
    .structure-sec .structure-check-box01 h3 {
        font-size: 20px;
        line-height: 1.4;
    }
    
    .structure-sec .structure-note-box {
        font-size: 14px;
        padding: 20px 0;
    }
    
    .vendor-list {
        display: block;
        margin: 50px 0 0;
        gap: 30px;
    }
    
    .vendor-list li {
        margin-bottom: 20px;
    }
    
    a.btn02 {
        width: 100%;
        font-size: 18px;
    }

    /* 料金・助成制度 */
    .price-sec {
        padding-bottom: 100px;
    }
    .price-sec .price-box01 {
        flex-direction: column;
        margin-bottom: 100px;
    }
    
    .price-sec .price-box01 .price-box01-txt {
        width: 100%;
    }
    
    .price-sec .price-box01 h3 {
        font-size: 30px;
    }
    
    .price-sec .price-box01 h4 {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 20px;
    }
    
    .price-sec .price-box01 h5 {
        font-size: 20px;
        padding-left: 48px;
        padding-bottom: 10px;
    }
    
    .price-sec .price-box01 h5:nth-of-type(1) {
        background-image: url(../img/no-icon01.png);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: 12%;
    }
    
    .price-sec .price-box01 h5:nth-of-type(2) {
        background-image: url(../img/no-icon02.png);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: 12%;
    }
    
    .price-sec .price-box01 h5:nth-of-type(3) {
        background-image: url(../img/no-icon03.png);
        background-position: top left;
        background-repeat: no-repeat;
        background-size: 12%;
    }
    
    .price-sec .price-box01 .price-txt01 {
        padding-left: 0;
        margin-bottom: 20px;
    }
    
    .price-sec .price-box01 .price-txt02 {
        padding-left: 0;
        margin-bottom: 10px;
    }
    
    .price-sec .price-box01 .price-txt02 span {
        font-size: 1em;
    }
    
    .price-sec .price-box01 .btn03 {
        width: 100%;
    }

    .price-sec .price-box01 .price-box01-img {
        width: 100%;    
    }
    
    .price-sec .price-box02 {
        flex-direction: column;
    }
    
    .price-sec .price-box02 li {
        width: 90%;
        padding: 15px 5% 25px;
    }
    
    .price-sec .price-box02 .price-txt02 span {
        font-size: 1em;
    }
    
    .price-sec .price-box02 li h4 {
        font-size: 20px;
    }
    
    .price-sec .price-box03 img {
        width: 100%;
        height: auto;
    }
    
    .price-sec .price-box03 {
        padding: 15px 20px 25px;
        margin-bottom: 100px;
    }
    
    .price-sec .price-box03 h4 {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.4;
    }
    
    .price-sec .price-box04 {
        text-align: left;
        padding: 15px 20px 25px;
    }

    .price-sec .price-box04 h4 {
        font-size: 20px;
        text-align: center;
    }

    .price-sec .price-box04 p {
    }

    .price-sec .price-box04 .btn03 {
    }
    
    .price-sec .price-box04 h5 {
        font-size: 19px;
        letter-spacing: 0;
        border: 1px solid #000000;
        width: 100%;
        margin: 0 auto 10px;
        padding: 3px 0 5px;
        text-align: center;
    }

    /* パララックス（スマホでは高さを抑える） */
    .parallax-window {
        height: 250px;
    }

    /* 利用者の声 */
    .user-voice-sec {
        padding: 50px 0 0;
    }
    
    .user-voice-sec .user-voice-list {
        flex-direction: column;
        margin-bottom: 100px;
    }
    
    .user-voice-sec .user-voice-list li {
        width: 90%;
        padding: 25px 5%;
    }
    
    .user-voice-sec .user-voice-trial-box .onsen-stand-box01 h4 {
        font-size: 20px;
    }
    
    .user-voice-sec .youtube-box {
        flex-direction: column;
    }
    
    /* SNS */
    .sns-sec {
        padding-bottom: 100px;
    }
    /* 親要素：中央寄せと余白 */
    .sns-sec .sec-inner.sns-facebook {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 0 20px; /* スマホ時に画面端にピッタリくっつかないよう余白を追加 */
        box-sizing: border-box;
    }

    /* Facebookプラグイン本体 */
    .sns-sec .fb-page,
    .sns-sec .fb-page span,
    .sns-sec .fb-page iframe {
        width: 100% !important; /* 親要素の幅いっぱいに広げる */
        max-width: 500px;      /* PCで見ても500px以上にはならないように制限 */
        display: block;
        margin: 0 auto 50px;
    }
}












