/* CSS Document */

/*
	青色	#0071b8
	濃青	#005285

	Roboto
		Regular		font-family: roboto, sans-serif; font-weight: 400; font-style: normal;
		Bold		font-family: roboto, sans-serif; font-weight: 700; font-style: normal;
		Black		font-family: roboto, sans-serif; font-weight: 900; font-style: normal;

	 Noto Sans CJK JP
		Regular		font-family: noto-sans-cjk-jp, sans-serif; font-weight: 400; font-style: normal;
		Bold		font-family: noto-sans-cjk-jp, sans-serif; font-weight: 700; font-style: normal;

	Montserrat
		Regular		font-family: montserrat, sans-serif; font-weight: 400; font-style: normal;
		Bold		font-family: montserrat, sans-serif; font-weight: 700; font-style: normal;
*/

.pcOnly{display: none;}

.mbTitle{margin-bottom: 10px !important;}

/*====== Container Box =====*/
/*====== 背景が画面全体になるコンテンツエリアのコンテナ =====*/
/** デザインの最小中央横幅に合わせてmin-widthを変更  **/
.main_wrapper{float: left; position: relative; width:100%; margin:0px auto; overflow: hidden; height: fit-content;} /* 基本最小幅だけ決める */
.main_visible{overflow: visible !important;}
/*====== デザインの最小中央横幅に合わせたコンテンツエリアのコンテナ =====*/
/** デザインの最小中央横幅に合わせてwidth/min-widthと余白に合わせてpaddingを変更  **/
.inner_box{position: relative; width: 90%; margin:0px auto; overflow: hidden; height: fit-content;} /* 基本最小幅だけ決める */
.inner_fix{width:100% !important; height: fit-content;} /* 固定幅の場合にこのクラスを追加 */

.box_left, .box_right{float: left; width: 100%; height: fit-content; text-align: left;}

/*====== 共通項目 =====*/
/* 縦向きタイトル */
.vtitle{text-orientation: upright; writing-mode: vertical-rl;}

/* 縦向きコンテンツ */
.vcontent{text-orientation: upright; writing-mode: vertical-rl;}

/* 横向きコンテンツ */
.hcontent{}


/* ボタン */
.btn_container{
	float: left;
    width: 100% !important;
    height: fit-content;
    margin: 15px auto 0px !important;
    text-align: center !important;
}

a.btn_blue, a.btn_darkblue{
	display: inline-block;
    position: relative;
    width: 170px;
    height: 46px;
    margin: 0 1px;
    border-radius: 25px;
}

a.btn_blue{background-color: #0071b8;}
a.btn_darkblue{background-color: #005285;}

a.btn_blue span, a.btn_darkblue span{
	position:absolute; width:fit-content; height: fit-content; top:0; bottom:0; left:0; right: 0; margin: auto;
	font-size: 14px !important; color: #fff !important; font-weight: 700 !important;
}

/**** 矢印とアニメーション ****/
a.btn_blue path, a.btn_darkblue path{
	position: absolute; right: 10px;
    border-right: 3px solid #fff; height: 5px;
}

a.btn_blue path.top, a.btn_darkblue path.top{
	top: 18px; transform: skew(45deg) translate(0,0);
}
a.btn_blue path.bottom, a.btn_darkblue path.bottom{
	bottom: 18px; transform: skew(-45deg) translate(0,0);
}

/* タイトル */
h2.ptitle{float: left; padding: 0px 0px;}

h2.ptitle .ptitle_eng{
	font-family: 'Montserrat Alternates', sans-serif !important; font-weight: 600; color: #95445a; font-size: 3.5em;
}

h2.ptitle .ptitle_jpn{
	color: #95445a; font-size:1em; letter-spacing: .1em; margin-top: .5em;
}

h3.areatitle{
	float: left; clear: both; border-left: 4px #95445a solid; width: 100%; height: 47px; padding-left:24px;
	font-size: 30px; letter-spacing: .1em; line-height: 40px; 
}

div.areacontent{
	
}

/* 本文やコメント */
.normal_msg{
	font-size: 16px; line-height: 30px; letter-spacing: .1em; font-weight: normal;
}

/*====== ヘッダ =====*/
/** 高さをデザインに合わせて追加する **/
header{
	position: fixed; width: 96%; height: fit-content; background-color: #fff; z-index: 20; top: 0; right: 0;
	margin: 0; border: 1px rgba(0,0,0,0.3) solid; 
	
	-webkit-opacity:0; opacity:0;
	-webkit-transform:translate(0, -300px); transform: translate(0, -300px);
	-webkit-transition: all .6s ease-in; transition: all .6s ease-in;
}
/** デザインの最小中央横幅に合わせてwidthを変更 **/
#header{position: relative; width: calc(100% - 60px); height: fit-content; overflow: hidden; margin: 20px 30px;}

.header_change{
	-webkit-opacity:1; opacity:1;
	-webkit-transform:translate(0, 0) !important; transform: translate(0, 0) !important;
}

/*====== ロゴ =====*/
/* ロゴ 392px 66px; */
#logo{display: block; position: absolute; width: fit-content; height: fit-content; overflow: hidden; top: 0; bottom: 0; margin: auto; left: 0;} 

/*====== メニューボタン =====*/
#btn_menu{position: absolute; top: 0; bottom: 0; margin: auto; right: 0; background-color: #0071b8;}

/***** メニューボタンを３本線を以下でデザイン *****/
path.menu_line{
	position: absolute; height: 2px; background-color: #fff;
}

.line_1, .line_3{left: 0; right: 0; margin: auto;}
.line_2{top: 0; bottom: 0; right: 0; left: 0; margin: auto;}

.line_1_open, .line_3_open{-webkit-transform: rotate(0deg); transform: rotate(0deg); top: 0; bottom: 0; margin: auto; transition: all .2s ease-in;}
.line_2_open{-webkit-transform: scale(1); transform: scale(1); transition: all .2s ease-in;}

.line_1_close{-webkit-transform: rotate(-45deg); transform: rotate(-45deg); top: 0 !important; bottom: 0 !important; margin: auto !important; transition: all .2s ease-in;}
.line_2_close{-webkit-transform: scale(0); transform: scale(0); transition: all .2s ease-in;}
.line_3_close{-webkit-transform: rotate(45deg); transform: rotate(45deg); top: 0 !important; bottom: 0 !important; margin: auto !important; transition: all .2s ease-in;}


/***** メニューボタンの３本線　ここまで *****/

/*====== グローバルナビゲーション =====*/
nav#glonav{
	display: block; position: fixed; top:0; left:0; width:100%; height:100%; overflow: visible; background-color: rgba(17,17,17,.9); z-index: 10;
	-webkit-transform-origin: top; -webkit-transition: all .3s ease-in; -webkit-transform: scale(1, 0);
	transform-origin: top; transition: all .3s ease-in; transform: scale(1, 0);
}

nav#glonav a:not(.navlink):not(.btn_tell){
	display: block; position: relative; width: 92%; height: fit-content; margin: 0px auto;
	text-align: left; font-size: 20px !important; padding: 20px 15px;
	border-bottom: 1px rgba(255,255,255,0.1) solid; color: #fff !important;
	-webkit-transform:translate(0, 0); transform: translate(0, 0); 
	-webkit-transition: all .3s ease-in; transition: all .3s ease-in;
}

nav#glonav a span.btn_plus{display: block; float: right; font-weight: 600 !important; color: #0071b8 !important; padding-left: 10px;}

/******/
#info{
	height: fit-content; margin: 40px auto;
	-webkit-transform:translate(0, 0);
	transform: translate(0, 0);
	-webkit-transition: all .5s ease-in; transition: all .5s ease-in;
}

a.btn_tell{
	display: block; position: relative; width: 260px; height: 56px; margin: 0 auto;
	border-radius: 26px; background-color: #0071b8;	
}

a.btn_tell div{
	position:absolute; width:190px; height: 26px; top:0; bottom:0; left:0; right: 0; margin: auto;
	background-image: url("/_common/img/common/ico_tel.png"); background-position: top left; background-size: 26px; background-repeat: no-repeat;
}

a.btn_tell span{
	display: block; position: absolute; height: fit-content; width: fit-content; top:0; bottom:0; right: 0; margin: auto;
	font-family: roboto, sans-serif !important; font-weight: 700 !important; color: #fff; font-size: 24px;
}

div#businesshour{width: 100%;
    height: fit-content;
    margin: 0px auto;
    text-align: center;}
div#businesshour span{display: inline-block; font-size: 12px !important; color: #fff;}
div#businesshour span.hours{font-family: roboto, sans-serif !important; font-weight: 900 !important; margin-right: 5px;}

/* ドロップダウンメニュー */
nav#glonav ul{
	display: none; position: relative; width: 100%;
	-webkit-opacity: 0; -webkit-transform-origin: top; -webkit-transition: all .3s ease-in; 
	opacity: 0; transform-origin: top; transition: all .5s ease-in; -webkit-transform: scale(0, 1); transform: scale(0, 1);
}
nav#glonav ul li{
	display: block; width: 78%; height: fit-content; 
	-webkit-opacity:0; opacity: 0; -webkit-transform-origin:left; transform-origin: left;
	-webkit-transform:scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: all .3s ease-in; transition: all .3s ease-in;
    padding: 15px 0px; margin: 0px auto; border-bottom: 1px rgba(255,255,255,.1) solid; overflow: hidden;
}
nav#glonav ul li a{display: block; width: 100%; height: fit-content; margin: 0 auto; padding: 0 !important; 
	font-size: 18px !important; color: #fff !important; text-align: left;}

.nav_dropdown, .list_dropdown, .nav_list{
	-webkit-opacity: 1 !important;
	opacity: 1 !important;
	-webkit-transform:scale(1, 1) !important;
	transform: scale(1, 1) !important;
}

.list_dropdown{
	display: block !important;
    margin-bottom: 15px;
    height: fit-content !important;
}

.glonav_a{
	-webkit-transform:translate(0, 0);
	transform: translate(0, 0);
}


/*====== グローバルナビゲーション =====*/
/** 高さと配置位置(float)をデザインに合わせて追加する **/
/*
#glonav{position: fixed; top: 100px; left: 100%; width: 100%; height: 100vh; background-color: #fff;}
.glonav{
	position: absolute;
    width: calc(100% - 70px);
    height: fit-content;
    overflow: visible;
    left: 0px;
    top: 60px;
    right: 0;
    margin: auto;
}
*/

/** グロナビの各ボタンのデザイン フォント,フォントサイズ、文字幅、マージンをデザインに応じて変更 **/
/*
.glonav a{
	display: block;
    float: left;
    width: 100%;
    font-size: 24px;
    text-decoration: none;
    text-align: left;
    margin-bottom: 35px;
}
*/

/*.glonav a.selected::after{
	content: ""; display: block; position: relative; top:-20px; left: 0px; width: 30%; height: 1px; 
	background-color: #be9b5f;}
*/

/** グロナビのボタンのマウスオーバー時のデザイン **/
/*#glonav .glonav .selected::after{
	content: ""; display: block; position: relative; 
	/* 以下は下線の場合 */
	/* top:10px; width: 100%; height: 3px; background-color: #be9b5f; 
}*/

/*====== アニメーション =====*/
.anmt_l2r{ /* 左から右に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translateX(-100px);
	transform:translateX(-100px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_r2l{ /* 右から左に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translateX(100px);
	transform:translateX(100px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_l2r2l_trsfrm{ /* 左右に動くアニメーション */
	-webkit-opacity: 1; opacity: 1;
	-webkit-transform:translateX(0) !important;
	transform:translateX(0) !important;
	-webkit-transition: -webkit-transform .4s ease-in !important;
}

.anmt_t2b{ /* 上から下に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translateY(-50px);
	transform:translateY(-50px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_b2t{ /* 下から上に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translateY(50px);
	transform:translateY(50px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_t2b2t_trsfrm{ /* 上下に動くアニメーション */
	-webkit-opacity: 1; opacity: 1;
	-webkit-transform:translateY(0) !important;
	transform:translateY(0) !important;
	-webkit-transition: -webkit-transform .4s ease-in !important;
}

.anmt_lb2rt{ /* 左下から右上に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translate(-100px,50px);
	transform:translate(-100px,50px);
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_rb2lt{ /* 右下から左上に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translate(100px,50px);
	transform:translate(100px,50px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_lt2rb{ /* 左上から右下に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translate(-100px,-50px);
	transform:translate(-100px,-50px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_rt2lb{ /* 右上から左下に動くelement */
	-webkit-opacity: 0; opacity: 0;
	-webkit-transform:translate(100px,-50px);
	transform:translate(-100px,50px);	
	-webkit-transition: -webkit-transform .0s ease-in;
}

.anmt_angle_trnsfrm, .logo_trnsfrm{ /* 上下左右に動くアニメーション */ /* ロゴを動かさない場合は.logo_trnsfrmを外す */
	-webkit-opacity: 1; opacity: 1;
	-webkit-transform:translate(0px,0px) !important;
	transform:translate(0px,0px) !important;
	-webkit-transition: -webkit-transform .4s ease-in !important;
}

/*====== 各項目のタイトル =====*/


/*====== フッター =====*/
footer{position: relative; width: 100%; height: fit-content; overflow: hidden;}

.footer_box{
	float: left; height: fit-content; /*padding: 40px 95px 40px 105px; margin-top: 100px;*/
	background-color:#0071b8; border-top-right-radius: 60px; overflow: hidden;
}

#footer_logo{display: block; margin: 20px auto !important; width: fit-content; height: fit-content;}

#footer_address, #footer_address a{
	color: #fff !important;
    margin: 20px auto !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    line-height: 14px;
    text-align: center;
}

/** ヘッダーにグロナビ以外の情報がある場合　サイズと配置位置(float)などをデザインに合わせて追加する **/
#footer_info{width: 260px; height: fit-content; margin: 10px auto!important;}

a.footer_btn_tell{
	display: block; position: relative; width: 200px; height: 40px;
	border-radius: 20px; background-color: #005285 !important; margin: 0px auto;
}

a.footer_btn_tell div{
	position:absolute; width: 140px; height: 20px; top:0; bottom:0; left:0; right: 0; margin: auto;
	background-image: url("/_common/img/common/ico_tel.png"); background-position: top left; background-size: 20px; background-repeat: no-repeat;
}

a.footer_btn_tell span{
	display: block; position: absolute; height: fit-content; width: fit-content; top:0; bottom:0; right: 0; margin: auto;
	font-family: roboto, sans-serif !important; font-weight: 700 !important; color: #fff; font-size: 18px;
}

#footer_businesshour{
	width: 100%;
    height: fit-content;
    margin: 0px auto;
    text-align: center;}
#footer_businesshour span{display: inline-block; font-size: 12px !important; color: #fff;}
#footer_businesshour span.hours{font-family: roboto, sans-serif !important; font-weight: 900 !important; margin-right: 2px;}

/*====== コピーライト =====*/
#copyright{
	width: 100%; height: fit-content; padding: 5px 0px; text-align: center;
	font-size:10px; font-weight: 600; color: #fff; background-color: #005285;
}


/*====== ↓↓↓↓↓↓ その他共通項目をこちらに記載 ↓↓↓↓↓↓ =====*/




