@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap');
body{font-family: 'Noto Sans JP', sans-serif;}
.font-m{
    font-family: 'Noto Serif JP', serif, YuMincho, "游明朝", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";
}
/*余白*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,option,p,bockquote,th,td,button,figure,figcaption {margin: 0;padding: 0;}
/*リセット*/
* {box-sizing: border-box;}
ul{list-style-type: none;}
img{vertical-align: top;}
a{
    text-decoration: none;
    color: #000000;
}
/*基本フォントサイズ*/
h2{
    font-size: 36px;
    line-height: 50px;
}
h3{font-size: 20px;}
p{
    font-size: 14px;
    line-height: 26px;
}
/*色指定*/
.color-red{color: #f46a6a;}
.color-wh{color: #ffffff!important;} 
.color-dark{color: #343a40;}
.bk-dark{
    background-color: #343a40;
    color: #ffffff;
}
.bk-blue{
    background-color: #485ec4;
    color: #ffffff;
}
.bk-red{
    background-color: #f46a6a;
    color: #ffffff;
}
/*テキスト設定*/
.text-center{text-align: center;}
.text-end{text-align: right}
.f-weight-b {font-weight:bold;}
.f-weight-n{font-weight: normal;}
/*横並び　縦横中央揃え 位置設定*/
.d-flex,
.d-flex-tab,
.d-flex-sp{display: flex}
.d-flex-wrap{
    display: flex;
    flex-wrap: wrap
}
.justify-center{justify-content: center;}
.justify-start{justify-content:flex-start;}
.justify-around{justify-content:space-around;}
.justify-between{justify-content:space-between;}
.justify-end{justify-content: flex-end;}
.align-top{align-items:flex-start;}
.align-center{align-items: center}
.align-end{align-items:flex-end;}
.flex-wrap{flex-wrap: wrap;}/*折り返し*/
.flex-nowrap{flex-wrap:nowrap;}/*折り返し禁止*/
.white-space{white-space: nowrap;}/*改行禁止*/
.w-100{width: 100%;}
.w-80{width: 80%;}
.w-50{width: 50%;}
.col-1{width : calc(100% / 12) ;}
.col-2{width : calc(100% / 6) ;}
.col-3{width : calc(100% /3 ) ;}
.col-4{width : calc(100% /4 ) ;}
.col-5{width : calc(100% /5 ) ;}
.col-6{width : 50%;}
.col-8{width : 66.6666% ;}
.col-12{width: 100%;}
.pc-none{display: none;}
/*画像トリミング*/
.object-fit img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/*送信フォーム*/
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: button;
	border-radius: 3px;
	font-size:16px;
	border:1px solid #aaa;
	padding:10px;
}
select{background-color: #ffffff;}
option{line-height: 30px;}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus{
 	box-shadow: 1px 1px 1px 0px #cccccc;
	border: 1px solid #000000;
	outline: 0;
}
textarea {
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    font-size: 16px
}
/*ボタン*/
button{
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 0.47rem 0.75rem;
    font-size: .8125rem;
    border-radius: 0.25rem;
}
/*テーブル*/
table{
  border-collapse: collapse;
  border-spacing: 0;
}
/*ヘッダーメニュー固定の場合のページないリンク*/
a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px;
}
.white-space{white-space: nowrap;}
.inner{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
/*pcナビバー*/
.nav{
    background-color: #ffffff;
    padding: 15px;
    width: 900px;
    height: 90px;
}
.nav ul{
    display: flex;
    align-items:center;
    justify-content: space-around;
    font-weight: bold;
}
.top-btn{
    text-align: center;
    width: 150px;
    height: 120px;
    position: relative;
}
.top-btn img{
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}
.top-btn p{
    position: absolute;
    color: #ffffff;
    line-height: 18px;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.top-btn.green p{top: 15px;}
.top-btn.pink{background-color: #e66fb2;}
.top-btn.blue{background-color: #32c1e0;}
.top-btn.green{background-color: #45dc93;}
/*タブ、SP用ヘッダー*/
.header-nav{
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
    width: 100%;
    height: 70px;
    position: fixed;
    z-index: 50;
    top: 0;
}
.header-nav .logo{padding: 5px; 10px;}
.header-nav .logo img{width: 50%;}
.header-nav .logo p{
    font-size: 12px;
    color: #000000;
    margin-bottom: 10px;
}
.header-nav .header-nav-btn{margin-right: 83px;}
.header-nav .top-btn{
    height:70px;
    width: 80px;
}
.header-nav .top-btn p{
    font-size: 12px;
    line-height: 13px;
}
.header-nav .top-btn img{
    width: 20px;
    bottom: 10px;
}
/*mob用ハンバーガーメニュー*/
.sp-menu-button{display: none;}
.sp-br{display: none;}
.sp-menu-button span{
    display: inline-block;
    -webkit-transition:all .4s;
    transition: all .4s;
    box-sizing: border-box;
}
.sp-menu-button{
    position: fixed;
    top: 23px;
    right:  25px;
    width: 35px;
    height: 24px;
    z-index: 1000;
    background-color:#ffffff;
}
.sp-menu-button span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333333;
    z-index: 1000;
}
.sp-menu-button span:nth-of-type(1){top: 0px;}
.sp-menu-button span:nth-of-type(2){top: 10px;}
.sp-menu-button span:nth-of-type(3){bottom: 0px;}
.sp-menu-button.active span:nth-of-type(1){
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
    background-color: #000000;
}
.sp-menu-button.active span:nth-of-type(2){opacity: 0;}
.sp-menu-button.active span:nth-of-type(3){
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
    background-color: #000000;
}
.sp-menu-ul{
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200;
    width: 100%;
    opacity: 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    visibility:hidden;
    padding:50px 30px;
}
.sp-menu-ul.active{
    right: 0;
    opacity: 1;
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
    visibility: visible;
    background-color: #ffffff;
    width: 100%;
    box-shadow: 0 2px 4px rgb(0 0 0 / 20%);
}
.sp-menu-ul li{
    list-style-type: none;
    border-bottom: 1px solid #B3B3B3;
    font-size: 1.6rem;
}
.sp-menu-ul li a{
    display: block;
    padding: 15px 0;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #333;
}
.sp-menu-ul li a:hover{color: #f65d5d;}
/*お問い合わせバナー*/
.inq-bna{padding: 100px 0;}
.inq-bna-con{
    border: 5px solid #685744;
    background-image: url("../images/inq-img.png");
    background-repeat: no-repeat;
    background-position: right bottom;
    height: 230px;
    color: #ffffff;
    padding:30px 0 0 50px;
}
.inq-bna-con h2{font-size: 28px;}
.inq-bna-con h2 span{
    font-size: 18px;
    font-weight: normal;
    margin-left: 15px;
}
/*footer*/
footer{
    background-color: #5a4e4e;
    padding: 50px 0 70px;
}
footer a,
footer p{color: #ffffff;}
.f-inq-bna{
    background-image: url("../images/f-inq-img.png");
    height: 235px;
    border: 5px solid #685744;
    background-repeat: no-repeat;
    background-position: right center;
    padding:30px 0 30px 50px;
}
.sp-f-inq-bna{border: 5px solid #685744;}
.sp-f-inq-bna img{width: 100%;}
.sp-f-inq-bna .txt{
    background-color: #a29782;
    padding: 20px;
    color: #ffffff;
}
.f-inq-bna h2{
    font-size: 28px;
    margin-bottom: 20px;
}
.f-inq-bna h2 span{
    font-size: 18px;
    font-weight: normal;
    margin-left: 15px;
}
.f-inq-bna .mail{
    width: 17%;
    text-align: center;
    border: 1px solid #ffffff;
    padding: 10px 0 5px;
    margin-right: 20px;
}
.f-inq-bna .mail p{
    font-size: 16px;
    text-align: center;
}
.f-inq-bna h3{font-size: 28px;}
footer .f-link{margin-top: 30px;}
footer .text-link ul{
    display: flex;
    justify-content: flex-end;
    font-size: 16px;
    margin-bottom: 20px;
}
footer .text-link a{color: #ffffff;}
footer .text-link li{margin-right: 40px;}
/*タブレット*/
@media screen and (max-width: 1280px){
    html {font-size: 0.9090909091vw;}
    h2{
        font-size: 3.6rem;
        line-height: normal;
    }
    h3{font-size: 1.8rem;}
    p{
        font-size: 1.4rem;
        line-height: 20px;
    }
    .inner{
        width: 95%;
        margin: 0 auto;
    }
    .top-btn p{top: 12px;}
    .top-btn.green p{top: 5px;}
    .tab-block,
    .tab-nav,
    .d-flex-tab,
    .sp-menu-button{display: block;}
    .tab-none,
    .pc-nav{display: none;}
    .top-img{
        padding-top: 0;
        height: 70vh;
    }
    .f-inq-bna{
        height: auto;
        padding: 20px;
    }
    .f-inq-bna h2,
    .f-inq-bna h3{font-size: 2.2rem;}
    .f-inq-bna h2 span,
    .f-inq-bna .mail p{font-size: 1.5rem;}
    .f-inq-bna{padding: 15px;}
    .f-inq-bna .mail{width: 13%;}
    .f-inq-bna h2 span{
        font-size: 1.8rem;
        margin-left: 3px;
    }
    footer .text-link{margin-top: 20px;}
    footer .text-link ul{margin-bottom: 10px;}
}
/*スマホ*/
@media screen and (max-width: 767px){
    html{font-size: 1.7801980198vw;}
    h2{font-size: 3rem;}
    p{font-size: 1.6rem;}
    .sp-block,
    .d-flex-sp{display: block!important;}
    .sp-none{display: none;}
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6{width: 100%;}
    .header-nav{height: 55px;}
    .header-nav .logo p{margin-bottom: 5px;}
    .sp-menu-button{
        top: 14px;
        right: 14px;
    }
    .sp-f-inq-bna .txt{padding: 15px;}
    .sp-f-inq-bna .txt div{justify-content: space-between;}
    footer .sp-f-inq-bna .txt div{justify-content: flex-start;}
    footer .sp-f-inq-bna .txt .mail{margin-right: 20px;}
    .sp-f-inq-bna .mail{
        text-align: center;
        border: 1px solid #ffffff;
        width: 25%;
        padding: 10px 0;
    }
    .sp-f-inq-bna .mail p{font-size: 1.5rem;}
    .sp-f-inq-bna .mail img{
        width: 40%;
        margin: 0 auto;
    }
    .sp-f-inq-bna  h2{
        font-size: 2rem;
        margin-bottom: 20px;
    }
    .sp-f-inq-bna  h2 span{
        font-size: 1.6rem;
        margin-left: 5px;
    }
    .sp-f-inq-bna h3{font-size: 1.9rem;}
    footer .text-link ul{
        display: block;
        margin: 0 0 0 20px;
        font-size: 1.6rem;
        line-height: 26px;
    }
    footer .text-link{margin-bottom: 30px;}
    footer .text-center{font-size: 1.6rem;}
}
/*IE対策*/
@media all and (-ms-high-contrast: none){
}
/*電話リンクPC無効*/
a[href*="tel:"]{pointer-events: none;}
@media only screen and (max-width: 450px){
	a[href*="tel:"]{
		pointer-events: initial;
	}
}