@charset "UTF-8";

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

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


/****************************************************************************
    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:1180px){
	.m-pc {
		display: block;
	}
}


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

/* sectionモジュール */
.m-section {
	padding-top: 3em;
	padding-bottom: 3em;
}
@media (min-width:768px){
	.m-section {
		padding-top: 4em;
		padding-bottom: 4em;
	}
}
@media (min-width:1180px){
	.m-section {
		padding-top: 6em;
		padding-bottom: 6em;
	}
}

/* innerモジュール */
.m-inner {
	width: 100%;
	padding-left: 4%;
	padding-right: 4%;
}
@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-inner.small-980 {
	    width: 980px;
	}
}

/* テキスト関連
--------------------------------*/
.m-txt-en {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-style: italic;
}
.m-txt-yellow {
	color: #f5ff00;
}

/* テキストリンク（外部リンク）
--------------------------------*/
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 {
	margin-bottom: 2rem;
}
.m-title-L-wrap .title-en {
	font-weight: 700;
	font-size: 4rem;
	line-height: 1;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #f6ff00 0%, #7cc601 35%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.m-title-L-wrap .title-jp {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1.4;
	margin: .3rem 0 0 0;
}
@media (min-width:768px){
	.m-title-L-wrap {
		margin-bottom: 2.5rem;
	}
	.m-title-L-wrap .title-en {
		font-size: 5.5rem;
	}
	.m-title-L-wrap .title-jp {
		font-size: 1.1rem;
	}
}
@media (min-width:1180px){
	.m-title-L-wrap {
		margin-bottom: 4rem;
	}
	.m-title-L-wrap .title-en {
		font-size: 8.5rem;
	}
	.m-title-L-wrap .title-jp {
		font-size: 1.5rem;
	}
}


.m-title-M {
	font-weight: 700;
	text-align: center;
	font-size: 1.3em;
	color: #fff;
	line-height: 1.6;
	margin-bottom: 1em;
}
.m-title-M span {
	background-color: #080877;
	padding: 0 10px;
}
@media (min-width:768px){
	.m-title-M {
		font-size: 1.6em;
		line-height: 2;
		margin-bottom: 1.5em;
	}
	.m-title-M span {
		padding: 5px 20px;
	}
}
@media (min-width:768px){
	.m-title-M {
		font-size: 1.8em;
	}
}

/****************************************************************************
 	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: 1em;
}
@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;
	}
}