@charset "UTF-8";


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

/* PC/SP/Tabletで表示・非表示
--------------------------------*/
/*SPの時のみに表示*/
.m-sp {
	display: block;
}
@media (min-width:768px){
	.m-sp {
		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:1000px){
	.m-pc {
		display: block;
	}
}


/* box
--------------------------------*/
/* section */
.m-section {
	padding: 40px 0;
}
.m-section.last {
	padding: 40px 0 60px 0;
}
@media (min-width:1000px){
	.m-section {
		padding: 60px 0;
	}
	.m-section.last {
		padding: 60px 0 100px 0;
	}
}

/* inner */
.m-inner {
	width: 100%;
	padding: 0 5%;
}
@media (min-width:1110px){
	.m-inner {
		padding: 0;
	    width: 1000px;
		margin: 0 auto;
	}
	.m-inner.m-inner-800 {
	    width: 800px;
	}
	.m-inner.m-inner-1110 {
	    width: 1110px;
	}
}

/* ボックス */



/* 背景
--------------------------------*/
.m-bg-beige {
	background-color: #FAF8F5;
}
.m-bg-white {
	background-color: #FFF;
}




/* テキスト関連
--------------------------------*/
.m-txt-kaku {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
}

.m-txt-C {
	text-align: center;
}
.m-txt-R {
	text-align:  right;
}

.m-txt-smaller {
	font-size: .9em;
}


/* 電話発信（スマホでタップした時だけ電話発信を有効にする）
--------------------------------*/
@media (min-width:768px){
	.m-tel {
		pointer-events: none;
	}
}

/* テキストリンク
--------------------------------*/
.m-txt-link:link {
	color: #A26802;
	text-decoration: underline;
}


/****************************************************************************
 	ページタイトル
****************************************************************************/
.m-pagettl-sec {
	position: relative;
	height: 200px;
	background: url("../img/common/pagettl_bg_sp.png") center bottom no-repeat;
	background-size: 100%;
}
.m-pagettl-text {
	padding-top: 45px;
	color: #A26802;
	text-align: center;
}
.m-pagettl-text .jp {
	font-size: 1.6em;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 4px;
}
.m-pagettl-text .en {
	font-size: .8em;
	line-height: 1;
	font-weight: 500;
	letter-spacing: 4px;
	margin-top: 5px;
}
@media (min-width:768px){
	.m-pagettl-sec {
		height: 200px;
		background: url("../img/common/pagettl_bg_pc.png") center bottom no-repeat;
		background-size: cover;
	}
	.m-pagettl-text {
		padding-top: 45px;
	}
}
@media (min-width:930px){/*headerのブレイクポイント*/
	.m-pagettl-sec {
		height: 290px;
		background-size: cover;
	}
	.m-pagettl-text {
		padding-top: 50px;
	}
	.m-pagettl-text .jp {
		font-size: 2.2em;
	}
	.m-pagettl-text .en {
		margin-top: 10px;
	}
}
@media (min-width:1500px){
	.m-pagettl-sec {
		height: 360px;
	}
	.m-pagettl-text {
		padding-top: 70px;
	}
}

/****************************************************************************
 	topic-path
****************************************************************************/
.m-topic-path-sec {
	/*background-color: #fff;*/
	padding: 10px 3%;
	line-height: 1.4;
	text-align: right;
	font-size: 11px;
}
.m-topic-path-sec li {
	display: inline;
	letter-spacing: 0;
	font-weight: 400;
}
.m-topic-path-sec li a {
	text-decoration: none;
	font-weight: 500;
}
.m-topic-path-sec li a:hover {
}
.m-topic-path-sec li a:after {
	content: ">";
	padding-right: 5px;
	padding-left: 10px;
}
@media (min-width:768px) {
	.m-topic-path-sec {
		padding: 20px 2%;
		font-size: 12px;
	}
	.m-topic-path-sec li {
		letter-spacing: 1px;
	}
}




/****************************************************************************
 	タイトル
****************************************************************************/
.m-ttl-L {
	text-align: center;
	color: #A26802;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 1.5em;
	margin-bottom: 1em;
	position: relative;
	padding-top: 40px;
}
.m-ttl-L:before {
	position: absolute;
	left: 50%;
	top: 0;
	margin-left: -37.5px;
	display: block;
	content:"";
	width: 75px;/*150*/
	height: 38px;/*76*/
	background: url("../img/common/ttl_l_label.png") no-repeat 0 0;
	background-size: cover;
}
@media (min-width:768px){
	.m-ttl-L {
		font-size: 1.5em;
	}	
}
@media (min-width:1000px){
	.m-ttl-L {
		font-size: 1.9em;
	}	
}


/****************************************************************************
 	ボタン
****************************************************************************/

/* ボタンM
---------------------*/
a.m-btn,
.m-btn {
	position: relative;
	display: block;
	width: 230px;
	padding: 15px 3px;
	border-radius: 50px;
	text-align: center;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1em;
	line-height: 1.4;
	letter-spacing: 1px;
	margin-left: auto;
	margin-right: auto;
	background-color: #FA9E0B;
	color: #fff;
	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:after,
.m-btn:after {
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -4px;
	display: block;
	content:"";
	width: 17.6px;/*44*/
	height: 8.4px;/*21*/
	background: url("../img/common/btn_arrow_white.png") no-repeat 0 0;
	background-size: cover;
	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;
}
@media (min-width:768px){
	a.m-btn,
	.m-btn {
		width: 240px;
		padding: 17px 3px;
		font-size: 1em;
		line-height: 1.4;
		letter-spacing: 1px;
	}
	a.m-btn:hover,
	.m-btn:hover {
		opacity: .8;
	}
	a.m-btn:after,
	.m-btn:after {
		position: absolute;
		right: 15px;
		top: 50%;
		margin-top: -5px;
		width: 22px;/*44*/
		height: 10.5px;/*21*/
	}
	a.m-btn:hover:after,
	.m-btn:hover:after {
		 right: 10px;
	}
}




/****************************************************************************
 	table
****************************************************************************/
table {
	word-break: break-all;
	word-wrap: break-word;
	width: 100%;
}


/****************************************************************************
    margin top
****************************************************************************/

/*   XXSサイズ
---------------------*/
.m-mt-XXS {
	margin-top: .5em;
}

/*   XSサイズ
---------------------*/
.m-mt-XS {
	margin-top: 1em;
}


/*   Sサイズ
---------------------*/
.m-mt-S {
	margin-top: 2em;
}


/*   Mサイズ
---------------------*/
.m-mt-M {
	margin-top: 3em;
}

/*   Lサイズ
---------------------*/
.m-mt-L {
	margin-top: 4em;
}


/*   XLサイズ
---------------------*/
.m-mt-XL {
	margin-top: 5em;
}

