/* イヤーノート2024みのスタイル */
.blue {
    text-align: center;
    color: #000066;
}

/* 共通スタイル */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
:where(:not(.atlas-header *, .atlas-nav *, .atlas-sp-header *, .atlas-footer *, .atlas-sp-footer *, .sb-slidebar *)):is(html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video) {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family:'Lato', 'Hiragino sans', 'Meiryo', sans-serif;
    color: #333333;
    font-size: 14px;
    letter-spacing: 10%;
    padding: 0;
    margin: 0;
    line-height: 1.4;
    list-style: none;
    counter-reset: number 0;
	overflow-x: hidden;
}

    @media screen and (max-width: 560px) {
        body{
            font-size: 16px;
            line-height: 1;
        }
    }
body header{
	background: #FFF;
	padding: 10px;
	border-bottom: 1px solid #eee;
}
body header .wrapper_header{
	width: 100%;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1200px;
}
body header h1{
	display: inline-block;
	float: left;
}

section {
	line-height: 180%;
}
div.cont {
    max-width: 1200px;
    width: 80vw;
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    gap: 64px;
    margin: 0 auto;
}

    @media screen and (max-width: 780px) {
        div.cont {
            width: 90vw;
            padding-top: 32px;
            padding-bottom: 32px;
            gap: 32px;
        }
        
    }

.cont-narrow-gap {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
    @media screen and (min-width: 780px) {
        .br-pc {
            display: block;
        }
        .br-sp {
            display: none;
        }
    }
    @media screen and (max-width: 560px) {
        .br-sp {
            display: block;
        }
        .br-pc {
            display: none;
        }
    }

/* 見出し */
.cont h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 10%;
    width: 100%;
    text-align: center;
    margin: 16px 0;
}

.cont h2 {
    margin: 0 auto;
    font-size: 28px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 10%;
    white-space: normal
}

.cont h3 {
    margin: 0 auto;
    font-size: 22px;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 10%;
}

.cont h4 {
    margin: 0 auto;
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 10%;
}

@media screen and (max-width: 560px) {
    .cont h1 {
        font-size: 28px;
    }

    .cont h2 {
        font-size: 24px;
    }

    .cont h3 {
        font-size: 20px;
    }

    .cont h4 {
        font-size: 18px;
    }
}

/*デザイン付きのh２*/
h2.style {
    position: relative;
    display: inline-block;
    padding: 0 66px;
}

h2.style:before,
h2.style:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 1px;
}

h2.style.pink:before,
h2.style.pink:after {
    background-color: #BA1064;
}

h2.style.navy:before,
h2.style.navy:after {
    background-color: #006;
}
h2.style:before {
    left: 0;
}
h2.style:after {
    right: 0;
}

@media screen and (max-width: 560px) {
    h2.style {
        padding: auto;
        text-align: center;
        margin: 0;
    }
}

/*デザイン付きのh3*/
h3.style.navy {
    padding-left: 8px;
    border-left: solid 8px #006;
}
h3.style.pink {
    width: 100%;
    padding-left: 8px;
    border-left: solid 8px #BA1064;
}
/* テキストスタイル */
p {
    margin: 0;
}
.strong {
    font-weight: 600;
}
.pink {
    color: #D91676;
}
.navy {
    color: #000066;
}
.red {
    color: #CC1818;
}
.white {
    color: #FFFFFF;
}
.text-L {
    font-size: 18px;
}
.text-S {
    font-size: 12px;
    line-height: 150%;
}

/* センタリング テキストセット */
.centering {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}
/* テキスト＋ボタンセット */
.button-parts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}
.button-parts h3{
    text-align: center;
}

/* リンク　*/
a {
    text-decoration: none;
    color: inherit;
    padding: 0;
    margin: 0;
}
a.text:hover {
    text-decoration: underline;
}
.text-link {
    color: #307CBA;
    text-decoration: underline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 24px;
    background: url(https://www.m2plus.com/o/images/yearnote_2024/material-symbols_check-circle.svg) 0%/20px auto no-repeat;
}
.cover-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* KV */
.kv-wrapper {
    padding: 0 0 32px;
    display: flex;
    align-items: center;
    position: relative;
}
.kv-img-bg {
    position: absolute;
    bottom: 70px;
    background-color: #EFF8FF;
    width: 100vw;
    height: 44%;
    z-index: -1;
    /* 背景の下半分に色をしく */
}

/* kv背景画像をパララックスさせる場合
.kv-wrapper::before {
    background-image: url("images/kv-bg.jpeg");
    background-position: 50% 150%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(255, 255, 255, 0.6);
    background-blend-mode: lighten;
    content: "";
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: -1;
}
*/

.kv-img-block {
    display: block;
    margin: auto;
}
.kv-msg {
    text-align: center;
    padding: 8px 16px;
    background-color: #307CBA;
    /* KV下メッセージの背景 */
    /* 色はLPによって可変 */
}
.kv-text {
    color: #fff;
    font-weight: 600;
}
    @media screen and (min-width: 1000px) {
        .kv-img-sp{
            display: none;
        }
        .kv-img-tb{
            display: none;
        }		
        .kv-img-pc{
            max-width: 1000px;
            width: 90vw;
        }
    }
    @media screen and (min-width: 769px) and (max-width: 999px) {
        .kv-img-pc{
            display: none;
        }
        .kv-img-sp{
            display: none;
        }
        .kv-img-tb{
            width: 100%;
        }
		.kv-img-bg {
            bottom: 80px;
        }
    }
    @media screen and (max-width: 768px) {
        .kv-text {
            font-size: 14px;
        }
        .kv-img-pc{
            display: none;
        }
        .kv-img-tb{
            display: none;
        }
        .kv-img-sp{
            max-width: 100%;
			display: block;
        }
        .kv-wrapper {
            padding: 0;
        }
        .kv-img-bg {
            display: none;
        }
    }

/* ボタンスタイル */
.open-ico {
    height: 20px;
    width: fit-content;
}

    /* ネイビーボタン */
    .primary-main {
        max-width: 450px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 16px 32px;
        gap: 10px;
        background: #000066;
        border-radius: 4px;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15);
    }
    .primary-main:hover {
        background-color: #0000B2;
    }
     /* ピンクボタン */
    .accent-main {
        max-width: 450px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 16px 32px;
        gap: 10px;
        background: #BA1064;
        border-radius: 4px;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15);
    }
    .accent-main:hover {
        background-color: #D91676;
    }
    .button-L {
        width: 450px;
        margin: 0 auto;
    }
        @media screen and (max-width: 560px) {
            .button-L {
                width: 100%;
                padding: 16px 0;
            }
        }
    /* トップへ戻るボタン */
    .pagetop {
        height: 50px;
        width: 50px;
        position: fixed;
        right: 2%;
        bottom: 2%;
        background: rgba(255, 255, 255, 0.8);
        border: solid 2px #006;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }
    .pagetop__arrow {
        height: 10px;
        width: 10px;
        border-top: 2px solid #006;
        border-right: 2px solid #006;
        transform: translateY(20%) rotate(-45deg);
    }

    @media (hover: hover) and (pointer: fine) {
        .pagetop:hover,
        .pagetop:hover .pagetop__arrow {
            border-color: #3293e7;
        }
    }

    /* スクロール追従CTAボタン */
    .cta {
        position: fixed;
        right: 0;
        bottom: 12%;
        padding: 16px 32px;
        display: flex;
        flex-direction: row;
        gap: 8px;
        align-items: center;
        background-color: #BA1064;
        border-radius: 4px 0 0 4px;
        z-index: 1;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .15);
    }
        @media screen and (max-width: 560px) {
            .cta{
                padding: 16px 16px;
                bottom: 10%;
            }
        }
    .cta:hover {
        background-color: #D91676;
    }

    .cta p {
        color: #fff;
        font-weight: 600;
    }

/* グリッドスタイル*/
.grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    width: 100%;
}

    @media screen and (max-width: 1200px) {
        .grid-3col {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }
    @media screen and (max-width: 560px) {
        .grid-3col {
            grid-template-columns: 1fr;
            gap: 32px;
        }
    }
.grid-4col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}
    @media screen and (max-width: 1200px) {
        .grid-4col {
            grid-template-columns: 1fr 1fr 1fr;
        }
    }
    @media screen and (max-width: 960px) {
        .grid-4col {
            grid-template-columns: 1fr 1fr;
            gap: 8px;
        }
    }   
    @media screen and (max-width: 560px) {
        .grid-4col {
            grid-template-columns: 1fr;
        }
    }  

/* キャンペーン詳細 */
.campaign-detail-sec {
    background-color: #f6f6f6;
    /* 色はLPによって可変 */
}
.cont-area {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}
table {
    table-layout: auto;
    width: 100%;
    border-collapse: collapse;
}
.tr-top {
    border-top: 0px;
}
.table-row-title {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
}
.s {
    width: 100%;
	display: block;
	padding: 16px 0 0;
}
td {
    padding: 8px 0;
}
.tr-bottom li{
	list-style: disc;
}
.table-row-cont {
    width: 100%;
	display: block;
	padding: 8px 0 0;
}
.td-in-td {
    padding: 16px;
    background: #EBEBEB;
    /* 色はLPによって可変 */
    width: fit-content;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5em;
    letter-spacing: 0.1em;
}
    @media screen and (max-width: 960px) {
        td {
            padding: 16px 16px;
        }
    }

    @media screen and (max-width: 560px) {
        .s {
            padding-top: 16px;
            padding-bottom: 0;
            width: 100%
        }
        td {
            padding: 8px 0;
            display: block;
        }
        .tr-bottom td.table-row-cont {
            padding-bottom: 0;
        }
        .table-row-cont {
            padding-bottom: 16px;
        }
        .td-in-td {
            max-width: fit-content;
        }
    }

/* ページ内リンク */
.page-link-sec {
    padding: 32px 16px 0 16px;
}
    @media screen and (max-width: 560px) {
        .page-link-sec {
            padding: 16px 16px 0 16px;
        }
    }
.page-link-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    column-gap: 64px;
    max-width: 1200px;
    width: fit-content;
    margin: 0 auto;
}
    @media screen and (max-width: 780px) {
        .page-link-wrapper {
            column-gap: 40px;
        }
    }
    @media screen and (max-width: 560px) {
        .page-link-wrapper {
            grid-template-columns: 1fr 1fr 1fr;
            column-gap: 32px;
            row-gap: 16px;
            width: 100%;
        }
    }
.page-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page-link:hover {
    opacity: 0.7;
}
.page-link img {
    width: 24px;
}
.page-link p {
    display: block;
    text-align: center;
    padding: 0px 4px 8px;
    font-weight: 600;
    color: #333333;
    border-bottom: 2px solid #65B0E7;
    width: 100%;
	line-height: 180%;
}
    @media screen and (max-width: 560px) {
       .page-link p {
            font-size: 14px;
        }
    }
/* PRセクション1 */
.pr-parts1 {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.pr-parts1 img{
    width: auto;
    height: fit-content;
}
    @media screen and (max-width: 780px) {
        .pr-parts1 {
            flex-direction: column;
            gap: 32px;
        }
        .pr-parts1 img{
            width: fit-content;
            margin: 0 auto;
        }
    }

    @media screen and (max-width: 560px) {
        .pr-parts1 img{
            width: 100%;
        }
    }
.sentence-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: auto 0;
}
.pr-parts1 h3 {
    margin-bottom: 8px;
}
.pr-parts1 .sentence-block p:first-child {
    margin: 8px 0;
}

/* PRセクション2 */
div.pr-parts2 {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

.br{
    display: block;
}

.pr-parts2-img {
    height: 240px;
    width: fit-content;
}

    @media screen and (max-width: 560px) {
        div.pr-parts2{
            gap: 32px;
        }

        .pr-parts2-img {
            width: 100%;
            height: auto;
        }
        
    }

.pr-parts2 p {
    text-align: center;
}

/* 書籍・セット一覧セクション */
.book-list-sec {
    background-color: #f6f6f6;
    width: auto;
}

    /* 単品 */

    .book-card {
        box-sizing: border-box;
        position: relative;
        display: flex;
        flex-direction: column;
        padding: 16px;
        row-gap: 16px;
        background-color: #fff;
        border: #EBEBEB 1px solid;
    }

    .book-card:hover {
        opacity: 0.75;
        color: #307CBA;
    }

    .book-main-block {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: left;
        align-self: stretch;
        flex-grow: 1;
    }

    .book-cover-S {
        height: 160px;
        width: auto;
        margin: 0 auto;
    }

    .book-title-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    p.copy {
        opacity: 0.7;
    }

    .price-block {
        display: flex;
        flex-direction: row;
        column-gap: 8px;
        vertical-align: middle;
        padding-left: 8px;
    }

    .price-info {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    
    .price {
        font-size: 18px;
        font-weight: 600;
    }

/* 単品リストの場合

    .point {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2px 8px;
        background: #BA1064;
        color: #fff;
        font-weight: 600;
        font-size: 11px;
        border-radius: 4px;
    }

    .book-info-block {
        height: 102px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 8px;
        gap: 8px;
        background: #F9F9FC;
    }

        @media screen and (max-width: 560px) {
            .book-info-block {
                height: auto;
            }
        }

    .info-title-block {
        height: 16px;
    }

    .book-info-text {
        font-weight: 500;
        font-size: 12px;
        line-height: 1.5em;
        letter-spacing: 0.1em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
    }

        @media screen and (max-width: 560px) {
            .book-info-text {
                font-weight: 600;
                font-size: 14px;
            }

            .info-title-block {
                height: 18px;
            }
        }

    .rank-block {
        position: absolute;
        top: -0.2%;
        left: -0.2%;
        width: 60px;
        height: 60px;
    }

    .rank-text {
        font-family: 'EB Garamond';
        width: 30px;
        text-align: center;
        font-weight: 800;
        font-size: 18px;
        color: #333;
        line-height: 1.5em;
        letter-spacing: 0.1em;
        position: absolute;
        left: 3.88%;
        right: 46.12%;
        top: 12%;
    }

    .rank-text-top {
        font-family: 'EB Garamond';
        width: 30px;
        text-align: center;
        font-weight: 800;
        font-size: 18px;
        color: #fff;
        line-height: 1.5em;
        letter-spacing: 0.1em;
        position: absolute;
        left: 3.88%;
        right: 46.12%;
        top: 12%;
    }
*/

    /* セット */
    .set-1col {
        display: flex;
        flex-direction: row;
        background-color: #FFFFFF;
        gap: 32px;
        padding: 32px;
    }

        @media screen and (max-width: 960px) {
            .set-1col {
                flex-direction: column;
                padding: 16px;
                gap: 8px;
            }

            .set-1col img{
                margin: 0 auto;
            }
        } 

        

    .set-thum-L {
        width: 400px;
        height: fit-content;
    }

        @media screen and (max-width: 560px) {
            .set-thum-L {
                width: 100%;
            }
        }


    .set-1col-detail {
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
    }

    .set-1col-detail .main {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .set-1col .price-block,
    .set-multiple-col .price-block {
        padding: 0;
    }

    .set-1col .action-part {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

        @media screen and (max-width: 780px) { 
            .set-1col .action-part {
                grid-template-columns: 1fr;
            } 
        }

    .set-1col .action-part .offer {
        display: flex;
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        padding: 16px;
        background-color: #f7f7f7;
        border-radius: 4px;
    }

       

    .set-multiple-col .action-part {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .set-multiple-col .action-part .offer {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
        border-radius: 4px;
        background-color: #f7f7f7;
    }

    @media screen and (max-width: 560px) {
        .set-multiple-col .action-part .sp-not-display{
            display: none;
        }
    }


    .set-1col .action-part .offer .text-emphasis,
    .set-multiple-col .action-part .offer .text-emphasis {
        color: #D91676;
        font-weight: 600;
    }

        @media screen and (max-width: 780px) { 
            .set-1col .price-block {
                text-align: center;
            } 

            .set-1col .button-S{
                width: 100%;
                max-width: none !important;
                margin: 0 auto;

            }
            
            
        }



    p.disabled {
        opacity: 0.1;
    }

    .button-S {
        margin: 0;
        padding: 8px 0;
        font-weight: 600;
    }

    a.disabled,
    a.disabled:hover {
        background: #EBEBEB;
        color: #ADADAD !important;
        box-shadow: none;
    }

    .set-multiple-col {
        display: flex;
        flex-direction: column;
        padding: 16px;
        gap: 8px;
        background-color: #fff;
    }
    
    .set-main-block {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 1;
    }
    
    .set-thum-S {
        width: 100%;
        height: auto;
		/*height: fit-content;*/
    }

/*アコーディオン*/
.acord {
    background-color: #F2F2F7;
    padding: 8px 16px;
    margin: 0;
    border-radius: 4px;
    width: auto;
}

.toggle {
    display: none;
}

.Label {
    /*タイトル*/
    display: block;
    cursor: pointer;
}

.Label::before {
    /*タイトル横の矢印*/
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    transform: rotate(135deg);
}

.Label,
.content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
}

.content {
    /*本文*/
    height: 0;
    padding: 0 16px;
    overflow: hidden;
    font-size: 12px;
}

.toggle:checked+.Label+.content {
    /*開閉時*/
    height: auto;
    padding: 16px;
    transition: all .3s;
}

.toggle:checked+.Label::before {
    transform: rotate(-45deg) !important;
}

.content ul {
    padding-left: 0;
}

.grey {
    color: #adadad;
}

/* 書籍内容の詳細説明セクション */
.index-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}

    @media screen and (max-width: 560px) {
        .index-block {
            flex-direction: column;
            align-items: flex-start;
            gap: 16px;
        }
        
    }

.summary {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 16px;
    width: 100%;
}

.index-block h3 {
    margin: 0;
    text-align: left;
}
.index-block h4 {
	font-size: 16px;
	font-weight: 600;
    margin: 8px 0;
    text-align: left;
}
.index-block h4:last-of-type {
    margin: 16px 0 8px;
}
.index-block .content h4 {
    margin: 8px 0;
    font-size: 14px;
	font-weight: bold;
}
.index-block .content h5 {
    margin: 8px 8px 0;
    font-size: 12px;
	font-weight: bold;
}
.bullet-points {
    box-sizing: border-box;
    /*display: flex;
    flex-direction: row;
    align-items: flex-start;*/
    width: 100%;
    padding: 32px;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
}
.bullet-points li{
	list-style: disc;
}
.bullet-points-title {
    display: block;
	padding-bottom: 8px;
    font-size: 14px;
}
.bullet-points-title span {
    color: #333333;
    font-size: 18px;
    line-height: 180%;
	display: block;
	font-weight: 600;
}
.index {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    padding: 0;
}

.acord-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

ul.serial-number {
    list-style: none;
}

.serial-number li:before {
    counter-increment: number 1;
    /* number カウンタの増加数をセット */
    content: counter(number) ". ";
    /* 表示形式を指定 */
}

ul.point {
    list-style: disc;
	padding-left: 32px;
}

/* PRセクション3 */
.pr-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.pr-image-box {
    height: fit-content;
    text-align: center;
    position: relative;
    background: #F2F2F7;
    width: 100%;
}

.js-modal-open{
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    cursor: pointer;
}

.js-modal-open img {
    width: 100%;
    object-fit: cover;
}

.expand {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    padding: 4px 8px;
    display: flex;
    gap: 4px;
    color: #333333;
    justify-content: center;
    align-items: center;
}

/* 画像拡大モーダル */
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.modal__bg {
    background: rgba(0, 0, 0, 0.7);
    height: 100vh;
    position: absolute;
    width: 100vw;
    margin: 0;
    padding: 0;
}

.modal__content {
    left: 50%;
    padding: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80vh;
    width: fit-content;
    max-width: 100vw;
}

.modal__content img {
    height: 100%;
    width: auto;
}

    @media screen and (max-width: 560px) {
        .modal__content {
            left: 50%;
            padding: 0;
            position: absolute;
            top: 50%;
            transform: translate(-50%, -50%);
            height: fit-content;
            width: 80vw;
            max-width: 100vw;
            justify-content: center;
        }
        
        .modal__content img {
            height: auto;
            width: 100%;
        }
    }

/* PRボックスのテキスト */
.grid-col-gap-S {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.grid-col-gap-S p {
    line-height: 180%;
}
.pr-block p {
    width: 100%;
    text-align: left;
}

/* 利用者の声セクション */
.voc-image {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    align-items: center;
}

.voc-ico {
    width: 75px;
    height: 75px;
}

.star {
    height: 30px;
    width: auto;
}

/* リストスタイル */
ul {
    margin: 0;
    padding-left: 16px;
}

/* コメ印連番リスト */
ol.list-kome-wrap {
    list-style: none;
    padding: 16px;
    background: #EBEBEB;
}

ol.list-kome-wrap>li {
    counter-increment: count-ex01;
    position: relative;
    padding-left: 2.5rem;
}

ol.list-kome-wrap>li:before {
    content: "※" counter(count-ex01) "：";
    position: absolute;
    top: 0;
    left: 0;
}
/* バナーエリア */
.link-banner {
    max-width: 1200px;
    width: 90vw;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto 64px;
}
.banner_block {
    text-align: center;
	list-style: none;
	margin: 0 auto;
	padding-left:0;
}
.banner_block img{
	width: 100%;
}
.banner_block li a:hover  {
    opacity: .75
}
.version-text{
	font-size: 18px;
	margin: 0 auto;
	text-align: center;
	line-height: 1.7;
}
.version-text span{ 
	font-weight: 600;
}
.version-block {
	margin: 0 auto;
	display: flex;
	max-width: 1000px;
	padding: 40px 80px;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	gap: 16px;
	border-radius: 50px;
	background: #fff;
	box-shadow: 5px 5px 20px 0px rgba(216, 216, 216, 0.70) inset, -5px -5px 20px 0px #FFF inset;
}

	@media screen and (max-width: 780px) { 
	.version-block {
		padding: 40px;
	}
	.version-text{
		font-size: 16px;
		text-align: left;
}
}		