@charset "utf-8";
/* -----------------------------------------
static_lp.css
静的ページLP用css

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

body {
	font-size: 1.6rem;
}
@media screen and (max-width: 767px){
	body {
		font-size: 1.4rem;
	}
}


/* フレーム
----------------------------------------- */

.f_header {
	position: relative;
	border-top: 5px solid #ce1619;
	border-bottom: 1px solid #ccc;
	background-color: #fff;
	padding-top: 13px;
	height: 80px;
	overflow: hidden;
}
.f_header .p_topLogo1 {
	float: left;
}
.f_header .p_topLogo2 {
	float: right;
	margin-top: 10px;
}
@media screen and (max-width: 767px){
	.f_header {
		border-bottom: none;
		padding-top: 8px;
		height: 50px;
	}
	.f_header .p_topLogo1 {
		width: 87px;
	}
	.f_header .p_topLogo2 {
		width: 140px;
		margin-top: 5px;
	}
}

.f_footer {
	position: relative;
	z-index: 10;
	margin-top: 100px;
	background-color: #5a5a5a;
}
.f_footer .p_pageTop {
	position: absolute;
	z-index: 10;
	top: -90px;
	bottom: auto;
	right: 10px;
}
.f_footer .p_pageTop.s_fixed {
	position: fixed;
	top: auto;
	bottom: 10px;
	right: 10px;
}
.f_footer .p_pageTop a {
	display: block;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.333;
}
.f_footer .p_pageTop a span {
	display: block;
	width: 44px;
	height: 44px;
	background-color: #777777;
	border-radius: 50%;
	margin: 0 auto 5px;
	position: relative;
	z-index: 0;
}
.f_footer .p_pageTop a:hover span {
	background-color: #b6b6b6;
}
.f_footer .p_pageTop a span::before {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(-45deg);
	position: absolute;
	z-index: 0;
	top: 20px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.f_footer .p_linkArea {
	padding: 20px 0;
	color: #fff;
}
.f_footer .p_linkList {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.f_footer .p_linkList li {
	margin: 5px 15px;
}
.f_footer .p_linkList a {
	position: relative;
	display: inline-block;
	padding-left: 15px;
	font-size: 1.3rem;
}
.f_footer .p_linkList a:hover {
	text-decoration: underline;
}
.f_footer .p_linkList a::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	width: 7px;
	height: 7px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
}
.f_footer .p_copyright {
	border-top: 1px solid #fff;
	border-bottom: 4px solid #fff;
	padding: 30px 0;
	color: #fff;
}
@media screen and (max-width: 767px){
	.f_footer.s_popup {
		margin-top: 40px;
	}
	.f_footer .p_pageTop {
		top: -60px;
	}
	.f_footer .p_pageTop a {
		font-size: 1.0rem;
		line-height: 1.125;
	}
	.f_footer .p_pageTop a span {
		width: 25px;
		height: 25px;
	}
	.f_footer .p_pageTop a span::before {
		width: 7px;
		height: 7px;
		top: 11px;
	}
	.f_footer .p_linkArea {
		padding: 15px 0;
	}
	.f_footer .p_copyright {
		padding: 15px 0;
	}
}


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

/* section */

.m_sectionL {
	margin: 80px 0;
}
.m_sectionM {
	margin: 50px 0;
}
.m_sectionS {
	margin: 30px 0;
}

/* title */

.m_titleL {
	position: relative;
	overflow: hidden;
	margin: 50px 0 15px;
	padding: 10px 0;
	font-size: 2.8rem;
}
.m_titleL::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	border-bottom: 2px solid #ccc;
}
.m_titleL::after {
	content: '';
	position: absolute;
	left: 100%;
	bottom: 0;
	width: 100px;
	border-bottom: 2px solid #c68083;
	transition: left 1.2s;
}
.m_titleL.s_show::after {
	left: 0;
}
.m_titleL.s_blue::after {
	border-bottom-color: #76abd9;
}
@media screen and (max-width: 767px){
	.m_titleL {
		margin: 40px 0 15px;
		padding: 5px 0;
		font-size: 2rem;
	}
	.m_titleL.s_fontS {
		font-size: 2rem;
	}
}

.m_titleM {
	margin: 40px 0 20px;
	border-left: 4px solid #97191d;
	padding-left: 15px;
	font-size: 2.4rem;
	font-weight: bold;
}
.m_titleM.s_fontS {
	font-size: 2.1rem;
}
.m_titleL + .m_titleM {
	margin-top: 40px;
}
.m_titleM.s_blue {
	border-color: #76abd9;
}
.m_titleM small {
	font-size: 1.5rem;
}
@media screen and (max-width: 767px){
	.m_titleM {
		margin: 40px 0 15px;
		border-left-width: 3px;
		padding-left: 10px;
		font-size: 1.8rem;
	}
	.m_titleM.s_fontS {
		font-size: 1.8rem;
	}
	.m_titleL + .m_titleM {
		margin-top: 30px;
	}
}

.m_titleS {
	margin: 25px 0 5px;
	font-size: 1.8rem;
	font-weight: bold;
}
.m_titleS.s_red {
	color: #c68083;
}
@media screen and (max-width: 767px){
	.m_titleS {
		font-size: 1.6rem;
	}
}

.m_titleSS {
	margin: 15px 0 0;
	font-weight: bold;
}

/* text */

.m_text {
	margin: 10px 0;
	line-height: 1.8;
}
.m_text.s_marginS {
	margin: 5px 0 0;
}

.m_smallText {
	margin: 5px 0;
	font-size: 1.4rem;
	line-height: 1.6;
}
@media screen and (max-width: 767px){
	.m_smallText {
		font-size: 1.3rem;
	}
}

.m_strong {
	color: #98191e;
	font-weight: bold;
}
.m_strong.s_blue {
	color: #0566b9;
}

.m_indent {
	padding-left: 1em;
	text-indent: -1em;
}

/* link */

.m_link {
	text-decoration: underline;
	cursor: pointer;
}
.m_link:hover {
	text-decoration: none;
}
.m_link.s_mark {
	text-decoration: none;
}
.m_link.s_mark:hover {
	text-decoration: underline;
}
.m_link.s_mark::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	margin-right: 5px;
}

.m_linkBtn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 350px;
	height: 60px;
	border-radius: 8px;
	border: 2px solid #a2a2a2;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.15) 50%,rgba(0,0,0,0) 100%);
	padding: 0 30px;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
	text-shadow: 0 2px 2px rgba(0,0,0,0.3);
	box-shadow: 0 4px 4px rgba(0,0,0,0.4), 0 0 0 1px #fff inset;
	letter-spacing: 0.06em;
}
.m_linkBtn:hover {
	opacity: 0.5;
}
.m_linkBtn.s_long {
	width: 600px;
	max-width: 100%;
}
.m_linkBtn.s_sizeS {
	height: 40px;
	padding: 0 15px;
	font-size: 1.4rem;
}
.m_linkBtn.s_sizeSS {
	min-width: 240px;
	height: 40px;
	padding: 0 15px;
	font-size: 1.4rem;
}
.m_linkBtn > span {
	display: inline-block;
}
.m_linkBtn > span::before {
	content: "";
	display: inline-block;
	width: 9px;
	height: 9px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: rotate(45deg) translateY(-2px);
	margin-right: 8px;
}
.m_linkBtn.s_top > span::before {
	transform: rotate(-45deg);
}
.m_linkBtn.s_anchor > span::before {
	transform: rotate(135deg) translateY(2px);
}
.m_linkBtn.s_bgRed {
	border-color: #6b0000;
	background: linear-gradient(to bottom, rgba(153,0,0,1) 0%,rgba(116,0,0,1) 35%,rgba(116,0,0,1) 65%,rgba(153,0,0,1) 100%);
	color: #fff;
}
.m_linkBtn.s_bgRed > span::before {
	border-color: #fff;
}
.m_linkBtn.s_bgBlue {
	border-color: #0f3277;
	background: linear-gradient(to bottom, #214a9c 0%,#0e3075 73%,#1b428f 100%);
	color: #fff;
}
.m_linkBtn.s_bgBlue > span::before {
	border-color: #fff;
}
.m_linkBtn.s_bgGreen {
	border-color: #3f770f;
	background: linear-gradient(to bottom, rgba(108,167,56,1) 0%,rgba(69,127,19,1) 35%,rgba(69,127,19,1) 65%,rgba(108,167,56,1) 100%);
	color: #fff;
}
.m_linkBtn.s_bgGreen > span::before {
	border-color: #fff;
}
.m_linkBtn.s_bgPurple {
	border-color: #860042;
	background: linear-gradient(to bottom, rgba(174,0,86,1) 0%,rgba(124,0,62,1) 35%,rgba(189,0,94,1) 100%);
	color: #fff;
}
.m_linkBtn.s_bgPurple > span::before {
	border-color: #fff;
}
@media screen and (max-width: 767px){
	.m_linkBtn {
		min-width: 280px;
		padding: 0 15px;
		font-size: 1.6rem;
	}
}

.m_footerBtnArea {
	margin: 50px 0 0;
	text-align: center;
}

/* list */

.m_list {
	margin: 8px 0;
}
.m_list > li {
	position: relative;
	padding-left: 1em;
	line-height: 1.5;
}
.m_list > li:before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
.m_list.s_note > li:before {
	content: "※";
}

.m_circleList {
	margin: 10px 0;
}
.m_circleList > li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.6;
}
.m_circleList > li + li {
	margin-top: 5px;
}
.m_circleList > li::before {
	content: '●';
	position: absolute;
	top: 0;
	left: 0;
}

.m_dotList {
	margin: 10px 0;
}
.m_dotList > li {
	position: relative;
	padding-left: 1.2em;
	line-height: 1.6;
}
.m_dotList > li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

.m_noteList {
	margin: 10px 0;
}
.m_noteList > li {
	position: relative;
	padding-left: 1.2em;
	font-size: 1.4rem;
	line-height: 1.6;
}
.m_noteList > li::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

.m_orderList {
	margin: 10px 0;
	padding-left: 20px;
}
.m_orderList > li {
	line-height: 1.6;
	list-style-type: decimal;
}
.m_orderList > li + li {
	margin-top: 5px;
}

/* img */

.m_img {
	margin: 15px 0;
}


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

.m_utilityBox {
	margin: 20px;
	font-size: 1.4rem;
}
.m_utilityBox .m_list.s_note {
	margin-top: 0;
}
.m_utilityBox .m_list.s_note >li {
	font-size: 1rem;
}
.m_utilityBox .p_utiInfoList {
	margin: 10px 0;
	padding-left: 25px;
}
.m_utilityBox .p_utiInfoList > li {
	position: relative;
	line-height: 1.5;
}
.m_utilityBox .p_utiInfoList > li + li {
	margin-top: 5px;
}
.m_utilityBox .p_utiInfoList > li:before {
	content: "";
	position: absolute;
	top: 0;
	left: -25px;
	display: inline-block;
	width: 21px;
	height: 21px;
	background: url(/attend-lp/img/lp_icon_01.png) no-repeat 0 0;
	background-size: contain;
}
.m_utilityBox .p_utiInfoList.s_blue > li:before {
	background-image: url(/attend-lp/img/lp_icon_02.png);
}
.m_utilityBox .p_utiContent.s_noIndent {
	margin-left: -25px;
}
.m_utilityBox .p_utiPay {
	margin:  10px 0;
}
.m_utilityBox .p_utiPay .m_list.s_note {
	margin-top: 5px;
	display: flex;
	justify-content: center;
}
.m_utilityBox .p_utiPay .p_utiPayList {
	display: flex;
	flex-wrap: wrap;
	margin: -10px 0 0 -10px;
}
.m_utilityBox .p_utiPay .p_utiPayList > li {
	padding: 10px 0 0 10px;
}
@media screen and (max-width: 767px){
	.m_utilityBox {
		margin: 12px 0;
	}
}
/*p_utiPay:s_01 */
.m_utilityBox .p_utiPay.s_01 .p_utiPayList > li:nth-child(1){ width: 67%; }
.m_utilityBox .p_utiPay.s_01 .p_utiPayList > li:nth-child(2){ width: 33%; }
.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(1){ width: 30%; }
.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(2){ width: 31%; }
.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(3){ width: 39%; }
@media screen and (max-width: 900px){
	.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(1){ width: 50%; }
	.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(2){ width: 50%; }
	.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(3){ width: 50%;}
}
@media screen and (max-width: 767px){
	.m_utilityBox .p_utiPay.s_01 .p_utiPayList > li:nth-child(1),
	.m_utilityBox .p_utiPay.s_01 .p_utiPayList > li:nth-child(2),
	.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(1),
	.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(2),
	.m_utilityBox .p_utiPay.s_02 .p_utiPayList > li:nth-child(3){ width: 100% }
}
.m_utilityBox .p_utiPay .p_utiPayBox {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	height: 100%;
	min-height:  70px;
	background-color: #fff;
	padding: 11px 10px;
}
.m_utilityBox .p_utiPay .p_utiPayBox .p_utiPayItems {
	margin: -10px 0 0 -35px;
	text-align: center;
}
.m_utilityBox .p_utiPay .p_utiPayBox .p_utiPayItems > li {
	display: inline-block;
	vertical-align: middle;
	padding: 10px 0 0 35px;
}
.m_utilityBox .p_utiPay.s_03 .p_utiPayBox .p_utiPayItems {
	margin: -10px 0 0 -10px;
}
.m_utilityBox .p_utiPay.s_03 .p_utiPayBox .p_utiPayItems > li {
	padding: 10px 0 0 10px;
}
.m_utilityBox .p_utiPay.s_03 .p_utiPayBox {
	justify-content: center;
}
.m_utilityBox .p_utiPay .p_utiPayBox .p_utiPayLabel {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.m_utilityBox .p_utiPay .p_utiPayBox .p_utiPayTitle {
	font-weight: bold;
	margin: 5px 50px 5px 0;
}
@media screen and (max-width: 767px){
	.m_utilityBox .p_utiPay .p_utiPayBox .p_utiPayItems {
		margin: -10px 0 0 -10px;
	}
	.m_utilityBox .p_utiPay .p_utiPayBox .p_utiPayItems > li {
		transform: scale(0.8);
		padding: 10px 0 0 10px;
	}
}
/*p_utiPayBox:s_01 */
.m_utilityBox .p_utiPay .p_utiPayBox.s_01 .p_utiPayLabel {
	margin-top: -3px;
}
/*p_utiPayBox:s_02 */
.m_utilityBox .p_utiPay .p_utiPayBox.s_02 .p_utiPayTitle {
	font-weight: bold;
	margin-right: 50px;
}
.m_utilityBox .p_utiPay .p_utiPayBox.s_02 .p_utiPayItems {
	text-align: center;
}
.m_utilityBox .p_utiPay .p_utiPayBox.s_02 .p_utiPayItems > li {
	vertical-align: bottom;
}


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

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