@charset "utf-8";


@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900');


@import url('https://fonts.cdnfonts.com/css/impact');


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


html {
	color: #333333;
    font-family: 'Noto Sans JP', sans-serif;
   	font-size: 100%;
 	margin: 0px auto 0px auto;
	padding: 0px 0px 0px 0px;
	text-align: center;
	}


body {
	margin: 0px auto 0px auto;
	padding: 0px 0px 0 0px;
	text-align : center ;
	font-weight: 500;
}


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

.clear{
	clear: both;
	height:1px;
	overflow: hidden;
}


/*======================================

	common text
	
========================================*/

p {
	color:#333;
	font-size:13px;
	line-height: 2;
	margin:0 0 12px 0;
	padding: 0 0 0 0;
	vertical-align: baseline;
	font-weight: 500;
}

a {
	color:#0080cb;
}
a:hover {
	opacity: 0.8;
}



img{
  text-decoration: none;
  border: none;
  vertical-align: bottom;
  	}
	





#page-top {
    position: fixed;
    bottom: 25px;
    right: 12px;
    font-size: 12px;
    z-index: 50;
	}
#page-top a {
    background: #e83828;
    text-decoration: none;
    color: #fff;
    width: 40px;
    padding: 3px 0;
    text-align: center;
    display: block;
    border-radius: 3px;
	}
#page-top a:hover {
    text-decoration: none;
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	}
	
.clear{
	clear:both;
	width:100%;
	height:1px;
	overflow: hidden;
}




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


a:hover img{
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  text-decoration: none;
  border: none;
	}





/*======================================

	ハンバーガー
	
========================================*/


/* =============================
Configurable CSS Variables
（ここを調整するだけで見た目を変更可能）
============================== */
:root {
/* ハンバーガー本体 */
--burger-size: 48px; /* クリック領域の一辺 */
--burger-thickness: 4px; /* 線の太さ */
--burger-gap: 6px; /* 線の間隔 */
--burger-color: #e83828; /* 線の色 */
--burger-offset-x: 9px; /* 画面左端からの余白 */
--burger-offset-y: 15px; /* 画面上端からの余白 */
--burger-bg: transparent; /* ボタン背景（必要なら） */


/* ドロワー（メニュー本体） */
--drawer-width: min(86vw, 320px); /* 横幅 */
--drawer-bg: #0080cb; /* 背景色 */
--drawer-text: #fff; /* 文字色 */
--drawer-divider: #fff; /* 仕切り線 */


/* マージン（メニュー外のオーバーレイ） */
--overlay-bg: rgba(0, 0, 0, 0.35);/* 透過率付き色（クリックで閉じる）*/


/* Z-index 設定 */
--z-overlay: 9997;
--z-drawer: 9998;
--z-burger: 9999;


/* アニメーション */
--anim-ms: 600ms; /* 開閉の速度 */
--easing: cubic-bezier(.2,.6,.2,1);
}


/* 画面固定のハンバーガーボタン */
.hamburger-btn {
position: fixed;
top: var(--burger-offset-y);
right: var(--burger-offset-x);
width: var(--burger-size);
height: var(--burger-size);
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--burger-bg);
border: 0;
padding: 0;
margin: 0;
cursor: pointer;
z-index: var(--z-burger);
-webkit-tap-highlight-color: transparent;
}
.hamburger-btn:focus-visible { outline: 2px solid #4c9ffe; outline-offset: 2px; }


/* ハンバーガーの3本線 */
.hamburger-icon {
position: relative;
width: calc(var(--burger-size) * 0.55);
height: calc(var(--burger-thickness) * 3 + var(--burger-gap) * 2);
}
.hamburger-icon::before,
.hamburger-icon::after,
.hamburger-icon span {
content: "";
position: absolute;
left: 0;
right: 0;
height: var(--burger-thickness);
background: var(--burger-color);
border-radius: 2px;
transition: transform var(--anim-ms) var(--easing), opacity var(--anim-ms) var(--easing), background var(--anim-ms) var(--easing);
}
.hamburger-icon::before { top: 0; }
.hamburger-icon span { top: calc(50% - var(--burger-thickness)/2); }
.hamburger-icon::after { bottom: 0; }


/* 開いたときに×印に変形 */
.hamburger-btn[aria-expanded="true"] .hamburger-icon::before {
transform: translateY(calc(var(--burger-gap) + var(--burger-thickness))) rotate(45deg);
}
.hamburger-btn[aria-expanded="true"] .hamburger-icon span {
opacity: 0;
}
.hamburger-btn[aria-expanded="true"] .hamburger-icon::after {
transform: translateY(calc(-1 * (var(--burger-gap) + var(--burger-thickness)))) rotate(-45deg);
}

/* ---- Drawer/Overlay 強制版（最後に置く） ---- */
#js-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 320px);
  max-width: 100vw;
  background: #fff;
  color: #222;
  z-index: 9998;
  /* 初期は画面外（古い環境向けに transform を使用） */
  transform: translateX(100%);
  transition: transform var(--anim-ms) var(--easing);
  box-shadow: -2px 0 16px rgba(0,0,0,.15); /* ← 影の向きも反転 */
}
#js-drawer.is-open {
  transform: translateX(0);
}

#js-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--anim-ms) var(--easing);
  z-index: 9997;
}
#js-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* 背面スクロール抑止 */
.no-scroll { overflow: hidden; touch-action: none; }


#js-drawer{ background: none; background-color: var(--drawer-bg); }


.drawer-nav{
	margin-top: 60px;
}


.sp-menu-logo{
	width: 100%;
	text-align: center;
	margin-bottom: 36px;
}
.sp-menu-logo img{
	width: 60%;
	margin: 0 auto;
}

.to-page{
	font-size: 15px;
	list-style: none;
	padding: 0;
	width: 100%;
	margin: 0 auto 0px auto;
	border-top: 1px solid #fff;
}

.to-page li{
	font-size: 15px;
}

.to-page li a{
	display: block;
	width: 100%;
	font-size: 15px;
	padding: 0px;
	color: #fff;
	text-decoration: none;
	padding: 12px 0 12px 0;
	border-bottom: 1px solid #fff;
}






/*======================================

	header
	
========================================*/




header.header{
	position: relative;
	width:100%;
	min-width:100%;
	height: 110px;
	border-top: 0px solid #000;
	top: 0;
	z-index: 50;
	padding: 0 0px 0 0px;
	position: relative;
	overflow: hidden;
	background: transparent;;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


header.headerchange{
	display: none;
	position: relative;
	width:100%;
	min-width:960px;
	height: 110px;
	top: 0;
	z-index: 100;
	padding: 0 0px 0 0px;
	position: fixed;
	overflow: hidden;
	top: -110px;
	transition: .3s;
	background-color: rgb(255,255,255,0.85);
	display: none;
	justify-content: space-between;
	}
.headerchange.show{
    top: 0;
}


.header-left{
	width:310px;
	min-width: 310px;
	height: 110px;
	text-align: left;
	padding: 0 0 0 12px;
}
.header-right{
	display: none;
	width:750px;
	height: 110px;
	padding: 33px 50px 0px 0;
}

.header-left h1{
	width:270px;
	height: auto;
	line-height: 1;
	padding: 0 0 0 0;
	margin: 24px 0 0 0;
}

.header-left h1 img{
	width:100%;
}




/*======================================

	wrapper layout
	
========================================*/

section.bg-white{
	width: 100%;
	padding: 60px 0 75px 0;
	margin: 0;
}

section.bg-gray{
	width: 100%;
	padding: 60px 0 75px 0;
	margin: 0;
	background: #f0f0f0;
}

section.bg-blue{
	width: 100%;
	padding: 60px 0 75px 0;
	margin: 0;
	background: #0080cb;
}


.contents-wrapper{
	width:95%;
	margin: 0 auto 0 auto;
	padding:0 0px 0px 0px;
	text-align: left;
}





/*======================================

	h2
	
========================================*/

.page-head{
	width: 100%;
	height: 240px;
	background: transparent;
	position: relative;
	background: #666;
}


.h2-wrapper{
	width: 100%;
	height: 240px;
	background:#0080cb;
	position: absolute;
	top:0px;
	left: 0;
	padding: 24px 15px 15px 15px;
}

h2{
	width: 100%;

	font-size:42px;
	font-family: 'Impact', sans-serif;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	margin: 0px auto 0 auto;
	padding: 0 0 0 0;
	text-align: left;
}

h2 span{
	text-align: left;
	display: block;
	color:#fff;
	font-size:15px;
	font-weight: 800;
	letter-spacing: 0px;
	margin: 9px 0 0 0;
}

.page-head-photo-wrapper{
	width: 100%;
	height: 120px;
	position: absolute;
	bottom:0px;
	right: 0px;
}

.page-head-photo{
	width: 100%;
	height: 120px;
	object-fit:cover;
}




/*======================================

	h3
	
========================================*/

.page-h3{
	font-size:42px;
	font-family: 'Impact', sans-serif;
	font-weight: 400;
	line-height: 1;
	color: #0080cb;
	margin: 0 auto 36px auto;
	padding: 0 0 0 0;
	text-align: left;
}

.page-h3 span{
	text-align: left;
	display: block;
	color:#333;
	font-size:15px;
	font-weight: 800;
	letter-spacing: 0px;
	margin: 15px 0 0 0;
}


.pagehead-h3{
	font-size:24px;
	font-weight: 600;
	line-height: 1.2;
	color: #333;
	margin: 0 auto 36px auto;
	padding: 0 0 0 0;
	text-align: left;
}

.pagehead-h3 span{
	text-align: left;
	display: block;
	color:#0080cb;
	font-size:15px;
	font-weight: 600;
	letter-spacing: 0px;
	margin: 9px 0 0 0;
}



/*======================================

	footer
	
========================================*/

.footer-wrapper{
	width:100%;
	height: 550px;
	text-align: left;
	padding: 84px 0 0px 0;
	background-image: url("../i/footer_bg.jpg");
	background-size: cover;
}

.footer{
	width:90%;
	text-align: center;
	margin: 0 auto;
}

.footer-inquiry-lead{
	font-size: 15px;
	font-weight: 600;
	color:#fff;
	margin-bottom: 9px;
}


.footer-inquiry-number{
	width:100%;
	display: block;
	justify-content: center;
	gap:24px;
	color:#fff;
}

.footer-inquiry-tel,.footer-inquiry-fax{
	font-size:27px;
	font-weight: 600;
	display: inline-block;
	margin-right: 12px;
}

.footer-inquiry-tel span,.footer-inquiry-fax span{
	font-size:18px;
	font-weight: 600;
}


.footer-inquiry-form{
	width: 100%;
	margin: 15px auto;
}

.footer-inquiry-form a{
	display: block;
	width: 100%;
	height: 55px;
	background: #fff;
	border-radius: 18px;
	margin: 0 auto;
	padding: 0px 0 0 0;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:6px;
	color: #333;
	text-decoration: none;
}

.footer-inquiry-form a:hover{
	opacity: 0.7;
	color:#333;
}

.footer-inquiry-icon{
	width: 15px;
}

.footer-info{
	background: transparent ;
	margin: 30px 0 0 0;
	padding: 0px 0 0 0 ;
	text-align: center;
}


.footer-info-catchcopy{
	font-size: 13px;
	font-weight: 600;
	color:#fff;
	margin-bottom: 12px;
}

.footer-info-logo{
	width: 290px;
	margin: 0 auto 15px auto;
}
.footer-info-logo img{
	width: 100%;
}

.footer-info-address{
	font-size: 13px;
	font-weight: 600;
	color:#fff;
	margin-bottom: 21px;
}



.footer-menu{
	background: transparent ;
	width:960px;
	margin: 42px 0 0 0;
	padding: 0px 50px 0px 50px ;
	display: none;
	justify-content: center;
	gap:24px;
}

.footer-menu a{
	display: block;
	font-size:13px;
	font-weight: 600;
	line-height: 1;
	font-weight: 500;
	margin: 0 0px 0 0;
	color:#fff;
	text-decoration: none;
	}

.footer-menu a:before{
	display: inline-block;
	content: "・";
	font-size:13px;
	font-weight: 600;
	line-height: 1;
	font-weight: 500;
	margin: 0 0px 0 0;
	color:#fff;
	}

.footer-menu a:hover{
	color:#0080cb;
	}



.copyright{
	font-size: 12px;
	color:#fff;
	margin: 36px auto 12px auto;
	padding: 0 50px;
}







}/*//end  max-width: 480px ///////////////////////*/







@media only screen and (min-width: 481px) {


.mobile-menu{
	display: none;
}


/*======================================

	header
	
========================================*/




header.header{
	position: relative;
	width:100%;
	min-width:960px;
	height: 110px;
	border-top: 0px solid #000;
	top: 0;
	z-index: 50;
	padding: 0 0px 0 0px;
	position: relative;
	overflow: hidden;
	background: transparent;;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


header.headerchange{
	position: relative;
	width:100%;
	min-width:960px;
	height: 110px;
	top: 0;
	z-index: 100;
	padding: 0 0px 0 0px;
	position: fixed;
	overflow: hidden;
	top: -110px;
	transition: .3s;
	background-color: rgb(255,255,255,0.85);
	display: flex;
	justify-content: space-between;
	}
.headerchange.show{
    top: 0;
}


.header-left{
	width:310px;
	min-width: 310px;
	height: 110px;
	text-align: left;
	padding: 0 0 0 42px;
}
.header-right{
	width:750px;
	height: 110px;
	padding: 33px 50px 0px 0;
}

.header-left h1{
	width:310px;
	height: auto;
	line-height: 1;
	padding: 0 0 0 0;
	margin: 21px 0 0 0;
}

.header-left h1 img{
	width:100%;
}

/*======================================

	nav
	
========================================*/

.navi {
	width: 100%;
	background: transparent;
	margin: 0px auto 0px auto;
	padding:0px 12px 0 0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:15px;
	}

.navi a{
	position: relative;
	display: inline-block;
	height: 40px;
	text-decoration: none;
	font-size:13px;
	font-weight: 500;
	padding: 10px 12px 0 12px;
	margin: 0 0px 0 0px;
	color:#333;
	}

.navi a:hover{
	color:#0080cb;
	}

.navi a.navi-to-contact{
	position: relative;
	display: inline-block;
	height: 40px;
	background: #333;
	color:#fff;
	text-decoration: none;
	font-size:13px;
	font-weight: 500;
	padding: 10px 21px 0 21px;
	margin: 0 0px 0 21px;
	border-radius: 15px;
	}

.navi a.navi-to-contact:hover{
	background: #0080cb;
	}


/*======================================

	wrapper layout
	
========================================*/

section.bg-white{
	width: 100%;
	padding: 60px 0 75px 0;
	margin: 0;
}

section.bg-gray{
	width: 100%;
	padding: 60px 0 75px 0;
	margin: 0;
	background: #f0f0f0;
}

section.bg-blue{
	width: 100%;
	padding: 60px 0 75px 0;
	margin: 0;
	background: #0080cb;
}


.contents-wrapper{
	width:960px;
	margin: 0 auto 0 auto;
	padding:0 0px 0px 0px;
	text-align: left;
}
.contents-wrapper2{
	width:100%;
	min-width: 1040px;
	margin: 30px auto 0px auto;
	padding:0 0px 0px 0px;
	text-align: center;
}

#contents{
	width:1000px;
	margin: 0 auto 0px auto;
	padding:0 0 0px 0px;
}



/*======================================

	figure
	
========================================*/

figure{
	width:100%;
	margin:0px 0 0px 0;
	padding:0 0 0 0;
}
figure img{
	width:100%;
	margin:0 0 0 0;
	padding:0 0 0 0;
	vertical-align: bottom;
}



/*======================================

	h2
	
========================================*/

.page-head{
	width: 100%;
	height: 280px;
	background: transparent;
	position: relative;
}


.h2-wrapper{
	width: 100%;
	height: 230px;
	background:#0080cb;
	position: absolute;
	top:50px;
	left: 0;
	padding: 0 42px;
}

h2{
	width: 960px;

	font-size:55px;
	font-family: 'Impact', sans-serif;
	font-weight: 400;
	line-height: 1;
	color: #fff;
	margin: 75px auto 0 auto;
	padding: 0 0 0 0;
	text-align: left;
}

h2 span{
	text-align: left;
	display: block;
	color:#fff;
	font-size:15px;
	font-weight: 800;
	letter-spacing: 0px;
	margin: 15px 0 0 0;
}

.page-head-photo-wrapper{
	width: calc(50% + 180px);;
	height: 230px;
	position: absolute;
	top:0px;
	right: 0px;
}

.page-head-photo{
	width: 100%;
	height: 230px;
	object-fit:cover;
}



/*======================================

	h3
	
========================================*/

.page-h3{
	font-size:55px;
	font-family: 'Impact', sans-serif;
	font-weight: 400;
	line-height: 1;
	color: #0080cb;
	margin: 0 auto 36px auto;
	padding: 0 0 0 0;
	text-align: left;
}

.page-h3 span{
	text-align: left;
	display: block;
	color:#333;
	font-size:15px;
	font-weight: 800;
	letter-spacing: 0px;
	margin: 15px 0 0 0;
}


.pagehead-h3{
	font-size:30px;
	font-weight: 600;
	line-height: 1.2;
	color: #333;
	margin: 0 auto 36px auto;
	padding: 0 0 0 0;
	text-align: left;
}

.pagehead-h3 span{
	text-align: left;
	display: block;
	color:#0080cb;
	font-size:15px;
	font-weight: 600;
	letter-spacing: 0px;
	margin: 9px 0 0 0;
}






/*======================================

	footer
	
========================================*/

.footer-wrapper{
	width:100%;
	height: 550px;
	text-align: left;
	padding: 84px 0 0px 0;
	background-image: url("../i/footer_bg.jpg");
	background-size: cover;
}

.footer{
	width:960px;
	text-align: center;
	margin: 0 auto;
}

.footer-inquiry-lead{
	font-size: 15px;
	font-weight: 600;
	color:#fff;
	margin-bottom: 9px;
}


.footer-inquiry-number{
	width:960px;
	display: flex;
	justify-content: center;
	gap:24px;
	color:#fff;
}

.footer-inquiry-tel,.footer-inquiry-fax{
	font-size:33px;
	font-weight: 600;
	display: inline-block;
	margin-right: 12px;
}

.footer-inquiry-tel span,.footer-inquiry-fax span{
	font-size:24px;
	font-weight: 600;
}


.footer-inquiry-form{
	width: 100%;
	margin: 15px auto;
}

.footer-inquiry-form a{
	display: block;
	width: 600px;
	height: 55px;
	background: #fff;
	border-radius: 18px;
	margin: 0 auto;
	padding: 0px 0 0 0;
	font-size: 15px;
	font-weight: 600;
	display: flex;
	justify-content: center;
	align-items: center;
	gap:6px;
	color: #333;
	text-decoration: none;
}

.footer-inquiry-form a:hover{
	opacity: 0.7;
	color:#333;
}

.footer-inquiry-icon{
	width: 15px;
}

.footer-info{
	background: transparent ;
	margin: 30px 0 0 0;
	padding: 0px 0 0 0 ;
	text-align: center;
}


.footer-info-catchcopy{
	font-size: 15px;
	font-weight: 600;
	color:#fff;
	margin-bottom: 12px;
}

.footer-info-logo{
	width: 290px;
	margin: 0 auto 15px auto;
}
.footer-info-logo img{
	width: 100%;
}

.footer-info-address{
	font-size: 13px;
	font-weight: 600;
	color:#fff;
	margin-bottom: 21px;
}



.footer-menu{
	background: transparent ;
	width:960px;
	margin: 42px 0 0 0;
	padding: 0px 50px 0px 50px ;
	display: flex;
	justify-content: center;
	gap:24px;
}

.footer-menu a{
	display: block;
	font-size:13px;
	font-weight: 600;
	line-height: 1;
	font-weight: 500;
	margin: 0 0px 0 0;
	color:#fff;
	text-decoration: none;
	}

.footer-menu a:before{
	display: inline-block;
	content: "・";
	font-size:13px;
	font-weight: 600;
	line-height: 1;
	font-weight: 500;
	margin: 0 0px 0 0;
	color:#fff;
	}

.footer-menu a:hover{
	color:#0080cb;
	}



.copyright{
	font-size: 12px;
	color:#fff;
	margin: 36px auto 12px auto;
	padding: 0 50px;
}



}/*//end  min-width: 481px ///////////////////////*/











