
/*=================================
 お見舞い
=================================*/

.sympathy-section{
    padding:40px 20px;
    background:linear-gradient(135deg,#fffdf8,#fff6eb);
}

.sympathy-inner{
    max-width:1100px;
    margin:auto;
    background:#fff;
    border:1px solid #f2dfc5;
    border-radius:18px;
    padding:28px 35px;
    display:flex;
    align-items:center;
    gap:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.sympathy-icon{
    width:70px;
    height:70px;
    flex-shrink:0;
    border-radius:50%;
    background:#fff4e5;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.sympathy-content{
    flex:1;
}

.sympathy-content h2{
    font-size:28px;
    color:#8b5a2b;
    margin-bottom:10px;
}

.sympathy-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin:0;
}


/*====================================
  Purpose Result
====================================*/
.purpose-result-grid {
    width: 100%;
    max-width: 1100px;
    margin: 35px auto 0;

    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;

    box-sizing: border-box;
}
/*.purpose-result-section{
    max-width:1200px;
    margin:100px auto;
    padding:0 20px;
    text-align:center;
}*/
.purpose-result-card {
    width: 100%;
    min-width: 0;

    padding: 28px 15px;

    border-radius: 20px;
    box-sizing: border-box;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}
/*====================================
  実績タイトル
====================================*/

.purpose-result-title{
    text-align:center;
    line-height:1.7;
    margin-bottom:70px;
    color:#333;
    font-size:clamp(28px,3vw,42px);
    font-weight:700;
}

/* 年間実績 */

.title-label{
    display:inline-block;
    background:linear-gradient(135deg,#19a9df,#48c7f8);
    color:#fff;
    padding:8px 22px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    margin-bottom:20px;

}

/* 537人 */

.title-number{

    font-size:1.8em;
    font-weight:900;

    color:#ff4d87;
    position:relative;
    display:inline-block;
    margin:0 8px;
}

.title-number::after{
    content:"";
    position:absolute;
    left:0;  
  bottom:-8px;
    width:100%;
    height:10px;
    background:#ffe58a;
    z-index:-1;
    border-radius:10px;
}
.purpose-result-note {
    width: 100%;
    max-width: 1100px;

    margin: 15px auto 0;

    font-size: 13px;
    line-height: 1.5;

    color: #666;

    text-align: center;
}

/* スマホだけ改行 */

.sp-only{
    display:none;
}
/*==========================
Gift
==========================*/

.gift-area{
    display:grid;
    grid-template-columns:360px 1fr;
    gap:60px;
    align-items:center;
    margin-bottom:50px;

}

.gift-image img{
    width:100%;
    display:block;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.gift-info{
    text-align:left;
}

.gift-info h3{
    font-size:38px;
    color:#6b45b8;
    margin-bottom:25px;

}

.gift-info ul{
    list-style:none;
}

.gift-info li{
    font-size:26px;
    margin:18px 0;
    font-weight:700;
    display:flex;
    align-items:center;

}

.gift-info li::before{
    content:"🎁";
    margin-right:12px;

}

.gift-note{
    margin-top:25px;
    font-size:22px;
    color:#666;

}

/*==========================
GiftMessage
==========================*/

.campaign-message{
    font-size:42px;
    color:#4d2d21;
    font-weight:900;
    margin:40px 0 30px;

}

/*==========================
GiftCheck
==========================*/

.campaign-check{
    display:flex;
    justify-content:center;
    gap:25px;
    list-style:none;
    margin-bottom:40px;
    flex-wrap:wrap;

}

.campaign-check li{
    background:#fff;
    padding:12px 22px;
    border-radius:50px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    font-weight:700;
    color:#6b45b8;

}

.campaign-check li::before{
    content:"✔ ";
    color:#00a66c;

}

/*==========================
GiftButton
==========================*/

.campaign-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#9b67d4,#7b48c8);
    color:#fff;
    text-decoration:none;
    font-size:38px;
    font-weight:900;
    padding:24px 70px;
    border-radius:18px;
    transition:.3s;
    box-shadow:0 10px 25px rgba(123,72,200,.35);

}

.campaign-btn::after{

    content:"▶";
    margin-left:15px;

}

.campaign-btn:hover{

    transform:translateY(-4px);

}
/* =========================================
   無料体験エリア 完成版
========================================= */

/* -----------------------------------------
   ① 3つのタグ部分
----------------------------------------- */

.trial-top {
    position: relative;

    width: 100%;
    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 14px 20px;

    background:
        repeating-linear-gradient(
            -45deg,
            #fff8d9 0,
            #fff8d9 12px,
            #ffe98a 12px,
            #ffe98a 24px
        );

    overflow: visible;

    z-index: 2;
}


/* タグ共通 */

.trial-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    padding: 10px 28px;

    border-radius: 40px;

    color: #fff;

    font-size: 20px;
    font-weight: 700;

    line-height: 1;

    white-space: nowrap;

    box-sizing: border-box;
}


/* 紫 */

.trial-tag.purple {
    background: #c83ca8;
}


/* 青 */

.trial-tag.blue {
    background: #249fe8;
}


/* 緑 */

.trial-tag.green {
    background: #4dbd72;
}


/* -----------------------------------------
   ② 画像＋ボタンのエリア
----------------------------------------- */

.trial-main {
    position: relative;

    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0;
    padding: 0;

    box-sizing: border-box;

    background: #f05a5a;

    overflow: hidden;

    z-index: 1;
}


/* -----------------------------------------
   ③ 無料体験画像
----------------------------------------- */

.trial-photo {
    position: relative;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 0;

    box-sizing: border-box;

    line-height: 0;

    text-align: center;

    overflow: hidden;
}


.trial-photo img {
    display: block;

    width: 100%;
    max-width: 100%;

    height: auto;

    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


/* -----------------------------------------
   ④ 無料体験ボタン
----------------------------------------- */

.trial-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin: 18px auto 30px;
    padding: 15px 38px;

    background: #ffd43b;

    color: #8a3d00;

    border: 3px solid #fff;

    border-radius: 50px;

    font-size: 20px;
    font-weight: 800;

    line-height: 1.2;

    text-decoration: none;

    box-sizing: border-box;

    box-shadow:
        0 6px 0 #d99b00,
        0 10px 18px rgba(0,0,0,.2);

    transition: transform .2s ease;
}


.trial-btn:hover {
    transform: translateY(-2px);
}



/* =========================================================
   全体
========================================================= */

.voice-section {
    width: min(100%, 1600px);

    margin: 0 auto;

    padding: 34px 45px 45px;

    overflow: hidden;
}


/* =========================================================
  お母さん タイトル
========================================================= */

.voice-heading {
    position: relative;

    display: flex;
    align-items: stretch;
    width: calc(100% - 40px);
    min-height: 135px;
    margin: 10px 20px 38px;
    /* 全体を1つの背景にする */
    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.10) 0px,
            rgba(255,255,255,.10) 3px,
            transparent 3px,
            transparent 11px
        ),
        linear-gradient(
            135deg,
            #f28ab8 0%,
            #ed79ad 45%,
            #e363a1 100%
        );

    border-radius: 20px;
    box-shadow:
        0 7px 10px rgba(0,0,0,.16);
    overflow: visible;
}


/* =========================================================
   左タイトル
========================================================= */

.heading-small {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 34%;
    min-height: 135px;
    padding: 18px 35px;
    background: transparent;
    color: #fff;
    font-size: clamp(21px, 2.1vw, 36px);
    font-weight: 900;
    line-height: 1.35;
    text-align: center;
    letter-spacing: .02em;
    text-shadow:
        2px 3px 0 rgba(150,40,90,.22);
}


/* =========================================================
   タイトル中央の白い斜めライン
========================================================= */

.heading-small::after {
    content: "";
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 100%;
    background: #fff;
    clip-path: polygon(
        0 0,
        18% 0,
        100% 100%,
        82% 100%
    );

    z-index: 5;
}


/* =========================================================
   右タイトル
========================================================= */

.heading-main {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 66%;
    min-height: 135px;
    padding: 18px 80px 18px 50px;
    background: transparent;
    border-radius: 0;
    color: #fff;
    font-size: clamp(28px, 3.1vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    letter-spacing: .03em;

    text-shadow:
        3px 3px 0 rgba(150,40,90,.22);
}


/* =========================================================
   タイトル上のライン
========================================================= */

.heading-main::before {
    content: "";

    position: absolute;

    top: 14px;

    left: 18px;
    right: 18px;

    height: 3px;

    background: rgba(255,255,255,.28);

    border-radius: 10px;
}


/* =========================================================
   タイトル下のライン
========================================================= */

.heading-main::after {
    content: "";

    position: absolute;

    bottom: 14px;

    left: 18px;
    right: 18px;

    height: 3px;

    background: rgba(255,255,255,.28);

    border-radius: 10px;
}


/* =========================================================
   ペンギン
========================================================= */

.penguin {
    position: absolute;

    z-index: 20;

    width: 180px;

    right: -15px;
    top: -35px;

    transform: rotate(8deg);

    filter:
        drop-shadow(
            4px 6px 4px rgba(0,0,0,.18)
        );
}


/* =========================================================
   メインのお客様の声
========================================================= */

.main-voice {
    position: relative;
    min-height: 365px;
    padding:
        28px
        250px
        25px
        55px;

    background: #fffdd0;
    border: 8px solid #f7c4cf;
    border-radius: 45px;
    box-shadow:
        0 8px 8px rgba(0,0,0,.12);
}


/* =========================================================
   メイン文章
========================================================= */

.main-copy {
    font-size: clamp(20px, 2.35vw, 40px);
    line-height: 1.48;
    font-weight: 900;
    letter-spacing: .02em;
}


/* =========================================================
   メイン人物
========================================================= */

.main-person {
    position: absolute;
    right: 5px;
    bottom: -50px;
    width: 250px;
    text-align: center;
    z-index: 4;
}


.main-person img {
    display: block;
    width: 220px;
    margin:
        0 auto
        -12px;
}


.main-person p {
    margin: 0;
    color: #571314;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}


.main-person strong,
.profile strong {
    color: #9a267c;
}


/* =========================================================
   下段のお客様の声
========================================================= */

.voice-row {
    position: relative;
    display: grid;
    grid-template-columns:
        1fr
        120px
        1.25fr
        120px;
    gap: 15px;
    align-items: center;
    min-height: 215px;
    margin-top: 40px;
}


/* =========================================================
   下段口コミアイテム
========================================================= */

.voice-item {
    position: relative;
    min-height: 210px;
}


/* =========================================================
   下段人物
========================================================= */

.person-left {
    position: absolute;
    left: 0;
    bottom: 20px;
    width: 120px;
    max-height: 190px;
    object-fit: contain;
    object-position: bottom;
    z-index: 3;
}


/* =========================================================
   吹き出し共通
========================================================= */

.bubble {
    position: absolute;
    left: 65px;
    right: 0;
    top: 15px;
    min-height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding:
        25px
        30px
        20px
        75px;

    border-radius:
        55%
        45%
        50%
        48%;

    filter:
        drop-shadow(
            7px 8px 4px rgba(0,0,0,.12)
        );
}




/* =========================================================
   緑の吹き出し
========================================================= */

.bubble-green {
    background: #c9e9b9;
}


/* =========================================================
   水色の吹き出し
========================================================= */

.bubble-blue {
    background: #bce9f0;
}


/* =========================================================
   吹き出し文章
========================================================= */

.bubble p {
    position: relative;
    z-index: 2;
    margin: 0;
    text-align: center;
    font-size: clamp(17px, 1.7vw, 28px);
    line-height: 1.25;
    font-weight: 900;
}

.bubble {
    width: 430px;
    height: 170px;
}

.bubble-blue {
    width: 540px;
    height: 170px;
}
/* =========================================================
   プロフィール
========================================================= */

.profile {
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 130px;
    margin: 0;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 900;
}


/* =========================================================
   鉛筆
========================================================= */

.pencil {
    width: 105px;
    justify-self: center;
    transform: rotate(5deg);
}


/* =========================================================
   本
========================================================= */

.book {
    width: 100px;
    justify-self: center;
}


/* =========================================
   タブレット
========================================= */

@media screen and (max-width: 900px) {

    .trial-top {
        gap: 8px;
        padding: 12px 15px;
    }


    .trial-tag {
        padding: 9px 20px;

        font-size: 17px;
    }


    .trial-photo {
        width: 100%;
    }


    .trial-photo img {
        width: 100%;
        height: auto;
    }


    .trial-btn {
        margin: 16px auto 28px;

        padding: 14px 32px;

        font-size: 18px;
    }

}


/* =========================================
   スマホ
========================================= */

@media screen and (max-width: 600px) {

    /* 3つのタグ */

    .trial-top {
        width: 100%;

        display: flex;
        flex-wrap: nowrap;

        gap: 6px;

        padding: 10px 6px;

        box-sizing: border-box;
    }


    .trial-tag {
        flex: 1 1 0;

        min-width: 0;

        padding: 9px 3px;

        border-radius: 30px;

        font-size: 13px;

        white-space: nowrap;
    }


    /* 画像＋ボタン */

    .trial-main {
        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: center;

        gap: 0;

        padding: 0;

        background: #f05a5a;

        overflow: hidden;
    }


    /* 画像 */

    .trial-photo {
        width: 100%;

        height: auto;

        margin: 0;
        padding: 0;

        line-height: 0;

        overflow: hidden;
    }


    .trial-photo img {
        display: block;

        width: 100%;
        max-width: 100%;

        height: auto;

        margin: 0;
        padding: 0;
    }


    /* ボタン */

    .trial-btn {
        display: inline-flex;

        width: auto;
        max-width: calc(100% - 30px);

        margin: 10px auto 28px;
        padding: 13px 28px;

        font-size: 16px;

        white-space: nowrap;

        box-shadow:
            0 5px 0 #d99b00,
            0 8px 15px rgba(0,0,0,.2);
    }

}


/* =========================================
   小さいスマホ
========================================= */

@media screen and (max-width: 380px) {

    .trial-top {
        gap: 4px;

        padding: 8px 5px;
    }


    .trial-tag {
        padding: 8px 2px;

        font-size: 11px;
    }


    .trial-btn {
        margin-top: 8px;

        padding: 12px 23px;

        font-size: 15px;
    }

}

/* SP */

@media screen and (max-width: 768px) {

.sympathy-inner{
    flex-direction:column;
    text-align:center;
    padding:24px 20px;
    gap:18px;
}

.sympathy-icon{
    width:60px;
    height:60px;
    font-size:26px;
}

.sympathy-content h2{
    font-size:22px;
}

.sympathy-content p{
    font-size:15px;
    line-height:1.8;
}

    .message_img {
        display: none; 
    }

    .messageSP_img {
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0 auto;
    }

    .messageSP_img img {
        width: 100%;   
        height: auto;   
        display: block;
    }

/*gift-card*/
.campaign{
    padding:20px 10px;
    margin:40px 15px;
    border-radius:20px;

}

.campaign-ribbon{

    display:block;
    font-size:22px;
    padding:12px;

}

.campaign-sub{
    font-size:18px;
}

.campaign h2{
    font-size:34px;
    margin-bottom:25px;

}

.campaign h2 span{
    font-size:46px;
}

.gift-area{
    grid-template-columns:1fr;
    gap:25px;

}

.gift-image{
    max-width:280px;
    margin:auto;

}

.gift-info{

    text-align:center;

}

.gift-info h3{
    font-size:28px;

}

.gift-info li{
    justify-content:center;
    font-size:20px;

}

.gift-note{
    font-size:17px;

}

.campaign-message{
    font-size:22px;

}

.campaign-check{

    flex-direction:column;
    gap:12px;

}

.campaign-check li{

    width:100%;
    text-align:center;

}

.campaign-btn{
    width:100%;
    padding:14px;
    font-size:22px;

}
h2 span.present-title{
    display:inline-block;
    font-size:22px;
    line-height:1.3;
}

/*合格率*/
.sp-only{
    display:block;

}

.title-label{
    font-size:15px;
    padding:6px 18px;

}

.title-number{
    font-size:1.5em;

}
    .trial-banner{
        width:calc(100% - 20px);
        margin:20px auto;
        border-radius:12px;
    }
    .trial-banner{
        margin:20px 10px;
        border-radius:12px;
    }

    .trial-top{
        gap:6px;
        padding:10px;
    }

    .trial-tag{
        padding:6px 12px;
        font-size:12px;
    }


    .trial-copy{
        padding:12px 8px 10px;
    }

    .trial-copy h2{
        font-size:34px;
        -webkit-text-stroke:2px #000;
    }

    .trial-copy small{
        font-size:.55em;
    }

    .trial-copy p{
        font-size:28px;
        -webkit-text-stroke:2px #000;
    }


 .trial-photo{
        padding:15px;
        text-align:center;
    }

    .trial-photo img{
        width:100%;
        height:auto;
        display:block;
        margin:0 auto;
    }

    .trial-btn{
        position:relative;
        left:auto;
        bottom:auto;
        transform:none;

        display:block;
        width:fit-content;
        margin:10px auto 0;

        padding:8px 20px;
        font-size:15px;
        border-width:2px;
    }

    .trial-text{
        padding:0 15px;
        font-size:15px;
    }

}
.trial-copy{
    color:#fff;
    -webkit-text-stroke:3px #000;
    paint-order:stroke fill;
}
}

/*====================================
  上段4枚
====================================*/

.purpose-result-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-bottom:50px;
}

.purpose-result-card{
    border-radius:30px;
    padding:40px 25px;
    min-height:250px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.purpose-result-card:hover{
    transform:translateY(-8px);
}

.purpose-blue{
    background:#edf8ff;
}

.purpose-pink{
    background:#fff2f7;
}

/*====================================
  数字
====================================*/

.purpose-percent{
    font-size:72px;
    font-weight:800;
    line-height:1;
    margin-bottom:20px;
}

.purpose-blue .purpose-percent{
    color:#1ba5db;
}

.purpose-pink .purpose-percent{
    color:#ff5b98;
}

#purpose-counter{
    font-size:1em;
}

.percent-sign{
    font-size:.55em;
}

.purpose-result-card p{
    font-size:26px;
    font-weight:600;
    color:#333;
    line-height:1.7;
    margin:0;
}

/*====================================
  92%エリア
====================================*/

.purpose-achievement{
    position: relative;
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.purpose-achievement-card{
    width: 380px;
    min-height: 240px;
    position: relative;
}

/* ペンギン */

.purpose-penguin{
    position: absolute;
    left: calc(50% + 190px); 
    bottom: 0;
}

.purpose-penguin img{
    width: 180px;
    height: auto;
    display: block;
}

/*====================================
  注釈
====================================*/

.purpose-result-note{

    margin-top:30px;
    color:#777;
    font-size:14px;

}

/*====================================
  Tablet
====================================*/

@media (max-width:991px){

.purpose-result-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/*====================================
  SP
====================================*/

.purpose-result-section{
    margin:50px auto;
    padding:0 10px;
}

/* タイトル */
.purpose-result-title{
    font-size:18px;
    line-height:1.5;
    margin-bottom:20px;
}

.title-label{
    font-size:12px;
    padding:4px 12px;
    margin-bottom:10px;
}

.title-number{
    font-size:1.2em;
}

/* 4枚はそのまま */
.purpose-result-grid{
    grid-template-columns:repeat(4,1fr);
    gap:8px;
    margin-bottom:20px;
}

/* カードを小さく */
.purpose-result-card{
    padding:15px 8px;
    min-height:120px;
    border-radius:15px;
}

/* 数字 */
.purpose-percent{
    font-size:28px;
    margin-bottom:8px;
}

/* % */
.purpose-percent span,
.percent-sign{
    font-size:.45em;
}

/* 文字 */
.purpose-result-card p{
    font-size:11px;
    line-height:1.4;
}

/* 92%カード */
.purpose-achievement-card{
    width:240px;
    min-height:140px;
}

/* ペンギン */
.purpose-penguin{
    left:calc(50% + 120px);
}

.purpose-penguin img{
    width:80px;
}

/* 注釈 */
.purpose-result-note{
    font-size:10px;
    margin-top:15px;
}

.purpose-catch{
    font-size:18px;
    padding:6px 16px;
}

.purpose-catch span{
    font-size:22px;
}

}


/* =========================================================
   タブレット
========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------
       全体
    ----------------------------------------- */

    .voice-section {
        width: 100%;

        padding:
            15px
            12px
            30px;
    }


    /* -----------------------------------------
       タイトル
    ----------------------------------------- */

    .voice-heading {
        display: flex;

        width: calc(100% - 16px);

        min-height: 95px;

        margin:
            5px
            8px
            25px;

        border-radius: 14px;
    }


    .heading-small {
        width: 38%;

        min-height: 95px;

        padding:
            10px
            15px;

        font-size: 16px;

        line-height: 1.3;
    }


    .heading-small::after {
        right: -18px;

        width: 36px;
    }


    .heading-main {
        width: 62%;

        min-height: 95px;

        padding:
            10px
            48px
            10px
            25px;

        font-size: 23px;

        line-height: 1.2;
    }


    .heading-main::before {
        top: 9px;

        height: 2px;
    }


    .heading-main::after {
        bottom: 9px;

        height: 2px;
    }


    .penguin {
        width: 95px;

        right: -5px;

        top: -18px;
    }


    /* -----------------------------------------
       メイン口コミ
    ----------------------------------------- */

    .main-voice {
        min-height: 0;

        padding:
            25px
            200px
            140px
            35px;

        border-width: 6px;

        border-radius: 30px;
    }


    .main-copy {
        font-size: 21px;

        line-height: 1.55;
    }


    .main-person {
        width: 190px;

        right: 0;

        bottom: -35px;
    }


    .main-person img {
        width: 165px;
    }


    .main-person p {
        font-size: 14px;
    }


    /* -----------------------------------------
       下段
    ----------------------------------------- */

    .voice-row {
        grid-template-columns:
            1fr
            80px
            1fr
            80px;

        gap: 8px;

        margin-top: 35px;
    }


    .voice-item {
        min-height: 190px;
    }


    .person-left {
        width: 90px;

        bottom: 15px;
    }


    .bubble {
        left: 48px;

        min-height: 145px;

        padding:
            20px
            15px
            20px
            50px;
    }


    .bubble p {
        font-size: 17px;

        line-height: 1.35;
    }


    .profile {
        width: 100px;

        font-size: 12px;
    }


    .pencil {
        width: 70px;
    }


    .book {
        width: 70px;
    }
}


/* =========================================================
   スマホ
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------
       全体
    ----------------------------------------- */

    .voice-section {
        width: 100%;

        padding:
            10px
            8px
            25px;
    }


    /* -----------------------------------------
       タイトル
    ----------------------------------------- */

  /* =========================================================
   タイトル
   斜めデザインなし・1枚につながったデザイン
========================================================= */

.voice-heading {
    position: relative;

    display: flex;
    align-items: stretch;

    width: calc(100% - 40px);
    min-height: 135px;

    margin: 10px 20px 38px;

    background:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,.10) 0px,
            rgba(255,255,255,.10) 3px,
            transparent 3px,
            transparent 11px
        ),
        linear-gradient(
            135deg,
            #f28ab8 0%,
            #ed79ad 45%,
            #e363a1 100%
        );

    border-radius: 20px;

    box-shadow:
        0 7px 10px rgba(0,0,0,.16);

    overflow: visible;
}


/* =========================================================
   左タイトル
========================================================= */

.heading-small {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34%;
    min-height: 135px;

    padding: 18px 35px;

    background: transparent;

    color: #fff;

    font-size: clamp(21px, 2.1vw, 36px);

    font-weight: 900;

    line-height: 1.35;

    text-align: center;

    letter-spacing: .02em;

    text-shadow:
        2px 3px 0 rgba(150,40,90,.22);
}


/* =========================================================
   右タイトル
========================================================= */

.heading-main {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 66%;
    min-height: 135px;

    padding: 18px 80px 18px 50px;

    background: transparent;

    color: #fff;

    font-size: clamp(28px, 3.1vw, 52px);

    font-weight: 900;

    line-height: 1.2;

    text-align: center;

    letter-spacing: .03em;

    text-shadow:
        3px 3px 0 rgba(150,40,90,.22);
}


/* =========================================================
   上下のライン
========================================================= */

.heading-main::before {
    content: "";

    position: absolute;

    top: 14px;
    left: 18px;
    right: 18px;

    height: 3px;

    background: rgba(255,255,255,.28);

    border-radius: 10px;
}


.heading-main::after {
    content: "";

    position: absolute;

    bottom: 14px;
    left: 18px;
    right: 18px;

    height: 3px;

    background: rgba(255,255,255,.28);

    border-radius: 10px;
}


/* =========================================================
   ペンギン
========================================================= */

.penguin {
    position: absolute;

    z-index: 20;

    width: 180px;

    right: -15px;
    top: -35px;

    transform: rotate(8deg);

    filter:
        drop-shadow(4px 6px 4px rgba(0,0,0,.18));
}


/* =========================================================
   タブレット
========================================================= */

@media (max-width: 900px) {

    .voice-heading {
        width: calc(100% - 16px);

        min-height: 95px;

        margin: 5px 8px 25px;

        border-radius: 14px;
    }

    .heading-small {
        width: 38%;

        min-height: 95px;

        padding: 10px 15px;

        font-size: 16px;

        line-height: 1.3;
    }

    .heading-main {
        width: 62%;

        min-height: 95px;

        padding: 10px 48px 10px 25px;

        font-size: 23px;
    }

    .heading-main::before {
        top: 9px;
        height: 2px;
    }

    .heading-main::after {
        bottom: 9px;
        height: 2px;
    }

    .penguin {
        width: 95px;

        right: -5px;
        top: -18px;
    }
}


/* =========================================================
   スマホ
========================================================= */

@media (max-width: 600px) {

    .voice-heading {
        width: calc(100% - 6px);

        min-height: 72px;

        margin: 5px 3px 20px;

        border-radius: 10px;
    }

    .heading-small {
        width: 39%;

        min-height: 72px;

        padding: 6px 8px;

        font-size: 12px;

        line-height: 1.25;
    }

    .heading-main {
        width: 61%;

        min-height: 72px;

        padding: 7px 32px 7px 15px;

        font-size: 18px;

        line-height: 1.2;

        letter-spacing: 0;
    }

    .heading-main::before {
        top: 6px;

        left: 8px;
        right: 8px;

        height: 2px;
    }

    .heading-main::after {
        bottom: 6px;

        left: 8px;
        right: 8px;

        height: 2px;
    }

    .penguin {
        width: 68px;

        right: -3px;
        top: -14px;
    }
}


/* =========================================================
   小さいスマホ
========================================================= */

@media (max-width: 380px) {

}


    /* -----------------------------------------
       下段口コミ
    ----------------------------------------- */

    .voice-row {
        display: block;

        margin-top: 45px;
    }


    .voice-item {
        min-height: 190px;

        margin-bottom: 25px;
    }


    .voice-item + .voice-item {
        margin-top: 25px;
    }


    /* -----------------------------------------
       下段人物
    ----------------------------------------- */

    .person-left {
        width: 85px;

        bottom: 8px;
    }


    /* -----------------------------------------
       吹き出し
    ----------------------------------------- */

    .bubble {
        left: 45px;

        right: 0;

        top: 15px;

        min-height: 145px;

        padding:
            18px
            12px
            18px
            45px;

        border-radius: 45%;
    }


    .bubble p {
        font-size: 16px;

        line-height: 1.35;
    }


    /* -----------------------------------------
       プロフィール
    ----------------------------------------- */

    .profile {
        width: 95px;

        font-size: 11px;

        line-height: 1.2;
    }


    /* -----------------------------------------
       装飾
    ----------------------------------------- */

    .pencil,
    .book {
        display: none;
    }
}


/* =========================================================
   小さいスマホ
========================================================= */

@media (max-width: 380px) {

    /* タイトル */

    .heading-small {
        font-size: 11px;

        padding:
            5px
            5px;
    }



    .heading-small {
        font-size: 11px;

        padding: 5px;
    }

    .heading-main {
        font-size: 16px;

        padding:
            6px
            25px
            6px
            12px;
    }

    .penguin {
        width: 58px;

        top: -11px;
    }


    /* メイン文章 */

    .main-copy {
        font-size: 15px;

        line-height: 1.6;
    }


    .main-voice {
        padding:
            18px
            15px
            130px;
    }


    /* 吹き出し */

    .bubble p {
        font-size: 14px;
    }


    .bubble {
        padding-left: 40px;
    }


    .person-left {
        width: 78px;
    }
  }
  