@charset "utf-8";

/*
GLOBAL
***************************************************************************/
html {
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	width: 100%;
	height: 100%;
	text-align: left;
	font-style: normal;
	font-size: calc((100vw / 375) * 14);
	font-weight: 500;
	color: #000;
	line-height: 2;
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.125rem;
	background: #fff;
	caret-color: transparent;
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.form_complete {
	min-heihgt: 100vh;
	background: #ecf2f2;
}

.base_box { position:relative; z-index:5; }

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

/*
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: 900;
	line-height: 1.5;
	letter-spacing: 0.15rem;
}

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

iframe { border:none; }

li {
	list-style-type: none;
}

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

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

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

a.normal_link {
	font-weight: 700;
	color: #2fcaae;
	text-decoration: underline;
}

a.txt_link {
	display: inline-block;
	position: relative;
	color: #2fcaae;
}

a.txt_link::before {
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background: #2fcaae;
}

a.icon_link { margin:0 calc((100vw / 375) * 3); }

a::before, a::after, button::before, button::after {
	content: '';
	position: absolute;
	transition: .3s;
}

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

@media screen and (min-width: 750px){

	img, input[type="image"] {
		width: 100%;
	}

}

button, input[type="submit"] {
	padding: 0;
	vertical-align: middle;
	font-family: "Noto Sans JP", sans-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; }

/* ▼BR▼ */
@media screen and (min-width: 480px){

	.landscape { display:block; }
	.portrait { display:none; }

}

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

	.landscape { display:none; }
	.portrait { display:block; }

}

/*
HEADER
***************************************************************************/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: calc((100vw / 375) * 10) calc((100vw / 375) * 45) 0 calc((100vw / 375) * 10);
	z-index: 50;
}

header .base_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header .logo {
	width: calc((100vw / 375) * 130);
	margin-top: calc((100vw / 375) * 2);
}

.hnavi_list { display:none; }

header .btn {
	width: calc((100vw / 375) * 180);
}

header .btn02 {
	font-size: calc((100vw / 375) * 10);
	font-weight: 700;
	line-height: calc((100vw / 375) * 32);
	letter-spacing: 0.05rem;
}

header .btn .arrow .parts { display:none; }

.btn_gnavi {
	position: fixed;
	top: calc((100vw / 375) * 10);
	right: calc((100vw / 375) * 8);
	width: calc((100vw / 375) * 32);
	height: calc((100vw / 375) * 32);
	background: url(../common_img/btn_gnavi.png) center center / calc((100vw / 375) * 32) no-repeat;
	z-index: 1000;
}

/*
NAVI
***************************************************************************/
#gnavi {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding: calc((100vw / 375) * 10) calc((100vw / 375) * 20) calc((100vw / 375) * 50);
	background: #fff;
	overflow-y: auto;
	z-index: 1001;
}

#gnavi .gnavi_close {
	position: fixed;
	top: calc((100vw / 375) * 10);
	right: calc((100vw / 375) * 8);
	width: calc((100vw / 375) * 32);
	height: calc((100vw / 375) * 32);
	background: url(../common_img/btn_close.png) center center / calc((100vw / 375) * 32) no-repeat;
}

#gnavi .logo {
	width: calc((100vw / 375) * 130);
	margin-top: calc((100vw / 375) * 2);
	margin-bottom: calc((100vw / 375) * 50);
	transform: translateX(calc((100vw / 375) * -10));
}

.gnavi_list {
	padding-bottom: calc((100vw / 375) * 35);
}

.gnavi_list li a {
	display: block;
	text-align: center;
	font-size: calc((100vw / 375) * 14);
	font-weight: 700;
	color: #000;
	line-height: calc((100vw / 375) * 60);
}

#gnavi .btn02 {
	padding-right: calc((100vw / 375) * 10);
	font-weight: 700;
}

/*
CONTENTS
***************************************************************************/
#contents {
	position: relative;
	z-index: 1;
}

#contents .contents_inner {
	position: relative;
	padding: 0 calc((100vw / 375) * 20);
	background: #fff;
}

#contents .contents_inner > .tel_box {
	position: absolute;
	top: calc((100vw / 375) * -50);
	left: calc((100vw / 375) * 20);
	width: calc(100% - ((100vw / 375) * 40));
	z-index: 10;
}

/* ▼PAGE TITLE▼ */
#page_title {
	position: relative;
	width: 100vw;
	height: calc((100vw / 375) * 300);
	background: #ecf2f2 url(../common_img/sp/ptitle_bg.png) center top / cover no-repeat;
}

#page_title .base_box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: calc((100vw / 375) * 300);
	padding: 0 calc((100vw / 375) * 20);
	transform: translateY(calc((100vw / 375) * -10));
}

#page_title .eng_title {
	margin-bottom: calc((100vw / 375) * 5);
}

#page_title .title {
	font-size: calc((100vw / 375) * 26);
}

#page_title .article_date {
	margin-bottom: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 13);
	font-weight: 900;
	color: #2fcaae;
	font-family: "Source Code Pro", monospace;
	letter-spacing: -0.05rem;
}

#page_title .article_title {
	font-size: calc((100vw / 375) * 17);
	line-height: 1.45;
}

/* ▼PAGE NAVI▼ */
.pnavi {
	padding: calc((100vw / 375) * 15) 0 calc((100vw / 375) * 15) calc((100vw / 375) * 25);
	background: #151d1c;
	border-bottom: solid 1px #2e3736;
}

.pnavi ul {
	display: flex;
	flex-wrap: wrap;
}

.pnavi li {
	position: relative;
	margin-right: calc((100vw / 375) * 5);
	padding-right: calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 11);
	font-weight: 400;
	color: #63706e;
	letter-spacing: 0.1rem;
}

.pnavi li a { color:#808c8a; text-decoration:underline; }

.pnavi li::after {
	content: '/';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.pnavi li:last-child::after { display:none; }

/* ▼PAGE LIST▼ */
.page_list ul {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.page_list li a,
.page_list li .current {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
	width: calc((100vw / 375) * 30);
	height: calc((100vw / 375) * 30);
	margin: 0 calc((100vw / 375) * 8);
	font-size: calc((100vw / 375) * 16);
	font-weight: 500;
	color: #000;
	font-family: "Lexend Deca", sans-serif;
}

.page_list li .current::after {
	content: '';
	position: absolute;
	bottom: calc((100vw / 375) * -5);
	left: 50%;
	width: calc((100vw / 375) * 20);
	height: calc((100vw / 375) * 3);
	background: #2fcaae;
	border-radius: 360px;
	transform: translateX(-50%);
}

.page_list li.prev a, .page_list li.next a {
	position: absolute;
	top: 50%;
	margin: 0;
	background-color: #000;
	background-image: url(../common_img/arrow_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 12);
	border-radius: 50%;
	transform: translateY(-50%);
}

.page_list li.prev a { left:0; transform:translateY(-50%) rotate(-180deg); }
.page_list li.next a { right:0; }

.page_list li.prev a span, .page_list li.next a span { display:none; }

/* ▼TEL▼ */
.tel_box {
	position: relative;
	padding: calc((100vw / 375) * 18) calc((100vw / 375) * 15) calc((100vw / 375) * 10);
	color: #fff;
	letter-spacing: 0.05rem;
	background-image: linear-gradient(270deg, #2167db, #2fcaae);
	border-radius: calc((100vw / 375) * 25);
	box-shadow: 0 0 calc((100vw / 375) * 20) calc((100vw / 375) * 5) rgba(47,202,174,0.2);
}

.tel_box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../common_img/bg_dot.png) left top / calc((100vw / 375) * 4) repeat;
	border-radius: calc((100vw / 375) * 25);
}

.tel_box a { color:#fff; }

.tel_box .head {
	position: absolute;
	top: calc((100vw / 375) * -13);
	left: 50%;
	width: calc((100vw / 375) * 105);
	text-align: center;
	font-size: calc((100vw / 375) * 11);
	font-weight: 600;
	line-height: calc((100vw / 375) * 26);
	background: #000;
	border-radius: 360px;
	transform: translateX(-50%);
	z-index: 5;
}

.tel_box dl {
	display: flex;
	align-items: center;
	position: relative;
	padding-bottom: calc((100vw / 375) * 10);
	border-bottom: solid 1px #fff;
	z-index: 5;
}

.tel_box dt {
	width: calc((100vw / 375) * 75);
	text-align: center;
	font-size: calc((100vw / 375) * 11);
	font-weight: 600;
	line-height: 1.45;
}

.tel_box dd {
	width: calc(100% - ((100vw / 375) * 75));
	text-align: center;
	font-size: calc((100vw / 375) * 36);
	font-weight: 300;
	line-height: 1;
	font-family: "Lexend Deca", sans-serif;
	letter-spacing: 0;
}

.tel_box ul {
	position: relative;
	text-align: center;
	padding-top: calc((100vw / 375) * 8);
	font-size: calc((100vw / 375) * 11);
	z-index: 5;
}

.tel_box li {
	display: inline-block;
	margin: 0 calc((100vw / 375) * 6);
	font-weight: 500;
}

/*
TOP
***************************************************************************/
/* ▼TOPIMG▼ */
#topimg {
	position: relative;
	padding: calc((100vw / 375) * 410) calc((100vw / 375) * 20) calc((100vw / 375) * 30);
	background: url(../images/sp/topimg_bg.jpg) center bottom / cover no-repeat;
}

#topimg .txt {
	margin: calc((100vw / 375) * 5) 0 calc((100vw / 375) * 30);
	font-size: calc((100vw / 375) * 11);
	line-height: 1.7;
	letter-spacing: 0.075rem;
}

#topimg .btn_scroll { display:none; }

/* ▼OVERVIEW▼ */
.top_overview {
	margin-bottom: calc((100vw / 375) * 60);
	padding: calc((100vw / 375) * 90) calc((100vw / 375) * 20) 0;
	background: url(../images/sp/overview_bg.jpg) center top / 100% no-repeat;
}

.top_overview .img {
	margin-bottom: calc((100vw / 375) * 25);
}

.top_overview .txt {
	margin-bottom: calc((100vw / 375) * 45);
}

.top_overview .btn {
	position: relative;
}

.top_overview .btn .head {
	position: absolute;
	top: calc((100vw / 375) * -15);
	left: 50%;
	width: calc((100vw / 375) * 210);
	text-align: center;
	font-size: calc((100vw / 375) * 12);
	font-weight: 600;
	color: #fff;
	line-height: calc((100vw / 375) * 28);
	letter-spacing: 0.05rem;
	background: #000;
	border-radius: 360px;
	transform: translateX(-50%);
	z-index: 5;
}

.top_overview .btn .btn01 {
	flex-direction: column;
	height: calc((100vw / 375) * 110);
	font-size: calc((100vw / 375) * 20);
	font-weight: 700;
	line-height: 1.35;
}

.top_overview .btn .btn01 > .cover {
	padding-top: calc((100vw / 375) * 22);
}

.top_overview .btn .sub {
	display: block;
	margin-top: calc((100vw / 375) * 6);
	font-size: calc((100vw / 375) * 9);
	font-weight: 400;
	letter-spacing: 0.05rem;
}

/* ▼PERFORMANCE▼ */
.top_performance {
	min-height: calc((100vw / 375) * 1260);
	padding: calc((100vw / 375) * 105) calc((100vw / 375) * 20) calc((100vw / 375) * 90);
	font-weight: 400;
	color: #fff;
	background: url(../images/sp/performance_bg.jpg) center top / cover no-repeat;
}

.top_performance .eng_title {
	color: #fff;
}

.top_performance .list {
	margin-bottom: calc((100vw / 375) * 20);
}

.top_performance .note_list > li {
	color: #fff;
}

/* ▼VALUE▼ */
.top_value {
	padding-top: calc((100vw / 375) * 65);
	background: url(../images/sp/value_bg.jpg) center top / 100% no-repeat;
}

.top_value .title_box {
	margin: 0 calc((100vw / 375) * 20);
	padding-bottom: calc((100vw / 375) * 65);
}

.top_value .sec_inner {
	position: relative;
	padding: 0 calc((100vw / 375) * 20);
}

.top_value .sec_inner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: #ecf2f2;
}

.top_value .box {
	position: relative;
	padding: calc((100vw / 375) * 200) calc((100vw / 375) * 10) calc((100vw / 375) * 45) calc((100vw / 375) * 25);
	letter-spacing: 0.1rem;
	background: #ecf2f2;
	border-radius: calc((100vw / 375) * 50);
}

.top_value .box:nth-child(2n) {
	padding: calc((100vw / 375) * 250) calc((100vw / 375) * 25) calc((100vw / 375) * 70) calc((100vw / 375) * 10);
	background: #fff;
}

.top_value .box .img {
	position: absolute;
	left: calc((100vw / 375) * 25);
	width: calc((100vw / 375) * 300);
	z-index: 10;
}

.top_value .box:nth-child(1) .img { top:calc((100vw / 375) * -65); }
.top_value .box:nth-child(2) .img { top:calc((100vw / 375) * -40); }
.top_value .box:nth-child(3) .img { top:calc((100vw / 375) * -60); }

.top_value .box .title {
	margin-bottom: calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 21);
	font-weight: 600;
	line-height: 1.6;
}

/* ▼EFFECT▼ */
.top_effect {
	padding-top: calc((100vw / 375) * 60);
	background: url(../images/sp/effect_bg.jpg) center top / 100% no-repeat;
}

.top_effect .title_box {
	margin: 0 calc((100vw / 375) * 20);
	padding-bottom: calc((100vw / 375) * 10);
}

.top_effect .sec_inner {
	position: relative;
	z-index: 10;
}

.top_effect .box.before {
	position: relative;
	padding: 0 calc((100vw / 375) * 10);
}

.top_effect .box.before::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc((100vw / 375) * 200);
	background: #2fcaae;
	z-index: 0;
}

.top_effect .box.after {
	padding: calc((100vw / 375) * 75) calc((100vw / 375) * 30) calc((100vw / 375) * 60);
	background: #2fcaae;
}

.top_effect .box.before .box_inner {
	position: relative;
	padding: calc((100vw / 375) * 40) calc((100vw / 375) * 20) calc((100vw / 375) * 20);
	background: #ecf2f2;
	border-radius: calc((100vw / 375) * 50);
}

.top_effect .box.before .box_inner::before {
	content: '';
	position: absolute;
	top: calc((100vw / 375) * -180);
	right: calc((100vw / 375) * -10);
	width: calc((100vw / 375) * 150);
	height: calc((100vw / 375) * 220);
	background: url(../images/sp/effect_parts.png) center center / calc((100vw / 375) * 150) no-repeat;
}

.top_effect .box.before .box_inner::after {
	content: '';
	position: absolute;
	bottom: calc((100vw / 375) * -50);
	left: 50%;
	width: calc((100vw / 375) * 150);
	height: calc((100vw / 375) * 50);
	background: url(../common_img/down_gray.png) center center / calc((100vw / 375) * 150) no-repeat;
	transform: translateX(-50%);
	z-index: 5;
}

.top_effect .box .head {
	position: relative;
	width: calc((100vw / 375) * 130);
	margin: 0 auto calc((100vw / 375) * 25);
	padding-bottom: calc((100vw / 375) * 2);
	text-align: center;
	font-size: calc((100vw / 375) * 22);
	font-weight: 700;
	color: #fff;
	line-height: calc((100vw / 375) * 40);
	font-family: "Source Code Pro", monospace;
	letter-spacing: 0;
	background: #000;
	border-radius: 360px;
}

.top_effect .box .head::after {
	content: '';
	position: absolute;
	bottom: calc((100vw / 375) * -10);
	left: 50%;
	width: calc((100vw / 375) * 10);
	height: calc((100vw / 375) * 10);
	background: #000;
	clip-path: polygon(0 0, 100% 0, 100% 100%);
	transform: translateX(-50%);
}

.top_effect .box .head_title {
	margin-bottom: calc((100vw / 375) * 25);
	text-align: center;
	font-size: calc((100vw / 375) * 21);
	font-weight: 500;
	line-height: 1.55;
	letter-spacing: 0.15rem;
}

.top_effect .box.after .head_title { color:#fff; }

.top_effect .box .head_txt {
	margin-bottom: calc((100vw / 375) * 40);
	text-align: center;
}

.top_effect .box .cycle {
	margin-bottom: calc((100vw / 375) * 40);
}

.top_effect .box .cycle .title {
	position: relative;
	margin-bottom: calc((100vw / 375) * 10);
	text-align: center;
	letter-spacing: 0.1rem;
}

.top_effect .box .cycle .title::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	margin-top: -0.5px;
}

.top_effect .box.before .cycle .title::before { background:#c1cccc; }
.top_effect .box.after .cycle .title::before { background:#fff; }

.top_effect .box .cycle .title span {
	display: inline-block;
	position: relative;
	padding: 0 calc((100vw / 375) * 30);
	font-size: calc((100vw / 375) * 16);
	line-height: calc((100vw / 375) * 40);
	border-radius: 360px;
	z-index: 5;
}

.top_effect .box.before .cycle .title span {
	font-weight: 700;
	background: #c1cccc;
}

.top_effect .box.after .cycle .title span {
	font-weight: 900;
	color: #2fcaae;
	background: #fff;
}

.top_effect .box .cycle .list .list_arrow {
	width: calc((100vw / 375) * 36);
	height: calc((100vw / 375) * 26);
	margin: calc((100vw / 375) * 20) auto calc((100vw / 375) * 15);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 36);
	transform: rotate(90deg);
}

.top_effect .box.before .cycle .list .list_arrow { background-image:url(../common_img/arrow_green.png); }
.top_effect .box.after .cycle .list .list_arrow { background-image:url(../common_img/arrow_white.png); }

.top_effect .box .cycle .list dl {
	text-align: center;
}

.top_effect .box .cycle .list dd {
	font-size: calc((100vw / 375) * 18);
	line-height: 1.75;
}

.top_effect .box.before .cycle .list dd {
	margin-top: calc((100vw / 375) * 10);
	font-weight: 900;
}

.top_effect .box.after .cycle .list dd {
	margin-top: calc((100vw / 375) * 20);
	font-weight: 700;
	color: #fff;
}

.top_effect .box .message {
	position: relative;
	padding: calc((100vw / 375) * 40) calc((100vw / 375) * 25) calc((100vw / 375) * 45);
	border-radius: calc((100vw / 375) * 50);
}

.top_effect .box.before .message {
	color: #fff;
	background: #282f2f;
}

.top_effect .box.after .message {
	background: #fff;
}

.top_effect .box .message::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../common_img/bg_dot.png) left top / calc((100vw / 375) * 4) repeat;
	border-radius: calc((100vw / 375) * 50);
}

.top_effect .box .message .title {
	position: relative;
	margin-bottom: calc((100vw / 375) * 30);
	text-align: center;
	font-size: calc((100vw / 375) * 23);
	font-weight: 400;
	line-height: 1.55;
	z-index: 1;
}

.top_effect .box .message ul {
	position: relative;
	z-index: 1;
}

.top_effect .box .message li {
	margin-bottom: calc((100vw / 375) * 20);
	padding-left: calc((100vw / 375) * 25);
	font-size: calc((100vw / 375) * 16);
	line-height: 1.75;
	background-position: left calc((100vw / 375) * 6);
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 16);
}

.top_effect .box .message li:last-child { margin-bottom:0; }

.top_effect .box.before .message li { font-weight:600; background-image:url(../common_img/icon_chk_red.png); }
.top_effect .box.after .message li { font-weight:700; background-image:url(../common_img/icon_chk_green.png); }

/* ▼SERVICE▼ */
.top_service {
	padding: calc((100vw / 375) * 65) calc((100vw / 375) * 20) 0;
	background: #ecf2f2 url(../images/sp/service_bg.jpg) center top / 100% no-repeat;
}

.top_service .cat {
	padding-bottom: calc((100vw / 375) * 40);
}

.top_service .cat:last-child { padding-bottom:0; }

.top_service .cat_title {
	position: relative;
	margin-bottom: calc((100vw / 375) * 25);
	font-size: calc((100vw / 375) * 18);
	font-weight: 900;
	line-height: calc((100vw / 375) * 30);
	font-family: "Source Code Pro", monospace;
	letter-spacing: 0.05rem;
}

.top_service .cat_title::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #000;
}

.top_service .cat_title > span {
	display: inline-block;
	position: relative;
	padding-right: calc((100vw / 375) * 10);
	background: #ecf2f2;
	z-index: 5;
}

.top_service .lbox {
	margin-bottom: calc((100vw / 375) * 40);
}

.top_service .lbox:last-child { margin-bottom:0; }

.top_service .mbox {
	margin-bottom: calc((100vw / 375) * 20);
	padding: calc((100vw / 375) * 20) calc((100vw / 375) * 20) calc((100vw / 375) * 30);
	line-height: 1.85;
	background: #fff;
	border-radius: calc((100vw / 375) * 15);
}

.top_service .mbox:last-child { margin-bottom:0; }

.top_service .sbox {
	display: flex;
	margin-bottom: calc((100vw / 375) * 20);
	padding: calc((100vw / 375) * 30) calc((100vw / 375) * 20);
	line-height: 1.75;
	background: #fff;
	border-radius: calc((100vw / 375) * 15);
}

.top_service .sbox:last-child { margin-bottom:0; }

.top_service .lbox .img {
	margin-bottom: calc((100vw / 375) * 15);
}

.top_service .mbox .img {
	width: calc((100vw / 375) * 200);
	margin: 0 auto calc((100vw / 375) * 10);
}

.top_service .sbox .img {
	width: calc((100vw / 375) * 90);
}

.top_service .sbox .content {
	width: calc(100% - ((100vw / 375) * 90));
	padding-left: calc((100vw / 375) * 20);
}

.top_service .title {
	position: relative;
	line-height: 1.5;
}

.top_service .title::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: calc((100vw / 375) * 6);
	height: 100%;
	background: #2fcaae;
	border-radius: 360px;
}

.top_service .lbox .title {
	margin-bottom: calc((100vw / 375) * 15);
	padding: calc((100vw / 375) * 5) 0 calc((100vw / 375) * 5) calc((100vw / 375) * 20);
	font-size: calc((100vw / 375) * 21);
	font-weight: 500;
}

.top_service .mbox .title {
	margin-bottom: calc((100vw / 375) * 15);
	padding: calc((100vw / 375) * 5) 0 calc((100vw / 375) * 5) calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 19);
	font-weight: 700;
	letter-spacing: 0.125rem;
}

.top_service .sbox .title {
	margin-bottom: calc((100vw / 375) * 15);
	padding: calc((100vw / 375) * 5) 0 calc((100vw / 375) * 5) calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 18);
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0.1rem;
}

/* ▼PROMISE▼ */
.top_promise {
	padding: calc((100vw / 375) * 70) calc((100vw / 375) * 20) calc((100vw / 375) * 45);
	background: url(../images/sp/promise_bg.jpg) center top / 100% no-repeat;
}

.top_promise .sec_title {
	margin-bottom: calc((100vw / 375) * 15);
}

.top_promise .box {
	margin-bottom: calc((100vw / 375) * 25);
}

.top_promise .box:last-child { margin-bottom:0; }

.top_promise .box .title {
	margin: calc((100vw / 375) * 15) 0 calc((100vw / 375) * 20);
	text-align: center;
	font-size: calc((100vw / 375) * 20);
	font-weight: 500;
	letter-spacing: 0.1rem;
}

.top_promise .box .title .bold { font-weight:700!important; }

/* ▼FLOW▼ */
.top_flow {
	position: relative;
	padding: calc((100vw / 375) * 40) calc((100vw / 375) * 20) calc((100vw / 375) * 60);
	background: url(../images/sp/flow_bg.jpg) center top / 100% no-repeat;
}

.top_flow::after {
	content: '';
	position: absolute;
	bottom: calc((100vw / 375) * -50);
	left: 50%;
	width: calc((100vw / 375) * 150);
	height: calc((100vw / 375) * 50);
	background: url(../common_img/down_white.png) center center / calc((100vw / 375) * 150) no-repeat;
	transform: translateX(-50%);
	z-index: 5;
}

.top_flow .sec_title {
	margin-bottom: calc((100vw / 375) * 35);
}

.top_flow .sec_inner {
	position: relative;
}

.top_flow .sec_inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	width: calc((100vw / 375) * 2);
	height: 100%;
	margin-left: -1px;
	background: #c1cccc;
}

.top_flow .box {
	position: relative;
	margin-bottom: calc((100vw / 375) * 30);
	padding: calc((100vw / 375) * 25) calc((100vw / 375) * 25) calc((100vw / 375) * 35);
	letter-spacing: 0.1rem;
	background: #fff;
	border-radius: calc((100vw / 375) * 15);
	box-shadow: 0 0 calc((100vw / 375) * 20) calc((100vw / 375) * 5) rgba(47,202,174,0.2);
	z-index: 5;
}

.top_flow .box:last-child { margin-bottom:0; }

.top_flow .box::before {
	content: '';
	position: absolute;
	top: calc((100vw / 375) * -3);
	left: calc((100vw / 375) * 25);
	width: calc((100vw / 375) * 115);
	height: calc((100vw / 375) * 6);
	background: #2fcaae;
	border-radius: 360px;
}

.top_flow .box .title_box {
	display: flex;
	align-items: center;
	margin-bottom: calc((100vw / 375) * 15);
}

.top_flow .box .num {
	width: calc((100vw / 375) * 120);
	text-align: center;
	font-size: calc((100vw / 375) * 100);
	font-weight: 300;
	color: #2fcaae;
	line-height: 1;
	font-family: "Lexend Deca", sans-serif;
	letter-spacing: -0.2rem;
	transform: translateY(calc((100vw / 375) * -5));
}

.top_flow .box .title {
	width: calc(100% - ((100vw / 375) * 120));
	padding-left: calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 20);
	letter-spacing: 0.1rem;
}

.top_flow .box .note_list {
	margin-top: calc((100vw / 375) * 15);
}

/* ▼SCHEDULE▼ */
.top_schedule {
	padding: calc((100vw / 375) * 60) calc((100vw / 375) * 20);
	background: #ecf2f2;
}

.top_schedule .title_box {
	text-align: center;
}

.top_schedule .sec_title .sub {
	font-size: calc((100vw / 375) * 18);
}

.top_schedule .sec_title .jump_txt {
	display: inline-block;
	position: relative;
	padding: 0 calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 17);
	font-weight: 700;
	line-height: calc((100vw / 375) * 20);
	letter-spacing: 0.1rem;
}

.top_schedule .sec_title .jump_txt::before, .top_schedule .sec_title .jump_txt::after {
	content: '';
	position: absolute;
	top: 0;
	width: 1px;
	height: 100%;
	background: #000;
}

.top_schedule .sec_title .jump_txt::before { left:0; transform:rotate(-30deg); }
.top_schedule .sec_title .jump_txt::after { right:0; transform:rotate(30deg); }

.top_schedule .box {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
}

.top_schedule .box .title {
	position: relative;
	width: calc((100vw / 375) * 65);
	min-height: calc((100vw / 375) * 250);
	text-align: center;
	font-size: calc((100vw / 375) * 20);
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1rem;
}

.top_schedule .box:nth-child(3) .title, .top_schedule .box:nth-child(5) .title { min-height:calc((100vw / 375) * 200); }

.top_schedule .box:nth-child(1) .title { background:#2fcaae; }
.top_schedule .box:nth-child(2) .title { background:#1bbcba; }
.top_schedule .box:nth-child(3) .title { background:#249dd5; }
.top_schedule .box:nth-child(4) .title { background:#2484d5; }
.top_schedule .box:nth-child(5) .title { background:#2167db; }

.top_schedule .box .title::before {
	content: '';
	position: absolute;
	top: -1px;
	left: 0;
	width: 100%;
	height: calc((100vw / 375) * 15);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	z-index: 1;
}

.top_schedule .box:nth-child(1) .title::before { display:none; }
.top_schedule .box:nth-child(2) .title::before { background:#2fcaae; }
.top_schedule .box:nth-child(3) .title::before { background:#1bbcba; }
.top_schedule .box:nth-child(4) .title::before { background:#249dd5; }
.top_schedule .box:nth-child(5) .title::before { background:#2484d5; }

.top_schedule .box .title > span {
	position: absolute;
	top: 50%;
	left: 50%;
	writing-mode: vertical-rl;
	white-space: nowrap;
	transform: translate(-50%, -50%);
}

.top_schedule .box .inner {
	width: calc((100vw / 375) * 260);
}

.top_schedule .box .day { display:none; }

.top_schedule .box .content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: calc(100% - ((100vw / 375) * 30));
	margin-top: calc((100vw / 375) * 15);
	padding: calc((100vw / 375) * 20) calc((100vw / 375) * 20) calc((100vw / 375) * 25);
	letter-spacing: 0.1rem;
	background: #fff;
	border-radius: calc((100vw / 375) * 15);
}

.top_schedule .box .txt {
	display: flex;
	align-items: center;
	margin-bottom: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 17);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.top_schedule .box:nth-child(1) .txt { color:#2fcaae; }
.top_schedule .box:nth-child(2) .txt { color:#1bbcba; }
.top_schedule .box:nth-child(3) .txt { color:#249dd5; }
.top_schedule .box:nth-child(4) .txt { color:#2484d5; }
.top_schedule .box:nth-child(5) .txt { color:#2167db; }

.top_schedule .box .txt .num {
	display: flex;
	align-items: center;
	margin-left: calc((100vw / 375) * 2);
	font-size: calc((100vw / 375) * 42);
	font-weight: 300;
	font-family: "Lexend Deca", sans-serif;
	transform: translateY(calc((100vw / 375) * -5));
}

.top_schedule .box .txt .between {
	display: inline-block;
	margin: 0 calc((100vw / 375) * 2);
	padding-top: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 17);
	font-weight: 900;
	font-family: "Noto Sans JP", sans-serif;
}

/* ▼SIMULATION▼ */
.top_simulation {
	position: relative;
	padding-left: calc((100vw / 375) * 20);
	background: #ecf2f2;
}

.top_simulation::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: calc((100vw / 375) * 220);
	background: #fff;
	z-index: 1;
}

.top_simulation .base_box {
	padding: calc((100vw / 375) * 50) calc((100vw / 375) * 20) calc((100vw / 375) * 60);
	background: #e3ebeb url(../images/sp/simulation_bg.png) center top / 100% no-repeat;
	border-radius: calc((100vw / 375) * 50) 0 0 calc((100vw / 375) * 50);
}

.top_simulation .eng_title {
	text-align: center;
}

.top_simulation .sec_title {
	text-align: center;
}

.top_simulation .sec_txt {
	margin-bottom: calc((100vw / 375) * 25);
	text-align: center;
}

.top_simulation .sec_txt .sub {
	display: block;
	margin-top: calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 11);
	letter-spacing: 0.1rem;
}

.top_simulation .btn01, #simulation_sec .btn01 {
	height: calc((100vw / 375) * 70);
	font-size: calc((100vw / 375) * 16);
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.1rem;
}

.top_simulation .mail_box .input {
	margin-bottom: calc((100vw / 375) * 20);
}

#simulation_sec {
	display: none;
	padding-top: calc((100vw / 375) * 50);
}

#simulation_sec.confirm, #simulation_sec.complete {
	display: block;
	padding: calc((100vw / 375) * 50) calc((100vw / 375) * 20) calc((100vw / 375) * 60);
	background: #ecf2f2;
}

#simulation_sec .title {
	margin-bottom: calc((100vw / 375) * 25);
	text-align: center;
	font-size: calc((100vw / 375) * 22);
	font-weight: 600;
	letter-spacing: 0.125rem;
}

#simulation_sec .txt {
	margin-bottom: calc((100vw / 375) * 15);
	text-align: center;
	letter-spacing: 0.1rem;
}

#simulation_sec.confirm .txt, #simulation_sec.complete .txt {
	margin-bottom: calc((100vw / 375) * 30);
}

#simulation_sec.complete .txt { text-align:left; }

#simulation_sec .must_txt {
	margin-bottom: calc((100vw / 375) * 10);
	text-align: center;
	letter-spacing: 0.1rem;
}

#simulation_sec .must_txt span {
	display: inline-block;
	width: calc((100vw / 375) * 10);
	height: calc((100vw / 375) * 10);
	margin-right: calc((100vw / 375) * 5);
	vertical-align: middle;
	background: #2fcaae;
	border-radius: 50%;
}

.simulation_error {
	margin-bottom: calc((100vw / 375) * 30);
	padding: calc((100vw / 375) * 30) calc((100vw / 375) * 25);
	text-align: center;
	font-size: calc((100vw / 375) * 13);
	font-weight: 700;
	color: #2fcaae;
	letter-spacing: 0.1rem;
	background: #fff;
	border-radius: calc((100vw / 375) * 15);
}

#simulation_result {
	position: relative;
	margin-top: calc((100vw / 375) * 55);
	padding: calc((100vw / 375) * 35) calc((100vw / 375) * 20);
	text-align: center;
	background: #fff;
	border-radius: calc((100vw / 375) * 15);
}

#simulation_result::after {
	content: '';
	position: absolute;
	bottom: calc((100vw / 375) * -50);
	left: 50%;
	width: calc((100vw / 375) * 150);
	height: calc((100vw / 375) * 50);
	background: url(../common_img/down_white.png) center center / calc((100vw / 375) * 150) no-repeat;
	transform: translateX(-50%);
	z-index: 5;
}

#simulation_result .head {
	width: calc((100vw / 375) * 130);
	margin: 0 auto calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 16);
	font-weight: 500;
	color: #fff;
	line-height: calc((100vw / 375) * 30);
	letter-spacing: 0.1rem;
	background: #2fcaae;
	border-radius: 360px;
}

#simulation_result #tax_out {
	font-size: calc((100vw / 375) * 25);
	font-weight: 700;
	color: #2fcaae;
	line-height: 1.25;
	letter-spacing: -0.05rem;
}

#simulation_result #tax_out span {
	margin-left: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 55);
	font-weight: 500;
	line-height: 1;
	font-family: "Lexend Deca", sans-serif;
}

#simulation_result #tax_in {
	margin-bottom: calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 11);
	font-weight: 700;
	color: #2fcaae;
	letter-spacing: 0;
}

#simulation_result #tax_in span {
	vertical-align: -1px;
	font-size: calc((100vw / 375) * 15);
	font-weight: 500;
	font-family: "Lexend Deca", sans-serif;
}

#simulation_result .note_list {
	margin-bottom: calc((100vw / 375) * 20);
	text-align: left;
}

.form_sec {
	padding-top: calc((100vw / 375) * 70);
}

/* ▼NEWS▼ */
.top_news {
	background: url(../images/sp/news_bg.jpg) center top / 100% no-repeat;
}

.top_column, .top_info {
	padding: calc((100vw / 375) * 60) calc((100vw / 375) * 20);
}

.top_info { background:#ecf2f2; }

.top_column .sec_title {
	margin-bottom: calc((100vw / 375) * 35);
}

.top_info .sec_title {
	margin-bottom: calc((100vw / 375) * 5);
}

.top_news .link {
	display: flex;
	justify-content: flex-end;
	margin-top: calc((100vw / 375) * 30);
	text-align: right;
}

.top_news .link a {
	position: relative;
	padding-right: calc((100vw / 375) * 60);
	font-size: calc((100vw / 375) * 20);
	font-weight: 900;
	color: #000;
	line-height: calc((100vw / 375) * 50);
	font-family: "Source Code Pro", monospace;
	letter-spacing: 0;
}

.top_news .link a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: calc((100vw / 375) * 50);
	height: calc((100vw / 375) * 50);
	background-color: #000;
	background-image: url(../common_img/arrow_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 18);
	border-radius: 50%;
	transform: translateY(-50%);
}

.top_news .column_list .box {
	margin-bottom: 0;
}

/*
INFO
***************************************************************************/
/* ▼LIST▼ */
.info_sec.list {
	padding: calc((100vw / 375) * 60) 0 calc((100vw / 375) * 20);
}

.info_sec.list .info_list {
	margin-bottom: calc((100vw / 375) * 25);
}

.info_list .box {
	border-bottom: solid 1px #c3d0d0;
}

.info_list .box a {
	display: flex;
	align-items: center;
	padding: calc((100vw / 375) * 25) 0;
	color: #000;
}

.info_list .box .img {
	width: calc((100vw / 375) * 120);
	height: calc((100vw / 375) * 105);
	border-radius: calc((100vw / 375) * 15);
	overflow: hidden;
}

.info_list .box .content {
	width: calc(100% - ((100vw / 375) * 120));
	padding-left: calc((100vw / 375) * 20);
	font-size: calc((100vw / 375) * 12);
	line-height: 1.85;
}

.info_list .box .date {
	margin-bottom: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 15);
	font-weight: 900;
	color: #2fcaae;
	font-family: "Source Code Pro", monospace;
	letter-spacing: -0.05rem;
}

.info_list .box .title {
	margin-bottom: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 15);
	font-weight: 900;
	line-height: 1.65;
	letter-spacing: 0.15rem;
}

/* ▼DETAIL▼ */
.info_sec.detail {
	padding: calc((100vw / 375) * 90) 0 calc((100vw / 375) * 20);
}

/*
COLUMN
***************************************************************************/
/* ▼LIST▼ */
.column_sec.list {
	padding: calc((100vw / 375) * 90) 0 calc((100vw / 375) * 20);
}

.column_sec.list .column_list {
	padding-bottom: calc((100vw / 375) * 10);
}

.column_list .box {
	float: left;
	width: calc((100% - ((100vw / 375) * 15)) / 2);
	margin-bottom: calc((100vw / 375) * 25);
	border-bottom: solid 1px #c3d0d0;
}

.column_list .box:first-child {
	display: block;
	float: none;
	width: 100%;
	margin-bottom: calc((100vw / 375) * 35);
	border-bottom: none;
}

.column_list .box:nth-child(2n+1) { float:right; }

.column_list .box a {
	display: block;
	color: #000;
}

.column_list .box .img {
	width: 100%;
	height: calc((100vw / 375) * 90);
	border-radius: calc((100vw / 375) * 15);
	overflow: hidden;
}

.column_list .box:first-child .img {
	height: calc((100vw / 375) * 195);
}

.column_list .box .content {
	position: relative;
	padding: calc((100vw / 375) * 20) 0 calc((100vw / 375) * 25);
	font-size: calc((100vw / 375) * 12);
	line-height: 1.85;
}

.column_list .box:first-child .content {
	padding: calc((100vw / 375) * 25) 0 0;
	font-size: calc((100vw / 375) * 13);
}

.column_list .box .limit {
	display: inline-block;
	position: absolute;
	top: calc((100vw / 375) * -13);
	left: 0;
	padding: 0 calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 11);
	font-weight: 500;
	color: #fff;
	line-height: calc((100vw / 375) * 26);
	letter-spacing: 0.05rem;
	background: #000;
	border-radius: 360px;
	z-index: 5;
}

.column_list .box .title {
	margin-bottom: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 15);
	font-weight: 900;
	line-height: 1.55;
	letter-spacing: 0.15rem;
}

.column_list .box:first-child .title {
	margin-bottom: calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 16);
}

/* ▼DETAIL▼ */
.column_sec.detail {
	padding: calc((100vw / 375) * 90) 0 calc((100vw / 375) * 20);
}

/*
ARTICLE CONTENT
***************************************************************************/
.article_content {
	border-bottom: solid 1px #c3d0d0;
}

.article_content h2 {
	margin-bottom: calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 16);
}

.article_content h3 {
	margin-bottom: calc((100vw / 375) * 15);
	font-size: calc((100vw / 375) * 16);
}

.article_content > div {
	margin-bottom: calc((100vw / 375) * 30);
}

.article_content > p {
	margin: 0;
}

.article_content a { color:#2fcaae; text-decoration:underline; }

.article_content img {
	width: auto!important;
	height: auto!important;
	max-width: 100%;
	margin-bottom: calc((100vw / 375) * 30);
	clear: both;
}

.article_content .alignleft { float:left; }
.article_content .aligncenter { margin:0 auto; }
.article_content .alignright { float:right; }

.article_content img.alignleft {
	float: left;
	margin: 0 calc((100vw / 375) * 25) calc((100vw / 375) * 30) 0;
}

.article_content img.aligncenter {
	display: block;
	margin: 0 auto calc((100vw / 375) * 30);
}

.article_content img.alignright {
	float: right;
	margin: 0 0 calc((100vw / 375) * 30) calc((100vw / 375) * 25);
}

.article_content ul {
	margin-bottom: calc((100vw / 375) * 30);
	padding: calc((100vw / 375) * 25) calc((100vw / 375) * 20);
	background: #ecf2f2;
	border-radius: calc((100vw / 375) * 15);
}

.article_content li {
	position: relative;
	margin-bottom: calc((100vw / 375) * 5);
	padding-left: calc((100vw / 375) * 15);
	line-height: 1.85;
}

.article_content li:last-child { margin-bottom:0; }

.article_content li::before {
	content: '';
	position: absolute;
	top: calc((100vw / 375) * 8);
	left: 0;
	width: calc((100vw / 375) * 8);
	height: calc((100vw / 375) * 8);
	background: #2fcaae;
	border-radius: 50%;
}

/* ▼LIST▼ */
.article_list {
	margin-top: calc((100vw / 375) * 30);
}

.article_list .eng_title {
	margin-bottom: calc((100vw / 375) * 5);
	font-size: calc((100vw / 375) * 24);
}

.column_sec.detail .article_list .eng_title {
	margin-bottom: calc((100vw / 375) * 25);
}

.article_list .column_list .box:not(:first-child) {
	margin-bottom: 0;
}

/* ▼LINK▼ */
.article_link {
	display: flex;
	justify-content: flex-end;
	margin-top: calc((100vw / 375) * 25);
	text-align: right;
}

.article_link a {
	position: relative;
	padding-right: calc((100vw / 375) * 50);
	font-size: calc((100vw / 375) * 20);
	font-weight: 900;
	color: #000;
	line-height: calc((100vw / 375) * 40);
	font-family: "Source Code Pro", monospace;
	letter-spacing: 0;
}

.article_link a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: calc((100vw / 375) * 40);
	height: calc((100vw / 375) * 40);
	background-color: #000;
	background-image: url(../common_img/arrow_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 16);
	border-radius: 50%;
	transform: translateY(-50%);
}

/*
FORM
***************************************************************************/
/* ▼INPUT▼ */
.user_form {
	margin-bottom: calc((100vw / 375) * 30);
}

.user_form > dl {
	padding: calc((100vw / 375) * 20) 0 calc((100vw / 375) * 25);
	border-bottom: solid 1px #c3d0d0;
}

.user_form.conf > dl { padding:calc((100vw / 375) * 15) 0; }

.user_form > dl > dt {
	position: relative;
	margin-bottom: calc((100vw / 375) * 10);
	padding-left: calc((100vw / 375) * 15);
	font-weight: 700;
	letter-spacing: 0.075rem;
}

.user_form > dl.ex > dt { margin-bottom:calc((100vw / 375) * 12); }
.user_form.conf > dl > dt { margin-bottom:0; }

.user_form > dl > dt.must::before {
	content: '';
	position: absolute;
	top: calc((100vw / 375) * 8);
	left: 0;
	width: calc((100vw / 375) * 10);
	height: calc((100vw / 375) * 10);
	background: #2fcaae;
	border-radius: 50%;
}

.user_form > dl > dd {
	padding: 0 calc((100vw / 375) * 15);
	letter-spacing: 0.075rem;
}

.user_form > dl > dd .num_box {
	width: calc((100vw / 375) * 190);
	margin-right: calc((100vw / 375) * 10);
}

.user_form .plus_select {
	margin-bottom: calc((100vw / 375) * 10);
}

.user_form .note_list {
	margin-top: calc((100vw / 375) * 15);
}

.error_list {
	font-weight: 900;
	color: #2fcaae;
}

/* ▼PP▼ */
.pp_box {
	padding: calc((100vw / 375) * 10) calc((100vw / 375) * 20) calc((100vw / 375) * 30);
	line-height: 1.85;
	letter-spacing: 0.1rem;
	border-bottom: solid 1px #c3d0d0;
}

.pp_box .pp_title {
	margin-bottom: calc((100vw / 375) * 20);
	font-size: calc((100vw / 375) * 19);
	font-weight: 600;
	letter-spacing: 0.1rem;
}

/* ▼CHECKBOX▼ */
.chk_list.pp_check {
	padding: calc((100vw / 375) * 30) calc((100vw / 375) * 20) calc((100vw / 375) * 35);
	font-size: calc((100vw / 375) * 13);
	letter-spacing: 0.1rem;
}

/* ▼BUTTON▼ */
.form_btn {
	display: flex;
	flex-direction: column;
}

.form_btn li.send {
	order: 1;
}

.form_btn li.back {
	order: 2;
	margin-top: calc((100vw / 375) * 15);
}

.form_btn .btn03 {
	height: calc((100vw / 375) * 70);
	font-size: calc((100vw / 375) * 16);
	font-weight: 700;
	letter-spacing: 0.1rem;
}

/*
CONTACT
***************************************************************************/
.contact_sec {
	padding: calc((100vw / 375) * 80) 0 calc((100vw / 375) * 50);
	text-align: center;
	color: #fff;
	background-image: url(../images/sp/contact_bg.png);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100%;
}

#contents.top .contact_sec {
	padding: calc((100vw / 375) * 80) 0 0;
	background-color: #ecf2f2;
}

.contact_sec .sec_inner {
	position: relative;
	margin-right: calc((100vw / 375) * 20);
}

.contact_sec .sec_inner::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(0deg, #2167db, #2fcaae);
	border-radius: 0 calc((100vw / 375) * 50) calc((100vw / 375) * 50) 0;
	box-shadow: 0 0 calc((100vw / 375) * 20) calc((100vw / 375) * 5) rgba(47,202,174,0.2);
	z-index: 1;
}

.contact_sec .sec_inner::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../common_img/bg_dot.png) left top / calc((100vw / 375) * 4) repeat;
	border-radius: 0 calc((100vw / 375) * 50) calc((100vw / 375) * 50) 0;
	z-index: 2;
}

.contact_sec .base_box {
	padding: calc((100vw / 375) * 45) calc((100vw / 375) * 20) calc((100vw / 375) * 50);
	background: url(../images/sp/contact_word.png) center bottom / 100% no-repeat;
}

.contact_sec .base_box::before {
	content: '';
	position: absolute;
	top: calc((100vw / 375) * -90);
	right: calc((100vw / 375) * -20);
	width: calc((100vw / 375) * 160);
	height: calc((100vw / 375) * 160);
	background: url(../images/sp/contact_parts.png) center center / calc((100vw / 375) * 160) no-repeat;
	z-index: 5;
}

.contact_sec .eng_title {
	font-weight: 700;
	color: #fff;
}

.contact_sec .sec_title {
	font-weight: 700;
}

.contact_sec .txt {
	margin-bottom: calc((100vw / 375) * 25);
	font-weight: 400;
	line-height: 1.85;
}

.contact_sec .tel {
	margin-bottom: calc((100vw / 375) * 20);
	letter-spacing: 0.05rem;
}

.contact_sec .tel a { color:#fff; }

.contact_sec .tel .head {
	margin-bottom: calc((100vw / 375) * 10);
	text-align: center;
	font-size: calc((100vw / 375) * 12);
	font-weight: 600;
	line-height: calc((100vw / 375) * 26);
	border: solid 1px #fff;
	border-radius: 360px;
}

.contact_sec .tel dl {
	display: flex;
	align-items: center;
	position: relative;
	padding-bottom: calc((100vw / 375) * 10);
	border-bottom: solid 1px #fff;
	z-index: 5;
}

.contact_sec .tel dt {
	width: calc((100vw / 375) * 75);
	text-align: center;
	font-size: calc((100vw / 375) * 11);
	font-weight: 600;
	line-height: 1.45;
}

.contact_sec .tel dd {
	width: calc(100% - ((100vw / 375) * 75));
	text-align: center;
	font-size: calc((100vw / 375) * 36);
	font-weight: 300;
	line-height: 1;
	font-family: "Lexend Deca", sans-serif;
	letter-spacing: 0;
}

.contact_sec .tel ul {
	position: relative;
	text-align: center;
	padding-top: calc((100vw / 375) * 8);
	font-size: calc((100vw / 375) * 11);
	z-index: 5;
}

.contact_sec .tel li {
	display: inline-block;
	margin: 0 calc((100vw / 375) * 6);
	font-weight: 500;
}

.contact_sec .exam .head {
	display: inline-block;
	position: relative;
	margin-bottom: calc((100vw / 375) * 10);
	padding: 0 calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 12);
	font-weight: 600;
	line-height: calc((100vw / 375) * 20);
	letter-spacing: 0.05rem;
}

.contact_sec .exam .head::before, .contact_sec .exam .head::after {
	content: '';
	position: absolute;
	top: calc((100vw / 375) * 2);
	width: 1px;
	height: 100%;
	background: #fff;
}

.contact_sec .exam .head::before { left:0; transform:rotate(-30deg); }
.contact_sec .exam .head::after { right:0; transform:rotate(30deg); }

.contact_sec .exam .btn02 {
	flex-direction: column;
	height: calc((100vw / 375) * 110);
	font-size: calc((100vw / 375) * 20);
	font-weight: 800;
	line-height: 1.35;
	letter-spacing: 0.1rem;
}

.contact_sec .exam .btn .sub {
	display: block;
	margin-top: calc((100vw / 375) * 8);
	font-size: calc((100vw / 375) * 9);
	font-weight: 400;
	letter-spacing: 0.05rem;
}

/*
FOOTER
***************************************************************************/
footer {
	padding: calc((100vw / 375) * 40) calc((100vw / 375) * 20) calc((100vw / 375) * 30);
	color: #fff;
	background: #0c1211;
}

footer .btn01 {
	padding-right: calc((100vw / 375) * 10);
	font-weight: 700;
}

footer .head {
	padding-bottom: calc((100vw / 375) * 30);
	border-bottom: solid 1px #2e3736;
}

.f_navi {
	margin-bottom: calc((100vw / 375) * 50);
}

.fnavi_list {
	padding-bottom: calc((100vw / 375) * 40);
}

.fnavi_list li {
	float: left;
	width: 50%;
}

.fnavi_list li a {
	display: block;
	font-weight: 400;
	color: #d5d5d5;
	line-height: calc((100vw / 375) * 50);
	letter-spacing: 0.1rem;
}

.f_info {
	font-weight: 400;
	color: #878787;
	line-height: 1.85;
	letter-spacing: 0.05rem;
}

.f_info .logo {
	width: calc((100vw / 375) * 200);
	margin-bottom: calc((100vw / 375) * 25);
}

.f_info .txt {
	margin-bottom: calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 18);
	font-weight: 500;
	color: #d5d5d5;
	line-height: 1.75;
}

.f_info .txt span {
	display: block;
	font-size: calc((100vw / 375) * 11);
	letter-spacing: 0.15rem;
}

.f_info ul {
	margin-top: calc((100vw / 375) * 5);
}

.f_info li {
	font-size: calc((100vw / 375) * 12);
}

footer .foot {
	margin-bottom: calc((100vw / 375) * 40);
	padding-top: calc((100vw / 375) * 20);
}

.fnavi_slist {
	margin-bottom: calc((100vw / 375) * 5);
}

.fnavi_slist li {
	display: inline-block;
	margin-right: calc((100vw / 375) * 30);
}

.fnavi_slist li a {
	display: block;
	font-size: calc((100vw / 375) * 12);
	font-weight: 400;
	color: #878787;
	letter-spacing: 0.05rem;
}

footer .copy small {
	font-size: calc((100vw / 375) * 10);
	font-weight: 400;
	color: #3f4a48;
	letter-spacing: 0.05rem;
}

footer .btn_ptop {
	width: calc((100vw / 375) * 80);
	margin: 0 auto;
}

/*
OVERLAY WINDOW
***************************************************************************/
#overlay_window {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(61,61,61,0.8);
	overflow-y: auto;
	z-index: 10000;
}

.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: calc(100vw - ((100vw / 375) * 50));
	max-height: calc(100vh - ((100vw / 375) * 100));
	padding: calc((100vw / 375) * 30) calc((100vw / 375) * 20) calc((100vw / 375) * 40);
	font-size: calc((100vw / 375) * 12);
	background-color: #fff;
	border-radius: calc((100vw / 375) * 20);
}

.overlay_content .title {
	margin-bottom: calc((100vw / 375) * 10);
	text-align: center;
	font-size: calc((100vw / 375) * 16);
}

.overlay_content .txt {
	margin-bottom: calc((100vw / 375) * 15);
}

.modal_close {
	position: absolute;
	top: calc((100vw / 375) * -10);
	right: calc((100vw / 375) * -10);
	width: calc((100vw / 375) * 30);
	height: calc((100vw / 375) * 30);
	padding-left: calc((100vw / 375) * 2);
	text-align: center;
	font-size: calc((100vw / 375) * 14);
	font-weight: 900;
	color: #fff;
	line-height: calc((100vw / 375) * 28);
	background: #ff9f30;
	border-radius: 50%;
	z-index: 1001;
}

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

.scroll_box::-webkit-scrollbar {
	width: calc((100vw / 375) * 3);
}

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

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

.gecko .scroll_box {
	scrollbar-width: calc((100vw / 375) * 3);
	scrollbar-color: #c4c4c2 #e6e6e1;
}

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

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

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

.move_parts.btm_top {
	transform: translateY(calc((100vw / 375) * 50));
}

.move_parts.top_btm {
	transform: translateY(calc((100vw / 375) * -50));
}

.move_parts.left_right {
	transform: translateX(calc((100vw / 375) * -50));
}

.move_parts.right_left {
	transform: translateX(calc((100vw / 375) * 50));
}

.move_parts.expand {
	opacity: 1;
	transform: scale(0.001);
}

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

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

/* ▼BUTTON▼ */
.btn01 {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: calc((100vw / 375) * 60);
	text-align: center;
	font-size: calc((100vw / 375) * 15);
	font-weight: 600;
	color: #fff;
	background-image:linear-gradient(270deg, #2167db, #2fcaae);
	border-radius: 360px;
	box-shadow: 0 0 calc((100vw / 375) * 20) calc((100vw / 375) * 5) rgba(47,202,174,0.2);
}

.btn01 > .cover {
	display: block;
	box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../common_img/bg_dot.png) left top / calc((100vw / 375) * 4) repeat;
	border-radius: 360px;
	z-index: 2;
}

.btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	text-align: center;
	font-size: calc((100vw / 375) * 15);
	font-weight: 600;
	color: #fff;
	line-height: calc((100vw / 375) * 60);
	border-radius: 360px;
}

.btn02.yellow { background:#d8bc1f; }
.btn02.black { background:#000; }

.btn03 {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	text-align: center;
	font-size: calc((100vw / 375) * 15);
	font-weight: 600;
	color: #fff;
	line-height: calc((100vw / 375) * 60);
	letter-spacing: 0.1rem;
	background: #a1a1a1;
	border-radius: 360px;
}

.arrow .parts {
	display: block;
	position: absolute;
	top: 50%;
	right: calc((100vw / 375) * 15);
	width: calc((100vw / 375) * 18);
	height: calc((100vw / 375) * 13);
	background-image: url(../common_img/arrow_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 18);
	transform: translateY(-50%);
	z-index: 5;
}

.btn03.arrow .parts {
	right: auto;
	left: calc((100vw / 375) * 15);
	transform: translateY(-50%) rotate(180deg);
}

/* ▼CATCH, TITLE, TEXT▼ */
.eng_title {
	margin-bottom: calc((100vw / 375) * 10);
	font-size: calc((100vw / 375) * 18);
	font-weight: 800;
	color: #2fcaae;
	line-height: 1.6;
	font-family: "Source Code Pro", monospace;
	letter-spacing: 0.05rem;
}

.sec_title {
	margin-bottom: calc((100vw / 375) * 25);
	font-size: calc((100vw / 375) * 23);
	line-height: 1.55;
}

/* ▼ICON▼ */
.disp_switch .icon {
	position: absolute;
	top: 50%;
	right: 0;
	width: calc((100vw / 375) * 16);
	height: calc((100vw / 375) * 16);
	margin-top: calc((100vw / 375) * -8);
}

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

.disp_switch .icon:before {
	top: 0;
	left: 50%;
	width: calc((100vw / 375) * 2);
	height: 100%;
	margin-left: -1px;
}

.disp_switch .icon:after {
	top: 50%;
	left: 0;
	width: 100%;
	height: calc((100vw / 375) * 2);
	margin-top: -1px;
}

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

/* ▼NOTICE LIST▼ */
.note_list > li {
	position: relative;
	padding-left: 1.2em;
	font-size: calc((100vw / 375) * 12);
	color: #585858;
	line-height: 1.8;
	letter-spacing: 0.075rem;
}

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

.note_list.center > li {
	padding-left: 0;
	text-align: center;
}

.note_list.center > li span {
	position: relative;
	padding-left: 1.2em;
}

.note_list.center > li:before { display:none; }

.note_list.center > li span:before {
	content: '※';
	position: absolute;
	top: calc((100vw / 375) * -3);
	left: 0;
}

/* ▼LIST▼ */
.li_sp_mb5 > li { margin-bottom:calc((100vw / 375) * 5); }
.li_sp_mb10 > li { margin-bottom:calc((100vw / 375) * 10); }
.li_sp_mb15 > li { margin-bottom:calc((100vw / 375) * 15); }
.li_sp_mb20 > li { margin-bottom:calc((100vw / 375) * 20); }
.li_sp_mb25 > li { margin-bottom:calc((100vw / 375) * 25); }
.li_sp_mb30 > li { margin-bottom:calc((100vw / 375) * 30); }

.list01 > li:last-child,
.list02 > li:last-child,
.list03 > li:last-child,
.list04 > li:last-child {
	margin-bottom: 0;
}

.list01 > li {
	position: relative;
	padding-left: 1.2em;
}

.list01 > li:before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}

.list02 > li {
	position: relative;
	padding-left: calc((100vw / 375) * 20);
}

.list02 > li:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	width: 16px;
	height: 1px;
	margin-top: -0.5px;
	background: #797979;
}

.list03 > li {
	position: relative;
	padding-left: calc((100vw / 375) * 20);
}

.list03.number_plus > li { padding-left:2.2em; }
.list03.kana > li { padding-left:calc((100vw / 375) * 25); }

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

.list03 > li:nth-child(1):before { content:'a.'; }
.list03 > li:nth-child(2):before { content:'b.'; }
.list03 > li:nth-child(3):before { content:'c.'; }
.list03 > li:nth-child(4):before { content:'d.'; }
.list03 > li:nth-child(5):before { content:'e.'; }
.list03 > li:nth-child(6):before { content:'f.'; }
.list03 > li:nth-child(7):before { content:'g.'; }
.list03 > li:nth-child(8):before { content:'h.'; }
.list03 > li:nth-child(9):before { content:'i.'; }
.list03 > li:nth-child(10):before { content:'j.'; }

.list03.number > li:nth-child(1):before { content:'1.'; }
.list03.number > li:nth-child(2):before { content:'2.'; }
.list03.number > li:nth-child(3):before { content:'3.'; }
.list03.number > li:nth-child(4):before { content:'4.'; }
.list03.number > li:nth-child(5):before { content:'5.'; }
.list03.number > li:nth-child(6):before { content:'6.'; }
.list03.number > li:nth-child(7):before { content:'7.'; }
.list03.number > li:nth-child(8):before { content:'8.'; }
.list03.number > li:nth-child(9):before { content:'9.'; }
.list03.number > li:nth-child(10):before { content:'10.'; }

.list03.number_plus > li:nth-child(1):before { content:'（1）'; }
.list03.number_plus > li:nth-child(2):before { content:'（2）'; }
.list03.number_plus > li:nth-child(3):before { content:'（3）'; }
.list03.number_plus > li:nth-child(4):before { content:'（4）'; }
.list03.number_plus > li:nth-child(5):before { content:'（5）'; }
.list03.number_plus > li:nth-child(6):before { content:'（6）'; }
.list03.number_plus > li:nth-child(7):before { content:'（7）'; }
.list03.number_plus > li:nth-child(8):before { content:'（8）'; }
.list03.number_plus > li:nth-child(9):before { content:'（9）'; }
.list03.number_plus > li:nth-child(10):before { content:'（10）'; }

.list03.kana > li:nth-child(1):before { content:'ア）'; }
.list03.kana > li:nth-child(2):before { content:'イ）'; }
.list03.kana > li:nth-child(3):before { content:'ウ）'; }
.list03.kana > li:nth-child(4):before { content:'エ）'; }
.list03.kana > li:nth-child(5):before { content:'オ）'; }
.list03.kana > li:nth-child(6):before { content:'カ）'; }
.list03.kana > li:nth-child(7):before { content:'キ）'; }
.list03.kana > li:nth-child(8):before { content:'ク）'; }
.list03.kana > li:nth-child(9):before { content:'ケ）'; }
.list03.kana > li:nth-child(10):before { content:'コ）'; }

.list04 > li {
	position: relative;
	padding-left: 1.2em;
}

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

/*
COMMON PARTS
***************************************************************************/
/* ▼display▼ */
.iblock { display:inline-block!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▼ */
.sp_w4per { width:4%; }
.sp_w5per { width:5%; }
.sp_w8per { width:8%; }
.sp_w10per { width:10%; }
.sp_w15per { width:15%; }
.sp_w20per { width:20%; }
.sp_w22per { width:22%; }
.sp_w25per { width:25%; }
.sp_w30per { width:30%; }
.sp_w35per { width:35%; }
.sp_w40per { width:40%; }
.sp_w45per { width:45%; }
.sp_w50per { width:50%; }
.sp_w55per { width:55%; }
.sp_w56per { width:56%; }
.sp_w60per { width:60%; }
.sp_w70per { width:70%; }
.sp_w75per { width:75%; }
.sp_w80per { width:80%; }
.sp_w100per { width:100%!important; }

.sp_w90 { width:calc((100vw / 375) * 90)!important; }
.sp_w160 { width:calc((100vw / 375) * 160)!important; }
.sp_w250 { width:calc((100vw / 375) * 250)!important; }
.sp_w400 { width:calc((100vw / 375) * 400)!important; }
.sp_w500 { width:calc((100vw / 375) * 500)!important; }
.sp_w510 { width:calc((100vw / 375) * 510)!important; }
.sp_w580 { width:calc((100vw / 375) * 580)!important; }

.sp_h240 { height:calc((100vw / 375) * 240)!important; }

/* ▼area▼ */
.sp_mb60 { margin-bottom:calc((100vw / 375) * 60)!important; }
.sp_mb55 { margin-bottom:calc((100vw / 375) * 55)!important; }
.sp_mb50 { margin-bottom:calc((100vw / 375) * 50)!important; }
.sp_mb45 { margin-bottom:calc((100vw / 375) * 45)!important; }
.sp_mb40 { margin-bottom:calc((100vw / 375) * 40)!important; }
.sp_mb35 { margin-bottom:calc((100vw / 375) * 35)!important; }
.sp_mb30 { margin-bottom:calc((100vw / 375) * 30)!important; }
.sp_mb25 { margin-bottom:calc((100vw / 375) * 25)!important; }
.sp_mb20 { margin-bottom:calc((100vw / 375) * 20)!important; }
.sp_mb15 { margin-bottom:calc((100vw / 375) * 15)!important; }
.sp_mb12 { margin-bottom:calc((100vw / 375) * 12)!important; }
.sp_mb10 { margin-bottom:calc((100vw / 375) * 10)!important; }
.sp_mb8 { margin-bottom:calc((100vw / 375) * 8)!important; }
.sp_mb5 { margin-bottom:calc((100vw / 375) * 5)!important; }
.sp_mb0 { margin-bottom:calc((100vw / 375) * 0)!important; }

.sp_mlr60 { margin-left:calc((100vw / 375) * 60)!important; margin-right:calc((100vw / 375) * 60)!important; }
.sp_mlr55 { margin-left:calc((100vw / 375) * 55)!important; margin-right:calc((100vw / 375) * 55)!important; }
.sp_mlr50 { margin-left:calc((100vw / 375) * 50)!important; margin-right:calc((100vw / 375) * 50)!important; }
.sp_mlr45 { margin-left:calc((100vw / 375) * 40)!important; margin-right:calc((100vw / 375) * 45)!important; }
.sp_mlr40 { margin-left:calc((100vw / 375) * 40)!important; margin-right:calc((100vw / 375) * 40)!important; }
.sp_mlr35 { margin-left:calc((100vw / 375) * 35)!important; margin-right:calc((100vw / 375) * 35)!important; }
.sp_mlr30 { margin-left:calc((100vw / 375) * 30)!important; margin-right:calc((100vw / 375) * 30)!important; }
.sp_mlr25 { margin-left:calc((100vw / 375) * 25)!important; margin-right:calc((100vw / 375) * 25)!important; }
.sp_mlr20 { margin-left:calc((100vw / 375) * 20)!important; margin-right:calc((100vw / 375) * 20)!important; }
.sp_mlr15 { margin-left:calc((100vw / 375) * 15)!important; margin-right:calc((100vw / 375) * 15)!important; }
.sp_mlr10 { margin-left:calc((100vw / 375) * 10)!important; margin-right:calc((100vw / 375) * 10)!important; }
.sp_mlr5 { margin-left:calc((100vw / 375) * 5)!important; margin-right:calc((100vw / 375) * 5)!important; }
.sp_mlr-1 { margin-left:calc((100vw / 375) * -1)!important; margin-right:calc((100vw / 375) * -1)!important; }
.sp_mlr-5 { margin-left:calc((100vw / 375) * -5)!important; margin-right:calc((100vw / 375) * -5)!important; }
.sp_mlr-10 { margin-left:calc((100vw / 375) * -10)!important; margin-right:calc((100vw / 375) * -10)!important; }
.sp_mlr-20 { margin-left:calc((100vw / 375) * -20)!important; margin-right:calc((100vw / 375) * -20)!important; }

.sp_mr50 { margin-right:calc((100vw / 375) * 50)!important; }
.sp_mr40 { margin-right:calc((100vw / 375) * 40)!important; }
.sp_mr30 { margin-right:calc((100vw / 375) * 30)!important; }
.sp_mr25 { margin-right:calc((100vw / 375) * 25)!important; }
.sp_mr20 { margin-right:calc((100vw / 375) * 20)!important; }
.sp_mr15 { margin-right:calc((100vw / 375) * 15)!important; }
.sp_mr10 { margin-right:calc((100vw / 375) * 10)!important; }
.sp_mr5 { margin-right:calc((100vw / 375) * 5)!important; }
.sp_mr0 { margin-right:calc((100vw / 375) * 0)!important; }
.sp_mr-5 { margin-right:calc((100vw / 375) * -5)!important; }

.sp_ml50 { margin-left:calc((100vw / 375) * 50)!important; }
.sp_ml40 { margin-left:calc((100vw / 375) * 40)!important; }
.sp_ml30 { margin-left:calc((100vw / 375) * 30)!important; }
.sp_ml20 { margin-left:calc((100vw / 375) * 20)!important; }
.sp_ml15 { margin-left:calc((100vw / 375) * 15)!important; }
.sp_ml10 { margin-left:calc((100vw / 375) * 10)!important; }
.sp_ml0 { margin-left:calc((100vw / 375) * 0)!important; }
.sp_ml-5 { margin-left:calc((100vw / 375) * -5)!important; }
.sp_ml-10 { margin-left:calc((100vw / 375) * -10)!important; }
.sp_ml-15 { margin-left:calc((100vw / 375) * -15)!important; }
.sp_ml-20 { margin-left:calc((100vw / 375) * -20)!important; }

.sp_mt60 { margin-top:calc((100vw / 375) * 60)!important; }
.sp_mt55 { margin-top:calc((100vw / 375) * 55)!important; }
.sp_mt50 { margin-top:calc((100vw / 375) * 50)!important; }
.sp_mt45 { margin-top:calc((100vw / 375) * 45)!important; }
.sp_mt40 { margin-top:calc((100vw / 375) * 40)!important; }
.sp_mt30 { margin-top:calc((100vw / 375) * 30)!important; }
.sp_mt20 { margin-top:calc((100vw / 375) * 20)!important; }
.sp_mt15 { margin-top:calc((100vw / 375) * 15)!important; }
.sp_mt10 { margin-top:calc((100vw / 375) * 10)!important; }
.sp_mt5 { margin-top:calc((100vw / 375) * 5)!important; }
.sp_mt3 { margin-top:calc((100vw / 375) * 3)!important; }
.sp_mt0 { margin-top:calc((100vw / 375) * 0)!important; }
.sp_mt-5 { margin-top:calc((100vw / 375) * -5)!important; }
.sp_mt-10 { margin-top:calc((100vw / 375) * -10)!important; }
.sp_mt-20 { margin-top:calc((100vw / 375) * -20)!important; }
.sp_mt-40 { margin-top:calc((100vw / 375) * -40)!important; }
.sp_mt-50 { margin-top:calc((100vw / 375) * -50)!important; }

.sp_pb30 { padding-bottom:calc((100vw / 375) * 30)!important; }
.sp_pb8 { padding-bottom:calc((100vw / 375) * 8)!important; }
.sp_pb0 { padding-bottom:calc((100vw / 375) * 0)!important; }

.sp_p20 { padding:calc((100vw / 375) * 20)!important; }
.sp_p15 { padding:calc((100vw / 375) * 15)!important; }
.sp_p10 { padding:calc((100vw / 375) * 10)!important; }

.sp_pt60 { padding-top:calc((100vw / 375) * 60)!important; }
.sp_pt50 { padding-top:calc((100vw / 375) * 50)!important; }

.sp_ptb20 { padding-top:calc((100vw / 375) * 20)!important; padding-bottom:calc((100vw / 375) * 20)!important; }
.sp_ptb15 { padding-top:calc((100vw / 375) * 15)!important; padding-bottom:calc((100vw / 375) * 15)!important; }
.sp_ptb5 { padding-top:calc((100vw / 375) * 5)!important; padding-bottom:calc((100vw / 375) * 5)!important; }
.sp_ptb0 { padding-top:calc((100vw / 375) * 0)!important; padding-bottom:calc((100vw / 375) * 0)!important; }

.sp_plr25 { padding-left:calc((100vw / 375) * 25)!important; padding-right:calc((100vw / 375) * 25)!important; }

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

.sp_size10 { font-size:calc((100vw / 375) * 10)!important; }
.sp_size11 { font-size:calc((100vw / 375) * 11)!important; }
.sp_size12 { font-size:calc((100vw / 375) * 12)!important; }
.sp_size13 { font-size:calc((100vw / 375) * 13)!important; }
.sp_size14 { font-size:calc((100vw / 375) * 14)!important; }
.sp_size15 { font-size:calc((100vw / 375) * 15)!important; }
.sp_size16 { font-size:calc((100vw / 375) * 16)!important; }
.sp_size17 { font-size:calc((100vw / 375) * 17)!important; }
.sp_size18 { font-size:calc((100vw / 375) * 18)!important; }
.sp_size19 { font-size:calc((100vw / 375) * 19)!important; }
.sp_size20 { font-size:calc((100vw / 375) * 20)!important; }
.sp_size22 { font-size:calc((100vw / 375) * 22)!important; }
.sp_size24 { font-size:calc((100vw / 375) * 24)!important; }
.sp_size30 { font-size:calc((100vw / 375) * 30)!important; }

.c_green { color:#2fcaae!important; }

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

/* ▼link▼ */
a.u_line, .u_line { text-decoration:underline!important; }
a.no_line { text-decoration:none!important; }

/* ▼frame▼ */
.img_frame01 { border:solid 1px #fff; }

/* ▼line▼ */
.txt_line {
	padding-bottom: 10px;
	line-height: 2.8;
	border-bottom: dotted 1px #999;
}

.txt_marker {
	display: inline-block;
	position: relative;
}

.txt_marker:after {
	content: '';
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background:rgba(241,247,64,0.9);
	z-index: 0;
}

.txt_marker > span {
	display: inline-block;
	position: relative;
	z-index: 1;
}

/* ▼background▼ */
.bg_none { background:none!important; }

/* ▼border▼ */
.border_none { border:none!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;
	position: relative;
	width: 100%;
	height: calc((100vw / 375) * 44);
	padding: 0 calc((100vw / 375) * 12);
	vertical-align: middle;
	font-size: calc((100vw / 375) * 14);
	font-weight: 500;
	color: #000;
	line-height: calc((100vw / 375) * 44);
	font-family: "Noto Sans JP", sans-serif;
	letter-spacing: 0.075rem;
	background: #fff;
	border: none;
	border-radius: calc((100vw / 375) * 10);
	caret-color: #999;
}

input[type="text"].plus_input.disabled { background:#cbd3d3; }

textarea {
	display: block;
	width: 100%!important;
	min-height: calc((100vw / 375) * 160);
	padding: calc((100vw / 375) * 10) calc((100vw / 375) * 12);
	line-height: 2;
}

select {
	line-height: calc((100vw / 375) * 42);
}

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, input[type="radio"]:focus, input[type="checkbox"]:focus {
	border: none;
	outline: none;
}

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

.select_box {
	position: relative;
}

.select_box::after {
	content: '';
	position: absolute;
	top: 50%;
	right: calc((100vw / 375) * 5);
	width: calc((100vw / 375) * 30);
	height: calc((100vw / 375) * 30);
	margin-top: calc((100vw / 375) * -15);
	background-image: url(../common_img/arrow_switch_orange.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: calc((100vw / 375) * 30);
	z-index: 10;
}

input::-webkit-input-placeholder {
	font-size: calc((100vw / 375) * 14)!important;
	color: #aeadad;
	font-weight: 400;
}

input:-ms-input-placeholder {
	font-size: calc((100vw / 375) * 14)!important;
	color: #aeadad;
	font-weight: 400;
}

input::-moz-placeholder {
	font-size: calc((100vw / 375) * 14)!important;
	color: #aeadad;
	font-weight: 400;
}

textarea::-webkit-input-placeholder {
	font-size: calc((100vw / 375) * 14)!important;
	color: #aeadad;
	font-weight: 400;
}

textarea:-ms-input-placeholder {
	font-size: calc((100vw / 375) * 14)!important;
	color: #aeadad;
	font-weight: 400;
}

textarea::-moz-placeholder {
	font-size: calc((100vw / 375) * 14)!important;
	color: #aeadad;
	font-weight: 400;
}

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

/* ▼original radio checkbox▼ */
input[type="radio"], input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 0;
	width: calc((100vw / 375) * 28);
	height: calc((100vw / 375) * 28);
	margin: calc((100vw / 375) * -14) 0 0;
	vertical-align: middle;
	background: #fff;
	transform: translateY(-1px);
	overflow: hidden;
}

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

input[type="checkbox"] {
	border-radius: calc((100vw / 375) * 5);
}

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

input[type="radio"]:after {
	top: 50%;
	left: 50%;
	width: calc((100vw / 375) * 16);
	height: calc((100vw / 375) * 16);
	background: #2fcaae;
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

input[type="checkbox"]:after {
	top: 0;
	left: 0;
	width: calc((100vw / 375) * 28);
	height: calc((100vw / 375) * 28);
	background: #2fcaae url(../common_img/icon_chk.png) center center / calc((100vw / 375) * 28) no-repeat;
}

.radio_list li label.active input[type="radio"] { border:solid calc((100vw / 375) * 2) #2fcaae; }

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

.radio_list li label.active input[type="radio"] { background:#fff; }

.radio_list li label, .chk_list li label {
	position: relative;
	padding-left: calc((100vw / 375) * 38);
	line-height: calc((100vw / 375) * 28);
}

.radio_list.sp_col li, .chk_list.sp_col li {
	display: inline-block;
	margin: 0 calc((100vw / 375) * 15) 0 0;
}

.radio_list.sp_col li:last-child, .chk_list.sp_col li:last-child { margin-right:0; }

.radio_list.sp_row li, .chk_list.sp_row li {
	margin-bottom: calc((100vw / 375) * 10);
}

.radio_list.sp_row li:last-child, .chk_list.sp_row li:last-child { margin-bottom:0; }
