/*theme name:*/


*{
    margin: 0 auto;
}

body{
    font-family: "Noto Sans JP","ヒラギノ角ゴ","Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","メイリオ","Meiryo","MS Pゴシック",sans-serif;

}

#menu-btn-check {
    display: none;
}

.sp-br{
    display: none;
}

.sp-br2{
    display: block;
}

.sp-br3{
    display: none;
}


.banner img{
    display: none;
}

.header-text h1 a{/*追加*/
    font-size: 30px;
    font-weight: bold;
    color: rgba(5, 80, 122, 1);
    
}

h2{
    font-size: 40px;
}


.bar{
    background-color: #f9ae06;/*追加*/
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
}

.bar p{/*追加*/
    font-size: 14px;
    color: white;
    margin-left: 3%;
}

.header-top{
    display: flex;
    padding: 1%;
    text-align: left;
    width: 95%;
}

.header-text{
    width: 70%;
    text-align: left;
}

.header-tell{
    width: 30%;
    display: flex;
    align-items: center;

}

.header-tell:hover{
    opacity: 0.7;
}

.header-tell img{
    max-width: 300px;
    width: 100%;
    height: auto;
}

.header-text a{
    text-decoration: none;
    color: black;
}

.header-text p{
    font-size: 14px;

}

/*ナビゲーション*/

nav{
    background-color: #f9ae06;
    color: white;
    text-align: center;
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
    padding-left: 0;
}

nav ul ul{
    display: block;
}

nav ul li{
    position: relative;
}

nav ul li a{
    display: block;
    text-decoration: none;
    color: white;
    padding: 20px 35px;
    transition: all .3s;
    font-size: 16px;
    font-weight: 200;
}

nav ul li li a{
    padding: 10px 35px;
}

nav ul li a:hover{
    color:#f9ae06;
    background: rgb(255, 208, 163);

}

nav ul li.child::before{
    content: "";
    position: absolute;
    left: 15px;
    top: 28px;
    width: 6px;
    height: 6px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(135deg);
}

nav ul li.child:hover:before{
    border-color: #f9ae06;
}


nav li.child ul{
    position: absolute;
    left: 0;
    top: 62px;
    z-index: 4;
    background: rgb(255, 208, 163);
    width: 180px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;

}

nav li.child:hover > ul,nav li.child ul li:hover > ul,nav li.child:active > ul,nav li.child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}

nav li.child ul li a{
    color:#f9ae06;
    border-bottom: 1px solid #f9ae06;
}

nav li.child ul li:last-child a{
    border-bottom: none;

}

nav li.child ul li a:hover,nav li.child ul li a:active{
    background: rgb(151, 74, 2);
    color: white;
}

/*パンくず*/


.breadcrumb{
    margin-top: 3%;
    width: 95%;
    margin-bottom: 3%;

}

.breadcrumb a{
    text-decoration: none;
    color: black;
    font-size: 12px;
}

.breadcrumb a:hover{
    opacity: 0.7;
}

/*メイン*/

.content1{
    text-align: center;
}

.content1 h2{
    font-size: 40px;
    background-color: #f9ae06;
    width: 100%;
    color: white;
    margin-bottom: 5%;
    padding: 1%;
    box-sizing: border-box;

}

.content1-main{
    width: 100%;
    max-width: 900px;
}

.content1-main img{
    width: 100%;
    height: auto;
}


/*お客様の声*/

.customer{
    margin-top: 5%;
}

.container h2{
    font-size: 30px;
    color: #f9ae06;
    border: 2px solid #f9ae06;
    width: 90%;
    max-width: 900px;
    padding: 1%;
    position: relative;
}

.container h2::before{
    content: "";
    position: absolute;
    bottom: -48px;
    left: 5%;
    margin-left: -19px;
    border: 24px solid transparent;
    border-top: 24px solid white;
    z-index: 2;
}

.container h2::after{
    position: absolute;
    content: "";
    bottom: -51px;
    left: 5%;
    margin-left: -20px;
    border: 25px solid transparent;
    border-top: 25px solid #f9ae06;
    width: 0;
    height: 0;
    z-index: 1;
}

.customer-voice{
    background-color: rgba(255, 221, 170, 1);
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    display: flex;
    margin-top: 4%;
    margin-bottom: 5%;
    position: relative;
    padding: 2%;
    box-sizing: border-box;
}

.customer-voice p{
    font-size: 18px;
    width: 45%;
    padding: 5%;
    line-height: 40px
}

.customer-voice p span{
    position: absolute;
    bottom: 5%;
    left: 25%;
    right: 20%;
}

.cus-voice-img{
    width: 50%;
    text-align: center;
    margin-top: 5%;

}

.cus-voice-img img{
    width: 100%;
    height: auto;
    max-width: 280px;
}

.cus-voice-img h3{
    font-size: 16px;
    font-weight: initial;
}


/*電話LINE*/

.contact{
    background-color: #f9ae06;
    padding: 5% 0;
    text-align: center;
    margin-bottom: 5%;
}

.contact h2{
    color: white;
    font-size: 30px;
    max-width: 900px;
    display: inline-block;
    text-align: left;
    margin-bottom: 2%;


}


.contact-btn{
    display: flex;
    align-items: center;
    width: 95%;
    max-width: 900px;
}

.contact-btn img{/*追加*/
    width: 85%;
    height: auto;
    margin: 2% 0;
    max-height: 150px;
}


.contact-btn a:hover{
    opacity: 0.7;
}








/*footer*/

table{
    margin-left:5%;
    text-align: left;
}

th span{
    color: white;
    font-size: 20px;
}

th,td{
    color: white;
    font-size: 26px;
    padding-top: 2%;
}

.content12{
    text-align: center;
    width: 70%;
    display: flex;
    flex-wrap: wrap;
}

.content12 img{
    width: 90%;
    margin: 10px 0;
    height: auto;

}

.content12 a{
    margin: 0;
    width: 50%;
}

.content12 a:hover{
    opacity: 0.7;
}


.content13{
    text-align: center;
    width: 70%;
    margin-top: 5%;
    margin-bottom: 5%;
    max-width: 1000px;
}

.content13 img{
    width: 30%;
    max-width: 320px;
    margin:1%;
    height: auto;

}

.content13 a:hover{
    opacity: 0.7;
}

.footer-main{
    display: flex;
}

.footer-left{
    width: 50%;
    text-align: left;
    background-color: #f9ae06;
    padding: 1%;
    box-sizing: border-box;
}

.footer-left h2{
    font-size: 26px;
    color: white;
    font-weight: 200;

}

.footer-left p{
    color: white;
    font-size: 18px;
}

.footer-left h3{
    font-size: 50px;
    color: white;
}

.time{
    color: white;
    border-collapse: collapse;
    margin-left: 0;
    text-align: center;
    width: 100%;
    margin-top: 20px;
}

.time th, .time td{
    border: 2px solid white;
    padding: 1%;
    font-size: 16px;
}

.access-btn,.inquiry-btn{
    display: inline-block;
    background-color: #f9ae06;
    border: 2px solid white;
    width: 40%;
    padding: 20px;
    margin: 15px 0;
}

.inquiry-btn{
    margin-left: 10px;
}

.access-btn a,.inquiry-btn a{
    text-decoration: none;
    color: white;
}

.access-btn:hover,.inquiry-btn:hover{
    opacity: 0.7;
}

.arrow-time{
    position: relative;
}

.arrow-time:before{
    right: 8%;
    top: 25px;
    width: 10px;
    height: 10px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .3s;
    position: absolute;
    content: "";
    vertical-align: middle;
  
}


.arrow-time:hover::before{
    right: 5%;
}

.map-right{
    position: relative;
    width: 50%;
}

.map{
    height: 0;
    padding-top: 56.25%;
}

iframe{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
}


.footer-end p{
    color: white;
    background-color: rgba(65, 41, 17, 1);
    text-align: center;
    padding: 2%;
    font-size: 14px;
}

.footer-container{
    display: flex;
    justify-content: space-between;
}

