@charset "UTF-8";
/*-------------
vars
-------------*/
:root{
    --font-sans-serif: 'Noto Sans JP', "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --font-serif: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    --font-en: "Quicksand", sans-serif;
    --main-black: #333333;
    --main-blue: #06a8e6;
    --main-lightblue:#e6f6fc;
    --main-green:#269926;
    --main-green2:#72b12c;
    --main-lightgreen:#ebf4e1;
    --font-color:#1a1a1a;
    --main-red: #b85454;
    --main-orange:#f78826;
    --main-gray: #eeeeef;
    --border-gray:#ccc;
    --main-gray_border: #e6e6e6;
    --inner-width--pc: 1200px;
    --inner-width--sp: 90.625%;
    --inner-width--sp_vw: 90.625vw;
    --inner-width: var(--inner-width--pc);
    --inner-sidespace--sp: 4.6875%;
    --inner-sidespace--sp_vw: 4.6875vw;
    --trans-ease: .3s ease;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    :root{
        --inner-width: var(--inner-width--sp);
    }
}

/*-------------
base
-------------*/
html{
    font-size: 62.5%;
}
body{
    width: 100%;
    min-width: 1200px;
    background: #fff;
    color: var(--main-black);
    font-family: var(--font-sans-serif);
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: normal;
    text-align: left;
    word-wrap: break-word;
}
*{
    letter-spacing: .02em;
}
.sp{
    display: none;
}
a[href^="tel:"]{
    pointer-events: none!important;
    text-decoration: none!important;
}
  
/*--- sp ---*/
@media screen and (max-width:768px){
    body{
        min-width: 320px;
        font-size: 1.4rem;
    }
    body.is--min_win-height{
        position: relative;
    }
    body.is--min_win-height .footer{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }
    body.is--min_win-height .footer .page-top-btn-block{
        display: none;
    }
    .sp{
        display: block;
    }
    .pc{
        display: none;
    }
    a[href^="tel:"]{
        pointer-events: auto!important;
        text-decoration: underline!important;
    }
    img{
        width: 100%;
        height: auto;
    }
}
/*-------------
data-effect
-------------*/
*[data-effect^="fade"]{
    opacity: 0;
    transition: transform .8s ease,opacity .8s ease;
}
*[data-effect^="fade-left"]{
    transform: translateX(-50px);
}
*[data-effect^="fade-right"]{
    transform: translateX(50px);
}
*[data-effect^="fade-up"]{
    transform: translateY(50px);
}
*[data-effect^="fade"].effected{
    opacity: 1;
    transform: none;
}
@media screen and (max-width:768px){
    *[data-effect^="fade"]{
        transition: transform .6s ease,opacity .6s ease;
    }
}
/* アーチ部分だけ上下に少し動く */
@keyframes archMove {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0px);
  }
}
/* 上下に波が動くアニメーション */
@keyframes waveMove {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*-------------
common
-------------*/
.clearfix::after,
.cf::after{
    content: "";
    display: block;
    clear: both;
}
.preload *,
.preload *::before,
.preload *::after{
    transition: none!important;
}
.textCenter,
.txt_c{
    text-align: center;
}
.textRight,
.txt_r{
    text-align: right;
}
.textIndent,
.txt_ind {
    text-indent: -1em;
    padding-left: 1em;
}
.textRed,
.txtRed{
    color: var(--text-red);
}
.textNowrap{
    white-space: nowrap;
}
@media screen and (min-width:769px){
    .textLink:not(:hover){
        text-decoration: underline;
    }
}
@media screen and (max-width:768px){
    .textLink:not(:active){
        text-decoration: underline;
    }
}
.textSmall{
    font-size: .7em;
}
.mB5,
.m_b5{
	margin-bottom: 5px!important;
}
.mB10,
.m_b10{
	margin-bottom: 10px!important;
}
.mB15,
.m_b15{
	margin-bottom: 15px!important;
}
.mB20,
.m_b20{
	margin-bottom: 20px!important;
}
.mB30,
.m_b30{
	margin-bottom: 30px!important;
}
.mR10,
.m_r10{
	margin-right: 10px!important;
}
.mR5,
.m_r5{
	margin-right: 5px!important;
}
.floatL,
.l{
    float: left;
}
.floatR,
.r{
    float: right;
}

/*-------------
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(.accordion--open):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(.accordion--open):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;
    }
}

/*-------------
header
-------------*/
.header{
    width: 100%;
    position: relative;
    z-index: 101;
    min-height: 128px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    position: fixed;
}
.header-wrapper{
    display: flex;
    align-items: center;
    position: relative;
    z-index: 99;
    height: 80px;
    width: 100%;
    max-width: 1440px;
    min-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    box-shadow : 0px 0px 6px rgba(0, 0, 0, 0.1);
}
.header-logo{
    flex: 0 0 auto;
    margin-right: 10px;
    padding-left: 40px;
}
.header-nav{
    display: flex;
    align-items: center;
    margin-left: auto;
    padding-right: 35px;
}
.header-nav-list{
    display: flex;
    height: 80px;
    margin-right: 20px;
}
.header-nav-list-item,
.header-nav-list-item--pulldown{
    height: 100%;
    padding: 0 15px;
}
.header-nav-list-item__link{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100%;
    color: var(--main-black);
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 4px);
    text-align: center;
    word-break: keep-all;
}
@media screen and (min-width:769px){
    .header-nav-list-item__link::after{
        opacity: 0;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--main-green);
        content: "";
        transition: opacity var(--trans-ease);
    }
    .header-nav-list-item:hover .header-nav-list-item__link::after,
    .header-nav-list-item--pulldown:hover .header-nav-list-item__link::after{
        opacity: 1;
    }
    .header-nav-list-item__link{
        transition: all ease .3s;
    }
    .header-nav-list-item:hover .header-nav-list-item__link,
    .header-nav-list-item--pulldown:hover .header-nav-list-item__link{
        transition: all ease .3s;
        color: var(--main-green);
    }
    .header-nav-list--middle:not(.is--active){
        display: none;
        z-index: -99;
    }
    .header-nav-list--middle:not(.is--show){
        opacity: 0;
    }
    .header-nav-list--middle{
        display: flex;
        flex-wrap: wrap;
        position: absolute;
        bottom: -1px;
        transform: translateY(100%);
        left: 0;
        width: 100%;
        padding: 40px calc(50% - 520px) 0;
        overflow: hidden;
        box-shadow: 0 5px 10px -10px rgba(0,0,0,.75);
        background: #fff;
        transition: opacity var(--trans-ease);
    }
    .header-nav-list--middle-item{
        flex: 0 0 220px;
        margin: 0 20px 40px;
    }
    .header-nav-list--middle-item__pic{
        width: 100%;
        height: 120px;
        margin-bottom: 7px;
        overflow: hidden;
        border-radius: 5px;
    }
    .header-nav-list--middle-item__pic img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--trans-ease);
    }
    a:hover .header-nav-list--middle-item__pic img{
        transform: scale(1.2);
    }
    .header-nav-list--middle-item__title{
        font-size: 1.4rem;
        line-height: calc(1em + 4px);
        transition: color var(--trans-ease);
    }
    a:hover .header-nav-list--middle-item__title{
        color: var(--main-green);
    }
}
.header-btn1{
    flex: 0 0 auto;
    min-width: 160px;
    margin: 0 5px;
}
.header-btn1__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    padding: 9px 10px 11px;
    border-radius: 25px;
    background: var(--main-green);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    border: solid 1px var(--main-green);
    transition: all ease .3s;
}
@media screen and (min-width: 768px) {
    .header-btn1__link:hover{
        background: #fff;
        color: var(--main-green);
        border-color: var(--main-green);
        transition: all ease .3s;
    }
}
.header-btn2{
    flex: 0 0 auto;
    min-width: 180px;
    margin: 0 5px;
}
.header-btn2__link{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
    padding: 9px 10px 11px;
    border-radius: 25px;
    background: var(--main-orange);
    color: #fff;
    font-size: 1.6rem;
    font-weight: bold;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    #js-wrapper{
        position: relative;
    }
    #js-wrapper:before{
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        background: rgba(26, 26, 26, 1);
        opacity: 0;
        z-index: 1;
        transition: all ease .3s;
        visibility: hidden;
    }
    #js-wrapper.header-menu--open:before{
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        background: rgba(26, 26, 26, 1);
        opacity: 0.6;
        z-index: 100;
        transition: all ease .3s;
        visibility: visible;
    }
    /* .wrapper.header-menu--open > *:not(.header){
        filter: blur(2px);
    } */
     .header {
        width: 100%;
        position: relative;
        z-index: 101;
        min-height: 80px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 7px 0 0;
        position: fixed;
    }
    .header-wrapper{
        width: 93.75%;
        min-width: inherit;
        height: 50px;
        padding: 8px;
        box-sizing: border-box;
        border: none;
        max-width: inherit;
    }
    .header-logo{
        display: block;
        align-items: center;
        position: relative;
        z-index: 1;
        height: auto;
        margin: 0;
        padding-left: 0;
    }
    .header-logo img{
        width: 155px;
        height: auto;
    }
    .header-nav:not(.is--active),
    .header-nav:not(.is--active) *{
        z-index: -99!important;
        pointer-events: none!important;
    }
    .header-nav:not(.is--show){
        opacity: 0;
    }
    .header-nav{
        flex-direction: column;
        justify-content: stretch;
        align-items: stretch;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: auto!important;
        margin: 0;
        padding: 60px 0 0;
        overflow: auto;
        background : #fff;
        border-radius: 6px;
        box-shadow : 0px 0px 18px rgba(0, 0, 0, 0.1);
        transition: opacity var(--trans-ease);
    }
    .header-nav-list{
        display: block;
        height: auto;
        margin-bottom: 30px;
        padding: 0 10%;
    }
    .header-nav-list-item, 
    .header-nav-list-item--pulldown{
        height: auto;
        padding: 0;
    }
    .header-nav-list-item__link{
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
        color: var(--main-black);
        display: block;
        padding: 10px 0;
        border-bottom: solid 1px var(--bg-darkblue);
        text-align: left;
        border-bottom: solid 1px rgba(255,255,255,0.2);
    }
    .header-nav-list-item:last-child .header-nav-list-item__link{
        border-bottom: none;
    }
    .accordion-btn--sp .header-nav-list-item__link{
        pointer-events: none;
    }
    .accordion-btn--sp .header-nav-list-item__link::after{
        content: none;
    }
    .header-nav .accordion-btn--sp{
        display: block;
        position: relative;
    }
    .header-nav .accordion-btn--sp::after{
        position: absolute;
        top: calc(50% - 5px);
        right: 10px;
        width: 10px;
        height: 10px;
        background: linear-gradient(to top,rgba(255,255,255,0) 0 4px,var(--main-green) 4px 6px,rgba(255,255,255,0) 6px 10px),
        linear-gradient(to right,rgba(255,255,255,0) 0 4px,var(--main-green) 4px 6px,rgba(255,255,255,0) 6px 10px);
        content: "";
        transition: transform var(--trans-ease);
    }
    .header-nav .accordion-btn--sp.accordion--open::after{
        transform: rotate(90deg);
        background: linear-gradient(to right,rgba(255,255,255,0) 0 4px,var(--main-green) 4px 6px,rgba(255,255,255,0) 6px 10px);
    }
    .header-nav-list--middle{
        padding: 12px 10px;
        border-bottom: solid 1px var(--main-gray_border);
    }
    .header-nav-list--middle-item__link{
        display: block;
        position: relative;
        padding: 11px 15px;
    }
    .header-nav-list--middle-item__link::before{
        position: absolute;
        top: calc(.5em + 12px);
        left: -2px;
        transform: rotate(45deg);
        width: 6px;
        height: 6px;
        border-top: solid 2px var(--border-gray);
        border-right: solid 2px var(--border-gray);
        content: '';
    }
    .header-nav-list--middle-item__pic{
        display: none;
    }
    .header-nav-list--middle-item__title{
        font-size: 1.4rem;
        line-height: calc(1em + 4px);
        transition: color var(--trans-ease);
    }
    .header-btn1{
        width: 80%;
        margin: 0 auto 20px;
    }
    .header-btn1__link{
        height: 50px;
    }
    .header-btn2{
        width: var(--inner-width--sp);
        margin: 0 auto 20px;
    }
    .header-tel-bnr{
        width: 100%;
        margin-top: auto;
        border: none;
    }
    .header-tel-bnr__link{
        width: 100%;
        padding-bottom: env(safe-area-inset-bottom);
        border-top: solid 1px var(--bg-darkblue);
    }
    .header-tel-bnr__link img{
        display: block;
        width: 260px;
        margin: 0 auto;
    }
    .header-nav-btn{
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 10px;
        z-index: 1;
        margin: auto;
        width: 36px;
        height: 36px;
        background: linear-gradient(to top, #fff 0 2px, var(--main-green) 2px 10px, #fff 10px) no-repeat center center / 20px 12px,var(--main-green);
        border-radius: 5px;
    }
    .header-nav-btn.menu--open{
        background: var(--main-green);
    }
    .header-nav-btn::before,
    .header-nav-btn::after {
        position: absolute;
        top: 17px;
        left: 8px;
        width: 20px;
        height: 2px;
        background: #fff;
        content: "";
        transition: transform var(--trans-ease);
    }
    .header-nav-btn.menu--open::before{
        transform: rotate(45deg);
    }
    .header-nav-btn.menu--open::after{
        transform: rotate(-45deg);
    }
}
/* header-nav--pulldown */
/*pcのみ*/
@media screen and (min-width:768px){
    .header-nav-list-item--pulldown{
        position: relative;
    }
    .header-nav--pulldown{
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;
        transform: translateY(100%);
        width: 290px;
        padding-top: 5px;
        transition: opacity .3s ease;
        box-sizing: border-box;
    }
    .header-nav--pulldown:not(.is--active){
        display: none;
    }
    .header.is--on_recruit .header-nav--pulldown{
        display: table;
    }
    .header-nav--pulldown:not(.is--show){
        opacity: 0;
    }
    .header.is--on_recruit .header-nav--pulldown{
        opacity: 1;
    }
    .header-nav--pulldown-list{
        background: #fff;
        border-radius: 6px;
        padding: 15px 20px;
        box-sizing: border-box;
        display: block;
        margin: 0 auto;
    }
    .header-nav--pulldown-list-item{
        padding: 5px 0;
        box-sizing: border-box;
    }
    .header-nav--pulldown-list-item__link:hover{
        color: var(--main-green);
        transition: all ease .3s;
    }
}
.header-nav--pulldown-list-item__link{
    display: block;
    align-items: center;
    height: auto;
    padding: 0 15px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: calc(1em + 5px);
    position: relative;
    transition: all ease .3s;
}
.header-nav--pulldown-list-item__link::after {
    position: absolute;
    top: calc(50% - 4px);
    left: 0;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    border-top: solid 2px var(--main-green);
    border-right: solid 2px var(--main-green);
    content: "";
}
/*--- sp ---*/
@media screen and (max-width:768px){
    /* header-nav--pulldown */
    /* .header-nav--pulldown{
        padding-left: 1em;
    } */
    .header-nav--pulldown-list-item__link{
        display: inline-block;
        position: relative;
        padding: 6px 0 7px 15px;
        font-size: 1.4rem;
        line-height: calc(1em + 5px);
    }
}
/*-------------
footer
-------------*/
.footer{
    padding: 50px 0;
    background: #fcf7e1;
    box-sizing: border-box;
    position: relative;
    margin-top: 50px;
}
.footer-main{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    min-height: 235px;
}
.footer-title{
    font-size: 40px;
    font-size: 4.0rem;
    font-weight: bold;
}
.footer-wrapper{
    width: 1000px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
    position: relative;
}
.footer-logo{
    flex: 0 0 168px;
}
.footer-inner{
    flex: 0 0 480px;
}
.footer-inner-main{
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: solid 1px #d9d1c3;
}
.footer-nav-list{
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-nav-list-item{
    line-height: calc(1em + 5px);
}
.footer-nav-list-item__link{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
}
.footer-nav-list-item:nth-child(5){
    clear: both;
}
.footer-address{
    display: block;
    font-size: 1.4rem;
    line-height: calc(1em + 8px);
}
.footer-bottom{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}
.footer-contact--tel{
    flex: 0 0 auto;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    line-height: calc(1em + 8px);
}
.footer-contact--tel__link{
    display: block;
}
.footer-tel__link-head{
    font-size: 1.6rem;
}
.footer-copy{
    font-size: 1.4rem;
    line-height: calc(1em + 5px);
    position: absolute;
    left: 0;
    bottom: 0;
}
.footer-arch-mask {
    position: absolute;
    top: -69px;
    left: 0;
    width: 100%;
    height: 70px;
    /* animation: archMove 4s ease-in-out infinite; */
    z-index: 2;
}
.footer-nav-link{
    display: flex;
    gap: 15px;
}
.footer-nav-link-item a{
    font-size: 13px;
    font-size: 1.3rem;
    text-decoration: underline;
    position: relative;
    padding-left: 12px;
    line-height: calc(1em + 5px);
}
.footer-nav-link-item a::after {
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
    transform: rotate(45deg);
    width: 6px;
    height: 6px;
    border-top: solid 2px var(--main-green);
    border-right: solid 2px var(--main-green);
    content: "";
}
/* footer__pagetop */
.footer__pagetop{
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    width: 50px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    transition: opacity .3s ease;
    border-radius: 50%;
}
.footer__pagetop.is--follow{
    position: fixed;
}
.footer__pagetop.is--follow:not(.is--show){
    opacity: 0;
    pointer-events: none;
}
.footer__pagetop::after{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 11px;
    height: 15px;
    background: url(../images/pagetop-arrow.svg) no-repeat center / contain;
    content: "";
    pointer-events: none;
}
.footer__pagetop-btn{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--main-green);
    font-size: 0;
}
/* sp */
@media screen and (max-width:767px){
    .footer{
        display: block;
        min-height: 0;
        padding: 0 0 30px;
        margin-top: 50px;
    }
    .footer-wrapper {
        width: 81.25%;
        display: block;
        margin: 0 auto;
    }
    .footer-logo{
        width: 160px;
        margin: 0 auto 15px 0;
    }
    .footer-nav-list{
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
        padding: 0;
        gap: 25px;
        row-gap: 20px;
    }
    .footer-nav-list-item{
        float: none;
        flex: 0 1 calc(50% - 12.5px);
        margin-right: 0;
        padding-bottom: 0;
    }
    .footer-nav-list-item:first-child{
        flex: 0 1 100%;
    }
    .footer-address{
        font-size: 13px;
        font-size: 1.3rem;
    }
    .footer-bottom{
        display: block;
    }
    .footer-contact--tel{
        font-size: 13px;
        font-size: 1.3rem;
    }
    .footer-contact--tel__link{
        display: inline-block;
    }
    .footer-tel__link-head{
        font-size: 1.6rem;
    }
    .footer-contact--mail{
        width: 42px;
        margin: 0 auto 25px;
    }
    .footer-contact--mail__link{
        padding: 10px;
    }
    .footer-copy{
        position: static;
        display: block;
        margin-top: 30px;
        font-size: 14px;
        font-size: 1.4rem;
    }
    .footer-arch-mask {
        top: -70px;
        height: 70px;
    }
    .footer-main{
        min-height: inherit;
        display: block;
        margin-bottom: 30px;
    }
    .footer-title {
        font-size: 29px;
        font-size: 2.9rem;
        font-weight: bold;
    }
    .footer-nav-link-item a::after {
        top: calc(50% - 1px);
    }
        /* footer__pagetop */
    .footer__pagetop{
        position: absolute;
        right: 10px;
        top: -45px;
    }
    .footer__pagetop.is--show{
        right: 10px;
        bottom: 10px;
        top: auto;
        bottom: 10px;
    }
    .footer__pagetop.is--potion{
        position: absolute;
        right: 10px;
        top: -45px;
        bottom: auto;
    }
    .footer__pagetop::after{
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
    }
    .footer__pagetop-btn{
        transform: none;
    }
}
/*-------------
top-img
-------------*/
.top-main{
    position: relative;
}
.top-img{
    width: 100%;
    height: 750px;
    position: relative;
    max-height: 750px;
    overflow: hidden;
    margin: 0 auto;
    background: url(../images/top-img.jpg) no-repeat bottom center;
    background-size: cover;
    position: relative;
    container-type: inline-size;
}
.top-img:before{
    content: "";
    background: rgba(255,255,255,0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.top-main-box{
    position: absolute;
    width: 1120px;
    height: 500px;
    left: 0;
    right: 0;
    top: 160px;
    margin: auto;
    z-index: 2;
    text-align: right;
}
.top-main-title{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    display: table;
    z-index: 2;
}
.top-main-title-main{
    font-size: 4.8rem;
    font-weight: bold;
    color: var(--font-color);
    position: relative;
}
.top-main-title-main span{
    display: table;
    background: #fff;
    line-height: 1em;
    padding: 5px 0 10px 10px;
}
.top-main-title-main span:not(:last-child){
    margin-bottom: 20px;
}
.top-main-img{
    width: 800px;
    height: 500px;
    display: block;
    margin: 0 0 0 auto;
    box-shadow: rgba(0, 0, 0, 0.2) 15px 10px 25px -5px;
}
/* WebPに対応していれば上書き */
@supports (background-image: url("image.webp")) {
    .top-img {
        background-image: url(../images/top-img.webp);
    }
}
.top-img-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.top-img-arch-mask{
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 50px;
    /* animation: archMove 4s ease-in-out infinite; */
    z-index: 2;
}
/* sp */
@media screen and (max-width:768px){
    .top-img{
        width: 100%;
        height: auto;
        max-height: inherit;
        aspect-ratio: 8 / 8;
        overflow: hidden;
        margin: 0 auto;
        background: url(../images/top-img@sp.jpg) no-repeat top;
        background-size: cover;
        position: relative;
        container-type: inherit;
    }
    /* WebPに対応していれば上書き */
    @supports (background-image: url("image.webp")) {
        .top-img {
            background-image: url(../images/top-img@sp.webp);
        }
    }
    .top-main{
        position: relative;
    }
    .top-main-box{
        width: 100%;
        height: auto;
        aspect-ratio: 870 / 640;
        top: 57px;
        bottom: 0;
        margin: auto;
    }
    .top-main-img {
        width: var(--inner-width);
        height: auto;
        aspect-ratio: 870 / 640;
        display: block;
        margin: 0 auto;
        box-shadow: rgba(0, 0, 0, 0.2) 15px 10px 25px -5px;
    }
    .top-main-title {
        display: none!important;
        position: absolute;
        top: auto;
        left: var(--inner-sidespace--sp);
        bottom: 56%;
        margin: auto;
        display: table;
        z-index: 2;
    }
    .top-main-title-main {
        font-size: 2.6rem;
        font-weight: bold;
        color: var(--font-color);
        position: relative;
    }
    .top-main-title-main span:not(:last-child) {
        margin-bottom: 10px;
    }
}
/*-------------
top-business
-------------*/
.top-business{
    position: relative;
    margin-bottom: 100px;
}
.top-sec-title{
    max-width: 1200px;
    margin: 0 auto 60px;
}
.top-sec-title-main{
    font-size: 4.8rem;
    font-weight: bold;
    color: var(--font-color);
    position: relative;
}
.top-sec-title-main::before {
    color: var(--main-green);
    font-family: var(--font-en);
    font-weight: 700;
    content: attr(data-pagetitle-en);
    font-size: 2.0rem;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: .04em;
    padding-left: 20px;
}
.top-sec-title-main:after {
    content: "";
    background: var(--main-green);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 0;
    margin: auto;
    border-radius: 50%;
}
.top-business-arch-mask{
    position: absolute;
    top: -110px;
    left: 0;
    width: 100%;
    height: 230px;
    /* animation: archMove 4s ease-in-out infinite; */
    z-index: 0;
}
.top-business .top-sec-title{
    margin-top: -120px;
    position: relative;
    z-index: 1;
}
.top-business-link{
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
    gap: 3px;
}
.top-business-link-item{
    width: calc((100% - 6px) / 3);
}
.top-business-link img{
    width: 100%;
    height: auto;
    transition: all ease .4s;
}
.top-business-link-item{
    position: relative;
    overflow: hidden;
}
/*pcのみ*/
@media screen and (min-width:768px){
    .top-business-link-item a:hover img{
        transform: scale(115%);
        transition: all ease .4s;
    }
}
.top-business-link-item-box{
    color: #fff;
    width: 100%;
    padding: 40px 40px 20px;
    box-sizing: border-box;
    min-height: 180px;
    background : linear-gradient(0deg, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
}
.top-business-link-item-box-title{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.top-business-link-item-box-title:after{
    content: "";
    background: url(../images/icon_link.svg) no-repeat;
    background-size: contain;
    width: 16px;
    height: 11px;
    margin-top: 3px;
    margin-left: 10px;
}
.top-business-link-item-box p{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
/* sp */
@media screen and (max-width:768px){
    .top-business{
        margin-bottom: 40px;
    }
    .top-business-arch-mask{
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 70px;
        /* animation: archMove 4s ease-in-out infinite; */
        z-index: 0;
    }
    .top-business .top-sec-title {
        width: var(--inner-width);
        margin-top: -20px;
        position: relative;
        z-index: 1;
    }
    .top-sec-title{
        margin-bottom: 20px;
    }
    .top-sec-title-main{
        font-size: 28px;
        font-size: 2.8rem;
    }
    .top-sec-title-main::before {
        color: var(--main-green);
        font-size: 14px;
        font-size: 1.4rem;
        display: block;
        margin-bottom: 15px;
        line-height: 1;
        letter-spacing: .04em;
        padding-left: 15px;
    }
    .top-sec-title-main:after {
        content: "";
        background: var(--main-green);
        width: 8px;
        height: 8px;
        position: absolute;
        top: 3px;
        left: 0;
        margin: auto;
        border-radius: 50%;
    }
    .top-business-link {
        display: flex;
        flex-flow: column wrap;
        gap: 2px;
    }
    .top-business-link-item {
        width: 100%;
    }
    .top-business-link-item-box {
        color: #fff;
        width: 100%;
        padding: 30px var(--inner-sidespace--sp) 20px;
        box-sizing: border-box;
        min-height: 120px;
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 25%, rgba(0, 0, 0, 0) 100%);
        position: absolute;
        left: 0;
        bottom: 0;
    }
    .top-business-link-item-box-title {
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .top-business-link-item-box p {
        font-size: 13px;
        font-size: 1.3rem;
        line-height: calc(1em + 7px);
    }
}
/*-------------
top-news
-------------*/
.top-news{
    position: relative;
    margin-bottom: 150px;
}
.top-news-wrapper{
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    position: relative;
    min-height: 215px;
}
.top-news-wrapper:after{
    content: none;
}
.top-news .top-sec-title{
    margin: 0;
}
.top-news-title-main::before{
    display: block;
    margin-bottom: 8px;
    color: var(--main-lightgreen);
    font-family: var(--font-en);
    font-size: 2.4rem;
    font-weight: bold;
    line-height: calc(1em + 7px);
    content: attr(data-title-en);
}
.top-news .top-button{
    position: absolute;
    left: 0;
    bottom: 0;
    top: 140px;
}
.top-button a{
    width: 200px;
    background: var(--main-green);
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    display: block;
    padding: 15px;
    box-sizing: border-box;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    border-radius: 30px;
    position: relative;
    border: solid 1px var(--main-green);
    transition: all ease .3s;
}
.top-button a:after {
    content: "";
    background: url(../images/icon_link.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: all ease .3s;
}
@media screen and (min-width: 768px) {
    .top-button a:hover{
        background: #fff;
        color: var(--main-green);
        border-color: var(--main-green);
    }
    .top-button a:hover:after {
        background: url(../images/icon_btn_link_green.svg) no-repeat;
        transform: rotate(180deg);
        transition: all ease .3s;
    }
}
.top-news-list{
    flex: 0 1 840px;
}
.top-news-list__item{
    display: flex;
    padding: 20px 0;
    box-sizing: border-box;
    align-items: flex-start;
}
.top-news-list__item:not(:last-of-type){
    border-bottom: solid 1px #cccccc;
}
.top-news-list__title{
    color: var(--main-lightgreen);
    min-width: 120px;
    flex: 0 0 auto;
    display: flex;
    margin-right: 15px;
    align-items: center;
}
.top-news-list__text{
    flex: 0 1 100%;
    line-height: 1.8;
}
.top-news__category{
    color: #fff;
    background: var(--main-lightgreen);
    padding: 2px 10px;
    box-sizing: border-box;
    margin-left: 5px;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .top-news:before{
        content: none;
    }
    .top-news-wrapper{
        display: block;
        width: var(--inner-width);
        margin: 0 auto;
        min-height: inherit;
    }
    .top-news .top-sec-title{
        margin-bottom: 30px;
    }
    .top-button{
        text-align: center;
    }
    .top-button a{
        width: 100%;
        margin: 20px auto 0;
    }
    .top-news-title-main{
        width: 100%;
        margin: 0 auto;
        font-size: 3.0rem;
    }
    .top-news-title-main::before{
        font-size: 1.8rem;
    }
    .top-news-list__item{
        display: block;
    }
    .top-news-list__title{
        width: 100%;
        justify-content: flex-start;
        padding: 20px 0 5px;
    }
    .top-news-list__text{
        line-height: 1.5;
    }
    .top-button{
        width: 100%;
    }
    .top-news .top-button{
        width: 100%;
        position: static;
    }
}
/*-------------
news-article-list
-------------*/
.news-article-list{
    border-bottom: solid 1px var(--main-gray_border);
}
.news-article-list-item{
    border-top: solid 1px var(--main-gray_border);
}
.news-article-list-item-inner{
    display: block;
    padding: 20px 80px 20px 20px;
    position: relative;
}
.news-article-list-item-inner:before{
    content: "";
    background: url(../images/icon_link_green.svg) no-repeat;
    background-size: contain;
    width: 10px;
    height: 8px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 35px;
    margin: auto;
    z-index: 1;
    transition: all ease .3s;
}
.news-article-list-item-inner:after{
    content: "";
    background: #fff;
    border: solid 1px #e6e6e6;
    box-sizing: border-box;
    width: 42px;
    height: 42px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    border-radius: 50%;
    transition: all ease .3s;
}
/*pcのみ*/
@media screen and (min-width:768px){
    .news-article-list-item-inner:hover:before{
        content: "";
        background: url(../images/icon_link_white.svg) no-repeat;
        transition: all ease .3s;
    }
    .news-article-list-item-inner:hover:after{
        content: "";
        background: #269926;
        border: solid 1px #269926;
        box-sizing: border-box;
        transition: all ease .3s;
    }
    .top-button a{
        opacity: 1;
        transition: all ease .3s;
    }
    .top-button a:hover{
        opacity: 0.8;
        transition: all ease .3s;
    }
}
.news-article-list-item-head{
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    flex: 0 0 auto;
    max-width: 100%;
    margin: 0 20px 10px 0;
    padding-top: 2px;
    gap: 5px;
}
.news-article-list-item__date{
    font-size: 16px;
    font-size: 1.6rem;
    flex: 0 0 auto;
    min-width: 94px;
    padding-right: 10px;
    font-family: var(--font-en);
    font-weight: 600;
    color: #999999;
    line-height: 1;
    letter-spacing: .08em;
}
.news-article-list-item__cate{
    flex: 0 1 auto;
    min-width: 120px;
    padding: 5px 5px 8px;
    overflow: hidden;
    background: var(--main-lightgreen);
    color: var(--main-green);
    border-radius: 15px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 2px);
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
}
.news-article-list-item__title{
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 9px;
    line-height: calc(1em + 8px);
    transition: all ease .3s;
}
a:hover .news-article-list-item__title{
    text-decoration: underline;
    transition: all ease .3s;
}

/*--- sp ---*/
@media screen and (max-width:768px){
    .news-article-list-item-inner{
        flex-wrap: wrap;
        padding: 20px 0;
    }
    .news-article-list-item-head{
        max-width: 100%;
    }
    .news-article-list-item-inner:before,
    .news-article-list-item-inner:after{
        content: none;
    }
    .news-article-list-item__date {
        font-size: 14px;
        font-size: 1.4rem;
        flex: 0 0 auto;
        min-width: inherit;
    }
    .news-article-list-item__cate{
        font-size: 13px;
        font-size: 1.3rem;
    }
}

/*-------------
top-about
-------------*/
@keyframes clipReveal {
    to {
    clip-path: inset(0 0% 0 0);
    }
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.top-about{
    background : linear-gradient(0deg, rgba(252, 247, 225, 1) 55%, rgba(252, 247, 225, 0) 83%);
    padding-top: 80px;
    position: relative;
    padding-bottom: 300px;
}
.top-about-main{
    position: relative;
    z-index: 1;
    width: 1150px;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-between;
}
.top-about-main-box{
    width: 1000px;
    margin: 0 auto;
}
.top-about-main-box-text{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: calc(1em + 24px);
    margin-bottom: 40px;
    position: relative;
}
.top-about-main-box-text:before{
    color: var(--main-green);
    font-family: var(--font-en);
    font-weight: 700;
    content: attr(data-pagetitle-en);
    font-size: 2.0rem;
    display: block;
    margin-bottom: 15px;
    line-height: 1;
    letter-spacing: .04em;
    padding-left: 20px;
}
.top-about-main-box-text:after {
    content: "";
    background: var(--main-green);
    width: 10px;
    height: 10px;
    position: absolute;
    top: 5px;
    left: 0;
    margin: auto;
    border-radius: 50%;
}
.top-about-main .top-button a{
    margin: 0 0 0 auto;
}
.top-about-list{
    position: relative;
}
.top-about-list-pho{
    width: 100%;
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}
.top-about-list-pho-sec1{
    width: calc(51.48% - 20px);
}
.top-about-list-pho-sec1 img,
.top-about-list-pho-sec2 img{
    width: 100%;
    height: auto;
}
.top-about-list-pho-sec1 img{
    border-radius: 0 20px 20px 0;
}
.top-about-list-pho-sec2 img{
    border-radius: 20px;
}
.top-about-list-pho-sec2{
    width: calc(45.83% - 20px);
    display: flex;
    gap: 20px;
    margin-top: 50px;
}
.top-about-list-pho-sec2 picture{
    width: calc(50% - 20px);
}
.top-about-list-pho-sec2 picture:first-child{
    width: 50%;
    margin-top: 30px;
}
.top-about-list-pho-sec1 picture{
    opacity: 0;
    transition: transform .8s ease 1s,opacity .8s ease 1s;
    transform: translateY(50px);
}
.top-about-list-pho-sec2 picture:first-child{
    opacity: 0;
    transition: transform .8s ease 1.3s,opacity .8s ease 1.3s;
    transform: translateY(50px);
}
.top-about-list-pho-sec2 picture:last-child{
    opacity: 0;
    transition: transform .8s ease 1.6s,opacity .8s ease 1.6s;
    transform: translateY(50px);
}
.effected .top-about-list-pho-sec1 picture,
.effected .top-about-list-pho-sec2 picture:first-child,
.effected .top-about-list-pho-sec2 picture:last-child{
    opacity: 1;
    transform: none;
}
.top-about .effected .delay-1 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}
.top-about .effected .delay-2 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 2.3s;
}
.top-about .effected .delay-3 {
    animation: float 3s ease-in-out infinite;
    animation-delay: 2.6s;
}
.top-about-back-wrapper{
    position: absolute;
    width: 100%;
    top: -240px;
    left: 0;
    z-index: 0;
}
.top-about-back {
    clip-path: inset(0 100% 0 0); /* 初期状態：右100%隠す */
}
.effected .top-about-back{
    animation: clipReveal 1s ease-out forwards;
}
/* sp */
@media screen and (max-width:768px){
    @keyframes float {
        0% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
        100% { transform: translateY(0); }
    }
    .top-about {
        padding-top: 10px;
        position: relative;
        padding-bottom: 110px;
    }
    .top-about-main {
        position: relative;
        z-index: 1;
        width: var(--inner-width);
        margin: 0 auto 10px;
        display: block;
        justify-content: space-between;
    }
    .top-about-main-box {
        width: 100%;
        margin-bottom: 30px;
    }
    .top-about-main-box-text {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: calc(1em + 11px);
        margin-bottom: 20px;
    }
    .top-about-main-box-text:before,
    .top-about-main-box-text:after{
        content: none;
    }
    .top-about-list-pho {
        width: 100%;
        display: block;
    }
    .top-about-list-pho-sec1 {
        width: var(--inner-width);
        margin: 0 auto 10px;
    }
    .top-about-list-pho-sec1 img ,
    .top-about-list-pho-sec2 img {
        border-radius: 5px;
    }
    .top-about-list-pho-sec2 {
        width: var(--inner-width);
        display: flex;
        gap: 10px;
        margin: 0 auto;
    }
    .top-about-list-pho-sec2 picture:first-child ,
    .top-about-list-pho-sec2 picture {
        width: calc((100% - 10px) / 2);
        margin-top: 0;
    }
    .top-about-back-wrapper {
        position: absolute;
        width: 100%;
        top: auto;
        left: 0;
        bottom: 40px;
        z-index: 0;
    }
}
/*--------------------
page-header
---------------------*/
.page-header{
    width: 100%;
    min-height: 280px;
    background : linear-gradient(0deg, rgba(252, 247, 225, 1) 0%, rgba(252, 247, 225, 0) 100%);
    position: relative;
    padding-top: 140px;
    box-sizing: border-box;
    overflow: hidden;
}
.page-header-arch-mask{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    /* animation: archMove 4s ease-in-out infinite; */
    z-index: 2;
}
#page-header-bg{
    width: 950px;
    position: absolute;
    bottom: 20px;
    right: 0;
    opacity: 0.2;
}
#page-header-bg {
    clip-path: inset(0 0 0 100%);
}
.effected #page-header-bg{
    animation: clipReveal 1s ease-out forwards;
}
.page-header-wrapper{
    width: 100%;
    max-width: 1440px;
    padding: 0 40px;
    box-sizing: border-box;
    margin: 0 auto;
}
.page-header-main{
    padding: 0 80px 70px;
    box-sizing: border-box;
}
.page-header:not(.ver2) .page-header__title{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 500;
}
.page-header:not(.ver2) .page-header__title::before {
    color: var(--main-green);
    font-family: var(--font-en);
    font-size: 80px;
    font-size: 8.0rem;
    font-weight: 700;
    content: attr(data-pagetitle-en);
    display: block;
    line-height: 1;
    margin-bottom: 20px;
}
.page-header.ver2 .page-header__title{
    font-size: 4.8rem;
    font-weight: bold;
    color: var(--font-color);
    position: relative;
}
.page-header.ver2 .page-header__title::before {
    color: var(--main-green);
    font-family: var(--font-en);
    font-weight: 700;
    content: attr(data-pagetitle-en);
    font-size: 2.4rem;
    display: block;
    line-height: 1;
    letter-spacing: .04em;
    padding-left: 20px;
}
.page-header.ver2 .page-header__title:after {
    content: "";
    background: var(--main-green2);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 7px;
    left: 0;
    margin: auto;
    border-radius: 50%;
}
.page-header__text{
    color: #66635c;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
    margin-top: 15px;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .page-header {
        width: 100%;
        min-height: inherit;
        position: relative;
        padding-top: 85px;
        box-sizing: border-box;
        overflow: hidden;
    }
    #page-header-bg {
        width: 100%;
        bottom: 20px;
    }
    .page-header-wrapper {
        width: 100%;
        max-width: inherit;
        padding: 0 var(--inner-sidespace--sp) 55px;
        box-sizing: border-box;
        margin: 0 auto;
    }
    .page-header-main {
        padding: 0;
        box-sizing: border-box;
    }
    .page-header:not(.ver2) .page-header__title {
        font-size: 1.6px;
        font-size: 1.6rem;
        font-weight: 500;
    }
    .page-header:not(.ver2) .page-header__title::before {
        color: var(--main-green);
        font-family: var(--font-en);
        font-size: 40px;
        font-size: 4.0rem;
        font-weight: 700;
        content: attr(data-pagetitle-en);
        display: block;
        line-height: 1;
        margin-bottom: 15px;
    }
    .page-header.ver2 .page-header__title{
        font-size: 3.0rem;
        font-weight: bold;
        color: var(--font-color);
        position: relative;
    }
    .page-header.ver2 .page-header__title::before {
        color: var(--main-green);
        font-family: var(--font-en);
        font-weight: 700;
        content: attr(data-pagetitle-en);
        font-size: 1.5rem;
        display: block;
        line-height: 1;
        letter-spacing: .04em;
        padding-left: 15px;
    }
    .page-header.ver2 .page-header__title:after {
        content: "";
        background: var(--main-green2);
        width: 9px;
        height: 9px;
        position: absolute;
        top: 4px;
        left: 0;
        margin: auto;
        border-radius: 50%;
    }
    .page-header__text{
        font-size: 13px;
        font-size: 1.3rem;
        line-height: calc(1em + 7px);
        margin-top: 10px;
    }
}
/*-------------
breadcrumbs
-------------*/
.breadcrumbs{
    width: 100%;
    overflow: hidden;
    word-break: keep-all;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-bottom: 20px;
}
.breadcrumbs-item{
    display: inline;
    font-size: 0;
}
.breadcrumbs-item__link{
    color: #999999;
}
.breadcrumbs-item__link:not(:hover){
    color: #999999;
}
.breadcrumbs-item__name{
    position: relative;
    font-size: 1.4rem;
}
.breadcrumbs-item:not(:last-child) .breadcrumbs-item__name{
    margin-right: 20px;
}
.breadcrumbs-item:not(:last-child) .breadcrumbs-item__name::after{
    display: inline-block;
    position: absolute;
    top: 8px;
    right: -12px;
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--main-black);
    border-top: 2px solid var(--main-black);
    content: "";
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .breadcrumbs{
        margin-bottom: 10px;
    }
}
/*--------------
contents
---------------*/
#contents{
    padding: 20px 0 160px;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    #contents{
        padding: 30px 0 60px;
    }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    border: 0;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
/*-----------------
news
-------------------*/
.news-article{
    width: 1000px;
    margin: 0 auto;
}
/*--- sp ---*/
@media screen and (max-width:768px){
    .news-article{
        width: var(--inner-width);
        margin: 0 auto;
    }
}
/***------------
pager
------------***/
#pager{
	width: 100%;
	position: relative;
	padding: 0 60px;
	box-sizing: border-box;
    margin-top: 40px;
}
#pager .pager-list{
	display: flex;
	align-items: center;
	justify-content: center;
}
#pager .pager-list li{
	width: 50px;
	height: 50px;
	margin: 0 5px;
	border-radius: 50%;
	background: #fff;
	border: solid 1px var(--main-green);
}
#pager .pager-list li a{
	color: var(--main-green);
	font-size: 1.8rem;
    font-family: var(--font-en);
    font-weight: 600;
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
#pager .pager-list li.current{
	background: var(--main-green);
    border-color: var(--main-green);
}
#pager .pager-list li.current a{
	color: #fff;
	pointer-events: none;
}
#pager .prev,
#pager .next{
	background: #e6e6e6!important;
	width: 50px;
	height: 50px;
	border: solid 1px #e6e6e6!important;
	box-sizing: border-box;
}
#pager .prev a,
#pager .next a{
    color: var(--main-black);
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
#pager .prev{
	margin-right: 30px!important;
}
#pager .prev a:before{
	content: "";
	border-right: 2px solid var(--main-black);
  border-top: 2px solid var(--main-black);
  width: 8px;
  height: 8px;
  transform: rotate(-135deg);
}
#pager .next{
	margin-left: 30px!important;
}
#pager .next a:before{
	content: "";
	border-right: 2px solid var(--main-black);
  border-top: 2px solid var(--main-black);
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
}
#pager .prev span,
#pager .next span{
    display: none;
}
/*pcのみ*/
@media screen and (min-width:768px){
    #pager .pager-list li:not(.current){
        transition: all ease .3s;
    }
    #pager .pager-list li:not(.current):hover{
        transition: all ease .3s;
        background: #e9f5e9;
        border-radius: 50%;
    }
}
/* sp */
@media screen and (max-width:767px){
    #pager{
        width: 100%;
        position: relative;
        padding: 0;
        box-sizing: border-box;
        margin: 30px auto 0;
    }
    #pager .pager-list{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    #pager .pager-list li{
        box-sizing: border-box;
    }
}
/***------------
news-detail
------------***/
.news-time{
    max-width: 960px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
}
.news-detail-main{
	max-width: 960px;
    box-sizing: border-box;
	margin: 0 auto;
    padding-bottom: 50px;
    border-bottom: solid 1px var(--main-gray_border);
}
.news-detail-main__pho{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 30px;
}
.news-detail-main__pho img{
	width: 100%;
	max-width: 600px;
}
.news-detail-main__pho > div:nth-of-type(2){
	margin-left: 16px;
}
.news-detail-main__body{
	color: var(--main-black);
	font-size: 14px;
	font-size: 1.4rem;
	line-height: calc(1em + 11px);
	margin-bottom: 30px;
}
.news-detail-main__body p:not(:last-of-type){
    margin-bottom: 20px;
}
.news-detail-main__link{
	margin-top: 40px;
	background: #fcf9ef;
	border-radius: 10px;
	padding: 30px 40px;
	box-sizing: border-box;
}
.news-detail-main__link li{
	padding: 5px 0 5px 25px;
	box-sizing: border-box;
	position: relative;
}
.news-detail-main__link li a{
	color: #333333;
}
.news-detail-main__link li a:not(:hover){
    text-decoration: underline;
}
.news-detail-main__link li:before{
	content: "";
	width: 18px;
	height: 18px;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.news-detail-main__link li.file:before{
	background: url('../images/icon_file.svg') no-repeat;
	background-size: cover;
}
.news-detail-main__link li._self:before{
	background: url('../images/icon_naibu.svg') no-repeat;
	background-size: cover;
}
.news-detail-main__link li._blank:before{
	background: url('../images/icon_gaibu.svg') no-repeat;
	background-size: cover;
}
.back-btn{
	width: 240px;
	margin:50px auto 0;
}
.back-btn a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    border-radius: 27px;
    border: solid 1px var(--border-gray);
    position: relative;
}
.back-btn a:before{
    content: "";
    background: url(../images/icon_btn_link_green.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
}
/*pcのみ*/
@media screen and (min-width:768px){
    .back-btn a,
    .back-btn a:before{
        transition: all ease .3s;
    }
    .back-btn a:hover{
        background: var(--main-green);
        color: #fff;
        transition: all ease .3s;
    }
    .back-btn a:hover:before{
        background: url(../images/icon_link.svg) no-repeat;
        transform: rotate(-180deg);
        transition: all ease .3s;
    }
}
/* sp */
@media screen and (max-width:768px){
    #contents.news{
        width: var(--inner-width);
        margin: 0 auto;
    }
	.news-detail-main{
		margin-bottom: 0;
        padding-bottom: 30px;
	}
	.news-detail-main__pho{
		display: block;
	}
	.news-detail-main__pho img{
		width: 100%;
		max-width: inherit;
	}
	.news-detail-main__pho > div:nth-of-type(2){
		margin-left: 0;
	}
	.news-detail-main__pho > div:not(:last-of-type){
		margin-bottom: 10px;
	}
	.news-detail-main__body{
		font-size: 14px;
		font-size: 1.4rem;
		margin-bottom: 20px;
	}
	.news-detail-main__link{
		margin-top: 20px;
		padding: 10px 15px;
	}
	.news-detail-main__link li{
		padding: 8px 0 8px 21px;
	}
	.news-detail-main__link li a{
		font-size: 1.4rem;
	}
	.news-detail-main__link li:before{
		content: "";
		width: 16px;
		height: 16px;
	}
	.back-btn{
		width: 82.75%;
		margin: 30px auto 0;
	}
    .back-btn a {
        height: 50px;
        border-radius: 25px;
    }
}
/***------------
company
------------***/
#contents.company{
    width: 1000px;
    margin: 0 auto;
}
.company-post{
    line-height: calc(1em + 8px);
    margin-bottom: 20px;
}
.company-map-link{
    margin-bottom: 15px;
}
.company-map-link a{
    font-family: var(--font-en);
    font-weight: normal;
    position: relative;
}
.company-map-link a::before {
    content: "";
    width: 10px;
    height: 8px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -30px;
    z-index: 1;
    background: url(../images/icon_link_green.svg) 0% 0% / contain no-repeat;
    margin: auto;
    transition: all ease .3s;
}
.company-map-link a::after {
    content: "";
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: -40px;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(230, 230, 230);
    border-image: initial;
    margin: auto;
    border-radius: 50%;
    transition: all ease .3s;
}
/*pcのみ*/
@media screen and (min-width:768px){
    .company-map-link a:hover:before{
        content: "";
        background: url(../images/icon_link_white.svg) no-repeat;
        transition: all ease .3s;
    }
    .company-map-link a:hover:after{
        content: "";
        background: #269926;
        border: solid 1px #269926;
        box-sizing: border-box;
        transition: all ease .3s;
    }
    .company-post{
        line-height: calc(1em + 7px);
        margin-bottom: 15px;
    }
}
/* sp */
@media screen and (max-width:768px){
    #contents.company{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .company-map iframe{
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}
/*-------------
btn
--------------*/
.btn-link1{
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--main-black);
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    padding: 0 25px;
    border: solid 1px var(--main-gray_border);
    border-radius: 27px;
    box-sizing: border-box;
    background: #fff;
    transition: all ease .3s;
    position: relative;
}
.btn-link1:after {
    content: "";
    background: url(../images/icon_btn_link_green.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    transform: rotate(-180deg);
    transition: all ease .3s;
}
@media screen and (min-width: 768px) {
    .btn-link1:hover{
        background: var(--main-green);
        color: #fff;
        border-color: var(--main-green);
    }
    .btn-link1:hover:after {
        background: url(../images/icon_link.svg) no-repeat;
        transform: rotate(0);
        transition: all ease .3s;
    }
}
/* sp */
@media screen and (max-width:768px){
    .btn-link1{
    font-size: 14px;
    font-size: 1.4rem;
}
}
/*-------------
tb1
--------------*/
.tb1{
    width: 100%;
    border-top: solid 1px var(--main-gray_border);
}
.tb1 tr{
    border-bottom: solid 1px var(--main-gray_border);
}
.tb1 tr th{
    width: 240px;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--main-green);
    padding: 24px 0;
    box-sizing: border-box;
}
.tb1 tr td{
    font-size: 16px;
    font-size: 1.6rem;
    padding: 24px 0 24px 20px;
    box-sizing: border-box;
    line-height: calc(1em + 12px);
}
/* sp */
@media screen and (max-width:768px){
    .tb1 tr th{
        width: 100%;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: bold;
        color: var(--main-green);
        padding: 13px 0 3px;
        box-sizing: border-box;
        display: block;
    }
    .tb1 tr td{
        width: 100%;
        font-size: 14px;
        font-size: 1.4rem;
        display: block;
        padding: 3px 0 13px 0;
        box-sizing: border-box;
        line-height: calc(1em + 7px);
    }
}
/***------------
business
------------***/
#contents.business{
    width: 1000px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.business--items{
    display: flex;
    gap: 40px;
    justify-content: space-between;
    padding: 30px 0;
    box-sizing: border-box;
    border-top: solid 1px var(--main-gray_border);
}
.business--items:first-child{
    padding-top: 0;
    border-top: none;
}
.business--items:last-of-type{
    padding-bottom: 0;
}
.business--items-img img{
    border-radius: 10px;
}
.business--items-info-title{
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.business--items-info-title small{
    font-size: 24px;
    font-size: 2.4rem;
    display: block;
}
.business--items--info-text{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.business--items-info-btn{
    margin-top: 20px;
    width: 200px;
    height: 54px;
}
.business--items-info-btn a{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--main-black);
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 0 25px;
    border: solid 1px var(--main-gray_border);
    border-radius: 27px;
    box-sizing: border-box;
    background: #fff;
    transition: all ease .3s;
    position: relative;
}
.business--items-info-btn a:after {
    content: "";
    background: url(../images/icon_btn_link_green.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    transform: rotate(-180deg);
    transition: all ease .3s;
}
@media screen and (min-width: 768px) {
    .business--items-info-btn a:hover{
        background: var(--main-green);
        color: #fff;
        border-color: var(--main-green);
    }
    .business--items-info-btn a:hover:after {
        background: url(../images/icon_link.svg) no-repeat;
        transform: rotate(0);
        transition: all ease .3s;
    }
}
/* sp */
@media screen and (max-width:768px){
    #contents.business{
        width: var(--inner-width);
        margin: 0 auto;
        padding-bottom: 70px;
    }
    .business--items {
        display: flex;
        flex-flow: column-reverse;
        gap: 30px;
    }
    .business--items-info-title {
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: bold;
        margin-bottom: 20px;
    }
    .business--items-info-title small {
        font-size: 16px;
        font-size: 1.6rem;
        display: block;
    }
    .business--items--info-text{
        font-size: 14px;
        font-size: 1.4rem;
        line-height: calc(1em + 11px);
    }
    .business--items-info-btn {
        width: 100%;
        height: 50px;
    }
    .business--items-info-btn a{
        font-size: 14px;
        font-size: 1.4rem;
        justify-content: center;
    }
}
/*-------------
contact
-------------*/
#contents.contact{
    width: 840px;
    margin: 0 auto;
}
.contact-main--text{
    color: var(--main-black);
    line-height: calc(1em + 10px);
    padding-bottom: 30px;
    border-bottom: solid 1px var(--main-gray_border);
}
.contact-table{
    width: 100%;
    margin: 0 auto 30px;
}
.contact-table tr{
    border-bottom: solid 1px var(--main-gray_border);
}
.contact-table tr.pt-check{
    border-bottom: none;
}
.contact-table tr th {
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--main-black);
    font-size: 1.6rem;
    font-weight: bold;
    padding: 25px 0 5px;
    box-sizing: border-box;
    position: relative;
}
.contact-table tr th.required:after {
    content: "必須";
    align-items: center;
    background: var(--main-green);
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 700;
    height: 20px;
    justify-content: center;
    line-height: 1;
    margin-left: 8px;
    padding-bottom: 2px;
    width: 36px;
}
.contact-table tr th:before {
    content: "";
    background: #fff;
    width: 10px;
    height: 1px;
    position: absolute;
    top: -1px;
    right: 0;
}
.contact-table tr td {
    display: block;
    width: 100%;
    color: var(--font-color);
    padding: 5px 0 25px;
    box-sizing: border-box;
    line-height: calc(1em + 10px);
}
.contact-table .inquery-radio-flex {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}
.contact-table .inquery-radio-flex li {
    flex: 0 1 200px;
}
.contact-table input[type=text],
.contact-table input[type=tel],
.contact-table input[type=email]{
    background: #fff;
    border-radius: 5px;
    height: 54px;
    padding: 5px 10px;
    border: solid 1px var(--border-gray);
    box-sizing: border-box;
    width: 100%;
}
.contact-tb-check{
    width: 100%;
    font-size: 15px;
    font-size: 1.5rem;
    font-weight: normal;
}
.contact-table input[type=checkbox] {
    display: none;
}
.contact-table input[type=checkbox]+label {
    background: #fff;
    border: solid 1px var(--main-gray_border);
    min-height: 72px;
    padding: 10px 12px 10px 40px;
    border-radius: 5px;
    box-sizing: border-box;
    line-height: 1.2;
    display: flex;
    align-items: center;
    transition: all .1s ease 0s;
    cursor: pointer;
    position: relative;
}
.contact-tb-check label:after {
    content: "必須";
    align-items: center;
    background: var(--main-green);
    border-radius: 3px;
    color: #fff;
    display: inline-flex;
    font-size: 1.2rem;
    font-weight: 700;
    height: 20px;
    justify-content: center;
    line-height: 1;
    margin-left: 8px;
    padding-bottom: 2px;
    width: 36px;
}
.contact-table input[type=checkbox]+label span {
    background: #fff;
    border: solid 1px #E6E6E6;
    width: 18px;
    height: 18px;
    margin-right: 0.5em;
    box-sizing: border-box;
    display: block;
    transition: all .1s ease 0s;
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto;
    border-radius: 5px;
}
.contact-table input[type=checkbox]:checked+label {
    background: var(--main-lightgreen);
}
.contact-table input[type=checkbox]:checked+label span {
    background: var(--main-green);
    border: none;
}
.contact-table input[type=checkbox]+label span:before, 
.contact-table input[type=checkbox]+label span:after {
    content: "";
    background: #fff;
    width: 14.2857142%;
}
.contact-table input[type=checkbox]+label span:before {
    height: 35.7142857%;
    position: absolute;
    top: 35.7142857%;
    left: 25%;
    transition: transform .1s ease 0s;
    transform: rotate(-45deg) scaleY(0);
}
.contact-table input[type=checkbox]+label span:after {
    content: "";
    height: 57.1428571%;
    position: absolute;
    top: 21.4285714%;
    left: 50%;
    transition: transform .1s ease .1s;
    transition: transform .1s ease .1s, -webkit-transform .1s ease .1s;
    transform: rotate(45deg) scaleY(0);
}
.contact-table input[type=checkbox]:checked+label span:before {
    transform: rotate(-45deg) scale(1);
}
.contact-table input[type=checkbox]:checked+label span:after {
    transform: rotate(45deg) scale(1);
}
.contact-tb-check label a{
    text-decoration: underline;
}
.contact-table input.wid{
    width: 500px;
}
.contact-table input.wid200{
    width: 200px;
}
.contact-table textarea{
    background: #fff;
    border-radius: 5px;
    width: 100%;
    height: 125px;
    padding: 5px 10px;
    border: solid 1px var(--border-gray);
    box-sizing: border-box;
}
.contact-table input[type=radio] {
    display: none;
}
.contact-table input[type=radio] + label.radio-btn {
    background: #f2f2f2;
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px 10px 40px;
    border-radius: 3px;
    box-sizing: border-box;
    font-size: 1.5rem;
    line-height: calc(1em + 10px);
    cursor: pointer;
    flex-flow: row wrap;
    position: relative;
    border-radius: 5px;
}
.contact-table input[type=radio]:checked + label.radio-btn {
    background: var(--main-color-bg--light);
}
.contact-table input[type=radio] + label.radio-btn .alt_radio {
    display: block;
    font-weight: bold;
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 5px;
    border: solid 1px #E6E6E6;
    border-radius: 50%;
    box-sizing: border-box;
    background: #fff;
    position: absolute;
    top: 0;
    left: 12px;
    bottom: 0;
    margin: auto;
}
.contact-table input[type=radio]:checked + label.radio-btn .alt_radio:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--main-color);
    content: "";
}
.contact-table .address{
    margin-top: 10px;
}
.contact-main__btn {
    width: 300px;
    height: 60px;
    margin: 0 auto;
}
.contact-main__btn a {
    background: var(--main-green);
    color: #fff;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border-radius: 30px;
    border: solid 1px var(--main-green);
    transition: all ease .3s;
}
.contact-main__btn a::after {
    content: "";
    background: url(../images/icon_link.svg) no-repeat;
    background-size: contain;
    width: 15px;
    height: 10px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: all ease .3s;
}
@media screen and (min-width: 768px) {
    .contact-main__btn a:hover{
        background: #fff;
        color: var(--main-green);
        border-color: var(--main-green);
    }
    .contact-main__btn a:hover:after {
        background: url(../images/icon_btn_link_green.svg) no-repeat;
        transform: rotate(180deg);
        transition: all ease .3s;
    }
}
.contact-main__backbtn {
    position: absolute;
    width: 180px;
    height: 40px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}
.contact-main__btn-list{
    position: relative;
}
.contact-main__backbtn a {
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding-left: 38px;
    color: #666;
    position: relative;
}
.contact-main__backbtn a::before {
    content: "";
    width: 10px;
    height: 8px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 10px;
    z-index: 1;
    background: url(../images/icon_link_green.svg) 0% 0% / contain no-repeat;
    transform: rotate(180deg);
    margin: auto;
    transition: all ease .3s;
}
.contact-main__backbtn a::after {
    content: "";
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0;
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(230, 230, 230);
    border-image: initial;
    margin: auto;
    border-radius: 50%;
    transition: all ease .3s;
}
@media screen and (min-width: 768px) {
    .contact-main__backbtn a:hover:after {
        content: "";
        background: #269926;
        border: solid 1px #269926;
        box-sizing: border-box;
        transition: all ease .3s;
    }
    .contact-main__backbtn a:hover:before {
        content: "";
        background: url(../images/icon_link_white.svg) no-repeat;
        transition: all ease .3s;
    }
}
.errNull{
    text-align: center;
}
.errNull-ttl{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 30px;
    margin-bottom: 15px;
}
.errNull-ttl::before{
    content: '！';
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 30px;
    text-align: center;
    color: #FFF;
    display: inline-block;
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    margin-right: 5px;
    border-radius: 15px;
    background: #ed1c24;
}
.errNull-txt{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.7;
}
.txtRed{
    color: #ed1c24;
}
/* sp */
@media screen and (max-width:768px){
    #contents.contact{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .contact-main--text{
        margin-bottom: 0;
        padding-bottom: 15px;
    }
    .contact-table{
        width: 100%;
        margin-bottom: 10px;
    }
    .contact-table tr th {
        width: 100%;
        border-bottom: none;
        padding: 20px 0 4px;
        display: block;
    }
    .contact-table tr th.required:after {
        content: "必須";
        font-weight: normal;
        align-items: center;
        color: #fff;
        display: inline-flex;
        height: auto;
        width: 36px;
        padding: 3px 5px;
        margin-left: 5px;
        position: static;
    }
    .contact-table tr th:before {
        content: none;
    }
    .contact-table tr td {
        padding: 4px 0 20px;
        display: block;
    }
    .contact-table.confirm tr td{
        padding: 4px 0 20px;
    }
    .contact-table .inquery-radio-flex {
        display: block;
    }
    .contact-table .inquery-radio-flex li:not(:last-child){
        margin-bottom: 10px;
    }
    .contact-table input.wid{
        width: 100%;
    }
    .contact-table input[type=text],
    .contact-table input[type=tel],
    .contact-table input[type=email]{
        border-radius: 5px;
        height: 50px;
    }
    .contact-table textarea{
        border-radius: 5px;
        height: 145px;
    }
    .contact-table input[type=radio] + label.radio-btn {
        font-size: 1.4rem;
        padding: 10px 12px 10px 32px;
    }
    .contact-table input[type=radio] + label.radio-btn .alt_radio {
        width: 16px;
        height: 16px;
        left: 12px;
    }
    .contact-table input[type=radio]:checked + label.radio-btn .alt_radio:after {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
    }
    .contact-main__btn{
        width: 100%;
        height: 50px;
        margin-top: 20px;
    }
    .contact-main__btn-list{
        display: flex;
        flex-flow: column-reverse;
    }
    .contact-main__backbtn {
        position: static;
        width: 100%;
        height: 40px;
        top: 0;
        left: 0;
        bottom: 0;
        margin-top: 15px;
    }
}
/*-------------------
contact　complete
-------------------*/
.complete-title{
    font-size: 32px;
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--main-green);
    margin-bottom: 25px;
    text-align: center;
}
.complete-text{
    text-align: center;
    line-height: calc(1em + 10px);
    margin-bottom: 30px;
}
/* sp */
@media screen and (max-width:768px){
    .complete-title{
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: 20px;
        text-align: center;
    }
}
/***------------
privacy
------------***/
#contents.privacy{
    width: 1000px;
    margin: 0 auto;
}
.privacy-sec:not(:last-of-type){
    margin-bottom: 50px;
}
.privacy-title{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;
    padding: 0 0 10px 30px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-bottom: solid 1px var(--main-gray_border);
    position: relative;
}
.privacy-title:before{
    content: "";
    background: var(--main-green);
    width: 12px;
    height: 12px;
    position: absolute;
    top: 15px;
    left: 8px;
    border-radius: 50%;
}
.privacy-sec p{
    font-size: 16px;
    font-size: 1.6rem;
    line-height: calc(1em + 12px);
}
.privacy-sec p:not(:last-child){
    margin-bottom: 15px;
}
.privacy-sec li {
    display: flex;
    width: auto;
    position: relative;
    line-height: calc(1em + 14px);
}
.privacy-sec ol{
    counter-reset: editor__list-num;
}
.privacy-sec ol li {
    padding-left: 1.2em;
}
.privacy-sec ol li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--main-green);
    font-weight: bold;
    content: counter(editor__list-num) '.';
    counter-increment: editor__list-num;
}
.privacy-sec p a:not(:hover){
    text-decoration: underline;
}
/* sp */
@media screen and (max-width:768px){
    #contents.privacy{
        width: var(--inner-width);
        margin: 0 auto;
    }
    .privacy-title{
        font-size: 20px;
        font-size: 2.0rem;
        padding: 0 0 10px 25px;
    }
    .privacy-title:before {
        content: "";
        background: var(--main-green);
        width: 10px;
        height: 10px;
        position: absolute;
        top: 11px;
        left: 5px;
        border-radius: 50%;
    }
    .privacy-sec p {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: calc(1em + 11px);
    }
    .privacy-sec ol li {
        padding-left: 1.2em;
        line-height: calc(1em + 12px);
    }
    .privacy-sec:not(:last-of-type) {
        margin-bottom: 30px;
    }
}
/***------------
staffing
------------***/
.staffing-sec:not(:last-of-type){
    margin-bottom: 60px;
}
.staffing-title{
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 35px;
}
.staffing-title::before {
    color: var(--main-green);
    font-family: var(--font-en);
    font-weight: 700;
    content: attr(data-pagetitle-en);
    font-size: 1.6rem;
    display: block;
    line-height: 1;
    letter-spacing: .04em;
}
.stffing-main{
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.stffing-main-info-title{
    font-size: 28px;
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.stffing-main-info-title small{
    font-size: 18px;
    font-size: 1.8rem;
    color: var(--main-green);
    display: block;
}
.staffing-main-info-list{
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.staffing-sec img{
    border-radius: 5px;
}
.stffing-main-info-text p{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
.stffing-main-info-text p:not(:last-child){
    margin-bottom: 20px;
}
.staffing-sub{
    background: #fcf9ef;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 5px;
    display: flex;
    gap: 30px;
    align-items: center;
}
.staffing-sub dl dt{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: normal;
    color: var(--main-green);
    margin-bottom: 15px;
}
.staffing-sub dl dd{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
.staffing-sub dl dd a{
    text-decoration: underline;
}
.staffing-list--item{
    display: flex;
    gap: 40px;
    padding-bottom: 40px;
}
.staffing-list--item:not(:last-child){
    margin-bottom: 40px;
    border-bottom: solid 1px var(--main-gray_border);
}
.staffing-list--item-title{
    font-size: 24px;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-left: 20px;
    box-sizing: border-box;
    position: relative;
}
.staffing-list--item-title:before{
    content: "";
    background: var(--main-green2);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    top: 13px;
    left: 0;
}
.staffing-list--item-text{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
.staffing-list--item-text:not(:last-child),
.staffing-list--item-tb:not(:last-child){
    margin-bottom: 20px;
}
.staffing-list--item-tb{
    width: 100%;
    padding: 0 20px;
    background: #fcf9ef;
    box-sizing: border-box;
}
.staffing-tb{
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
    background: #fcf9ef;
    box-sizing: border-box;
}
.staffing-tb tr:not(:last-child){
    border-bottom: solid 1px rgba(102, 102, 102, 0.2);
}
.staffing-tb tr th{
    font-weight: bold;
    color: var(--main-green);
    width: 120px;
    padding: 20px 0;
    box-sizing: border-box;
}
.staffing-tb tr td{
    padding: 20px 0;
    box-sizing: border-box;
    line-height: calc(1em + 11px);
}
.staffing-btn{
    width: 460px;
    height: 54px;
    margin:  0 auto;
}
/* sp */
@media screen and (max-width:768px){
    .staffing-title {
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: bold;
        margin-bottom: 18px;
    }
    .stffing-main {
        margin-bottom: 30px;
        display: flex;
        justify-content: flex-start;
        flex-flow: column-reverse;
        gap: 30px;
    }
    .stffing-main-info-title {
        font-size: 20px;
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .stffing-main-info-title small{
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    .stffing-main-info-text p:not(:last-child) {
        margin-bottom: 15px;
    }
    .staffing-main-info-list{
        display: flex;
        gap: 10px;
        margin-bottom: 20px;
    }
    .staffing-sub {
        background: #fcf9ef;
        padding: 20px 5.17%;
        box-sizing: border-box;
        border-radius: 5px;
        display: block;
        align-items: center;
    }
    .staffing-sub-img{
        display: block;
        margin-bottom: 15px;
    }
    .staffing-sub dl dt {
        font-size: 18px;
        font-size: 1.8rem;
        font-weight: normal;
        color: var(--main-green);
        margin-bottom: 15px;
    }
    .staffing-list--item {
        display: flex;
        flex-flow: column;
        gap: 20px;
    }
    .staffing-list--item-title {
        font-size: 20px;
        font-size: 2rem;
        margin-bottom: 15px;
        padding-left: 18px;
        box-sizing: border-box;
        position: relative;
    }
    .staffing-list--item-title:before {
        width: 12px;
        height: 12px;
        top: 10px;
    }
    .staffing-list--item-text:not(:last-child),
    .staffing-list--item-tb:not(:last-child){
        margin-bottom: 15px;
    }
    .staffing-list--item-tb {
        width: 100%;
        padding: 5px 5.17%;
        background: #fcf9ef;
        box-sizing: border-box;
    }
    .staffing-tb tr th {
        display: block;
        width: 100%;
        padding: 15px 0 2px;
        box-sizing: border-box;
    }
    .staffing-tb tr td {
        display: block;
        width: 100%;
        padding: 2px 0 15px;
    }
    .staffing-btn{
        width: 100%;
        margin:  0 auto;
    }
}
/*---------------
estate-rental
----------------*/
.estate-rental-sec-main{
    display: flex;
    gap: 20px;
    align-items: center;
    flex-flow: row-reverse;
    margin-bottom: 10px;
}
.estate-rental-sec-main-map iframe{
    border-radius: 10px;
}
.estate-rental-sec:not(:last-child){
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: solid 1px var(--main-gray_border);
}
.estate-rental-sec-title{
    font-size: 30px;
    font-size: 3.0rem;
    font-weight: bold;
    margin-bottom: 20px;
}
.estate-rental-sec-title small{
    display: block;
    color: var(--main-green);
    font-size: 18px;
    font-size: 1.8rem;
}
.estate-rental-sec-title span{
    font-size: 24px;
    font-size: 2.4rem;
}
.estate-rental-sec-text:not(:last-child){
    margin-bottom: 20px;
}
.estate-rental-sec-box{
    width: 100%;
}
.estate-rental-sec-box dl{
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 15px 5px;
    border-top: solid 1px var(--main-gray_border);
    border-bottom: solid 1px var(--main-gray_border);
}
.estate-rental-sec-box dl:not(:last-child){
    border-bottom: none;
}
.estate-rental-sec-box dl dt{
    color: var(--main-green);
    font-weight: bold;
    width: 60px;
}
.estate-rental-sec-list{
    display: flex;
    gap: 5px;
}
.estate-rental-btn{
    width: 400px;
    height: 54px;
    margin: 30px auto 0;
}
.estate-rental-sec-list-img img{
    border-radius: 5px;
}
.estate-rental-sec-img img{
    border-radius: 10px;
}
/* sp */
@media screen and (max-width:768px){
    .estate-rental-sec:not(:last-child) {
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: solid 1px var(--main-gray_border);
    }
    .estate-rental-sec-title {
        font-size: 20px;
        font-size: 2.0rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
    .estate-rental-sec-title small{
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 5px;
    }
    .estate-rental-sec-title span{
        font-size: 16px;
        font-size: 1.6rem;
    }
    .estate-rental-sec-main {
        display: flex;
        gap: 20px;
        align-items: center;
        flex-flow: column;
        margin-bottom: 10px;
    }
    .estate-rental-sec-box dl {
        font-size: 14px;
        font-size: 1.4rem;
        width: 100%;
        display: flex;
        gap: 15px;
        align-items: flex-start;
        padding: 15px 5px;
        border-top: solid 1px var(--main-gray_border);
        border-bottom: solid 1px var(--main-gray_border);
    }
    .estate-rental-sec-box dl dt {
        width: 5em;
    }
    .estate-rental-sec-box dl:not(:last-child){
        border-bottom: none;
    }
    .estate-rental-sec-main-map{
        width: 100%;
    }
    .estate-rental-sec-main-map iframe{
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
    }
    .estate-rental-sec-list {
        display: flex;
        gap: 5px;
        flex-flow: row wrap;
    }
    .estate-rental-sec-list-img{
        width: calc((100% - 5px) / 2);
    }
    .estate-rental-btn {
        width: 100%;
        margin: 20px auto 0;
    }
}
/*---------------
smart
----------------*/
.smart-main{
    margin-bottom: 100px;
}
.smart-main-title{
    margin-bottom: 30px;
}
.smart-main-text{
    line-height: calc(1em + 12px);
    margin-bottom: 30px;
}
.smart-main-img{
    display: flex;
    gap: 20px;
}
.smart-main-img--item img{
    border-radius: 5px;
}
/* sp */
@media screen and (max-width:768px){
    .smart-main{
        margin-bottom: 50px;
    }
    .smart-main-title{
        width: calc(100% + 9.375%);
        margin-left: -4.6875%;
        margin-bottom: 25px;
    }
    .smart-main-text {
        line-height: calc(1em + 11px);
        margin-bottom: 20px;
    }
    .smart-main-img {
        display: flex;
        gap: 10px;
        flex-flow: column;
    }
}
/*smart-sec1*/
.smart-sec1{
    display: flex;
    gap: 60px;
    flex-flow: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
}
.smart-sec1:after{
    content: none;
}
.smart-sec1-pho img{
    border-radius: 5px;
}
.smart-sec1-main{
    width: 640px;
}
.smart-sec-title{
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
    margin-bottom: 25px;
}
.smart-sec-title::before {
    color: var(--main-blue);
    font-family: var(--font-en);
    font-weight: 700;
    content: attr(data-pagetitle-en);
    font-size: 1.6rem;
    display: block;
    line-height: 1;
    letter-spacing: .04em;
}
.smart-sec-title span{
    width: 140px;
    height: 38px;
    font-size: 20px;
    font-size: 2.0rem;
    color: #fff;
    border-radius: 5px;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--main-blue);
    margin-left: 20px;
    transform: translateY(-6px);
}
.smart-sec-title span::after {
    content: "";
    position: absolute;
    left: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 7px solid var(--main-blue);
}
.smart-sec1-main-list{
    display: flex;
    gap: 5px;
    flex-flow: row wrap;
    margin-bottom: 20px;
}
.smart-sec1-main-list li{
    color: var(--main-blue);
    font-weight: bold;
    width: calc((100% - 10px) / 3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    background: var(--main-lightblue);
    border-radius: 3px;
}
.smart-sec1-main-text{
    font-weight: bold;
    color: #999999;
    text-align: center;
    margin-bottom: 25px;
}
.smart-sec1-main-img{
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--main-gray_border);
    border-radius: 5px;
}
/* sp */
@media screen and (max-width: 768px) {
    .smart-sec1{
        margin-bottom: 40px;
    }
    .smart-sec-title {
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: bold;
        margin-bottom: 12px;
        text-align: center;
    }
    .smart-sec-title::before {
        margin-bottom: 5px;
        font-size: 1.4rem;
    }
    .smart-sec-title span {
        width: 120px;
        height: 32px;
        display: flex;
        font-size: 16px;
        font-size: 1.6rem;
        margin: 15px auto 0;
        transform: translateY(0);
    }
    .smart-sec-title span::after {
        left: 50%;
        bottom: -7px;
        top: auto;
        transform: translateX(-50%);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 7px solid var(--main-blue);
        border-bottom: none;
    }
    .smart-sec1-pho{
        margin-bottom: 20px;
    }
    .smart-sec1-main-list{
        margin-bottom: 20px;
    }
    .smart-sec1-main-list li {
        font-size: 15px;
        font-size: 1.5rem;
        color: var(--main-blue);
        font-weight: bold;
        width: calc((100% - 5px) / 2);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        background: var(--main-lightblue);
        border-radius: 3px;
    }
    .smart-sec1-main-text{
        font-size: 16px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .smart-sec1-main-img {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 5px 10px;
    }
}
/*smart-sec2*/
.smart-sec2 .smart-sec-title{
    text-align: center;
}
.smart-sec2-text{
    text-align: center;
    margin-bottom: 50px;
    line-height: calc(1em + 12px);
}
.smart-sec2-list{
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}
.smart-sec2-list-item{
    width: calc((100% - 20px) / 3);
    background: #f5f6f7;
    border-radius: 5px;
    padding: 30px;
    box-sizing: border-box;
    position: relative;
}
.smart-sec2-list-item:before{
    content: "";
    background: url(../images/business/icon_smart1.svg) no-repeat;
    background-size: contain;
    width: 28px;
    height: 34px;
    position: absolute;
    top: -18px;
    right: 0;
    left: 0;
    margin: auto;
}
.smart-sec2-list-item:nth-of-type(2):before{
    background: url(../images/business/icon_smart2.svg) no-repeat;
    background-size: contain;
}
.smart-sec2-list-item:nth-of-type(3):before{
    background: url(../images/business/icon_smart3.svg) no-repeat;
    background-size: contain;
}
.smart-sec2-list-item-title{
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--main-blue);
    margin-bottom: 20px;
    text-align: center;
}
.smart-sec2-list-item p{
    font-size: 14px;
    font-size: 1.4rem;
    line-height: calc(1em + 11px);
}
.smart-sec2-btn{
    width: 460px;
    height: 54px;
    margin: 0 auto;
}
/* sp */
@media screen and (max-width: 768px) {
    .smart-sec2 .smart-sec-title{
        margin-bottom: 15px;
    }
    .smart-sec2-text{
        text-align: left;
        margin-bottom: 40px;
        line-height: calc(1em + 11px);
    }
    .smart-sec2-list {
        display: flex;
        flex-flow: column;
        gap: 30px;
        margin-bottom: 30px;
    }
    .smart-sec2-list-item {
        width: 100%;
        background: #f5f6f7;
        border-radius: 5px;
        padding: 25px 15px;
    }
    .smart-sec2-list-item-title {
        font-size: 18px;
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .smart-sec2-btn{
        width: 100%;
        text-align: center;
    }
}
/*---------------
helty
----------------*/
.helty-main {
    width: 100%;
    height: 504px;
    position: relative;
    clip-path: path('M0,58 Q720,11 1920,58 L1920,480 L0,480 Z');
    z-index: 10;
    top: -75px;
    background: #fff;
    display: flex;
    align-items: center;
}
.helty-main-img {
    position: absolute;
    top: 0;
    right: 0;
}
.helty-main-info{
    min-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.helty-main-info-title{
    color: #003d57;
    font-size: 20px;
    font-size: 2.0rem;
    font-weight: bold;
    margin-bottom: 25px;
}
.helty-main-info-title img{
    display: block;
    margin-top: 20px;
}
.helty-main-info-text{
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: calc(1em + 14px);
}
#contents.business.helty-content{
    margin-top: -35px;
}
.helty-title{
    font-size: 36px;
    font-size: 3.6rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
}
.helty-title::before {
    color: var(--main-green);
    font-family: var(--font-en);
    font-weight: 700;
    content: attr(data-pagetitle-en);
    font-size: 1.6rem;
    display: block;
    line-height: 1;
    letter-spacing: .04em;
}
.helty-list{
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}
.helty-list-item{
    display: flex;
    flex-flow: column-reverse;
    text-align: center;
    gap: 10px;
}
.helty-list-item-title{
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: calc(1em + 10px);
}
.helty-btn{
    width: 560px;
    height: 54px;
    margin: 0 auto;
}
/* sp */
@media screen and (max-width: 768px) {
    .helty-main {
        width: 100%;
        height: auto;
        position: relative;
        clip-path: none;
        z-index: 10;
        top: -40px;
        background: none;
        display: flex;
        flex-flow: column-reverse;
        align-items: center;
    }
    .helty-main-img{
        position: static;
        margin-bottom: 20px;
    }
    .helty-main-info {
        width: var(--inner-width);
        margin: 0 auto;
        min-width: inherit;
    }
    .helty-main-info-title {
        color: #003d57;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: bold;
        margin-bottom: 25px;
    }
    .helty-main-info-title img{
        width: 66.89%;
    }
    .helty-main-info-text {
        line-height: calc(1em + 11px);
    }
    .helty-title {
        font-size: 24px;
        font-size: 2.4rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 20px;
    }
    .helty-title::before {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }
    .helty-list{
        flex-flow: column;
        gap: 10px;
    }
    .helty-list-item {
        display: flex;
        flex-flow: row-reverse;
        align-items: center;
        text-align: left;
        gap: 10px;
    }
    .helty-list-item-img{
        width: 100px;
    }
    .helty-list-item-title{
        font-size: 16px;
        font-size: 1.6rem;
        width: calc(100% - 110px);
    }
    .helty-list-item-title::before {
        color: var(--main-green);
        font-family: var(--font-en);
        font-weight: normal;
        content: attr(data-pagetitle-en);
        font-size: 1.4rem;
        display: block;
        line-height: 1;
        letter-spacing: .04em;
        margin-bottom: 3px;
    }
    .helty-btn{
        width: 100%;
        text-align: center;
    }
}
