@charset "UTF-8";
/*-------------
vars & @use styles.css
-------------*/
:root{
    --blocks-width--max: 1000px;
    --blocks-width--max_pc: 1000px;
    --blocks-width--table: 960px;
    --blocks-width: min(100%,var(--blocks-width--max));
    --blocks-border-gray: var(--border-gray);
    --blocks-bg-gray: var(--bg-gray);
}
@media screen and (max-width:768px){
    :root{
        --blocks-width--max: var(--inner-width--sp_vw);
        --blocks-width--table: var(--inner-width--sp_vw);
    }
}

/*-------------
contents
-------------*/
.contents--blocks{
    padding: var(--contents-updownspace);
    line-height: calc(1em + 10px);
}

/*-------------
2カラムブロック
-------------*/
.block--2colm{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: var(--blocks-width--max);
    margin: 0 auto;
}
.block--2colm:not(:first-child){
    margin-top: 80px;
}
.block--2colm:not(:last-child){
    margin-bottom: 80px;
}
.block--2colm-item{
    flex: 0 0 calc(50% - 26px);
    min-width: 0;
}
@media screen and (min-width:769px){
    .block--2colm-item:not(:nth-child(-n+2)){
        margin-top: 50px;
    }
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--2colm{
        display: block;
        width: 100%;
        border-top: solid 1px var(--blocks-border-gray);
    }
    .block--2colm:not(:first-child){
        margin-top: 50px;
    }
    .block--2colm:not(:last-child){
        margin-bottom: 50px;
    }
    .block--2colm + .block--2colm{
        margin-top: -35px;
    }
    .block--2colm-item{
        padding: 20px 0 35px;
        border-bottom: solid 1px var(--blocks-border-gray);
    }
    .block--2colm-item:not(:has(:not(.block--editor))){
        display: none;
    }
}

/*-------------
3カラムブロック
-------------*/
.block--3colm{
    display: flex;
    flex-wrap: wrap;
    width: var(--blocks-width--max);
    margin: 0 auto;
}
.block--3colm:not(:first-child){
    margin-top: 60px;
}
.block--3colm:not(:last-child){
    margin-bottom: 60px;
}
.block--3colm-item{
    flex: 0 0 calc((100% - 82px) / 3);
    min-width: 0;
}
@media screen and (min-width:769px){
    .block--3colm-item:not(:nth-child(3n)){
        margin-right: 41px;
    }
    .block--3colm-item:not(:nth-child(-n+3)){
        margin-top: 40px;
    }
}
.block--3colm-item .block--image:not(:last-child){
    margin-bottom: 17px;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--3colm{
        display: block;
    }
    .block--3colm:not(:first-child){
        margin-top: 40px;
    }
    .block--3colm:not(:last-child){
        margin-bottom: 40px;
    }
    .block--3colm + .block--3colm{
        margin-top: -30px;
    }
    .block--3colm-item{
        padding: 15px var(--inner-sidespace--sp_vw) 20px;
        border: solid 1px var(--blocks-border-gray);
    }
    .block--3colm-item:not(:has(:not(.block--editor))){
        display: none;
    }
    .block--3colm-item:not(:last-child){
        margin-bottom: 10px;
    }
}

/*-------------
画像回り込み
-------------*/
.block--imagewrap{
    width: var(--blocks-width--max);
    margin: 0 auto;
    overflow: hidden;
}
.block--imagewrap:not(:first-child){
    margin-top: 50px;
}
.block--imagewrap__image{
    display: table;
    float: left;
    max-width: calc(50% - 17px);
    margin: 0 34px 25px 0;
}
.block--imagewrap__image.is--align_right{
    float: right;
    margin-right: 0;
    margin-left: 34px;
}
.block--imagewrap__image__pic{
    display: table-row;
}
.block--imagewrap__image__pic img{
    display: table-cell;
    width: auto;
    max-width: 100%;
    height: auto;
}
.block--imagewrap__image__caption{
    display: table-caption;
    justify-content: center;
    margin: 6px 0 -2px;
    color: #666;
    font-size: 1.3rem;
    line-height: calc(1em + 6px);
    caption-side: bottom;
}
.block--imagewrap__image:not(.is--loaded_img) .block--imagewrap__image__caption{
    opacity: 0;
}
.block--imagewrap__image__caption-inner{
    display: flex;
    justify-content: center;
}
.block--imagewrap-body > * > p:first-child{
    margin-top: -6px;
}
.block--imagewrap-body .block--editor h2,
.block--imagewrap-body .block--editor h3,
.block--imagewrap-body .block--editor h5,
.block--imagewrap-body .block--editor li,
.block--imagewrap-body .block--editor blockquote{
    display: flex;
    width: auto;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--imagewrap:not(:first-child){
        margin-top: 40px;
    }
    .block--imagewrap__image{
        max-width: calc(50% - 20px);
        margin-right: 20px;
    }
    .block--imagewrap__image.is--align_right{
        margin-left: 20px;
    }
}

/*-------------
見出し
-------------*/
*[class^="block--heading_"] + *{
    margin-top: 0!important;
}
/* h2 */
.block--heading_2,
.block--editor h2{
    display: flex;
    width: var(--blocks-width);
    margin: 0 auto 30px;
    padding-bottom: 13px;
    border-bottom: solid 2px var(--main-color);
    font-size: 2.7rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.block--heading_2:not(:first-child),
.block--editor h2:not(:first-child),
.contents > .block--editor:not(:first-child) .block--heading_2:first-child,
.contents > .block--editor:not(:first-child) .block--editor h2:first-child{
    margin-top: 76px;
}
.block--heading_2::after,
.block--editor h2::after{
    flex: 1 1 auto;
    position: relative;
    bottom: -15px;
    border-bottom: solid 2px #e6e6e6;
    content: "";
}
@media screen and (max-width:768px){
    .block--heading_2,
    .block--editor h2{
        margin-bottom: 25px;
        padding-bottom: 10px;
        font-size: 2.4rem;
    }
    .block--heading_2:not(:first-child),
    .block--editor h2:not(:first-child),
    .contents > .block--editor:not(:first-child) .block--heading_2:first-child,
    .contents > .block--editor:not(:first-child) .block--editor h2:first-child{
        margin-top: 56px;
    }
    .block--heading_2::after,
    .block--editor h2::after{
        bottom: -12px;
    }
}
/* h3 */
.block--heading_3,
.block--editor h3{
    width: var(--blocks-width);
    color: var(--main-color);
    margin: 0 auto 22px;
    padding: 0 0 2px 15px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    position: relative;
}
.block--heading_3:not(:first-child),
.block--editor h3:not(:first-child){
    margin-top: 45px;
}
.block--heading_3::before,
.block--editor h3::before{
    content: "";
    background: var(--main-color);
    width: 7px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 7px;
}
@media screen and (max-width:768px){
    .block--heading_3,
    .block--editor h3{
        margin-bottom: 17px;
        padding-left: 15px;
        border-left-width: 4px;
        font-size: 2.1rem;
    }
    .block--heading_3:not(:first-child),
    .block--editor h3:not(:first-child){
        margin-top: 35px;
    }
    .block--heading_3::before,
.block--editor h3::before{
    content: "";
    background: var(--main-color);
    width: 5px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 5px;
}
}
/* h4 */
.block--heading_4,
.block--editor h4{
    width: var(--blocks-width);
    margin: 0 auto 16px;
    color: var(--main-color);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
}
.block--heading_4:not(:first-child),
.block--editor h4:not(:first-child){
    margin-top: 29px;
}
@media screen and (max-width:768px){
    .block--heading_4,
    .block--editor h4{
        font-size: 2.1rem;
    }
    .block--heading_4:not(:first-child),
    .block--editor h4:not(:first-child){
        margin-top: 24px;
    }
}
/* h5 */
.block--heading_5,
.block--editor h5{
    position: relative;
    width: var(--blocks-width);
    margin: 0 auto 12px;
    padding-left: 1.2em;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
}
.block--heading_5:not(:first-child),
.block--editor h5:not(:first-child){
    margin-top: 25px;
}
.block--heading_5::before,
.block--editor h5::before{
    position: absolute;
    top: 5px;
    left: 0;
    width: 1em;
    height: 1em;
    background: var(--main-color);
    border-radius: 50%;
    content: "";
}
.block--heading_5::after,
.block--editor h5::after{
    position: absolute;
    top: 5px;
    left: 0;
    width: 1em;
    height: 1em;
    background:#fff;
    border-radius: 50%;
    transform: scale(0.6);
    content: "";
}
@media screen and (max-width:768px){
    .block--heading_5:not(:first-child),
    .block--editor h5:not(:first-child){
        margin-top: 20px;
    }
    .block--heading_5,
    .block--editor h5{
        font-size: 1.6rem;
    }
}
/* h6 */
.block--heading_6,
.block--editor h6{
    color: var(--main-color);
    width: var(--blocks-width);
    margin: 0 auto 11px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
}
.block--heading_6:not(:first-child),
.block--editor h6:not(:first-child){
    margin-top: 19px;
}
@media screen and (max-width:768px){
    .block--heading_6,
    .block--editor h6{
        font-size: 1.6rem;
    }
}

/*-------------
区切り線
-------------*/
.block--horizontal,
.block--editor hr{
    width: var(--blocks-width);
    margin: 30px auto;
    border-top: solid 1px var(--blocks-border-gray);
}

/*-------------
エディター
-------------*/
.block--editor{
    width: var(--blocks-width);
    margin: 0 auto;
}
.block--editor:not(:first-child){
    margin-top: 50px;
}
@media screen and (max-width:768px){
    .block--editor:not(:first-child){
        margin-top: 40px;
    }
}
.block--editor p:not(:first-child){
    margin-top: 10px;
}
.block--editor p:not(:last-child){
    margin-bottom: 10px;
}
.block--editor p + br + p{
    margin-top: -10px;
}
.block--editor a:not(:hover){
    text-decoration: underline;
}
.block--editor a[href^="tel:"]:not(:hover){
    text-decoration: none;
    color: var(--main-black);
}
@media screen and (max-width:768px){
    .block--editor a[href^="tel:"]:not(:hover){
        text-decoration: underline;
        color: var(--main-color);
    }
}
/* list */
.block--editor ul:not(:first-child),
.block--editor ol:not(:first-child){
    margin-top: 15px;
}
.block--editor ul:not(:last-child),
.block--editor ol:not(:last-child){
    margin-bottom: 27px;
}
.block--editor li{
    position: relative;
    line-height: calc(1em + 8px);
}
.block--editor li:not(:last-child){
    margin-bottom: 7px;
}
.block--editor ul li{
    padding-left: 12px;
}
.block--editor ul li::before{
    position: absolute;
    top: calc(.5em + 2px);
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--main-color);
    content: "";
}
.block--editor ol{
    counter-reset: editor__list-num;
}
.block--editor ol li{
    padding-left: 2em;
}
.block--editor ol li::before{
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-color);
    font-weight: bold;
    content: counter(editor__list-num,decimal-leading-zero)'.';
    counter-increment: editor__list-num;
}
/* table */
.block--editor table{
    width: auto;
    max-width: 100%;
    overflow: hidden;
    background: #fff;
}
.block--editor .table-wrap:not(:first-child),
.block--editor > table:not(:first-child){
    margin-top: 20px;
}
.block--editor .table-wrap:not(:last-child),
.block--editor > table:not(:last-child){
    margin-bottom: 25px;
}
.block--editor table th,
.block--editor table td{
    padding: 9px 15px 11px;
    border: solid 1px var(--blocks-border-gray);
    vertical-align: middle;
}
@media screen and (max-width:768px){
    .block--editor table{
        max-width: unset;
    }
    .block--editor .table-wrap{
        position: relative;
        overflow: hidden;
    }
    .block--editor .table-wrap__shadow{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
    }
    .block--editor .table-scroll{
        width: 100%;
        overflow: auto;
    }
    .block--editor .table-scroll:not(.is--scroll){
        width: var(--blocks-width--max_pc);
    }
    .block--2colm-item .block--editor .table-scroll:not(.is--scroll){
        width: calc(var(--blocks-width--max_pc) * .474);
    }
    .block--3colm-item .block--editor .table-scroll:not(.is--scroll){
        width: calc(var(--blocks-width--max_pc) * .306);
    }
}
/* blockquote */
.block--editor blockquote{
    position: relative;
    padding: 9px 10px 11px calc(2em + 5px);
    border-radius: 5px;
    background: var(--blocks-bg-gray);
}
.block--editor blockquote:not(:first-child){
    margin-top: 15px;
}
.block--editor blockquote:not(:last-child){
    margin-bottom: 15px;
}
.block--editor blockquote::before{
    position: absolute;
    top: 5px;
    left: .5em;
    color: #999;
    font-size: 2em;
    content: "“";
}

/*-------------
画像
-------------*/
.block--image{
    display: table;
    max-width: var(--blocks-width--max);
    margin: 0 auto;
}
.block--image:not(:first-child){
    margin-top: 20px;
}
.block--image:not(:last-child){
    margin-bottom: 20px;
}
.block--image + .block--image{
    margin-top: 30px;
}
.block--image:first-child + *[class^="block--heading_"]{
    margin-top: 0;
}
.block--image__pic{
    display: table-row;
}
.block--image__pic img{
    display: table-cell;
    width: auto;
    max-width: 100%;
    height: auto;
}
.block--image__caption{
    display: table-caption;
    margin: 6px 0 -2px;
    color: #666;
    font-size: 1.3rem;
    line-height: calc(1em + 6px);
    caption-side: bottom;
}
.block--image:not(.is--loaded_img) .block--image__caption{
    opacity: 0;
}
.block--image__caption-inner{
    display: flex;
    justify-content: center;
}
/* is--align_center */
.block--image.is--align_center{
    margin-left: auto;
    margin-right: auto;
}
/* is--align_right */
.block--image.is--align_right{
    margin-left: auto;
}

/*-------------
テーブル 2列
-------------*/
.block--table{
    width: var(--blocks-width--table);
    margin: 0 auto;
}
.block--table:not(:first-child){
    margin-top: 20px;
}
.block--table:not(:last-child){
    margin-bottom: 30px;
}
.block--table th,
.block--table td{
    padding: 19px 0 20px 15px;
    border-top: solid 1px var(--blocks-border-gray);
    border-bottom: solid 1px var(--blocks-border-gray);
}
.block--table th{
    color: var(--main-color);
}
@media screen and (min-width:769px){
    .block--table{
        display: grid;
        grid-template-columns: auto 1fr;
        border-bottom: solid 1px var(--blocks-border-gray);
    }
    .block--table tbody,
    .block--table tr{
        display: grid;
        grid-template-columns: subgrid;
        grid-column: span 2;
    }
    .block--table th,
    .block--table td{
        border-bottom: none;
    }
}
.block--table td .block--heading_5{
    margin-bottom: 7px;
    font-size: 1.6rem;
}
.block--table td .block--heading_6{
    margin-bottom: 6px;
    font-size: 1.5rem;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--table{
        border-top: solid 1px var(--blocks-border-gray);
    }
    .block--table th{
        display: block;
        width: 100%;
        min-width: 0;
        padding: 19px 0 0;
        border: none;
        font-size: 1.6rem;
        line-height: calc(1em + 8px);
    }
    .block--table td{
        display: block;
        width: 100%;
        padding: 7px 0 20px;
        border-top: none;
    }
    .block--table td .block--heading_5:first-child{
        margin-top: 10px;
    }
}

/*-------------
ボタン
-------------*/
.block--btn-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--blocks-width);
    margin: 0 auto;
}
.block--btn-container:not(:first-child){
    margin-top: 20px;
}
.block--btn-container + .block--btn-container{
    margin-top: -45px;
}
.block--btn-container:not(:last-child){
    margin-bottom: 60px;
}
.block--btn{
    position: relative;
    min-width: min(100%,360px);
    max-width: 100%;
    padding-bottom: 4px;
    overflow: hidden;
    border-radius: 5px;
}
.block--btn::before{
    opacity: .4;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--main-color);
    content: "";
    pointer-events: none;
}
.block--btn::after{
    position: absolute;
    top: calc(calc(50% - 2px) - 9.5px);
    right: 15px;
    z-index: 1;
    width: 19px;
    height: 19px;
    background: url(../images/btn-arrow.svg) no-repeat center / contain;
    content: "";
    pointer-events: none;
}
.block--btn__link{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
    min-height: 55px;
    padding: 8px 49px 11px 15px;
    border-radius: 5px;
    background: var(--main-color);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: calc(1em + 6px);
}
.block--btn__link::before{
    flex: 1 1 auto;
    max-width: 34px;
    content: "";
}
.block--btn__link::after{
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    content: "";
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--btn-container + .block--btn-container{
        margin-top: -40px;
    }
    .block--btn-container:not(:last-child){
        margin-bottom: 50px;
    }
    .block--btn{
        min-width: 0;
        width: 100%;
    }
    .block--btn::after{
        top: calc(calc(50% - 2px) - 9px);
        width: 18px;
        height: 18px;
    }
    .block--btn__link{
        min-height: 48px;
        padding: 8px 48px 10px 15px;
        font-size: var(--base-fontsize);
    }
    .block--btn__link::before{
        max-width: 33px;
    }
}

/*-------------
リンクリスト
-------------*/
.block--linklist{
    clear: both;
    width: var(--blocks-width);
    margin: 0 auto;
    padding: 14px 20px 16px;
    border-radius: 5px;
    background: var(--blocks-bg-gray);
}
.block--linklist:not(:first-child){
    margin-top: 25px;
}
.block--linklist:not(:last-child){
    margin-bottom: 40px;
}
.block--linklist-item:not(:last-child){
    margin-bottom: 10px;
}
.block--linklist:has(+ .block--linklist){
    padding-bottom: 10px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.block--linklist + .block--linklist{
    margin-top: 0;
    padding-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.block--linklist-item__link{
    display: inline-block;
    position: relative;
    padding-left: 24px;
    font-size: 1.5rem;
    line-height: calc(1em + 8px);
}
.block--linklist-item__link:not(:hover){
    text-decoration: underline;
}
.block--linklist-item__link::before{
    position: absolute;
    top: calc(.5em - 5px);
    left: 0;
    width: 17px;
    height: 17px;
    background: url(../images/icon_link.svg) no-repeat center / contain;
    content: "";
}
.block--linklist-item__link::after{
    position: absolute;
    top: calc(.5em - 5px);
    left: 0;
    width: 17px;
    height: 17px;
    background: var(--main-color);
    mix-blend-mode: screen;
    content: "";
}
.block--linklist-item__file{
    display: inline-block;
    position: relative;
    padding-left: 24px;
    font-size: 1.5rem;
    line-height: calc(1em + 8px);
}
.block--linklist-item__file:not(:hover){
    text-decoration: underline;
}
.block--linklist-item__file::before{
    position: absolute;
    top: calc(.5em - 5px);
    left: -2px;
    width: 17px;
    height: 17px;
    background: url(../images/icon_file.svg) no-repeat center / contain;
    content: "";
}
.block--linklist-item__file::after{
    position: absolute;
    top: calc(.5em - 5px);
    left: 0;
    width: 17px;
    height: 17px;
    background: var(--main-color);
    mix-blend-mode: screen;
    content: "";
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--linklist{
        border-radius: 3px;
    }
    .block--linklist-item__link{
        padding-left: 22px;
        font-size: var(--base-fontsize);
    }
    .block--linklist-item__link::before,
    .block--linklist-item__link::after{
        top: calc(.5em - 4px);
        width: 16px;
        height: 16px;
    }
    .block--linklist-item__file{
        padding-left: 22px;
        font-size: var(--base-fontsize);
    }
    .block--linklist-item__file::before,
    .block--linklist-item__file::after{
        top: calc(.5em - 4px);
        width: 16px;
        height: 16px;
    }
}

/*-------------
埋め込み
-------------*/
:root{
    --block--embed-outside: 30px;
}
.block--embed{
    width: var(--blocks-width);
    margin: 0 auto;
    text-align: center;
}
.block--embed:not(:first-child){
    margin-top: var(--block--embed-outside);
}
.block--embed:not(:last-child){
    margin-bottom: var(--block--embed-outside);
}
.block--embed iframe{
    display: block;
    max-width: 100%;
}
.block--embed > *{
    margin-right: auto;
    margin-left: auto;
}
.block--embed > *:not(:first-child){
    margin-top: var(--block--embed-outside);
}
.block--embed > *:not(:last-child){
    margin-bottom: var(--block--embed-outside);
}
.block--embed .fb_reset{
    margin-bottom: calc(var(--block--embed-outside) * -1);
}
.block--embed .fb_iframe_widget_fluid{
    display: inline-block;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--embed iframe[src^="https://www.google.com/maps/embed"]{
        min-height: calc(var(--blocks-width--max) * .75);
    }
}

/*-------------
ページリンク1
-------------*/
.block--pagelink:not(:first-child){
    margin-top: 80px;
}
.block--pagelink:not(:last-child){
    margin-bottom: 80px;
}
.block--pagelink-list{
    display: flex;
    flex-wrap: wrap;
    width: var(--blocks-width);
    margin: 0 auto;
}
.block--pagelink-list-item{
    flex: 0 0 calc((100% - 48px) / 4);
}
@media screen and (min-width:769px){
    .block--pagelink-list-item:not(:nth-child(4n)){
        margin-right: 16px;
    }
    .block--pagelink-list-item:not(:nth-child(-n+4)){
        margin-top: 32px;
    }
}
.block--pagelink-list-item__link{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    /* border: solid 1px var(--blocks-border-gray); */
    border-radius: 3px;
    background: #fff;
}
.block--pagelink-list-item__visual{
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-bottom: solid 1px var(--blocks-border-gray);
}
.block--pagelink-list-item__visual img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.block--pagelink-list-item__title{
    display: flex;
    flex: 1 1 auto;
    align-items: center;
    position: relative;
    min-height: 59px;
    padding: 7px 30px 9px 15px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: calc(1em + 4px);
    background: var(--main-color);
}
.block--pagelink-list-item__title::after{
    position: absolute;
    top: 50%;
    right: 13px;
    transform: rotate(45deg);
    transform-origin: top right;
    width: 7px;
    height: 7px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    content: "";
}
.block--pagelink-list-item__link--nolink .block--pagelink-list-item__title::after {
    display: none;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .block--pagelink:not(:first-child){
        margin-top: 60px;
    }
    .block--pagelink:not(:last-child){
        margin-bottom: 60px;
    }
    .block--pagelink-list{
        display: flex;
        flex-wrap: wrap;
        width: var(--blocks-width);
        margin: 0 auto;
    }
    .block--pagelink-list-item{
        flex: 0 0 calc(50% - 3px);
    }
    .block--pagelink-list-item:not(:nth-child(2n)){
        margin-right: 6px;
    }
    .block--pagelink-list-item:not(:nth-child(-n+2)){
        margin-top: 6px;
    }
    .block--pagelink-list-item__title{
        min-height: 52px;
        padding: 7px 22px 9px 11px;
        font-size: var(--base-fontsize);
    }
    .block--pagelink-list-item__title::after{
        right: 10px;
        width: 6px;
        height: 6px;
    }
}
/*news-dtl-images*/
.news-dtl-images{
    width: 1000px;
    margin: 0 auto 40px;
}
.news-dtl-images ul{
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
    gap: 20px;
    align-items: flex-start;
}
.news-dtl-images ul li{
    min-width: calc((100% - 20px) / 2);
    display: flex;
    justify-content: center;
}
.news-dtl-images ul li img{
    max-width: 100%;
    height: auto;
}
.news-dtl-article{
    line-height: calc(1em + 10px);
}
.news-dtl-list{
    margin-top: 40px;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .news-dtl-images{
        width: var(--inner-width--sp);
        margin: 0 auto 30px;
    }
    .news-dtl-images ul{
        display: block;
    }
    .news-dtl-images ul li{
        width: 100%;
    }
    .news-dtl-images ul li:not(:last-child){
        margin-bottom: 10px;
    }
    .news-dtl-list{
        margin-top: 30px;
    }
}
