/* common */
:where(h1,h2,h3,h4,h5,h6,th){
    font-weight: 400;
    font-size: 1rem;
    text-wrap: wrap;
}
:where(a){
    text-decoration: underline;
}
:where(table) {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
html{
    scroll-behavior: smooth;
    font-size: 18px;
}
body{
    background-color: #fff;
    font-family: YuGothic, "游ゴシック体", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", sans-serif;
    text-align: left;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.75;
    color: #333;
    /* font-feature-settings: "palt"; */
    position: relative;
}
i{
    margin: 0 0.35em;
}
.wrapper{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
.linkbtn{
    border-color: #EBF5E3;
    background-color: #fff;
    color: #0C5D03;
    text-decoration: none;
}


/* for PC */
@media screen and (min-width: 768px){
    :where(a:hover){
        text-decoration: none;
        /* opacity: 0.75; */
    }
    :where(a[href*="tel:"]){
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
    .pc-none{
        display: none;
    }
    .linkbtn:hover{
        border-color: rgb(162, 216, 198);
        background-color: #0C5D03;
        color: #fff;
    }    
}

/* for SP */
@media screen and (max-width: 767px){
    a:hover:after, a:active:after, a:focus:after{
        width: 100%;
    }
    a:hover:after, a:active:after, a:focus:after{
        display: none;
    }
    .sp-none{
        display: none;
    }
}

/* header */
.header{
    background-color: #fff;
    height: 90px;
    padding: 0 30px;
    font-size: 1.222rem;
    display: flex;
    align-items: center;
}
.header a{
    text-decoration: none;
}
.header .sekisui-logo{
    margin: 15px 0 15px auto;
}
.header .sekisui-logo img{
    margin-left: 15px;
    width: 70px;
}
@media screen and (max-width: 767px){
    .header{
        height: 76px;
        padding: 0 20px;
        font-size: 0.9rem;
    }
    .header .sekisui-logo img{
        margin-right: -5px;
        width: 60px;
    }
}

/* footer */
.footer{
    background-color: #0C5D03;
    color: #fff;
    margin-top: auto;
    padding: 0.75rem 30px;
    text-align: center;
    font-weight: 500;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
}

/* page_top */
#page_top{
    position: fixed;
    z-index: 5;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(235, 245, 227, 0.6);
    border-radius: 100vh;
}
#page_top a{
    text-decoration: none;
    position: relative;
    width: 3.5rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
#page_top a::before{
    content: "";
    background: url(../img/icon-up-arrow.png) no-repeat center center;
    background-size: contain;
    width: 1.25rem;
    height: 1.25rem;
}
@media screen and (max-width: 767px){
    #page_top{
        bottom: 0.35rem;
        right: 0.35rem;
    }
}


/* index-page -- top */
.top{
    background-color: #EBF5E3;
    position: relative;
}
.top nav{
    position: absolute;
    top: 20px;
    right: 20px;
}
.top a.link-for-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1.25rem;
    border: #EBF5E3 solid 4px;
    border-radius: 100vh;
    font-weight: 600;
    font-size: 1rem;
}
.top-image{
    height: 370px;
    overflow: hidden;
    /* background: url(../img/mv.jpg) no-repeat center center;
    background-size: cover; */
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}
.top-image .top-image_imgfit{
    width: 100%;
    height: 370px;
    overflow: hidden;
    position: relative;
}
.top-image .top-image_imgfit img{
    object-fit: cover;
    font-family: "object-fit: cover;";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.top-image .top-image_copy{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding-top: 100px;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    width: 1080px;
    max-width: 90%;
    text-shadow: 0 0 15px #325505;
}
.top-image .top-image_copy p{
    font-weight: 800;
    font-size: 2.125rem;
    font-feature-settings: "palt";
    filter: drop-shadow(0px 0px 1px rgba(50, 85, 5, 1));
}
.top-image .top-image_copy p strong{
    display: inline-block;
    position: relative;
    top: 0.075em;
    margin-right: 0.05em;
    font-size: 1.35em;
}
.top-image .top-image_copy h1{
    margin-top: 0.5rem;
    font-size: 1.111rem;
    font-weight: 600;
    filter: drop-shadow(0px 0px 1px rgba(50, 85, 5, 1));
}
.top-message{
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 1.166rem;
}
.top-message .inner{
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    width: 940px;
    max-width: 90%;
}
.top-message .txt-small{
    margin-top: 0.65em;
    font-size: 0.85em;
}

@media screen and (max-width: 767px){
    .top nav{
        top: 15px;
        right: 15px;
    }
    .top a.link-for-contact{
        padding: 0.2rem 1.125rem;
        font-size: 1rem;
    }
    /* .top-image{
        background-image: url(../img/mv-sp.jpg);
    } */
    .top-image .top-image_copy{
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin: 0;
        width: 100%;
        max-width: none;
    }
    .top-image .top-image_copy p{
        font-size: 1.4rem;
    }
    .top-image .top-image_copy h1{
        font-size: 1rem;
    }
    .top-message{
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        font-size: 1rem;
    }
    .top-message .inner{
        padding-left: 0;
        padding-right: 0;
        margin: 0 1.5rem;
        width: auto;
        max-width: 100%;
        line-height: 1.6;
    }
}

/* index-page -- contents */
.contents{
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 auto;
    width: 940px;
    max-width: 90%;
}
.contents .title{
    margin-top: 4rem;
    padding-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.8rem;
}
.contents .title::after{
    content: "";
    display: block;
    margin-top: 1rem;
    width: 4rem;
    height: 4px;
    background: #d7d7d7;
}
@media screen and (max-width: 767px){
    .contents{
        padding-left: 0;
        padding-right: 0;
        margin: 0 1.5rem;
        width: auto;
        max-width: 100%;
    }
    .contents .title{
        margin-top: 3rem;
        padding-top: 1rem;
        margin-bottom: 1rem;
        font-size: 1.45rem;
    }
}

/* index-page -- link-bus */
.contents a.link-bus{
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 1.5rem;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
}
/* .contents a.link-bus::after{
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 20px;
    height: 20px;
    background: url(../img/icon-window-w.png) no-repeat;
    background-size: contain;
} */
.contents a.link-bus .link-bus-text{
    position: absolute;
    font-size: 2rem;
    top: 0;
    left: 2rem;
    z-index: 2;
    width: 100%;
    height: 200px;
    padding: 0.25rem 1.25rem;
    display: flex;
    align-items: center;
}
.contents a.link-bus .link-bus-text .link-bus-info{
    padding-bottom: 0.75rem;
    font-feature-settings: "palt";
    font-weight: 800;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 0 0 15px #325505;
}
.contents a.link-bus .link-bus-text .link-bus_btn{
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 1.25rem;
    background: #fff;
    color: #0C5D03;
    border-radius: 100vh;
    font-weight: 600;
    font-size: 1rem;
}
.contents a.link-bus .link-bus-text .link-bus_btn::after{
    content: "";
    display: inline-block;
    margin-left: 0.5rem;
    width: 12px;
    height: 12px;
    background: url(../img/icon-window-green.png) no-repeat;
    background-size: contain;
}
.contents a.link-bus .link-bus-imgfit{
    border: #0C5D03 solid 2px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    position: relative;
    width: 100%;
    height: 200px;
    background-color: #EBF5E3;
}
.contents a.link-bus .link-bus-imgfit img {
    object-fit: cover;
    font-family: "object-fit: cover;";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contents a.link-bus .link-bus-imgfit::after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(12, 93, 3, 0.5);
    background: linear-gradient(120deg, rgba(64, 102, 3, 0.25) 40%, rgba(168, 184, 152, 0.24) 55%, rgba(44, 93, 3, 0) 70%);
}

.contents a.link-bus + .link-bus-imgcap{
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.4;
}
@media screen and (min-width: 768px){   /*PC*/
    .contents a.link-bus:hover .link-bus-imgfit{
        border-color: rgb(162, 216, 198);
        background-color:#497227;
    }
    .contents a.link-bus:hover .link-bus-imgfit img{
        opacity: 0.8;
    }
    .contents a.link-bus:hover .link-bus-text .link-bus-info{
        color: #EBF5E3;
    }
    .contents a.link-bus:hover .link-bus-text .link-bus_btn{
        background: #0C5D03;
        color: #EBF5E3;
    }
    .contents a.link-bus:hover .link-bus-text .link-bus_btn::after{
        background-image: url(../img/icon-window-w.png);
    }
}
@media screen and (max-width: 767px){
    .contents a.link-bus{
        margin-top: 1rem;
    }
    .contents a.link-bus .link-bus-text{
        top: 0;
        left: 0;
        width: 100%;
        height: auto;
        padding: 1.5rem 1rem 1rem 1.5rem;
        align-items: start;
    }
    .contents a.link-bus .link-bus-text .link-bus-info{
        font-size: 1.65rem;
        line-height: 1.2;
    }
    .contents a.link-bus .link-bus-text .link-bus-info::after{
        content: "";
        display: inline-block;
        margin: 0 0 0.125rem 0.5rem;
        width: 16px;
        height: 16px;
        background: url(../img/icon-window-w.png) no-repeat;
        background-size: contain;
    }
    .contents a.link-bus .link-bus-text .link-bus_btn{
        display: none;
    }
}

/* index-page -- contents-tbl */
.contents-tbl{
    margin: 1.5rem 0;
    width: 100%;
}
.contents-tbl tr{
    border-bottom: #dbd7d2 solid 1px;
}
.contents-tbl :is(th, td) {
    vertical-align: text-top;
    padding: 1rem 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
}
.contents-tbl th {
    width: 11rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #507d4b;
}
@media screen and (max-width: 767px){
    .contents-tbl{
        margin: 1rem 0;
    }
    .contents-tbl :is(th, td) {
        display: block;
        width: 100%;
        padding: 0.25rem 0.125rem 1.25rem;
    }
    .contents-tbl th {
        width: 100%;
        padding-top: 1.35rem;
        padding-bottom: 0;
        font-size: 1rem;
    }
}

/* index-page -- google-map */
.google-map {
    margin: 3.5rem auto;
    width: 100%;
    max-width: 758px;
    position: relative;
    height: 0;
    padding-top: calc((100% / 973) * 363);
}
.google-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
@media screen and (max-width: 1024px){
    .google-map {
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 767px){
    .google-map {
        width: auto;
        padding-top: 100%;
    }
}

/* index-page -- contact */
.contact{
    background-color: #EBF5E3;
    padding: 3rem 30px;
    margin-top: 8rem;
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
}
.contact .contact-note{
    margin-top: 0.35rem;
    font-size: 0.8em;
}
.contact .title{
    padding: 0.5rem 0 2.5rem;
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
}
.contact .title::after {
    content: "";
    display: block;
    margin: 0.8rem auto 0;
    width: 4rem;
    height: 4px;
    background: #d7d7d7;
}
.contact .inner{
    margin: 0 auto;
    width: 100%;
    max-width: 785px;
    display: flex;
    gap: 4rem;
}
.contact .contact-company{
    width: 50%;
    text-align: left;
}
.contact .contact-about{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.contact .contact-company .contact-company-name{
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    font-weight: 600;
}
.contact .contact-about .linkbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 0.35rem 0;
    padding: 0.75rem 1.25rem;
    min-height: 4rem;
    background: #18870c;
    color: #fff;
    border-radius: 100vh;
    font-size: 1.111rem;
    line-height: 1.2;
    font-weight: 400;
}
.contact .contact-about .link-tel.linkbtn {
    font-size: 0.7rem;
}
.contact .contact-about .linkbtn .contact-about_sub{
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    display: block;
    letter-spacing: 0.05em;
}
.contact .contact-about .linkbtn .contact-about_tel{
    font-weight: 800;
    font-size: 1.222rem;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 768px){   /*PC*/
    .contact .contact-about .linkbtn {
        font-weight: 600;
    }
    .contact .contact-about .link-tel.linkbtn,
    .contact .contact-about .linkbtn:hover{
        background: #fff;
        color: #0C5D03;
    }
    .contact .contact-about .link-tel.linkbtn{
        order: 2;
    }
}
@media screen and (max-width: 767px){   /*SP*/
    .contact{
        margin-top: 4rem;
        padding: 2rem 1.5rem;
        font-size: 0.85rem;
    }
    .contact .title{
        padding: 0.5rem 0 1.75rem;
        font-size: 1.45rem;
    }
    .contact .inner{
        /* flex-direction: column-reverse; */
        flex-direction: column;
        gap: 1rem;
    }    
    .contact .contact-company{
        width: 100%;
        text-align: center;
    }
    .contact .contact-company .contact-company-name{
        font-size: 1.222rem;
    }    
    .contact .contact-about{
        width: 100%;
    }
}


/* privacy-page */
.cmn-main{
    font-size: 16px;
    list-style: 2;
}
.cmn-top{
    position: relative;
    margin: 0 0 3rem;
    font-weight: 600;
    line-height: 1.4;
}
.cmn-top::before{
    content: "";
    width: 100%;
    height: 100px;
    display: block;
    overflow: hidden;
    background-color: #263f24;
    background: url(../img/mv.jpg) no-repeat center center;
    background-size: cover;
    color: #fff;
    font-weight: 600;
    line-height: 1.4;
}
.cmn-top .cmn-top-inner{
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
    width: 880px;
    max-width: 100%;
}
.cmn-top h1{
    margin: 5rem 0 3rem;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}
.cmn-top .cmn-wrap-caution{
    margin: 1rem 0 0;
    padding: 1.5rem;
    border: 4px solid #b9c737;
    background: #fff;
    color: #333;
}
.cmn-contents{
    margin: 4rem auto;
    padding: 0 1.5rem;
    width: 880px;
    max-width: 100%;
}
.cmn-foot{
    margin: 6rem auto 3rem;
    padding: 0 1.5rem;
    width: 880px;
    max-width: 100%;
}

.cmn-contents .cmn-contents_sec{
    margin: 1.5rem 0;
}
.cmn-wrap{
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #F6F6F6;
}
.cmn-main a.cmn-home{
    display: block;
    margin: 4rem 0;
    text-align: center;
}
.cmn-main h2{
    margin: 5rem 0 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}
.cmn-main h3{
    margin: 2rem 0 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}
.cmn-main ul li {
    position: relative;
    padding-left: 1.5em;
}
.cmn-main ul li:before {
    content: '';
    position: absolute;
    top: .8em;
    left: 0;
    width: 4px;
    height: 4px;
    background: #999;
}
.cmn-main ol {
    counter-reset: num;
}
.cmn-main ol li {
    position: relative;
    padding-left: 1.5em;
}
.cmn-main ol li:before {
    counter-increment: num;
    content: counter(num) ".";
    position: absolute;
    top: 0;
    left: 0.05em;
}
.cmn-main ol.p1 li:before {
    content: "("counter(num) ")";
    left: -0.2em;
}

.cmn-main .linkbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    width: fit-content;
    margin: 1.5rem auto;
    padding: 0.75rem 2.25rem;
    min-height: 3rem;
    background: #fff;
    color: #18870c;
    border: #d7dfd0 1px solid;
    border-radius: 100vh;
    font-size: 0.9125rem;
    line-height: 1.2;
    font-weight: 400;
}

@media screen and (min-width: 768px){   /*PC*/
    .cmn-main .linkbtn:hover{
        background-color: #EBF5E3;
        border-color: #18870c;
    }
}

@media screen and (max-width: 767px){
    .cmn-top::before{
        height: 80px;
    }
    .cmn-top h1{
        margin: 2.5rem 0;
    }
    .cmn-main h2{
        margin: 2.5rem 0 1.25rem;
        font-size: 1rem;
    }
    .cmn-contents{
        margin: 1.25rem auto;
    }
    .cmn-main .linkbtn {
        margin: 3.5rem auto;
        padding: 0.75rem 2rem;
    }
    
}
