@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700,900&display=swap&subset=japanese');
/* ----------------------------------------------------------------------------------------------------
*  reset
* --------------------------------------------------------------------------------------------------*/
/*====================================
RESET
======================================*/
html{overflow-y: scroll;}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
blockquote, q {
    quotes:none;
}
h1, h2, h3, h4, h5, h6 {margin:0; font-weight:500; display:block; font-size: 100%;}
p {margin:0; display:block; font-size: 100%;}
ul,li {list-style:none; padding:0;margin:0;}
dl,dt,dd {padding:0; margin:0;}
table,tr,td {border:0;padding: 0 ; margin:0;}
table {
    border-collapse:collapse;
    border-spacing:0;
}
a {
  text-decoration:none;
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
a:focus {
  outline:none;
  cursor: pointer;
}
a:hover {cursor: pointer;}

input, textarea, select {
    vertical-align:middle;
}
button{
     background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

img {vertical-align:bottom; border:0; padding:0; margin:0;line-height:0; }
div {margin:0;padding:0;}

caption, th{
    font-weight: 500;
}


input,select,button,textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	outline: none;
	border: none;
	border-radius: 0;
	padding: 0;
	font-family:inherit;font-size:inherit;font-weight:inherit;
}

*,*:after,*:before{
	box-sizing: border-box;
}



/* ----------------------------------------------------------------------------------------------------
*  基本
* --------------------------------------------------------------------------------------------------*/
html,body{
	height:100%;
	width:100%;
}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	text-align: left;
}
ul{letter-spacing: -0.4em;}
.android ul{letter-spacing: -1em;}
ul li{letter-spacing: normal;}


body a {
	text-decoration:none;
	color:inherit;
}
body{
	-webkit-text-size-adjust: 100%;
	width: 100%;
	font-size: 1.6rem;
	line-height: 1.9;
	font-family: 'Noto Sans JP', sans-serif;
	font-feature-settings: "palt" 1;
	font-weight: 500;
	color: #2A2A2A;
	background: #fff;
	word-wrap: break-word;
	position: relative;
}

img{
	width: auto;
	max-width: 100%;
	height:auto;
}
@media screen and (min-width: 769px) {
	html,body{
	}
	body{
		margin: 0 auto;
		min-width: 1140px;
	}
}

@media screen and (max-width: 768px) {
	html{-webkit-overflow-scrolling: touch;}
	body{
		font-size:3.2vw;
		line-height: 1.83;
	}
	img{
		width:100%;
		max-width: 100vw;
		height:auto;
	}
}



a, a img, a:hover span{
	transition: 0.3s ease-in-out;
	-webkit-transition: 0.3s ease-in-out;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

@media screen and (min-width: 769px) {
	a:hover, a:hover img, a:hover span{
		opacity: 0.6;
	}
}
table{width: 100%;}


/*--読み込み時にtransitionが動作する問題--*/
.preload * {
-webkit-transition: none !important;
-moz-transition: none !important;
-ms-transition: none !important;
-o-transition: none !important;
transition: none !important;
}

/* ----------------------------------------------------------------------------------------------------
*  box
* --------------------------------------------------------------------------------------------------*/
.wrap, .wrap2{
	margin: 0 auto;
	position: relative;
}
.wrap{
	width:1100px;
}
.wrap2{
	width:1000px;
}
@media screen and (min-width: 769px) {
	.sp{display: none!important;}
}

@media screen and (max-width: 768px) {
	.pc{
		display: none!important;
	}
	body{
		width: 100%;
	}
	main{
		width: 100%;
		overflow: hidden;
	}
	.wrap, .wrap2{
		width: 89vw;
	}
	.sp100w{
		width: 100vw;
		margin-left: -5.5vw;
	}
}



/* ----------------------------------------------------------------------------------------------------
*  汎用
* --------------------------------------------------------------------------------------------------*/


/* ------------------------------
    clearfix
------------------------------ */
.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */

/* ------------------------------
   float
------------------------------ */
.aligncenter{
    display:block;
    margin:0 auto;
}
.alignright{
	float:right;
}
.alignleft{
	float:left;
}
/* ------------------------------
   flex
------------------------------ */
.flex{
    display:flex;
    flex-wrap: nowrap;
    justify-content:space-between;
}
.flex_wrap{
    flex-wrap: wrap;
}

.jc_start{
    justify-content:flex-start!important;
}
.jc_center{
    justify-content:center!important;
}
.jc_end{
    justify-content:flex-end!important;
}
.item_center{
    align-items: center;
}
.item_end{
	align-items: flex-end;
}
.flex_prev{
	flex-flow: row-reverse;
}
@media screen and (min-width: 769px) {
	.flex_pc{
	    display:flex;
    	flex-wrap: nowrap;
    	justify-content:space-between;
		flex-wrap: wrap; gap: 30px 0;
	}

}
@media screen and (max-width: 768px) {
	.flex_sp{
	    display:flex;
    	flex-wrap: wrap;
    	justify-content:space-between;
	}
}
/* ------------------------------
   text
------------------------------ */
.taC{text-align: center!important;}
.taR{text-align: right!important;}
.taL{text-align: left!important;}

.nowrap{
	display: inline-block;
	text-indent: 0;
}
.fw3{font-weight: 300!important;}
.fw4{font-weight: 400!important;}
.fw5{font-weight: 500!important;}
.fw7{font-weight: 700!important;}
.fw9{font-weight: 900!important;}

.txt_blk{
	color: #2A2A2A;
}
.txt_wh{
	color: #fff;
}
.txt_yl{
	color: #FFFF52;
}
.txt_red{
	color: #B01229;
}

.txt_marker{
  background: linear-gradient(transparent 95%, #fff 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 2px;
}
.italic{font-style:italic;}


/* ------------------------------
    background
------------------------------ */
.bg_sl{
	position: relative;
	z-index: 2;
	/*margin-top: 90px;*/
}
.bg_sl:before{
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	transform: skewY(-4deg);
  	transform-origin: top left;
  	background: #000;
  	width:100%;
  	height:100%;
}
.bg_ppl{
	background: #DBE1ED;
}
@media screen and (max-width: 768px) {
	.bg_sl:before{
		transform: skewY(-8deg);
	}
}


/* ------------------------------
    字下げ
------------------------------ */
.hang1, .hangli1 li{
	padding-left: 1em!important;
	text-indent: -1em!important;
}
.hang1h, .hangli1h li{
	padding-left: 1.5em!important;
	text-indent: -1.5em!important;
}
.kakko{
	display: inline-block;
	text-indent:-1em!important;
}


/* ------------------------------
    btn
------------------------------ */
.btn_line, .btn_form, .btn_tel{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
}
.btn_line .arw, .btn_form .arw{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 13px;
	width: 24px;
}
.btn_line{
	background: #29C402;
}
.btn_form{
	background: #02A0CC;
}
.btn_tel{
	background: #fff;
	color: #000;
}
@media screen and (min-width: 769px) {

}
@media screen and (max-width: 768px) {
	.btn_line, .btn_form, .btn_tel{
		font-size: 4.2vw;
	}
	.btn_line .arw, .btn_form .arw{
		right: 3.2vw;
		width: 4.8vw;
	}
}


/* ------------------------------
    ttl
------------------------------ */
.ttl{
	text-align:center;
	line-height: 1;
	font-weight: bold;
	font-size: 3.8rem;
	letter-spacing: 0.1em;
}
.ttl1{
	font-size: 3.8rem;
	text-align:center;
	line-height: 1.4;
	position: relative;
	margin-bottom: 60px;
	/*letter-spacing: 0.1em;*/
}
.ttl1 img{
	position: relative;
}
.ttl1 .txt{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.ttl1 .txt1{
	display: block;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.4;
}
.ttl1 .txt2{
	display: block;
	font-weight: 700;
	font-size: 2.4rem;
	padding-top: 0.2em;
	line-height: 1;
	letter-spacing: 0.25em;
}

@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
	.ttl{
		font-size: 7.3vw;
	}
	.ttl1{
		font-size: 6vw;
		margin-bottom: 8vw;
/*		margin-bottom: 10.6vw;*/
	}
	.ttl1 img{
	}
	.ttl1 .txt{
	}

	.ttl1 .txt1{
	}
	.ttl1 .txt2{
		padding-top: 0.8em;
		padding-bottom: 0.2em;
		font-size: 3.4vw;
	}
}


/* ------------------------------
    box_waku
------------------------------ */
.box_waku{
	position: relative;
}
.box_waku1, .box_waku2, .box_waku3, .box_waku4{
	position: absolute;
	border:17px solid #2a2a2a;
	width: 64px;
	height: 64px;
}
.box_waku1{
	top:0;
	left: 0;
	border-bottom:none;
	border-right: none;
}
.box_waku2{
	top: 0;
	right: 0;
	border-bottom:none;
	border-left: none;
}
.box_waku3{
	bottom: 0;
	right: 0;
	border-top: none;
	border-left: none;
}
.box_waku4{
	bottom: 0;
	left:0;
	border-top: none;
	border-right: none;
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
	.box_waku1, .box_waku2, .box_waku3, .box_waku4{
		border-width:2.6vw;
		width: 10.1vw;
		height: 10.1vw;
	}
}

/* ------------------------------
    ico_tri
------------------------------ */
.ico_tri{
	display: block;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
}


/* ------------------------------
    checkli
------------------------------ */
.checkli{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	z-index: 1;
	position: relative;
}
.checkli li{
	position: relative;
	width: 271px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	line-height: 1.5;
	padding-top: 15px;
	border:1px solid #2a2a2a;
	background: rgba(255,255,255,0.8);
	letter-spacing: 0.05em;
}
.checkli li:after{
	content: "";
	display: block;
	position: absolute;
	border: 8px solid;
	border-color: rgba(184,196,218,1);
	width: 100%;
	height: 100%;
	z-index: -1;
	left: 8px;
	top: 8px;
	border-top: none;
	border-left: none;
}
.checkli .ico_check{
	position: absolute;
	left: 50%;
	top: -21px;
	transform: translateX(-50%);
	width: 48px;
}
@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
	.checkli li{
		width: 26.6vw;
		font-size: 3.14vw;
		line-height: 1.66;
		padding-top: 2.6vw;
	}
	.checkli li:after{
		border-width: 1.2vw;
		top:1.2vw;
		left: 1.2vw;
	}
	.checkli .ico_check{
		top: -3.05vw;
		width: 6.1vw;
	}
}



/* ------------------------------
    cta
------------------------------ */
.cta{
	width: 100%;
	background: #2A2A2A;
	text-align: center;
}
.cta .wrap{
	padding: 40px 0 40px;
	z-index: 1;
}
.cta .txt1{
	line-height: 2;
	font-size: 2rem;
	margin-bottom: 22px;
	letter-spacing: 0.05em;
}
.cta .txt2{
	line-height: 2;
	font-size: 2rem;
	margin-bottom: 22px;
	letter-spacing: 0.05em;
	display: inline;
	margin: 0 20px;
}
.cta_btns{
	margin-bottom: 26px;
}
.cta_btns li{
	width: 536px;
}
.cta_btns a{
	height: 80px;
	font-size: 2.56rem;
	letter-spacing: 0.03em;
}
.cta_tel p{
	letter-spacing: 0.1em;
/*	font-weight: 700;*/
}
@media screen and (min-width: 769px) {

	.cta_btns .arw{
		right: 15px;
	}
	.cta_tel p{
		padding-left: 1em;
	}
}

@media screen and (max-width: 768px) {
	.cta{
	}
	.cta .wrap{
		padding: 6.6vw 0 8vw;
	}
	.cta .txt1{
		line-height: 1.6;
		font-size: 3.2vw;
		margin-bottom: 4.8vw;
	}
	.cta .txt2{
		line-height: 1.6;
		font-size: 3.2vw;
		margin-bottom: 4.8vw;
		margin: 0 10px;
	}
	.cta_btns{
		margin-bottom: 5.3vw;
	}
	.cta_btns li{
		width: 100%;
	}
	.cta_btns li+li{
		margin-top: 3.4vw;
	}
	.cta_btns a{
		height: 13.3vw;
		font-size: 4.2vw;
	}
	.cta_tel img{
		width: 71.6vw;
	}
	.cta_tel p{
		line-height: 1;
		font-size: 2.6vw;
		margin-top: 1em;
	}
}



/* ----------------------------------------------------------------------------------------------------
*  header
* --------------------------------------------------------------------------------------------------*/

header {
	width: 100%;
	background: rgba(255,255,255,0.8);
	padding: 0;
	position: fixed;
	top: 0;
	z-index: 99;
	border-bottom: 1px solid #fff;
	height: 80px;
	display: flex;
	align-items: center;
}

header .logo{
	margin-left: 20px;
	display: flex;
	align-items: center;
}
header .logo img{

}
header .logo span{
	line-height: 1.25;
	margin-top: 0.2em;
	margin-left: 18px;
	letter-spacing: 0.1em;
}
header .gnav li{
	line-height: 1;
	border-bottom:1px solid #fff;
}
header .gnav a{
	color: #fff;
	font-size: 1.8rem;
	display: flex;
	width: 100%;
	height: 70px;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.05em;
}
header .gnav2{
	padding: 38px 26px 0;
}
header .gnav2 a{
	height: 65px;
	letter-spacing: 0.03em;
}
header .gnav2 li+li{
	margin-top: 19px;
}
header .gnav2 li.gnav_tel{
	margin-top: 26px;
	text-align: center;
	color: #fff;
	font-size: 1.3rem;
}
header .gnav2 li.gnav_tel img{

}
header .gnav2 li.gnav_tel p{
	letter-spacing: 0.12em;
}
.menu_opn{
	width: 100%;
	height: calc(100% - 80px);
	position: fixed;
 	left: 0;
   	top: 80px;
   	z-index: -1;
   	overflow-y:hidden;
   	display: none;
}
.menu_opn.on{
	width: 100%;
   	height: 100%;
}
.menu_opn.off{
}

.menu_bg{
	background: rgba(255,255,255,0.6);
	background-size: cover;
	position: fixed;
	width: 100%;
	height: calc(100% - 80px);
	left: 0;
	top: 80px;
	z-index: -10;
	display: block;
}

.menu_opn .menu_inner{
	width: 486px;
	height: auto;
	max-height: calc(100% - 80px);
	padding: 0;
	overflow-y:scroll;
	background: #2A2A2A;
	margin: 0 0 0 auto;
	padding-bottom: 35px;
	position: relative;
	z-index: 2;
}
@media screen and (min-width: 769px) and (max-height: 800px){
	.menu_opn .menu_inner{
		height: 100%;
	}
}
@media screen and (max-width: 768px) {
	header {
		border-bottom: none;
	}
	header {
		height: 13.3vw;
	}
	header .logo{
		margin-left: 2.6vw;
	}
	header .logo img{
		width:21.8vw;
	}
	header .logo span{
		line-height: 1.25;
		margin-left: 1em;
		font-size: 2.6vw;
	}
	header .gnav a{
		font-size: 3.46vw;
		height: 14.6vw;
	}
	header .gnav2{
		padding: 8vw 5vw 0;
	}
	header .gnav2 a{
		height: 13.3vw;
	}
	header .gnav2 li+li{
		margin-top: 4vw;
	}
	header .gnav2 li.gnav_tel{
		margin-top: 5.3vw;
		font-size: 2.6vw;
	}
	header .gnav2 li.gnav_tel img{
		width: 71.5vw;
	}
	.menu_opn{
		width: 100%;
		height: auto;
		position: fixed;
	 	left: 0;
	   	top: 13.3vw;
	}
	.menu_opn.on{
		width: 100%;
	   	height: 100%;
	}
	.menu_opn.off{
	}

	.menu_bg{
		height: calc(100% - 13.3vw);
		top: 13.3vw;
	}
	.menu_opn .menu_inner{
		width: 100%;
		height: auto;
		max-height: calc(100% - 13.3vw);
		padding-bottom: 7vw;
	}

}
@media screen and (max-width: 768px) and (orientation: landscape){
	.menu_opn .menu_inner{
		padding-bottom: 8vw;
	}
}

/*------------
sp ハンバーガー
------------*/
.is_gnavOpen { width: 100%; height: 100%; overflow: hidden; }
/*.is_gnavOpen { width: 100%; height: 100%; overflow: hidden; }*/
/* gnav背景 */
.js_gnavLayer { display: none; }
header .bl_navTrigger{
	cursor: pointer;
}
    header .bl_navTrigger,
    header .bl_navTrigger span { display: inline-block; transition: all .4s; }
    header .bl_navTrigger {
    	position: fixed;
    	top: 0;
    	right: 0;
    	width: 80px;
    	height: 80px;
    	background: #2A2A2A;
    	z-index: 999;
    }
    header .bl_navTrigger span {
    	width: 33px;
    	height: 2px;
    	position: absolute;
    	left: 24px;
    	background-color: #fff;
    }
    header .bl_navTrigger:before{
    	content: "MENU";
    	display: block;
    	position: absolute;
    	line-height: 1;
    	color: #fff;
    	width: 100%;
    	bottom: 10px;
    	font-size: 1.4rem;
    	text-align: center;
    }
header .bl_navTrigger span:nth-of-type(1) { top: 17px; }
header .bl_navTrigger span:nth-of-type(2) { top: 30px;}
header .bl_navTrigger span:nth-of-type(3) { top: 43px; }

header .bl_navTrigger.active span:nth-of-type(1) { transform: translateY(13px) rotate(-45deg); }
header .bl_navTrigger.active span:nth-of-type(2) { display: none;}
header .bl_navTrigger.active span:nth-of-type(3) { transform: translateY(-13px) rotate(45deg); }

    /* ハンバーガーメニューボタンアニメーション */
    @-webkit-keyframes active_menu_bar {
        100% { height: 0; }
    }

    @keyframes active_menu_bar {
        100% { height: 0; }
    }
@media screen and (max-width: 768px) {
    header .bl_navTrigger {
    	width: 13.3vw;
    	height: 13.3vw;
    }
    header .bl_navTrigger span {
    	width: 5.6vw;
    	height: 1px;
    	left: 3.85vw;
    }
    header .bl_navTrigger:before{
    	bottom: 1.8vw;
    	font-size: 2.6vw;
    	transform: scale(0.85);
    }
	header .bl_navTrigger span:nth-of-type(1) { top: 3.2vw; }
	header .bl_navTrigger span:nth-of-type(2) { top: 5.3vw;}
	header .bl_navTrigger span:nth-of-type(3) { top: 7.4vw; }

	header .bl_navTrigger.active span:nth-of-type(1) { transform: translateY(2.1vw) rotate(-45deg); }
	header .bl_navTrigger.active span:nth-of-type(3) { transform: translateY(-2.1vw) rotate(45deg); }
}
/* ----------------------------------------------------------------------------------------------------
*  footer
* --------------------------------------------------------------------------------------------------*/
.footbtns{
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #2a2a2a;
	z-index: 6;
	color: #fff;
	transition: .3s;
}
.footbtns .wrap{
	height: 95px;
	align-items: center;
}
.footbtns .txt1{
	font-size: 1.8rem;
	line-height: 1.6;
	width: 250px;
	letter-spacing: 0.15em;
}
.foot_btns li{
	width: 265px;
	margin-left: 20px;
}
.footbtn_tel{
	line-height: 1;
}
.footbtn_tel p{
	font-size: 1rem;
	margin-top: 0.8em;
	letter-spacing: 0.13em;
}
.foot_btns a{
	font-size: 2.56rem;
}
.foot_btns img{
	width: 29px;
	margin-right: 8px;
}
.footbtns.nofix{
	bottom: -100px;
}

@media screen and (min-width: 769px) {
	.footbtns{
		min-width: 1140px;
	}
	.foot_btns img{
		margin-top: 3px;
	}
	.foot_btns .btn_form img{
		margin-top: 6px;
	}
}
@media screen and (max-width: 768px) {
	.footbtns{
	}
	.footbtns .wrap{
		height: auto;
		padding: 2vw 0 4vw;
	}
	.footbtns .txt1{
		font-size: 2.9vw;
		line-height: 1;
		width: 100%;
		text-align: center;
		margin-bottom: 3vw;
	}
	.foot_btns{
	}
	.foot_btns li{
		width: 43vw;
		margin-left: 0;
		white-space: nowrap;
	}
	.foot_btns img{
		width: 4.5vw;
		margin-right: 1vw;
	}
	.foot_btns .btn_line img{
	}
	.foot_btns .btn_form img{
		width: 4.8vw;
	}
	.foot_btns .btn_tel img{
		width: 2.8vw;
	}
	.foot_btns a{
		font-size: 4.2vw;
		height: 9.3vw;
	}

	.footbtns.nofix{
		bottom: -24vw;
	}
	.foot_btns .btn_form img{
		margin-top: 0.6vw;
	}
}

@media screen and (max-width: 768px) and (orientation: landscape){
	.footbtns{
		bottom: -24vw;
	}
}


footer {
	margin-top: 2px;
    width: 100%;
    position: relative;
    background:#2a2a2a;
    padding: 20px 0;
}

.copyright{
	color: #fff;
	text-align: center;
	line-height: 1;
	font-size: 1.4rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
}
@media screen and (max-width: 768px) {
	footer {
		margin-top: 1px;
	    padding: 2.4vw 0;
	}

	.copyright{
		font-size: 2.4vw;
	}
}

