/*===============================================
 *	お知らせ
===============================================*/
.news{
    margin-top: 100px;
}
.news-list{
    max-width: 1020px;
}
.news-list ul{
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    max-height: 243px;
    margin-top: 60px;
}
.news-list ul::-webkit-scrollbar{
    width: 25px;
}
.news-list ul::-webkit-scrollbar-track{
    background: var(--site-secondary);
    
}
.news-list ul::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 8px;
    border: 4px solid var(--site-secondary);
}

.news-list ul::-webkit-scrollbar-button:single-button {
    background: var(--site-secondary);
    display: block;
    }
.news-list ul li{
    display: flex;
    border-bottom: 1px solid #a8a8a8;
    padding: 25px 20px;
    align-items: center;
}
.arrival{
    background: var(--site-secondary);
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 3px 20px;
    margin-right: -80px;
}
.blinking{
	-webkit-animation:blink .5s ease-in-out infinite alternate;
    -moz-animation:blink .5s ease-in-out infinite alternate;
    animation:blink .5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.day{
    margin-right: 85px;
    margin-left: 100px;
}

@media only screen and (max-width: 1024px) {
    
}

@media only screen and (max-width: 960px) {

}

@media only screen and (max-width: 568px) {
.news{
    margin-top: 50px;
}
.news-list ul{
    max-height: 360px;
}
.news-list ul li{
    display: block;
    padding: 15px 10px 10px 0 ;
}
.news-list ul li .arrival{
    display: inline-block;
    width: 50px;
    font-size: 12px;
    padding: 2px 10px 3px;
    border-radius: 5px;
    margin-right: 10px;
}
.news-list ul li .day{
    display: inline-block;
    margin-left: 0;
    margin-right: 0;
}
.news-content{
    margin-top: 10px;
}
}

/*===============================================
 *	about
===============================================*/
.about .intro{
    margin-bottom: 50px;
}
.about-txt{
    max-width: 673px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}
.about-txt h3{
    font-size:24px;
    font-weight: bold;
    margin-bottom: 10px;
}
.about-img{
    max-width: 408px;
}
.about_point{
    background: #fff;
    border-radius: 10px;
    
    margin-bottom: 50px;
    font-weight: bold;
    padding: 20px 0;
}
.about_point h3{
    font-size: 38px;
    font-weight: bold;
    position: relative;
}
.about_point .pet::before{
    background:url(../img/top/silhouette_dog.svg)no-repeat center top;
    content: '';
    width: 53px;
    height: 79px;
    background-size: contain;
    position: absolute;
    right: 87%;
    bottom:5%;
}
.about_point .pet::after{
    background:url(../img/top/silhouette_cat.svg)no-repeat center top;
    content: '';
    width: 49px;
    height: 50px;
    background-size: contain;
    position: absolute;
    left: 87%;
    bottom:10%;
}
.about .bnr_link{
    margin-bottom: 50px;
}
.about .bnr_link:hover{
    opacity: .8;
    transition: .5s ;
}
@media only screen and (max-width: 1024px) {
    .about .intro{
        gap: 20px;
    }
    .about-txt{
        width: 70%;
    }
    .about_point h3{
        font-size: clamp(22px, 3vw, 38px);
        
    }
}

@media only screen and (max-width: 960px) {

}

@media only screen and (max-width: 568px) {
    .about .intro{
        display: block;
        margin-bottom: 30px;
    }
    .about-img{
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    .about-txt{
        width: 100%;
        padding: 20px;
    }
    .about_point{
        margin: 0 -5.3vw 30px;
        border-radius: 0;
    }
    .about_point h3{
        font-size: 20px;
    }
    .about_point .pet::before{
        left: 3%;
        width: 30px ;
        bottom: -33%;
    }
    .about_point .pet::after{
        right:3%;
        width: 30px ;
        bottom: -18%;
    }
    .about .bnr_link{
        margin-bottom: 20px;
    }
}

/*===============================================
 *	特徴＆強み
===============================================*/
.features ul{
    row-gap: 60px;
    margin-top: 60px;
}
.features ul li{
    max-width: 468px;
    
}
.features ul li img{
    margin-bottom: 30px;
}
.features ul li h3{
    text-align: center;
    margin-bottom: 20px;
    font-size: 22px;
}
@media only screen and (max-width: 960px) {
    .features ul li{
        max-width: 45%;
    }
}
@media only screen and (max-width: 568px) {
    .features ul{
        row-gap: 10px;
    }
    .features ul li{
        max-width: 100%;
    }
    .features ul li img{
        max-width: 80%;
        display: block;
        margin: 10px auto;
    }
    .features ul li h3{
        font-size: 18px;
        margin-bottom: 10px;
    }

}

/*===============================================
 *	ペットと生活するメリット
===============================================*/
.merit-content{
    margin-bottom: 50px;
}
.merit h3{
    font-size: 36px;
    position: relative;
    padding-left: 25px;
    padding-top: 15px;
    margin-bottom: 30px;
}
.merit h3::before{
    background: url(../img/top/circle.png)no-repeat center top;
    content: '';
    width: 78px;
    height: 78px;
    position: absolute;
    left: 0;
    top: 0;
}
.therapy_img{
    max-width: 492px;
}
.therapy ul{
    max-width: 547px;
    
}
.therapy ul li{
    margin-bottom: 40px;
    padding-left: 130px;
    position: relative;
}
.therapy ul li::before{
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    content: '';
}
.therapy ul li:first-child::before{
    background: url(../img/top/icon_merit01.png)no-repeat center top;
    width: 95px;
    height: 82px;
}
.therapy ul li:nth-child(2)::before{
    background: url(../img/top/icon_merit02.png)no-repeat center top;
    width: 95px;
    height: 97px;
}
.therapy ul li:nth-child(3)::before{
    background: url(../img/top/icon_merit03.png)no-repeat center top;
    width: 95px;
    height: 80px;
    content: '';
}
.therapy ul li h4{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}
.therapy ul li h4 span{
    background:linear-gradient(transparent 60%, #93e139 60%);
}
@media only screen and (max-width: 1024px) {
    .therapy{
        width: 100%;
        gap: 20px;
    }
    .therapy_img{
        width: 48%;
    }
    .therapy ul{
        width: 48%;
    }
}
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 568px) {
    .merit-content{
        margin-bottom: 20px;
    }
    .merit-content h3{
        font-size: 20px;
        padding:5px 0 0 13px ;
        margin-bottom: 10px;
    }
    .merit-content h3::before{
        width: 39px;
        height: 39px;
        background-size: contain;
    }
    .therapy_img{
        width: 100%;
    }
    .therapy ul{
        margin-top: 20px;
        width: 100%;
    }
    .therapy ul li{
        padding-left: 70px;
        margin-bottom: 20px;
    }
    .therapy ul li h4{
        font-size: 20px;
        margin-bottom: 10px;
    }
    .therapy ul li::before{
        top: 2%;
        left: 0%;
        transform: translateY(0%);
        -webkit-transform: translateY(0%);
        background-size: contain;
    }
    .therapy ul li:first-child::before{
        width: 46px;
        height: 41px;
        background-size: contain;
        top: 2%;
    }
    .therapy ul li:nth-child(2)::before{
            width: 44px;
            height: 43px;
            background-size: contain;
            top: 2%;
    }
    .therapy ul li:nth-child(3)::before{
        width: 44px;
        height: 43px;
        background-size: contain;
        top: 2%;
    }

}

/*===============================================
 *	サービス紹介
===============================================*/
.service ul{
    gap:2.8%;
    justify-content: center;
    margin-top: 100px;
}
.service ul li{
    max-width: 352px;
    margin-bottom: 60px;
}
.service ul li .md_radius{
    margin-bottom:20px;
}
.service ul li p{
    font-weight: bold;
}
.caution p{
    text-align: right;
    color: #979797;
    font-weight: bold;
}
@media only screen and (max-width: 1024px) {
    .service ul li{
        max-width: 48%;
        width: 100%;
    }
}
@media only screen and (max-width: 960px) {
    .service ul li{
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 568px) {
    .service ul{
        margin-top: 70px;
    }
    .service ul li .md_radius{
        border-radius: 10px;
    }
    .service ul li p{
        line-height: 1.3;
    }
    .caution p{
        font-size: 14px;
        font-weight: normal;
        text-align: left;
    }
}

/*===============================================
 *	1日の流れ
===============================================*/
.flow ul{
    margin-bottom: 80px;
}
.flow ul li{
    max-width: 186px;
    width: 100%;
    display: flex;
}
.flow ul li img{
    max-width: 152px;
}
.flow ul li:last-child{
    max-width: 152px;
}
.flow ul li::after{
    content: '';
    background: url(../img/top/arrow-right-green.svg)no-repeat center;
    width: 23px;
    height: 20px;
    display: inline-block;
    margin:70px 0 0 10px;
}
.flow ul li:last-child::after{
    content: none;
}
.flow_content img{
    margin-bottom: 20px;
}
.flow_content p{
    font-weight: bold;
    font-size: 20px;
    line-height: 1.2;
}
.flow_content p sub{
    font-size: 14px;
}
.flow ul li:nth-child(4) .flow_content p sub{
    font-size: 14px;
    letter-spacing: 0;
}
.flow_content p::before{
    content: '';
    display: block;
    text-align: center;
    width: 50px;
    height: 50px;
    background: url(../img/top/clock01.png)no-repeat center top;
    margin: 10px auto;
}
.flow ul li:nth-child(2) .flow_content p::before{
    background: url(../img/top/clock02.png)no-repeat center top;
}
.flow ul li:nth-child(3) .flow_content p::before{
    background: url(../img/top/clock03.png)no-repeat center top;
}
.flow ul li:nth-child(4) .flow_content p::before{
    background: url(../img/top/clock04.png)no-repeat center top;
}
.flow ul li:nth-child(5) .flow_content p::before{
    background: url(../img/top/clock05.png)no-repeat center top;
}
.flow ul li:nth-child(6) .flow_content p::before{
    background: url(../img/top/clock06.png)no-repeat center top;
}
.flow .caution p{
    font-weight: normal;
}
@media only screen and (max-width: 1024px) {
    .flow ul li{
        max-width: 16%;
    }
    .flow ul li:last-child{
        max-width: 13%;
    }
}
@media only screen and (max-width: 960px) {

}
@media only screen and (max-width: 568px) {
    .flow ul {
        justify-content: start;
        gap: 2%;
        row-gap: 10px;
        margin-bottom: 40px;
    }
    .flow ul li{
        max-width: 49%;
    }
    .flow ul li:last-child{
        max-width: 39%;
    }
    .flow ul li::after{
        margin-top: 50px;
    }
    .flow_content img{
        margin-bottom: 10px;
    }
    .flow_content p{
        font-size: 18px;
    }
    .flow_content p sub{
        font-size: 12px;
        white-space:nowrap;
    }
}

/*===============================================
 *	施設紹介、設備など
===============================================*/
.introduction ul{
    margin-top: 100px;
}
.introduction ul li{
    max-width: 322px;
    margin-bottom: 70px;
}
.introduction ul li img{
    margin-bottom: 20px;
}
.introduction ul li p{
    font-size: 24px;
    font-weight: bold;
}
.introduction_point h3{
    font-size: 32px;
    margin:0 0 20px 30px;
}
.introduction_point h3::before{
    content: '';
    background: url(../img/top/point_icon.png)no-repeat center top;
    width: 40px;
    height: 60px;
    display: inline-block;
    vertical-align: bottom;
    margin-right: 10px;
}

.link-area{
    margin-bottom: 50px;
}
.link-area a:hover{
    opacity: .7;
    transition: .5s ;
}
.benefits{
    position: relative;
}
.benefits h4{
    font-size: 22px;
    margin-bottom: 10px;
}
.benefits h4::before{
    content: '●';
    color: var(--site-secondary);
    font-size: 32px;
    line-height: 1;
    vertical-align: bottom;
}
.benefits h5{
    font-size: 18px;
    font-weight: bold;
}
.benefits p{
    margin-bottom: 20px;
}
.benefits p:last-child{
    margin-bottom: 0;
}
.benefits::after{
    content: '';
    background: url(../img/top/introduction_illust.png)no-repeat right bottom;
    width: 237px;
    height: 261px;
    position: absolute;
    right: 30px;
    top: 30px;
    background-size: contain;
}
@media only screen and (max-width: 1024px) {
    .introduction ul li{
        max-width: 30%;
    }
}
@media only screen and (max-width: 960px) {
    .benefits p{
        width: 60%;
    }
    .benefits::after{
        width: 30%;
    }
}
@media only screen and (max-width: 568px) {
    .introduction ul{
        margin-top: 70px;
    }
    .introduction ul li{
        max-width: 48%;
        margin-bottom: 30px;
    }
    .introduction ul li p{
        font-size: 18px;
    }
    .introduction_point h3{
        font-size: 22px;
        margin: 0 0 20px 10px;
    
    }
    .introduction_point h3::before{
        width: 19px;
        height: 27px;
        background-size: contain;
        vertical-align: top;
      
    }
    .link-area{
        margin-bottom: 30px;
    }
    .benefits h4{
        font-size: 18px;
    }
    .benefits h4::before{
        font-size: 20px;
        line-height: 1.4;
    }
    .benefits p:last-child{
        width: 50%;
        font-size: 14px;
        line-height: 1.5;
    }
    .benefits::after{
        width: 127px;
        height: 140px;
        background-size: contain;
        right: 20px;
        bottom: 20px;
        top:auto;
    }
    .benefits p{
        margin-bottom: 10px;
    }
}

/*===============================================
 *	入居するにはどうすればいいか
===============================================*/
.how_to .intro{
    margin-bottom: 40px;
}
.how_to_img{
    max-width: 670px;
}
.how_to_txt p{
    margin-bottom: 20px;
}
.how_to_txt p span{
    font-weight: bold;
}

.how_to_txt .btn{
    max-width: 530px;
}

.how_to_flow h3{
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}
.move_in_flow{
    margin-top: 40px;
}
.move_in_flow ul li{
    border: 6px solid var(--site-primary);
    border-radius: 10px;
    background-color: #fff;
    padding: 25px;
    position: relative;
    margin-bottom: 120px;
}
.move_in_flow ul li:last-child{
    margin-bottom: 30px;
}
.move_in_flow ul li::before{
    content: '';
    background-size: contain;
    width: 86px;
    height: 86px;
    position: absolute;
    left: -50px;
    top: -30px;
}
.move_in_flow ul li:first-child::before{
    background: url(../img/top/step_01.svg) no-repeat center top;
}
.move_in_flow ul li:nth-child(2)::before{
    background: url(../img/top/step_02.svg) no-repeat center top;
}
.move_in_flow ul li:nth-child(3)::before{
    background: url(../img/top/step_03.svg) no-repeat center top;
}
.move_in_flow ul li:nth-child(4)::before{
    background: url(../img/top/step_04.svg) no-repeat center top;
}

.move_in_flow ul li::after{
    content: '';
    background: url(../img/top/down_arrow.svg)no-repeat center;
    background-size: contain;
    width: 45px;
    height: 38px;
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
}
.move_in_flow ul li:last-child::after{
    content: none;
}


.move_in_img{
    background: #fff6dc;
    border-radius: 10px;
    padding: 25px;
    max-width: 360px;
    width: 100%;
}
.move_in_flow ul li img{
    display: block;
    margin: 0 auto;
}
.move_in_flow ul li:first-child img{
    max-width: 286px;
}
.move_in_flow ul li:nth-child(2) img{
    max-width: 185px;
}
.move_in_flow ul li:nth-child(3) img{
    max-width: 236px;
}
.move_in_flow ul li:nth-child(4) img{
    max-width: 190px;
}
.move_in_txt{
    max-width: 625px
}
.move_in_txt h4{
    color: #fff;
    display: inline-block;
    background: var(--site-primary);
    font-size: 24px;
    font-weight:bold;
    border-radius: 50px;
    text-align: center;
    padding: 5px 40px 5px 60px;
    position: relative;
    margin-bottom: 20px;
}
.move_in_txt h4::before{
    content: '●';
    color: #fff;
    position: absolute;
    left: 10px;
    top: 0;
    font-size: 30px;
}
.move_in_txt p{
    margin-bottom: 10px;
}
.move_in_txt .sub_txt{
    color: #8e8e8e;
    font-size: 14px;
    text-indent: -1em;
    padding-left: 1em;
}

.btn_yellow{
    max-width: 330px;
    border-radius: 100px;
    background: var(--site-secondary);
    text-align: center;
    margin-right: 0;
    margin-left: auto;
    display: block;
    box-shadow: 4px 5px 0px 0px #cfa23a;
}
.btn_yellow a{
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 100%;
    display: block;
    padding: 15px 0;
}
.btn_yellow a::after{
    content: '';
    background: url(../img/top/arrow-right-white.svg) center no-repeat;
    background-size: contain;
    position: absolute;
    width: 13px;
    height: 11px;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0px, -50%);
    transform: translate(0px, -50%);
}
.btn_yellow:hover{
    opacity: .7;
    transition: .5s ;
}
@media only screen and (max-width: 1024px) {
    .how_to .intro{
        width: 100%;
    }
    .how_to_img{
        max-width: 42%;
    }
    .how_to_txt{
        max-width: 55%;
    }
    .move_in_img{
        max-width: 38%;
        display: flex;
        align-items: center;
    }
    .move_in_txt{
        max-width: 58%;
    }
}
@media only screen and (max-width: 960px) {
    .move_in_flow ul li::before{
        background-size: contain;
        left: -35px;
        top: -30px;
    }
    .move_in_txt h4{
        font-size: 20px;
    }
    .move_in_txt h4::before{
        font-size: 25px;
    }

}
@media only screen and (max-width: 568px) {
    .how_to .intro{
        display:block
    }
    .how_to_img{
        max-width: 50%;
        float: left;
    }
    .how_to_txt{
        max-width: 100%;
    }
    .how_to_txt p:first-child{
        float: right;
        width: 48%;
        line-height: 1.5;
    }
    .how_to_txt p:first-child::after{
        clear: both;
    }
    .how_to_txt p{
        display: inline-block;
        margin-bottom: 10px;
    }
    .how_to_flow h3{
        font-size: 20px;
      }
    .how_to_flow p{
        text-align: left;
        line-height: 1.5;
    }

    .move_in_flow ul{
        margin:0 -5.3vw;
    }
    .move_in_flow ul li{
        border-radius: 0;
        border: 3px solid var(--site-primary);
    }
    .move_in_img{
        display: block;
        width: 100%;
        max-width: 100%;
    }
    .move_in_flow ul li:first-child img{
        max-width: 274.5px;
    }
    .move_in_flow ul li:nth-child(2) img{
        max-width: 178px;
    }
    .move_in_flow ul li:nth-child(3) img{
        max-width: 227.5px;
    }
    .move_in_flow ul li:nth-child(4) img{
        max-width: 200px;
    }
    .move_in_flow .wrap,
    .move_in_flow .row-rev{
        display: block;
    }
    .move_in_txt h4{
        width: 100%;
        font-size: 20px;
        padding: 5px 50px;
    }
    .move_in_txt h4::before{
        font-size: 26px;
        top:0;
    }
    .move_in_flow ul li::before{
        width: 57px;
        height: 57px;
        background-size: contain;
        left: 0;
        top: -30px;
    }
    .btn_yellow{
        margin-left: 0;
        margin: 0 auto;
    }
    .btn_yellow a{
        font-size: 16px;
    }
    .btn_yellow a::after{
        right: 40px;
    }
    .move_in_txt{
        margin-bottom: 40px;
        max-width: 100%;
    }
    .move_in_flow ul li{
        margin-bottom: 80px;
        border-left: none;
        border-right: none;
    }
    .move_in_flow ul li::after{
        width: 37px;
        height: 32px;
        bottom: -60px;
    }

}
/*===============================================
 *	協力医療機関のご紹介
===============================================*/
.medical_txt h3{
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.medical_txt h3::before{
    content: '';
    background: url(../img/top/medical_icon.svg)no-repeat center top;
    background-size: contain;
    width: 26px;
    height: 27px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    padding-bottom: 4px;
}
.medical_txt p{
    font-weight: bold;
    margin-bottom: 20px;
}
.medical_content{
    gap: 11%;
    margin-top: 60px;
}
.shadow-box{
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 4px 5px 0px 0px var(--site-secondary);
    padding: 15px 25px;
    margin-bottom: 20px;
}
.shadow-box p{
    margin-bottom: 0;
}
.medical img{
    max-width: 357px;
}
@media only screen and (max-width: 1024px) {
    .medical_content{
        justify-content: space-between;
        gap: 2%;
    }
    .medical .medical_txt{
        max-width: 60%;
    }
    .medical img{
        max-width: 37%;
    }
}
@media only screen and (max-width: 960px) {
    .medical_txt p{
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 568px) {
    .medical_content{
        position: relative;
    }
    .medical img{
        position: absolute;
        right: 0;
        top:0;
    }
    .medical img::after{
        clear: both;
    }
    .medical .medical_txt{
        max-width: 100%;
    }
    .medical_txt h3{
        font-size: 20px;
        text-indent: -1.8em;
        padding-left: 1.8em;
    }
    .medical_txt .address{
        margin-left: 25px;
    }
    .shadow-box p{
        margin-bottom: 0;
    }
    
}
/*===============================================
 *	よくあるご質問
===============================================*/
.faq dl{
    margin-bottom: 80px;
}
.faq dl dt{
    font-weight: bold;
    margin-bottom: 40px;
}
.faq dl dt::before{
    content: '';
    background: url(../img/top/icon_qa01.svg)no-repeat center top;
    background-size: contain;
    width:60px ;
    height:52px ;
    display: inline-block;
    vertical-align:middle;
    margin-right: 20px;
    margin-left: 5px;
}
.faq dl dd{
    margin-bottom: 70px;
    position: relative;
    padding-left: 85px;
    font-weight: bold;
}
.faq dl dd::before{
    content: '';
    background: url(../img/top/icon_qa02.svg)no-repeat center top;
    background-size: contain;
    width:69px ;
    height:49px ;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media only screen and (max-width: 568px) {
    .faq dl{
        margin-bottom: 40px;
    }
    .faq dl dt::before{
        width: 30px;
        height: 25px;
        background-size: contain;
        margin-left: 3px;
    }
    .faq dl dd::before{
        width: 35px;
        height: 24px;
        background-size: contain;
    }
    .faq dl dt{
        line-height: 0;
        margin-bottom: 20px;
    }
    .faq dl dd{
        padding-left: 53px;
        margin-bottom: 50px;
    }
    .faq dl dd:last-child{
        margin-bottom: 0;
    }
}

/*===============================================
 *	代表挨拶
===============================================*/
.greeting_contetnt{
    margin-top: 100px;
}
.greeting_img{
    max-width: 453px;
}
.greeting_txt{
    max-width: 490px;
}
.greeting_txt h3{
    font-size:24px;
    font-weight: bold;
    margin-bottom: 20px;
}
.greeting_txt p{
    margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
    .greeting_img{
        max-width: 45%;
    }
    .greeting_txt{
        max-width: 50%;
    }
}
@media only screen and (max-width: 568px) {
    .greeting_contetnt{
        margin:70px 0 0;
    }
    .greeting_img,
    .greeting_txt{
        max-width: 100%;
    }
    .greeting_img{
        margin-bottom: 20px;
    }
    .greeting_txt p:last-child{
        margin-bottom: 0;
    }
    
}

/*===============================================
 *	運営会社
===============================================*/
.company .bg_green::after{
    content: none;
}
.company .bg_green{
    padding-bottom: 100px;
}
.company_content{
    margin:60px 0;
}
.company_txt{
    max-width: 468px;
    width: 100%;
}
.company_txt table{
    margin-bottom: 30px;
}
.company_txt table th{
    font-weight: bold;
    width: 150px;
    padding: 10px 0;
    vertical-align: top;
}
.company_txt table td{
    padding: 10px 0;
}
.company_txt .btn a{
    max-width: 468px;
    font-size: 20px;
}
.map{
    max-width: 491px;
    width: 100%;
    height: 0;
    padding-top: 30%;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.map iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.tel-contact{
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.tel-contact p:first-child{
    background: var(--site-secondary);
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    padding: 10px 0;
}
.tel-contact p:nth-child(2){
    font-weight: bold;
    font-size: 42px;
    color: var(--site-secondary);
    padding: 20px 0;
}
.tel-contact p:nth-child(2) a{
   color: var(--site-secondary);     
}
.tel-contact p:nth-child(2) a::before{
    content: '';
    background: url(../img/common/icon_tel02.svg)no-repeat center top;
    background-size: contain;
    width:30px ;
    height:40px ;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    padding-bottom: 5px;
}

/*.bg_green:last-child::after{
    content: none;
}
.bg_mb:last-child{
    margin-bottom: 0;
}*/
@media only screen and (max-width: 1024px) {
    .company_txt, .map{
        max-width: 48%;
    }
}
@media only screen and (max-width: 960px) {
    .company_txt .btn a{
        font-size: 16px;
    }
    .tel-contact p:nth-child(2){
        font-size: clamp(30px, 5vw, 42px);
    }

}
@media only screen and (max-width: 568px) {
    .company_content{
        display: block;
        margin: 20px 0 40px;
    }
    .company .bg_green{
        padding-bottom: 40px;
    }
    .company_txt, .map{
        max-width: 100%;
    }
    .map{
        padding-top: 60%;
    }
    .company_txt{
        margin-top: 20px;
    }
    .company_txt table th ,
    .company_txt table td{
        display: block;
        width: 100%;
    }
    .company_txt table td{
        padding: 0;
    }
    .company_txt .btn a::after{
        right: 20px;
    }
    .tel-contact{
        margin: 0 -5.3vw;
        border-radius: 0;
        background: none;
        overflow: unset;
    }
    .tel-contact p:first-child{
        padding: 20px 5.3vw;
        font-size: 20px;
        margin-bottom: 20px;
    }
    .tel-contact p:nth-child(2) a{
        width: 94%;
        font-size: 24px;
        border-radius: 10px;
        background: #fff;
        padding: 10px;
        border: 5px solid var(--site-secondary);
        margin: 30px auto 0;
        box-sizing: border-box;
        box-shadow: 3px 4px 0px 0px #b88d18;
    }
   
    .tel-contact p:nth-child(2) a::before{
        width: 20px;
        height: 25px;
        margin-right: 5px;
    }
}