@charset "utf-8";


*{
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body{
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    color: #333;
    background-color: #fff;
}

h1,
h2,
h3{
    margin-top: 0;
    line-height: 1.5;
    letter-spacing: 0.2em;
    text-align: center;
}

h3{
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

p{
    margin-top: 0;
    margin-bottom: 1.5em;
    text-align: justify;
}

address{
    font-style: normal;
}

a{
    color: #efefef;
    text-decoration: none;
}

a:hover,
a:focus{
    color: #fff;
    text-decoration: underline;
}

ul{
    margin: 1em 0;
    padding: 0;
    list-style: none; 
}

img{
    width: 100%;
    height: auto;
}

section{
    padding: 100px 0;
}


.h2-title{
    position: relative;
    text-transform: uppercase;
    z-index: 100;
}

.h2-title::before{
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    background: #ced1d3;
    position: absolute;
    left: 50%;
    margin-left: -20px;
    transform: rotate(45deg);
    z-index: -100;
}

.logo-area{
    font-size: 1.2rem;
}

.txt-center{
    text-align: center;
}

.text-lead{
    font-weight: 700;
}

.btn{
    display: block;
    padding: 20px 35px;
    border-radius: 8px;
    margin: 0 auto;
    border: none;
}

.btn:hover,
.btn:focus{
    background-color: rgba(0,0,0,0.7);
    cursor: pointer;
}

.btn-reserve{
    color: #fff;
    background: rgba(0,0,0,0.9);
}

.inner{
    padding: 0 15px;
    margin: 0 auto;
}

@media screen and(min-width:768px) {
    .inner{max-width: 1200px;}
}

.sp-only{
    display: block;
}

.pc-only{
    display: none;
}

@media screen and (min-width:768px){
    .sp-only{
        display: none;
    }

    .pc-only{
        display: block;
    }
}


.header{
    width: 100%;
    height: 60px;
    padding: 0px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
}

@media screen and (min-width:768px){
    .header{
        padding: 0px 15px;
    }
}


/* .header-navi{
    display: none;
} */

.logo-area{
    width: 200px;
    margin: 0;
    text-align: left;
}

@media screen and (min-width:768px){
    .logo-area{
        width: 250px;
    }
}

.none{
    display: none;
}

@media screen and (max-width:767px){

    #nav-input-open,
    #nav-input-open span{
        display: inline-block;
        vertical-align: middle;
        transition: 0.2s ease-in-out;
    }

    #nav-input-open{
        position: relative;
        width: 40px;
        height: 27px;
        border: none;
        cursor: pointer;
    }

    #nav-input-open span{
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: #ccc;
    }

     #nav-input-open span:nth-of-type(1){
        top:0;
     }

    #nav-input-open span:nth-of-type(2){
        top:12px;
     }

    #nav-input-open span:nth-of-type(3){
        top:24px;
     }

     .header-navi ul{
        display: flex;
        flex-direction: column;
        width: 80vw;
        height: 100vh;
        position: fixed;
        top: 60px;
        left: 0;
        background: rgba(0,0,0,0.8);
        margin-top: 0;
        padding: 30px;
        text-transform: uppercase;
        transform: translateX(-105%);
        transition: 0.3s ease-in-out;
     }

     .header-navi ul li{
        margin-bottom: 2em;
     }

     .header-navi ul li a{
        display: block;
        padding: 1em 1em 0;
     }

     
     #nav-input:checked ~ .header-navi ul{
        transform: translateX(0%);
     }

     #nav-input:checked ~ #nav-input-open span:nth-of-type(1){
        transform:  translateY(12px) rotate(-45deg);
     }

    #nav-input:checked ~ #nav-input-open span:nth-of-type(2){
        opacity: 0;
     }

     #nav-input:checked ~ #nav-input-open span:nth-of-type(3){
        transform:  translateY(-12px) rotate(45deg);
     }
}

@media screen and (min-width:768px){
    .header-navi{
        width: 500px;
    }

    .header-navi ul{
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        text-transform:uppercase;
    }
}

.header-navi ul li svg{
    margin-right: 1em;
}

.hero-area{
    width: 100vw;
    height: 100vh;
    background-image: url(./images/hero.jpg);
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hero-title{
    color: #fff;
    text-shadow: 0px 0px 3px #333;
    margin-top: 70px;
}

@media screen and (min-width:768px){
    .hero-area{
        width: 100%;
        height: 600px;
    }

    .hero-title{
        margin-top: 90px;
    }
}

.inner{
    padding: 0 15px;
    margin: 0 auto;
}

.info-area{
    background-color: #fff;
    margin: 20px;
    
}

.info-txt{
    color: #000;
}

@media screen and (min-width:768px){
    .info-content{
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    .info-txt{
        flex: 1;
        margin: 30px;
    }

    .info-txt h2{
        text-align: left;
    }

    .info-img{
        flex: 0.7;
        width: 100%;
        object-fit: cover;
    }
}


.service-area{
    background-color: #f0f0f0;
}

.service-content{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.service-item{
    background-color: #fff;
    margin-bottom: 30px;
    box-shadow: 1px 1px 3px #aaa;
}

.service-info{
    padding: 0 15px 15px;
}

.service-title{
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #666;
}

.service-price{
    text-align: center;
    padding: 10px;
    border: 2px solid #666;
}

.service-list li::before{
    content: "";
    background: url(./images/list-marker.svg) no-repeat;
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 10px 3px;
}

@media screen and (min-width:768px){
    .service-content{
        flex-direction: row;
        max-width: 1200px;
    }

    .service-item{
        flex:calc(100% / 3);
        margin-top: 0;
        margin-left: 15px;
        margin-right: 15px;

    }
}

.company-profile{
    width: 100vw;
    padding-bottom: 0;
    text-align: left;
    font-size: 1rem;
}

table{
    border-collapse: collapse;
    border-spacing: 5em;
}

table th,td {
    padding: 10px;      /* 余白指定 */
}

.company-content{
    margin-top: 20px;
    margin-bottom: 50px;
}

.company-profile img{
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 20%;
    margin: 0 auto;
}

.access-maparea{
    height: 400px;
}

.access-map{
    width: 100vw;
    height: 100%;
}

@media screen and (min-width:768px) {
    .company-content{
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-left: 200px;
    }

    .access-maparea{
        height: 500px;
    }

}


.pagetop{
        text-align: right;
        padding: 15px;
        background-color: #736d71;
}

.pagetop a::after{
    content: "";
    background: url(./images/list-marker.svg) no-repeat;
    width: 15px;
    height: 15px;
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 3px 10px;
    transform: rotate(-90deg);
}

.foot-area{
    color: #fff;
    text-align: center;
    padding-top: 40px;
    background-color: #736d71;
}

.foot-logo{
    margin: 0 auto 20px;
}

.text-phone,
.text-phone a{
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
}

.foot-area_copy{
    color: #ccc;
    font-size: 12px;
    display: inline-block;
    padding: 10px;
    width: 100%;
    background-color: #333;
}

footer ul{
    display: flex;
    width: 250px;
    justify-content: space-around;
    margin: 0 auto 60px;
}

footer ul li a{
    color: #efefef;
    font-size: 32px;
}

@media screen and (min-width:768px) {
    a[href^="tel:"]{
        pointer-events: none;
    }

    footer ul{
        width: 300px;
        margin: 0 auto 120px;
    }

    footer ul li a{
        font-size: 42px;
    }
    
}
    

