@charset "utf-8";
:root{
    --base-font: 'Noto Sans JP', sans-serif;
    --main-font: maru-maru-gothic-alr-stdn, sans-serif;/*font-style: normal;*//*font-weight: 400;*/
/*    --main-font: fot-tsukuardgothic-std, sans-serif;/*font-style: normal;*//*font-weight: 400;*/
    --base-font-size: 1.6rem;
    --base-color: #343434;
    --primary-color: #EAECA8;
    --secondary-color: #666666;
    --accent-color: #FC7474;
    --minor-color: #EFEFEF;
    --point-color: #CED04B;
}
/*
*-----Basic Styles----*/
html{
    font-size: 62.5%;
}
body {
    font-family: var(--base-font);
    color: var(--base-color);
    font-feature-settings: "palt";
}
p{
    font-size: var(--base-font-size);
}
a{
    cursor: pointer;
    display: inline-block;
    transition: all .3s;
}
a:hover, a:focus{
    opacity: .7;
}
dt{
    font-weight: normal;
}

/*
*----Loading Styles----*/
#js-loading{width:100%;height:100%;position:fixed;top:0;z-index:1002;background-color:#fff}
#js-loading:after{content:'';position:fixed;left:50%;top:50%;width:80px;margin-top:-41.5px;margin-left:-41.5px;height:80px;border:3px solid rgba(0,75,158,.3);border-top-color:#004b9e;border-radius:50%;-webkit-animation:Spin .8s linear infinite;animation:Spin .8s linear infinite}
@-webkit-keyframes Spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}
@keyframes Spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}

/*
*----Scroll Fadein Styles----*/
.js-fadein{
    opacity: 0;
}

/*
*----Common Styles----*/
.screen-reader-text{
    border: 0;
    clip: rect(1px,1px,1px,1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal!important;
}
.ly_content{
    width: 91.21522694%;
    max-width: 1246px;
    margin-right: auto;
    margin-left: auto;
}
.ly_section{
    width: 70.2781844802%;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
}
.sec-ttl{
    font-family: var(--main-font);
    font-weight: bold;
}
.moreBtn{
    border: solid 1px var(--base-color);
    font-size: 1.6rem;
    padding: .8em;
    border-radius: 25px;
    min-width: 200px;
    text-align: center;
    transition: all .4s;
}
.moreBtn:hover{
    text-decoration: underline;
}
.sub-txt{
    color: var(--minor-color);
    font-family: var(--main-font);
    font-weight: bold;
}
.btnHover{transition: all .4s;}
.btnHover:hover{
    opacity: unset;
    filter: brightness(1.1) contrast(.8);
}
.underLineMarker{
    font-weight: bold;
    position: relative;
}
.underLineMarker::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: .5em;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 9%;
    left: 0;
    z-index: -1;
}
.pdfLink{
    text-decoration: underline;
}
.pdfLink::after{
    content: '';
    width: 24px;
    height: 24px;
    background-image: url(../images/common/pdf-icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
    vertical-align: text-top;
    margin-left: 5px;
}
.contact-btn{
    border-radius: 35px;
    padding: .75em 2em;
    border: solid 5px #CCCCCC;
    background-color: var(--base-color);
    color: #fff;
    font-weight: bold;
    text-align: center;
    max-width: 360px;
}
.common-ul,
.common-ol{
    font-size: clamp(1.5rem, 1.82926829268vw, 1.6rem);
    margin-bottom: 3.125em;
}
.common-ul li,
.common-ol li{
    display: flex;
    align-items: baseline;
}
.common-ul li a,
.common-ol li a{
   text-decoration: underline;
}
.common-ul li:not(:last-child),
.common-ol li:not(:last-child){
    margin-bottom: 1em;
}
.common-ul li::before{
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url(../images/common/list-style.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: .75em;
    flex-shrink: 0;
}
.common-ol{
    counter-reset: number 0;
}
.common-ol li::before{
    counter-increment: number 1;
    content: counter(number);
    color: #fff;
    font-size: 0.7em;
    display: grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    background-image: url(../images/common/ol-list-style.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: .75em;
    flex-shrink: 0;
}
@media(max-width: 820px){
    .ly_content,
    .ly_section{
        width: 84.7%;
        /*max-width: 333px;*/
        max-width: 694.54px;
    }
    .moreBtn{
        padding: 8px;
    }
    .sp_contents{
        display: contents;
    }
    .pdfLink::after{
        width: 18px;
        height: 18px;
    }
}

/*
*----Helper Styles----*/
.fz10{
    font-size: 1rem !important;
}
.fz12{
    font-size: 1.2rem !important;
}
.fwB{
    font-weight: bold !important;
}
.noletterSpace{
    letter-spacing: normal !important;
}
.mt20 {
    margin-top: 20px!important;
}
.mb1em{
    margin-bottom: 1em !important;
}
.txtR {
    text-align: right!important;
}
.txtC {
    text-align: center!important;
}
.txtL {
    text-align: left!important;
}
.pr20{
    padding-right: 20px !important;
}
.txtIndent1{
    text-indent: 1em !important;
}
@media(max-width: 820px){
    .for_pc{
        display: none !important;
    }
}
@media(min-width: 821px){
    .for_sp{
        display: none !important;
    }
}

/*
*----共通ヘッダー パンくず Style----*/
.common-header{
    width: 100%;
    height: 470px;
    /*padding-top: 38px;*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin-bottom: 150px;
}
.common-header-ttlWrap{
    background-color: #FFFFFFCC;
    /*padding: 20px 60px;*/
    padding: 58px 60px 20px;
}
.common-header-ttl{
    font-size: clamp(2.9rem, 3.53658536585vw, 3.2rem);
}
.common-header-bottom-border-img{
    background-image: url(../images/common/common-header-border.svg);
    background-repeat: no-repeat;
    position: absolute;
    bottom: -137px;
    width: 100%;
    height: 137px;
    background-size: contain;
}
.common-page-ttl{
    font-size: clamp(3.2rem, 4.68521229868vw, 6.4rem);
    color: #fff;
    background-color: #0000006E;
    border: solid 1px #707070;
    padding: 10px 30px 10px 60px;
    width: fit-content;
    position: absolute;
    left: 0;
    bottom: 0;
}
.bread-crumbWrap{
    margin-bottom: 56px;
}
.bread-crumbs{
    display: flex;
    gap: .2em;
    font-size: clamp(1.1rem, 1.17130307467vw, 1.6rem);
}
.bread-crumbs a{
    text-decoration: underline;
}
@media(max-width: 820px){
    .common-header{
        height: 50vh;
        margin-bottom: 80px;
    }
    .common-header-ttlWrap{
        padding: 58px 30px 20px;
    }
    .common-page-ttl{
        padding: 10px 30px;
    }
    .bread-crumbWrap{
        margin-bottom: 2.8em;
    }
}

/*
*----ヘッダーボタン Style----*/
.header-nav{
    position: fixed;
    top: 0;
    right: 0;
    width: 203px;
    display: flex;
    gap: 3px;
    z-index: 21;
}
.navBox{
    width: 100px;
    background-color: var(--base-color);
    color: #fff;
    font-family: var(--base-font);
    font-size: 1.6rem;
    border-radius: 0px 0px 20px 20px;
}
.navBox a{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 28px 15px 22px;
}
.navBox p{
    line-height: 1.5;
}
.navBox._contact img{
    width: 32px;
    height: 22.5px;
}
.menu-btn{
    border-bottom: solid 2px #fff;
    position: relative;
}
.menu-btn::after{
    content: '';
    width: 60%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -10px;
}

/*
*----緊急電話番号 Style----*/
.ly_emergency-tell{
    position: fixed;
    top: 0;
    left: 0;
    width: calc( 100% - 206px);
    padding: 7px 4px 7px 60px;
    background-color: var(--base-color);
    color: #fff;
    font-size: 1.6rem;
    z-index: 21;
}
.ly_emergency-tell p{
    display: flex;
    align-items: center;
}
.ly_emergency-tell .emergency-num{
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
    margin-left: 16px;
}
.ly_emergency-tell .emergency-num::before{
    content: url(../images/common/tel-icon_r.svg);
    margin-right: 3px;
}

/*
*----隠しメニュー Style----*/
.hidden-menu{
    position: relative;
    display: flex;
    z-index: -100;
    /*min-height: 100vh;*/
    position: fixed;
    inset: 0;
    opacity: 0;
    overflow-y: auto;
}
.hidden-menu-ly_emergency-tell{
    position: absolute;
    top: 0;
    left: 0;
    width: calc( 100% - 206px);
    padding: 7px 4px 7px 60px;
    background-color: var(--base-color);
    color: #fff;
    font-size: 1.6rem;
}
.hidden-menu-ly_emergency-tell p{
    display: flex;
    align-items: center;
}
.hidden-menu-ly_emergency-tell .emergency-num{
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
    margin-left: 16px;
}
.hidden-menu-ly_emergency-tell .emergency-num::before{
    content: url(../images/common/tel-icon_r.svg);
    margin-right: 3px;
}
.hidden-menu-nav{
    position: absolute;
    top: 0;
    right: 0;
    width: 203px;
    display: flex;
    gap: 3px;
}
.closeBtn .menu-btn{
    border-bottom: unset;
}
.closeBtn .menu-btn::before,
.closeBtn .menu-btn::after{
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -10px;
}
.closeBtn .menu-btn::before{
    transform: rotate(15deg);
}
.closeBtn .menu-btn::after{
    transform: rotate(-15deg);
}
.menu-hoveredImgArea{
    background-image: url('../images/common/menue_00.jpg');
    background-size: cover;
    padding-top: 87px;
    flex-basis: 50%;
    /*min-width: 631.5px;*/
}
.menu-site-ttl{
    color: #fff;
    font-family: var(--main-font);
    font-weight: bold;
    font-size: 4.8rem;
    line-height: 1;
    padding-left: 60px;
}
.menu-site-ttl .menu-site-ttl_en{
    font-size: 2.4rem;
    display: inline-block;
    transform: translateY(-30%);
}
.menu-navListsArea{
   background-color: var(--primary-color);
   flex-basis: 50%;
   padding: 0 30px 30px;
   overflow-y: auto;
}
.ly_navLists{
    margin: 26vh auto 0;
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: 
        "home home"
        "businesses others"
        "bnrs bnrs";
    /*min-width: 444px;*/
    max-width: 523px;
    width: 76.57%;
}
.navLists_home{
    grid-area: home;
    padding: 7px 0 5px;
    background-color: #fff;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: center;
    border: solid 1px currentColor;
    margin-bottom: 36px;
}
.navLists{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.navLists >li{
    font-weight: bold;
    font-size: 2.4rem;
}
.navLists._businesses{
    grid-area: businesses;
}
.navLists_bizChildren >li{
    font-size: 2rem;
}
.navLists_bizChildren >li:not(:last-child){
    margin-bottom: .7em;
}
.navLists_bizChildren >li a::before{
    content: '・';
    display: inline-block;
}
.navLists._others{
    grid-area: others;
}
.navLists_bnrs{
    grid-area: bnrs;
    display: flex;
    gap: 30px;
    margin-top: 90px;
    flex-wrap: wrap;
}
.navLists_bnrs img{
    max-width: 186px;
    max-height: 60px;
    object-fit: cover;
}
@media(max-width: 820px){
    .ly_emergency-tell_sp{
        background-color: var(--base-color);
        color: #fff;
        font-size: 1.2rem;
        padding: 5px;
        text-align: right;
        position: fixed;
        top: 0;
        left: 0;
        width: calc( 100vw - 153px);
        z-index: 10;
    }
    .ly_emergency-tell_sp p{
        font-size: 1.2rem;
    }
    .nav_sp{
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        gap: 3px;
        width: 156px;
        z-index: 1;
    }
    .nav_sp .navBox{
        width: 50px;
        border-radius: 0 0 10px 10px;
    }
    .nav_sp .navBox a{
        padding: 12px;
    }
    .nav_sp .navBox p{
        font-size: 1rem;
    }
    .nav_sp .navBox._tel img{
        width: 25px;
    }
    .nav_sp .navBox._contact img{
        width: 24px;
        height: 18px;
    }
    .nav_sp .openBtn .menu-btn{
        border-bottom: solid 1px #fff;
    }
    .nav_sp .openBtn .menu-btn::after {
        height: 1px;
        bottom: -7px;
    }
    .hidden-menu{
        flex-direction: column;
        /*height: 100%;
        width: 100vw;*/
    }
    .menu-hoveredImgArea{
        max-height: 50vh;
        min-width: unset;
    }
    .menu-site-ttl{
        font-size: 2.9rem;
        padding: 0 38px;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
    }
    .menu-site-ttl .menu-site-ttl_en{
        font-size: 1.4rem;
    }
    .hidden-menu-ly_emergency-tell_sp{
        background-color: var(--base-color);
        color: #fff;
        font-size: 1.2rem;
        padding: 5px;
        text-align: right;
        position: fixed;
        top: 0;
        left: 0;
        width: calc( 100% - 153px);
    }
    .hidden-menu-ly_emergency-tell_sp p{
        font-size: 1.2rem;
    }
    .hidden-menu-nav_sp{
        position: fixed;
        top: 0;
        right: 0;
        display: flex;
        gap: 3px;
        width: 156px;
    }
    .hidden-menu-nav_sp .navBox{
        width: 50px;
        border-radius: 0 0 10px 10px;
    }
    .hidden-menu-nav_sp .navBox a{
        padding: 12px;
    }
    .hidden-menu-nav_sp .navBox p{
        font-size: 1rem;
    }
    .hidden-menu-nav_sp .navBox._tel img{
        width: 25px;
    }
    .hidden-menu-nav_sp .navBox._contact img{
        width: 24px;
        height: 18px;
    }
    .hidden-menu-nav_sp .closeBtn .menu-btn::before,
    .hidden-menu-nav_sp .closeBtn .menu-btn::after {
        height: 1px;
        bottom: -7px;
    }
    /*.menu-hoveredImgArea,
    .menu-navListsArea{
        height: 50vh;
    }*/
    .menu-navListsArea{
        padding: 0 0 30px;
        overflow-y: unset;
    }
    .ly_navLists{
        margin: 30px auto 0;
        min-width: unset;
        max-width: unset;
        width: 90%;
    }
    .navLists_home{
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    .navLists{
        gap: 10px;
    }
    .navLists >li{
        font-size: 1.8rem; 
    }
    .navLists_bizChildren >li {
        font-size: 1.32rem;
    }
    .navLists_bnrs{
        gap: 15px;
        margin-top: 45px;
        justify-content: center;
    }
    .navLists_bnrs img{
        max-width: 160px;
    }
}

/*
*----フッター Style----*/
.footer{
    background-color: var(--primary-color);
    padding-top: 100px;
    padding-bottom: 35px;
    border-bottom: solid 10px var(--point-color);
    position: relative;
}
.footer::before{
    content: '';
    display: inline-block;
    width: clamp(170.72px, 24.995607613vw, 341.44px);
    height: clamp(95.37px, 13.963396778vw, 190.74px);
    background-image: url(../images/common/town_footer.png);
    background-size: cover;
    position: absolute;
    top: -45px;
    right: 210px;
}
.toTopBtn{
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: solid 3px #CCCCCC;
    background-color: var(--base-color);
    font-size: 4rem;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 0;
    right: 60px;
    transform: translateY(-50%);
}
/*.toTopBtn:hover{
    opacity: unset;
    filter: brightness(.9) contrast(1.3);
}*/
.footer-ttl{
    font-size: 3.6rem;
    margin-bottom: 50px;
}
.ly_footer-infoItems{
    display: grid;
    grid-template-columns: repeat(3, minmax(32.5%, 1fr));
    gap: 1.25%;
}
/*.footer-address{
    width: 29.28%;
    min-width: 400px;
}*/
.footer-address-top{
    padding-bottom: 15px;
    border-bottom: solid 2px var(--point-color);
    margin-bottom: 13px;
}
.footer-address-top p{
    line-height: 1.5;
}
.footer-address-middle{
    margin-bottom: 20px;
}
.footer-tel{
    margin-bottom: 8px;
}
.footer-tel a{
    font-size: 3.2rem;
    font-weight: bold;
}
.footer-tel a::before{
    content: '';
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url(../images/common/tel-icon.svg);
    margin-right: 10px;
}
.footer-address-bottom{
    border-radius: 10px;
    border: solid 2px #CCCCCC;
    background-color: #fff;
    padding: 20px 12px;
}
.footer-address-bottom p:not(:last-child){
    margin-bottom: 1em;
}
.footer-emtel a{
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-right: 15px;
}
.footer-emtel a::before{
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url(../images/common/tel-icon_r.svg);
    background-repeat: no-repeat;
    vertical-align: middle;
    margin-right: 5px;
}
.footer-nav{
    /*min-width: 325.77px;*/
    display: flex;
    gap: 45px;
    margin: 0 auto;
}
.footer-nav-lists{
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.footer-nav-listsItem{
    font-weight: bold;
    font-size: 1.6rem;
}
.footer-nav-listsItem-child{
    display: flex;
    flex-direction: column;
    gap: .5em;
}
.footer-nav-listsItem-childItem{
    font-size: 1.6rem;
    font-weight: normal;
}
.footer-nav-listsItem-childItem a::before{
    content: '・';
    display: inline-block;
}
.footer-contact{
    text-align: right;
}
.footer-contact-btn{
    /*min-width: 360px;*/
    border-radius: 35px;
    padding: .75em 2em;
    border: solid 5px #CCCCCC;
    background-color: var(--base-color);
    color: #fff;
    font-size: clamp(1.6rem, 1.464128843vw, 2rem);
    font-weight: bold;
    text-align: center;
    max-width: 360px;
}
.footer-contact-btn::after{
    content: '';
    display: inline-block;
    width: clamp(20px, 2.928257686vw, 40px);
    height: clamp(15px, 2.196193265vw, 30px);
    background-image: url(../images/common/mail-icon_w.svg);
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: text-bottom;
    margin-left: clamp(15px, 2.196193265vw, 30px);
}
.copyRight{
    text-align: right;

}
@media(max-width: 820px){
    .footer{
        padding-top: 110px;
        padding-bottom: 20px;
    }
    .footer::before{
        width: 183px;
        height: 102.23px;
        top: -32px;
        left: 7.65%;
    }
    .toTopBtn{
        right: 7.65%;
    }
    .footer-ttl{
        font-size: 3rem;
        margin-bottom: 30px;
    }
    .ly_footer-infoItems,
    .footer-address{
        display: contents;
    }
    .footer-address-middle{
        margin-bottom: 50px;
        text-align: center;
    }
    .footer-tel{
        margin-bottom: 4px;
    }
    .copyRight {
        text-align: center;
    }
}

/*
*----固定ページで使用する共通パーツ----*/
.w100{
    width: 100% !important;
}
._primary-color{
    background-color: var(--primary-color) !important;
}
.common-2flexBox{
    display: flex;
    gap: 2%;
}
.common-2flexBox > *{
    flex-basis: 48%;
}
.common-btn{
    display: inline-block;
    padding: 13px 60px;
    font-size: clamp(1.5rem, 1.82926829268vw, 1.6rem);
    border: solid 1px var(--base-color);
    border-radius: 25px;
    text-decoration: none !important;
}
.common-btn._primary-color{
    border: solid 1px transparent;
}
.common-btn.w100{
    display: block;
    text-align: center;
}
.common-table{
    width: 100%;
    border-spacing: 4px;
}
.common-table th,
.common-table td{
    border-radius: 10px;
    padding: 7px 30px;
    font-size: clamp(1.5rem, 1.82926829268vw, 1.6rem);
    font-weight: normal;
}
.tbl_pt1{
    table-layout: fixed;
}
.tbl_pt1 th,
.tbl_pt1 td{
    text-align: center;
}
.tbl_pt1 thead th{
    background-color: var(--primary-color);
}
.tbl_pt1 tbody th,
.tbl_pt1 tbody td{
    background-color: var(--minor-color);
}
.tbl_pt2 th{
    width: 25%;
    background-color: var(--primary-color);
}
.tbl_pt2 td{
    background-color: var(--minor-color);
}
.common-imgTxtBox{
    display: flex;
    gap: 2%;
}
.common-imgTxtBox img{
    width: 48%;
    object-fit: cover;
    border-radius: 30px;
}
.bizSec-circle{
    width: 14rem;
    height: 14rem;
    border-radius: 50%;
    border: 1px solid var(--point-color);
    background-color: var(--primary-color);
    font-size: clamp(1.3rem, 1.69270833333vw, 1.6rem);
    display: grid;
    place-items: center;
    text-align: center;
    line-height: 1.5;
}
@media(max-width: 820px){
    .common-2flexBox{
        display: block;
    }
    .common-btn{
        padding: 8px 30px;
    }
    .common-imgTxtBox{
        display: block;
    }
    .common-imgTxtBox img{
        width: 100%;
    }
    .common-table th,
    .common-table td{
        padding: 7px;
        font-size: 1.5rem;
    }
    .bizSec-circle{
        width: 10rem;
        height: 10rem;
    }
}