@charset "utf-8";
/* -----------------------------------------
common.css
サイト共通設定用css

＜class名ルール＞
このファイルで使用するclassには以下の接頭語を付加する。
（他のcssファイルでは不要）
・汎用クラス、モジュール：「.c_xxx」（common）
・フレームモジュール：「.f_xxx」（frame）
・モジュール：「.m_xxx」（module）
・モジュール内のパーツ：「.p_xxx」（parts）
・モジュールの状態：「.s_xxx」（state）
※JSのみで使用：「.js_xxx」
----------------------------------------- */


/* reset
----------------------------------------- */

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,
a,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,
small,strong,sub,sup,var,b,u,i,dl,dt,dd,ol,ul,li,
fieldset,form,label,legend,input,textarea,table,caption,tbody,thead,tfoot,tr,th,td,
main,article,aside,canvas,details,embed,figure,figcaption,footer,header,
menu,nav,output,ruby,section,summary,time,mark,audio,video {
	margin: 0;
	padding: 0;
}

h1,h2,h3,h4,h5,h6,th {
	font-family: inherit;
	font-size: 100%;
	font-weight: normal;
}

table {
	border-spacing: 0;
	border-collapse: collapse;
}

table,th,td {
	text-align: left;
	border: none;
}

ol,ul,li {
	list-style: none;
}

img {
	border: none;
	vertical-align: top;
	max-width: 100%;
	height: auto;
}

input[type=text],
input[type=password],
input[type=button],
input[type=submit],
button,
select,
textarea {
	color: inherit;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	outline: none;
	font-size: 100%;
	font-weight: normal;
	line-height: inherit;
}

input::-webkit-input-placeholder {
	color: #aaa;
}
input:-ms-input-placeholder {
	color: #aaa;
}
input::-moz-placeholder {
	color: #aaa;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
}

select::-ms-expand {
	display:none;
}

*,*::before,*::after {
	box-sizing: border-box;
}


/* 初期設定
----------------------------------------- */

html {
	font-size: 62.5%;
}

body {
	min-width: 1513px;
	font-family: 'Noto Serif JP', serif;
	font-size: 200%;
	color: #333;
	line-height: 1.3;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px){
	body {
		min-width: 320px;
	}
}

a {
	color: inherit;
	text-decoration: none;
	transition: all 0.2s;
}

em, strong {
	font-weight: bold;
}

*,*::before,*::after {
	box-sizing: border-box;
}


/* 汎用クラス
----------------------------------------- */

.c_fontL  { font-size: 1.6rem; }
.c_fontLL { font-size: 1.8rem; }
.c_fontXL { font-size: 2rem; }
.c_fontS  { font-size: 1.3rem; }
.c_fontSS { font-size: 1.2rem; }
.c_fontXS { font-size: 1.1rem; }

.c_fontBold { font-weight: bold; }
.c_colorRed { color: #ce2e2e; }
.c_colorBlue { color: #003686; }

.c_clearfix { zoom: 1; }
.c_clearfix:after {
	content: "";
	display: block;
	clear: both;
	height: 0.01px;
}
.c_floatL { float: left; }
.c_floatR { float: right; }
.c_ofHidden { overflow: hidden; }

.c_taLeft { text-align: left !important; }
.c_taCenter { text-align: center !important; }
.c_taRight { text-align: right !important; }

.c_vaTop { vertical-align: top !important; }
.c_vaMdl { vertical-align: middle !important; }
.c_vaBtm { vertical-align: bottom !important; }

.c_mt0  { margin-top:  0px !important; }
.c_mt3  { margin-top:  3px !important; }
.c_mt5  { margin-top:  5px !important; }
.c_mt10 { margin-top: 10px !important; }
.c_mt15 { margin-top: 15px !important; }
.c_mt20 { margin-top: 20px !important; }
.c_mt25 { margin-top: 25px !important; }
.c_mt30 { margin-top: 30px !important; }
.c_mt35 { margin-top: 35px !important; }
.c_mt40 { margin-top: 40px !important; }
.c_mt45 { margin-top: 45px !important; }
.c_mt50 { margin-top: 50px !important; }
.c_mt60 { margin-top: 60px !important; }
.c_mt70 { margin-top: 70px !important; }
.c_mt80 { margin-top: 80px !important; }
.c_mt90 { margin-top: 90px !important; }

.c_ml0  { margin-left:  0px !important; }
.c_ml3  { margin-left:  3px !important; }
.c_ml5  { margin-left:  5px !important; }
.c_ml10 { margin-left: 10px !important; }
.c_ml15 { margin-left: 15px !important; }
.c_ml20 { margin-left: 20px !important; }
.c_ml25 { margin-left: 25px !important; }
.c_ml30 { margin-left: 30px !important; }
.c_ml35 { margin-left: 35px !important; }
.c_ml40 { margin-left: 40px !important; }
.c_ml45 { margin-left: 45px !important; }
.c_ml50 { margin-left: 50px !important; }
.c_ml60 { margin-left: 60px !important; }
.c_ml70 { margin-left: 70px !important; }
.c_ml80 { margin-left: 80px !important; }
.c_ml90 { margin-left: 90px !important; }

.c_mr0  { margin-right:  0px !important; }
.c_mr3  { margin-right:  3px !important; }
.c_mr5  { margin-right:  5px !important; }
.c_mr10 { margin-right: 10px !important; }
.c_mr15 { margin-right: 15px !important; }
.c_mr20 { margin-right: 20px !important; }
.c_mr25 { margin-right: 25px !important; }
.c_mr30 { margin-right: 30px !important; }
.c_mr35 { margin-right: 35px !important; }
.c_mr40 { margin-right: 40px !important; }
.c_mr45 { margin-right: 45px !important; }
.c_mr50 { margin-right: 50px !important; }
.c_mr60 { margin-right: 60px !important; }
.c_mr70 { margin-right: 70px !important; }
.c_mr80 { margin-right: 80px !important; }
.c_mr90 { margin-right: 90px !important; }

.c_mb0  { margin-bottom:  0px !important; }
.c_mb3  { margin-bottom:  3px !important; }
.c_mb5  { margin-bottom:  5px !important; }
.c_mb10 { margin-bottom: 10px !important; }
.c_mb15 { margin-bottom: 15px !important; }
.c_mb20 { margin-bottom: 20px !important; }
.c_mb25 { margin-bottom: 25px !important; }
.c_mb30 { margin-bottom: 30px !important; }
.c_mb35 { margin-bottom: 35px !important; }
.c_mb40 { margin-bottom: 40px !important; }
.c_mb45 { margin-bottom: 45px !important; }
.c_mb50 { margin-bottom: 50px !important; }
.c_mb60 { margin-bottom: 60px !important; }
.c_mb70 { margin-bottom: 70px !important; }
.c_mb80 { margin-bottom: 80px !important; }
.c_mb90 { margin-bottom: 90px !important; }

.c_iBlock { display: inline-block; }

.c_liquid { width: 100%; }

.c_breakall { word-break: break-all; }
.c_nowrap { white-space: nowrap; }

.c_over:hover {
	opacity: 0.7;
}

@media screen and (max-width: 1300px){ .c_ov1300 { display: none !important; } }
@media screen and (max-width: 1200px){ .c_ov1200 { display: none !important; } }
@media screen and (max-width: 1100px){ .c_ov1100 { display: none !important; } }
@media screen and (max-width: 1000px){ .c_ov1000 { display: none !important; } }
@media screen and (max-width: 900px){ .c_ov900 { display: none !important; } }
@media screen and (max-width: 800px){ .c_ov800 { display: none !important; } }
@media screen and (max-width: 767px){ .c_ov767 { display: none !important; } }
@media screen and (max-width: 700px){ .c_ov700 { display: none !important; } }
@media screen and (max-width: 600px){ .c_ov600 { display: none !important; } }
@media screen and (max-width: 500px){ .c_ov500 { display: none !important; } }
@media screen and (max-width: 400px){ .c_ov400 { display: none !important; } }
@media screen and (min-width: 1301px){ .c_ud1300 { display: none !important; } }
@media screen and (min-width: 1201px){ .c_ud1200 { display: none !important; } }
@media screen and (min-width: 1101px){ .c_ud1100 { display: none !important; } }
@media screen and (min-width: 1001px){ .c_ud1000 { display: none !important; } }
@media screen and (min-width: 901px){ .c_ud900 { display: none !important; } }
@media screen and (min-width: 801px){ .c_ud800 { display: none !important; } }
@media screen and (min-width: 768px){ .c_ud767 { display: none !important; } }
@media screen and (min-width: 701px){ .c_ud700 { display: none !important; } }
@media screen and (min-width: 601px){ .c_ud600 { display: none !important; } }
@media screen and (min-width: 501px){ .c_ud500 { display: none !important; } }
@media screen and (min-width: 401px){ .c_ud400 { display: none !important; } }
@media screen and (min-width: 351px){ .c_ud350 { display: none !important; } }


/* ページフレーム
----------------------------------------- */

.f_pageArea {
	overflow: hidden;
}

.f_navi {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 1000;
	width: 193px;
	background-color: #fff;
	border-right: 3px solid #0d367a;
	overflow-y: auto;
}
.f_navi a:hover {
	opacity: 0.8;
}
.f_navi .p_logo {
	border-bottom: 3px solid #0d367a;
	padding: 25px 0 25px 20px;
	text-align: center;
}
.f_navi .p_menuArea {
	position: relative;
}
.f_navi .p_menuBtn {
	padding: 15px 0 15px 20px;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.3s;
}
.f_navi .p_menuBtn:hover {
	opacity: 0.8;
}
.f_navi .p_menuBtn span {
	display: block;
	padding-top: 5px;
	color: #003685;
	font-size: 18px;
}
.f_navi .p_socialBtn {
	display: flex;
	justify-content: center;
	border-top: 3px solid #0d367a;
	padding: 25px 0 25px 0;
	text-align: center;
}
.f_navi .p_socialBtn a {
	display: inline-block;
	padding: 15px;
}
.f_navi .p_btnList {
	padding: 0 0 20px 20px;
	text-align: center;
}
.f_navi .p_btnList li + li {
	margin-top: 20px;
}
.f_navi .p_btnList a {
	display: inline-block;
}
@media screen and (max-width: 767px){
	.f_navi {
		width: 41px;
		bottom: auto;
		border-right: 1px solid #003686;
		border-bottom: 1px solid #003686;
	}
	.f_navi .p_logo {
		border-bottom: 1px solid #003686;
		padding: 10px 0 5px;
	}
	.f_navi .p_logo img {
		width: 26px;
	}
	.f_navi .p_menuBtn {
		padding: 6px 0 5px;
	}
	.f_navi .p_menuBtn span {
		padding-top: 3px;
		font-size: 10px;
	}
	.f_navi .p_menuBtn img {
		display: block;
		width: 20px;
		margin: 0 auto;
	}
	.f_navi .p_socialBtn {
		display: none;
	}
	.f_navi .p_btnList {
		display: none;
	}
}

.f_menu {
	position: fixed;
	top: 0;
	left: 193px;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: rgba(0,54,134,0.3);
	color: #fff;
	display: none;
}
.f_menu .p_closeBtn {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	transition: opacity 0.3s;
}
.f_menu .p_closeBtn:hover {
	opacity: 0.8;
}
.f_menu .p_closeBtn::before,
.f_menu .p_closeBtn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 28px;
	height: 2px;
	margin: auto;
	background-color: #fff;
	transform: rotate(45deg);
}
.f_menu .p_closeBtn::after {
	transform: rotate(-45deg);
}
.f_menu .p_inner {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 650px;
	background-color: #003686;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.f_menu li {
	position: relative;
	border-top: 1px solid #3d62ad;
}
.f_menu .p_main {
	position: relative;
	display: block;
	padding: 23px 50px;
	font-size: 24px;
	letter-spacing: 0.1em;
	cursor: pointer;
	overflow: hidden;
	transition: opacity 0.3s;
}
.f_menu .p_main:hover {
	opacity: 0.8;
}
.f_menu .p_main::after {
	content: '';
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	width: 38px;
	height: 12px;
	margin: auto 0;
	border-right: 2px solid #f0f3f8;
	border-bottom: 1px solid #f0f3f8;
	transform: skewX(45deg);
}
.f_menu .p_eng {
	display: block;
	margin-top: 3px;
	font-size: 16px;
}
.f_menu .p_subMenu {
	background-color: #003686;
	padding-left: 80px;
	display: block;
}
.f_menu .p_subMenu a {
	display: block;
	padding: 26px 0;
	font-size: 24px;
	letter-spacing: 0.1em;
}
.f_menu .p_subMenu a:hover {
	opacity: 0.8;
}
.f_menu .p_socialBtn {
	display: none;
}
.f_menu .p_btnList {
	display: none;
}
@media screen and (max-width: 767px){
	.f_menu {
		left: 0;
		width: 100%;
	}
	.f_menu .p_closeBtn {
		width: 40px;
		height: 40px;
	}
	.f_menu .p_closeBtn::before,
	.f_menu .p_closeBtn::after {
		width: 14px;
	}
	.f_menu .p_inner {
		position: fixed;
		width: 80%;
	}
	.f_menu .p_main {
		padding: 9px 25px;
		font-size: 12px;
	}
	.f_menu .p_main::after {
		right: 15px;
		width: 20px;
		height: 6px;
	}
	.f_menu .p_eng {
		font-size: 10px;
	}
	.f_menu .p_subMenu {
		padding-left: 50px;
	}
	.f_menu .p_subMenu a {
		padding: 9px 0;
		font-size: 10px;
	}
	.f_menu .p_socialBtn {
		display: block;
	}
	.f_menu .p_socialBtn a {
		display: block;
		padding: 8px 25px;
		font-size: 10px;
	}
	.f_menu .p_socialBtn a img {
		width: 14px;
		margin-right: 8px;
		vertical-align: -3px;
	}
	.f_menu .p_btnList {
		display: flex;
		padding: 15px 25px;
	}
	.f_menu .p_btnList > li {
		border-bottom: none;
		margin-right: 10px;
	}
	.f_menu .p_btnList img {
		width: 50px;
	}
}

.f_mainvisual {
	position: relative;
	max-width: 1920px;
	margin: 0 auto;
	padding-left: 193px;
	height: 850px;
	overflow: hidden;
}
.f_mainvisual .p_bg {
	position: absolute;
	top: 0;
	left: -200px;
	right: -393px;
	margin: 0 auto;
	max-width: none;
}
.f_mainvisual .p_text {
	position: absolute;
	top: 170px;
	right: calc(50% - 640px);
}
@media screen and (max-width: 767px){
	.f_mainvisual {
		padding-left: 0;
		height: auto;
	}
	.f_mainvisual img {
		width: 100%;
	}
}

.f_main {
	max-width: 1280px;
	margin: 150px auto 0;
}
@media screen and (max-width: 1720px){
	.f_main {
		margin: 150px 0 0 213px;
	}
}
@media screen and (max-width: 767px){
	.f_main {
		margin: 35px 25px 0;
	}
}
@media screen and (max-width: 350px){
	.f_main {
		margin: 35px 20px 0;
	}
}

.f_pageTitle {
	padding: 100px 0 80px;
	text-align: center;
}
@media screen and (max-width: 767px){
	.f_pageTitle {
		padding: 40px 0 20px;
	}
	.f_pageTitle img {
		width: 250px;
	}
}

.f_footer {
	position: relative;
	margin-top: 200px;
	border-top: 2px solid #0d367a;
	padding: 50px 0 150px;
}
.f_footer .p_pagetop {
	position: absolute;
	top: -140px;
	left: 0;
	padding: 40px 0 10px;
}
.f_footer .p_pagetop:hover {
	opacity: 0.7;
}
.f_footer .p_pagetop::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 50%;
	width: 30px;
	height: 30px;
	border-top: 2px solid #0e0609;
	border-left: 2px solid #0e0609;
	transform-origin: left top;
	transform: rotate(45deg);
}
.f_footer .p_breadcrumb {
	margin-bottom: 60px;
	font-size: 18px;
}
.f_footer .p_breadcrumb li {
	position: relative;
	display: inline-block;
	padding: 2px 40px 2px 0;
	color: #003686;
	letter-spacing: 0.1em;
}
.f_footer .p_breadcrumb li:last-child {
	padding-right: 0;
}
.f_footer .p_breadcrumb li::after {
	content: '';
	position: absolute;
	top: 9px;
	right: 14px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #003686;
	border-right: 2px solid #003686;
	transform: rotate(45deg);
}
.f_footer .p_breadcrumb li:last-child::after {
	display: none;
}
.f_footer .p_breadcrumb a {
	color: #003686;
}
.f_footer .p_breadcrumb a:hover {
	text-decoration: underline;
}
.f_footer .p_copyright {
	color: #003686;
	letter-spacing: 0.1em;
}
.f_footer.s_top {
	margin-top: 280px;
	padding-bottom: 320px;
}
.f_footer.s_top .p_img {
	position: absolute;
	top: -225px;
	right: 0;
}
.f_footer.s_top .p_copyright {
	position: relative;
}
@media screen and (max-width: 767px){
	.f_footer {
		margin-top: 100px;
		border-top-width: 1px;
		padding: 25px 0;
	}
	.f_footer .p_pagetop {
		top: -50px;
		padding: 20px 0 5px;
		font-size: 10px;
	}
	.f_footer .p_pagetop::before {
		top: 0;
		width: 15px;
		height: 15px;
		border-width: 1px;
	}
	.f_footer .p_breadcrumb {
		margin-bottom: 25px;
		font-size: 13px;
	}
	.f_footer .p_breadcrumb li {
		padding-right: 20px;
	}
	.f_footer .p_breadcrumb li::after {
		top: 6px;
		right: 6px;
		width: 8px;
		height: 8px;
	}
	.f_footer .p_copyright {
		font-size: 10px;
		letter-spacing: 0.03em;
	}
	.f_footer.s_top {
		margin-top: 325px;
		padding-bottom: 25px;
	}
	.f_footer.s_top .p_img {
		top: -305px;
		width: 300px;
	}
}


/* 汎用モジュール
----------------------------------------- */

/* section */

/* title */

.m_sectionTitle {
	margin: 140px 0 50px;
	color: #003686;
	font-size: 30px;
}
@media screen and (max-width: 767px){
	.m_sectionTitle {
		margin: 60px 0 0;
		font-size: 18px;
	}
}

/* text */

.m_lead {
	text-align: center;
	line-height: 2.25;
	letter-spacing: 0.1em;
}
.m_lead.s_left {
	text-align: left;
}
@media screen and (max-width: 767px){
	.m_lead {
		font-size: 13px;
		line-height: 2;
		letter-spacing: 0.1em;
	}
}
@media screen and (max-width: 350px){
	.m_lead {
		font-size: 12px;
	}
}

/* list */

.m_boxList {
	margin: 40px 0;
	display: flex;
	justify-content: space-between;
}
.m_boxList li {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 23.44%;
	border: 1px solid #0d367a;
	padding: 25px 16px;
	color: #003686;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.1em;
}
.m_boxList li.s_center {
	text-align: center;
}
@media screen and (max-width: 767px){
	.m_boxList {
		max-width: 400px;
		margin: 35px auto;
		display: block;
	}
	.m_boxList li {
		margin-bottom: 12px;
		width: auto;
		min-height: 100px;
		padding: 15px 10px;
		text-align: center;
		font-size: 13px;
		line-height: 1.8;
	}
}
@media screen and (max-width: 350px){
	.m_boxList li {
		font-size: 12px;
	}
}

/* btn */

.m_btn {
	display: block;
	background-color: #0d367a;
	padding: 12px;
	text-align: center;
	color: #fff;
	letter-spacing: 0.1em;
}
.m_btn:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	.m_btn {
		padding: 10px;
		font-size: 13px;
	}
}

.m_linkBtn {
	display: inline-block;
	min-width: 300px;
	border: 1px solid #060001;
	text-align: center;
	letter-spacing: 0.075em;
}
.m_linkBtn:hover {
	opacity: 0.7;
}
.m_linkBtn > span {
	position: relative;
	display: inline-block;
	padding: 11px 5px 11px 26px;
}
.m_linkBtn > span::before {
	content: '';
	position: absolute;
	top: 24px;
	left: 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid #0d367a;
	border-right: 2px solid #0d367a;
	transform-origin: right top;
	transform: rotate(45deg);
}
@media screen and (max-width: 767px){
	.m_linkBtn {
		min-width: 280px;
	}
	.m_linkBtn > span {
		padding-left: 16px;
		font-size: 13px;
	}
	.m_linkBtn > span::before {
		top: 19px;
		width: 7px;
		height: 7px;
	}
}

.m_purchaseBtn {
	display: block;
	border: 1px solid #0d367a;
	text-align: center;
	color: #0d367a;
}
.m_purchaseBtn:hover {
	opacity: 0.8;
}
.m_purchaseBtn > span {
	display: inline-block;
	background: url(../img/cmn/icon_purchase.png) no-repeat 100% 50%;
	padding: 11px 50px 11px 20px;
}
@media screen and (max-width: 767px){
	.m_purchaseBtn > span {
		background-size: 18px auto;
		padding: 9px 26px 9px 15px;
		font-size: 13px;
	}
}

.m_btnList {
	margin: 50px 0;
	display: flex;
	justify-content: center;
}
.m_btnList li {
	margin: 0 4%;
	width: 42%;
	max-width: 430px;
}
@media screen and (max-width: 767px){
	.m_btnList {
		margin: 30px 0;
		display: block;
	}
	.m_btnList li {
		margin: 20px auto;
		width: auto;
	}
}

.m_centerBtn {
	width: 160px;
	margin: 0 auto;
}
@media screen and (max-width: 767px){
	.m_centerBtn {
		width: 100px;
	}
}

/* box */

/* img */

.m_mainImage {
	margin-bottom: 90px;
}
@media screen and (max-width: 767px){
	.m_mainImage {
		margin: 0 -25px 30px;
	}
}

.m_imgList {
	margin: 40px 0;
	display: flex;
	justify-content: space-between;
}
@media screen and (max-width: 767px){
	.m_imgList {
		flex-wrap: wrap;
	}
	.m_imgList li {
		margin-bottom: 8%;
		width: 46%;
		text-align: center;
	}
}

/* layout */

.m_columnLayout {
	display: flex;
	justify-content: space-between;
}
.m_columnLayout .p_main {
	width: 72.3%;
}
.m_columnLayout .p_sub {
	width: 19.5%;
}
@media screen and (max-width: 767px){
	.m_columnLayout {
		margin-top: 40px;
		display: block;
	}
	.m_columnLayout .p_main {
		width: auto;
	}
	.m_columnLayout .p_sub {
		margin-top: 110px;
		width: auto;
	}
}

.m_imgCol {
	margin-bottom: 200px;
	display: flex;
	justify-content: space-between;
}
.m_imgCol.s_reverse {
	flex-direction: row-reverse;
}
.m_imgCol > * {
	width: 600px;
}
.m_imgCol .p_text {
	margin-top: -15px;
	font-size: 22px;
	line-height: 2.5;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px){
	.m_imgCol {
		margin-bottom: 90px;
		display: block;
	}
	.m_imgCol > * {
		width: auto;
	}
	.m_imgCol .p_img {
		text-align: center;
	}
	.m_imgCol .p_img.s_spWide {
		margin: 0 -25px;
	}
	.m_imgCol .p_text {
		margin-top: 40px;
		font-size: 12px;
	}
}

/* form */

.m_form {
	padding-top: 80px;
	font-size: 22px;
	letter-spacing: 0.1em;
}
.m_form > li {
	margin-bottom: 60px;
}
.m_form > li.s_horizon {
	display: flex;
}
.m_form input[type="text"],
.m_form input[type="tel"],
.m_form input[type="email"] {
	border: 1px solid #040000;
	padding: 12px;
	font-size: 18px;
	outline: none;
}
.m_form .m_select {
	display: inline-block;
	position: relative;
}
.m_form .m_select::before {
	content: '';
	position: absolute;
	top: 18px;
	right: 15px;
	width: 10px;
	height: 10px;
	border-right: 3px solid #575757;
	border-bottom: 3px solid #575757;
	transform: rotate(45deg);
}
.m_form .m_select select {
	position: relative;
	border: 1px solid #040000;
	background-color: transparent;
	padding: 12px 50px 12px 12px;
	font-size: 18px;
	cursor: pointer;
}
.m_form textarea {
	display: block;
	width: 900px;
	height: 300px;
	border: 1px solid #040000;
	padding: 12px;
	font-size: 18px;
}
.m_form .error {
	margin-top: 10px;
	display: block;
	color: #e60012;
	font-size: 16px;
}
.m_form .p_label {
	margin-bottom: 15px;
}
.m_form .p_label small {
	margin-left: 15px;
	font-size: 16px;
}
.m_form .p_required {
	color: #e60012;
}
.m_form > li.s_horizon .p_input {
	margin-left: 150px;
}
.m_form .p_name {
	display: flex;
}
.m_form .p_name li {
	display: flex;
}
.m_form .p_name li + li {
	margin-left: 40px;
}
.m_form .p_name .p_text {
	flex-shrink: 0;
	margin-right: 10px;
	width: 45px;
	padding-top: 10px;
	text-align: center;
}
.m_form .p_name input {
	width: 450px;
}
.m_form .p_zip {
	display: flex;
	color: #595757;
}
.m_form .p_zip input {
	width: 150px;
}
.m_form .p_zip > span:nth-child(1) {
	padding: 10px 15px 0 0;
}
.m_form .p_zip > span:nth-child(3) {
	padding: 5px 8px 0;
}
.m_form .p_zip .p_search {
	padding: 10px 0 0 30px;
}
.m_form .p_textInput {
	margin: 20px 0;
	display: flex;
}
.m_form .p_textInput:first-child {
	margin-top: 0;
}
.m_form .p_textInput input {
	width: 900px;
}
.m_form .p_textInput .p_note {
	margin: 28px 0 0 30px;
	color: #898989;
	font-size: 16px;
}
.m_form .p_attention {
	color: #e60012;
	font-size: 16px;
}
.m_form .p_tel {
	display: flex;
}
.m_form .p_tel input {
	width: 150px;
}
.m_form .p_tel > span {
	padding: 6px 8px;
}
.m_form .m_radioBtn > span + span {
	margin-left: 50px;
}
.m_form .m_radioBtn input {
	display: none;
}
.m_form .m_radioBtn input + span {
	position: relative;
	display: inline-block;
	padding-left: 32px;
	cursor: pointer;
}
.m_form .m_radioBtn input + span::before {
	content: '';
	position: absolute;
	top: 5px;
	left: 0;
	width: 20px;
	height: 20px;
	border: 1px solid #0d367a;
	border-radius: 50%;
}
.m_form .m_radioBtn input:checked + span::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 5px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #0d367a;
}
.m_kakunin li.s_horizon {
	display: block;
}
.m_kakunin li.s_horizon .p_input {
	margin-left: 0;
}
.m_kakunin .p_label {
	margin-bottom: 20px;
}
.m_kakunin .p_required {
	display: none;
}
.m_kakunin .p_data {
	padding-left: 15px;
	font-size: 30px;
}
.m_kakunin .p_name .p_data {
	width: 450px;
	padding: 3px 0 0 40px;
}
.m_kakunin .p_zip .p_data {
	width: 150px;
	padding: 3px 0 0;
	text-align: center;
}
.m_kakunin .p_zip .p_search {
	display: none;
}
.m_kakunin .m_select::before {
	display: none;
}
.m_kakunin .p_textInput .p_note {
	display: none;
}
.m_kakunin .p_attention {
	display: none;
}
.m_kakunin .p_tel .p_data {
	width: 150px;
	padding: 3px 0 0;
	text-align: center;
}
@media screen and (max-width: 767px){
	.m_form {
		padding-top: 40px;
		font-size: 15px;
	}
	.m_form > li {
		margin-bottom: 40px;
	}
	.m_form > li.s_horizon {
		display: block;
	}
	.m_form input[type="text"],
	.m_form input[type="tel"],
	.m_form input[type="email"] {
		padding: 9px 12px;
		font-size: 14px;
	}
	.m_form .m_select::before {
		top: 11px;
		width: 9px;
		height: 9px;
		border-width: 2px;
	}
	.m_form .m_select select {
		padding: 8px 40px 8px 12px;
		font-size: 14px;
	}
	.m_form textarea {
		width: 100%;
		height: 200px;
		font-size: 14px;
	}
	.m_form .error {
		margin-top: 5px;
		font-size: 13px;
	}
	.m_form .p_label {
		margin-bottom: 10px;
	}
	.m_form .p_label small {
		font-size: 12px;
	}
	.m_form > li.s_horizon .p_input {
		margin-left: 0;
	}
	.m_form .p_name {
		display: block;
	}
	.m_form .p_name li + li {
		margin: 10px 0 0;
	}
	.m_form .p_name .p_text {
		margin-right: 0;
		width: 35px;
		padding-top: 8px;
	}
	.m_form .p_name input {
		width: 100%;
	}
	.m_form .p_zip input {
		width: 75px;
	}
	.m_form .p_zip > span:nth-child(1) {
		padding: 8px 4px 0 0;
	}
	.m_form .p_zip > span:nth-child(3) {
		padding: 5px 4px 0;
	}
	.m_form .p_zip .p_search {
		display: flex;
		align-items: center;
		padding: 0 0 0 15px;
		font-size: 12px;
	}
	.m_form .p_textInput {
		margin: 15px 0;
		display: block;
	}
	.m_form .p_textInput input {
		width: 100%;
	}
	.m_form .p_textInput .p_note {
		margin: 5px 0 0;
		text-align: right;
		font-size: 12px;
	}
	.m_form .p_attention {
		font-size: 12px;
	}
	.m_form .p_tel input {
		width: 75px;
	}
	.m_form .p_tel > span {
		padding: 6px 4px;
	}
	.m_form .m_radioBtn {
		margin-top: 15px;
	}
	.m_form .m_radioBtn > span + span {
		margin-left: 40px;
	}
	.m_form .m_radioBtn input + span {
		padding: 2px 0 2px 24px;
		font-size: 16px;
	}
	.m_form .m_radioBtn input + span::before {
		width: 15px;
		height: 15px;
	}
	.m_form .m_radioBtn input:checked + span::after {
		top: 9px;
		left: 4px;
		width: 7px;
		height: 7px;
	}
	.m_kakunin .p_label {
		margin-bottom: 15px;
	}
	.m_kakunin .p_data {
		font-size: 15px;
	}
	.m_kakunin .p_name .p_data {
		width: auto;
		padding: 8px 0 0 20px;
	}
	.m_kakunin .p_zip .p_data {
		width: 70px;
		padding: 7px 0 0;
	}
	.m_kakunin .p_tel .p_data {
		width: 70px;
		padding: 8px 0 0;
	}
}

.m_formBtn input {
	border: none;
	background-color: #0d367a;
	width: 150px;
	padding: 13px 0;
	text-align: center;
	color: #fff;
	font-size: 18px;
	cursor: pointer;
	transition: opacity 0.2s;
}
.m_formBtn input:hover {
	opacity: 0.8;
}
.m_formBtn input[name="submitBack"] {
	margin-right: 90px;
	background-color: #666;
}
@media screen and (max-width: 767px){
	.m_formBtn input {
		width: 125px;
		padding: 9px 0;
		font-size: 13px;
	}
	.m_formBtn input[name="submitBack"] {
		margin-right: 20px;
	}
}


/* 専用モジュール
----------------------------------------- */

.m_information {
	margin: 85px 0;
	padding-bottom: 1px;
	letter-spacing: 0.1em;
}
.m_information .p_date {
	float: left;
	font-size: 22px;
}
.m_information .p_categ {
	float: left;
	margin-left: 15px;
	border: 1px solid #040000;
	padding: 4px;
	min-width: 150px;
	text-align: center;
	font-size: 16px;
}
.m_information .p_title {
	position: relative;
	clear: both;
	margin: 0 50px 40px 0;
	padding: 25px 20px 18px 0;
	border-bottom: 1px solid #090104;
}
.m_information .p_title h2 {
	font-size: 27px;
}
.m_information .p_toggleBtn {
	position: absolute;
	right: -50px;
	bottom: -25px;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	background-color: #003685;
	cursor: pointer;
	transition: opacity 0.2s;
}
.m_information .p_toggleBtn:hover {
	opacity: 0.8;
}
.m_information .p_toggleBtn::before,
.m_information .p_toggleBtn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 30px;
	height: 1px;
	margin: auto;
	background-color: #fff;
}
.m_information .p_toggleBtn::after {
	width: 1px;
	height: 30px;
}
.m_information .p_toggleBtn.s_close::after {
	display: none;
}
.m_information .p_toggleArea {
	display: none;
	line-height: 2.25;
}
@media screen and (max-width: 767px){
	.m_information {
		margin: 40px 0;
	}
	.m_information .p_date {
		margin-top: 2px;
		font-size: 11px;
	}
	.m_information .p_categ {
		padding: 1px;
		min-width: 75px;
		font-size: 11px;
	}
	.m_information .p_title {
		margin: 0 25px 20px 0;
		padding: 10px 20px 10px 0;
	}
	.m_information .p_title h2 {
		font-size: 17px;
		letter-spacing: 0;
	}
	.m_information .p_toggleBtn {
		right: -25px;
		bottom: -13px;
		width: 25px;
		height: 25px;
		border-radius: 2px;
	}
	.m_information .p_toggleBtn::before,
	.m_information .p_toggleBtn::after {
		width: 15px;
	}
	.m_information .p_toggleBtn::after {
		width: 1px;
		height: 15px;
	}
	.m_information .p_toggleArea {
		font-size: 13px;
		line-height: 2;
	}
}

.m_subMenu {
	margin: 80px 0;
	letter-spacing: 0.1em;
}
.m_subMenu h2 {
	margin-bottom: 45px;
	border-bottom: 1px solid #090104;
	padding-bottom: 15px;
	font-size: 27px;
}
.m_subMenu li {
	margin-top: 20px;
}
.m_subMenu a:hover {
	text-decoration: underline;
}
@media screen and (max-width: 767px){
	.m_subMenu {
		margin: 40px 0;
	}
	.m_subMenu h2 {
		margin-bottom: 20px;
		padding-bottom: 10px;
		font-size: 15px;
	}
	.m_subMenu li {
		margin-top: 12px;
		font-size: 13px;
	}
}

.m_conceptTop {
	margin-bottom: 200px;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
@media screen and (max-width: 767px){
	.m_conceptTop {
		margin-bottom: 75px;
		display: block;
	}
	.m_conceptTop .p_text {
		width: 160px;
		margin: 0 auto 30px;
		text-align: center;
	}
	.m_conceptTop .p_img {
		margin-left: -25px;
	}
}

.m_conceptSec {
	position: relative;
}
.m_conceptSec .p_lead {
	margin-bottom: 40px;
	font-size: 35px;
	line-height: 2;
	letter-spacing: 0.2em;
}
.m_conceptSec .p_text {
	line-height: 2.65;
	letter-spacing: 0.1em;
}
.m_conceptSec .p_img {
	position: absolute;
}
.m_conceptSec.s_01 {
	margin-bottom: 230px;
}
.m_conceptSec.s_01 .p_img {
	top: 0;
	left: 685px;
	width: 915px;
}
.m_conceptSec.s_02 {
	margin-bottom: 560px;
}
.m_conceptSec.s_02 .p_img {
	top: 200px;
	left: -127px;
}
.m_conceptSec.s_02 .p_text {
	padding-left: 790px;
}
.m_conceptSec.s_03 {
	padding-bottom: 80px;
}
.m_conceptSec.s_03 .p_img {
	top: 85px;
	left: 740px;
	width: 860px;
}
@media screen and (max-width: 767px){
	.m_conceptSec .p_lead {
		margin-bottom: 35px;
		font-size: 20px;
		line-height: 1.8;
		letter-spacing: 0.11em;
	}
	.m_conceptSec .p_text {
		font-size: 13px;
		line-height: 2.2;
	}
	.m_conceptSec .p_img {
		position: static;
	}
	.m_conceptSec.s_01 {
		margin-bottom: 40px;
	}
	.m_conceptSec.s_01 .p_img {
		margin: 30px -25px 0;
		width: auto;
	}
	.m_conceptSec.s_02 {
		margin-bottom: 130px;
	}
	.m_conceptSec.s_02 .p_img {
		margin: 0 0 30px -25px;
	}
	.m_conceptSec.s_02 .p_text {
		padding-left: 0;
	}
	.m_conceptSec.s_03 {
		padding-bottom: 0;
	}
	.m_conceptSec.s_03 .p_img {
		margin: 30px -25px 0 0;
		width: auto;
	}
}

.m_artistTitle .p_head {
	position: relative;
	margin-bottom: 15px;
	padding-bottom: 25px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #003685;
	letter-spacing: 0.25em;
}
.m_artistTitle .p_head::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background-color: #003685;
}
@media screen and (max-width: 767px){
	.m_artistTitle {
		margin-bottom: 60px;
	}
	.m_artistTitle .p_head {
		margin-bottom: 8px;
		padding-bottom: 12px;
		font-size: 10px;
	}
	.m_artistTitle .p_head::after {
		width: 25px;
		height: 2px;
	}
	.m_artistTitle h1 img {
		height: 20px;
	}
}

.m_artistTop {
	margin-bottom: 150px;
	display: flex;
	justify-content: space-between;
}
.m_artistTop .p_text {
	padding-top: 155px;
	width: 600px;
	text-align: center;
}
@media screen and (max-width: 767px){
	.m_artistTop {
		margin-bottom: 25px;
		display: block;
	}
	.m_artistTop .p_text {
		padding-top: 0;
		width: 154px;
		margin: 0 auto 60px;
	}
	.m_artistTop .p_img {
		margin: 0 -25px;
		text-align: center;
	}
}

.m_profile {
	position: relative;
	background-color: #003685;
	padding: 25px 40px 10px;
	min-height: 300px;
	color: #fff;
	font-size: 18px;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
.m_profile h2 {
	width: 740px;
	margin-bottom: 12px;
	border-bottom: 1px solid #fff;
	padding-bottom: 10px;
	font-size: 25px;
}
.m_profile ul {
	margin-bottom: 12px;
}
.m_profile li > span {
	float: left;
	margin-right: 15px;
}
.m_profile li > p {
	overflow: hidden;
}
.m_profile .p_img {
	position: absolute;
	top: 0;
	right: 0;
}
@media screen and (max-width: 767px){
	.m_profile {
		margin: 0 -25px;
		padding: 15px 0 35px;
		font-size: 10px;
	}
	.m_profile .p_inner {
		width: 250px;
		margin: 0 auto;
	}
	.m_profile h2 {
		width: auto;
		margin-bottom: 8px;
		padding-bottom: 5px;
		font-size: 13px;
	}
	.m_profile ul {
		margin-bottom: 15px;
	}
	.m_profile li > span {
		margin-right: 10px;
	}
	.m_profile .p_img {
		position: static;
		margin-top: 30px;
	}
}

.m_itemList {
	overflow: hidden;
}
.m_itemList li {
	float: left;
	width: 27.4%;
	margin: 0 0 90px 8.9%;
	font-family: 'Noto Sans JP', sans-serif;
}
.m_itemList .p_img {
	position: relative;
}
.m_itemList .p_img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,54,133,0.7);
	opacity: 0;
	transition: opacity 0.3s;
}
.m_itemList .p_img::after {
	content: '詳細へ';
	position: absolute;
	top: calc(50% - 20px);
	left: 0;
	right: 0;
	border: 1px solid #fff;
	padding: 7px 0;
	width: 108px;
	margin: auto;
	text-align: center;
	color: #fff;
	font-size: 18px;
	opacity: 0;
}
.m_itemList a:hover .p_img::before,
.m_itemList a:hover .p_img::after {
	opacity: 1;
}
.m_itemList .p_title {
	position: relative;
	margin-top: 22px;
	font-weight: 500;
}
.m_itemList .p_title.s_new {
	padding-right: 50px;
}
.m_itemList .p_title.s_new::after {
	content: 'NEW';
	position: absolute;
	top: 0;
	right: 0;
	border: 1px solid #d6c677;
	border-radius: 50%;
	padding: 11px 2px;
	color: #d6c677;
	font-size: 16px;
	font-weight: normal;
}
.m_itemList .p_price {
	margin-top: 3px;
	color: #727171;
	font-size: 18px;
}
@media screen and (min-width: 768px){
	.m_itemList li:nth-child(3n+1) {
		clear: both;
		margin-left: 0;
	}
}
@media screen and (max-width: 767px){
	.m_itemList {
		padding-top: 15px;
	}
	.m_itemList li {
		width: 46%;
		margin: 30px 0 0 8%;
	}
	.m_itemList li:nth-child(-n+2) {
		margin-top: 0;
	}
	.m_itemList li:nth-child(odd) {
		clear: both;
		margin-left: 0;
	}
	.m_itemList .p_img::before,
	.m_itemList .p_img::after {
		display: none;
	}
	.m_itemList .p_title {
		margin-top: 10px;
		font-size: 12px;
	}
	.m_itemList .p_title.s_new {
		padding-right: 35px;
	}
	.m_itemList .p_title.s_new::after {
		padding: 7px 2px;
		font-size: 10px;
	}
	.m_itemList .p_price {
		font-size: 11px;
	}
}

.m_pager {
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
}
.m_pager li {
	margin: 0 15px;
	width: 50px;
	font-size: 18px;
}
.m_pager li > span {
	display: block;
	border-bottom: 3px solid #0d367a;
	padding: 14px 0;
	color: #0d367a;
}
.m_pager li > a {
	display: block;
	padding: 14px 0;
	color: #0d367a;
}
.m_pager li > a:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	.m_pager {
		margin-top: 40px;
	}
	.m_pager li {
		margin: 0 12px;
		width: 25px;
		font-size: 14px;
	}
	.m_pager li > span {
		border-bottom: 2px solid #0d367a;
		padding: 6px 0;
	}
	.m_pager li > a {
		padding: 6px 0;
	}
}

.m_itemDetail {
	overflow: hidden;
}
.m_itemDetail .p_info {
	float: right;
	width: 24.06%;
}
.m_itemDetail .p_title {
	color: #0d367a;
	font-size: 33px;
	letter-spacing: 0.07em;
}
.m_itemDetail .p_price {
	margin-top: 10px;
	font-family: 'Noto Sans JP', sans-serif;
	color: #727171;
}
.m_itemDetail .p_img {
	float: left;
	width: 70.32%;
}
.m_itemDetail .p_caption {
	margin-top: 10px;
	font-size: 22px;
}
.m_itemDetail .p_text {
	margin-top: 50px;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.075em;
}
.m_itemDetail .p_btn {
	margin-top: 150px;
}
.m_itemDetail .p_btn li {
	margin-top: 30px;
}
@media screen and (max-width: 767px){
	.m_itemDetail .p_info {
		float: none;
		width: auto;
	}
	.m_itemDetail .p_title {
		font-size: 18px;
	}
	.m_itemDetail .p_price {
		margin-top: 5px;
		font-size: 14px;
	}
	.m_itemDetail .p_img {
		float: none;
		margin-top: 25px;
		width: auto;
	}
	.m_itemDetail .p_img.s_marginL {
		margin: 40px 0;
	}
	.m_itemDetail .p_caption {
		text-align: right;
		margin-top: 5px;
		font-size: 11px;
	}
	.m_itemDetail .p_text {
		margin-top: 30px;
		font-size: 13px;
		line-height: 1.7;
	}
	.m_itemDetail .p_btn {
		margin-top: 35px;
	}
	.m_itemDetail .p_btn li {
		margin-top: 20px;
	}
}

.m_imgviewer ul {
	overflow: hidden;
	margin: 50px 0 0 -3.33%;
}
.m_imgviewer li {
	float: left;
	width: 30.1%;
	margin-left: 3.23%;
	cursor: pointer;
	transition: opacity 0.3s;
}
.m_imgviewer li.s_select {
	display: none;
}
.m_imgviewer li:hover {
	opacity: 0.8;
}
@media screen and (max-width: 767px){
	.m_imgviewer ul {
		margin-top: 15px;
	}
}

.m_recommend {
	margin-top: 100px;
	border-top: 2px solid #0d367a;
	padding-top: 100px;
}
.m_recommend .p_title {
	margin-bottom: 45px;
	color: #003686;
	font-size: 30px;
	letter-spacing: 0.1em;
}
.m_recommend ul {
	display: flex;
}
.m_recommend li {
	width: 19.38%;
	margin-right: 7.49%;
	text-align: center;
}
.m_recommend li:last-child {
	margin-right: 0;
}
.m_recommend a {
	display: block;
}
.m_recommend a:hover {
	opacity: 0.8;
}
.m_recommend .p_name {
	margin-top: 20px;
	color: #727171;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 17px;
}
@media screen and (max-width: 767px){
	.m_recommend {
		margin-top: 50px;
		border-top-width: 1px;
		padding-top: 30px;
	}
	.m_recommend .p_title {
		margin-bottom: 20px;
		font-size: 14px;
	}
	.m_recommend ul {
		margin: 0 -25px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		padding: 0 25px;
	}
	.m_recommend li {
		width: 110px;
		margin: 0 0 20px;
		padding-right: 18px;
		box-sizing: content-box;
		flex-shrink: 0;
	}
	.m_recommend li:last-child {
		padding-right: 25px;
	}
	.m_recommend .p_name {
		margin-top: 10px;
		font-size: 11px;
	}
}

.m_engraveDetail {
	margin: 130px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.m_engraveDetail img {
	width: 42.97%;
	padding-bottom: 10px;
}
.m_engraveDetail p {
	width: 53.1%;
	line-height: 2.25;
}
@media screen and (max-width: 767px){
	.m_engraveDetail {
		max-width: 275px;
		margin: 75px auto 0;
		display: block;
	}
	.m_engraveDetail img {
		width: auto;
		padding-bottom: 20px;
	}
	.m_engraveDetail p {
		width: auto;
		font-size: 10px;
		line-height: 2;
	}
}

.m_trialLead {
	text-align: center;
	line-height: 2.25;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px){
	.m_trialLead {
		font-size: 13px;
		line-height: 2;
	}
}

.m_trialDetail {
	margin: 125px 0;
}
.m_trialDetail .p_box {
	display: flex;
	border: 1px solid #0d367a;
	letter-spacing: 0.1em;
}
.m_trialDetail .p_box + .p_box {
	margin-top: 30px;
}
.m_trialDetail .p_box .p_head {
	width: 470px;
	background-color: #0d367a;
	padding: 11px;
	text-align: center;
	color: #fff;
}
.m_trialDetail .p_box .p_body {
	padding: 12px 10px 12px 30px;
	flex-grow: 1;
	color: #003686;
	font-size: 18px;
}
.m_trialDetail .p_box p {
	width: 100%;
	background-color: #0d367a;
	padding: 11px;
	text-align: center;
	color: #fff;
}
.m_trialDetail .p_note {
	margin: 25px 0 50px;
	color: #0d367a;
	font-size: 18px;
}
@media screen and (max-width: 767px){
	.m_trialDetail {
		margin: 40px 0;
	}
	.m_trialDetail .p_box {
		display: block;
	}
	.m_trialDetail .p_box + .p_box {
		margin-top: 20px;
	}
	.m_trialDetail .p_box .p_head {
		width: auto;
		padding: 5px 0 6px;
		font-size: 14px;
	}
	.m_trialDetail .p_box .p_body {
		padding: 8px 5px;
		text-align: center;
		font-size: 13px;
		line-height: 1.6;
	}
	.m_trialDetail .p_box p {
		padding: 8px;
		font-size: 13px;
		line-height: 1.6;
	}
	.m_trialDetail .p_note {
		margin: 10px 0 45px;
		font-size: 12px;
	}
}

.m_contactTitle {
	padding: 240px 0 35px;
	text-align: center;
	font-size: 45px;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 767px){
	.m_contactTitle {
		padding: 40px 0 65px;
		font-size: 23px;
	}
}

.m_thanksTitle {
	padding: 240px 0 0;
	text-align: center;
	font-size: 45px;
	line-height: 1.5;
	letter-spacing: 0.2em;
}
@media screen and (max-width: 767px){
	.m_thanksTitle {
		padding: 90px 0 0;
		font-size: 20px;
	}
}

.m_thanksText {
	margin: 120px 0;
	text-align: center;
	font-size: 25px;
	line-height: 2;
}
.m_thanksText p + p {
	margin-top: 50px;
}
@media screen and (max-width: 767px){
	.m_thanksText {
		margin: 40px 0 70px;
		font-size: 13px;
	}
	.m_thanksText p + p {
		margin-top: 25px;
	}
}

.m_404Title {
	padding: 240px 0 150px;
	text-align: center;
	font-size: 40px;
	letter-spacing: 0.1em;
}
.m_404Text {
	margin-bottom: 600px;
	text-align: center;
	font-size: 25px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 767px){
	.m_404Title {
		padding: 140px 0 35px;
		font-size: 15px;
	}
	.m_404Text {
		margin-bottom: 250px;
		font-size: 13px;
	}
}


/* マージンキャンセル
----------------------------------------- */

*:first-child {
	margin-top: 0;
}
*:last-child {
	margin-bottom: 0;
}
