
body{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
    line-height: 2em;
    font-weight: 500;
    color: #333;
    background-color:#F8F5EC;
}

/* ------------

共通パーツ

--------------- */
img{max-width: 100%;}

.tac{text-align: center;}

/* リンクボタン */
a{
    transition: 0.3s;
}
a.link-btn{
    background-color: #51A8A4;
    color: #fff;
    width: 90%;
    max-width: 280px;
    display: block;
    text-align: center;
    margin: 24px auto 0;
    padding: 12px 0;
    border-radius: 3rem;

}
a.link-btn.left{
    margin: 24px auto 0 0;
}
a.link-btn:hover{
    background-color:#0A5A57;
}
/* 電話リンク スマホのみ適用 */
@media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}


/* レイアウト */
.inner-contents{
    width: 88%;
    max-width: 1100px;
    margin-inline: auto;
}
.inner-contents.min-width{max-width: 900px;}
section{
    margin-bottom: 100px;
}



.sp-only{display: none;}
.pc-only{display: inherit;}
@media (max-width: 767px) {
    .sp-only{display: inherit;}
    .pc-only{display: none;}
}

/* headding */
h2{
    font-size:2.6rem;
    line-height: 1.6em;
    letter-spacing: .2rem;
    margin-bottom: 46px;
}
h2.headding-center{
    text-align: center;
}

h3{
    font-size: 1.6rem;
    margin-bottom: 32px;
}
h3.bg-line{
    background-color: #fff;
    border-left: 5px solid #51A8A4;
    padding: 24px;
}


/* ----------------------- */
/* header
/* ----------------------- */
.burger-btn {
    display: none;
}

header{
    background-color: rgba(255,255,255,0.9);
    padding: 0 0 0 0;
    position: fixed;
    width: 100%;
    z-index: 5;
}
header h1.logo{
    width: 30%;
    max-width:240px;
    margin-left: 5%;
}
header nav.globalNav ul,
.header-inner{
    display: flex;
    align-items: center;
}
.header-inner{
    width: 100%;
    height: 80px;
    margin-inline:auto ;
    justify-content: space-between;
}
header nav.globalNav ul{
    justify-content: flex-end;
    text-align: center;
    gap: 24px;
    font-size: 0.9rem;
}
header nav.globalNav ul li{
    text-align: center;
    font-weight: 700;
}

header nav.globalNav ul li a{
    display: block;
    position: relative;
    
}
header nav.globalNav ul li a::after{
    position: absolute;
    content: "";
    bottom:-2px;
    left: 0;
    width: 0;
    height: 2px;
    transition: .3s;
    opacity: 0;
    background-color: #51A8A4;
}
header nav.globalNav ul li a:hover{
    color: #51A8A4;
}
header nav.globalNav ul li a:hover::after{
    opacity: 1;
    transition: .3s;
    width: 100%;
}
header nav.globalNav ul li.contact a{
    background-color: #51A8A4;
    color: #fff;
    padding: 24px 10px;
}
header nav.globalNav ul li.contact a::after{display: none;}
header nav.globalNav ul li.contact a:hover{
    background-color:#0A5A57;
}


/* ----------------------- */
/* main-visual
/* ----------------------- */
section.main-visual{
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url(../images/index/bg-mv.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    width: 100%;
    height: 780px;
    margin-bottom: 0;
    padding-top: 80px;
}


section.main-visual .mv-inner{
    width: 80%;
    margin-inline:auto ;
}

section.main-visual .mv-inner h1{
    display: inline;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	padding: .3em;
	background-color: #51A8A4;
    font-size: 2.1rem;
    line-height: 2.5em;
}
section.main-visual .mv-inner p{
    font-size: 6rem;
    line-height: 1.3em;
    letter-spacing: .1em;
    font-weight: 500;
    color: #146C69;
}
section.main-visual .mv-inner ul{
    display: flex;
    gap: 6px;
    margin-top: 24px;
}
section.main-visual .mv-inner ul li{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    color: #51A8A4;
    background-color: #fff;
    border: 2px solid #51A8A4;
    border-radius: 6px;
    box-sizing: border-box;
    width: 150px;
    height: 150px;
    font-size: 1rem;
    line-height: 1.6em;
    padding: 16px 8px;
}
section.main-visual .mv-inner ul li img{
    width: 100%;
    max-width: 52px;
    margin-bottom: 20px;
}
section.main-visual .mv-inner ul li.icon000 img,
section.main-visual .mv-inner ul li.icon002 img,
section.main-visual .mv-inner ul li.icon003 img{
    margin-bottom: 8px;
}


/* ----------------------- */
/* concept
/* ----------------------- */
.index-concept{
    position: relative;
    z-index: 1;
    padding-top: 4%;
    padding-bottom: 4%;
}
.index-concept::after{
    content: "";
    position: absolute;
    z-index: -1;
    top:0;
    left: 0;
    width: 48%;
    height: 100%;
    background-image: url(../images/index/img-concept.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-bottom-right-radius:5rem;
    
}
.index-concept .ic-text{
    width: 45%;
    margin-left: auto;
}
.index-concept .ic-text p{
    margin-bottom: 20px;
}

/* ----------------------- */
/* search
/* ----------------------- */
article.limited{
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
article.limited div.limited-bnr{width: 60%;}
article.limited div.limited-detail{width: 35%;}

.search-list-bnr{
    position: relative;
    overflow: hidden;
    margin-bottom: 12px;
    border-radius: 8px;
}
.search-list-bnr div.slb-headding{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 45%;
    height: 100%;
    z-index: 1;
    background-color: #09524E;
    background-image: url(../images/index/icon-arrow.png);
    background-repeat: no-repeat;
    background-size:20px;
    background-position: 94% 94%;
    color: #fff;
    text-align: center;
    transition: .4s;
}
.search-list-bnr div.slb-headding p.slb-icon img{
    width: 100%;
    max-width: 80px;
}
.search-list-bnr div.slb-headding h3{
    font-size: 1.8rem;
    line-height: 1.6em;
    margin-top: 20px;
    margin-bottom: 0;
}
.search-list-bnr p.slb-img img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 7;
    transition: .4s;
}
.limited-bnr a:hover .search-list-bnr p.slb-img img{
    transform:scale(1.2,1.2);
}
.limited-bnr a:hover .search-list-bnr div.slb-headding{
    background-color:#51A8A4;
}
p.link-limited{
    margin-top: 32px;
}
p.link-limited a{
    display: block;
    background-color: #146C69;
    color: #fff;
    padding:1.5rem;
    border-radius: 0.4rem;
    background-image: url(../images/index/icon-arrow.png);
    background-repeat: no-repeat;
    background-position: 96% center ;
    background-size: 16px;
}
p.link-limited a:hover{
    background-color: #51A8A4;
}

article.search-list{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap:40px 32px;
    margin-bottom: 40px;
}
article.search-list div.search-unit{
    background-color: #fff;
    border-radius: 10px;
    padding: 1.2rem;
}
article.search-list div.search-unit div.search-deadding{
    display: flex;
    align-items: center;
    border-top: 1px solid #ccc;
    margin-bottom: 12px;
}
article.search-list div.search-unit div.search-deadding p.icon{
    width: 80px;
    height: 80px;
    background-color: #51A8A4;
    padding: 1rem;
    box-sizing: border-box;
    margin-right: 1rem;
}
article.search-list div.search-unit div.search-deadding h3{
    font-size: 1.2rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}
article.search-list div.search-unit div.search-deadding h3 span{
    font-size: 1.5rem;
    margin-right: 6px;
}
article.search-list div.search-unit img.search-img{
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16 / 8;
    margin-bottom: 12px;
}
article.search-list div.search-unit ul.link-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 20px;
}
article.search-list div.search-unit ul.link-list li a{
    display: block;
    background-color: #51A8A4;
    color: #fff;
    padding: 0.8rem;
    border-radius: 0.4rem;
    background-image: url(../images/index/icon-arrow.png);
    background-repeat: no-repeat;
    background-position: 96% center ;
    background-size: 16px;
}
article.search-list div.search-unit ul.link-list li a:hover{
    background-color: #146C69;
}


/* ----------------------- */
/* feature
/* ----------------------- */
section.index-feature{
    position: relative;
    z-index: 1;
    padding-bottom:2%;
}
section.index-feature::after{
    position: absolute;
    z-index: -1;
    content: "";
    width: 54%;
    height: 100%;
    background-color:#F2EBD8;
    top:36px;
    right: 0;
}

div.feature-unit article{
    background-color: #fff;
    border-radius: 20px;
    padding: 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}
div.feature-unit article:last-of-type{margin-bottom: 0;}
div.feature-unit article p.fe-img{width: 45%;}
div.feature-unit article div.fe-text{width: 50%;}


/* ----------------------- */
/* access
/* ----------------------- */
div.access-info ul{
    text-align: center;
    margin: 24px 0;
}
div.googlemap iframe{
    width: 100%;
}


/* ----------------------- */
/* company
/* ----------------------- */
section.index-conmpay article{
    margin-bottom: 80px;
}
div.default-table{
    margin-top: 40px;
}
div.default-table table{
    width: 100%;
}

div.default-table table tr{
    border-bottom: 1px dotted #ccc;
}
div.default-table table tr th,
div.default-table table tr td{
    box-sizing: border-box;
    vertical-align: middle;
    padding: 16px 12px;
}
div.default-table table tr th{width: 20%;}
div.default-table table tr td{width: 80%;}

div.default-table table tr td ul li{
    list-style: disc;
    margin: 0 0 4px 20px;
}



/* ----------------------- */
/* CTA
/* ----------------------- */
section.cta{
    width: 90%;
    max-width: 1100px;
    margin: 80px auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    background-color: #51A8A4;
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
}
p.cta-img{
    width: 48%;
}
p.cta-img img{
    width: 100%;
    height: 460px;
    object-fit: cover;
}

div.cta-text{
    width: 55%;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
div.cta-text h2{
    letter-spacing: 0;
    font-size: 2.2rem;
    margin-bottom: 24px;
}
div.cta-text p.cta-caption{
    margin-bottom: 36px;
}
div.cta-text p.cta-tel{
    font-size: 1.6rem;
}
div.cta-text p.cta-tel span{
    font-size: 3rem;
}    
p.cta-mail{
    width: 90%;
    max-width:400px;
    margin-top: 24px;
}

div.cta-text p.cta-mail a{
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    color: #51A8A4;
    font-size: 1.2rem;
    padding-top: 20px;
    padding-bottom: 20px;
    display: block;
    border-radius: 5rem;
}

div.cta-text p.cta-mail a:hover{
    background-color: #0A5A57;
    color: #fff;
}

/* ----------------------- */
/* footer
/* ----------------------- */
footer{
    background-color: #fff;
    padding: 40px 0;
}
footer div.footer-info{
    text-align: center;
}
footer div.footer-info h2{
    width: 80%;
    max-width: 200px;
    margin:0 auto 24px;
}
footer div.footer-info p.site-name{
    font-weight: 700;
    font-size: 1.1rem;
}
ul.foot-bnr{
    margin-top: 32px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
ul.foot-bnr li{
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    max-width: 280px;
    transition: .3s;
}
ul.foot-bnr li:hover{
    opacity: .4;
}


.copy-write{
    border-top:1px solid #ccc ;
    margin-top: 36px;
    padding-top: 36px;
    padding-bottom: 36px;
    text-align: center;
    font-size: 0.75rem;
}

/* タブレット対応 */
@media screen and ( max-width:1024px) {
    /* ----------------------- */
    /* header-tablet
    /* ----------------------- */
    header h1.logo{
        max-width:180px;
        margin-left: 2%;
    }

    header nav.globalNav ul{
        gap: 16px;
    }
    /* ----------------------- */
    /* main-visual-tablet
    /* ----------------------- */
    section.main-visual{
        height: 800px;
        aspect-ratio: auto;
    }
    section.main-visual .mv-inner{
        width: 94%;
    }
    
    section.main-visual .mv-inner h1{
        font-size: 1.8rem;
    }
    section.main-visual .mv-inner p{
        font-size: 5rem;
    }
    section.main-visual .mv-inner ul{
        width: 76%;
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    section.main-visual .mv-inner ul li{
        justify-content: center;
        width: auto;
        height: 140px;
        font-size: 1.1rem;
        padding: 2px 4px;
    }
    section.main-visual .mv-inner ul li img{
        max-width: 50px;
        margin-bottom: 16px;
    }
    section.main-visual .mv-inner ul li.icon003 img{
        margin-bottom: 8px;
    }

    /* ----------------------- */
    /* concept-tablet
    /* ----------------------- */
    .index-concept{
        padding-bottom: 340px;
    }

    .index-concept::after{
        top:auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 320px;
        border-bottom-right-radius:0;
        
    }
    .index-concept .ic-text{
        width: 100%;
        margin:0 auto;
    }

    /* ----------------------- */
    /* search-tablet
    /* ----------------------- */
    article.limited{
        flex-direction: column;
        width: 80%;
        margin:0 auto 40px;
    }
    article.limited div.limited-bnr{width: 100%;}
    article.limited div.limited-detail{width: 100%;}

    article.search-list{
        gap:32px 16px;
    }
    article.search-list div.search-unit div.search-deadding p.icon{
        width: 60px;
        height: 60px;
        padding: 0.8rem;
        margin-right: 0.5rem;
    }
    article.search-list div.search-unit div.search-deadding h3{
        font-size: 1rem;
    }
    article.search-list div.search-unit div.search-deadding h3 span{
        font-size: 1.3rem;
    }
    article.search-list div.search-unit ul.link-list{
        grid-template-columns: repeat(1,1fr);
        gap: 12px;
        margin-top: 20px;
    }
    article.search-list div.search-unit ul.link-list li a{
        padding: 0.8rem;
        background-size: 16px;
    }

    .search-list-bnr div.slb-headding{
        width: 55%;
        background-size:16px;
    }

    .search-list-bnr div.slb-headding p.slb-icon img{
        max-width: 50px;
    }
    .search-list-bnr div.slb-headding h3{
        font-size: 1.8rem;
        margin-top: 10px;
    }
    .search-list-bnr div.slb-headding h3 span{
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    /* ----------------------- */
    /* feature-tablet
    /* ----------------------- */
    div.feature-unit article{
        padding: 4%;
    }

    /* ----------------------- */
    /* CTA-tablet
    /* ----------------------- */
    section.cta{
        flex-direction: column-reverse;
        border-radius: 16px;
    }
    p.cta-img{
        width: 100%;
    }
    p.cta-img img{
        height: 380px;
    }

    div.cta-text{
        width: 100%;
        padding: 36px 0;
    }

}

/* PC時ハンバーガーメニュー非表示 */
@media screen and (min-width: 767px) {
    .sp-menu {
        display: none;
    }
}

/* SP対応 */
@media screen and (max-width:768px) {
    body{
        font-size: 14px;
    }

    section{
        margin-bottom: 50px;
    }

    /* headding-sp */
    h2{
        font-size:1.5rem;
        margin-bottom: 28px;
    }
    h3{
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    a.link-btn,
    a.link-btn.left{
        max-width: 90%;
        margin: 32px auto 0;
    }

    /* ----------------------- */
    /* ハンバーガーメニュー
    /* ----------------------- */
    .sp-menu {
        width: 48px;
        height: 48px;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #51A8A4;
        z-index: 999;
        display: block;
    }

    /* ハンバーガーメニューの線 */
    .sp-menu span {
        width: 60%;
        height: 1px;
        background-color: #fff;
        position: relative;
        transition: ease .4s;
        display: block;
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto;
    }

    .sp-menu span:nth-child(1) {
        top: 0;
    }

    .sp-menu span:nth-child(2) {
        margin: 8px auto;
    }

    .sp-menu span:nth-child(3) {
        top: 0;
    }

    /* ハンバーガーメニュークリック後のスタイル */
    .sp-menu.active {
        background-color: #0A5A57;
    }

    .sp-menu.active span:nth-child(1) {
        top: 5px;
        transform: rotate(45deg);
    }

    .sp-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .sp-menu.active span:nth-child(3) {
        top: -13px;
        transform: rotate(-45deg);
    }

    /* ----------------------- */
    /* header-sp
    /* ----------------------- */
     header{
        position: static;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    header h1.logo{
        width: 45%;
        max-width:100%;
        box-sizing: border-box;
    }
    .header-inner{
        width: 100%;
        height: auto;
    }
    header nav.globalNav {
        position: fixed;
        top: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(100%);
        opacity: 0;
        background-color: #fff;
        transition: ease .3s;
        z-index: 88;
        box-sizing: border-box;
        overflow-y: scroll;
    }
    header nav.globalNav.active {
        transform: translateX(0);
        opacity: 1;
    }

    header nav.globalNav ul{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        font-size: 0.9rem;
    }
    header nav.globalNav ul li{
        width: 100%;
        display: block;
        text-align: left;
    }
    header nav.globalNav ul li a{
        border-bottom:1px dotted #ccc ;
        display: block;
        padding: 16px 8%;
    }
    header nav.globalNav ul li a::after,
    header nav.globalNav ul li a:hover::after{
        display: none;
        border: none;
    }
    header nav.globalNav ul li a:hover{
        background-color:#51A8A4;
        color: #fff;
    }

    header nav.globalNav ul li.contact{
        width: 90%;
        margin: 20px auto;
        text-align: center;
    }
    header nav.globalNav ul li.contact a{
        border: none;
    }

    /* ----------------------- */
    /* main-visual-sp
    /* ----------------------- */
    section.main-visual{
        background-image: url(../images/index/bg-mv-sp.jpg);
        background-position: center bottom;
        width: 100%;
        height: 530px;
        padding-top: 0;
    }
    section.main-visual .mv-inner{
        padding-bottom:0;
        width: 90%;
        padding-top:0;
    }
    section.main-visual .mv-inner h1{
        font-size: 1.2rem;
    }
    section.main-visual .mv-inner p{
        font-size: 2.4rem;
        margin-top: 0.5rem;
    }

    section.main-visual .mv-inner ul{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 6px;
        margin-top: 60px;
        width: 100%;
    }
    section.main-visual .mv-inner ul li{
        justify-content: center;
        align-items: center;
        width: auto;
        height: 100px;
        font-size: 0.8rem;
        padding: 0;
    }
    section.main-visual .mv-inner ul li img{
        max-width: 30px;
        margin-bottom: 10px;
    }
    section.main-visual .mv-inner ul li.icon003 img{
        margin-bottom: 6px;
    }

    /* ----------------------- */
    /* concept-sp
    /* ----------------------- */
    .index-concept{
        position: relative;
        z-index: 1;
        padding-top: 4%;
        padding-bottom: 220px;
    }
    .index-concept::after{
        top:auto;
        bottom:0;
        left: 0;
        width: 100%;
        height: 200px;
        background-image: url(../images/index/img-concept.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-bottom-right-radius:0;
        
    }
    .index-concept .ic-text{
        width: 100%;
        margin:0 auto;
    }
    .index-concept .ic-text p{
        margin-bottom: 16px;
    }

    /* ----------------------- */
    /* search-sp
    /* ----------------------- */
    article.limited{
        width: 100%;
        flex-direction: column;
        margin-bottom: 30px;
    }
    article.limited div.limited-bnr{width: 100%; margin-bottom: 10px;}
    article.limited div.limited-detail{width: 100%;}
    
    .search-list-bnr{
        border-radius: 6px;
    }
    .search-list-bnr div.slb-headding{
        width: 55%;
        background-size:16px;
    }
    .search-list-bnr div.slb-headding p.slb-icon img{
        max-width: 40px;
    }
    .search-list-bnr div.slb-headding h3{
        font-size: 1rem;
        margin-top: 10px;
    }
    .search-list-bnr div.slb-headding h3 span{
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .search-list-bnr p.slb-img img{
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 16 / 7;
        transition: .4s;
    }
    p.link-limited{
        margin-top: 16px;
    }
    p.link-limited a{
        padding:1.2rem;
    }
    
    article.search-list{
        grid-template-columns: repeat(1, 1fr);
        gap:30px;
        margin-bottom: 32px;
    }
    article.search-list div.search-unit{
        padding: 1rem;
    }
    article.search-list div.search-unit div.search-deadding p.icon{
        width: 60px;
        height: 60px;
        padding: 0.8rem;
        margin-right: 1rem;
    }
    article.search-list div.search-unit div.search-deadding h3{
        font-size: 1rem;
    }
    article.search-list div.search-unit div.search-deadding h3 span{
        font-size: 1.2rem;
    }
    article.search-list div.search-unit img.search-img{
        aspect-ratio: 16 / 9;
    }
    article.search-list div.search-unit ul.link-list{
        grid-template-columns: repeat(1,1fr);
        gap: 12px;
        margin-top: 20px;
    }
    article.search-list div.search-unit ul.link-list li a{
        padding: 0.8rem;
        background-size: 16px;
    }


    /* ----------------------- */
    /* feature-sp
    /* ----------------------- */
    section.index-feature{
        padding-bottom:30px;
    }
    section.index-feature::after{
        width: 65%;
        top:18px;
    }

    div.feature-unit article{
        border-radius: 8px;
        padding: 5%;
        flex-direction: column;
        margin-bottom: 32px;
    }
    div.feature-unit article p.fe-img{width: 100%;}
    div.feature-unit article div.fe-text{width: 100%; margin-top: 24px;}
    div.feature-unit article div.fe-text h3{text-align: center;}


    /* ----------------------- */
    /* access
    /* ----------------------- */
    div.googlemap iframe{
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 4 / 3;
    }

    /* ----------------------- */
    /* company-sp
    /* ----------------------- */
    section.index-conmpay article{
        margin-bottom: 50px;
    }
    div.default-table{
        margin-top: 20px;
    }

    div.default-table table tr th,
    div.default-table table tr td{
        display: block;
    }
    div.default-table table tr th{width: 100%; padding: 12px 6px 0;}
    div.default-table table tr td{width: 100%; padding: 0 0 12px 16px;}

    div.default-table table tr td ul li{
        list-style: disc;
        margin: 0 0 4px 20px;
    }


    



    /* ----------------------- */
    /* CTA-sp
    /* ----------------------- */

    section.cta{
        margin: 60px auto;
        flex-direction: column-reverse;
        border-radius:12px;
    }
    p.cta-img{
        width: 100%;
    }
    p.cta-img img{
        width: 100%;
        height: auto;
        object-fit: cover;
        aspect-ratio: 16 / 9;
    }

    div.cta-text{
        width: 90%;
        margin: 20px auto;
    }
    div.cta-text h2{
        font-size: 1.4rem;
        margin-bottom: 24px;
    }
    div.cta-text p.cta-caption{
        margin-bottom: 20px;
    }
    div.cta-text p.cta-tel{
        font-size: 1.4rem;
    }
    div.cta-text p.cta-tel span{
        font-size: 2rem;
    }

    p.cta-tel,
    p.cta-mail{
        width: 100%;
    }

    div.cta-text p.cta-tel a,
    div.cta-text p.cta-mail a{
        display: block;
        background-color: #fff;
        font-size: 1rem;
        padding-top: 16px;
        padding-bottom: 16px;
        border-radius: 5rem;
        color: #51A8A4;
    }

    div.cta-text p.cta-mail a:hover,
    div.cta-text p.cta-mail a:hover{
        background-color: #0A5A57;
        color: #fff;
    }
    
    /* ----------------------- */
    /* footer-sp
    /* ----------------------- */
    footer{
        padding: 24px 0;
    }
    footer div.footer-info p.site-name{
        font-size: 1rem;
    }
    ul.foot-bnr{
        width: 70%;
        margin:24px auto 0;
        flex-direction: column;
        gap: 12px;
    }
    
    
    .copy-write{
        margin-top: 24px;
        padding-top: 24px;
        padding-bottom: 24px;
        font-size: 0.8rem;
    }

}


  
  
