@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --inner-width_pc: 1000px;
    --inner-width_sp: 87.5vw;
    --inner-width: var(--inner-width_pc);
    
    --inner-sides: 40px;
    --inner-sides_sp: 6.25vw;
    
    --font-sans: "Noto Sans JP", sans-serif;
    --font-serif: "Noto Serif JP", serif;
    --base-fontsize: 1.4rem;
    
    --linear: .3s linear;
    --ease: .3s ease;
}
@media screen and (max-width:768px){
    :root{
        --inner-width: var(--inner-width_sp);
        --inner-sides: var(--inner-sides_sp);
    }
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    background: transparent;
    min-width: 1200px; /* 横スクロールバーの発生する幅を指定 */
    padding: 0;
    margin: 0;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-size: var(--base-fontsize);
    font-weight: 400;
    text-align: left;
    line-height: 1.5;
    letter-spacing: .04rem;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
}
@media screen and (min-width:769px){
    .sp{
        display: none!important;
    }
}
@media screen and (max-width:768px){
    body{
        min-width: 320px;
    }
    .pc{
        display: none!important;
    }
    .w{
        width: 93.75%;
        margin: 0 auto;
        display: block;
    }
    img{
        width: 100%;
        height: auto;
    }
}
.wrapper{
    container-type: inline-size;
}
.wrapper *{
    --content-sides: calc(50cqw - (var(--inner-width) / 2));
}

/* a */
@media (any-hover: hover){
    a:hover{
        text-decoration: none;
    }   
}
@media screen and (min-width:769px){
    body:not(.viewing_mobile) a[href^="tel:"]{
        text-decoration: none!important;
        pointer-events: none;
    }
}
a img,
input[type="image"],
input[type="submit"],
input[type="button"]{
    transition: opacity 0.2s linear 0s;
    cursor: pointer;
}
a img{
    background: rgba(255, 255, 255, 0.01);
}
a:hover img,
input[type="image"]:hover,
input[type="submit"]:hover,
input[type="button"]:hover{
    background-color: transparent;
    opacity: 0.7;
    filter: alpha(opacity=70);
}
/* margin paddingのクラス（任意で追加・削除） */
.pT30{
    padding-top: 30px !important;
}
.mT10{
    margin-top: 10px !important;
}
.mR0{
    margin-right: 0px !important;
}
.mR5{
    margin-right: 5px !important;
}
.mR10{
    margin-right: 10px !important;
}
.mR20{
    margin-right: 20px !important;
}
.mR65{
    margin-right: 65px !important;
}
.mR1em{
    margin-right: 1em !important;
}
.mR2em{
    margin-right: 2em !important;
}
.mB0{
    margin-bottom: 0px !important;
}
.mB5{
    margin-bottom: 5px !important;
}
.mB10{
    margin-bottom: 10px !important;
}
.mB15{
    margin-bottom: 15px !important;
}
.mB20{
    margin-bottom: 20px !important;
}
.mB25{
    margin-bottom: 25px !important;
}
.mB30{
    margin-bottom: 30px !important;
}
.mB35{
    margin-bottom: 35px !important;
}
.mB40{
    margin-bottom: 40px !important;
}
.mB45{
    margin-bottom: 45px !important;
}
.mB50{
    margin-bottom: 50px !important;
}
.mB55{
    margin-bottom: 55px !important;
}
.mB70{
    margin-bottom: 70px !important;
}
.mL10{
    margin-left: 10px !important;
}
.mL25{
    margin-left: 25px !important;
}

/* テキスト色（任意で追加・削除） */
.txtRed{
    color: #F40000 !important;
}

/* テキスト書式（任意で追加・削除） */
.txt_c{
    text-align: center;
}
.txt_r{
    text-align: right;
}
.txt_ind{
    text-indent: -1em;
    padding-left: 1em;
}
.txt_b{
    font-weight: bold;
}

/* float */
.c_b{
    clear: both;
}
.r{
    float: right;
}
.l{
    float: left;
}

/* clearfix */
.cf::after,
.clearfix::after{
    content: ".";
    display: block;
    height: 0;
    clear: both;
    font-size: 0.1px;
    line-height: 0;
    overflow: hidden;
    visibility: hidden;
}

/*-------------
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(.is--active):not([data-target-class]) + *:not(.accordion-container),
.accordion-content{
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
@media screen and (max-width:768px){
    .accordion-btn_sp:not(.is--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:769px){
    .accordion-container.is--limit_sp{
        height: auto!important;
    }
}

/* custom-scroll */
.custom-scroller{
    --scrollbar-heghit: 10px; /* バーの高さ */
    --scrollbar-gap: calc(var(--scrollbar-heghit) + 10px); /* バーとの間隔 +00pxの部分 */
    position: relative;
    overflow: hidden;
}
.custom-scroll-container{
    position: relative;
    overflow: auto;
    scrollbar-width: none;
}
.custom-scroll-container.is--scrollable{
    padding-bottom: var(--scrollbar-gap);
}
.custom-scroll-container::-webkit-scrollbar{
    display: none;
}
@media screen and (min-width:769px){
    .custom-scroll-container.is--scrollable{
        cursor: grab;
    }  
    .custom-scroll-container.is--scrollable:active{
        cursor: grabbing;
    }  
}
.custom-scroll-container.is--scrolling a,
.custom-scroll-container.is--scrolling img{
    pointer-events: none;
}
.custom-scrollbar{
    display: block;
    position: relative;
    width: 100%;
    height: var(--scrollbar-heghit);
    margin-top: calc(-1 * var(--scrollbar-heghit));
    overflow: hidden;
    border-radius: 99px;
    background-color: rgba(100,100,100,.25);
}
.custom-scrollbar__thumb{
    opacity: .5;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    border-radius: 99px;
    background-color: rgba(0,0,0,.5);
    pointer-events: auto;
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    .custom-scrollbar__thumb:hover{
        opacity: .75;
    }
    .custom-scrollbar__thumb:active{
        opacity: 1;
    }
}
.custom-scroller .shadow{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - var(--scrollbar-gap));
    content: "";
    pointer-events: none;
}

/*-------------
header
-------------*/
#header{
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: solid 2px var(--main-color);
}
@media screen and (min-width:769px){
    body:has(#wpadminbar) #header{
        top: 32px;
    }
}
#header:after{
    content: none;
}
#header .logo{
    flex: 0 0 auto;
    align-self: center;
    width: auto;
    margin-left: 20px;
}
#header .logo a{
    display: flex;
    gap: 41px;
    position: relative;
}
#header .logo a:before{
    content: "";
    width: 1px;
    height: 100%;
    background: var(--theme-col-black);
    position: absolute;
    top: 0;
    left: 216px;
}
#header .primary{
    flex: 0 1 auto;
    display: flex;
}
#header .primary-sp__btn{
    display: none;
}
#header .primary:after{
    content: none;
}
#header .nav-primary{
    flex: 0 1 auto;
    margin-left: 20px;
    margin-right: 20px;
}
#header .nav-primary__items{
    display: flex;
    flex-wrap: wrap;
    gap: 0 21px;
    height: 100%;
}
#header .nav-primary__item{
    position: relative;
}
#header .nav-primary__item__link{
    display: flex;
    align-items: center;
    height: 100%;
    padding: 5px 0;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: var(--font-sans)!important;
    color: var(--theme-col-black);
}
#header .sub-menu-container{
    opacity: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, 100%);
    background: #e5e5e5;
    color: var(--main-color);
    font-family: var(--font-sans);
    font-weight: bold;
    white-space: nowrap;
    pointer-events: none;
    transition: opacity .3s ease;
}
@media screen and (min-width:769px){
    #header .nav-primary__item:hover .sub-menu-container{
        opacity: 1;
        pointer-events: auto;
    }
}
#header .sub-menu-item:not(:last-child){
    border-bottom: solid 1px var(--theme-col-gray);
}
#header .sub-menu-item__link{
    display: block;
    position: relative;
    padding: 10px 20px;
}
#header .sub-menu__list-item__link{
    display: block;
    position: relative;
    padding: 5px 10px 5px 40px;
    line-height: calc(1em + 4px);
}
#header .sub-menu__list-item:last-child .sub-menu__list-item__link{
    padding-bottom: 10px;
}
#header .sub-menu__list-item__link::before{
    position: absolute;
    top: calc(.5em + 7px);
    left: 20px;
    width: 10px;
    height: 2px;
    background: var(--theme-col-gray);
    content: "";
}
#header .header-tel{
    flex: 0 1 156px;
    max-width: 156px;
    min-width: 156px;
    margin-right: 20px;
    padding: 32px 0;
}
#header .header-tel a{
    pointer-events: none;
}
#header .header-tel a img{
    width: 100%;
}
#header .nav-secondary{
    flex: 0 1 auto;
}
#header .nav-secondary__items{
    display: flex;
}
#header .nav-secondary__items li{
    flex: 0 1 150px;
    max-width: 150px;
    min-width: 150px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--main-color);
}
#header .nav-secondary__items li:not(:last-child){
    margin-right: 2px;
}
#header .nav-secondary__items li a{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 50px;
    gap: 5px;
    position: relative;
    font-family: var(--font-sans)!important;
}
#header .nav-secondary__items__contact a{
    color: #fff;
}
#header .nav-secondary__items__contact a:before{
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900;
    content: "\f0e0";
    font-size: 16px;
    font-size: 1.6rem;
    color: #fff;
}
@media screen and (max-width:768px){
    #header{
        height: 50px;
    }
    #wpadminbar{
        display: none;
    }
    html:has(#wpadminbar){
        margin-top: 0!important;
    }
    #header .logo{
        flex: 0 0 auto;
        width: 200px;
        margin-left: var(--inner-sides_sp);
    }
    #header .logo a{
        gap: 21px;
    }
    #header .logo a:before {
        content: "";
        width: 1px;
        height: 100%;
        background: var(--theme-col-black);
        position: absolute;
        top: 0;
        left: 96px;
    }
    #header .logo a img{
        width: auto;
        height: 30px;
    }
    #header .primary-sp__btn{
        display: block;
        width: 50px;
        height: 100%;
        background: var(--main-color);
    }
    #header .primary-sp__btn-inner{
        width: 25px;
        height: 25px;
        display: block;
        position: relative;
        margin: auto;
        margin-top: 11px;
        cursor: pointer;
    }
    #header .primary-sp__btn-inner span{
        background: #FFFFFF;
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        display: block;
        transition: top 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
        -o-transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, top 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
        transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, top 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
        transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, top 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s, -webkit-transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
    }
    #header .primary-sp__btn-inner span:nth-child(1){
        top: 4.5px;
    }
    #header .primary-sp__btn._open .primary-sp__btn-inner span:nth-child(1){
        top: 11.5px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #header .primary-sp__btn-inner span:nth-child(2){
        top: 11.5px;
    }
    #header .primary-sp__btn._open .primary-sp__btn-inner span:nth-child(2){
        opacity: 0.0;
        top: 11.5px;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    #header .primary-sp__btn-inner span:nth-child(3){
        top: 18.5px;
    }
    #header .primary-sp__btn._open .primary-sp__btn-inner span:nth-child(3){
        top: 11.5px;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    #header .primary{
        display: block;
        flex: 0 1 100%;
        background: #fff;
        width: 100%;
        height: calc(100vh - 51px);
        padding: 30px var(--inner-sides_sp);
        box-sizing: border-box;
        margin-left: 0;
        position: fixed;
        left: 0;
        top: 50px;
        z-index: 1000;
        transition: opacity 0.5s cubic-bezier(0.25, 0.1, 0.25, 1) 0s;
        overflow: auto;
    }
    #header .primary:not(._active),
    #header .primary:not(._active) *{
        z-index: -999;
        pointer-events: none;
    }
    #header .primary:not(._show){
        opacity: 0;
    }
    #header .nav-primary{
        flex: 0 1 auto;
        max-width: inherit;
        min-width: inherit;
        padding: 0;
        margin: 0 auto 30px;
    }
    #header .nav-primary__items{
        display: block;
        width: 100%;
        margin: 0 auto;
    }
    #header .nav-primary__item{
        display: block;
        margin: 0 auto;
        text-align: center;
        border-bottom: solid 1px var(--main-color);
    }
    #header .nav-primary__item:first-child{
        border-top: solid 1px var(--main-color);
    }
    #header .nav-primary__item__link{
        color: var(--theme-col-black);
        font-weight: 400;
        pointer-events: auto;
        padding: 12px 0;
        box-sizing: border-box;
        display: block;
    }
    #header .accordion-btn_sp .nav-primary__item__link{
        position: relative;
        padding-right: 30px;
        padding-left: 30px;
        pointer-events: none;
    }
    #header .accordion-btn_sp .nav-primary__item__link::after{
        position: absolute;
        top: calc(50% - 5px);
        right: 10px;
        width: 10px;
        height: 10px;
        background: linear-gradient(to top, var(--main-color), var(--main-color)) no-repeat center / 10px 2px,
        linear-gradient(to right, var(--main-color), var(--main-color)) no-repeat center / 2px 10px;
        content: "";
        transition: transform .3s ease;
    }
    #header .accordion-btn_sp._active .nav-primary__item__link::after{
        transform: rotate(90deg);
        background: linear-gradient(to right, var(--main-color), var(--main-color)) no-repeat center / 2px 10px;
    }
    #header .sub-menu-container{
        opacity: 1;
        position: static;
        transform: none;
        background: #f5f5f5;
        font-size: 1.3rem;
        text-align: left;
        font-weight: 400;
        pointer-events: auto;
        white-space: normal;
    }
    #header .sub-menu-item:not(:last-child){
        border-bottom-style: dotted;
    }
    #header .sub-menu-item__link{
        padding: 8px 16px;
    }
    #header .sub-menu__list-item__link{
        padding: 8px 10px 8px 36px;
    }
    #header .sub-menu__list-item:last-child .sub-menu__list-item__link{
        padding-bottom: 8px;
    }
    #header .sub-menu__list-item__link::before{
        top: calc(.5em + 9px);
        left: 16px;
    }
    #header .header-tel{
        flex: 0 1 100%;
        max-width: inherit;
        min-width: inherit;
        margin-right: 0;
        background: var(--main-color);
        padding: 0;
        margin-bottom: 10px;
    }
    #header .header-tel a{
        padding: 14px 65px;
        box-sizing: border-box;
        display: block;
        pointer-events: auto;
    }
    #header .nav-secondary__items{
        flex-wrap: wrap;
    }
    #header .nav-secondary__items li{
        flex: 0 1 100%;
        max-width: inherit;
        min-width: inherit;
        height: 50px;
        background: none;
    }
    #header .nav-secondary__items li:not(:last-child){
        margin-right: 0px;
    }
    #header .nav-secondary__items li a{
        width: 100%;
        height: 100%;
        font-size: 15px;
        font-size: 1.5rem;
        font-weight: 400;
        border-radius: 30px;
        background: var(--main-color);
    }
}

/*-------------
footer
-------------*/
#footer{
    width: 100%;
    margin: 70px auto 0;
    position: relative;
    border-top: solid 2px var(--main-color);
}
#footer .pagetop_btn{
    width: 50px;
    height: 50px;
    position: absolute;
    top: -50px;
    right: 0;
}
#footer .pagetop_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    position: relative;
    text-decoration: none;
    font-size: 20px;
    font-size: 2.0rem;
}
#footer .pagetop_btn a:before {
    content: "↑";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#footer .nav-main{
    padding: 20px 0;
    box-sizing: border-box;
}
#footer .nav-primary__items{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
#footer .nav-primary__item a{
    font-size: 16px;
    font-size: 1.6rem;
    padding-left: 15px;
    box-sizing: border-box;
    border-left: solid 1px var(--theme-col-gray);
}
#footer .nav-primary__item:last-child a{
    padding-right: 15px;
    border-right: solid 1px var(--theme-col-gray);
}
.copy {
    padding: 15px 0px;
    background-color: var(--main-gray);
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
}
@media screen and (max-width:768px){
    #footer .nav-main{
        padding: 10px 0;
    }
    #footer .nav-primary__items {
        width: var(--inner-width_sp);
        margin: 0 auto;
        display: flex;
        flex-flow: column;
        gap: 0;
    }
    #footer .nav-primary__item{
        width: 100%;
        border-bottom: solid 1px var(--main-color);
    }
    #footer .nav-primary__item a {
        display: block;
        width: 100%;
        padding: 10px 0;
        box-sizing: border-box;
        font-size: 14px;
        font-size: 1.4rem;
        padding-left: 15px;
        box-sizing: border-box;
        border-left: none;
        padding-left: 15px;
        position: relative;
    }
    #footer .nav-primary__item a::after {
        position: absolute;
        top: calc(0.5em + 9px);
        left: 0;
        transform: rotate(45deg);
        width: 8px;
        height: 8px;
        border-top: solid 2px var(--main-color);
        border-right: solid 2px var(--main-color);
        content: "";
    }
    #footer .nav-primary__item:last-child{
        border-bottom: none;
    }
    #footer .nav-primary__item:last-child a {
        padding-right: 0;
        border-right: none;
    }
}

/*-------------
共通クラス
-------------*/
.title01{
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: var(--main-color);
}
.top__title01{
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 15px;
    color: var(--main-color);
}
.inner_title01{
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: var(--main-color);
}
.inner_title01_c{
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: var(--main-color);
    text-align: center;
}
.title01_c{
    font-size: 36px;
    font-size: 3.6rem;
    margin-bottom: 25px;
    color: var(--main-color);
    text-align: center;
}
.top__title01_c{
    font-size: 36px;
    font-size: 3.6rem;
    color: var(--main-color);
    text-align: center;
    margin-bottom: 50px;
}
.title02{
    font-size: 30px;
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 35px;
}
.title03{
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--main-color);
}
.title03_c{
    font-size: 25px;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--main-color);
}
#contents{
    padding-top: 80px;
}
.sans{
    font-family: var(--font-sans)!important;
}
#contents .sec-support{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
#contents .sec-support:after{
    content: none;
}
#contents .sec-support dt{
    flex: 0 1 200px;
    max-width: 200px;
    background: #434d69;
    padding: 90px 25px;
    color: #fff;
    font-size: 20px;
    font-size: 2rem;
}
#contents .sec-support dd{
    flex: 0 1 796px;
    max-width: 796px;
    color: #434d69;
}
#contents .sec-support .back_gray{
    background: #e7e9ec;
}
#contents .sec-support-inlist li{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#contents .sec-support-inlist li:not(:last-child){
    margin-bottom: 4px;
}
#contents .sec-support-inlist h4{
    flex: 0 1 196px;
    max-width: 196px;
    background: #8990a1;
    font-weight: bold;
    padding: 12px 20px;
    color: #fff;
}
#contents .sec-support-inlist p{
    flex: 0 1 596px;
    max-width: 596px;
    padding: 9px 20px;
    margin-bottom: 0;
    line-height: 1.76;
}
#contents .form-btn__list{
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#contents .form-btn__list:after{
    content: none;
}
#contents .form-btn__item{
    flex: 0 1 350px;
    max-width: 350px;
}
#contents .form-btn__item a{
    display: block;
    padding: 15px 0;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: var(--font-serif)!important;
}
#contents .form-btn__item-back{
    background: var(--main-col-light);
}
#contents .form-btn__item-comp{
    background: var(--main-color);
}
#contents .confirm__text{
    text-align: center;
    color: #434d69;
    line-height: 2.1;
    margin-bottom: 30px;
}
#contents .recruit-confirm tr{
    display: block;
    padding: 18px 15px;
    border-bottom: 1px solid var(--main-col-border);
    margin-bottom: 0 !important;
}
#contents .recruit-confirm tr:first-child{
    border-top: 1px solid var(--main-col-border);
}
#contents .recruit-confirm tr td{
    padding: 0 !important;
}
.fixedsticky{
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    position: sticky;
}
/* When position: sticky is supported but native behavior is ignored */
.fixedsticky-withoutfixedfixed .fixedsticky-off,
.fixed-supported .fixedsticky-off{
    position: static;
}
.fixedsticky-withoutfixedfixed .fixedsticky-on,
.fixed-supported .fixedsticky-on{
    position: fixed;
    margin-bottom: 0 !important;
}
.fixedsticky-dummy{
    display: none;
}
.fixedsticky-on+.fixedsticky-dummy{
    display: block;
}
@media screen and (max-width:768px){
    .title01{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .top__title01{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .inner_title01{
        font-size: 20px;
        font-size: 2.0rem;
    }
    .inner_title01_c{
        font-size: 20px;
        font-size: 2.0rem;
    }
    .title01_c{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .top__title01_c{
        font-size: 25px;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    .title02{
        font-size: 30px;
        font-size: 3.0rem;
        font-family: var(--font-serif);
        text-align: center;
        margin-bottom: 35px;
    }
    .title03{
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .title03_c{
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    #contents{
        padding-top: 50px;
        box-sizing: border-box;
    }
    #contents .sec-support{
        width: 100%;
        margin-bottom: 20px;
    }
    #contents .sec-support dt{
        flex: 0 1 100%;
        max-width: inherit;
        padding: 15px 20px;
        font-size: 16px;
        font-size: 1.6rem;
    }
    #contents .sec-support dd{
        flex: 0 1 100%;
        max-width: inherit;
    }
    #contents .sec-support-inlist li:not(:last-child){
        margin-bottom: 0px;
    }
    #contents .sec-support-inlist h4{
        flex: 0 1 100%;
        max-width: inherit;
        padding: 7px 20px;
    }
    #contents .sec-support-inlist p{
        flex: 0 1 100%;
        padding: 13px 20px;
        line-height: 2.3;
        font-size: 13px;
        font-size: 1.3rem;
    }
    #contents .form-btn__item{
        flex: 0 1 100%;
        max-width: inherit;
        margin-bottom: 10px;
    }
    #contents .form-btn__item a{
        padding: 15px 0;
        font-size: var(--base-fontsize);
    }
    #contents .confirm__text{
        text-align: left;
    }
    #contents .recruit-confirm{
        margin-bottom: 40px !important;
    }
    #contents .recruit-confirm tr{
        padding: 20px 15px;
    }
}

/*-------------
page-header
-------------*/
.page-header{
    width: 100%;
    min-height: 250px;
    position: relative;
    background: url(../images/Main.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-header-title{
    filter: drop-shadow(1px 1px 0px #434d69);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(1000px, 100%);
    padding-right: var(--inner-sides);
    color: #fff;
    font-size: 45px;
    font-size: 4.5rem;
    font-family: var(--font-serif);
    z-index: 4;
    text-align: center;
}
@media screen and (max-width:768px){
    .page-header{
        min-height: 150px;
    }
    .page-header-title{
        font-size: 20px;
        font-size: 2rem;
    }
}

/*-------------
breadcrumbs
-------------*/
.breadcrumbs-nav{
    width: var(--inner-width);
    margin: 0 auto 60px;
    font-size: 13px;
    font-size: 1.3rem;
    color: var(--main-col-light);
    margin-top: 12px;
    overflow: hidden;
}
@media screen and (max-width:768px){
    .breadcrumbs-nav{
        width: var(--inner-width_sp);
        font-size: 12px;
        font-size: 1.2rem;
        margin: 12px auto 40px;
    }
}
.breadcrumbs{
    display: flex;
}
.breadcrumbs-item{
    display: flex;
    flex: 0 0 auto;
    position: relative;
    min-width: 0;
}
.breadcrumbs-item:not(:last-child){
    padding-right: 30px;
}
.breadcrumbs-item:not(:last-child)::after{
    position: absolute;
    top: 0;
    right: 15px;
    transform: translateX(50%);
    content: "＞";
}
.breadcrumbs-item:last-child{
    flex: 1 1 auto;
}
.breadcrumbs-item__link{
    display: block;
    color: var(--main-col-light);
    text-decoration: underline;
}
.breadcrumbs-item__name{
    display: block;
    overflow: hidden;
    font-family: var(--font-sans)!important;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/*-------------
news-list 共通
-------------*/
.news-list {
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.news-list-item {
    border: 1px solid var(--main-col-border);
    border-radius: 8px;
    margin-bottom: 15px;
}
.news-list-item a {
    display: flex;
    align-items: center;
    padding: 23px 20px;
    text-decoration: none;
}
.news-list-meta{
    display: flex;
}
/* 日付 */
.news-list-time {
    margin-right: 10px;
    font-family: var(--font-sans)!important;
    white-space: nowrap;
}
/* カテゴリ */
.news-list-cate {
    margin-right: 15px;
}
.news-list-cate-inner {
    display: inline-block;
    min-width: 84px;
    padding: 0 6px;
    background: var(--main-color);
    color: #fff;
    font-family: var(--font-sans)!important;
    text-align: center;
    transition: opacity .3s ease;
}
/* タイトル */
.news-list-title {
    flex-basis: 100%;
    margin: 0;
}
/* hover エフェクト */
a:hover .news-list-time {
    color: var(--main-col-light);
}
a:hover .news-list-cate-inner {
    opacity: .7;
}
a:hover .news-list-title {
    color: var(--main-col-light);
}
/* カテゴリ別カラー */
.news-list-cate._1 .news-list-cate-inner {
    background: var(--main-color);
}
.news-list-cate._2 .news-list-cate-inner {
    background: #3399ff;
}
.news-list-cate._3 .news-list-cate-inner {
    background: #cc3333;
}
.news-list-cate._4 .news-list-cate-inner {
    background: #33cc66;
}
/*-------------
スマホ対応
-------------*/
@media screen and (max-width:768px) {
    .news-list-item{
        width: 100%;
    }
    .news-list-item a {
        padding: 15px;
        align-items: flex-start;
        flex-flow: column;
    }
    .news-list-time {
        margin-right: 10px;
        margin-bottom: 0;
    }
    .news-list-cate {
        margin-right: 0;
        margin-bottom: 0;
    }
    .news-list-cate-inner {
        font-size: 1.3rem;
    }
    .news-list-title {
        width: 100%;
        margin-top: 10px;
    }
}

.news-list._impt{
    margin-bottom: 25px;
    border-top: none;
    background: var(--main-color-light);
    border-radius: 8px;
}
.news-list._impt .news-list-item:last-child{
    border-bottom: none;
}
.news-list._impt .news-list-title{
    font-weight: bold;
}
/* @media screen and (max-width:768px){
    .news-list._impt{
        margin: 0 calc(var(--inner-sides_sp) * -1) 20px;
        padding: 0 var(--inner-sides_sp);
    }
} */

/*-------------
table__type1
-------------*/
.table__type1{
    width: 715px;
    margin: 0 auto;
}
.table__type1 tr{
    border-bottom: 1px solid var(--main-col-border);
    font-size: 15px;
    font-size: 1.5rem;
    color: var(--main-color);
}
.table__type1 tr th{
    padding: 20px 0 20px 20px;
    width: 143px;
    font-family: var(--font-serif);
}
.table__type1 tr td{
    padding: 20px 0 20px 20px;
    font-family: var(--font-serif);
}
@media screen and (max-width:768px){
    .table__type1{
        width: 100%;
    }
    .table__type1 tr{
        font-size: var(--base-fontsize);
        padding: 20px 0;
        box-sizing: border-box;
        display: block;
    }
    .table__type1 tr:first-child{
        border-top: 1px solid var(--main-col-border);
    }
    .table__type1 tr th{
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }
    .table__type1 tr td{
        display: block;
        padding: 0;
    }
}

/*-------------
inner-link-list__items
-------------*/
.inner-linklist__items{
    margin: 30px auto 90px;
    display: flex;
    justify-content: space-between;
}
.inner-linklist__items:after{
    content: none;
}
.inner-linklist__item{
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
}
.inner-linklist__item a{
    padding: 17px 0;
    background: #5a647c;
    color: #fff;
    display: block;
}
.inner-linklist__item a:hover{
    background: var(--main-color);
}
@media screen and (max-width:768px){
    .inner-linklist__items{
        width: var(--inner-width_sp) !important;
        margin: 20px auto 40px;
        flex-wrap: wrap;
    }
    .inner-linklist__items:after{
        content: none;
    }
    .inner-linklist__item{
        flex: 0 1 49.5% !important;
        max-width: inherit !important;
        font-size: var(--base-fontsize);
        margin-bottom: 2px;
    }
    .inner-linklist__item a{
        padding: 10px 0;
    }
}

/*-------------
table__type2
-------------*/
.table__type2{
    width: 100%;
    text-align: center;
    color: var(--main-color);
}
.table__type2 tr:nth-child(odd){
    background: #f1f2f4;
}
.table__type2 tr:nth-of-type(1){
    background: #e6f3fc;
    border-top: 1px solid var(--main-col-border);
    border-bottom: 1px solid var(--main-col-border);
}
.table__type2 tr:last-child{
    border-bottom: 1px solid var(--main-col-border);
}
.table__type2 tr th{
    padding: 15px 0;
    font-weight: 600;
    font-size: 16px;
    font-size: 1.6rem;
}
.table__type2 tr td{
    padding: 16px 0;
    font-family: var(--font-sans)!important;
    font-size: 15px;
    font-size: 1.5rem;
}
.table__type2.bg-color-change tr:nth-child(odd){
    background: none;
}
.table__type2.bg-color-change tr:nth-of-type(1){
    background: #e6f3fc;
    border-top: 1px solid var(--main-col-border);
    border-bottom: 1px solid var(--main-col-border);
}
.table__type2.bg-color-change tr:nth-child(4n+4),
.table__type2.bg-color-change tr:nth-child(4n+5){
    background: #f1f2f4;
}
.table__type2.bg-color-change tr:nth-child(2n+3) td{
    text-align: left;
    padding: 6px 16px 18px;
}
@media screen and (max-width:768px){
    .table__type2{
        margin-bottom: 10px;
    }
    .table__type2 tr th{
        padding: 15px 0;
        font-size: 15px;
        font-size: 1.5rem;
    }
    .table__type2 tr td{
        padding: 20px 0;
        font-size: 13px;
        font-size: 1.3rem;
    }
}

/*-------------
トップページ
-------------*/
#contents.top .topimage-container{
    aspect-ratio: 3 / 1;
}
#contents.top .topimage-container .keen-slider-controler{
    display: none;
}
#contents.top div.topimage{
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 1;
    overflow: hidden;
}
#contents.top div.topimage a{
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: 10;
}
#contents.top div.topimage a:hover,
#contents.top div.topimage a:hover img{
    opacity: 1;
}
#contents.top div.topimage:not(.keen-slider__slide){
    position: relative;
}
#contents.top div.topimage img{
    width: 100%;
    height: auto;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
#contents.top div.topimage:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background: url(../images/topimage_filter.png);*/
    z-index: 1;
}
#contents.top .topimage__text{
    width: 740px;
    position: absolute;
    font-size: 28px;
    font-size: 2.8rem;
    z-index: 3;
    color: #fff;
    line-height: 1.76;
    padding: 45px 50px;
    background: var(--main-color);
    bottom: 11.6%;
    left: 0;
}
#contents.top .blocks-content{
    margin-top: 50px;
}
#contents.top section.news + .blocks-content{
    margin-top: 0;
}
@media screen and (max-width:768px){
    #contents.top .topimage-container{
        margin-bottom: 36px;
    }
    #contents.top div.topimage{
        height: auto;
        aspect-ratio: 16 / 15;
        overflow: inherit;
    }
    #contents.top .topimage-container{
        aspect-ratio: 16 / 15;
    }
    #contents.top div.topimage picture{
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: absolute;
    }
    #contents.top div.topimage img{
        width: 100%;
        min-width: inherit;
        min-height: inherit;
        height: auto;
    }
    #contents.top .topimage__text{
        width: 85.9375%;
        max-width: 482px;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 2;
        padding: 4.7535% var(--inner-sides_sp);
        bottom: -36px;
        left: 0;
        z-index: 50;
    }
    #contents.top .blocks-content{
        margin-top: 40px;
    }
    #contents.top section.news + .blocks-content{
        margin-top: 0;
    }
}

/*-------------
トップページ-news
-------------*/
#contents.top section.news{
    width: var(--inner-width);
    margin: 60px auto;
    position: relative;
}
#contents.top section.news:has(+ .contactlink-back){
    margin-bottom: 0;
}
@media screen and (min-width:769px){
    #contents.top section.news .news-list-time{
        margin-right: 40px;
    } 
    #contents.top section.news .news-list-cate{
        margin-right: 40px;
    } 
}
#contents.top section.news .more_btn{
    border: 1px solid #fff;
    background: var(--main-color);
    font-size: 16px;
    font-size: 1.6rem;
    text-align: center;
    width: min(100%, 200px);
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 5px;
    border-radius: 8px;
}
#contents.top section.news .more_btn:not(:last-child){
    margin-bottom: 45px;
}
#contents.top section.news .more_btn a{
    color: #fff;
    font-weight: bold;
    padding: 10px 0;
    display: block;
}
#contents.top .news-officelist__items{
    display: flex;
    justify-content: space-between;
}
#contents.top .news-officelist__items:after{
    content: none;
}
#contents.top li.news-officelist__item{
    flex: 0 1 240px;
}
#contents.top .news-officelist__item a img{
    width: 100%;
}
@media screen and (max-width:768px){
    #contents.top section.news{
        width: var(--inner-width_sp);
        margin: 40px auto;
    }
    #contents.top .news-officelist__items{
        flex-wrap: wrap;
    }
    #contents.top .news-officelist__items li{
        flex: 0 1 100%;
    }
    #contents.top .news-officelist__items li:not(:last-child){
        margin-bottom: 10px;
    }
    #contents.top section.news .more_btn{
        border: 1px solid #fff;
        background: var(--main-color);
        font-size: 16px;
        font-size: 1.6rem;
        text-align: center;
        width:100%;
        position: static;
        margin: 15px auto 0;
    }
}

/*-------------
トップページ-pickup
-------------*/
#contents.top .pickup{
    background: #e7e9ec;
    padding: 68px 0 90px;
}
#contents.top .pickuplist__items{
    width: 1250px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
@media screen and (max-width: 1249px){
    #contents.top .pickuplist__items{
        width: var(--inner-width);
        justify-content: space-around;
    }}
#contents.top .pickuplist__items:after{
    content: none;
}
#contents.top .pickuplist__item{
    flex: 0 1 248px;
    position: relative;
    height: 255px;
}
#contents.top .pickuplist__item:before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 12.5px 0 12.5px;
    border-color: #e7e9ec transparent transparent transparent;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 7;
}
@media screen and (max-width: 1249px){
    #contents.top .pickuplist__item{
        flex: 0 1 255px;
        margin-bottom: 15px;
    }
    #contents.top .pickuplist__item:nth-of-type(4),
    #contents.top .pickuplist__item:nth-of-type(5){
        margin-bottom: 0;
    }}
#contents.top .pickuplist__item a{
    position: relative;
    background: #fff;
    padding: 65px 28px 0;
    display: block;
    max-height: 255px;
    height: 100%;
}
#contents.top .pickuplist__item a:hover{
    min-height: 255px;
    height: 100%;
    overflow: hidden;
}
#contents.top .pickuplist__item a:hover:before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: url(../images/hover_image001.jpg) no-repeat;
    background-size: cover;
}
#contents.top .pickuplist__item a:hover:after{
    content: "";
    background: rgba(20, 33, 68, 0.5);
    z-index: 3;
    min-height: 255px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
}
#contents.top a .pickuplist__item-icon{
    margin: 0 auto;
}
#contents.top a:hover .pickuplist__item-icon{
    display: none;
}
#contents.top a .pickuplist__item-icon img{
    width: 100%;
}
#contents.top .pickuplist__item a .icon-about{
    width: 30px;
    margin-bottom: 40px;
}
#contents.top .pickuplist__item a .icon-manda{
    width: 33px;
    margin-bottom: 40px;
}
#contents.top .pickuplist__item a .icon-medical{
    width: 25px;
    margin-bottom: 35px;
}
#contents.top .pickuplist__item a .icon-nursing{
    width: 25px;
    margin-bottom: 40px;
}
#contents.top .pickuplist__item a .icon-subsidy{
    width: 23px;
    margin-bottom: 38px;
}
#contents.top .pickuplist__item a dl{
    text-align: center;
    color: var(--main-color);
}
#contents.top .pickuplist__item a:hover dl{
    color: #fff;
    position: relative;
    z-index: 4;
}
#contents.top .pickuplist__item a dl dt{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 0.2rem;
    font-family: var(--font-sans)!important;
}
#contents.top .pickuplist__item a:hover dl dt{
    margin-bottom: 20px;
}
#contents.top .pickuplist__item a dl dd{
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.04rem;
    line-height: 1.77;
    font-family: var(--font-sans)!important;
}
@media screen and (max-width:768px){
    #contents.top .pickup{
        padding: 74px 0 50px;
    }
    #contents.top .pickuplist__items{
        width: 75% !important;
        justify-content: space-between;
    }
    #contents.top .pickuplist__item{
        flex: 0 1 100% !important;
        height: auto;
    }
    #contents.top .pickuplist__item:not(:last-child){
        margin-bottom: 10px;
    }
    #contents.top .pickuplist__item:before{
        content: none;
    }
    #contents.top .pickuplist__item a{
        padding: 30px 27px 25px;
        max-height: inherit;
        height: auto;
    }
    #contents.top .pickuplist__item a:hover{
        min-height: inherit;
    }
    #contents.top .pickuplist__item a:hover:before{
        content: none;
    }
    #contents.top .pickuplist__item a:hover:after{
        content: none;
    }
    #contents.top a:hover .pickuplist__item-icon{
        display: block;
    }
    #contents.top .pickuplist__item a .icon-about{
        width: 23px;
        margin-bottom: 15px;
    }
    #contents.top .pickuplist__item a .icon-manda{
        width: 30px;
        margin-bottom: 15px;
    }
    #contents.top .pickuplist__item a .icon-medical{
        width: 23px;
        margin-bottom: 15px;
    }
    #contents.top .pickuplist__item a .icon-nursing{
        width: 23px;
        margin-bottom: 15px;
    }
    #contents.top .pickuplist__item a .icon-subsidy{
        width: 20px;
        margin-bottom: 15px;
    }
    #contents.top .pickuplist__item a:hover dl{
        color: var(--main-color);
    }
    #contents.top .pickuplist__item dl dt{
        font-size: 15px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    #contents.top .pickuplist__item a:hover dl dt{
        margin-bottom: 12px;
    }
    #contents.top .pickuplist__item a dl dd{
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.04rem;
        line-height: 1.7;
    }
}

/*-------------
お知らせ一覧ページ
-------------*/
.archive-title{
    position: relative;
    margin-bottom: 28px;
    color: var(--theme-col-black);
    font-size: 30px;
    line-height: calc(1em + 4px);
    background: var(--main-gray);
    padding: 15px;
}
.archive-title:before{
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--main-color);
    content: "";
}
@media screen and (max-width:768px){
    .archive-title{
        font-size: 2rem;
        margin-bottom: 18px;
        padding: 10px;
    }
}
.archive-body{
    display: flex;
    gap: 0 40px;
    width: var(--inner-width);
    margin: 0 auto;
}
.archive-main{
    flex: 0 0 auto;
    width: 720px;
}
.archive-side{
    flex: 1 1 auto;
}
@media screen and (max-width:768px){
    .archive-body{
        flex-direction: column;
        gap: 40px 0;
    }
    .archive-main{
        width: 100%;
    }
}
.archive__pager{
    display: flex;
    justify-content: center;
    gap: 0 10px;
    margin-top: 23px;
    padding-bottom: 1px;
}
.archive__pager :is(.prev, .next){
    display: none!important;
}
.archive__pager .page-numbers{
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    aspect-ratio: 1 / 1;
    padding: 0 5px;
    color: var(--main-color);
    font-size: 1.6rem;
    line-height: 1;
    border: solid 1px var(--main-color);
}
@media screen and (max-width:768px){
    .archive__pager{
        gap: 0 5px;
        margin-top: 22px;
    }
    .archive__pager :is(.prev, .next){
        display: none!important;
    }
    .archive__pager .page-numbers{
        min-width: 30px;
        font-size: var(--base-fontsize);
    }
}
.archive__pager .page-numbers.current{
    font-weight: bold;
    background: var(--main-color);
    color: #fff;
}
.archive-side-nav{
    padding: 8px 20px;
    border-radius: 8px;
    border: solid 1px var(--theme-col-gray);
}
@media screen and (max-width:768px){
    .archive-side-nav{
        padding: 3px 15px 8px;
        border-radius: 6px;
    }
}
.archive-side-nav-list-item:not(:last-child){
    border-bottom: dotted 1px var(--theme-col-gray);
}
.archive-side-nav-list-item a{
    display: block;
    position: relative;
    padding: 12px 20px 12px 0;
    color: var(--theme-col-black);
    font-family: var(--font-sans);
}
.archive-side-nav-list-item a::after{
    position: absolute;
    top: calc(50% - 3px);
    right: 10px;
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: solid 2px var(--main-color);
    border-right: solid 2px var(--main-color);
    content: "";
}

/*-------------
お知らせページ
-------------*/
#contents.news .news-header{
    width: var(--inner-width);
    margin: 0 auto 40px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--main-color);
}
#contents.news .news-header-time{
    display: block;
    margin-bottom: 9px;
    line-height: 1;
}
#contents.news .news-title{
    font-size: 36px;
    line-height: calc(1em + 11px);
}
@media screen and (max-width:768px){
    #contents.news .news-header{
        margin-bottom: 30px;
    }
    #contents.news .news-title{
        font-size: 2.4rem;
        line-height: calc(1em + 8px);
    }
}
#contents.news .news-return {
    width: var(--inner-width);
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid #ecedf0;
    text-align: center;
}
#contents.news .news-return a {
    padding: 17px 0;
    min-width: 300px;
    box-sizing: border-box;
    background: var(--main-color);
    font-weight: bold;
    color: #fff;
    display: inline-block;
    border-radius: 8px;
    transition: all ease .3s;
}
#contents.news .news-return a:hover {
    transition: all ease .3s;
    background: var(--main-color-hover);
}
@media screen and (max-width:768px){
    #contents.news .news-return a {
        min-width: 80%;
    }
}

/*-------------
お問合せページ
-------------*/
#contents.contact .tel-contact{
    display: flex;
    justify-content: center;
    gap: 0 40px;
    margin: 45px auto;
    padding: 35px 60px;
    background: #ebf5fd;
}
#contents.contact .tel-contact__text p{
    font-size: 20px;
    font-size: 2rem;
    color: var(--main-color);
    margin: 20px 0 0;
}
#contents.contact .tel-contact_btn a{
    font-size: 40px;
    font-size: 4rem;
    position: relative;
    padding-left: 38px;
    pointer-events: none;
    line-height: 1;
    color: var(--main-color);
    text-decoration: none;
}
#contents.contact .tel-contact_btn a:before{
    content: "";
    width: 30px;
    height: 30px;
    background: url(../images/icon_tel.png) no-repeat;
    background-size: cover;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
#contents.contact .tel-contact_btn p{
    font-size: 13px;
    font-size: 1.3rem;
    margin: 5px 0 0 38px;
}
#contents.contact .news-main .no-data_row{
    text-align: center;
}
.selectdiv{
    position: relative;
    float: right;
    min-width: 140px;
}
.selectdiv select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: block;
    width: 100%;
    max-width: 110px;
    height: 30px;
    float: right;
    margin: 5px 0px;
    padding: 0px 24px;
    font-size: 14px;
    line-height: 1.75;
    color: #333;
    background-color: #ffffff;
    background-image: none;
    border: 1px solid var(--theme-col-gray);
    border-radius: 5px;
    font-family: var(--font-serif)!important;
    -ms-word-break: normal;
    word-break: normal;
}
@media screen and (max-width:768px){
    #contents.contact .tel-contact{
        padding: 20px 0 30px;
        flex-wrap: wrap;
        margin: 30px auto;
    }
    #contents.contact .tel-contact__text{
        flex: 0 1 100%;
    }
    #contents.contact .tel-contact__text p{
        font-size: 16px;
        font-size: 1.6rem;
        text-align: center;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    #contents.contact .tel-contact_btn{
        margin: 0 auto;
    }
    #contents.contact .tel-contact_btn a{
        font-size: 30px;
        font-size: 3rem;
        padding-left: 25px;
        pointer-events: auto;
    }
    #contents.contact .tel-contact_btn a:before{
        width: 20px;
        height: 20px;
    }
    #contents.contact .tel-contact_btn p{
        font-size: 13px;
        font-size: 1.3rem;
        margin-top: 5px;
        text-align: center;
        margin-left: 0;
    }
}

/* cf7-form */
.cf7-form{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px 0;
}
.cf7-form p{
    margin: 0;
}
.cf7-form p:nth-child(odd){
    min-width: 285px;
    padding: 15px 25px 16px 100px;
    font-size: 1.6rem;
    line-height: calc(1em + 3px);
    font-weight: bold;
}
.cf7-form p:nth-child(even){
    padding-right: 100px;
}
.cf7-form .wpcf7-form-control-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    min-height: 50px;
}
.cf7-form .wpcf7-form-control-wrap:not(:last-child){
    margin-bottom: 5px;
}
.cf7-form .wpcf7-form-control-wrap + br{
    display: none;
}
.cf7-form :is(.wpcf7-radio, .wpcf7-checkbox){
    display: flex;
    flex-wrap: wrap;
    gap: 5px 15px;
    font-size: 1.6rem;
}
.cf7-form :is(.wpcf7-radio, .wpcf7-checkbox) .wpcf7-list-item{
    margin: 0;
}
.cf7-form input:is([type="text"],[type="number"],[type="tel"],[type="email"],[type="date"],[type="url"]){
    width: 100%;
    min-height: 50px;
    padding: 12px 20px;
    background: #ecedf0;
    font-size: max(1.6rem, 16px);
}
.cf7-form textarea{
    width: 100%;
    height: 200px;
    min-height: 200px;
    padding: 11px 20px;
    background: #ecedf0;
    font-size: max(1.6rem, 16px);
    line-height: calc(1em + 11px);
    resize: vertical;
}
.cf7-form select{
    max-width: 100%;
    min-width: 50%;
    height: 50px;
    padding: 0 20px;
    border: solid 1px #ccc;
    background: #fff;
    font-size: max(1.6rem, 16px);
}
.cf7-form p:has(.wpcf7-submit){
    grid-column: 1 / 3;
    position: relative;
    padding: 10px 0 0;
}
.cf7-form .wpcf7-submit,
.cf7-form .wpcf7-submit:hover{
    display: block;
    width: 430px;
    height: 60px;
    margin: 0 auto;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
}
.cf7-form .wpcf7-spinner{
    position: absolute;
    top: calc(50% - 7px);
    right: 305px;
    background-color: var(--main-color);
}
@media screen and (max-width:768px){
    .cf7-form{
        display: block;
    }
    .cf7-form p:nth-child(odd){
        min-width: 0;
        padding: 0 0 5px;
        font-size: 1.4rem;
    }
    .cf7-form p:nth-child(even){
        padding: 0 0 20px;
        font-size: 1.2rem;
    }
    .cf7-form .wpcf7-form-control-wrap{
        min-height: 0;
    }
    .cf7-form input:is([type="text"],[type="number"],[type="tel"],[type="email"],[type="date"],[type="url"]){
        min-height: 46px;
        padding: 10px 15px;
    }
    .cf7-form textarea{
        height: 150px;
        min-height: 150px;
        padding: 10px 15px;
    }
    .cf7-form select{
        height: 46px;
        padding: 0 15px;
    }
    .cf7-form :is(input, textarea)::placeholder{
        font-size: 1.4rem;
    }
    .cf7-form p:has(.wpcf7-submit){
        padding: 5px 0 0;
    }
    .cf7-form .wpcf7-submit,
    .cf7-form .wpcf7-submit:hover{
        width: 100%;
        height: 50px;
    }
    .cf7-form .wpcf7-spinner{
        top: calc(50% - 9.5px);
        right: var(--inner-sides_sp);
    }
}
figure.is-style-rounded img{
    border-radius: 8px!important;
}
