
/* font */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@700&display=swap');


:root {
    /* Color */
    --c-main: #007DEF;
    --c-base: #E4F1FD;
    --c-font: #222222;
    --c-pk: #FF485A;
    --c-yw-l: #fff49a;
    --c-og: #F7931E;
    --c-gr: #0EE110;
    --c-gy: #aaa;
    
    --c-au: #EB5506;
    --c-uq: #E0007E;
    --c-sb: #28A8E1;
    
    
    --c-bu: #2EA7E0;
    --c-gr-l: #F2F9E9;
    
    


    /* Font */
    --font-noto: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-man: "Manrope", "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", YuGothic, Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}



html {
    font-size: 62.5%;
}

body {
  font-family: var(--font-noto);
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: .05em;
  scroll-behavior: smooth !important;
}


img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    transition: .3s;
    &:link, &:visited {
        color: var(--c-main);
        text-decoration: underline;
    }
    &:hover {
        filter: brightness(120%);
    }

}

.wrap {
    margin-right: auto;
    margin-left: auto;
    width: min(1200px, 90%);
}

.notice {
    font-size: 1.4rem;
    text-align: left;
    
    &.ind {
        text-indent: -1em;
        padding-left: 1em;
    }
    
    li {
        text-indent: -1em;
        padding-left: 1em;
    }
}
.notice2 {
    font-size: 2rem;
    font-weight: 700;
}


.folding > dt {
  position: relative;
  cursor: pointer;
  padding-right: 2em;
}

.folding > dt::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.folding > dt.open::after {
  content: "−";
}

.folding > dd {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  transition: max-height 0.3s ease;
}

.folding > dd.open {
  /* overflow: visible; */
}


.cv {
    margin: 3em 5% 0;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    @media (width < 768px) {
        margin-left: 3%;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        li {
            img {
                width: 100%;
                height: auto;
            }
        }
    }
}

.cta-block {
    margin: 4em auto 0;
    width: min(1062px, 90%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    li {
        &:first-of-type {
            width: 100%;
            margin-bottom: 12px;
        }
        @media (width < 768px) {
            
            &:nth-child(n + 2) {
                height: 18.8vw;
                img {
                    height: 100%;
                    width: auto;
                }
            }
        }
        
    }

    
}

/* .cta-block {
    margin: 3em 5% 0;
    width: min(1062px, 90%);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    li {
        &:first-of-type {
            grid-column: 1 / -1;
        }
    }

    
} */


.sticky-area {
    position: relative;
    & > section {
        padding-top: 80px;
        padding-bottom: 140px;
        @media (width < 768px) {
            padding-top: 40px;
            padding-bottom: 80px;
        }
        
    }
}
.sticky-cta {
    padding: 10px 4%;
    height: 120px;
    position: sticky;
    background: var(--c-main);
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
    z-index: 1000;
    @media (width >= 768px) {
        .tel {
            pointer-events: none;
        }
        a img {
            height: 95px;
            width: auto;
        }
    }
    @media (width < 768px) {
        height: auto;
    }
}


.headline1 {
    margin-bottom: 1.5em;
    font-size: clamp(3.2rem, 2.5vw, 4rem);
    font-weight: 900;
    color: var(--c-main);
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
    span {
        font-size: clamp(1.4rem, 1vw, 1.8rem);
        font-family: var(--font-man);
        font-weight: normal;
    }
    
}

.headline2 {
    margin-bottom: 12px;
    padding: .3em;
    background: var(--c-pk);
    font-size: clamp(2rem, 2vw, 3.6rem);
    font-weight: 900;
    color: #FFF;
    line-height: 1.4;
    text-align: center;
    border-radius: 44px 44px 8px 8px;
    span {
        font-size: 1.4em;
    }
    
    @media (width < 768px) {
        padding: .6em .3em;
         border-radius: 34px 34px 8px 8px;
    }
    
    &.--og {
        background: var(--c-og)
    }
    &.--bu {
        background: var(--c-main)
    }
    &.--s {
        margin-bottom: 8px;
        font-size: clamp(1.6rem, 1.2vw, 2.8rem);
    }
    
}

.headline3 {
    margin-bottom: 0.5em;
    font-size: clamp(1.8rem, 1vw, 2.4rem);
    font-weight: 700;
    color: var(--c-pk);
    line-height: 1.4;
    text-align: center;
    @media (width < 768px) {
        text-align: left;
    }
}


header {
    padding: 0 30px;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    @media (width < 768px) {
        padding: 10px 5%;
        height: auto;
    }
    
    h2 {
        flex: 1;
        @media (width < 768px) {
            
        }
    }
    
    .header__btn {
        display: flex;
        gap: 3px;
        
        @media (width < 768px) {
            width: 35%;
        }
        
        .header__btn__use {
            margin-left: 5px;
        }
        @media (width < 768px) {
            .header__btn__sim,
            .header__btn__contact {
                display: none;
            }
        }
    }
    .header__tel {
        display: grid;
        grid-template-columns: auto auto;
        align-items: center;
        gap: 0 5px;
        @media (width < 768px) {
            display: none;
        }
        
        img {
            grid-column: 1 / 2;
            grid-row: 1 / 3;
        }
        .tel {
            font-size: 48px;
            font-weight: 700;
            color: var(--c-main);
            grid-column: 2 / 3;
            grid-row: 1 / 2;
            line-height: 1;
        }
        .text {
            grid-column: 2 / 3;
            grid-row: 2 / 3;
        }
    }
}



.hero {
    padding: 70px 5% 60px;
    background: url(../img/main_bg.jpg) no-repeat center top;
    text-align: center;
    
    @media (width < 768px) {
        padding: 30px 3% 40px;
        background: url(../img/main_bg@2x.jpg) no-repeat center top / cover;
    }
    
    h1 {
        @media (width >= 768px) {
            margin-bottom: 30px;
        }
    }
    
    .hero_contents {
        display: grid;
        grid-template:
        "text img" auto
        "btn btn" auto /
        auto auto;
        gap: 20px 30px;
        justify-content: start;
        
        @media (width < 768px) {
            grid-template:
            "img" auto
            "text" auto
            "btn" auto /
            auto;
            gap: 20px 0;
        }
        
        .hero_contents_text {
            grid-area: text;
        }
        .hero_contents_chara {
            grid-area: img;
            @media (width < 768px) {
                margin: -5px 0;
                width: 70%;
            }
        }
        .hero_contents_btn {
            margin-left: -30px;
            @media (width < 768px) {
                margin-right: -2%;
                margin-left: -2%;
            }
        }
    }
}





.point {
    @media (width >= 768px) {
        background: var(--c-base) url(../img/bg.png) repeat center top / 120% auto;
    }
    @media (width < 768px) {
        background: var(--c-base) url(../img/bg_sp.png) repeat-y center top / 100% auto;
    }
    
    h2 {
        font-size: clamp(3.4rem, 5vw, 7.2rem);
        font-weight: 900;
        color: var(--c-main);
        text-align: center;
        @media (width < 768px) {
            margin-bottom: 1em;
            line-height: 1;
        }
        span {
            font-size: clamp(5.4rem, 8vw, 11rem);
            font-family: var(--font-man);
            
        }
    }
    
    .point_item {
        margin: 0 auto 20px;
        width: min(1200px, 90%);
        background: rgba(255, 255, 255, 0.5);
        border: 6px solid #fff;
        border-radius: 12px;
        @media (width < 768px) {
            margin: 0 auto 10px;
            border: 3px solid #fff;
            border-radius: 8px;
        }
        
        > dt {
            display: flex;
            padding-left: 120px;
            font-size: clamp(2.2rem, 3vw, 4rem);
            font-weight: 900;
            align-items: center;
            min-height: 120px;
            gap: 10px;
            @media (width < 768px) {
                padding-left: 50px;
                padding-right: 50px;
                line-height: 1.4;
                min-height: 80px;
                img {
                    display: none;
                }
            }
            
            .icon {
                background: url(../img/icon_or.svg) no-repeat 0 0 / contain;
                width: 118px;
                height: 118px;
                font-size: 1.6rem;
                padding-right: 10px;
                position: absolute;
                left: -14px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #FFF;
                font-family: var(--font-man);
                font-weight: bold;
                line-height: 1;
                span {
                    font-size: 6.4rem;
                }
                @media (width < 768px) {
                    width: 58px;
                    height: 58px;
                    font-size: 1rem;
                    span {
                        font-size: 3rem;
                    }
                }
            }

            &::after {
                background: var(--c-pk);
                width: 50px;
                height: 50px;
                color: #FFF;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                border-radius: 100%;
                right: 20px;
                @media (width < 768px) {
                    width: 30px;
                    height: 30px;
                    right: 10px;
                }
            }
            &.open {
                &::after {
                    background: var(--c-gy);
                }
                
            }
        }
        > dd > div {
            padding: 10px 50px 50px;
            @media (width < 768px) {
                padding: 10px 5% 30px;
                
            }
        }
        
        
        &.point1 {
            ul {
                margin-bottom: 30px;
                display: flex;
                gap: 16px;
                @media (width < 768px) {
                    flex-direction: column;
                }
                
                li {
                    padding: 28px;
                    flex: 1;
                    background: #FFF;
                    border-radius: 12px;
                    text-align: center;
                    @media (width < 768px) {
                        padding: 10px 5%;
                        display: grid;
                        grid-template:
                        "plan plan" auto
                        "img price" 45px
                        "after after" auto
                        "notice notice" auto /
                        auto auto;
                    }
                    img {
                        @media (width < 768px) {
                            grid-area: img;
                            align-self: center;
                            height: 45px;
                            max-width: auto;
                            width: auto;
                        }
                    }
                    .plan {
                        margin: 1em 0 0;
                        font-weight: 700;
                        line-height: 1.4;
                        @media (width < 768px) {
                            margin: 0 0 .5em;
                            text-align: left;
                            grid-area: plan;
                            font-size: 1.8rem;
                        }
                        
                    }
                    .price {
                        color: var(--c-pk);
                        font-size: clamp(1.4rem, 1.2vw, 2.6rem);
                        font-weight: 700;
                        letter-spacing: -0.05em;
                        line-height: 1;
                        span {
                            font-size: clamp(3.2rem, 3vw, 7.2rem);
                            font-family: var(--font-man);
                        }
                        @media (width < 768px) {
                            grid-area: price;
                            align-self: center;
                            text-align: right;
                        }
                    }
                    .after {
                        margin: .5em auto;
                        padding: .2em 1em;
                        background: var(--c-gy);
                        color: #FFF;
                        font-weight: 700;
                        border-radius: 999em;
                        display: inline-block;
                        @media (width < 768px) {
                            grid-area: after;
                        }
                    }
                    .notice {
                        @media (width < 768px) {
                            grid-area: notice;
                        }
                    }
                }
            }
        }
        
        
        &.point2 {
            .point2_contents {
                margin-top: 1em;
                display: flex;
                gap: 18px;
                @media (width < 768px) {
                    flex-direction: column;
                }
                dl {
                    flex: 1;
                }
                dd {
                    padding: 15px 5% 20px;
                    background: #FFF;
                    text-align: center;
                    border-radius: 8px;
                    h4 {
                        margin-top: .5em;
                    }
                    @media (width < 768px) {
                        display: grid;
                        grid-template:
                        'title title' auto
                        'img text' auto /
                        36% auto;
                        gap: 5px 0;
                        border: var(--c-pk) 2px solid;
                        h4 {
                            grid-area: title;
                            text-align: center;
                        }
                        img {
                            grid-area: img;
                            align-self: center;
                        }
                        p {
                            grid-area: text;
                            align-self: center;
                            font-weight: 700;
                            text-align: left;
                        }
                    }
                }
            }
        }
        
        &.point3 {
            .point3_contents {
                margin-top: 1em;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 16px 16px;
                @media (width < 768px) {
                    padding: 0 5%;
                    background: #FFF;
                    grid-template-columns: 1fr;
                    gap: 0 0;
                    border: var(--c-pk) 2px solid;
                    border-radius: 8px;
                }
                
                li {
                    padding-top: 20px;
                    background: #FFF;
                    border-radius: 8px;
                    font-size: 1.8rem;
                    font-weight: 700;
                    text-align: center;
                    figcaption {
                        margin-bottom: -20px;
                        position: relative;
                        z-index: 1;
                    }
                    
                    @media (width < 768px) {
                        padding-top: 0;
                        border-radius: 0;
                        display: flex;
                        flex-direction: row-reverse;
                        align-items: center;
                        justify-content: flex-end;
                        figure {
                            width: 26%;
                        }
                        figcaption {
                            
                            margin-bottom: 0;
                        }
                        &:not(:last-of-type) {
                            border-bottom: 2px dotted var(--c-pk);
                        }
                    }
                }
            }
        }
        
        &.point4 {
            ul {
                display: flex;
                gap: 16px;
                @media (width < 768px) {
                    flex-direction: column;
                }
                li {
                    flex: 1;
                    font-weight: 700;
                    a {
                        text-decoration: none;
                        h4 {
                            padding: .4em .5em .3em;
                            background: var(--c-au);
                            text-align: center;
                            color: #FFF;
                            border-radius: 8px 8px 0 0;
                        }
                        p {
                            background: #FFF;
                            border: 3px solid;
                            border-radius: 0 0 12px 12px;
                            font-size: clamp(1.8rem, 2vw, 2.4rem);
                            line-height: 1.4;
                            font-weight: 900;
                            text-align: center;
                            min-height: 120px;
                            display: flex;
                            justify-content: center;
                            align-items: center;
                            flex-direction: column;
                            position: relative;
                            @media (width < 768px) {
                                padding: 10px 5%;
                                min-height: auto;
                            }
                            
                            span {
                                &:first-of-type {
                                    font-size: 3.2rem;
                                    @media (width < 768px) {
                                        line-height: 1;
                                    }
                                }
                            }
                            &::after {
                                content: '';
                                mask: url(../img/icon_arrow.svg) no-repeat 0 0 / contain;
                                width: 28px;
                                height: 28px;
                                display: block;
                                position: absolute;
                                right: 15px;
                                top: 50%;
                                transform: translateY(-50%);
                            }
                        }
                    }
                    
                    &.au {
                        a {
                            h4 {
                                background: var(--c-au);
                            }
                            p {
                                border-color: var(--c-au);
                                color: var(--c-au);
                                span {
                                    &:last-of-type {
                                        color: var(--c-font);
                                    }
                                }
                                &::after {
                                    background: var(--c-au);
                                }
                            }
                        }
                    }
                    &.uq {
                        a {
                            h4 {
                                background: var(--c-uq);
                            }
                            p {
                                border-color: var(--c-uq);
                                color: var(--c-uq);
                                span {
                                    &:last-of-type {
                                        color: var(--c-font);
                                    }
                                }
                                &::after {
                                    background: var(--c-uq);
                                }
                            }
                        }
                    }
                    &.sb {
                        a {
                            h4 {
                                background: var(--c-sb);
                            }
                            p {
                                border-color: var(--c-sb);
                                color: var(--c-sb);
                                &::after {
                                    background: var(--c-sb);
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}









.campaign {
    
    @media (width >= 768px) {
        background: url(../img/bg_campaign.svg), repeating-conic-gradient(var(--c-yw-l) 0% 10%, #ffee82 10% 20%);
    }
    @media (width < 768px) {
        background: url(../img/campaign_bg@2x.png) repeat-y center top / 100% auto, repeating-conic-gradient(var(--c-yw-l) 0% 10%, #ffee82 10% 20%);
    }
    
    h2 {
        margin-bottom: -2em;
        text-align: center;
        @media (width < 768px) {
            margin-bottom: -1em;
        }
    }
    
    .campaign_contents {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        @media (width < 768px) {
            grid-template-columns: 1fr;
        }
        
        & > li {
            display: grid;
            grid-template-rows: subgrid;
            grid-row: span 2;
            gap: 10px;
            padding: 20px min(10px, 5%);
            border: var(--c-main) 4px solid;
            border-radius: 10px;
            background: #FFF;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: start;
            @media (width < 768px) {
                padding-top: 15px;
                padding-bottom: 15px;
            }
            dl {
                display: flex;
                flex-direction: column;
                align-items: center;
                dt {
                    margin: 0 auto;
                    padding: .3em 3em;
                    background: var(--c-gy);
                    display: inline-block;
                    color: #FFF;
                    border-radius: 999em;
                    &::after {
                        background: #FFF;
                        color: var(--c-gy);
                        width: 18px;
                        height: 18px;
                        display: flex;
                        justify-content: center;
                        border-radius: 100%;
                        right: 8px;
                        line-height: 18px;
                        text-align: center;
                    }
                }
            }
            
            a {
                margin: 0 auto;
                padding: .3em 3em;
                background: var(--c-gy);
                display: inline-block;
                color: #FFF;
                border-radius: 999em;
                font-weight: 700;
            }
        }
    }
    
}

.voice {
    @media (width >= 768px) {
        background: url(../img/bg.png) repeat center top / 120% auto;
    }
    @media (width < 768px) {
        background: url(../img/bg_sp.png) repeat-y center top / 100% auto;
    }
    
    .voice_item {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        @media (width < 768px) {
            grid-template-columns: 1fr;
        }
        li {
            display: grid;
            grid-template-rows: subgrid;
            grid-row: span 2;
            gap: 0;
            img {
                width: 100%;
                height: 360px;
                object-fit: cover;
                border-radius: 8px 8px 0 0;
                @media (width < 768px) {
                    object-position: center top;
                    height: 240px;
                }
            }
            p {
                padding: .8em 1em;
                background: var(--c-main);
                color: #FFF;
                border-radius: 0 0 8px 8px;
            }
        }
    }
}


.tv {
    padding: 120px 5% !important;
    
    @media (width >= 768px) {
        background: var(--c-main) url(../img/bg.png) repeat center top / 120% auto;
    }
    
    @media (width < 768px) {
        padding: 60px 5% !important;
        background: var(--c-main) url(../img/bg_sp.png) repeat-y center top / 100% auto;
    }
    .tv_contents {
        padding: 40px 50px;
        border-radius: 8px;
        background: #FFF;
        display: grid;
        align-items: center;
        grid-template-columns: 400px 1fr;
        gap: 0 40px;
        @media (width < 768px) {
            padding: 20px 5%;
            grid-template-columns: 1fr;
        }
        img {
            width: 100%;
            height: auto;
            @media (width < 768px) {
                width: 80%;
                margin: 0 auto;
            }
        }
        ul {
            font-size: clamp(2rem, 2vw, 2.8rem);
            font-weight: 700;
            mark {
                background: linear-gradient(to bottom, transparent 70%, var(--c-yw-l) 70%);
            }
            li {
                position: relative;
                padding-left: 1.1em;
                line-height: 1.6;
                &:not(:last-of-type) {
                    margin-bottom: .8em;
                }
                &::before {
                    content: '';
                    border: var(--c-og) 6px solid;
                    width: 20px;
                    height: 20px;
                    display: block;
                    border-radius: 100%;
                    position: absolute;
                    left: 0;
                    top: .35em;
                    @media (width < 768px) {
                        width: 16px;
                        height: 16px;
                    }
                }
            }
        }
    }
}


.faq {
    
    @media (width >= 768px) {
        background: var(--c-base) url(../img/bg.png) repeat center top / 120% auto;
    }
    @media (width < 768px) {
        background: var(--c-base) url(../img/bg_sp.png) repeat-y center top / 100% auto;
    }
    
    dl {
        margin: 0 auto 20px;
        width: min(1200px, 90%);
        background: rgba(255, 255, 255, 0.5);
        border: 6px solid #fff;
        border-radius: 12px;
        @media (width < 768px) {
            margin: 0 auto 10px;
            border: 3px solid #fff;
            border-radius: 8px;
        }
        
        
        > dt {
            display: flex;
            padding: .5em 80px .5em 80px;
            font-size: clamp(2rem, 2vw, 3rem);
            font-weight: 900;
            align-items: center;
            line-height: 1.4;
            min-height: 100px;
            gap: 10px;
            @media (width < 768px) {
                padding-left: 50px;
                padding-right: 50px;
                min-height: 80px;
            }
            
            &::before {
                content: 'Q';
                background: url(../img/icon_or.svg) no-repeat 0 0 / contain;
                width: 72px;
                height: 72px;
                font-size: 3.6rem;
                padding-right: 10px;
                position: absolute;
                left: -14px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                color: #FFF;
                font-family: var(--font-man);
                font-weight: bold;
                line-height: 72px;
                @media (width < 768px) {
                    width: 58px;
                    height: 58px;
                    font-size: 3rem;
                }
            }
            &::after {
                background: var(--c-pk);
                width: 50px;
                height: 50px;
                color: #FFF;
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
                border-radius: 100%;
                right: 20px;
                @media (width < 768px) {
                    width: 30px;
                    height: 30px;
                    right: 10px;
                }
            }
            &.open {
                &::after {
                    background: var(--c-gy);
                    
                }
                
            }
        }
        > dd {

            & > div {
                padding: .5em 80px .5em 80px;
                position: relative;
                font-size: clamp(1.6rem, 1.2vw, 2.2rem);
                min-height: 100px;
                border-top: 2px dotted #FFF;
                display: flex;
                align-items: center;
                line-height: 1.6;
                @media (width < 768px) {
                    padding-left: 50px;
                    min-height: 80px;
                }
            
                &::before {
                    content: 'A';
                    background: url(../img/icon_pk.svg) no-repeat 0 0 / contain;
                    width: 72px;
                    height: 72px;
                    font-size: 3.6rem;
                    padding-right: 10px;
                    position: absolute;
                    left: -14px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    color: #FFF;
                    font-family: var(--font-man);
                    font-weight: bold;
                    @media (width < 768px) {
                        width: 58px;
                        height: 58px;
                        font-size: 3rem;
                    }
                }
            }
            
            
        }
    }
}



.contact {
    padding: 140px 5%;
}


.form {
    width: min(980px, 90%);
    button {
        margin: 1.5em auto 0;
        padding: .7em 4em;
        background: var(--c-pk);
        color: #FFF;
        font-size: clamp(2.4rem, 2.5vw, 3.2rem);
        font-weight: 900;
        width: fit-content;
        border-radius: 8px;
        box-shadow: 0 8px 0px 0 #DA0015;
        display: block;
        @media (width < 768px) {
            padding: .5em 2em;
        }
    }

    .form__list {
        display: grid;
        grid-template-columns: auto 1fr auto 1fr;
        @media (width < 768px) {
            grid-template-columns: 1fr;
        }
        
        dt {
            padding: .5em 10px .5em 0;
            grid-column: 1;
            font-size: 2.2rem;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            @media (width >= 768px) {
                border-bottom: 3px dotted var(--c-gy);
            }
            @media (width < 768px) {
                padding: 1em 0 .3em;
                font-size: 2rem;
                gap: 6px;
            }
            &.need {
                &::after {
                    content: '必須';
                    background: var(--c-pk);
                    color: #FFF;
                    font-size: 14px;
                    font-weight: 700;
                    padding: .3em .5em;
                    line-height: 1;
                    border-radius: 999em;
                }
            }
            
            @media (width >= 768px) {
                &.colspan {
                    grid-column: 1 / -1;
                    border-bottom: none;
                    padding: 1em 0 0 0;
                }
                &.half {
                    grid-column: 1;
                    & + dd.half {
                        grid-column: 2;
                    }
                }
            }
            
        }
        dd {
            padding: 1.5em 0;
            border-bottom: 3px dotted var(--c-gy);
            @media (width < 768px) {
                padding: 0 0 2em;
            }
            
            @media (width >= 768px) {
                grid-column: 2 / -1;
                &.colspan {
                    padding: .5em 0 2em;
                    grid-column: 1 / -1;
                }
                
                &.half {
                    & + dt.half {
                        grid-column: 3;
                        & + dd.half {
                            grid-column: 4;
                        }
                    }
                }
            }
            
            p:not(:last-of-type) {
                margin-bottom: 1em;
            }
        }
    }
    
    .form_item {
        display: flex;
        align-items: center;
        gap: 2em;
        font-size: 2rem;
        @media (width < 768px) {
            flex-direction: column;
            align-items: flex-start;
            gap: .6em;
        }
    }
    
    input[type="checkbox"] {
      width: 22px;
      height: 22px;
      transform: translateY(-1px);
    }
    input[type="radio"] {
      width: 22px;
      height: 22px;
      transform: translateY(-2px);
    }
    input[type="text"],
    textarea {
        width: 100%;
        background: var(--c-base);
        padding: .6em .7em;
        border-radius: 8px;
        font-size: 1.8rem;
        &.size-s {
            width: 13em;
            @media (width < 768px) {
                width: 100%;
            }
        }
    }
    
    .privacy {
        margin-top: 60px;
        dt {
            margin-bottom: 0.5em;
        }
        & > dd {
            padding: 1em 2em;
            border: var(--c-gy) 1px solid;
            border-radius: 8px;
            height: 200px;
            overflow-y: scroll;
            & > p {
                margin-bottom: 1.5em;
            }
            @media (width < 768px) {
                padding: 1em 5%;
            }
        }
        .privacy_info {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 10px 20px;
            @media (width >= 768px) {
                padding: 1em 2em;
                dt {
                    grid-column: 1;
                }
                dd {
                    grid-column: 2;
                }
            }
            
            @media (width < 768px) {
                grid-template-columns: 1fr;
                gap: 0 0;
                dt {
                    margin-top: 1em;
                    margin-bottom: 0;
                }
            }
        }
    }
    
    .syonin_ttl {
        margin: 1em 0;
        font-weight: 700;
        font-size: 1.8rem;
    }
    .syonin {
        margin-bottom: 1.5em;
        li {
            margin-top: 0.2em;
        }
    }
}



.footer {
    padding: 1em 0;
    border-top: 8px var(--c-main) solid;
    background: var(--c-base);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    p {
        font-weight: 700;
        font-size: 2rem;
    }
    small {
        font-size: 1.6rem;
    }
    
    @media (width < 768px) {
        padding: 1em 5%;
        display: grid;
        grid-template:
        'name privacy' auto
        'small privacy' auto /
        1fr 70px;
        gap: 0 10px;


        p {
            grid-area: name;
            font-size: 1.6rem;
            align-self: end;
        }
        small {
            grid-area: small;
            font-size: 1.4rem;
            align-self: start;
        }
        a {
            grid-area: privacy;
        }
    }
    
}




.thanks {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    h1 {
        
        font-size: clamp(2.6rem, 2.5vw, 3.4rem);
        font-weight: 700;
        color: #FD69AB
    }
    a {
        margin: 1.5em auto 0;
        padding: .5em 3em;
        background: #FD69AB;
        color: #FFF;
        font-size: clamp(2rem, 2vw, 2.8rem);
        font-weight: 700;
        width: fit-content;
        border-radius: 999em;
        display: block;
        text-decoration: none;
        @media (width < 768px) {
            padding: .5em 2em;
        }
        
    }
}



.font-s {
    font-size: 0.7em;
}

.fb {
    font-weight: 700;
}

@media (width < 768px) {
    .pc-only {
        display: none !important;
    }
}
@media (width >= 768px) {
    .sp-only {
        display: none !important;
    }
}