@charset "UTF-8";

/*
（768px以上）タブレット以上の場合 タブレットを含む
@media (min-width:768px){}

（769px以上）タブレットより大きい場合 タブレットを含まない
@media (min-width:769px){}

横幅1180pxを切るとき
@media (max-width:1179px){}

横幅1180pxより大きいとき（PC表示）
@media (min-width:1180px){
}

PC表示（1180px）より小さく、タブレット以上の場合
@media (min-width:768px) and (max-width:1179px){
*/


/****************************************************************************
    common parts
****************************************************************************/

/* PC/SP/Tabletで表示・非表示
--------------------------------*/
/*SPの時のみに表示*/
.m-sp {
	display: block;
}
@media (min-width:768px){
	.m-sp {
		display: none;
	}
}

/*SPとタブの時に表示*/
.m-sp-tab {
	display: block;
}
@media (min-width:1180px){
	.m-sp-tab {
		display: none;
	}
}

/*PCとタブの時に表示*/
.m-pc-tab {
	display: none;
}
@media (min-width:768px){
	.m-pc-tab {
		display: block;
	}
}

/*PCの時のみに表示*/
.m-pc {
	display: none;
}
@media (min-width:769px){
	.m-pc {
		display: block;
	}
}


/* box
--------------------------------*/

/* innerモジュール */
.m-inner {
	width: 100%;
	padding-left: 5%;
	padding-right: 5%;
}
@media (min-width:768px){
	.m-inner {
		padding-left: 3%;
		padding-right: 3%;
	}
}
@media (min-width:1180px){
	.m-inner {
		padding-left: 0;
		padding-right: 0;
	    width: 1180px;
		margin: 0 auto;
	}
}

/* 背景色モジュール */
.m-bg-sea {
	background: url("../img/sea_bg.jpg") no-repeat left center;
	background-size: cover;
}
.m-bg-white {
	background-color: #fff;
}

/* テキスト関連
--------------------------------*/
.m-txt-en {
	font-family: 'Koulen', cursive;
}

/* テキストリンク（外部リンク）
--------------------------------*/
a.link-txt-blank {
	text-decoration: underline;
	position: relative;
}
a.link-txt-blank:hover {
	text-decoration: none;
}
a.link-txt-blank:after {
	position: absolute;
	right: -15px;
	top: 0;
	display: block;
	content:"";
	width: 11px;
	height: 9px;
	background: url("../img/common/icon_blank_black_s.png") no-repeat 0 0;
	background-size: cover;
	
}

a.link-txt-blank.link-txt-blank-w:after {
	background: url("../img/icon_blank_white_s.png") no-repeat 0 0;
	background-size: cover;
}

/****************************************************************************
 	Material icons
****************************************************************************/
/* Material iconsを利用する */
.material-icons,
.material-icons-outlined {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-flex;
	width: 1em;
	height: 1em;
	line-height: 1;
	text-transform: none;
	vertical-align: middle;

	/* WebKitブラウザサポート */
	-webkit-font-smoothing: antialiased;
	/* Chrome、Safariサポート */
	text-rendering: optimizeLegibility;

	/* Firefoxサポート */
	-moz-osx-font-smoothing: grayscale;

	/* IEサポート */
	font-feature-settings: 'liga';
}

/****************************************************************************
 	title
****************************************************************************/
.m-title-L-wrap {
	text-align: center;
	margin-bottom: 20px;
}
.m-title-L-wrap .title-en {
	font-size: 40px;
	line-height: 1;
	letter-spacing: 4px;
	position: relative;
	padding-top: 40px;
}
.m-title-L-wrap .title-en:before {
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -35px;
	display: block;
	content:"";
	width: 70px;
	height: 30px;
	background: url("../img/title_l_hire.png") no-repeat 0 0;
	background-size: cover;
}
.m-title-L-wrap .title-jp {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 1.4;
}
@media (min-width:769px){
	.m-title-L-wrap {
		margin-bottom: 30px;
	}
	.m-title-L-wrap .title-en {
		font-size: 50px;
	}
	.m-title-L-wrap .title-jp {
		font-size: 21px;
	}
}
@media (min-width:1180px){
	.m-title-L-wrap {
		margin-bottom: 40px;
	}
	.m-title-L-wrap .title-en {
		font-size: 60px;
		padding-top: 60px;
	}
	.m-title-L-wrap .title-en:before {
		margin-left: -50px;
		width: 100px;
		height: 43px;
	}
	.m-title-L-wrap .title-jp {
		font-size: 24px;
	}
}


.m-title-M-wrap {
	text-align: center;
}
.m-title-M {
	display: inline-block;
	position: relative;
	background-color: #010188;
	border: 2px solid #fff;
	transform: skewX(-20deg);
	padding: 8px 20px;
	font-weight: 700;
	line-height: 1.4;
	font-size: 20px;
	text-align: center;
	margin: 0 auto;
}
.m-title-M span {
	display: block;
	transform: skewX(20deg);
}
@media (min-width:768px){
.m-title-M {
		padding: 8px 40px;
		font-size: 24px;
	}
}
@media (min-width:1180px){
.m-title-M {
		padding: 12px 50px;
		font-size: 34px;
		border: 3px solid #fff;
	}
}

/****************************************************************************
 	btn
****************************************************************************/
a.m-btn {
	position: relative;
	display: block;
	width: 300px;
	height: 55px;
	padding: 12px 0 0 0;
	background-color: #010188;
	/*border: 1px solid #fff;*/
	border-radius: 50px;
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.5;
	margin: 5px auto 0 auto;
	transition: 0.25s ease-in-out;
	-moz-transition: 0.25s ease-in-out;
	-webkit-transition: 0.25s ease-in-out;
	-o-transition: 0.25s eease-in-out;
}
a.m-btn:hover {
	opacity: .85;
}
@media (min-width:1180px){
	a.m-btn {
		width: 400px;
		height: 80px;
		padding: 17px 0 0 0;
		font-size: 26px;
		line-height: 1.8;
	}
}

/****************************************************************************
 	pagetop
****************************************************************************/
#pagetop {
	position: fixed;
	z-index: 100000;
	bottom: 15px;
	right: 15px;
	width: 45px;
	height: 45px;
	background-color: #282828;
	border-radius: 50%;
	cursor: pointer;
}
#pagetop:after {
	content: "";
	position: absolute;
	top: 18px;
	left: 50%;
	margin-left: -3px;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
} 
@media (min-width:1180px){
	#pagetop {
		bottom: 30px;
		right: 30px;
		width: 60px;
		height: 60px;
	}
	#pagetop:after {
		top: 25px;
	}
}



/****************************************************************************
    margin top
****************************************************************************/
/*   XSサイズ
---------------------*/
.m-mt-XS {
	margin-top: .5em;
}
@media (min-width:768px){
	.m-mt-XS {
		margin-top: 1em;
	}
}

/*   Sサイズ
---------------------*/
.m-mt-S {
	margin-top: 1.5em;
}
@media (min-width:768px){
	.m-mt-S {
		margin-top: 2em;
	}
}

/*   Mサイズ
---------------------*/
.m-mt-M {
	margin-top: 2em;
}
@media (min-width:768px){
	.m-mt-M {
		margin-top: 3em;
	}
}