/* ---------------------------------------------------------------
start COMMON CSS
--------------------------------------------------------------- */


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&family=Noto+Sans:ital@0;1&family=Noto+Serif+JP:wght@200..900&display=swap');


* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.kozuka {
	font-family: "小塚ゴシック Pro","Kozuka Gothic Pro",sans-serif;
}
.notosans {
	font-family: "Noto Sans", "Noto Sans CJK JP", sans-serif;
}


body {
	width: 100%;
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 15px;
	line-height: 1.8;
	font-weight: 400;
	font-family: 'Noto Serif JP', Meiryo, sans-serif;
}

body.font-load {
	opacity: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix {
	min-height: 1px;
}

* html .clearfix {
	height: 1px;
	/*\*/
	/*/
	height: auto;
	overflow: hidden;
	/**/
}

a {
	outline: none;
	color: #004eb1;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	cursor: pointer;
}
a.uline { text-decoration: underline; }
a:hover {
	text-decoration: none;
	cursor: pointer;
}
a.uline:hover { text-decoration: none; }

button {
	outline: none;
}

img {
	width: auto;
	height: auto;
	border: none;
	margin: 0;
	padding: 0;
	vertical-align: bottom;
	-ms-interpolation-mode: bicubic !important;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	backface-visibility: hidden;
}

p {
	margin: 0 0 15px 0;
	padding: 0;
}

ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0px;
}

.aligncenter {
	text-align: center;
}

.alignright {
	text-align: right;
}

.alignjust {
	text-align: justify;
	text-justify: inter-ideograph;
	-ms-text-justify: inter-ideograph;
}

.mt5 { margin-top: 5px; }
.mt10 { margin-top: 10px; }
.mt15 { margin-top: 15px; }
.mt20 { margin-top: 20px; }
.mt25 { margin-top: 25px; }
.mt30 { margin-top: 30px; }
.mt35 { margin-top: 35px; }
.mt40 { margin-top: 40px; }
.mt45 { margin-top: 45px; }
.mt50 { margin-top: 50px; }
.mt55 { margin-top: 55px; }
.mt60 { margin-top: 60px; }
.mt65 { margin-top: 65px; }
.mb5 { margin-bottom: 5px; }
.mb10 { margin-bottom: 10px; }
.mb15 { margin-bottom: 15px; }
.mb20 { margin-bottom: 20px; }
.mb25 { margin-bottom: 25px; }
.mb30 { margin-bottom: 30px; }
.mb35 { margin-bottom: 35px; }
.mb40 { margin-bottom: 40px; }
.mb45 { margin-bottom: 45px; }
.mb50 { margin-bottom: 50px; }
.mb55 { margin-bottom: 55px; }
.mb60 { margin-bottom: 60px; }
.mb65 { margin-bottom: 65px; }

.fleft { float: left; }
.fright { float: right; }

.note { font-size: .7em; }
.red { color: #e60012; }

.under { text-decoration: underline; }

.iblock { display: inline-block; }

.indent1 {
	padding-left: 1em;
	text-indent: -1em;
}
.indent1 * { text-indent: 0; }

.w100 { width: 100%; }

.wrapper {
	width: 100%;
	overflow: hidden;
}

.btn1{
    padding: 7px 0;
    color: #fff;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.06em;
    text-decoration: none;
    background-color: #231815;
    border-radius: 50px;
    transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (min-width: 701px) {
	.pc_none { display: none; }
}
@media screen and (max-width: 800px) {
	.sp_none { display: none; }
}

#wrapper {
	padding: 130px 0 0 0;
    position: relative;
	overflow: hidden;
}

@media screen and ( max-width: 800px ) {
	#wrapper{
		padding: 10% 0 0;
	}
	
	.pc_none{
		display: block;
	}
	
	
	
	
	
}



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

#header {
	width: 100%;
	height: 190px;
	margin: 0;
	padding: 0;
	transition: background .3s;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	background-image: url(../img/top/img_line1.png);
	background-size: 100% 190px;
	background-repeat: no-repeat;
	filter: drop-shadow(-8px -3px 5px #aaa);
	background-position: center top;
}


.col_header {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 25px 1.5% 10px;
	box-sizing: border-box;
	display: block;
	align-items: center;
	justify-content: space-between;
	transition: all .3s;
	position: relative;
	z-index: 0;
}


.above_header{
	width: 98%;
	max-width: 1200px;
	margin: 0 auto 15px;
	display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.logo{
	width: 52%;
	max-width: 435px;
}

dl.col_fsize{
	max-width: 156px;
    margin: 0 12px 0 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

dl.col_fsize.pc_none{
	display: none;
}

.flexbox {
  display: flex;
  align-items: center;
}


.flexbox p{
	margin: 0;
	font-size: 17px;
}

.flexbox ul{
	margin: 0;
	padding: 0;
}

div#fontSize{
	max-width:156px; 
}

.flexbox ul li{
	margin: 0 5px 0 0;
	padding: 5px;
	border: solid 1px #000;
	cursor: pointer;
	line-height: 1;
	font-size: 19px;
	list-style: none;
}

.flexbox ul li:first-of-type{
	margin: 0 5px 0 15px;
}

.flexbox ul li:last-of-type{
	margin: 0;
}

.flexbox ul li:hover{
	background-color: #282828;
	color: #fff;
}

.flexbox ul li.active{
	background-color: #282828;
	color: #fff;

}


.logo a:hover{
	opacity: .7;
}

.col_fsize dt{
	width: 88px;
    margin: 0;
    padding: 6px 0 7px;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
}

.col_fsize dd{
	width: calc(100% - 88px);
    margin: 0 0 0 5px;
    padding: 0;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: solid 1px #282828;
    font-size: 19px;
    font-weight: 400;

}

.col_fsize dd:first-of-type{
	border-left: solid 1px #282828;
}



.col_fsize dd div{
	width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.col_fsize dd span{
	width: 100%;
    height: 100%;
    padding: 6px 0 6px;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    -webkit-transition: background-color .2s;
    -moz-transition: background-color .2s;
    -ms-transition: background-color .2s;
    transition: background-color .2s;
}

.col_fsize dd span.textresizer-active,
.col_fsize dd span:hover {
	color: #fff;
	background-color: #3e3a39;
}

.left_call{
	margin-right: 15px;
	max-width: 40px;
}

.right_call{
	line-height: 1.2;
}


.call_header{
	display: flex;
	align-items: center;
}

span.big{
	font-size: 25px;
	font-weight: 500;
	line-height: 1;
	color: #282828;
}

span.big:hover{
	opacity: .8;
}

span.small{
	font-weight: 500;
	line-height: 1;
}


@media screen and ( max-width: 1080px ) {
	#header{
		background-size: 100% 177px;
	}
	
}


@media screen and ( max-width: 900px ) {

	span.big{
		font-size: 20px;
	}
	
	span.small{
		font-size: 14px;
	}

}

@media screen and ( max-width: 800px ) {
	#header{
		height: 140px;
		background-size: 100% 140px;
	}
	
	.above_header{
		display: block;
		margin: 0;
	}
	
	.logo{
		width: 80%;
		margin: 0 auto;
	}
	
	.left_call{
		width: 12%;
		margin-right: 3%;
	}
	
	.col_fsize dd{
		width: 30%;
		padding: 2%;
	}
	
	.col_fsize dt{
		width: 40%;
	}
	
	.flexbox.sp_none{
		display: none;
	}
	
	div#fontSize{
		max-width: 305px;
	}
	
	.flexbox{
		padding: 0 12% 5% 5%;
	}

	.col_header .navi .flexbox ul li:before{
		background-image: none;
	}
	
	.col_header .navi .flexbox ul li:last-of-type{
		    margin: 0 0 0 5px;
	}
	
	
	
}


@media screen and ( max-width: 600px ) {
	#header{
		background-size: 100% 116px;
	}
	
	
}

@media screen and ( max-width: 500px ) {
	#header{
		background-size: 100% 92px;
	}
	
	
}

@media screen and ( max-width: 400px ) {
	#header{
		background-size: 100% 75px;
	}
	
	
}
/* --------------- navi --------------- */

.col_header .navi {
	margin: 0;
	padding: 0;
}

.col_header .navi .inner_navi {
	width: 100%;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sp_header{
	display:none;
}

.col_header .navi li {
	margin: 0 35px 0;
	position: relative;
	z-index: 0;
	text-align: center;

}

.col_header .navi li:nth-of-type(6){
	margin: 0 0 0 35px;
}

.col_header .navi li:last-of-type{
	margin: 0;
}

.col_header .navi li.trigger.active a:before{
	width: 100%;
}


.col_header .navi a {
	margin: 0;
	padding: 0.8em 5px 0;
	color: #282828;
	display: inline-block;
	position: relative;
	z-index: 0;
	font-size: 1.12em;
	font-weight: 500;
	line-height: 1.2;
}


.col_header .navi a:before{
	content: "";
    width: 0%;
    height: 6px;
    margin: 0;
    padding: 0;
    background-color: #fff100;
    position: absolute;
    left: 0;
    bottom: -0.5px;
    z-index: -1;
    transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
}

.col_header .navi a:after{
	content: "";
	width: 1px;
	height: 15px;
	background: #000;
	position: absolute;
	top: 50%;
	left: calc(100% + 35px);
}

.col_header .navi li:nth-of-type(6) a:after{
	display: none;

}

.col_header .navi li:last-of-type a:after{
	display: none;

}


.col_header .navi li:hover a:before{
	width: 100%;
}

.col_header .navi li.active a:before{
}

@media screen and ( max-width: 1080px ) {

	.col_header .navi li{
		margin: 0 0 0 0;
	}
	
	.col_header .navi li:nth-of-type(6){
		margin: 0;
	}
	.col_header .navi a {
		padding: 0.8em 1.5em 0;
		font-size: 0.95em;
	}

	.col_header .navi a:after{
		left: 100%;
	}
	
	.col_header .navi li.trigger.active a:before{
		width: 90%;
	}
	
	
	
	.col_header .navi li:hover a:before{
		width: 90%;
	}
	
	.col_header .navi a:before{
		left: 5%;
	}
	
}


@media screen and ( max-width: 800px ) {
	#menubtn{
		width: 10%;
        max-width: 75px;
        height: 9vw;
        margin: 0;
        padding: 0;
        border-radius: 50%;
        background-color: #282828;
        display: block;
	}
	
	#menubtn .btn{
		width: 50%;
        height: 100%;
        margin: 0 auto;
        position: relative;
        z-index: 0;
	}
	
	#menubtn .btn span{
		width: 100%;
        height: 3px;
        margin: auto;
        padding: 0;
        background-color: #fff;
        display: inline-block;
        transition: all .4s;
        -moz-transition: all .4s;
        -webkit-transition: all .4s;
        position: absolute;
        left: 0;
        right: 0;
	}
	
	#menubtn span:nth-child(1){
		top: 36%;
	}
	

	
	#menubtn span:nth-child(2){
		top: 62%;
	}
	
	.col_header .navi .inner_navi .sp_header{
		width: 90%;
		margin: 0 auto 5%;
		padding: 0 0 0 3%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	

	
	.col_header .navi{
		width: 100%;
        height: 100vh;
        display: none;
        background-color: #3e3a39;
        position: absolute;
        top: 0%;
        right: 0;
	}
	
	.col_header .navi .closebtn {
		width: 9%;
		max-width: 75px;
		height: 9vw;
		margin: 0;
		padding: 0;
		display: block;
		position: absolute;
		border-radius: 50%;
		background: #282828;
		top: 7%;
		right: 6%;
		z-index: 1;
	}
	.col_header .navi .closebtn::before,
	.col_header .navi .closebtn::after {
		content: "";
		width: 22px;
		height: 2px;
		margin: 0;
		padding: 0;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
	}
	
	.col_header .navi .closebtn::before { transform: translate(-50%, -50%) rotate(45deg); }
	.col_header .navi .closebtn::after { transform: translate(-50%, -50%) rotate(-45deg); }
	
	.col_header .navi .inner_navi{
		width: 94%;
		height: 100%;
        margin: 0 auto;
        padding: 5% 0 0;
        display: block;
        background-color: #ffffff;
        position: absolute;
        top: 3%;
        right: 3%;
        overflow: auto;
        border-top-left-radius: 98px;
        border-bottom-right-radius: 98px;
	}
	
	.col_header .navi .inner_navi::-webkit-scrollbar{
	  display:none;
	}

	
	
	.sp_logoheader{
		width: 75%;
		max-width: 435px;
	}

	
	.col_header .navi .inner_navi .left_call img{
		margin: 0;
	}
	
		
	.col_header .navi .inner_navi:before{
		content: "";
		width: 100%;
		height: 100%;
		background-color: #000;
	}
	
	.col_header .navi li{
		position: relative;
	}
	
	.col_header .navi li:before{
		content: "";
		width: 7%;
		max-width: 31px;
		height: 100%;
		max-height: 31px;
		background-image: url(../img/sp/icon_navi.svg);
		background-repeat: no-repeat;
		position: absolute;
		top: 35%;
		left: 5%;		
	}
	
	.col_header .navi li:nth-of-type(7):before{
		background-image: none;
	}
	
	.col_header .navi li:last-of-type:before{
		background-image: none;
	}
	
	.col_header .navi .inner_navi > li{
		width: 100%;
        margin: 0 auto;
        border-bottom: solid 1px #dcdddd;
        position: relative;
        z-index: 0;
        text-align: left;
	}
	
	.col_header .navi .inner_navi > li:first-of-type{
        border-bottom: solid 1px #dcdddd;
        border-top: solid 1px #dcdddd;
	}
	
	.col_header .navi .inner_navi > li > a{
		color: #000;
        padding: 5% 12% 5% 15%;
        display: block;
        font-size: min(5vw , 30px);
        
	}
	

	
	
	li.trigger.tel.pc_none{
		border-bottom: none;
	}
	
	.call_header2{
		display: flex;
		width: 90%;
		max-width: 490px;
		margin: 0 auto;
		justify-content: center;
		border: solid 1px #000;
        padding: 15px;
        border-radius: 50px;
	}
	
	
	.hamburger_cover{
		position: fixed;
	    height: 100vh;
	    background: #000;
	    padding: 5em 3% 2em;
	    z-index: -1;
	    transition: .3s;
	    overflow-y: scroll;
	    top: 0;
	    left: 0;
	    width: 100%;
	}
	
	.col_header .navi a:before{
		display: none;
	}
	
	dl.col_fsize.pc_none{
		padding: 0 0 0 5%;
		width: 63%;
		max-width: 300px;
		display: flex;
	}
	
	dl.col_fsize.sp_none{
		display: none;
	}
	
	
	.call_header{
		display: none;
	}
	
	.col_header{
		display: flex;
		align-items: center;
		padding: 3.5% 1.5% 10px;
	}
	
	
	
}

@media screen and ( max-width: 600px ) {
	.col_header .navi .inner_navi{
		height: 90%;
	}
	
	.col_header .navi .inner_navi{
		border-top-left-radius: 80px;
		border-bottom-right-radius: 80px;
	}
	
}

@media screen and ( max-width: 450px ) {
	.col_header .navi .inner_navi{
		padding: 5% 0 0;
		max-height: 650px;
	}
	
	
	.col_header .navi .closebtn{
		top: 6%;
	}
	
	.col_header .navi .inner_navi{
		border-top-left-radius: 60px;
		border-bottom-right-radius: 60px;
	}
	
}


@media screen and ( max-width: 350px ) {
	.col_header .navi .inner_navi{
		padding: 6% 0 0;
		max-height: 550px;
	}
	
}
/* --------------- footer --------------- */


.col_footer_info{
	margin: 0;
    padding: 0;
    background-color: #3e3a39;
}

.col_footer_info .inner{
	width: 94%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 0 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: block;

}

.info_footer{
	width: calc(100% - 390px);
}

.logo_footer{
	width: 323px;
    margin: 0 0 15px;
    padding: 0;
    transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
}

.logo_footer:hover{
	opacity: .7;
}


.address_footer{
	margin: 0 0 18px;
    padding: 0 0 0 10px;
    color: #fff;
    font-style: normal;
}

.link_footer{
	margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.sns_footer{
	width: 100%;
    max-width: 790px;
    min-height: 58px;
    margin: 0;
    padding: 0 30px 0 0;
}

.wrap_bnr_footer{
	text-align: right;
}

.bnr_instagram_footer{
	margin-bottom: 15px;
    transition: all .2s;
    -moz-transition: all .2s;
    -webkit-transition: all .2s;
}

.bnr_instagram_footer img{
	width: 39px;
	height: 39px;
}

.bnr_instagram_footer img:hover{
	opacity: .8;
}

.bnr_footer{
	width: 100%;
	text-align: right;
}

.bnr_footer img{
	width: 307px;
}

.bnr_footer img:hover{
	opacity: .8;
}

.bnr_sns{
	width: 100%;
	text-align: right;
}

ul.list_footer{
	padding: 0;
	display: flex;
	justify-content: flex-end;
	color: #fff;
}

ul.list_footer li{
	padding: 0 15px;
	border-right: solid 1px #fff;
	line-height: 1;
}

ul.list_footer li:first-of-type{
	padding: 0 15px 0 0;
}

ul.list_footer li:last-of-type{
	padding: 0 0 0 15px;
	border-right:none;
}

ul.list_footer li a{
	color: #ffffff;
}

ul.list_footer li a:hover{
	opacity: .8;
}

.copyright{
	padding: 8px 0;
    color: #fff;
    font-size: 13px;
}



@media screen and ( max-width: 800px ) {
	.col_footer_info .inner{
		padding: 40px 0 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
	}
	
	.info_footer{
		width: auto;
	}
	
	.logo_footer{
		width: 90%;
		margin: 0 auto 25px;
	}
	
	.bnr_sns{
		text-align: center;
	}
	
	.address_footer{
		padding: 0;
        text-align: center;
        display: block !important;
	}
	
	.address_footer .left, .address_footer .right{
		width: auto;
	}
	
	.wrap_bnr_footer{
		text-align: center;
	}
	
	.bnr_instagram_footer img{
		width: 61px;
		height: 61px;
	}
	
	.bnr_footer{
		text-align: center;
	}
	
	ul.list_footer{
		font-size: min(4vw , 15px);
		justify-content: center;
		margin: 0 0 20px;
		
	}
	
	ul.list_footer li{
		padding: 0 10px;
	}
	
	ul.list_footer li:first-of-type{
		padding: 0 10px 0 0;
	}
	
	
	
	
}


/* --------------- scroll event --------------- */

.scroll {
	transition: all 1s;
	-moz-transition: all 1s;
	-webkit-transition: all 1s;
}

.scroll.opacity {
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
}

.scroll.off.opacity {
	opacity: 0;
	-moz-opacity: 0;
	-webkit-opacity: 0;
}

.scroll.top30 {
	position: relative;
	z-index: 0;
	top: 0;
}

.scroll.off.top30 {
	top: 30px;
}





