@charset "utf-8";
/*=================================================================================*/
/** 768px未満 スマホサイズ画面 ＜これが基本＞ **/

/*==================
  電話番号タップ
==================*/
a.telLink0 { cursor: pointer; pointer-events: auto; text-decoration:underline; color:#000000; }

svg {
	max-height:30px;
}
img[src$=".svg"] {
	width: auto;
}

.disp_p { display:none; }/*PC時だけ表示*/
.disp_s { display:block; }/*スマホ時だけ表示*/
.disp_pt { display:none; }/*PC時とタブレット時表示*/
.disp_st { display:block; }/*スマホ時とタブレット時表示*/


.disp_fix { position:fixed; top:0; left:0; z-index:50; width:100%; }

/* header */
.head_bg{
	position: relative;
	background: #FFFFFF;
	box-shadow: 4px 4px 5px rgb(0,0,0,.5);
	z-index: 500;
}
.head{
	box-sizing: border-box;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	background: #FFFFFF;
	/*box-shadow: 4px 4px 5px rgb(0,0,0,.5);*/
	/*padding: 0.5em 0;*/
	position: fixed;
	z-index: 50;
}
.head>ul{
	display: flex;
	flex-wrap: wrap;
	justify-content:flex-end;
	align-items: center;
}
.head>ul>li:nth-child(1){
	margin: 0 13% 0 0;
	width: 45%;
}
.head>ul>li:nth-child(2){
	width: 12%;
	max-width: 126px;
	margin: 0 1%;
}
.head>ul>li:nth-child(3){
	width: 12%;
	max-width: 126px;
	margin: 0.5em 1%;
}
.head>ul>li:nth-child(4){
	width: 12%;
	max-width: 126px;
	margin: 0.5em 1%;
}


/*===============================
  下固定バナー
===============================*/

.kote_bg{
	width:100%;
	position: fixed;
	z-index:2000;
	bottom:0;
}
.kote{
	position: absolute;
	width: 100%;
	bottom:1em;
	right:3em;
}
.kote_s{
	width: 100%;
	max-width: 1200px;
	margin:0 auto;
}
.kote_s>ul{
	position: relative;
	display: flex;
	flex-wrap:wrap;
	width:96%;
	margin:0 auto;
	justify-content:center;
}
.kote_s>ul>li{
	width:90%;
	max-width: 765px;
	margin:0 auto 0.5em;
}

.kote_btn01,
.kote_btn02{
	width:100%;
	margin:0 auto;
	position: relative;
	z-index: 2;
}


/***  ページTOP  ***/
#page_tops {
	position: fixed;
	display:block;
	width:auto;
	max-width:15%;
	z-index:50000;
	bottom:5.5em;
	right:0.5em;
}


/*==========================
	フッター
=========================***/
.foot_back{
	background:#FFFFFF;
	padding:2em 0 7em;
}


.foot_back>ul{
	display: flex;
	flex-wrap:wrap;
	width:96%;
	max-width: 1600px;
	margin:0 auto;
	align-items: center;
}

.foot_back>ul>li:nth-child(1){
	width:100%;
	margin:1em 0 3em 0;
	order: 2;
}

.foot_back>ul>li:nth-child(2){
	width:100%;
	margin:0;
	order: 1;
}

.foot_back_navi>ul>li{
	
	display: block;
	padding:0;
	border-bottom:1px solid #000000;
}

.foot_back_navi>ul>li a{
	display: block;
	padding:1em;
	box-sizing: border-box;
	text-align: center;
	font-weight: bold;
	color:#000000;
	font-size: 110%;
	text-decoration: none;
	-webkit-transition: .2s ease-in-out;
	transition: .2s ease-in-out;

}


.foot_back_navi>ul>li a:hover{
	color:#D10E16;
}


/*=================================================================================*/
/** 768px以上　タブレット縦　サイズ画面  **/
@media (min-width : 768px) {
/*==================
  電話番号タップ
==================*/
a.telLink0 { display:inline-block; cursor: default; pointer-events: none; text-decoration:none; }


.disp_p { display:block; }/*PC時・タブレット時表示*/
.disp_s { display:none; }/*スマホ時だけ表示*/

	
/* header */
	
.head{
	position: relative;
}
.head>ul>li:nth-child(1){
	width: 25%;
	margin: 0 48% 0 0;
}
.head>ul>li:nth-child(2){
	width: 7%;
	max-width: 126px;
}
.head>ul>li:nth-child(3){
	width: 7%;
	max-width: 126px;
}
.head>ul>li:nth-child(4){
	width: 7%;
	max-width: 126px;
}
	
.head_tel{
	position: fixed;
	top: 0;
	right: 1%;
	filter: drop-shadow(7px 7px 5px rgb(0,0,0,.1));
	z-index: 2000;
}
	
.foot_back{
	padding:2em 0 15em;
}
	
.foot_back>ul{
	display: flex;
	flex-wrap:wrap;
	width:96%;
	max-width: 1600px;
	margin:0 auto;
	align-items: center;
}

.foot_back>ul>li:nth-child(1){
	width:20%;
	margin:0;
	order: 1;
}

.foot_back>ul>li:nth-child(2){
	width:70%;
	margin:0 5%;
	order: 2;
}

.foot_back_navi>ul>li{
	
	display: inline-block;
	padding:0 1em;
	border-right:1px solid #000000;
	border-bottom: none;
}

.foot_back_navi>ul>li a{
	display: inline-block;
	padding:0;

}

.foot_back_navi>ul>li:last-child{
	border-right:none;
	border-bottom:none;
}

	
	
/***  ページTOP  ***/
#page_tops {
	right:2em;
}

}

@media (min-width : 1200px) {

.disp_pt { display:block; }/*PC時だけ表示*/
.disp_st { display:none; }/*スマホ時とタブレット時表示*/

.head>ul{
	align-items: flex-start;
	justify-content:space-between;
}
.head>ul>li:nth-child(1){
	width: 25%;
	margin: 0 25% 0 0;
}
	
.head>ul>li:nth-child(2){
	width: 35%;
	max-width: 260px;
	margin: 0.5em 25% 0.5em 0;
}
.head>ul>li:nth-child(3){
	width: 15%;
	max-width: 126px;
	margin:0;
	position: fixed;
	right:calc(140px + 2em);
}
.head>ul>li:nth-child(4){
	width: 15%;
	max-width: 126px;
	position: fixed;
	margin:0;
	right: 2em;
}



/***  ページTOP  ***/
#page_tops {
	position: fixed;
	display:block;
	width:auto;
	z-index:50;
}
}

@media (min-width : 1800px) { 

.head>ul>li:nth-child(2){
	margin: 0.5em 14% 0.5em 0;
}
	
}
