/*-------------
vars
-------------*/
:root{
    --inner-width: 1200px;
    --inner-width_sp: 90.625vw;
    --inner-sides: 40px;
    --inner-sides_sp: 4.6875vw;
    --min-width: var(--inner-width);
    
    --base-black: #000;
    --accent-black: #1a1a1a;
    
    --base-gray: #999;
    --accent-gray: #ccc;
    --border-gray: #ccc;
    --bg-gray: #f2f2f2;
    --bg-light-gray: #f7f8f8;
    --text-gray: #666;
    
    --main-green: #4C6B2B;
    --bg-green: #ebfaf8;
    --accent-green: #004d40;
    --bg-green: #f0f9f7;
    --bg-blank: url(../images/icon_blank.svg) no-repeat center / auto;
    
    --bg-arrow: url(../images/arrow_right.svg) no-repeat center / auto;
    --bg-arrow_grn: url(../images/arrow_right_green.svg) no-repeat center / auto;
    --bg-hex: url(../images/bg-hex.svg) no-repeat center / contain;
    --bg-hex_lg: url(../images/bg-hex_lg.svg) no-repeat center / contain;
    
    --accent-blue: #09458c;
    --accent-orange: #fa790f;
    --accent-red: #d90f1f;
    --accent-yellow: #fcee21;

    /* --font-sans: "Hiragino Kaku Gothic Pro","メイリオ", sans-serif; */
    --font-en: "Poppins", var(--font-sans);
    --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic Pro","メイリオ", sans-serif;
    --font-sans2: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    --font-sans3: "Noto Sans JP", sans-serif;
    --font-maru: "DNP 秀英丸ゴシック Std", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic ProN", "Hiragino Maru Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "HGPMaruGothicMPRO", "Yu Gothic", "Meiryo", sans-serif;
    --fontsize-base: 1.5rem;
    
    --linear: .5s linear;
    --ease: .5s ease;
}
@media screen and (max-width:1280px){
    :root{
        --inner-sides: 20px;
    }
}
@media screen and (max-width:768px){
    :root{
        --inner-width: var(--inner-width_sp);
        --inner-sides: var(--inner-sides_sp);
        --min-width: 320px;
        
        --bg-light-gray: var(--bg-gray);
        
        --fontsize-base: 1.4rem;
    }
}
@keyframes arrow-slide{
    0% { background-position: center; }
    30%{ background-position: left calc(100% + 12px) center; }
    40%{ background-image: none; }
    50%{ background-position: left -12px center; }
    80%{ background-position: center; }
}
:root{
    --arrow-slide: arrow-slide .75s forwards;
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 320px;
    background: #fff;
    color: var(--base-black);
    font-family: var(--font-sans);
    font-optical-sizing: auto;
    font-size: var(--fontsize-base);
    line-height: 1.8;
    text-align: left;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
@media screen and (max-width:768px){
    body{
        width: 100%;
        min-width: 320px;
    }
}
img{
    max-width: 100%;
    height: auto;
}
:where(.wrapper, .container){
    container-type: inline-size;
}
:where(.wrapper *), 
:where(.container) *{
    --container-sides: calc(50cqw - (var(--inner-width) / 2));
}
::selection{
    background: #40b1a0;
    color: #fff;
}

/* common */
@media screen and (min-width:769px){
    .sp{
        display: none!important;
    }
}
@media screen and (max-width:768px){
    .pc{
        display: none!important;
    }
}
/* common */
@media screen and (min-width:1145px){
    .header-sp{
        display: none!important;
    }
}
@media screen and (max-width:1144px){
    .header-pc{
        display: none!important;
    }
}
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
.floatL, .l{
    float: left;
}
.floatR, .r{
    float: right;
}
.clearBoth, .c_b{
	clear:both;
}
.dispIB{
    display: inline-block;
}
img.dispIB{
    width: revert-layer;
    height: revert-layer;
}

/* margin */
.mRkern{
    margin-right: -.4em;
}
.mLkern{
    margin-left: -.4em;
}
.mLRkern{
    margin-right: -.4em;
    margin-left: -.4em;
}
.mB5{
	margin-bottom: 5px!important;
}
.mB10{
	margin-bottom: 10px!important;
}
.mB15{
	margin-bottom: 15px!important;
}
.mB20{
	margin-bottom: 20px!important;
}
.mB30{
	margin-bottom: 30px!important;
}
.mR10{
	margin-right: 10px!important;
}

/* text */
.textInd, .txt_ind {
    text-indent: -1.02em;
    padding-left: 1.02em;
}
.ffsPalt{
	font-feature-settings: "palt" 1;
}
.ffSans{
    font-family: var(--font-sans)!important;
}
.txtRed{
    color: var(--accent-red)!important;
}
.textSmall{
    font-size: .7em;
}
.textCenter, .txt_c{
    text-align: center;
}
.textRight, .txt_r{
    text-align: right;
}
.wsNowrap{
    white-space: nowrap;
}
*:has(> wbr:not(.pc):not(.sp)){
    word-break: keep-all;
    overflow-wrap: break-word;
}
@media screen and (min-width:769px){
    *:has(> wbr.pc){
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}
@media screen and (max-width:768px){
    *:has(> wbr.sp){
        word-break: keep-all;
        overflow-wrap: break-word;
    }
}

/* a */
@media (any-hover: hover){
    :where(a:hover){
        text-decoration: none;
    }
}
.textLink:not(:hover){
    text-decoration: underline;
}
@media screen and (min-width:769px){
    body:not(.viewing_mobile) a[href^="tel:"]{
        text-decoration: none!important;
        pointer-events: none;
    }
}
.fadeHover{
    transition: opacity var(--ease);
}
@media (any-hover: hover){
    .fadeHover:hover{
        opacity: .7;
    }
    .undrHover:not(:hover){
        text-decoration: underline;
    }
}
:where(a:has(> img:only-child)),
:where(a:has(> picture:only-child)){
    transition: opacity var(--ease);
}
@media (any-hover: hover){
    :where(a:has(> img:only-child)):hover,
    :where(a:has(> picture:only-child)):hover{
        opacity: .7;
    }
}
/*-------------
accordion
-------------*/
.accordion-btn:not(.is--ready){
    pointer-events: none;
}
.accordion-btn.is--ready{
    cursor: pointer;
}
@media screen and (max-width:768px){
    .accordion-btn_sp:not(.is--ready){
        pointer-events: none;
    }
    .accordion-btn_sp.is--ready{
        cursor: pointer;
    }
}
.accordion-btn:not(._active):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:1144px){
    .accordion-btn_header:not(._active):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content_header{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
}
@media screen and (max-width:768px){
    .accordion-btn_sp:not(._active):not([data-target-class]) + *:not(.accordion-container),
    .accordion-content_sp{
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
}
.accordion-container{
    overflow: hidden;
    transition: height .3s ease;
}
.accordion-container.is--hit_low{
    transition: height .2s ease;
}
.accordion-container:not(.is--open){
    height: 0!important;
}
@media screen and (min-width:1144px){
    .accordion-container.is--limit_header{
        height: auto!important;
    }
}
@media screen and (min-width:769px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}
/* info-pager */
.info-pager{
    --my-pager-size: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: var(--my-pager-size);
    margin-top: 40px;
}
@media screen and (max-width:768px){
    .info-pager{
        --my-pager-size: min(50px, 14.375vw);
        margin-top: 25px;
    }
}
.info-pager-list{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5px;
}
@media screen and (max-width:768px){
    .info-pager-list{
        gap: 0 min(10px, 1.25vw);
        width: 100%;
    }
}
.info-pager-list-item{
    flex: 0 0 auto;
    width: var(--my-pager-size);
}
.info-pager-list-item a{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 0;
    height: var(--my-pager-size);
    border-radius: 5px;
    background: var(--bg-gray);
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 500;
    transition: background var(--ease), color var(--ease);
}
@media (any-hover: hover){
    .info-pager-list-item a:hover{
        background: var(--bg-green);
        color: var(--main-green);
    }
}
.info-pager-list-item a._current{
    background: var(--main-green);
    color: #fff;
    pointer-events: none;
}
.info-pager-list._last::before,
.info-pager-list._middle::before,
.info-pager-list._first::after,
.info-pager-list._middle::after{
    display: block;
    flex: 0 0 auto;
    width: 18px;
    height: 2px;
    background: url(../images/icon_dots.svg) no-repeat center / contain;
    content: "";
}
@media screen and (max-width:768px){
    .info-pager-list._last::before,
    .info-pager-list._middle::before,
    .info-pager-list._first::after,
    .info-pager-list._middle::after{
        flex: 1 1 auto;
        width: unset;
        max-width: 80px;
    }
}
.info-pager-list._last .info-pager-list-item:first-child,
.info-pager-list._middle .info-pager-list-item:first-child{
    order: -1;
}
.info-pager-list._first .info-pager-list-item:last-child,
.info-pager-list._middle .info-pager-list-item:last-child{
    order: 1;
}
/*-------------
header
-------------*/
.wrapper{
    --header-hit: 80px;
}
.header{
    font-family: var(--font-sans3);
    z-index: 10;
    width: 100%;
    height: var(--header-hit);
}
@media screen and (max-width:1144px){
    .wrapper{
        --header-hit: 50px;
    }
    .header{
        min-width: inherit;
    }
}
@media screen and (max-width:768px){
    .wrapper{
        --header-hit: 50px;
    }
    .header{
        min-width: inherit;
    }
}
.header-inner{
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-hit);
    padding: 0 var(--inner-sides);
    background: #fff;
}
.header-inner:not(._fixed){
    transition: opacity var(--ease), padding var(--ease), background var(--ease), box-shadow var(--ease);
}
.header-inner._fixed{
    opacity: 0;
    position: fixed;
    transform: translateY(calc(var(--header-hit) * -1));
    box-shadow: 0 0 5px rgba(0,0,0,.1);
}
.header-inner._fixed._down{
    opacity: 1;
    transform: translateY(0);
    transition: opacity .5s ease, transform .5s ease, padding var(--ease);
}
.header-inner._fixed._up{
    opacity: 0;
    transform: translateY(calc(var(--header-hit) * -1));
}
@media screen and (max-width:1144px){
    .header-inner{
        display: block;
        padding: 0;
    }
}
.header-head{
    flex: 0 0 auto;
    height: 100%;
    margin-right: auto;
}
@media screen and (max-width:1144px){
    .header-head{
        display: flex;
        position: relative;
        z-index: 1;
        width: 100%;
        padding-left: var(--inner-sides);
        background: #fff;
        box-sizing: border-box;
    }
}
.header-logo{
    display: flex;
    align-items: center;
    height: 100%;
}
@media screen and (max-width:1144px){
    .header-logo{
        flex: 0 0 auto;
        width: 169px;
        margin-right: auto;
    }
}
.header-menu-btn{
    display: none;
}
@media screen and (max-width:1144px){
    .header-menu-btn{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        height: 100%;
        aspect-ratio: 1 / 1;
        background: var(--main-green);
        cursor: pointer;
        user-select: none;
    }
    .header-menu-btn::before{
        position: absolute;
        top: calc(50% - 8px);
        left: calc(50% - 12px);
        width: 24px;
        height: 16px;
        background: url(../images/header-menu-bar.svg) no-repeat top center / auto,
        url(../images/header-menu-bar.svg) no-repeat bottom center / auto;
        content: "";
        transition: opacity var(--ease);
    }
    .header-menu-btn._open::before{
        opacity: 0;
    }
    .header-menu-btn::after{
        position: absolute;
        top: calc(50% - 1px);
        left: calc(50% - 12px);
        width: 24px;
        height: 2px;
        background: url(../images/header-menu-bar.svg) no-repeat center / auto;
        content: "";
        transition: transform var(--ease);
    }
    .header-menu-btn._open::after{
        transform: rotate(-45deg);
    }
    .header-menu-btn img{
        width: auto;
        height: auto;
        transition: transform var(--ease);
    }
    .header-menu-btn._open img{
        transform: rotate(45deg);
    }
}
.header-menu{
    flex: 0 1 auto;
}
.header-nav{
    display: flex;
    height: 100%;
}
.header-nav-slidebar{
    display: none;
}
@media screen and (max-width:1144px){
    body.is-sp-menu-open{
        overflow: hidden;
    }
    .header-menu{
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100vh;
        padding-top: var(--header-hit);
        overflow: hidden;
        background: rgba(0,0,0,.8);
        transition: opacity .5s ease;
        cursor: pointer;
    }
    .header-menu:not(._active),
    .header-menu:not(._active) *{
        z-index: -999;
        pointer-events: none;
        user-select: none;
    }
    .header-menu:not(._show){
        opacity: 0;
    }
    .header-menu::after{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-hit);
        background: #fff;
        content: "";
    }
    .header-nav{
        flex-direction: column;
        /* justify-content: center; */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        padding: var(--header-hit) 0 50px;
        box-shadow: 0 5px 5px rgba(0,0,0,.1);
        background: #4D4D4D;
        cursor: auto;
        overflow: auto;
    }
    .header-nav:not(._sliding){
        transition: transform .3s ease;
    }
    .header-nav-slidebar{
        display: block;
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        min-height: 50px;
        cursor: pointer;
        font-size: 0;
    }
    .header-nav-slidebar::before{
        position: absolute;
        top: calc(50% - 2px);
        left: calc(50% - 20px);
        width: 40px;
        height: 4px;
        border-radius: 2px;
        background: var(--base-gray);
        content: "";
    }
}
.header-nav-list{
    display: flex;
    margin-right: 24px;
}
.header-nav-list-item a,
.header-nav-list-item span{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 9px 10px 11px;
    color: var(--accent-black);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    letter-spacing: .02em;
    transition: var(--ease);
    cursor: pointer;
}
@media (any-hover: hover){
    .header-nav-list-item a:hover,
    .header-nav-list-item span:hover{
        opacity: 0.7;
        transition: var(--ease);
    }
}
@media screen and (max-width:1200px){
    .header-nav-list-item a,
    .header-nav-list-item span{
        font-size: 1.4rem;
    }
}
@media screen and (max-width:1144px){
    .header-nav-list{
        display: block;
        margin: 0 0 24px;
    }
    .header-nav-list-item a,
    .header-nav-list-item span{
        min-height: 50px;
        height: auto;
        padding: 10px var(--inner-sides_sp) 10px;
        justify-content: center;
        font-size: 1.4rem;
        border-bottom: 1px solid #707070;
        text-align: center;
        color: #fff;
    }
}
.header-nav-btns{
    display: flex;
    flex: 0 0 auto;
    gap: 0 10px;
    padding: 12px 0;
}
.header-nav-btn{
    flex: 0 0 auto;
    min-width: 200px;
    height: 60px;
}
.header-nav-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 20px 2px;
    border-radius: 30px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 8px);
    transition: color var(--ease);
}
.header-nav-btn._contact a{
    gap: 10px;
}
.header-nav-btn._contact a:before{
    content: "";
    background: url(../images/icon_mail.svg) no-repeat;
    background-size: cover;
    width: 24px;
    height: 24px;
}
.header-nav-search{
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6e6e6;
    border-radius: 50%;
    cursor: pointer;
}
@media (any-hover: hover){
    .header-nav-btn a:hover{
        opacity: 0.7;
    }
}
@media screen and (max-width:1144px){
    .header-nav-btns{
        flex-direction: column;
        gap: 7px 0;
        padding: 0 var(--inner-sides_sp);
    }
    .header-nav-btn{
        flex: 0 0 auto;
        min-width: 0;
        height: 50px;
    }
    .header-nav-btn a{
        min-height: 44px;
        padding: 10px;
        font-size: 1.4rem;
    }
    .header-nav-search{
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #e6e6e6;
        border-radius: 0;
        cursor: pointer;
    }
}
@media screen and (min-width:1144px){
    .header-nav-list-item .accordion-container{
        width: 100%;
        background: rgba(0, 0, 0, .6);
        position: absolute;
        top: var(--header-hit);
        left: 0;
    }
}
/* =====================
検索エリア
===================== */
.header-search-main {
	position: absolute;
    top: var(--header-hit);
    width: 100%;
    left: 0;
	background: rgba(0,0,0,.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: .3s;
	z-index: 10000;
}
.header-search-main._active {
	opacity: 1;
	pointer-events: auto;
}
.header-search-main-inner {
	padding: 20px 40px;
	width: 100%;
    max-width: 1140px;
	position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
}
.header-search-close {
    background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	border: none;
	font-size: 20px;
    font-size: 2rem;
	cursor: pointer;
}
.header-search-form {
	display: flex;
	gap: 10px;
    width: 100%;
    background: #fff;
    border-radius: 5px;
}
.header-search-form input {
	flex: 1;
    width: calc(100% - 60px);
	padding: 10px;
	font-size: 16px;
}
.header-search-form button{
    width: 50px;
}
.header-search-form button span {
    min-width: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: transparent;
}
.header-search-form button span img{
    display: block;
}
/* sp */
@media screen and (max-width:1144px){
    .header-search-main-inner {
        padding: 15px var(--inner-sides_sp);
        width: 100vw;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .header-search-close {
        background: #fff;
        width: 30px;
        height: 30px;
        min-width: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: none;
        font-size: 20px;
        font-size: 2rem;
        cursor: pointer;
    }
    .header-search-form {
        gap: 0;
        width: calc(100% - 40px);
    }
    .header-search-form button span {
        min-width: 50px;
        height: 50px;
        cursor: pointer;
    }
    .header-search-form input{
        width: calc(100% - 50px);
        height: 50px;
    }
    .header-search-form button span img{
        width: 20px;
        height: 20px;
    }
}
/*----------------------
サービスエリア
----------------------*/
body.is-service-open{
    overflow: hidden;
}
.header-nav-list-item-sub{
    opacity: 0;
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.header-service {
	position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    left: 0;
	background: rgba(0,0,0,.6);
	opacity: 0;
	pointer-events: none;
	transition: .3s;
	z-index: 10000;
    padding-top: var(--header-hit);
}
.header-service._active {
	opacity: 1;
	pointer-events: auto;
}
.header-service-close{
    background: #fff;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
	border: none;
	font-size: 20px;
    font-size: 2rem;
	cursor: pointer;
    position: absolute;
    right: 20px;
    top: 20px;
}
.header-service-items{
    padding: 0 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-flow: row wrap;
    gap: 20px;
    margin: 0 auto;
}
.header-service-item{
    width: calc((100% - 40px) / 3);
    height: 60px;
}
.header-service-item a{
    background: #414141;
    width: 100%;
    height: 100%;
    text-align: center;
    border-radius: 30px;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    transition: all var(--ease);
}
@media (any-hover: hover){
    .header-service-item a:hover{
        transition: all var(--ease);
        opacity: 0.7;
    }
}
/* sp */
@media screen and (max-width:1144px){
    body.is-service-open{
        overflow: auto;
    }
    .header-service {
        display: none;
    }
    .header-nav-list-item-sub{
        opacity: 1;
        position: static;
        pointer-events: auto;
        z-index: 1;
    }
    .header-nav-list-item .js-sp-accordion,
        .header-nav-list-item .js-header-accordion{
        position: relative;
    }
    .header-nav-list-item .js-sp-accordion:after,
    .header-nav-list-item .js-header-accordion:after {
        content: "";
        background: url(../images/icon_allow.svg) no-repeat;
        background-size: cover;
        width: 6px;
        height: 10px;
        transform: rotate(90deg);
        position: absolute;
        top: calc(50% - 5px);
        right: 20px;
        transition: all var(--ease);
    }
    .header-nav-list-item .js-sp-accordion._active,
    .header-nav-list-item .js-header-accordion._active{
        background: var(--main-green);
    }
    .header-nav-list-item .js-sp-accordion._active:after,
    .header-nav-list-item .js-header-accordion._active:after {
        transform: rotate(-90deg);
        transition: all var(--ease);
    }
    .header-nav-list-item-sub-item a{
        background: #000;
    }
}
/*-------------
footer
-------------*/
.footer{
    font-family: var(--font-sans3);
    color: #333333;
    background: #f7f7f7;
}
.footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0 200px;
    position: relative;
}
.footer-menu{
    display: flex;
    gap: 60px;
    justify-content: center;
}
.footer-menu-item{
    width: calc((100% - 120px) / 3);
}
.footer-menu-item-list{
    font-family: var(--font-en);
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--main-green);
    margin-bottom: 10px;
}
.footer-menu-item-link li a{
    padding: 5px 0 5px 20px;
    box-sizing: border-box;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    display: block;
    border-bottom: solid 1px #e6e6e6;
}
.footer-menu-item-link li a:before{
    content: "";
    background: var(--main-green);
    width: 8px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 0;
}
.footer-info{
    width: 500px;
    position: absolute;
    right: 0;
    bottom: 80px;
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    gap: 10px;
}
.footer-copy{
    color: #999999;
    font-size: 14px;
    font-size: 1.4rem;
    text-align: right;
}
@media screen and (max-width:1144px){
    .footer-inner{
        padding: 50px 20px 80px;
        box-sizing: border-box;
    }
    .footer-info{
        margin-right: 20px;
    }
}
/* sp */
@media screen and (max-width:768px){
    .footer-inner{
        max-width: inherit;
        margin: 0 auto;
        padding: 0;
    }
    .footer-menu{
        display: block;
    }
    .footer-menu-item{
        min-width: inherit;
        width: 100%;
    }
    .footer-menu-item-list{
        font-size: 16px;
        font-size: 1.6rem;
        padding: 15px 15px 15px 40px;
        cursor: pointer;
        position: relative;
    }
    .footer-menu-item-list:before {
        position: absolute;
        top: calc(50% - 4px);
        left: 21px;
        transform: rotate(135deg);
        width: 6px;
        height: 6px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        content: "";
        z-index: 1;
        transition: all ease .3s;
    }
    .footer-menu-item-list:after {
        position: absolute;
        top: calc(50% - 9px);
        left: 15px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--main-green);
        content: "";
    }
    .footer-menu-item-list._active:before {
        transform: rotate(-45deg);
        top: calc(50% - 2px);
        transition: all ease .3s;
    }
    .footer-menu-item{
        border-bottom: solid 1px #e6e6e6;
    }
    .footer-menu-item-list {
        border-bottom: none;
        margin-bottom: 0;
    }
    .footer-menu-item-link{
        border-top: solid 1px #e6e6e6;
        padding: 10px 0;
        box-sizing: border-box;
    }
    .footer-menu-item-link li a {
        padding: 5px 0 5px 30px;
        box-sizing: border-box;
        font-size: 13px;
        font-size: 1.3rem;
        position: relative;
        display: block;
        border-bottom: none;
    }
    .footer-menu-item-link li a:before {
        left: 15px;
    }
    .footer-menu-item-list.accordion--open a:before {
        transform: rotate(135deg);
        transition: all ease .3s;
        top: calc(50% - 4px);
        left: 21px;
    }
    .footer-info{
        width: 100%;
        position: static;
        margin: 0 auto;
        display: flex;
        flex-flow: column;
        align-items: flex-end;
        margin-top: 30px;
    }
    .footer-info__logo{
        width: 225px;
        margin: 0 auto;
    }
    .footer-copy{
        width: 100%;
        color: #999999;
        font-size: 11px;
        font-size: 1.1rem;
        padding: 0 var(--inner-sides_sp) 20px;
        box-sizing: border-box;
        text-align: center;
    }
}
/*--------------------
footer-contact
----------------------*/
.footer-contact{
    font-family: var(--font-sans3);
    background: #407530;
    padding: 80px 0 100px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
}
.footer-contact:after{
    content: "";
    background: url(../images/footer-contact_bg.svg) no-repeat;
    background-size: cover;
    position: absolute;
    width: 600px;
    height: 600px;
    right: -60px;
    bottom: -60px;
}
.footer-contact-wrapper{
    width: var(--inner-width_sp);
    max-width: 1000px;
    margin: 0 auto;
}
.footer-contact-title{
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.footer-contact-title::before {
    display: block;
    color: #ffe600;
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .02em;
    content: attr(data-en);
}
.footer-contact-list{
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.footer-contact-list__item{
    width: calc((100% - 20px) / 2);
    border-radius: 10px;
    padding: 30px;
    box-sizing: border-box;
    background: #fff;
    box-shadow: 0px 2px 6px rgba(50, 73, 0, 0.4);
}
.footer-contact-list__item-title{
    display: flex;
    flex-flow: column;
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
}
.footer-contact-list__item-title i{
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-contact-list__item-text{
    text-align: center;
    color: #484848;
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.footer-contact-list__item-btn{
    width: 100%;
    max-width: 360px;
    height: 60px;
    margin: 0 auto;
    transition: var(--ease);
}
.footer-contact-list__item-btn a{
    color: #fff;
    background: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}
.footer-contact-list__item-btn a:after{
    content: "";
    background: url(../images/icon_allow.svg) no-repeat;
    background-size: cover;
    width: 6px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 15px;
}
@media (any-hover: hover){
    .footer-contact-list__item-btn:hover{
        opacity: 0.7;
        transition: var(--ease);
    }
}
/* sp */
@media screen and (max-width:768px){
    .footer-contact {
        padding: 40px 0 50px;
    }
    .footer-contact:after {
        content: "";
        width: 200px;
        height: 200px;
        top: 20px;
        right: -20px;
        bottom: auto;
    }
    .footer-contact-wrapper {
        width: var(--inner-width);
        margin: 0 auto;
    }
    .footer-contact-title {
        font-size: 30px;
        font-size: 3.0rem;
        font-weight: bold;
        margin-bottom: 30px;
    }
    .footer-contact-title::before {
        font-family: var(--font-en);
        font-size: 1.4rem;
        font-weight: 600;
    }
    .footer-contact-list {
        display: flex;
        gap: 10px;
        flex-flow: column;
    }
    .footer-contact-list__item {
        width: 100%;
        border-radius: 10px;
        padding: 30px 15px;
    }
    .footer-contact-list__item-title {
        font-size: 20px;
        font-size: 2.0rem;
        margin-bottom: 20px;
    }
    .footer-contact-list__item-text {
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    .footer-contact-list__item-btn {
        width: 100%;
        height: 50px;
    }
    .footer-contact-list__item-btn a {
        font-size: 14px;
        font-size: 1.4rem;
        border-radius: 25px;
    }
}
/*--------------------------
top
----------------------------*/
body.toppage{
    font-family: var(--font-sans3);
}
.top-sec-title{
    margin-bottom: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}
.top-sec-title-main{
    font-size: 48px;
    font-size: 4.8rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
    letter-spacing: .06em;
}
.top-sec-title-main::before {
    display: block;
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .02em;
    content: attr(data-en);
    margin-bottom: 15px;
}
.top-sec-title-text{
    padding-top: 35px;
    font-size: 16px;
    font-size: 1.6rem;
    color: #484848;
}
@media screen and (max-width:768px){
    .top-sec-title{
        margin-bottom: 32px;
        flex-flow: column;
        align-items: flex-start;
        gap: 20px;
    }
    .top-sec-title-main{
        font-size: 30px;
        font-size: 3.0rem;
    }
    .top-sec-title-main::before {
        margin-bottom: 5px;
        font-size: 1.4rem;
    }
    .top-sec-title-text{
        padding-top: 0;
        font-size: 14px;
        font-size: 1.4rem;
        color: #484848;
}
}
/*-----------------
top-info 
-----------------*/
.top-info{
    width: var(--inner-width_sp);
    max-width: 1140px;
    margin: 0 auto 100px;
}
@media screen and (max-width:768px){
    .top-info{
        width: var(--inner-width);
        margin-bottom: 50px;
    }
}
/* top info-list */
.top-info .info-list{
    display: grid;
    grid-template-columns: auto auto 1fr;
}
.top-info .info-list:not(._loading){
    transition: opacity var(--linear);
}
.top-info .info-list._loading{
    opacity: 0;
}
.top-info .info-list-item, 
.top-info .info-list-item-inner,
.top-info .info-list-item a{
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 3;
}
@media screen and (max-width:768px){
    .top-info .info-list{
        grid-template-columns: auto 1fr;
    }
    .top-info .info-list-item, 
    .top-info .info-list-item-inner,
    .top-info .info-list-item a{
        grid-column: span 2;
    }
}
.top-info .info-list-item:first-child{
    border-top: solid 1px var(--border-gray);
}
.top-info .info-list-item{
    padding: 0;
    border-bottom: solid 1px var(--border-gray);
}
.top-info .info-list-item a{
    align-items: center;
    min-height: 66px;
    padding: 20px;
    border-radius: 4px;
    transition: all var(--ease);
}
@media (any-hover: hover){
    .top-info .info-list-item a:hover{
        background: var(--bg-green);
    }
}
@media screen and (max-width:768px){
    .top-info .info-list-item a{
        padding: 15px 10px 21px;
    }
}
.top-info .info-list-head{
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span 2;
    align-items: center;
    gap: 0 15px;
    margin-right: 20px;
}
@media screen and (max-width:768px){
    .top-info .info-list-head{
        gap: 0 8px;
        margin: 0 0 10px;
    }
}
.top-info .info-list-date{
    min-width: 72px;
    padding-bottom: 1px;
    color: var(--main-green);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 1px);
    text-align: center;
}
.top-info .info-list-cate{
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
}
@media screen and (max-width:768px){
    .top-info .info-list-cate{
        display: flex;
        flex-wrap: wrap;
    }
}
.top-info .info-list:has(.info-list-cate-item:nth-child(3)) .info-list-cate{
    grid-template-columns: repeat(2, 1fr);
}
.top-info .info-list:has(.info-list-cate-item:nth-child(5)) .info-list-cate{
    grid-template-columns: repeat(3, 1fr);
}
.top-info .info-list-cate-item{
    display: flex;
    flex: 0 0 auto;
    justify-content: center;
    align-items: center;
    min-width: 60px;
    padding: 4px 6px 5px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    line-height: calc(1em + 3px);
}
@media screen and (max-width:768px){
    .top-info .info-list-cate-item{
        min-width: 54px;
        padding: 5px 6px;
        border-radius: 5px;
        font-size: 1.2rem;
        line-height: calc(1em + 2px);
    }
}
.top-info .info-list-title{
    margin-top: -2px;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: calc(1em + 8px);
    transition: color var(--ease);
}
@media screen and (max-width:768px){
    .top-info .info-list-title{
        grid-column: 1 / 3;
        margin-top: 0;
        font-size: 1.4rem;
        line-height: calc(1em + 7px);
    }
}
/*-----------------
top-case
-----------------*/
.top-case{
    width: var(--inner-width_sp);
    max-width: 1140px;
    margin: 0 auto;
    padding: 80px 0;
    box-sizing: border-box;
}
.top-case-list{
    display: flex;
    gap: 40px;
}
.top-case-list-item{
    width: calc((100% - 80px) / 3);
}
.top-case-list-item__img {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}
.top-case-list-item__img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
.top-case-list-item__title{
    color: #333333;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 9px);
}
.top-case-list-item__text{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--main-green);
    margin-top: 10px;
}
@media screen and (max-width:768px){
    .top-case{
         width: var(--inner-width);
        padding: 50px 0;
    }
    .top-case-list{
        display: flex;
        gap: 20px;
        flex-flow: column;
    }
    .top-case-list-item{
        width: 100%;
        border-bottom: solid 1px var(--border-gray);
    }
    .top-case-list-item__inner{
        display: flex;
        gap: 20px;
        padding-bottom: 20px;
        box-sizing: border-box;
    }
    .top-case-list-item__img {
        margin-bottom: 0;
        border-radius: 5px;
        overflow: hidden;
        width: 40.57%;
    }
    .top-case-list-item__info{
        width: calc(59.43% - 20px);
    }
    .top-case-list-item__title{
        font-size: 15px;
        font-size: 1.5rem;
        line-height: calc(1em + 6px);
    }
    .top-case-list-item__text{
        line-height: calc(1em + 6px);
    }
}
/*-------------
top-bnr
-------------*/
.top-bnr{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 50px;
    overflow: hidden;
}
.top-bnr-list:not(.is--ready){
    opacity: 0;
}
.top-bnr .keen-slider{
    width: 3060px!important;
}
.top-bnr .keen-slider-controler{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}
.top-bnr .keen-slider-arrow{
    flex: 0 0 auto;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #cedae6;
    display: none;
}
.top-bnr .keen-slider-arrow--right{
    transform: rotate(180deg);
}
.top-bnr .keen-slider-arrow::after{
    position: absolute;
    top: calc(50% - 4px);
    left: calc(50% - 2px);
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: solid 2px #fff;
    border-left: solid 2px #fff;
    content: "";
}
.top-bnr .keen-slider-dots{
    flex: 0 0 auto;
    padding: 0 32px;
}
.top-bnr .keen-slider-dot{
    margin: 0 5px;
    background: #c9d3bf;
}
.top-bnr .keen-slider-dot--active{
    background: var(--main-green);
}
.top-bnr-list-item{
    width: 1020px;
    height: 440px;
    padding: 0 10px;
}
.top-bnr-list-item-inner{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.top-bnr-list-item-inner img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .top-bnr{
        padding: 0 0 25px;
    }
    .top-bnr .keen-slider{
        width: 300vw!important;
    }
    .top-bnr .keen-slider-controler{
        margin-top: 10px;
        padding: 0 var(--inner-sidespace--sp);
    }
    .top-bnr .keen-slider-dots{
        flex-wrap: wrap;
        max-width: calc(100% - 64px);
    }
    .top-bnr .keen-slider-dot{
        margin: 4px 5px;
    }
    .top-bnr-list-item{
        width: 100vw;
        height: auto;
        padding: 0 var(--inner-sidespace--sp_vw);
    }
    .top-bnr-list-item-inner{
        aspect-ratio: 25 / 11;
    }
}
/*-----------------
top-sec
--------------------*/
.top-sec{
    background: #f3f7ed;
    padding: 80px 0;
    box-sizing: border-box;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .top-sec{
        padding: 50px 0;
    }
}
/*-----------------
top-service
-----------------*/
.top-service{
    width: var(--inner-width_sp);
    max-width: 1140px;
    margin: 0 auto 80px;
}
.top-service-items{
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
}
.top-service-item{
    width: calc((100% - 10px) / 2);
}
.top-service-item-inner{
    box-shadow: rgba(50, 73, 0, 0.4) 0px 2px 6px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 55px 30px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    transition: all var(--ease);
    gap: 20px;
    position: relative;
}
.top-service-item-inner:before{
    content: "";
    background: var(--accent-orange);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 12px);
    right: 20px;
}
.top-service-item-inner:after {
    content: "";
    background: url(../images/icon_allow.svg) no-repeat;
    background-size: cover;
    width: 6px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 28px;
}
.top-service-info dt{
    color: var(--main-green);
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
}
.top-service-info dd{
    margin-top: 5px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 7px);
}
.top-service-icon{
    width: 80px;
    min-width: 80px;
}
@media (any-hover: hover){
    .top-service-item-inner:hover{
        box-shadow: rgba(50, 73, 0, 0.4) 0px 6px 10px;
        transition: all var(--ease);
    }
}
/*sp*/
@media screen and (max-width:768px){
    .top-service{
        width: var(--inner-width);
        margin-bottom: 50px;
    }
    .top-service-items{
        display: flex;
        flex-flow: column;
        gap: 10px;
    }
    .top-service-item{
        width: 100%;
    }
    .top-service-icon{
        width: 80px;
        min-width: 80px;
    }
    .top-service-item-inner {
        box-shadow: rgba(50, 73, 0, 0.4) 0px 2px 6px;
        background: #fff;
        border-radius: 10px;
        padding: 20px 40px 20px 15px;
        gap: 13px;
    }
    .top-service-info dt {
        color: var(--main-green);
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
    }
    .top-service-item-inner:before {
        right: 15px;
    }
    .top-service-item-inner:after {
        right: 23px;
    }

}
/*-----------------
top-category
-----------------*/
.top-category{
    width: var(--inner-width_sp);
    max-width: 1140px;
    margin: 0 auto;
}
.top-category-items{
    display: flex;
    flex-flow: row wrap;
    gap: 15px;
}
.top-category-item{
    width: calc((100% - 30px) / 3);
    min-height: 80px;
}
.top-category-item a{
    color: #333333;
    box-shadow: rgba(50, 73, 0, 0.4) 0px 2px 6px;
    background: #fff;
    border-radius: 10px;
    position: relative;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 80px;
    padding: 20px 45px 20px 20px;
    box-sizing: border-box;
    transition: all var(--ease);
}
.top-category-item a:before{
    content: "";
    background: var(--accent-orange);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 12px);
    right: 20px;
}
.top-category-item a:after {
    content: "";
    background: url(../images/icon_allow.svg) no-repeat;
    background-size: cover;
    width: 6px;
    height: 10px;
    position: absolute;
    top: calc(50% - 5px);
    right: 28px;
}
@media (any-hover: hover){
    .top-category-item a:hover{
        box-shadow: rgba(50, 73, 0, 0.4) 0px 6px 10px;
        transition: all var(--ease);
    }
}
/*sp*/
@media screen and (max-width:768px){
    .top-category{
        width: var(--inner-width);
    }
    .top-category-items {
        gap: 10px;
    }
    .top-category-item {
        width: calc((100% - 10px) / 2);
        min-height: 60px;
    }
    .top-category-item a{
        border-radius: 5px;
        position: relative;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: calc(1em + 4px);
        display: flex;
        align-items: center;
        min-height: 60px;
        justify-content: flex-start;
        padding: 12px 40px 12px 15px;
    }
    .top-category-item a:before{
        right: 10px;
    }
    .top-category-item a:after {
        right: 18px;
    }
}
/* breadcrumbs */
.breadcrumbs-nav{
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}
.breadcrumbs{
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 8px 15px;
    box-sizing: border-box;
}
@media screen and (max-width:768px){
    .breadcrumbs{
        display: none;
    }
}
.breadcrumbs-item{
    flex: 0 0 auto;
    position: relative;
    min-width: 0;
    color: var(--text-gray);
}
/* .breadcrumbs-item:not(:last-child){
    margin-right: 21px;
} */
.breadcrumbs-item:not(:last-child) .breadcrumbs-item__name::after{
    content: "/";
    text-decoration: none;
    margin: 0 5px;
}
/* @media screen and (max-width:768px){
    .breadcrumbs-item:not(:last-child){
        margin-right: 19px;
    }
} */
.breadcrumbs-item:last-child{
    flex: 1 1 auto;
}
.breadcrumbs-item a{
    display: block;
    color: var(--main-green);
    transition: all var(--ease);
}
@media (any-hover: hover){
    .breadcrumbs-item a:hover{
        opacity: 0.7;
        transition: all var(--ease);
    }
    .breadcrumbs-item:not(:last-child) .breadcrumbs-item__name::after{
        opacity: 1;
    }
}
.breadcrumbs-item__name{
    display: block;
    padding: 8px 0 9px;
    overflow: hidden;
    font-size: 1.3rem;
    line-height: calc(1em + 3px);
    letter-spacing: .02em;
    white-space: nowrap;
    text-overflow: ellipsis;
}
@media screen and (max-width:768px){
    .breadcrumbs-item__name{
        font-size: 1.2rem;
    }
}
/*-------------------
page
---------------------*/
.page-wrapper{
    background: #F8FAF5;
    padding: 50px 0 53px;
}
.page-body .page-header{
    padding-bottom: 30px;
}
.page-header-title {
    font-size: 23px;
    font-size: 2.3rem;
    color: #4C6B2B;
    text-align: center;
}
.page-content {
    width: 90.7vw;
    border-radius: 20px;
    background: #ffffff;
    margin: 0 auto 42px;
    padding: 30px 20px 40px;
    -webkit-box-shadow: 0px 5px 10px #c7c7c7;
    box-shadow: 0px 5px 10px #c7c7c7;
    text-align: left;
}
@media screen and (min-width: 1024px) {
    .page-wrapper{
        padding-top: 73px;
    }
    .page-body .page-header{
        padding-bottom: 50px;
    }
    .page-header-title {
        font-size: 34px;
        font-size: 3.4rem;
    }
    .page-content {
        width: 78.5%;
        max-width: 1140px;
        margin: auto;
        border-radius: 20px;
        padding: 58px 93px 117px;
    }
}
/*-------------
cookieバナー
---------------*/
.cc-window {
    color: #333;
    background-color: rgba(255, 255, 255, 0.95);
}
.cc-message {
    font-size: 13px !important;
    line-height: 1.5 !important;
}
.cc-banner .cc-message {
    flex: 1 1 auto;
    max-width: 100%;
    margin-right: 1em;
}
.cc-compliance {
    display: flex;
    align-items: center;
}
.cc-btn {
    min-width: 100px;
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border: 2px solid transparent;
    text-align: center;
    white-space: nowrap;
    color: #fff;
    background-color: #0085a1;
}
.cc-highlight .cc-btn:first-child {
    background-color: transparent;
    border-color: transparent;
    color: #333;
}
.cc-btn + .cc-btn {
    margin-left: .5em;
}
.cc-link {
    color: #333;
}
.cc-revoke {
  display: none !important;
}
@media screen and (max-width: 600px) {
    .cc-banner.cc-bottom{
        display: flex;
        flex-flow: column!important;
    }
    .cc-window {
        padding: 12px;
    }
    .cc-banner {
        flex-direction: column;
        text-align: left;
    }
    .cc-message {
        margin: 0 0 10px 0;
        font-size: 12px !important;
    }
    .cc-compliance {
        width: 100%;
        justify-content: space-between;
    }
    .cc-btn {
        min-width: inherit;
        flex: 1;
        text-align: center;
        padding: 8px;
        font-size: 12px;
    }
    .cc-btn + .cc-btn {
        margin-left: 8px;
    }
}
/*-----------------
search
-------------------*/
.search-page .page-header{
    margin-bottom: 50px;
}
.search-page .search-form{
    position: relative;
    margin: 0 auto 45px;
    width: 90.7vw;
    max-width: 747px;
}
.search-page .search-form input {
    background: #ffffff;
    border: 1px solid #D6D6D6;
    padding: 12px 50px 12px 15px;
    border-radius: 10px;
    display: block;
    margin: auto;
    width: 100%;
    box-sizing: border-box;
}
.search-page button img {
    position: absolute;
    top: calc(50% - 25px);
    right: 15px;
    width: 25px;
}
.search-page__contents__count{
    font-size: 20px;
    font-size: 2.0rem;
    margin-bottom: 20px;
}
.search-none-text{
    font-size: 16px;
    font-size: 1.6rem;
    padding-top: 20px;
}
.search-count-list{
    border-top: 1px solid #D6D6D6;
}
.search-count-list .entry{
    border-bottom: 1px solid #D6D6D6;
}
.search-count-list .entry a{
    padding: 20px 0;
    box-sizing: border-box;
    display: block;
}
.search-page-list__title{
    font-size: 22px;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: calc(1em + 11px);
}
.search-page-list__text{
    font-size: 16px;
    font-size: 1.6rem;
    margin-bottom: 8px;
    line-height: calc(1em + 11px);
}
.search-page-list__open {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: right;
    color: #4C6B2B;
}
@media screen and (max-width:768px){
    .search-page__contents__count{
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .search-page-list__title{
        font-size: 20px;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 8px;
        line-height: calc(1em + 8px);
    }
    .search-page-list__text{
        font-size: 14px;
        font-size: 1.4rem;
        margin-bottom: 8px;
        line-height: calc(1em + 8px);
    }
}
/*pager*/
.search-page #pager {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-family: system-ui, sans-serif;
}
.search-page #pager button {
    min-width: 150px;
    appearance: none;
    border: none;
    background: var(--main-green);
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}
.search-page #pager button:hover:not(:disabled) {
    transform: translateY(-1px);
}
.search-page #pager button:active:not(:disabled) {
    transform: translateY(0);
}
.search-page #pager button:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}
.search-page #pager span {
    width: 100%;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--main-green);
    padding: 0 4px;
    order: -1; /* 上に表示 */
    margin-bottom: 4px;
    text-align: center;
}
/*sp*/
@media (max-width: 768px) {
    .search-page #pager {
        gap: 6px;
    }
    .search-page #pager button {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 10px;
        flex: 1 1 auto;
        min-width: 80px;
    }
}
