@charset "utf-8";

/*
GLOBAL
***************************************************************************/
html {
	font-size: 62.5%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	width: 100%;
	height: auto;
	text-align: left;
	font-size: 1.8rem;
	font-weight: 400;
	color: #fff;
	line-height: 2.15;
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.1rem;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	caret-color: transparent;
}

body.form_complete {
	min-height: 100vh;
}

/* ▼CONTAINER CONTROL▼ */
.base_box {
	position: relative;
	width: 1400px;
	margin-left: auto;
	margin-right: auto;
	z-index: 5;
}

.base_box.half_left {
	width: calc(((100vw - 1400px) / 2) + 1400px);
	margin-right: 0;
}

.base_box.half_right {
	width: calc(((100vw - 1400px) / 2) + 1400px);
	margin-left: 0;
}

.base_box.mid_large { width:1500px; }
.base_box.large { width:1600px; }
.base_box.ex_large { width:1800px; }

.base_box.large.half_left, .base_box.large.half_right { width:calc(((100vw - 1600px) / 2) + 1600px); }
.base_box.ex_large.half_left, .base_box.ex_large.half_right { width:calc(((100vw - 1800px) / 2) + 1800px); }

@media screen and (max-width: 1920px){

	.base_box.ex_large {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

}

@media screen and (max-width: 1780px){

	.base_box.large.half_left {
		width: auto;
		margin-left: 60px;
		margin-right: 0;
	}

}

@media screen and (max-width: 1720px){

	.base_box.large {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

	.base_box.large.half_left {
		width: auto;
		margin-left: 60px;
		margin-right: 0;
	}

}

@media screen and (max-width: 1620px){

	.base_box.mid_large {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

}

@media screen and (max-width: 1520px){

	.base_box {
		width: auto;
		margin-left: 60px;
		margin-right: 60px;
	}

	.base_box.large.half_left {
		width: auto;
		margin-left: 60px;
		margin-right: 0;
	}

}

.base_content {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	z-index: 5;
}

.pc_disp { display:block; }
.sp_disp { display:none; }

/*
DEFAULT
***************************************************************************/
body,
h1,h2,h3,h4,h5,h6,p,div,
ul,ol,li,dl,dt,dd,
form,fieldset,legend,pre,blockquote,main,
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
	display: block;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
	word-wrap: break-word;
	font-feature-settings: "palt";
	backface-visibility: hidden;
}

p {
	margin-block-start: 0;
	margin-block-end: 0;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 400;
	line-height: 1.5;
}

.clearfix:after {
	display: block;
	clear: both;
	content: "";
	overflow: hidden;
}

li {
	list-style-type: none;
}

table {
	width: 100%;
	text-align: left;
	border-collapse: collapse;
}

th {
	text-align: left;
	font-weight: 400;
}

/* ▼LINK▼ */
a {
	color: #fff;
	text-decoration: none;
	outline: none;
	transition: .3s;
}

a.normal_link {
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

/* ▼IMG▼ */
img, input[type="image"] {
	border: 0;
	font-size: 0;
	line-height: 0;
	vertical-align: middle;
}

button, input[type="submit"] {
	width: 100%;
	height: 100%;
	padding: 0;
	vertical-align: middle;
	color: #1a1c1d;
	font-family: "Zen Old Mincho", serif;
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	transition: .3s;
}

.img_frame {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
	transition: .3s;
}

.hover_zoom a .img { overflow:hidden; }

.hover_zoom a:hover { opacity:1; }

.hover_zoom a:hover .img_frame {
	transform: scale(1.1);
}

.hover_down img { transition:.3s; }
.hover_down:hover img { transform:translateY(5px); }

/*
TOP
***************************************************************************/
/* ▼TOPIMG▼ */
#topimg {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

#topimg .movie {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: calc(100% + 1px);
	min-height: calc(100% + 1px);
	width: auto;
	aspect-ratio: 16 / 9;
	transform: translate(-50%, -50%);
	object-fit: cover;
	z-index: -1;
}

#topimg .top_movie {
	width: 100%;
	aspect-ratio: 16 / 9;
}

#topimg .cover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/pc/topimg_bg.jpg) center center / cover no-repeat;
	z-index: 2;
}

#topimg .movie_sound {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 80px;
	background-image: url(../images/btn_sound.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 2;
	cursor: pointer;
}

#topimg .movie_sound.active { background-image:url(../images/btn_mute.jpg); }

#topimg .top_txt {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 5;
}

#topimg .top_txt::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 25%;
	aspect-ratio: 50 / 33;
	background: url(../images/pc/topimg_parts.png) center center / cover no-repeat;
	z-index: 1;
}

#topimg .movie_play {
	position: absolute;
	bottom: 240px;
	right: 100px;
	width: 360px;
	z-index: 15;
}

#topimg .movie_play .btn01 {
	flex-direction: row;
	height: 90px;
	padding-right: 15px;
	font-size: 3.6rem;
	font-weight: 600;
	letter-spacing: 0;
}

#topimg .movie_play .btn01 .sub {
	margin: 0 10px;
	font-weight: 200;
}

#topimg .title {
	position: absolute;
	bottom: 0;
	left: 40px;
	width: 50%;
	z-index: 1;
}

#topimg .btn {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 25%;
	z-index: 10;
}

#topimg img { width:100%; }

/* ▼BRIEFING▼ */
.top_briefing {
	padding: 180px 0 270px;
	text-align: center;
	background: #151718;
}

.top_briefing .sec_inner {
	width: 840px;
	margin: 0 auto 120px;
}

.top_briefing .title_box {
	position: relative;
	margin-bottom: 30px;
}

.top_briefing .title_box .txt {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 100%;
	font-size: 2rem;
}

.top_briefing .name {
	font-size: 2.2rem;
	font-weight: 600;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.top_briefing .btn_list {
	display: flex;
	justify-content: space-between;
}

.top_briefing .btn_list li {
	width: calc((100% - 150px) / 2);
}

@media screen and (max-width: 1720px){

	.top_briefing .btn_list li {
		width: calc((100% - 60px) / 2);
	}

}

/* ▼WELCOME▼ */
.top_welcome {
	position: relative;
	background: #03080a url(../images/pc/welcome_bg.jpg) center top no-repeat;
}

.top_welcome::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: url(../images/pc/welcome_parts.png) center bottom / cover no-repeat;
	z-index: 5;
}

.top_welcome .sec_inner {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 750px 0 340px;
	z-index: 10;
}

.top_welcome .title {
	margin-bottom: 60px;
	font-size: 2.6rem;
}

.top_welcome .txt .sub {
	font-size: 1.4rem;
}

.top_welcome .btn {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 400px;
	margin-left: -200px;
	z-index: 10;
}

/* ▼TOOL▼ */
.top_tool {
	padding: 50px;
	background: #03080a;
}

.top_tool .sec_inner {
	position: relative;
}

.top_tool .title_box {
	width: 100%;
	height: 980px;
	padding-top: 40px;
	text-align: center;
	background: url(../images/tool_bg.jpg) center top / cover no-repeat;
}

.top_tool .title_box .btn {
	width: 700px;
	margin: 0 auto -80px;
	transform: translateY(-80px);
}

.top_tool .title_box .btn01 {
	height: 200px;
}

.top_tool .title_box .txt {
	margin-top: 15px;
	font-size: 1.6rem;
}

.top_tool .box {
	display: none;
}

.top_tool .box#tool_confirm {
	padding: 30px 25px;
	background: #1e2122;
}

.top_tool .box#tool_confirm .inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 20px;
	height: 100%;
}

.top_tool .box#tool_confirm img { width:100%; }

.top_tool .box#tool_confirm .gear_select {
	display: flex;
	flex-wrap: wrap;
	width: calc((100% - 20px) * 0.492);
}

.top_tool .box#tool_confirm .gear_select li {
	width: 50%;
	cursor: pointer;
	transition: .3s;
}

.top_tool .box#tool_confirm .gear_select li:hover { opacity:0.8; }

.top_tool .box#tool_confirm .result {
	position: relative;
	width: calc((100% - 20px) * 0.508);
}

.top_tool .box#tool_confirm .result .gear_result li {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.top_tool .box#tool_confirm .result .gear_result li .btn {
	position: absolute;
	bottom: 8%;
	left: 50%;
	width: 60%;
	cursor: pointer;
	transform: translateX(-50%);
}

.top_tool .box#tool_confirm .result .gear_result li .btn img { width:100%; }

.top_tool .box#tool_confirm .result .gear_result li .btn img { transition:.3s; }
.top_tool .box#tool_confirm .result .gear_result li .btn span:hover img { transform:translateY(5px); }

.top_tool .box#tool_message {
	height: 980px;
	background: #141617;
}

.top_tool .box#tool_message .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 700px;
	height: 100%;
	margin: 0 auto;
	text-align: center;
}

.top_tool .box#tool_message .title {
	margin-bottom: 50px;
	font-size: 4.4rem;
}

.top_tool .box#tool_message .txt {
	margin-bottom: 50px;
}

.top_tool .box#tool_message .txt .strong {
	font-size: 2.4rem;
}

.top_tool .box#tool_message .btn01 {
	height: 200px;
}

.top_tool .box#tool_message .sub {
	margin-top: 15px;
	font-size: 1.6rem;
}

.top_tool .box#tool_next {
	height: 980px;
	padding: 30px 150px;
	background: #151718;
}

.top_tool .box#tool_next .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	height: 100%;
	padding: 0 20px;
	background: url(../images/next_bg.jpg) left top / 50% no-repeat;
}

.top_tool .box#tool_next .txt {
	width: 46.8%;
	margin: 0 0 80px 53.2%;
}

.top_tool .box#tool_next .sub {
	position: absolute;
	bottom: 350px;
	left: 20px;
	font-size: 1.6rem;
}

.top_tool .box#tool_next .btn01 {
	height: 200px;
}

@media screen and (max-width: 1840px){

	.top_tool .box#tool_next {
		padding: 30px 60px;
	}

}

/* ▼PROFILE▼ */
.top_profile {
	padding: 530px 0 270px;
	text-align: center;
	background: url(../images/pc/profile_bg.jpg) center top / cover no-repeat;
}

.top_profile .sec_inner {
	width: 760px;
	margin: 0 auto;
}

.top_profile .head {
	margin-bottom: 10px;
	font-size: 5rem;
	font-family: "Oswald", sans-serif;
}

.top_profile .list {
	margin-bottom: 25px;
	line-height: 1.75;
	font-family: "Oswald", sans-serif;
	transform: translateX(15px);
}

.top_profile .list dl {
	display: flex;
	align-items: center;
}

.top_profile .list dt {
	position: relative;
	width: 50%;
	padding-right: 30px;
	text-align: right;
	font-size: 2.2rem;
}

.top_profile .list dt::after {
	content: '：';
	position: absolute;
	top: 0;
	right: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.top_profile .list dd {
	width: 50%;
	padding-left: 5px;
	text-align: left;
	font-size: 2.6rem;
}

.top_profile .sub {
	margin-bottom: 110px;
	font-size: 1.6rem;
}

.top_profile .btn {
	margin: 0 30px;
}

/*
FORM
***************************************************************************/
#page_title {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 600px;
	font-size: 6rem;
	font-weight: 700;
	color: #fff;
	font-family: "Oswald", sans-serif;
	background: url(../images/ptitle_bg.jpg) center bottom / cover no-repeat;
}

.form_sec {
	padding: 180px 0 300px;
	background: #151718;
}

.form_sec .sec_txt {
	margin-bottom: 80px;
}

.form_sec .sec_txt .must {
	margin-right: 5px;
	color: #3f0a82;
}

.form_sec .form_title {
	margin: 100px 0;
	font-size: 3.6rem;
}

/* ▼STEP▼ */
.form_step {
	margin-bottom: 100px;
}

.form_step ul {
	display: flex;
	position: relative;
	width: 1200px;
	margin: 0 auto;
}

.form_step ul::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #7e7e7e;
	z-index: 1;
}

.form_step li {
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	width: calc(100% / 3);
	height: 100px;
	padding-bottom: 20px;
	text-align: center;
	color: #7e7e7e;
	line-height: 1.55;
}

.form_step.input li:nth-child(1), .form_step.conf li:nth-child(2), .form_step.comp li:nth-child(3) { color:#fff; }

.form_step li::before {
	display: none;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	z-index: 2;
}

.form_step.input li:nth-child(1)::before, 
.form_step.conf li:nth-child(2)::before,
.form_step.comp li:nth-child(3)::before { display:block; }

.form_step li .sub {
	font-size: 1.8rem;
	font-weight: 600;
	font-family: "Oswald", sans-serif;
}

.form_step li .sub span {
	margin-left: 3px;
	font-size: 2.4rem;
}

/* ▼INPUT▼ */
.user_form {
	margin-bottom: 100px;
	border-top: solid 1px #7e7e7e;
}

.user_form.ex { margin-bottom:0; }

.user_form > dl {
	display: flex;
	position: relative;
	padding: 60px 0;
	border-bottom: solid 1px #7e7e7e;
}

.user_form.conf > dl { padding:40px 0; }

.user_form.conf > dl > dt, .user_form.conf > dl > dd { line-height:1.85; }

.user_form > dl > dt {
	width: 30%;
	padding-left: 40px;
	font-size: 1.8rem;
	line-height: 80px;
}

.user_form > dl > dt .must {
	display: inline-block;
	position: relative;
	padding-left: 22px;
}

.user_form > dl > dt .must::before {
	content: '●';
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 1.2rem;
	color: #3f0a82;
	transform: translateY(-50%);
}

.user_form > dl > dd {
	width: 70%;
}

.mfp_err {
	font-size: 1.6rem;
	font-weight: 700;
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.mfp_err > span {
	display: inline-block;
	padding-top: 20px;
}

.mfp_err.ex > span { padding-top:0; }

#mfp_hidden, #mfp_loading, #mfp_loading_screen, #mfp_overlay_background, #mfp_overlay { display:none; }

/* ▼PP▼ */
.pp_box {
	margin-bottom: 60px;
	padding: 80px;
	font-size: 1.6rem;
	background: #2c2c2c;
}

.pp_box .title {
	margin-bottom: 40px;
	font-size: 2.8rem;
}

/* ▼COMPLETE▼ */
.form_comp {
	text-align: center;
}

.form_comp .sec_title {
	padding: 60px 0;
	font-size: 3.6rem;
}

.form_comp .sec_txt {
	margin-bottom: 100px;
}

.form_comp .btn {
	width: 640px;
	margin: 0 auto;
}

/* ▼CHECKBOX▼ */
.chk_list.pp_check {
	justify-content: center;
	margin-bottom: 120px;
	padding-bottom: 60px;
	text-align: center;
	border-bottom: solid 1px #7e7e7e;
}

/* ▼BUTTON▼ */
.form_btn {
	display: flex;
	flex-direction: row-reverse;
	gap: 0 60px;
}

.form_btn li { width:100%; }
.form_btn li.send { width:calc((100% - 60px) * 0.65); }
.form_btn li.back { width:calc((100% - 60px) * 0.35); }

.form_btn li .btn01 {
	height: 200px;
}

.form_btn li.back .btn01::after {
	right: auto;
	left: 30px;
	transform: translateY(-50%) rotate(-135deg);
}

.form_btn li.back .btn01:hover::after {
	border-top: 3px solid #1a1c1d;
	border-right: 3px solid #1a1c1d;
}

/*
FOOTER
***************************************************************************/
footer {
	padding: 300px 0 260px;
	text-align: center;
	font-family: "Oswald", sans-serif;
	background: #03080a url(../images/pc/footer_bg.jpg) center center / cover no-repeat;
}

footer .sec_inner {
	width: 840px;
	margin: 0 auto;
}

footer .title {
	margin-bottom: 40px;
	font-size: 4rem;
	line-height: 1.75;
}

footer .txt {
	margin-bottom: 200px;
	font-size: 2rem;
	line-height: 1.8;
}

footer .foot {
	font-size: 1.7rem;
	font-weight: 600;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

/*
SCROLL
***************************************************************************/
.scroll_box { overflow-y:auto; }

.scroll_box::-webkit-scrollbar {
	width: 4px;
}

.scroll_box::-webkit-scrollbar-track {
	background: #efefef;
}

.scroll_box::-webkit-scrollbar-thumb {
	background: #949494;
}

.gecko .scroll_box {
	scrollbar-width: 4px;
	scrollbar-color: #949494 #efefef;
}

@media screen and (max-width: 1439px){

	.scroll_box::-webkit-scrollbar { display:none; }

}

/*
OVERLAY WINDOW
***************************************************************************/
#overlay_window {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10000;
	overflow: auto;
}

.overlay_outbox {
	position: absolute;
	width: 100%;
	height: 100vh;
}

.overlay_frame {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.overlay_content {
	display: none;
	position: relative;
	width: 100%;
	height: 100vh;
	padding: 100px 60px 100px 0;
	background: #03080a;
	transition: .3s;
}

.overlay_content .scroll_box {
	max-height: calc(100vh - 200px);
}

.overlay_content#mission_end .sec_inner {
	width: 1600px;
	margin: 0 auto;
	text-align: center;
}

.overlay_content#mission_end .title {
	margin-bottom: 75px;
	font-size: 5rem;
}

.overlay_content#mission_end .txt {
	margin-bottom: 115px;
}

.overlay_content#mission_end .btn_list {
	display: flex;
	justify-content: space-between;
}

.overlay_content#mission_end .btn_list li {
	width: calc((100% - 150px) / 2);
}

@media screen and (max-width: 1780px){

	.overlay_content#mission_end .sec_inner {
		width: auto;
		margin: 0 60px;
	}

	.overlay_content#mission_end .btn_list li {
		width: calc((100% - 60px) / 2);
	}

}

.overlay_content#limit_open.prof_active { background:#e8eef0; }

.overlay_content#limit_open .sec_inner {
	width: 1400px;
	margin: 0 auto;
}

.overlay_content#limit_open .title_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: calc(100vh - 200px);
	text-align: center;
}

.overlay_content#limit_open .title_box .title {
	margin-bottom: 80px;
	font-size: 5rem;
}

.overlay_content#limit_open .title_box .txt {
	font-size: 3rem;
	line-height: 1.85;
	font-family: "Oswald", sans-serif;
}

.overlay_content#limit_open .prof_box {
	display: none;
}

.overlay_content#limit_open .prof_box .inner {
	display: flex;
	flex-direction: row-reverse;
}

.overlay_content#limit_open .prof_box .content {
	width: calc(100% - 600px);
	font-weight: 500;
	color: #1a1c1d;
}

.overlay_content#limit_open .prof_box .title {
	margin-bottom: 50px;
	font-size: 4.6rem;
}

.overlay_content#limit_open .prof_box .list li {
	margin-bottom: 40px;
	font-size: 2rem;
	line-height: 1.85;
}

.overlay_content#limit_open .prof_box .list li .head {
	display: block;
	font-size: 1.4rem;
}

.overlay_content#limit_open .prof_box .sub {
	font-size: 1.4rem;
	color: #5e6569;
}

.overlay_content#limit_open .prof_box .img {
	width: 600px;
}

@media screen and (max-width: 1780px){

	.overlay_content#limit_open .sec_inner {
		width: auto;
		margin: 0 60px;
	}

}

.modal_close {
	position: absolute;
	top: 24px;
	right: 24px;
	width: 80px;
	height: 80px;
	background-image: url(../images/btn_close_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 80px;
	cursor: pointer;
	z-index: 10001;
}

.overlay_content#limit_open.active .modal_close { background-image: url(../images/btn_close.png); }

.modal_switch, .modal_switch span {
	cursor: pointer;
	transition: .3s;
}

/*
PARTS
***************************************************************************/
/* ▼CONTENTS EFFECT▼ */
.delay_fade {
	opacity: 0;
	transition: all 1000ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	-webkit-transition: all 1000ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
	transform: translateY(0);
}

.delay_fade.active {
	opacity: 1.0;
	transform: translateY(0);
}

.move_parts {
	opacity: 0;
	transition: all 0.8s;
}

.move_parts.btm_top {
	transform: translateY(50px);
}

.move_parts.top_btm {
	transform: translateY(-50px);
}

.move_parts.left_right {
	transform: translateX(-50px);
}

.move_parts.right_left {
	transform: translateX(50px);
}

.move_parts.expand {
	opacity: 1;
	transform: scale(0.001);
	transition: all 0.4s;
}

.move_parts.expand.rev {
	opacity: 0;
	transform: scale(1.5);
}

.move_parts.on {
	opacity: 1;
	transform: translate(0,0);
}

/* ▼BLINK▼ */
.blink {
	animation: blink 2s linear 0s infinite normal;
	transition: .1s;
}

@-webkit-keyframes blink {
	0% { opacity:1; }
	50% { opacity:0.3; }
	100% { opacity:1; }
}

@keyframes blink {
	0% { opacity:1; }
	50% { opacity:0.3; }
	100% { opacity:1; }
}

/* ▼BUTTON▼ */
.btn01 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 230px;
	text-align: center;
	font-size: 6rem;
	font-weight: 400;
	color: #1a1c1d;
	line-height: 1;
	font-family: "Oswald", sans-serif;
	background: #fff;
	transition: .3s;
	cursor: pointer;
}

.btn01 .jp {
	display: block;
	margin-top: 15px;
	font-size: 1.7rem;
	font-weight: 600;
	font-family: "Zen Kaku Gothic New", sans-serif;
}

.btn01:hover { color:#fff; background:#3f0a82; }

.btn01.purple { color:#fff; background:#3f0a82; }
.btn01.purple:hover { color:#fff; background:#23024e; }

.btn01.edge_white { color:#fff; background:transparent; border:solid 2px #fff; }
.btn01.edge_white:hover { color:#1a1c1d; background:#fff; }

/* ▼ARROW▼ */
.btn01::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 12px;
	height: 12px;
	border-top: 3px solid #1a1c1d;
	border-right: 3px solid #1a1c1d;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s;
}

.btn01:hover::after {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

.btn01.purple::after, .btn01.edge_white::after {
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
}

.btn01.edge_white:hover::after {
	border-top: 3px solid #1a1c1d;
	border-right: 3px solid #1a1c1d;
}

/* ▼ICON▼ */
.disp_switch .icon {
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	margin-top: -10px;
}

.disp_switch .icon:before, .disp_switch .icon:after {
	content: '';
	position: absolute;
	background: #272727;
}

.disp_switch .icon:before {
	top: 0;
	left: 50%;
	width: 2px;
	height: 100%;
	margin-left: -1px;
}

.disp_switch .icon:after {
	top: 50%;
	left: 0;
	width: 100%;
	height: 2px;
	margin-top: -1px;
}

.disp_switch.opened .icon:before { display:none; }

/* ▼LIST▼ */
.subtxt_list > li {
	position: relative;
	padding-left: 1.2em;
}

.subtxt_list > li::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

.list01 > li {
	position: relative;
	padding-left: 20px;
}

.list01 > li::before {
	content: '';
	position: absolute;
	top: 17px;
	left: 0;
	width: 6px;
	height: 6px;
	background: #272727;
	border-radius: 50%;
}

.list02 > li {
	position: relative;
	padding-left: 3em;
}

.list02 > li::before {
	position: absolute;
	top: 0;
	left: 0;
}

.list02 > li:nth-child(1)::before { content:'（1）'; }
.list02 > li:nth-child(2)::before { content:'（2）'; }
.list02 > li:nth-child(3)::before { content:'（3）'; }
.list02 > li:nth-child(4)::before { content:'（4）'; }
.list02 > li:nth-child(5)::before { content:'（5）'; }
.list02 > li:nth-child(6)::before { content:'（6）'; }
.list02 > li:nth-child(7)::before { content:'（7）'; }
.list02 > li:nth-child(8)::before { content:'（8）'; }
.list02 > li:nth-child(9)::before { content:'（9）'; }
.list02 > li:nth-child(10)::before { content:'（10）'; }
.list02 > li:nth-child(11)::before { content:'（11）'; }
.list02 > li:nth-child(12)::before { content:'（12）'; }
.list02 > li:nth-child(13)::before { content:'（13）'; }
.list02 > li:nth-child(14)::before { content:'（14）'; }
.list02 > li:nth-child(15)::before { content:'（15）'; }
.list02 > li:nth-child(16)::before { content:'（16）'; }
.list02 > li:nth-child(17)::before { content:'（17）'; }
.list02 > li:nth-child(18)::before { content:'（18）'; }
.list02 > li:nth-child(19)::before { content:'（19）'; }
.list02 > li:nth-child(20)::before { content:'（20）'; }

/*
COMMON PARTS
***************************************************************************/
/* ▼display▼ */
.block { display:block!important; }
.inline { display:inline!important; }

.posit_r { position:relative!important; }
.posit_a { position:absolute!important; }
.posit_f { position:fixed!important; }

.align_c { text-align:center!important; }
.align_r { text-align:right!important; }
.align_l { text-align:left!important; }

.disp_l { float:left!important; }
.disp_r { float:right!important; }

.va_top { vertical-align:top!important; }
.va_mid { vertical-align:middle!important; }
.va_btm { vertical-align:bottom!important; }

/* ▼width▼ */
.pc_w4per { width:4%; }
.pc_w5per { width:5%; }
.pc_w8per { width:8%; }
.pc_w10per { width:10%; }
.pc_w15per { width:15%; }
.pc_w20per { width:20%; }
.pc_w22per { width:22%; }
.pc_w25per { width:25%; }
.pc_w30per { width:30%; }
.pc_w35per { width:35%; }
.pc_w50per { width:50%; }
.pc_w55per { width:55%; }
.pc_w56per { width:56%; }
.pc_w60per { width:60%; }
.pc_w70per { width:70%; }
.pc_w75per { width:75%; }
.pc_w80per { width:80%; }
.pc_w100per { width:100%!important; }

.pc_w90 { width:90px!important; }
.pc_w160 { width:160px!important; }
.pc_w250 { width:250px!important; }
.pc_w400 { width:400px!important; }
.pc_w500 { width:500px!important; }
.pc_w510 { width:510px!important; }
.pc_w580 { width:580px!important; }

.pc_h210 { height:210px!important; }

.zoom05 { zoom:0.5; }

/* ▼area▼ */
.pc_mb140 { margin-bottom:140px!important; }
.pc_mb120 { margin-bottom:120px!important; }
.pc_mb100 { margin-bottom:100px!important; }
.pc_mb95 { margin-bottom:95px!important; }
.pc_mb90 { margin-bottom:90px!important; }
.pc_mb85 { margin-bottom:85px!important; }
.pc_mb80 { margin-bottom:80px!important; }
.pc_mb75 { margin-bottom:75px!important; }
.pc_mb70 { margin-bottom:70px!important; }
.pc_mb65 { margin-bottom:65px!important; }
.pc_mb60 { margin-bottom:60px!important; }
.pc_mb55 { margin-bottom:55px!important; }
.pc_mb50 { margin-bottom:50px!important; }
.pc_mb45 { margin-bottom:45px!important; }
.pc_mb40 { margin-bottom:40px!important; }
.pc_mb35 { margin-bottom:35px!important; }
.pc_mb30 { margin-bottom:30px!important; }
.pc_mb25 { margin-bottom:25px!important; }
.pc_mb20 { margin-bottom:20px!important; }
.pc_mb15 { margin-bottom:15px!important; }
.pc_mb12 { margin-bottom:12px!important; }
.pc_mb10 { margin-bottom:10px!important; }
.pc_mb8 { margin-bottom:8px!important; }
.pc_mb5 { margin-bottom:5px!important; }
.pc_mb0 { margin-bottom:0!important; }

.pc_mlr115 { margin-left:115px!important; margin-right:115px!important; }
.pc_mlr100 { margin-left:100px!important; margin-right:100px!important; }
.pc_mlr80 { margin-left:80px!important; margin-right:80px!important; }
.pc_mlr75 { margin-left:75px!important; margin-right:75px!important; }
.pc_mlr70 { margin-left:70px!important; margin-right:70px!important; }
.pc_mlr60 { margin-left:60px!important; margin-right:60px!important; }
.pc_mlr55 { margin-left:55px!important; margin-right:55px!important; }
.pc_mlr50 { margin-left:50px!important; margin-right:50px!important; }
.pc_mlr45 { margin-left:40px!important; margin-right:45px!important; }
.pc_mlr40 { margin-left:40px!important; margin-right:40px!important; }
.pc_mlr35 { margin-left:35px!important; margin-right:35px!important; }
.pc_mlr30 { margin-left:30px!important; margin-right:30px!important; }
.pc_mlr25 { margin-left:25px!important; margin-right:25px!important; }
.pc_mlr20 { margin-left:20px!important; margin-right:20px!important; }
.pc_mlr15 { margin-left:15px!important; margin-right:15px!important; }
.pc_mlr10 { margin-left:10px!important; margin-right:10px!important; }
.pc_mlr5 { margin-left:5px!important; margin-right:5px!important; }
.pc_mlr2 { margin-left:2px!important; margin-right:2px!important; }
.pc_mlr-1 { margin-left:-1px!important; margin-right:-1px!important; }
.pc_mlr-5 { margin-left:-5px!important; margin-right:-5px!important; }
.pc_mlr-10 { margin-left:-10px!important; margin-right:-10px!important; }
.pc_mlr-20 { margin-left:-20px!important; margin-right:-20px!important; }
.pc_mlr-40 { margin-left:-40px!important; margin-right:-40px!important; }
.pc_mlr-50 { margin-left:-50px!important; margin-right:-50px!important; }
.pc_mlr-60 { margin-left:-60px!important; margin-right:-60px!important; }
.pc_mlr-90 { margin-left:-90px!important; margin-right:-90px!important; }
.pc_mlr_auto { margin-left:auto!important; margin-right:auto!important; }

.pc_mr50 { margin-right:50px!important; }
.pc_mr40 { margin-right:40px!important; }
.pc_mr30 { margin-right:30px!important; }
.pc_mr25 { margin-right:25px!important; }
.pc_mr20 { margin-right:20px!important; }
.pc_mr15 { margin-right:15px!important; }
.pc_mr10 { margin-right:10px!important; }
.pc_mr5 { margin-right:5px!important; }
.pc_mr0 { margin-right:0px!important; }
.pc_mr-5 { margin-right:-5px!important; }

.pc_ml80 { margin-left:80px!important; }
.pc_ml50 { margin-left:50px!important; }
.pc_ml40 { margin-left:40px!important; }
.pc_ml30 { margin-left:30px!important; }
.pc_ml20 { margin-left:20px!important; }
.pc_ml15 { margin-left:15px!important; }
.pc_ml10 { margin-left:10px!important; }
.pc_ml2 { margin-left:2px!important; }
.pc_ml0 { margin-left:0px!important; }
.pc_ml-5 { margin-left:-5px!important; }
.pc_ml-10 { margin-left:-10px!important; }
.pc_ml-15 { margin-left:-15px!important; }
.pc_ml-20 { margin-left:-20px!important; }

.pc_mt120 { margin-top:120px!important; }
.pc_mt90 { margin-top:90px!important; }
.pc_mt80 { margin-top:80px!important; }
.pc_mt70 { margin-top:70px!important; }
.pc_mt60 { margin-top:60px!important; }
.pc_mt55 { margin-top:55px!important; }
.pc_mt50 { margin-top:50px!important; }
.pc_mt45 { margin-top:45px!important; }
.pc_mt40 { margin-top:40px!important; }
.pc_mt30 { margin-top:30px!important; }
.pc_mt20 { margin-top:20px!important; }
.pc_mt15 { margin-top:15px!important; }
.pc_mt10 { margin-top:10px!important; }
.pc_mt5 { margin-top:5px!important; }
.pc_mt3 { margin-top:3px!important; }
.pc_mt0 { margin-top:0!important; }
.pc_mt-5 { margin-top:-5px!important; }
.pc_mt-10 { margin-top:-10px!important; }
.pc_mt-20 { margin-top:-20px!important; }
.pc_mt-40 { margin-top:-40px!important; }
.pc_mt-50 { margin-top:-50px!important; }
.pc_mt-80 { margin-top:-80px!important; }

.pc_pb100 { padding-bottom:100px!important; }
.pc_pb80 { padding-bottom:80px!important; }
.pc_pb30 { padding-bottom:30px!important; }
.pc_pb8 { padding-bottom:8px!important; }
.pc_pb0 { padding-bottom:0!important; }

.pc_p20 { padding:20px!important; }
.pc_p15 { padding:15px!important; }
.pc_p10 { padding:10px!important; }

.pc_pt60 { padding-top:60px!important; }
.pc_pt50 { padding-top:50px!important; }

.pc_ptb20 { padding-top:20px!important; padding-bottom:20px!important; }
.pc_ptb15 { padding-top:15px!important; padding-bottom:15px!important; }
.pc_ptb5 { padding-top:5px!important; padding-bottom:5px!important; }
.pc_ptb0 { padding-top:0!important; padding-bottom:0!important; }

.pc_plr25 { padding-left:25px!important; padding-right:25px!important; }

/* ▼font▼ */
.ex_bold { font-weight:900!important; }
.bold { font-weight:700!important; }
.normal { font-weight:500!important; }

.pc_size10 { font-size:1rem!important; }
.pc_size11 { font-size:1.1rem!important; }
.pc_size12 { font-size:1.2rem!important; }
.pc_size13 { font-size:1.3rem!important; }
.pc_size14 { font-size:1.4rem!important; }
.pc_size16 { font-size:1.6rem!important; }
.pc_size17 { font-size:1.7rem!important; }
.pc_size18 { font-size:1.8rem!important; }
.pc_size19 { font-size:1.9rem!important; }
.pc_size20 { font-size:2.0rem!important; }
.pc_size22 { font-size:2.2rem!important; }
.pc_size24 { font-size:2.4rem!important; }
.pc_size30 { font-size:3.0rem!important; }

.c_yellow { color:#f5fd1e!important; }
.c_lblue { color:#34bae6!important; }
.c_red { color:#d81028!important; }
.c_pink { color:#f25072!important; }
.c_brown { color:#624d2b!important; }

.lh2 { line-height:2!important; }
.lh18 { line-height:1.8!important; }
.lh16 { line-height:1.6!important; }
.lh15 { line-height:1.5!important; }

/* ▼form▼ */
input[type="text"], input[type="file"], input[type="tel"], input[type="email"], input[type="url"], input[type="date"], input[type="password"], select, textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	display: block;
	position: relative;
	width: 100%;
	height: 80px;
	padding: 0 30px;
	vertical-align: middle;
	font-size: 1.8rem;
	font-weight: 500;
	color: #272727;
	line-height: 80px;
	font-family: "Zen Old Mincho", serif;
	background: #fff;
	border: none;
	caret-color: #272727;
}

textarea {
	width: 100%!important;
	min-height: 300px;
	padding: 20px 25px;
	line-height: 2;
}

input[type="text"]:focus, input[type="file"]:focus, input[type="tel"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="date"]:focus, select:focus, textarea:focus {
	border: none;
	outline: none;
}

input[type="radio"]:focus, input[type="checkbox"]:focus {
	border: solid 1px #7e7e7e;
	outline: none;
}

input[type="submit"]:focus, button:focus { outline:none; }

input::-webkit-input-placeholder {
	font-size: 1.6rem!important;
	color: #a6a6a6;
	font-weight: 400;
}

input:-ms-input-placeholder {
	font-size: 1.6rem!important;
	color: #a6a6a6;
	font-weight: 400;
}

input::-moz-placeholder {
	font-size: 1.6rem!important;
	color: #a6a6a6;
	font-weight: 400;
}

textarea::-webkit-input-placeholder {
	font-size: 1.6rem!important;
	color: #a6a6a6;
	font-weight: 400;
}

textarea:-ms-input-placeholder {
	font-size: 1.6rem!important;
	color: #a6a6a6;
	font-weight: 400;
}

textarea::-moz-placeholder {
	font-size: 1.6rem!important;
	color: #a6a6a6;
	font-weight: 400;
}

label { display:block; box-sizing:border-box; width:100%; cursor:pointer; }

/* ▼original select date▼ */
select::-ms-expand { display:none; }

.select_box, .date_box {
	position: relative;
}

select {
	line-height: 78px;
}

.select_box:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 30px;
	width: 8px;
	height: 8px;
	margin-top: -6px;
	border-top: 1px solid #272727;
	border-right: 1px solid #272727;
	transform: rotate(135deg);
	z-index: 10;
}
/*
.date_box:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 15px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
	background: url(../common_img/icon_date.png) no-repeat;
	z-index: 10;
}
*/
.select_list {
	display: flex;
	align-items: flex-start;
}

.select_list.line_2 .parts_input { width:calc((100% - 60px) / 2); }
.select_list.line_3 .parts_input { width:calc((100% - 120px) / 3); }

.select_list .parts {
	display: block;
	width: 60px;
	text-align: center;
	line-height: 80px;
}

/* ▼original radio checkbox▼ */
input[type="radio"], input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	position: relative;
	width: 28px;
	height: 28px;
	margin: 0 15px 0 0;
	vertical-align: middle;
	background: #fff;
	border: solid 1px #7e7e7e;
	border-radius: 0;
	overflow: hidden;
	transform: translateY(1px);
	cursor: pointer;
}

input[type="radio"] {
	border-radius: 50%;
}

input[type="radio"]:after, input[type="checkbox"]:after {
	display: block;
	content: '';
	position: absolute;
	opacity: 0;
}

input[type="radio"]:after {
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	background: #3f0a82;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

input[type="checkbox"]:after {
	top: -1px;
	left: -1px;
	width: 28px;
	height: 28px;
	background: url(../images/icon_check.png) center center / 28px no-repeat;
}

.radio_list label.active input[type="radio"]:after, input[type="checkbox"]:checked:after { opacity:1; }

.radio_list, .chk_list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.radio_list.pc_row, .chk_list.pc_row { flex-direction:column; }

.radio_list li label, .chk_list li label {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	height: 80px;
	padding: 0 40px 2px 25px;
	color: #03080a;
	white-space: nowrap;
	background: #fff;
}

.radio_list li label.active, .chk_list li label.active {
	color: #fff;
	background: #3f0a82;
}
