@charset "UTF-8";
html{
    font-family:  "Hiragino Kaku Gothic ProN","メイリオ","Segoe UI", "Helvetica Neue" ;
    font-size: 100%;
    color: #444;
}

.wrapper{
    max-width: 960px;
    padding: 0 3%;
    margin: 0 auto;
}

p{
    line-height: 1.5rem;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}

li {
    list-style: none;
    display: flex;
}

span{
    color: orange;
}

h1{
    margin:40px 0 20px 0;
    font-size: 1.5rem;
}

h2{
    margin: 60px 0;
    font-size: 1.3rem;
    text-align: center;
}

h3{
    margin: 80px auto 20px auto;
    text-align: center;
}

h4{
    margin: 10px 0;
    color: #FFA543;
}

/* ---ヘッダー--- */
#header{
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    background-color: #FFA543;
    position: fixed;
    z-index: 10;
}

#header img{
    width: 350px;
}
.header-text-all{
    margin-right: 30px;
}
.header-text{
    margin: 10px 10px 10px 100px;
    display: flex;
    justify-content: space-between;
}
.header-text span{
    
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffffff;
}
.menu{
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
    
}

.menu li a{
    margin: 10px;
    font-size: 1.1rem;
    color: #ffffff;
}
.menu li a:hover{
    color: #c6c6c6;
}
.menu-line{
    margin: 0 10px;
    width: 1px;
    background-color: #ffffff;
}


/* ---メインビュー--- */
.swiper-slide img{
    width: 100%;
    height: 600px;
    margin-top: 7.2rem;
    object-fit: cover;
    object-position: 60% 30%;
}
.swiper-button-prev ,
.swiper-button-next {
    color: #a4ced5;
}
.swiper-pagination-bullet {
    background-color: #a4ced5;
}


/* ---事業紹介--- */
#about{
    width: 100%;
    margin-top: 60px;
    display: flex;
    justify-content: center;
}
#about img{
    width: 40%;
    height: 300px;
    object-fit: cover;
}
.about-text{
    width: 50%;
    padding: 20px;
}


/* ---サービスのご案内--- */
.service-detail{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.service-card{
    width: 200px;
    height: 300px;
    margin: 20px 10px;
    border-radius: 6px;
    box-shadow: 5px 5px 10px #999999;
}

.service-card:hover{
    box-shadow: 0 3px 6px 0 #333;
    transform: translateY(-0.1875em);
    transition:all 0.4s ease;
}
.service-card img{
    width: 200px;
    height: 150px;
    object-fit: cover;
}
.card-text-all{
    padding: 15px;
    margin: 0 auto;
}
.card-text-title{
    margin: 10px 0;
    font-weight: bold;
    text-align: center
}
.card-text-each{
    font-size: 13px;
    line-height: 1rem;
}


/* ---ご利用案内--- */
#guide table{
    margin: 0 auto;
}
#guide th ,
#guide td{
    padding: 20px;
    border-bottom:  1px solid  #c6c6c6;
}
#guide span{
    font-weight: bold;
    color: #6B8E55;
}
.guide-text{
    margin-left: 20rem;
    text-align: left;
}


/* ---こんな人が利用しています--- */
.example-reason{
    width: 80%;
    margin: 0 auto;
    justify-content: center;
    display: flex;
    background-color: #FFF6E1;
    border: solid #FFA543;
    border-radius: 20px;
}
.example-1 ,
.example-2{
    width: 40%;
    text-align: center;
}
.example-1 li ,
.example-2 li{
    margin: 20px;
    padding: 25px  15px;
    justify-content: center;
    background-color: #ffffff;
    border-radius: 6px;
}


/* ---お問い合わせ--- */
#contact{
    display: flex;
    justify-content: space-evenly;
}

.contact-tel ,
.contact-line{
    width: 40%;
}

.tel-text-all ,
.line-text-all{
    text-align: center;
}

.tel-number{
    margin: 20px auto;
    font-size: 1.3rem;
    font-weight: bold;
}


/* ---TELのボタン--- */

/*== ボタン共通設定 */
.btn{
    width: 80%;
    padding: 20px 0px;
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	border: 1px solid #FFA543;/* ボーダーの色と太さ */
    padding: 10px 30px;
    border-radius: 50px;
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}

/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#FFA543;
}

.btn:hover span{
	color:#fff;
}

/*== 背景が流れる（左から右） */
.btn:before {
    content: '';
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    /*色や形状*/
    background:#FFA543;/*背景色*/
    width: 100%;
    height: 100%;
    /*アニメーション*/
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}

/*hoverした際の形状*/
.btn:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


/* ---LINEのボタン--- */
.line {
    border: 1px solid #04C755;
}

.line span{
	color:#04C755;
}

.line:before {
    background:#04C755;
}


/* ---スタッフ募集中！--- */
#recruit{
    text-align: center;
}

/* ---採用情報のボタン--- */
.recruit{
    width: 30%;
    margin-top: 20px;
    border: 1px solid #46C2D3;
}

.recruit span {
	color:#46C2D3;
}

.recruit:before {
    background:#46C2D3;
}


/* ---採用情報--- */
.header-employment{
    margin-top: -50px;
}
#employment h2{
    margin: 50px 0;
}
#employment h3{
    margin: 0;
    font-size: larger;
    color: #46C2D3;
}
.employment-information{
    margin-top: 50px;
    display: flex;
}
.employment-information img{
    width: 500px;
    height: 300px;
    margin-right: 20px;
    object-fit: cover;
}

.employment-text-all{
    padding: 20px;
}
.employment-text{
    margin: 20px 30px;
}
.employment-front{
    margin: 20px auto;
    width: 70%;
    padding: 30px 0 40px 0;
    text-align: center;
    background-color: #ffefc680;
    border-radius: 30px;
}

/* ---フッター--- */
footer{
    padding: 50px;
    margin-top: 50px;
    text-align: center;
    background-color: #ffecd7;
}



/* ===レスポンシブ=== */
@media (max-width:750px){
    .wrapper{
        padding: 0;
    }
    h1{
        margin: 10px 0;
        font-size: 1.2rem;
    }
    h2{
        font-size: 1.1rem;
    }

/* ---ヘッダー--- */
    #header{
        padding: 10px;
    }
    #header img{
        width: 200px;
        margin-top: 10px;
    }
    .header-text-all{
        margin: 0 auto;
        font-size: 0.7rem;
    }
    .header-text span{
        font-size: 1rem;
    }
    .menu li a{
        margin: 5px;
        font-size: 0.8rem;
    }

/* ---メインビュー--- */
    .swiper-slide img{
        width: 750px;
        height: 500px;
        margin-top: 3rem;
        object-fit: cover;
        object-position: 0%;
    }

/* ---事業紹介--- */
    #about img{
        height: 250px;
    }
    .about-text{
        font-size: 0.8rem;
    }

/* ---サービスのご案内--- */
    .service-card{
        width: 300px;
        height: 310px;
    }
    .service-card img{
        width: 300px;
        height: 170px;
    }

/* ---ご利用案内--- */
    .guide-text{
        margin-left: 12rem;
    }
/* ---こんな人が利用しています--- */
    .example-1 li ,
    .example-2 li{
        font-size: 0.7rem;
    }

/* ---お問い合わせ--- */
    .tel-text-all ,
    .line-text-all{
        font-size: 0.8rem;
    }

    /* ---採用情報--- */
    .employment-information{
        width: 100%;
        align-items: center;
        flex-direction: column;
    }
}


@media(max-width:420px){
    h1{
        margin: 10px 0;
        font-size: 1.1rem;   
    }
    h2{
        margin: 60px auto 30px auto;
    }
    h3{
        margin: 50px auto 30px auto;
    }
/* ---ヘッダー--- */
    #header{
        padding: 10px;
    }
    #header img{
        width: 100px;
        position: absolute;
    }
    .header-text-all{
        margin: 0 auto;
    }
    .header-text{
        margin: 10px;
        justify-content: end;
        font-size: 0.5rem;
    }
    .header-text span{
        font-size: 0.7rem;
    }
    .menu{
        margin: 0 auto;
    }
    .menu li a{
        margin: 0 5px;
        font-size: 0.6rem;
    }
    .menu-line{
        margin: 0 5px;
    }

/* ---メインビュー--- */
    .swiper-slide img{
        width: 100%;
        height: 400px;
        margin-top: 50px;
        object-position: 50%;
    }

/* ---事業紹介--- */
    #about{
        margin: 15px auto;
        flex-direction: column-reverse;
    }
    #about img{
        width: 70%;
        margin: 0 auto;
    }
    .about-text{
        width: 70%;
        margin: 0 auto;
        font-size: 0.7rem;
    }

    /* ---サービスのご案内--- */
    .service-card{
        width: 70%;
        height: auto;
    }
    .service-card img{
        width: 100%;
        height: 200px;
    }
    .card-text-title{
        font-size: 1rem;
    }
    .card-text-each{
        font-size: 0.8rem;
        line-height: 1rem;
    }
    
/* ---ご利用案内--- */
    #guide th ,
    #guide td{
        width: 80%;
        padding: 10px;
        margin: 0 auto;
        display: block;
    }
    #guide th{
        border-bottom: 0px;
    }
    #guide td{
        margin-bottom: 20px;
        font-size: 0.8rem;
    }
    .guide-text {
        margin-left: 5rem;
        font-size: 0.8rem;
    }
/* ---こんな人が利用しています--- */
    .example-1 ,
    .example-2{
        width: 100%;
        text-align: center;
    }
    .example-reason{
        flex-direction: column;
        margin: 0 auto;
    }
    .example-1 li ,
    .example-2 li{
        width: 70%;
        align-items: center;
        padding: 20px;
    }
    .example-2 li{
        margin-top: 0;
    }

/* ---お問い合わせ--- */
    #contact{
        flex-direction: column;
    }
    .contact-tel ,
    .contact-line{
        width: 100%;
    }
    .btn{
        width: 50%;
        margin: 10px auto;
        display: block;
    }
    .tel-text-all ,
    .line-text-all{
        margin-top: 10px;
    }

/* ---採用情報--- */
    #employment h3{
        font-size: 1rem;
    }
    .employment-information{
        width: 100%;
        align-items: center;
        flex-direction: column;
    }
    .employment-information img{
        width: 80%;
        height: auto;
        margin-right: 20px;
        object-fit: cover;
    }
    
    .employment-text-all{
        padding: 10px;
    }
    .employment-text{
        font-size: 0.8rem;
    }
    .employment-front{
        margin: 20px auto;
        width: 80%;
        padding: 20px;
        font-size: 0.8rem;
    }
}