@charset "UTF-8";

/***********************************************
 *
 *	01, Browser Reset
 * 02, font
 * 03, headding
 * 04, link
 * 05, module
 * 06, layout
 * 07, header
 * 08, footer
 * 09, navi
 *
 ***********************************************/


/* ===========================================
	 01, Browser Reset
   =========================================== */
   
html, body, div, span, 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, sup, var, b, i, dl, dt, dd, ul, li, fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, dialog, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin:0;
  padding:0;
}
html{
	overflow-y: scroll;
	font-size:62.5%;   /* 10px */
}
body {
	color: #464646;
	background-color: #fff;
	font-size: 10px;
	font-size: 1rem;
	line-height: 1.6;
	font-family:Verdana, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
}
* {
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
	display:block;
}
audio, canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
table {
	border-collapse:collapse;
	border:0;
}
a{
	border: 0;
}
img {
	border:0;
	vertical-align: bottom;
}
ins{
	text-decoration:none;
}
ul {
	list-style:none;
}
br {
	letter-spacing: 0;
}


/* ===========================================
	 02, font
   =========================================== */
 
.gothic{
	font-family:Verdana, "游ゴシック", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
/* 明朝体 */
.mincho {
font-family: "Times New Roman", "游明朝", YuMincho, "Hiragino Mincho ProN", Meiryo, serif;
} 

/* 等幅書体 */
.mono {
font-family: Osaka-mono, "MS Gothic", monospace;
} 

/* OS X限定 丸ゴシック体 */
.hiraginoMaruGothic {
font-family: "Hiragino Maru Gothic ProN", Meiryo, fantasy;
} 

.fs12px{ 
	font-size: 1.2rem;
}
.fs13px{ 
	font-size: 1.3rem;
}
.fs14px{ 
	font-size: 1.4rem;
}
.fs15px{ 
	font-size: 1.5rem;
}
.fs16px{ 
	font-size: 1.6rem;
}
.fs17px{ 
	font-size: 1.7rem;
}
.fs18px{ 
	font-size: 1.8rem;
}
.fs19px{ 
	font-size: 1.9rem;
}
.fs20px{ 
	font-size: 2rem;
}
.fsL{
	font-size: larger;
}
.fsS{
	font-size: smaller;
}
.txtB{
	font-weight: bold;
}
.txtRed{
	color: #dc143c;
}

.txtC{
	text-align: center;
}
.txtL{
	text-align: left;
}
.txtR{
	text-align: right;
}

.txtidt{
	text-indent: -1em;
	padding-left: 1em;
}

/* -------- */
address, em, strong{
	font-style:normal;
}
em{
	font-weight: bold;
}


/* ===========================================
	 03, h1 h2 h3 h4 h5 h6
   =========================================== */
   
h1,h2,h3,h4,h5,h6{
	font-size: 1.3rem;
}


/* ===========================================
	 04, link
   =========================================== */
 
a{
	color: #464646;
	text-decoration: none;
	opacity: 1;
	transition-duration: 0.5s;
} 
a:hover{
	text-decoration: none;
	opacity: 0.6;
	transition-duration: 0.2s;
}
a:active{
}


/* ===========================================
	 05, module
   =========================================== */
   
/* --------------------
 *	float clear
 * clearFix
 */
	
.clearB{
	clear: both;
}
.clearL{
	clear: left;
}
.clearR{
	clear: right;
}

/* clearfix */
.clearfix:after{
	clear:both;
	display: block;
	content: "";
}

/* --------------------
 *	float
 */
 
.floatL{
	float: left;
}
.floatR{
	float: right;
}

/* --------------------
 *	margin
 * padding
 */

.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;
}
.mb70{
	margin-bottom: 70px;
}
.mb75{
	margin-bottom: 75px;
}
.mb80{
	margin-bottom: 80px;
}
.mb85{
	margin-bottom: 85px;
}
.mb90{
	margin-bottom: 90px;
}
.mb95{
	margin-bottom: 95px;
}
.mb100{
	margin-bottom: 100px;
}
.mb1em{
	margin-bottom: 1em;
}

.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;
}
.mt70{
	margin-top: 70px;
}
.mt75{
	margin-top: 75px;
}
.mt80{
	margin-top: 80px;
}
.mt85{
	margin-top: 85px;
}
.mt90{
	margin-top: 90px;
}
.mt95{
	margin-top: 95px;
}
.mt100{
	margin-top: 100px;
}


/* ------------------------
 *	レスポンシブ
 */
@media (max-width:767px){
	.pc{
		display: none !important;
	}
	.content{
		width: 100%;
		padding-left: 5%;
		padding-right: 5%;
	}
	#background{
		/*
		display: none;
		*/
	}
}
@media (min-width:768px){
	body{
		min-width: 960px;
	}
	.sp{
		display: none !important;
	}
	.content{
		width: 960px;
		margin-left: auto;
		margin-right: auto;
	}
}


/* ------------------------
 *	波の背景
 */
#background{
	position: fixed;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	min-height: 100%;
}
#background #canvas{
	display: block;
	z-index: 1;
	position: fixed;
}
div,
header,
footer,
section,
article{
	position: relative;
	z-index: 2;
}
.mainback{
	width: 100%;
	height: auto;
	position: absolute;
	top: 150px;
}
@media (max-width:768px){
	body{
		background-size: 100% auto;
		background-repeat: no-repeat;
		background-position: 0 80px;
		padding-top: 80px;
	}
	body.au{
		background-color: #f2f2f2;
	}
	.mainback{
		top: 80px;
	}
}
@media (min-width:1101px){
	.mainback{
		display: none;
	}
}

/* ------------------------
 *	トップに戻るボタン
 */
body #buttonMoveToTop{
	position: fixed;
	opacity: 0;
	transition-duration: 1s;
	cursor: pointer;
	bottom: 50px;
	right: 40%;
	right: calc( 50% - 52px );
}
@media (min-width:768px){
	body #buttonMoveToTop{
		right: 5%;
		bottom: 15px;
	}
}

/* ------------------------
 *	ヘッダー
 */
header{
	z-index: 3;
}
header h1{
	display: inline-block;
	vertical-align: middle;
}
header h1 img{
	width: 84px;
}
@media (max-width:767px){
	body header{
		padding: 10px 5%;
		background-color: transparent;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 3;
		width: 100%;
	}
}
@media (min-width:768px){
	header{
		width: 960px;
		margin: 30px auto;
	}
	header h1{
		margin-right: 60px;
	}
	header h1 img{
		width: 145px;
	}
}

/* ------------------------
 *	ナビゲーション
 */
.menu_button{
	display: none;
}
.gnav li{
	display: inline-block;
	position: relative;
	vertical-align: middle;
}
.gnav li .main_text{
	display: inline-block;
	padding: 22px;
	font-size: 16px;
}
.parent_text {
	background-color: rgba( 0, 0, 0, 0 );
	cursor: pointer;
	display: inline-block;
	padding: 22px;
	font-size: 16px;
}
.gnav li .submenu {
	left: 0;
	position: absolute;
	top: 60px;
}
.gnav li .submenu li {
	display: list-item;
}
.gnav li .sub_text {
	background-color: #fff;
	box-sizing: border-box;
	display: block;
	font-size: 15px;
	line-height: 15px;
	padding: 15px;
	white-space: nowrap;
}
.gnav li .border_orange {
	border: solid 1px #f15a24;
	margin-top: -1px;
}
.gnav li .border_glay {
	border: solid 1px #898989;
	margin-top: -1px;
}
.gnav li .opan{
	display: block;
	z-index: 6;
}
.gnav li .opan .sub_text{
	height: 45px;
}
.gnav li .close{
	height: 0;
	z-index: 5;
	opacity: 0;
	transition-duration: 0.5s;
}
.gnav li .close .sub_text{
	border-bottom-width: 0;
	border-top-width: 0;
	border-color: transparent;
	height: 0px;
	overflow: hidden;
	padding: 0 15px;
}

@media (min-width:768px){
	nav,
	.gnav{
		display: inline-block;
		vertical-align: middle;
	}
}

/* 開閉ナビゲーション */
@media (max-width:767px){
	body header {
		background-color: rgba(255,255,255,0.7);
		transition-duration: 0.2s;
	}
	body header .menu_button{
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 150px;
		height: 80px;
		text-align: right;
		padding: 28px 7% 0 0;
		z-index: 3;
	}
	body header .menu_button img{
		width: 22px;
		height: 22px;
	}
	nav{
		overflow: visible;
	}
	.gnav{
		margin-top: 10px;
	}
	.gnav li{
		display: list-item;
	}
	.gnav li .main_text{
		width: 100%;
		height: auto;
		line-height: 1.4em;
		text-align: center;
		background-color: #f2f2f2;
		margin-bottom: 10px;
	}
	
	.close{
		height: 80px;
		overflow-y: hidden;
		transition-duration: 0.2s;
	}
	.close nav{
		opacity: 0;
	}
	.open nav{
		opacity: 1;
	}

	/* サブメニュー */
	.gnav li .parent_text {
		width: 100%;
		height: auto;
		line-height: 1.4em;
		text-align: center;
		background-color: #f2f2f2;
		margin-bottom: 10px;
	}
	.gnav li .submenu {
		position: static;
		padding-bottom: 5%;
	}
	.gnav li .sub_text {
		background-color: #f2f2f2;
		border: none;
		font-size: 13px;
		margin-top: 0;
		margin: 0 0 1% 5%;
	}
}


/* ------------------------
 *	メイン
 */

/*** 共通見出し ***/
.title_basic {
	background-color: #fff;
	width: 100%;
}
.title_basic:before {
	background-color: #67cbc7;
	content: "";
	display: inline-block;
	margin-right: 15px;
	vertical-align: middle;
}
@media (min-width:768px){
	.title_basic {
		box-shadow: 0 0 15px 3px rgba( 90, 90, 90, 0.3 );
		font-size: 18px;
		margin-bottom: 50px;
		padding: 10px 0;
	}
	.title_basic:before {
		height: 38px;
		width: 5px;
	}
}
@media (max-width:767px){
	.title_basic {
		font-size: 16px;
		margin-bottom: 2%;
		padding: 8px 0;
	}
	.title_basic:before {
		height: 35px;
		width: 4px;
	}
}

/* ------------------------
 *	フッター
 */
footer{
	background-color: #464646;
	color: #fff;
	padding-top: 30px;
}
footer .footlogo{
	height: auto;
	width: 180px;
	vertical-align: middle;
}
footer dl{
	vertical-align: middle;
	display: inline-block;
	width: 740px;
}
footer dl dt{
	clear: left;
	float: left;
	font-size: 15px;
	font-weight: bold;
	margin-right: 20px;
}
footer dl dd{
	float: left;
	width: 570px;
	font-size: 13px;
	line-height: 25px;
	margin-bottom: 10px;
}
footer dl dd ul{
	width: 570px;
}
footer dl li{
	display: inline-block;
}
footer dl li:not( .nobrder ):after{
	content: " | ";
	font-weight: normal;
	color: #909090;
}
footer dl a{
	color: #fff;
}
footer .copyright{
	background-color: #fff;
	display: block;
	color: #464646;
	font-size: 10px;
	line-height: 39px;
	text-align: center;
	margin-top: 125px;
}
@media (max-width:768px){
	footer{
		padding-top: 45px;
		text-align: center;
	}
	footer dl{
		display: none;
	}
}
@media (min-width:768px){
	footer .copyright{
		font-size: 12px;
		margin-top: 40px;
	}
	footer .footlogo{
		margin-right: 30px;
	}
}



























