/* ======================================
   リセット＆基本設定
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans JP', 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}
.font01{
    font-family: 'Inter', sans-serif;
}
.font02{
    font-family: 'Zen Old Mincho', serif;
}
.font03{
    font-family: 'Zen Maru Gothic', sans-serif;
}
.bgorange{
    background-image: url(../images/bg_orange.png);
    background-repeat: repeat;
    background-position: center center;
}
.bggreen{
    background-image: url(../images/bg_green.png);
    background-repeat: repeat;
    background-position: center center;
}
/* ======================================
   コンテナ（最大幅1200px）
   ====================================== */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* ======================================
   メインコンテナ
   ====================================== */
.main-container {
    position: relative;
    width: 100%;
    background-color: #fff;
    overflow: hidden;
}

/* ======================================
   ヒーローセクション（ページ上部）
   ====================================== */
.hero-section {
    position: relative;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-bottom: 24%;
    background: url(../images/bg_grad.jpg), linear-gradient(135deg, #f5f5f5 0%, #fff 50%, #f5f5f5 100%);
    background-repeat: repeat, repeat;
    background-position: center, center;
    background-size: 100% auto, 100% auto;
}

.hero-section::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding-top: 30%;
    background-image: url(../images/bg_orange_grad.png);
    background-repeat: repeat-x;
    background-position: center bottom -1px;
}
.hero-background {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 1920px;
    height: auto;
    z-index: 0;
}

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




.hero-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.hero-main-title {
    position: absolute;
    z-index: 2;
    width: 100%;
    text-align: center;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 500;
    font-size: clamp(1.2rem, 3.8vw, 3.5rem);
    color: #fff;
    text-shadow: 3px 3px 10px rgba(100, 89, 70, 0.8);
    margin-bottom: 60px;
    padding-top: 3.8%;
}

.hero-products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-product {
    position: relative;
    text-align: center;
    width: 50%;
    display: flex;
    flex: 1;
    min-width: 300px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.hero-product-orange{
    background-image: url(../images/hero_bg01.webp);
    justify-content: flex-end;
}
.hero-product-green{
    background-image: url(../images/hero_bg02.webp);
}
.hero-product-wrap{
    width: 55%;
    position: relative;
    padding-top: calc(14% + 95px);
}
.hero-product-orange .hero-product-wrap{
    background-color: rgba(254, 125, 84, 0.6);
}
.hero-product-green .hero-product-wrap{
    background-color: rgba(139, 145, 109, 0.6);
}
.hero-product-vertical-text {
    position: absolute;
    top: 5%;
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
    line-height: 1.8;
    z-index: 1;
    text-align: left;
    letter-spacing: 0.15rem;
}

.hero-product-orange .hero-product-vertical-text {
    color: #fe7d55;
}

.hero-product-green .hero-product-vertical-text {
    color: #8e9270;
}

.hero-vertical-text-left {
    left: 0.5rem;
}

.hero-vertical-text-right {
    right: 0.5rem;
}

.hero-product-vertical-text span {
    display: block;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.5rem;
    margin:0.3rem;
    padding: 0.8rem 0;
}

.hero-product-image {
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 90%;
}

.hero-product-info {
    margin-bottom: 5%;
}

.hero-product-name {
    font-weight: 700;
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    margin-bottom: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0.8rem;
    display: block;
    width: 85%;
    margin: 0 auto;
    transition: all 0.3s ease;
    padding-bottom: 15px;
}
.hero-product-name span{
    display: block;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: 60%;
    background-color: #000;
    border-radius: 100px;
    color: #fff;
    transition: all 0.3s ease;
}

.hero-product-orange .hero-product-name {
    color: #fe7d55;
}

.hero-product-green .hero-product-name {
    color: #8e9270;
}
.hero-product-orange .hero-product-name span{
    background-color:#fe7d55;
}

.hero-product-green .hero-product-name span{
    background-color: #8e9270;
}
.hero-product-orange .hero-product-name:hover {
    background-color: #fe7d55;
    color: #fff;
}

.hero-product-green .hero-product-name:hover {
    background-color: #8e9270;
    color: #fff;
}
.hero-product-name:hover span{
    background-color: #fff;
}
.hero-product-orange .hero-product-name:hover span{
    color: #fe7d55;
}

.hero-product-green .hero-product-name:hover  span{
    color: #8e9270;
}

.hero-product-tagline {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #fff;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3);
}
/* ===================================
   商品タイプ選択セクション
   =================================== */
.lead-section{
    position: relative;
    background:url(../images/bg_grad.jpg) , linear-gradient(135deg, #f5f5f5 0%, #fff 50%, #f5f5f5 100%);
    background-repeat:repeat, repeat;
    background-position: center,center;
    background-size: 100% auto, 100% auto;
}
.question{
    position: relative;
    background-image: url(../images/lead-section_img01.webp),url(../images/bg_grad02.jpg);
    background-repeat:no-repeat, repeat;
    background-position: center top 70%, center center;
    background-size:30% auto,100% auto;
    padding: 2% 30px 470px;
    max-width: 1000px;
    margin: 0 auto;
}
.question::after{
    content: "";
    position: absolute;
    bottom: -48%;
    left:0;
    display: block;
    width: 100%;
    background-image: url(../images/dot01.webp);
    background-repeat: no-repeat;
    background-size: 1% auto;
    background-position: top center;
    padding-top: 17%;
}
.question h2{
    text-align: center;
    color: #fff;
    font-size: clamp(1.6rem, 4.6vw, 2.6rem);
    line-height: 1.6;
    font-weight: normal;
    text-indent: 1.8rem;
    margin: 0 auto;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
.question h2 > span{
    color: #000;
    font-size: 110%;
    text-shadow: none;
    letter-spacing: 0.2rem;
    position: relative;
    text-indent: 0;
}
.question h2 > span > span{
    position: relative;
    font-size: 100%;
}
.question h2 > span > span:before{
    content: "・";
    position: absolute;
    top: -2.2rem;
    top: clamp(-2.2rem, -4vw, -4vw);
    font-size: 100%;
}
.question .cloud{
    position: absolute;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
}
.question .cloud01{
    top: 22%;
    left: -10%;
    background-image: url(../images/cloud01.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    padding: 8% 18% 8% 18%;
}
.question .cloud02{
    top: 22%;
    right: -2%;
    background-image: url(../images/cloud02.webp);
    background-repeat: no-repeat;
    background-position:left 24% center;
    background-size: 100% auto;
    padding: 7% 12% 6% 12%;
}
.question .cloud03{
    bottom: -18%;
    left: 4%;
    background-image: url(../images/cloud03.webp);
    background-repeat: no-repeat;
    background-position:left center;
    background-size: auto 100%;
    padding: 8% 12% 11% 12%;
}
.question .cloud04{
    bottom: -8%;
    right: 6%;
    background-image: url(../images/cloud04.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
    padding: 5% 12% 5% 12%;
}
.maybe{
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 5%;
}
.maybe::before{
    content: "";
    background-image: url(../images/bg_tryangle.png);
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto;
    max-width: 1000px;
    padding-top: 15%;
}
.maybe p{
    color: #fff;
    text-align: center;
    font-size: clamp(1.0rem, 4.2vw, 2.6rem);
    padding-top: 9%;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}
.maybe p span{
    color: #000;
    background-image: url(../images/wave_line.webp);
    background-size: 100% auto;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-bottom: 0.8rem;
}
.about .about01{
    background-image: url(../images/about01_bg.webp);
    background-repeat: no-repeat;
    background-position: right 5% center;
    background-size:  35% auto;
}
.about .about02{
    background-image: url(../images/about02_bg.webp);
    background-repeat: no-repeat;
    background-position: left  center;
    background-size: 35% auto;
}
.about > div .container p{
    width: 50%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    font-size: clamp(1.0rem, 2.6vw, 1.6rem);
    padding: 15% 0;
}
.about > .about01 p{
    background-image: url(../images/about_baloon01.webp);
    margin-left: 5%;
}
.about > .about02 p{
    background-image: url(../images/about_baloon02.webp);
    margin-left: 45%;
}
.about > .start{
    background-image: url(../images/dot01.webp),url(../images/dot02.webp);
    background-repeat:no-repeat, no-repeat;
    background-position: center top, center bottom;
    background-size:1% auto,1% auto;
    padding: 12% 0 7% 0;
}
.about > .start p{
    width: 65%;
    padding: 3% 0;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    background-color: #fff;
    font-size: clamp(1.0rem, 2.6vw, 1.6rem);
    border-radius: 30px;
}
.about > .start + p{
    font-size: clamp(1.0rem, 4.2vw, 2.6rem);
}
.about > p{
    text-align: center;
    color: #fff;
    font-size: clamp(1.0rem, 2.6vw, 1.6rem);
    padding-top: 2%;
    padding-bottom: 16%;
    background-image: url(../images/dot01.webp);
    background-repeat: no-repeat;
    background-position: center bottom 2vh;
    background-size:1% auto;
}
.product-type-section {
    position: relative;
    background-image: url(../images/bg_grad02.jpg);
    background-repeat: repeat;
    background-position: center center;
    background-size: 100% auto;
    padding: 60px 30px 200px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-type-section .section-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    text-align: center;
    font-size: clamp(1.2rem, 4.8vw, 2.6rem);
    margin-bottom: 4%;
    color: #fff;
}

.product-types-grid {
    display: flex;
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.product-type-card {
    display: flex;
    width: calc((100% - 1rem) / 2);
}

.product-type-card:hover {
}
.product-type-heading {
    color: #fff;
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-image {   
    width: 100%;
    position: relative;
}

.product-image img {
    width: 80%;
    height: auto;
}
.product-image img:nth-child(2) {
    width: 50%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: -10%;
}
.product-type-content{
    display: flex;
    flex-direction: column;
}
.product-type-card > a{
    display: block;
    padding: 10% 7% 8%;
    transition: all 0.3s ease;
    border:2px solid #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    flex:1;
}
.product-type-card > a:hover{
    transform: translateY(-4px);
}
.product-type-card .cta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
}
.product-type-card .cta h4{
    width: 60%;
    font-size: clamp(1.0rem, 2.8vw, 2.0rem);
    padding: 1rem 0;
}
.product-type-card .bggreen .cta h4{
    padding: 1.2rem 0;
}
.product-type-card .cta h4 img{
    width: 60%;
    margin: 0 auto;
}
.product-type-card .cta .btn-primary{
    width: 35%;
    background-color: #fff;
    border-radius: 100px;
    text-align: center;
    padding: 10px 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-type-card > a:hover .btn-primary{
    color: #fff;
    border:2px solid #fff;
}
.product-type-card > a.bgorange:hover .btn-primary{
    background-color: #FE7D55;
}
.product-type-card > a.bggreen:hover .btn-primary{
    background-color: #8B916D;
}
.product-name {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
}
@media (min-width: 1200px) {
    .about .about01 {
        background-position: right 7vw center;
        background-size: 420px auto;
    }
}
@media (max-width: 1024px) {
    .product-type-section {
        padding: 1rem 0 10%;
        width: 90%;
        margin:0 auto;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .product-types-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 90%;
        margin:0 auto;
    }
}
    .product-type-heading {
    font-size: clamp(1.2rem, 2.8vw, 2rem);
    }
    
    .product-name {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .product-type-content {
        padding: 2rem 1.5rem;
    }
    
    .product-type-heading {
        font-size: 6vw;
    }
    
    .product-name {
        font-size: 2rem;
    }
}

.product-section-orange {
}
.product-section-green {
}
.product-section-orange *{
    font-family: 'Noto Sans', sans-serif;
}
.product-section-green *{
        font-family: 'Zen Old Mincho', serif;
}
.fcolor-orange{
    color: #fe7d55;;
}
.fcolor-green{
    color: #8B916D;;
}

.hero-section::after{
    background-size: auto 100%;
}
/* ======================================
   肩楽寝セクション
   ====================================== */
.product-section {
    position: relative;
    width: 100%;
    padding: 5% 0;
}
.product-section-orange .product-section{
    background-image: url(../images/bg_orange.png);
    background-repeat: repeat;
    background-position: center center;
}
.product-section-green .product-section{
    background-image: url(../images/bg_green.png);
    background-repeat: repeat;
    background-position: center center;
}

.product-header {
    text-align: center;
    padding-bottom: 5%;
}

.product-title {
    font-weight: 400;
    font-size: clamp(3rem, 7vw, 5rem);
    color: #fff;
    margin-bottom: 20px;
}

.product-subtitle {
    font-weight: 400;
    font-size: clamp(1.0rem, 2.8vw, 2.0rem);
    color: #fff;
    display: inline-block;
    line-height: 1.4;
    padding: 10px 40px;
    position: relative;
}
.product-subtitle:before,
.product-subtitle:after{
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    background-image: url(../images/dot01.webp);
    padding-top: 70px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center bottom;
}
.product-subtitle:before{
    left:0;
    transform: rotate(-15deg);
}
.product-subtitle:after{
    right:0;
    transform: rotate(15deg);
}
.product-section-orange .product-subtitle:before,
.product-section-orange .product-subtitle:after{
    top: 10px;

}
.product-section-green .product-subtitle:before,
.product-section-green .product-subtitle:after{
    top: -5px;

}
.product-header .container{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.product-header .container h2{
    width: 55%;
    text-align: center;
}
.product-header .container h2 img{
    max-width: 80%;
}
.product-header-image {
    width: 45%;
    max-width: 100%;
    margin: 0 auto;
}

.product-header-image img {
    width: 100%;
    height: auto;
}

.product-features {
    background-color: #fff;
    padding: 40px 40px;
}
.product-section-orange .point-section {
}
.feature-item {
    position: relative;
    text-align: center;
    display: flex;
    align-items: center;
}
.product-section-orange .feature-item:nth-child(3) .feature-note{
    text-align: left;
    padding-right: 5%;
}
.product-section-orange .product-features .feature-note{
    color: #FE7D55;
}
.product-section-green .product-features .feature-note{
    color: #8B916D;
}
.feature-item > h3,
.feature-item > div{
    flex: 1;
}
.feature-item:nth-child(2) {
    flex-direction: row-reverse;
}


.feature-number {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(8rem, 20vw, 15rem);
    letter-spacing: 0.1em;
    opacity: 0.15;
    margin-bottom: -80px;
}

.feature-number-orange {
    color: #fe7d55;
}

.feature-title {
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 3.4rem);
    line-height: 1.4;
}
.feature-title span{
    font-weight: 700;
    font-size: clamp(0.8rem, 1vw, 1.2rem);
    line-height: 1.4;
}
.product-section-orange .feature-title {
    color: #FE7D55;
}
.product-section-green .feature-title {
    color: #8B916D;
}
.feature-image {
    width: 100%;
    text-align: center;
}

.feature-image img {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

.feature-note {
    font-weight: 500;
    font-size: clamp(0.7rem, 1.0vw, 1.4rem);
    margin-top: 2%;
    line-height: 1.2;
}

/* ======================================
   問題解決セクション
   ====================================== */
.product-section-orange .point-section {
    background: url(../images/makura01_features_bg.webp),linear-gradient(232.696deg, rgb(229, 229, 229) 1.5396%, rgb(255, 255, 255) 34.638%, rgb(255, 255, 255) 56.855%, rgb(229, 229, 229) 95.395%);
    background-repeat: no-repeat,no-repeat;
    background-position: right bottom,right bottom;
    background-size:50% auto, 100% auto;
}

.product-section-green .point-section {
    background: url(../images/makura02_features_bg.webp),linear-gradient(232.696deg, rgb(229, 229, 229) 1.5396%, rgb(255, 255, 255) 34.638%, rgb(255, 255, 255) 56.855%, rgb(229, 229, 229) 95.395%);
    background-repeat: no-repeat,no-repeat;
    background-position: right bottom,right bottom;
    background-size:50% auto, 100% auto;
}
.point-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.section-title {
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.6rem);
    text-align: center;
    line-height: 1.4;
    margin-bottom: 8%;
}
.product-section-orange .section-title {
    color: #FE7D55;
}
.product-section-green .section-title {
    color: #8B916D;
}

.point-features {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.point-item {
    position: relative;
    margin-bottom: 8%;
    display: flex;
}

.point-item:last-child {
    margin-bottom: 0;
}

.point-number {
    font-weight: 700;
    font-size: clamp(6rem, 18vw, 10rem);
    letter-spacing: 0.1em;
    opacity: 0.15;
    color: #fe7d55;
    text-align: center;
    margin-bottom: -60px;
    width: 20%;
    display: flex;
    align-items: start;
    justify-content: center;
    line-height: 1.2;
}
.product-section-orange .point-number {
    font-family: 'Inter', sans-serif;
    color: #FE7D55;
}
.product-section-green .point-number {
    
    color: #8B916D;
}
.point-exp{
    width: 80%;
}
.point-title {
    font-weight: 700;
    font-size: clamp(1.2rem, 3.6vw, 2.2rem);
    color: #000;
    letter-spacing: 0.05em;
    margin: 40px 0 30px;
}

.point-description {
    
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    color: #000;
    line-height: 1.8;
}
.point-description .feature-note{
    line-height: 1.6;
    display: block;
}

.point-description p {
    margin-bottom: 0.6em;
}

.point-background-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 800px;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
}

.point-background-image img {
    width: 100%;
    height: auto;
}

/* ======================================
   ボイスセクション
   ====================================== */
.voice-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
}

.voice-section-orange {
    background-image: url(../images/bg_orange.png);
    background-repeat: repeat;
    background-position: center center;
    background-size: auto;
}

.voice-section-green {
    background-image: url(../images/bg_green.png);
    background-repeat: repeat;
    background-position: center center;
}

.voice-header {
    text-align: center;
    margin-bottom: 60px;
}

.voice-title {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #fffcf3;
    padding: 20px 150px;
    border: 3px solid #fff;
    border-radius: 100px;
    text-align: center;
}

.voice-section-orange .voice-title {
    background-color: #FE7D55;
}
.voice-section-green .voice-title {
    background-color: #8B916D;
}

.voice-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.voice-item {
    display: flex;
    align-items: center;
    justify-content: stretch;
    gap: 5%;
}

.voice-item-left {
    flex-direction: row;
}

.voice-item-right {
    flex-direction: row-reverse;
}

.voice-avatar {
    padding: 0 2%;
    margin-bottom: 2%;
}

.voice-avatar img {
    width: 65%;
    height: auto;
    margin: 0 auto;
    display: block;
}

.voice-content {
    background-color: #fff;
    border-radius: 25px;
    padding: 30px 40px;
    flex: 1;
}

.voice-text {
    font-weight: 500;
    font-size: clamp(0.8rem, 1.8vw, 1.2rem);
    line-height: 1.8;
}

.voice-section-orange .voice-text {
}

.voice-section-green .voice-text {
}

.voice-meta {
    
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.3rem);
    text-align: center;
    color: #fff;
}

/* ======================================
   カスタムまくらセクション
   ====================================== */
.custom-pillow-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
}

.custom-pillow-content {
    position: relative;
}

.custom-pillow-title {
    
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #8b916d;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 80px;
}

.custom-pillow-title-line {
    display: block;
}

.custom-point {
    position: relative;
    margin-bottom: 80px;
}

.custom-point:last-child {
    margin-bottom: 0;
}

.custom-point-number {
    display: block;
    
    font-weight: 700;
    font-size: clamp(8rem, 20vw, 15rem);
    letter-spacing: 0.1em;
    opacity: 0.15;
    color: #8b916d;
    text-align: center;
    margin-bottom: -60px;
}

.custom-point-title {
    
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: #8b916d;
    letter-spacing: 0.05em;
    margin: 40px 0 30px;
}

.custom-point-description {
    
    font-weight: 500;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #8b916d;
    line-height: 1.8;
}

.custom-point-description p {
    margin-bottom: 1em;
}

.custom-background-image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    max-width: 800px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

.custom-background-image img {
    width: 100%;
    height: auto;
}

/* ======================================
   オーダーセクション
   ====================================== */
.order-section {
    position: relative;
    width: 100%;
    padding: 10% 0 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
}
.product-section-orange .order-section {
}
.product-section-green .order-section {
    position: relative;
    padding: 80px 0 80px;
}
.product-section-orange .order-section::after{
    content: "";
    display: block;
    width: 100%;
    background-image: url(../images/bg_green_grad.png);
    background-repeat: repeat-x;
    background-position: center bottom -1px;
    padding-bottom: 330px;
}
.order-content {
    text-align: center;
}

.order-title {
    line-height: 1.5;
    margin-bottom: 60px;
    border-radius: 2rem;
    padding: 1.5rem 2rem;
    display: inline-block;
    background-color: #fff;
    filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.3));
}
.product-section-orange .order-title {
    border: 2px solid #FE7D55;
    color: #FE7D55;
}
.product-section-green .order-title {
    border: 2px solid #8B916D;
    color: #8b916d;
}
.order-title span{
    display: block;
}
.order-title-line {
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
}

.order-title-line-bold {
    font-weight: bold;
    font-size: clamp(1.4rem, 3.1vw, 2.3rem);
    position: relative;
}
.product-section-orange .order-title-line-bold span{
    background-image: url(../images/bg_orange.png);
    color: #fff;
    font-size: 60%;
    display: block;
    border-radius: 100px;
    padding: 0.3rem 1rem;
    position: absolute;
    right: -2.5rem;
}

.order-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6%;
    margin-left: auto;
    margin-right: auto;
}
.product-section-orange .order-product {   
    flex-direction: inherit;
    max-width: 900px;
    align-items: stretch;
}
.product-section-green .order-product {  
    flex-direction: row;
    max-width: 900px;
}
.product-section-green .order-product .order-product-info{  
    flex:1;
}
.order-product-image {
    max-width: 600px;
    width: 100%;
}
.product-section-green .order-product-image {
    max-width: 400px;
    width: 50%;
}
.order-product-image img {
    width: 100%;
    height: auto;
}

.order-cta {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    flex: 1;
    max-width: 600px;
    width: 60%;
    margin: 0 auto;
}
.order-cta > div{
    display: flex;
    flex-direction: column;
}
.order-cta a{
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    margin-bottom: 15px;
}
.order-cta a span.btn-txt{
    flex-grow: 1;
    padding: 20px 0;
}
.product-section-orange .order-cta a:nth-child(1) span.btn-txt{
    text-indent: -2.5em;
    line-height: 1.0;
}

.order-cta a:nth-child(1) span.btn-txt .feature-note{
    margin-top: 0;
    padding-right: 3.5rem;
}
@media screen and (max-width: 768px) {
    .product-section-orange .order-cta a:nth-child(1) span.btn-txt{
        text-indent: -3.5vw;
    }
    .order-cta a:nth-child(1) span.btn-txt .feature-note{
        padding-right: 3.2vw;
    }
}
.order-cta a span.badge{
    background-color: #fff;
    color: #fe7d55;
    border-radius: 100px;
    line-height: 1.2;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    padding: 10px;
}

.order-product-name {
    font-weight: 500;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}
.product-section-orange .order-product-name {
    color: #FE7D55;
}
.product-section-green .order-product-name {
    color: #8b916d;
}

.order-product-price {
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 30px;
}
.product-section-orange .order-product-price {
}
.product-section-green .order-product-price {
    color: #8b916d;
}

.order-product-price-note {
    font-size: 0.6em;
}

.btn {
    display: inline-block;
    color: #fff;
    padding: 20px 80px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    transition: all 0.3s ease;
}
.btn-orange-large {
    background-color: #FE7D55;
}
.btn-green-large {
    background-color: #8b916d;
}
.product-section-orange .btn-green-large {
    background-color: #FE7D55;
}
.product-section-green .btn-green-large {
    background-color: #8b916d;
}

.btn-orange-large:hover {
    background-color: #EB6641;
    transform: translateY(-4px);
}
.btn-green-large:hover {
    background-color: #7a7f60;
    transform: translateY(-4px);
}

/* ======================================
   CTAセクション（下部）
   ====================================== */
.cta-section-bottom {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 3;
    transform: translateY(250px);
    opacity: 0;
    transition: all 1.0s ease;
}
.cta-section-bottom.active {
    transform: translateY(0px);
    opacity: 1;
}
.cta-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0;
}

.cta-box {
    position: relative;
    display: flex;
    align-items: center;
    padding: 10px 3%;
    text-align: center;
    justify-content: space-between;
}

.cta-box-orange {
    background-color: #fe7d55;
}

.cta-box-green {
    background-color: #8e9270;
}

.cta-product-image {
    width: 30%; 
    align-items: center;
}

.cta-product-image img {
    width: 100%;
    height: auto;
}

.cta-product-image h3 img {
    width: 60%;
    height: auto;
    margin: 0 auto;
}

.cta-content {
    width: 65%; 
}

.cta-product-name {
    font-weight: 700;
    font-size: clamp(0.8rem, 1.3vw, 1.40rem);
    color: #fff;
}

.cta-tagline {
    font-weight: 700;
    font-size: clamp(1.0rem, 1.6vw, 1.8rem);
    color: #fff;
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.btn {
    width: 100%;
    padding: 10px;
    display: inline-block;
    border-radius: 100px;
    font-size: clamp(0.75rem, 1.8vw, 1.0rem);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.product-section-orange .btn,
.product-section-green .btn{
    font-size: clamp(1.2rem, 3.2vw, 1.6rem);
}
.btn-white {
    background-color: #fff;
    color: #000;
}

.btn-white:hover {
    background-color: #f5f5f5;
    transform: translateY(-4px);
}

/* ======================================
   最終メッセージセクション（ページ下部）
   ====================================== */
.final-message-section {
    position: relative;
    width: 100%;
    padding:0 0 15%;
    background-image: url(../images/bg_grad.jpg);
    background-repeat:repeat-y;
    background-size: 100% auto;
}


.final-content {
    position: relative;
    z-index: 2;
    text-align: center;
    background-image: url(../images/bg_grad02.jpg);
    background-repeat:repeat-y;
    background-size: 100% auto;
    padding-top: 5%;
    padding-bottom: 5%;
}

.final-title {
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(1.2rem, 4vw, 2.8rem);
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-align: center;
    color: #454545;
    margin-bottom: 5%;
}

.final-title-line {
    display: block;
}

.final-image {
    width: 35%;
    max-width: 200px;
    margin: 0 auto 5%;
}

.final-description {
    max-width: 900px;
    width: 100%;
    margin: 5% auto 5%;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-weight: 700;
    font-size: clamp(0.8rem, 2.5vw, 1.5rem);
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.3);
}

.final-description p {
    margin-bottom: 1em;
}
.copy{
    text-align: center;
    padding: 2% 0;
    font-family: 'Zen Maru Gothic', sans-serif;
    color: #333;
    font-size: clamp(0.6rem, 2.0vw, 1.0rem);
}
.totop{
    position: fixed;
    right: 0;
    bottom: 10px;
    z-index: 3;
    transition: all 0.7s ease;
}
.totop.active{
    bottom: 20%;
}
@media screen and (max-width: 480px) {
    .totop.active{
        bottom: 32vw;
    }
}
.totop a{
    background-color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.6rem, 2.4vw, 0.8rem);
    padding: 10px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-weight: bold;
}
.totop a:before{
    content: "▶︎";
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: clamp(1.6rem, 3.6vw, 2.0rem);
    color: #FE7D55;
    display: block;
    text-align: center;
    font-weight: bold;
    transform: rotate(-90deg);
    flex:1;
}
/* ======================================
   レスポンシブ対応
   ====================================== */
@media screen and (min-width: 769px) {
    .pc{

    }
    .sp{
        display: none !important;        
    }
    .sp2{      
        display: none !important;  
    }
}
@media screen and (max-width: 1024px) {
    .question {
        padding: 5% 30px 48vw;
    }
    .question::after {
        padding-top: 20%;
    }
}
@media screen and (max-width: 768px) {
    .pc{
        display: none !important;  
    }
    .sp{      
        display: inherit !important;  
    }
    .sp2{      
        display: none !important;  
    }

     .cta-section-bottom .container.sp2 {
        display: inherit !important; 
    }
}
@media screen and (max-width: 480px) {
    .pc{
        display: none !important;  
    }
    .sp{      
        display: none !important;  
    }
    .sp2{      
        display: inherit !important;  
    }

}
/* タブレット */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
.about > .about02 .container p {
    margin-left: 36%;
    width: 64%;
}
    .hero-product {
        min-width: 30px;
    flex-direction: column;
    background-size: auto 110%;
    }
.hero-product-orange {
    background-position: left 15% bottom;
}
.hero-product-green {
    background-position: right 16% bottom;
}
.hero-main-title {
    font-size: 6.8vw;
    padding-top: 3.8%;
}
.hero-main-title span{
    display: block;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../images/bg_grad02.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 200px;
}
.hero-product-name {
    font-weight: 700;
    font-size: 4.6vw;
}

.hero-product-vertical-text span {
    font-size: 2.8vw;
}
.hero-product-vertical-text {
    top: -34%;
}
.hero-product-wrap {
    width: 100%;
    margin-top: 90%;
    padding-top: 10%;
}
.lead-section::before {
    background-size: auto 100%;
    padding-top: 50%;
}
    .question h2{
        font-size:4.6vw;
    }
    .question .cloud {
        font-size: 3.2vw;
    }
.question .cloud01{
}
.question .cloud02{
}
.question .cloud03{
}
.question .cloud04{
}
.product-type-card > a{
    display: flex;
}
.product-type-card .cta {
    display: flex;
    flex-direction: column;
    flex:1;
}

.product-type-card .cta h4{
    font-size: 3.6vw;
    width: 100%;
    text-align: center;
}
.product-type-card .cta .btn-primary {
    width: 100%;
}

.voice-title {
    max-width: 80%;
    display: block;
    font-size: 6.0vw;
    padding: 2% 0;
    margin-right: auto;
    margin-left: auto;
}

    .voice-item {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
    }

    .voice-avatar {
        width: 40%;
        height: auto;
        min-width: 120px;
    }

    .voice-content {
        width: 100%;
        padding: 4% 8%;
        text-align: left;
    }
.product-section-orange .point-section,
.product-section-green .point-section  {
    background-size: 100% auto, 100% auto;
}

.product-section-orange .point-section {
    background-position: right bottom,right bottom;
    background-size:70% auto, 100% auto;
    padding-bottom: 50%;
}
.product-section-green .point-section {
    background-position: right bottom,right bottom;
    background-size:80% auto, 100% auto;
    padding-bottom: 50%;
}

.order-product {
        flex-direction: column;
    gap:6%;
}

.order-section {
    background-size: auto 100%;
}
.product-section-orange .order-section{
    background-position: left bottom;
}
.product-section-green .order-section{
    background-position: right bottom;
}
.order-cta {
    width: 90%;
}
.product-subtitle {
    padding: 10px 8% 8%;
}
.product-section-orange .product-subtitle:before,
.product-section-orange .product-subtitle:after {
    top: 15%;
}
.product-section-green .product-subtitle:before,
.product-section-green .product-subtitle:after {
    top: 7%;
}
.product-subtitle:before,
.product-subtitle:after {
    width: 5%;
    padding-top: 20%;
}
.product-title {
    font-size: 6vw;
}
.product-section-orange .btn,
.product-section-green .btn {
    font-size:4.2vw;
}
.product-section-orange .order-section::after {
    padding-bottom: 20vw;
    background-size: auto 100%;
}
.order-cta a span.badge {
    font-size:3.6vw;
    font-weight: bold;
    padding: 2%;
}
.order-cta a:nth-child(2) span.btn-txt {
    /*text-indent: -1em;*/
}
.order-cta a span.btn-txt {
    padding: 3% 0;
}
    .point-background-image,
    .custom-background-image {
        display: none;
    }
.order-product-name {
    font-size:5.4vw;
}
.order-product-price {
    font-size: 5vw;
}

.cta-section-bottom .container {
    padding:0;
}

}

/* スマートフォン */
@media screen and (max-width: 480px) {
    .question {
    padding: 5% 0 65%;
    }
    .question::after {
        padding-top: 28%;
    }
    .question .cloud {
        font-size: 3.8vw;
    }
    .question .cloud03 {
    bottom: -4vw;
    left: -1%;
    }
    .question .cloud04 {
        bottom: 1vw;
    }
    .question h2{
        width: 80%;
        padding: 0 0;
    }
    .about > .about01 .container p {
        width: 62%;
        padding: 12% 0;
        margin-left: 0%;
    }
    .about .about01 {
        background-size: 30% auto;
    }
    .about > .about02 .container p {
        width: 75%;
        padding: 5% 0;
        margin-left: 34%;
    }
/*
.product-types-grid {
    flex-direction: column;
}
.product-type-card {
    width: 100%;
}
.product-type-card .cta {
    padding-top: 0;
}
.product-type-card .cta h4 {
    font-size: 5.8vw;
}
.product-type-heading {
    font-size: 5.8vw;
}
*/
.product-type-heading {
    font-size: 4.0vw;
    margin-bottom: 6%;
}
.product-type-card .cta h4 {
    font-size: 4.06vw;
    padding: 0 0;
}

.product-type-card .bggreen .cta h4 {
    padding: 0.4rem 0;
}
.product-types-grid {
    gap: 3%;
}
.product-type-card {
    width: calc(97% / 2);
}
.product-type-card .cta {
    padding-top: 5%;
}
    .product-image img {
    width: 100%;
}
.point-item {
    flex-direction: column;
}
.point-number {
    margin-bottom: 0;
}
.point-title {
    margin-top: 0;
    margin-bottom: 4%;
}
.point-exp {
    width: 100%;
}
    .cta-box {
        padding: 30px 20px;
    }

    .product-features {
        padding: 20px 20px;
    }


    .btn-green-large {
        padding: 15px 50px;
    }
.final-message-section {
    padding: 0 0 40%;
}
.cta-section-bottom .container {
    padding: 0 ;
}
.cta-wrapper {
    display: flex;
}
.cta-box {
flex-direction: column;
padding: 3%;
width: 50%;
}
.cta-content {
    width: 100%;
}
.cta-product-name {
    font-size: 4vw;
}
.cta-product-image{
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.cta-product-image > img{
    width: 20%;
}
.cta-buttons{
    width: 100%;
}
.cta-buttons .btn{
    padding: 3%;
}
.cta-buttons .btn-white {
    font-size: 2.4vw;
}