@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
--------------------------------*/

/* 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: "Roboto Condensed", sans-serif;
}

/* テキストリンク（外部リンク）
--------------------------------*/
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';
}

/****************************************************************************
 	copy-main, copy-sub
****************************************************************************/
.m-copy-main {
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-size: 2em;
	line-height: 1.3;
	transform: scale(0.85, 1);/*長体*/
	transform-origin: top left;
	width: 117%;/*長体で全体の横幅が85%になっているため、100÷0.85=117*/
}
.m-copy-sub {
	margin-top: .3em;
	color: #737373;
	line-height: 1.4;
	font-size: 1.15em;
}
@media (min-width:768px){
	.m-copy-main {
		font-size: 2em;
	}
	.m-copy-sub {
		font-size: 1.15em;
	}
}
@media (min-width:1180px){
	.m-copy-main {
		font-size: 2.8em;
	}
	.m-copy-sub {
		font-size: 1.4em;
	}
}


/* タイトルの場合
-------------------------*/
.m-title-L-wrap .title-en {
	color: #111111;
	font-weight: 500;
	font-size: 5.8em;
	letter-spacing: 2px;
	line-height: 1;
}
.m-title-L-wrap .m-copy-main {
	margin-top: -2em;
	margin-left: 0px;
}
.m-title-L-wrap .m-copy-sub {
	margin-left: 0px;
}
@media (min-width:768px){
	.m-title-L-wrap .title-en {
		font-weight: 400;
		font-size: 11.5em;
		letter-spacing: 4px;
		line-height: .9;
	}
	.m-title-L-wrap .m-copy-main {
		margin-top: -3.8em;
		margin-left: 40px;
	}
	.m-title-L-wrap .m-copy-sub {
		font-size: 1.2em;
		margin-left: 40px;
	}
}
@media (min-width:1180px){
	.m-title-L-wrap .title-en {
		font-size: 17em;
		letter-spacing: 8px;
	}
	.m-title-L-wrap .m-copy-main {
		margin-top: -3.8em;
		margin-left: 60px;
	}
	.m-title-L-wrap .m-copy-sub {
		font-size: 1.5em;
		margin-left: 60px;
	}
}


/****************************************************************************
 	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;
	}
}