
/* 共通スタイル */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

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;
	font-family: "Hiragino Sans";
}
html {
    scroll-behavior: smooth;
}
main, article, aside, section, picture, header, footer {
    display: block;
}
body {
    font-family:'Lato', 'Hiragino sans', 'Meiryo', sans-serif;
    color: #333333;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 10%;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: number 0;
	overflow-x: hidden;
}
.br_sp {
  display: none;
}
.br_pc {
  display: block;
}
    @media screen and (max-width: 768px) {
        body{
            font-size: 16px;
            line-height: 1;
        }
		.br_sp {
            display: block;
        }
		.br_pc {
            display: none;
        }
    }
section {
	line-height: 180%;
}
div.cont {
    padding: var(--pls-spacing-xxl) var(--pls-spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--pls-spacing-xxl);
    margin: 0 auto;
    font-size: var(--pls-font-size-base);
}
    @media screen and (min-width: 769px) and (max-width: 999px) {
        div.cont {
            padding: var(--pls-spacing-xxl) var(--pls-spacing-xl);
            gap: 32px;
        }
    }
    @media screen and (max-width: 768px) {
        div.cont {
			padding: var(--pls-spacing-xl) var(--pls-spacing-m);
            gap: 32px;
        }
    }
.cont-narrow-gap {
    display: flex;
    flex-direction: column;
    gap: 32px;
	text-align: center;
}
.cont-narrow-gap p{
    font-size: 18px;
}

/* 見出し */
.cont h1 {
    font-size: var(--pls-font-size-5xl);
    font-weight: var(--pls-font-weight-bold);
    line-height: var(--pls-line-height-5xl);
    text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: var(--pls-object-primary);
	gap: var(--pls-spacing-m);
}
.cont h1 span{
	display: block;
    font-size: var(--pls-font-size-l);
	line-height: var(--pls-line-height-l);
}
.cont h1 .subtitle{
	display: block;
	font-size: var(--pls-font-size-xl);
    line-height: var(--pls-line-height-xl);
}
.cont h1 .red{
    font-size: var(--pls-font-size-5xl);
    font-weight: var(--pls-font-weight-bold);
    line-height: var(--pls-line-height-5xl);
	color: #E50182;
}
.cont h2 {
    margin: 0 auto;
    font-size: var(--pls-font-size-3xl);
    font-weight: var(--pls-font-weight-bold);
    line-height: var(--pls-line-height-3xl);
}
.cont h3 {
    margin: 0 auto;
	line-height: 150%;
    font-size: 28px;
    font-weight: var(--pls-font-weight-bold);
}
.cont h4 {
    font-size: var(--pls-font-size-3xl);
    font-weight: var(--pls-font-weight-bold);
    line-height: var(--pls-line-height-3xl);
}
.cont h5 {
    font-size: 20px;
    font-weight: var(--pls-font-weight-bold);
	line-height: 150%;
}

@media screen and (max-width: 768px) {
    .cont h1 {
        font-size: var(--pls-font-size-xxl);
		line-height: var(--pls-line-height-xxl);
        letter-spacing: 1px;
    }
	.cont h1 span {
        font-size: var(--pls-font-size-base);
    }
	.cont h1 .subtitle{
        font-size: 18px;
		line-height: 1;
	}
	.cont h1 .red {
        font-size: var(--pls-font-size-xxl);
		line-height: var(--pls-line-height-xxl);
	}
    .cont h2 {
        font-size: var(--pls-font-size-xl);
        text-align: center;
		line-height: var(--pls-line-height-xl);
    }
    .cont h3 {
        font-size: 28px;
        text-align: center;
    }
    .cont h4 {
        font-size: var(--pls-font-size-l);
		line-height: var(--pls-line-height-l);
    }
    .cont h5 {
        font-size: 18px;
    }
}
@media screen and (min-width: 769px) and (max-width: 1024px){
    .cont h1 {
        font-size: var(--pls-font-size-3xl);
		line-height: var(--pls-line-height-3xl);
    }
	.cont h1 .subtitle{
        font-size: 24px;
	}
    .cont h2 {
        font-size: var(--pls-font-size-3xl);
    }
    .cont h3 {
		font-size: 28px;
    }
    .cont h4 {
        font-size: 24px;
    }
    .cont h5 {
        font-size: 18px;
    }
}

/* テキストスタイル */
p {
    margin: 0;
}
.pink {
    color: #D91676;
}
.navy {
    color: #000066;
}
.red {
    color: #CC1818;
}
.orange {
	color: #EB5960;
}
.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;
}
.cover-link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* KV */
.kv-sec {
    display: flex;
    flex-direction: column;
}
@media (max-width: 768px) {
.kv-sec {
	background-size: auto 100%;
    background-position: 22% top;
}
}
.kv-wrapper {
    padding: 0;
}
.kv-sec .kv-img-block {
    display: block;
    margin: auto;
}
@media screen and (max-width: 768px){
.kv-sec .kv-img-sp-block {
	padding-top: var(--pls-spacing-xl);
    display: flex;
	flex-direction: column;
    background-image:url(../../../images/yearnote_2026/kv/kv-img-bk.png);
    background-size: cover;
    background-repeat: no-repeat;
	background-position: center center;
	gap: var(--pls-spacing-xl);
}
.kv-sec .kv-img-sp-title {
	display: flex;
    max-width: 100%;
    width: 450px;
    padding: 0 var(--pls-spacing-m);
    flex-direction: column;
    align-items: center;
	align-self: center;
    gap: var(--pls-spacing-l);
}
.kv-sec .kv-img-sp-cpn {
    display: flex;
    flex-direction: column;
    gap:var(--pls-spacing-xl);
	align-self: center;
}
.kv-sec .kv-img-sp-cpn img{
	width: 100%;
	max-width: 390px;
}
.kv-sec .kv-img-sp-cpn img:first-child{
	width: 100%;
	padding: 0 var(--pls-spacing-s);
}
}

img.kv-img-sp{
    display: none;
}
img.kv-img-pc{
    display: block;
}
    @media screen and (min-width: 769px) and (max-width: 1024px){
        img.kv-img-sp{
            display: none;
        }
        img.kv-img-pc{
            max-width: 100%;
            display: block;
        }
    }
    @media screen and (max-width: 768px) {
        img.kv-img-pc{
            display: none;
        }
        img.kv-img-sp{
            width: 100%;
            display: block;
        }
        img.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ボタン */
div.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) {
            div.cta{
                padding: 16px 16px;
                bottom: 10%;
            }
        }
div.cta:hover {
    background-color: #D91676;
}
div.cta p {
    color: #fff;
    font-weight: 600;
}

/* キャンペーン紹介 */
div.headline_block {
	display: flex;
	max-width: 1200px;
	justify-content: center;
	align-items: center;
	gap: var(--pls-spacing-xl);
	align-self: center;
	position: relative;
}
div.headline_block .headline_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 700px;
	padding: var(--pls-spacing-l);
	gap: var(--pls-spacing-xl);
	flex: 1 0 0;
	align-self: stretch;
	border-radius: var(--pls-border-radius-l);
	background: var(--pls-basic-white);
	box-shadow: 0px 6px 12px -3px rgba(51, 51, 64, 0.10), 0px 2px 28px -1px rgba(51, 51, 64, 0.12);
}
.headline_box .sub_title {
	color: var(--pls-object-primary);
	font-size: var(--pls-font-size-base);
	font-weight: var(--pls-font-weight-bold);
	line-height: var(--pls-line-height-base);
}
.headline_box .title_box {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--pls-spacing-m);
	align-self: stretch;
}
.headline_box .title {
	display: flex;
	flex-direction: column;
	text-align: center;
	color: #E50182;
	font-size: var(--pls-font-size-xl);
	line-height: var(--pls-line-height-xl);
	font-weight: var(--pls-font-weight-bold);
	font-feature-settings: 'palt' on;
	font-family: "Helvetica Neue";
	gap: var(--pls-spacing-xs);
}
.headline_box .pls-heading{
    font-size: var(--pls-font-size-4xl);
    line-height: var(--pls-line-height-4xl);
}	
.headline_box .title_text {
	padding: var(--pls-spacing-m);
	font-size: var(--pls-font-size-base);
	align-items: center;
	align-self: stretch;
	line-height: var(--pls-line-height-base);
	background: var(--pls-surface-accent-light);
}
.headline_box .title_text span{
	font-weight: var(--pls-font-weight-bold);	
}	
.headline_box .text_box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--pls-spacing-m);
	align-self: stretch;
}
.headline_box .text{
    width: 100%;
    font-size: var(--pls-font-size-xxs);
	line-height: var(--pls-line-height-base);
}
.headline_box .text span{
	font-weight: var(--pls-font-weight-bold);
}
.headline_box .text ul{
	padding-left: var(--pls-spacing-l);
}
.headline_box .text ul li{
	list-style: disc;
	font-size: var(--pls-font-size-xxs);
	line-height: var(--pls-line-height-xs);
}
@media screen and (min-width: 769px) and (max-width: 999px) {
div.headline_block {
	 align-items: center;
	 gap: var(--pls-spacing-m);
	 align-self: stretch;	
 }
div.headline_block .headline_box {
	 max-width: 100%;
	 padding: var(--pls-spacing-l) var(--pls-spacing-m);
 }
}

@media screen and (max-width:768px) {
div.headline_block {
	 max-width: 540px;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 gap: var(--pls-spacing-m);
	 align-self: center;	
 }
div.headline_block .headline_box {
	 max-width: 100%;
	 padding: var(--pls-spacing-l) var(--pls-spacing-m);
	 gap: var(--pls-spacing-l);
 }
.headline_box .text ul li{
	line-height: var(--pls-line-height-s);
}
.headline_box .title{
	font-size: var(--pls-font-size-xl);
	letter-spacing: normal;
 }
.headline_box .pls-heading{
	font-size: var(--pls-font-size-xl);
	line-height: var(--pls-line-height-xl);
}	
}
section.introduction-sec{
	background: url(../../../images/konnichi25/bk_tile.png),#F7FAFF;
	background-repeat: repeat;
	background-size: 200px;
}
.introduction-sec .introduction-block{
    display: flex;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
    gap: var(--pls-spacing-xl);
    align-self: center;
    position: relative;
}
/* 便利なアプリ版 */
.feature-sec div.cont{
	padding: var(--pls-spacing-3xl) var(--pls-spacing-xl);	
}
.feature-sec div.cont:last-of-type{
	padding: 0 var(--pls-spacing-xl) var(--pls-spacing-3xl);	
}
.feature-sec h1{
	gap: var(--pls-spacing-xxs);
}
.feature-sec .feature-block {
    display: flex;
    max-width: 960px;
    flex-direction: column;
    align-items: center;
    gap: var(--pls-spacing-xxl);
    align-self: center;
}
.feature-sec .feature-box {
    display: flex;
    align-items: center;
    gap: var(--pls-spacing-xl);
    align-self: stretch;
}
.feature-sec .feature-box:nth-of-type(2n+1){
    flex-direction: row-reverse;
}
.feature-sec .feature-box img{
	max-height: 220px;
}	
.feature-text {
    display: flex;
    padding: var(--pls-spacing-xl) 0px;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--pls-spacing-l);
	font-size: 18px;
    flex: 1 0 0;
}
.feature-text span {
	display: block;
	font-size: var(--pls-font-size-xxs);
}	
.feature-text p {
	font-size: var(--pls-font-size-base);
}
.feature-sec .feature-note {
	display: flex;
	max-width: 960px;
	padding: var(--pls-spacing-l);
	flex-direction: column;
	align-items: flex-start;
	gap: var(--pls-spacing-xs);
	align-self: center;
	border-radius: var(--pls-border-radius-l);
	background: var(--pls-surface-secondary);
}
@media screen and (min-width: 769px) and (max-width: 999px) {
.feature-sec .feature-block {	
	gap: var(--pls-spacing-l);
}
.feature-sec .feature-box {
    gap: var(--pls-spacing-l);
}
.feature-sec .feature-box img{
	max-height: 180px;
}	
.feature-box img{
	min-width: 350px;
}	
}	
@media screen and (max-width: 768px) {
.feature-sec div.cont{
	padding: var(--pls-spacing-xl) var(--pls-spacing-m);
}	
.feature-sec .feature-block {	
	max-width: 450px;
	gap: var(--pls-spacing-xl);
}
.feature-sec .feature-note {
	max-width: 450px;
	font-size: var(--pls-font-size-s);
	line-height: var(--pls-line-height-s);
}
.feature-sec .feature-box {	
	flex-direction: column;
}	
.feature-sec .feature-box:nth-of-type(2n+1) {	
	display: flex;
	flex-direction: column;
	gap: var(--pls-spacing-l);
}
.feature-sec p{
	text-align: left;
}
.feature-text {
    gap: var(--pls-spacing-m);
}

}
.feature-sec h1{
	gap: var(--pls-spacing-xxs);
}

.feature-sec .item{
	display: flex;
    flex-direction: column;
    align-items: flex-start;
	gap: var(--pls-spacing-l);
    flex: 1 0 0;
}
.feature-sec .item .item_title{
	display: flex;
	flex-direction: column;
	gap: var(--pls-spacing-l);
	align-self: center;
}	
.feature-sec .item .item_title span{
    color: var(--pls-object-primary);
    text-align: center;
    font-size: var(--pls-font-size-xl);
    font-weight: var(--pls-font-weight-bold);
    line-height: var(--pls-line-height-xl); 
    letter-spacing: 0.96px;
	margin: 0 auto;
}
.feature-sec .item p{
	display: flex;
	align-items: center;
    color: var(--pls-object-primary);
    font-feature-settings: 'pkna' on;
    font-size: var(--pls-font-size-base);
    line-height: var(--pls-line-height-base);
	gap: 10px;
	align-self: stretch;
}
.feature-sec .renewal-block {
	max-width: 960px;
	display: flex;
	gap: var(--pls-spacing-l);
	align-self:center;
}
.feature-sec .text{
	font-size: var(--pls-font-size-base);
	text-align: center;
	font-weight: var(--pls-font-weight-bold);
}
@media screen and (max-width: 768px) {	
section.feature-sec div.cont {
	padding: var(--pls-spacing-xl) var(--pls-spacing-m);
}
section.feature-sec div.cont:last-of-type {
	padding: var(--pls-spacing-xl) var(--pls-spacing-m);	
}	
.feature-sec .renewal-block {
	max-width: 450px;
	flex-direction: column;
	gap: 24px;
}	
.feature-sec .item img {
	max-height: 285px;
	margin: 0 auto;
}	
.feature-sec .item p {
	font-size: var(--pls-font-size-base);
	margin: 0 auto;
}
.feature-sec .item .item_title{
	flex-direction: column-reverse;
	gap: var(--pls-spacing-m);
}	
.feature-sec .text{
	font-size: var(--pls-font-size-base);
	text-align: left;
}
}


/* キャンペーン紹介 */
table {
    table-layout: auto;
    width: 100%;
    border-collapse: collapse;
}
tr {
    border-top: 1px solid #bbb;
}
.tr-top {
    border-top: 0px;
}
.table-row-title {
    display: flex;
    align-items: flex-start;
    font-weight: 600;
}
.s {
    width: 150px;
}
td {
    padding: 16px 32px;
}
.table-row-cont {
    width: 100%;
}

.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: 1200px) {
        .s {
            width: 100px;
        }
    }
    @media screen and (max-width: 960px) {
        .s {
            width: 75px;
        }
        td {
            padding: 16px 16px;
        }
    }
    @media screen and (max-width: 560px) {
        .s {
            padding-top: 16px;
            padding-bottom: 0;
            width: 100%
        }

        .tr-top .table-row-title.s {
            padding-top: 0;
        }
        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;
        }
    }


/* ページ内リンク */
section.page-link-sec {
	display: flex;
	padding: var(--pls-spacing-xl) 0;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}
@media screen and (max-width: 560px) {
section.page-link-sec {
    padding: var(--pls-spacing-m) var(--pls-spacing-m) 0 var(--pls-spacing-m);
}
}
div.page-link-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--pls-spacing-xl);
    width: 800px;
	font-weight: var(--pls-font-weight-bold);
	font-size: var(--pls-font-size-base);
}
div.page-link-wrapper .page-link a{
    width: 100%;
}

@media screen and (max-width: 768px) {
div.page-link-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: var(--pls-spacing-l);
	padding: var(--pls-spacing-xl) var(--pls-spacing-m) var(--pls-spacing-l) var(--pls-spacing-m);
	align-items: stretch;
	width: 100%;
}
}
@media screen and (max-width: 560px) {
div.page-link-wrapper {
	grid-template-columns: 1fr 1fr;
}	
}	
.page-link-wrapper .page-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.page-link-wrapper .page-link p{
	display: block;
    text-align: center;
    padding: 0px 4px 8px;
    font-weight: var(--pls-font-weight-bold);
    color: var(--pls-object-primary);
    font-size: var(--pls-font-size-base);
    border-bottom: 2px solid var(--pls-border-ios, rgba(46, 52, 72, 0.27));
    width: 100%;
    line-height: var(--pls-line-height-base);
	white-space: nowrap;
}
.page-link-wrapper .page-link:hover {
    opacity: 0.7;
}
.page-link img {
    width: 24px;
}

/* PRセクション1 */
div.pr-parts1 {
    display: flex;
    flex-direction: row;
    gap: 32px;
	margin: 0 auto;
}
div.pr-parts1 img{
    max-width: fit-content;
    max-height:446px;
}
    @media screen and (min-width: 769px) and (max-width: 999px) {
        div.pr-parts1 {
            flex-direction: column;
            gap: 32px;
        }
	    }
    @media screen and (max-width: 768px) {
        div.pr-parts1 {
            flex-direction: column;
            gap: 32px;
        }
        div.pr-parts1 img{
            max-width: fit-content;
			max-height:435px;
            margin: 0 auto;
        }
        }
    @media screen and (max-width: 560px) {
        div.pr-parts1 img{
            max-width: fit-content;
            width: 100%;
            max-height: 330px;
            margin: 0 auto;
        }
        }

/* グリッドスタイル*/
.grid-3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--pls-spacing-l);
    max-width: 960px;
}
    @media screen and (max-width: 1024px) {
        .grid-3col {
            grid-template-columns: 1fr 1fr;
            gap: 32px;
        }
    }
    @media screen and (max-width: 768px) {
        .grid-3col {
			max-width: 450px;
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .grid-3col .item img{
			margin: 0 auto;
			max-width: 	570px;
			width: 100%;
        }
    }
    @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;
        }
    }  


/* 便利なアプリ版 */
section.sentence-sec {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 48px;
	align-self: stretch;
}
.sentence-sec .sentence-block {
	display: flex;
	max-width: 1200px;
	align-items: center;
	gap: var(--pls-spacing-l);
	align-self: center;
}
.sentence-sec .sentence-img-block img{
	width: 100%;
	max-width: 535px;
}
.sentence-text-block {
    display: flex;
    flex-direction: column;
	font-size: var(--pls-font-size-base);
	gap: var(--pls-spacing-xl);
}
.sentence-text-block span{
	font-size: var(--pls-font-size-xxs);
    line-height: var(--pls-font-size-s);
}	
.sentence-text-block h3 {
	color: var(--pls-object-primary);
    font-size: var(--pls-font-size-l);
    font-weight: var(--pls-font-weight-bold);
	line-height: var(--pls-font-size-l);
	margin: 0;
}
.sentence-text-block .sentence-box {
    display: flex;
    flex-direction: column;
    gap: var(--pls-spacing-m);
}
.sentence-text-block .sentence-box {
	font-size: var(--pls-font-size-base);
}
.sentence-text-block .sentence-box spann{
	font-size: 11px;
	line-height: var(--pls-line-height-base);
}	
.sentence-text-block .appendix-block {
	display: flex;
    flex-direction: column;
    gap: var(--pls-spacing-m);
    flex: 1 0 0;
}
.sentence-text-block .appendix-box {
    width: 100%;
    border-radius: 10px;
    gap: 10px;
    display: flex;
    border: 2px solid #EEB3CD;
    padding: var(--pls-spacing-m);
}	
.sentence-text-block .appendix-box img {
    width: 80px;
    height: 80px;	
}		
.sentence-text-block .appendix-text {
    display: flex;
    flex-direction: column;
	gap: var(--pls-spacing-xs);
}
.sentence-text-block .appendix-text ul{
    display: flex;
    flex-direction: column;
	gap: var(--pls-spacing-xs);
	padding-left: 32px;
}	

@media screen and (min-width: 769px) and (max-width: 999px) {
.sentence-sec .sentence-block {
    display: flex;
    flex-direction: column;
}	
}	
@media screen and (max-width: 768px) {
.sentence-text-block {
    max-width: 450px;
}
.sentence-sec .sentence-block {
	flex-direction: column;
	width: 100%;
}
.sentence-text-block h3 {
	font-size: var(--pls-font-size-base);
	text-align: left;
}
}
section.utili-sec {
	box-shadow: 0px 0px 30px -20px rgba(75, 99, 117, 0.60) ;
	background-color: rgb(211, 211, 211,0.5);
	background-blend-mode: darken;
	background-repeat: no-repeat;
}
section.utili-sec div.cont{
	padding: var(--pls-spacing-3xl) var(--pls-spacing-xl) var(--pls-spacing-4xl);
	gap: var(--pls-spacing-3xl);
	background-image: url(../../../images/yearnote_2025/kv-img-bk.png);
}
.utili-sec .utili-block {
    display: flex;
    flex-direction: column;
    gap: var(--pls-spacing-xl);
}
.utili-sec .utili-box {
	display: flex;
	max-width: 900px;
	flex-direction: column;
	gap: var(--pls-spacing-l);
	align-self: center;
}
.utili-detail {
	display: flex;
	min-width: 320px;
	min-height: 144px;
	justify-content: center;
	align-self: stretch;
	border-radius: 16px;
	background: #FFF;
	box-shadow: 0px 6px 12px -3px rgba(51, 51, 64, 0.10), 0px 2px 28px -1px rgba(51, 51, 64, 0.12);
}
.utili-detail p{
	background: var(--pls-blue-100);
	color: var(--pls-blue-800);
	display: flex;
	font-size: var(--pls-font-size-base);
	width: 260px;
	padding: 0px var(--pls-spacing-xl);
	text-align: center;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	font-weight: var(--pls-font-weight-bold);
	line-height: var(--pls-line-height-base);
	border-radius: var(--pls-spacing-m) 0 0 var(--pls-spacing-m);
}
.utili-detail p span{
	color: var(--pls-blue-800);
	font-size: var(--pls-font-size-xl);
    line-height: var(--pls-line-height-xl);
}
.utili-detail ul{
	display: flex;
	padding: var(--pls-spacing-l) 32px;
	flex-direction: column;
	gap: var(--pls-spacing-xs);
	line-height: 0;
	flex: 1 0 0;
	align-self: stretch;
	justify-content: center;
}
.utili-detail ul li{
	list-style: disc;
}
@media screen and (max-width: 768px) {
	section.utili-sec div.cont{
		padding: var(--pls-spacing-xl) var(--pls-spacing-m) var(--pls-spacing-3xl);
		gap: var(--pls-spacing-xl);
	}
    .utili-sec .utili-block {
		gap: var(--pls-spacing-l);
	}
	.utili-sec .utili-box {
		max-width: 540px;
	}
	.utili-detail {	
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: center;
		align-self: stretch;
	}
	.utili-detail p{
		display: flex;
		padding: var(--pls-spacing-m) 0;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		align-self: stretch;
		width: 100%;
		border-radius: var(--pls-spacing-m) var(--pls-spacing-m) 0 0;
	}
	.utili-detail ul{
		padding: var(--pls-spacing-m);
}
}
/* 書籍内容の詳細説明セクション */
.index-block {
	display: flex;
	max-width: 900px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: var(--pls-spacing-xl);
	align-self: center;
}
.index-box {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1 0 0;
	gap: var(--pls-spacing-xs);
	padding: var(--pls-spacing-l);
	border: 1px solid var(--pls-border-strong, rgba(46, 52, 72, 0.14));
	background: var(--pls-surface-primary);
}
@media screen and (max-width: 768px) {
.index-block {
    display: flex;
    width: 100%;
    max-width: 540px;
    flex-direction: column;
    align-items: center;
    gap: var(--pls-spacing-l);
    align-self: center;
}
}	
.index-block h4 {
    margin: 0;
    text-align: left;
	line-height: var(--pls-line-height-base);
	font-size: var(--pls-font-size-base);
	font-weight: var(--pls-font-weight-bold);
}
.index-block .index-box {
    box-sizing: border-box;
    align-items: flex-start;
    width: 100%;
    background: #FFFFFF;
    border-radius: 8px;
	padding: var(--pls-spacing-l);
}
.index-block .index-box li{
	list-style: disc;
}
.index-block .index-text {
	display: flex;
	padding: var(--pls-spacing-xs);
	gap: var(--pls-spacing-xxs);
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}
.index-block .index-text:nth-child(even) {
	background: #F6F9FD;
}
.index-block .index-text ul {
    padding-left: var(--pls-spacing-l);
}

/* PRセクション2 */
div.pr-parts2 {
    display: flex;
    flex-direction: column;
    gap: var(--pls-spacing-xxl);
    align-items: center;
}
.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;
}

/*アコーディオン*/
.readmore {
  position: relative;
  margin: 50px auto 0;
  padding: 0 0 75px;
}
.readmore label {
  position: absolute;
  display: table;
  font-size: var(--pls-font-size-l);
  left: 50%;
  bottom: -85px;
  margin: 0 auto;
  padding: var(--pls-spacing-m) var(--pls-spacing-s);
  color: var(--pls-object-link);
  text-align: center;
  white-space: nowrap;
  font-weight: var(--pls-font-weight-bold);
  border-radius: var(--pls-border-radius-s);
  border: 1px solid var(--pls-border-strong, rgba(46, 52, 72, 0.14));
  background: var(--pls-surface-primary, #FFF);
  transform: translateX(-50%);
  line-height: normal;
  z-index: 1;
}
.readmore label::before{
  content: '＋改定内容を全て表示する';
}
.readmore input[type="checkbox"]:checked ~ label::before {
  content: '閉じる';
}
.readmore input[type="checkbox"]{
  display: none;
}
.readmore-content {
  position: relative;
  height: 460px;
  overflow: hidden;
}
.readmore-content::before {
  border-bottom: none;
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient( rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 60%, #fff 100%);
}
.readmore input[type="checkbox"]:checked ~ .readmore-content::before {
  display: none;
}
.readmore input[type="checkbox"]:checked ~ .readmore-content {
  height: auto;
}

/* 画像拡大モーダル */
.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: var(--pls-spacing-m);
}
.grid-col-gap-S span {
    font-size: 22px;
	font-weight: var(--pls-font-weight-bold);
	color: #1E5468;
	line-height: 150%;
	letter-spacing: 0.05em;
}

/* 利用者の声セクション */
section.voc-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--pls-spacing-xxl);
    align-self: stretch;
	background: var(--pls-blue-50);
    box-shadow: 0px 0px 30px -20px rgba(75, 99, 117, 0.60) inset;
}
section.voc-sec div.cont{
	padding: var(--pls-spacing-3xl) var(--pls-spacing-xl);
}	
.voc-image {
    display: flex;
    flex-direction: row;
    column-gap: 8px;
    align-items: center;
}
@media screen and (max-width: 768px) {
section.voc-sec div.cont{
	padding: var(--pls-spacing-xl,) var(--pls-spacing-m);
}	
}
.grid-3col .voc-text {
    font-size: var(--pls-font-size-s);
    line-height: var(--pls-line-height-body-m);
}
.voc-ico {
    width: 40px;
    height: 40px;
}
.voc-image .star {
    height: 16px;
    width: auto;
}

/* リストスタイル */
.cont ul {
    font-size: var(--pls-font-size-s);
    padding-left: var(--pls-spacing-xl);
    line-height: var(--pls-line-height-s);
}
.cont ul li{
	list-style: disc;
	
}	
/* コメ印連番リスト */
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;
}
/* バナーエリア */
div.link-banner {
    max-width: 600px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 0 auto 64px;
}
div.link-banner .banner_block {
    text-align: center;
	list-style: none;
	margin: 0 auto;
	padding-left:0;
}
div.link-banner .banner_block img{
	width: 100%;
}
div.link-banner .banner_block a:hover  {
    opacity: .75
}
@media (max-width: 768px) {
  .l-header__cnt {
    margin-bottom: 0!important;
  }
}