@charset "UTF-8";
/* CSS Document */
html, body, div, 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, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, 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: 16px;
	font-weight: normal;
	line-height: normal;
	color: #555555;
	vertical-align: baseline;
}
html {
	overflow: auto;
}
body {
	line-height: normal;
	font-family: 'ヒラギノ角ゴ', 'Hiragino Kaku Gothic ProN', 'YuGothic', '游ゴシック', 'メイリオ', Meiryo, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
	font-smoothing: antialiased;
	font-variant-numeric: tabular-nums;
	/* safari hover対策 */
	-webkit-font-smoothing: antialiased;
	background: url("../images/haad_back_pattern.png"), url("../images/head_back_leaf.png");
	background-size: 843px auto, 721px auto;
	background-repeat: repeat-x, no-repeat;
	background-position: top left, top center;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
ul, ol {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '"';
}
a {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	text-decoration: none;
	color: inherit;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* box-sizing: border-box */
/*-------------------------------------------------------*/
*, *:before, *:after {
	box-sizing: inherit;
}
html {
	box-sizing: border-box;
}
/* clearfix */
/*-------------------------------------------------------*/
.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
.clear {
	clear: both;
}
* html .clearfix {
	height: 1px;
	/*¥*/ /*/
    height: auto;
    overflow: hidden;
    /**/
}
/* margin-bottom */
/*-------------------------------------------------------*/
.low5 {
	margin-bottom: 5px;
}
.low10 {
	margin-bottom: 10px;
}
.low20 {
	margin-bottom: 20px;
}
.low30 {
	margin-bottom: 30px;
}
.low40 {
	margin-bottom: 30px;
}
.low50 {
	margin-bottom: 50px;
}
.low70 {
	margin-bottom: 70px;
}
.low80 {
	margin-bottom: 70px;
}
.low90 {
	margin-bottom: 70px;
}
.low100 {
	margin-bottom: 100px;
}
.low150 {
	margin-bottom: 150px;
}
.low200 {
	margin-bottom: 200px;
}
.low300 {
	margin-bottom: 300px;
}
/* pading-top */
/*-------------------------------------------------------*/
.pa10 {
	padding-top: 10px;
}
.pa20 {
	padding-top: 20px;
}
.pa30 {
	padding-top: 30px;
}
.pa40 {
	padding-top: 40px;
}
.pa50 {
	padding-top: 50px;
}

/* txt position */
/*-------------------------------------------------------*/
.center_text {
	text-align: center;
}
.left_text {
	text-align: left;
}
.right_text {
	text-align: right;
}
/* txt size color */
/*-------------------------------------------------------*/
.txt_large {
	font-size: 1.2rem;
}
.txt_large2 {
	font-size: 1.8rem;
}
.txt_small {
	font-size: 0.9rem;
}
.bold {
	font-weight: 800;
}
.red {
	color: #F80408;
}
.blue {
	color: #0769bc;
}
.mincho_font {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
/* txt link */
/*-------------------------------------------------------*/
.txt_link a {
	color: #0a6fe1;
}
.txt_link a:hover {
	text-decoration: underline;
}
/* Font English */
/*-------------------------------------------------------*/
.en_font {
	font-family: 'Poppins', sans-serif;
}
/* Annotation */
/*-------------------------------------------------------*/
.note {
	font-size: 0.9rem;
	text-indent: -1rem;
	padding-left: 1rem;
}
.note_center {
	font-size: 0.9rem;
	text-align: center;
}

body {
	width: 100%;
}
body.fixed {
	position: fixed;
}


/* HEADER */
/*-------------------------------------------------------*/
.header {
	width: 100%;
	max-width: 1500px;
	height: 110px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-content: center; 
	align-items: center;
	position: relative;
}

/* ロゴ */
.header h1{
	width: 62px;
	height: auto;
	position: absolute;
	z-index: 9999;
	top: 20px;
	left: 69px;
}
.header h1 img{
	width: 100%;
	height: auto;
}

/* グローバルナビ PC */
.header .global_navi{
	margin-right: 100px;
	display: flex;
}
.header .global_navi li{
	width: 8rem;
	font-size: 0.95rem;
	text-align: center;
}
.header .global_navi li a{
	display: block;
}
.header .global_navi li{
	width: 8rem;
	position: relative;
	text-align: center;
}
.header .global_navi li::before {
	content: "";
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: #2A8EEA;
	transform: scale(0, 1);
	transition: all 0.5s;
}
.header .global_navi li:hover::before {
	transform: scale(1, 1);
}

/* Header---お問い合わせ電話番号  */
.header .phone{
	padding: 0 0 0 28px;
	position: relative;
	font-size: 1.4rem;
	font-weight: 800;
	background: url("../images/ph_ic.png");
	background-repeat: no-repeat;
	background-size: 24px auto;
	background-position: center left;
}
.header .phone::before{
	content: "お問合わせ";
	display: block;
	padding: 0 12px;
	position: absolute;
	top: -18px;
	right: 0;
	font-size: 0.7rem;
	line-height: 1.1rem;
	background: #044c83;
	color: #ffffff;
}

/* SPナビゲーション */
/*-------------------------------------------------------*/

#g-nav{
    display: none;
}
/*====== ボタンのためのCSS ======*/
.openbtn{
	display: none;
}


/* INQUIRY */
/*-------------------------------------------------------*/
.contact{
	width: 100%;
	padding: 40px 0;
	background: url("../images/contact_back.jpg");
	text-align: center;
}
.contact h2{
	width: 10rem;
	margin-bottom: 40px;
	display: inline-block;
	background: #044c83;
	color: #ffffff;
}
.contact ol{
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
}
.contact ol li{
	margin-right: 50px;
	padding-left: 2rem;
	position: relative;
	font-size: 1.8rem;
	font-weight: 800;
}
.contact ol li:first-child{
	background: url("../images/ph_ic.png");
	background-repeat: no-repeat;
	background-size: 24px auto;
	background-position: center left;
}
.contact ol li:first-child::after{
	content: "電話でのお問合せ";
	position: absolute;
	top: -18px;
	left: 0;
	font-size: 0.9rem;
	font-weight: 400;
}
.contact ol li:last-child{
	margin-right: 0;
	background: url("../images/ph_ic.png");
	background-repeat: no-repeat;
	background-size: 24px auto;
	background-position: center left;
}
.contact ol li:last-child::after{
	content: "FAXでのお問合せ";
	position: absolute;
	top: -18px;
	left: 0;
	font-size: 0.9rem;
	font-weight: 400;
}
.contact .map_btn{
	width: 300px;
	margin: 50px auto 0 auto;
	position: relative;
	z-index: 1;
	display: block;
	background: #ffffff;
	border: 1px solid #cccccc;
	font-size: 0.9rem;
	text-align: center;
	transition: all 0.3s;
}
.contact .map_btn a{
	padding: 3px 0;
	display: block;
}
.contact .map_btn::after{
	content: "\e5e1";
	position: absolute;
	top: 5px;
	right: 8px;
	font-family: 'Material Icons';
	font-size: 1rem;
	font-weight: 100;
	color: #777;
	transition: all 0.3s;
}
.contact .map_btn::before{
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0;
	z-index: -1;
	background: #0285C3;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: all 0.3s;
}
.contact .map_btn:hover::before{
	transform: scale(1, 1);
}
.contact .map_btn:hover::after, .contact .map_btn:hover{
	color: #fff;
}


/* FOOTER */
/*-------------------------------------------------------*/

#footer{
    position: relative;
}

/* PGETOP */
.topBtn a {
    position: fixed; /*固定*/
    bottom: 0px; /*場所を右下に移動*/
    right: 0; /*場所を右下に移動*/
    display: block; /*aタグをblock要素に変更*/
    background-color: rgba(30, 41, 55, 1);
    background-image: url("../images/pagetop.png");
    background-position: center;
    background-size: 20px auto;
    background-repeat: no-repeat;
    width: 60px;
    padding: 25px 0;
    color: #ccc;
    text-decoration: none;
    font-size: 0.6rem;
    text-align: center;
    z-index: 1000;
}
.topBtn a:hover {
    background-color: rgba(108, 115, 120, 1);
}
#topBtn{
    position: fixed; /*固定*/
    bottom: 0; 
}
/* Footer-Navi*/
.footer ul{
	padding: 50px 0;
	display: flex;
	justify-content: center;
	border-bottom: 1px solid #cccccc;
}
.footer ul li{
	margin-right: 40px;
	font-size: 0.9rem;
	color: #666;
	transition: all 0.3s;
}
.footer ul li:hover{
	color: #aaa;
}
.footer ul li:last-child{
	margin-right: 0;
}
.footer p{
	padding: 25px 0;
	font-size: 0.7rem;
	text-align: center;
	color: #999;
}



@media screen and (min-width: 0px) and (max-width: 1500px) {
	
/* HEADER */
/*-------------------------------------------------------*/
.header .phone{
	padding: 0 10px 0 28px;
}
.header .phone::before{
	right: 10px;
}

}

@media screen and (min-width: 10px) and (max-width: 1024px) {

/* HEADER */
/*-------------------------------------------------------*/

.header {
	height: 90px;
}
	
/* グローバルナビ PC */
.header .global_navi{
	display: none;
}
/* Header---お問い合わせ電話番号  */
.header .phone{
	display: none;
}
	
	


/* SPナビゲーション */
/*-------------------------------------------------------*/

#g-nav, #overlay{
	display: block;
    position:fixed;
	top:0;
    right: -120%;
    height: 100vh;/*ナビの高さ*/
}
#g-nav{
    z-index: 99999;
	width:80%;
	background:#fff;
	transition: all 0.3s;
}
#overlay{
    z-index: 9999;
	width:100%;
	background: #0B1D31;
	opacity: 0.95;
	transition: all 0.3s;
}

/*アクティブクラス*/
#g-nav.panelactive, #overlay.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 99999; 
    width: 80%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
	width: 100%;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999999;
    top:30%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リスト　レイアウト設定*/
#g-nav li{
	position: relative;
	padding-left: 20px;
	border-bottom: 1px solid #cccccc;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 800;
}
#g-nav li:first-child{
	border-top: 1px solid #cccccc;
}
/* アイコン*/
#g-nav li::after{
	content: "\e5e1";
	position: absolute;
	top: 25%;
	right: 10px;
	font-family: 'Material Icons';
	font-size: 1.2rem;
	font-weight: 100;
	color: #aaaaaa;
}

#g-nav li a{
	padding:15px 0;
	display: block;
}
/* リスト---お問い合わせ電話番号  */
#g-nav .phone_sp{
	width: 90%;
	padding: 0 0 0 28px;
	position: relative;
	top:50%;
	left:20px;
	font-size: 1.4rem;
	font-weight: 800;
	background: url("../images/ph_ic.png");
	background-repeat: no-repeat;
	background-size: 24px auto;
	background-position: center left;
}
#g-nav .phone_sp::before{
	content: "お問合わせ";
	display: block;
	padding: 0 12px;
	position: absolute;
	top: -20px;
	left: 0;
	font-size: 0.7rem;
	line-height: 1.1rem;
	background: #044c83;
	color: #ffffff;
}


/*========= ボタンのためのCSS ===============*/
.openbtn{
	display: block;
	position:relative;
    z-index: 999999;/*ボタンを最前面に*/
	top:0;
	right: 10px;
	cursor: pointer;
    width: 90px;
    height:70px;
}
.openbtn::after{
	content: "Menu";
	position: absolute;
	right: 10px;
	bottom: 5px;
	font-size: 0.75rem;
	color: #666666;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    right: 10px;
    height: 3px;
    border-radius: 2px;
	background-color: #666;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	width: 75%;
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	width: 50%;
	top:25px;
}

.openbtn span:nth-of-type(3) {
	width: 25%;
	top:35px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    right: 0;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    right: 0;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
}


	
}

@media screen and (min-width: 10px) and (max-width: 768px) {

/* HEADER */
/*-------------------------------------------------------*/

/* ロゴ */
.header h1{
	width: 10%;
	padding: 0 7px 7px 7px;
	left: 2%;
	background: #ffffff;
}
	
/* INQUIRY */
/*-------------------------------------------------------*/
.contact{
	width: 100%;
	padding: 40px 0;
	background: url("../images/contact_back.jpg");
	text-align: center;
}
.contact h2{
	width: 10rem;
	margin-bottom: 50px;
	font-size: 0.9rem;
	color: #ffffff;
}
.contact ol{
	margin-bottom: 30px;
	display: block;
}
.contact ol li{
	width: 240px;
	display: inline-block;
	margin: 0 auto 30px auto;
	padding-left: 24px;
	font-size: 1.5rem;
}
contact ol li:first-child::after{
	font-size: 0.8rem;
}
.contact ol li:last-child::after{
	font-size: 0.8rem;
}
.contact .map_btn{
	width: 76%;
}
	
/* FOOTER */
/*-------------------------------------------------------*/

/* PGETOP */
.topBtn a {
    width: 100%;
    padding: 20px;
	background-color: rgba(30, 41, 55, 0.95);
}	
.topBtn a:hover {
    background-color: rgba(30, 41, 55, 0.95);
}
/* Footer-Navi*/
.footer ul{
	padding: 30px 0 20px 0;
	display: flex;
	flex-wrap: wrap;
	border-bottom: 0px solid #cccccc;
}
.footer ul li{
	width: 50%;
	margin-right: 0;
	padding: 12px;
	border-bottom: 1px solid #cccccc;
	border-right: 1px solid #cccccc;
	font-size: 0.8rem;
	text-align: center;
}
.footer ul li:hover{
	color: #666;;
}
.footer ul li:nth-child(1), .footer ul li:nth-child(2){
	border-top: 1px solid #cccccc;
}
.footer ul li:nth-child(even){
	border-right: 0px solid #cccccc;
}
.footer p{
	font-size: 0.6rem;
}
	
}

@media screen and (min-width: 10px) and (max-width: 600px) {
	
/* ロゴ */
.header h1{
	width: 12.6%;
	
}
	
}