@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
}
main {
	display: block;
}
img {
	background-color: transparent;
	border: 0;
	vertical-align: bottom;
	max-width: 100%;
}
ol,
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=radio],
input[type=checkbox] {
	display: none;
}
*/
button,
input,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
}
select::-ms-expand {
	display: none;
}
*,
*:before,
*:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
html,
body {
	width: 100%;
}
html {
	font-size: 62.5%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	position: relative;
	font-family: YakuHanJP, "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	letter-spacing: 0;
	color: #595757;
	font-weight: 400;
	background-color: #fff;
	font-size: 16px;
	font-size: 1.6rem;
}
@media only screen and (max-width: 767px) {
	body {
		min-width: auto;
		font-size: 14px;
		font-size: 1.4rem;
	}
}
a {
	color: #555;
	display: inline-block;
	text-decoration: none;
}
a:hover {
	opacity: .7;
}

@media (any-hover: none) {
	a:hover {
		opacity: 1;
	}
}
button {
	cursor: pointer;
}
button:hover {
	opacity: .7;
}
@media (any-hover: none) {
	button:hover {
		opacity: 1;
	}
}
img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

/* ===============================================
 common
=============================================== */

/* pc / sp */

@media screen and (min-width: 768px) {
	._sp {
		display: none !important;
	}
	._pc {
		display: block !important;
	}
	.br_pc {
		display: inline !important;
	}
	.br_sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	._pc {
		display: none !important;
	}
	._sp {
		display: block !important;
	}
	.br_pc {
		display: none !important;
	}
	.br_sp {
		display: inline !important;
	}
}

/* w */

@media screen and (min-width: 768px) {
	._w {
		width: 1000px;
		max-width: calc(100% - 40px * 2);
		margin-inline: auto;
	}
	._sw {
		width: 800px;
		max-width: calc(100% - 40px * 2);
		margin-inline: auto;
	}
}
@media screen and (max-width: 767px) {
	._w {
		padding-inline: 4vw !important;
	}
	._sw {
		padding-inline: 4vw !important;
	}
}

/* top */

#top {
	display: block;
}

/* ===============================================
 header
=============================================== */

#header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	width: 100%;
	height: 90px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
#header .logo {
	width: 150px;
	height: auto;
	margin: 0 0 0 40px;
}
#header .menu ul {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0 35px 0 0;
}
#header .menu li a {
	font-size: 1.6rem;
	display: block;
}
#header .menu li.btn a {
	font-size: 1.6rem;
	color: #fff;
	background-color: #0090e7;
	border-radius: 3px;
	width: 146px;
	height: 44px;
	box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 767px) {
	#header {
		position: relative;
		height: 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#header .logo {
		width: 80px;
		margin: 0 auto;
	}
}

/* ===============================================
 footer
=============================================== */

#footer {
	width: 100%;
	text-align: center;
}
#footer .logo {
	width: 100%;
	background-color: #fff;
	padding: 25px 0 15px;
}
#footer .logo img {
	width: 60px;
	height: auto;
	margin: 0 auto;
}
#footer .copyright {
	width: 100%;
	background-color: #b8d0de;
	padding: 30px 0;
}
#footer .copyright small {
	font-size: 1.6rem;
	font-weight: 700;
}
@media screen and (max-width: 767px) {
	#footer {
		padding: 0 0 94px;
	}
	#footer .logo {
		padding: 20px 0;
	}
	#footer .logo img {
		width: 100px;
	}
	#footer .copyright {
		background-color: #5198b8;
		color: #fff;
		padding: 15px 0;
	}
	#footer .copyright small {
		font-size: 1.4rem;
		font-weight: 400;
	}
}

/* f_menu */

.f_menu {
	position: fixed;
	width: 100%;
	height: 94px;
	left: 0;
	bottom: 0;
	z-index: 999;
}
.f_menu ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	background-color: #fff;
}
.f_menu li a {
	font-size: 1.4rem;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #b1d0df;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.f_menu li.btn a {
	color: #fff;
	background-color: #0090e7;
}
.f_menu li {
	width: calc((100% - 4px) / 3);
	height: 45px;
	margin: 2px 0 0;
}
.f_menu li:nth-child(n+4) {
	width: calc((100% - 2px) / 2);
}

/* pagetop */

#pagetop {
	position: fixed;
	width: 78px;
	height: 72px;
	right: 35px;
	bottom: 0;
	z-index: 999;
	opacity: 0;
	transform: translateY(72px);
	transition: all .3s ease;
	border-radius: 3px 3px 0 0;
	background-color: #0090e7;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: end;
}
#pagetop span {
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	color: #fff;
	padding: 0 0 16px;
}
#pagetop::before {
	content: "";
	position: absolute;
	top: 18px;
	left: calc(50% - 10px);
	width: 20px;
	height: 12px;
	background: url("../images/common/arrow_totop.svg") no-repeat center center;
	background-size: contain;
}
#pagetop.active {
	transform: translateY(0);
	opacity: 1;
}
#pagetop.active:hover {
	opacity: .7;
}
@media screen and (max-width: 767px) {
	#pagetop {
		display: none;
	}
}

/* ===============================================
 loading
=============================================== */

#loading {
	width: 100%;
	min-height: 100svh;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	overflow: hidden;
	z-index: 4000;
	animation-name: top00;
	animation-duration: 3s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 6s;
}
@keyframes top00 {
	0% {
		opacity: 1;
	}
	40%,
	100% {
		opacity: 0;
		z-index: 0;
	}
}
.loading01,
.loading02 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.loading01 img {
	width: 48vw;
}
.loading02 p {
	font-size: 4.1rem;
	font-weight: 700;
	line-height: 1.4;
	color: #6397b6;
	text-align: center;
	white-space: nowrap;
}
.loading01,
.loading02 {
	opacity: 0;
	animation-name: top01;
	animation-duration: 3s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
.loading02 {
	animation-delay: 3s;
}
@keyframes top01 {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	60% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.loading03 {
	position: relative;
	width: 100%;
	min-height: 100svh;
	overflow: hidden;
	top: 0;
	left: 0;
}
.loading03::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	background: #6397b6;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: translate(-100%, 0);
	animation-name: top02;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 5s;
}
@keyframes top02 {
	0% {
		transform: translate(-100%, 0);
	}
	40% {
		transform: translate(0, 0);
	}
	60% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(100%, 0);
	}
}
@media screen and (max-width: 767px) {
	.loading01 img {
		width: 60vw;
	}
	.loading02 {
		width: 78vw;
	}
	.loading02 p {
		font-size: 2.5rem;
	}
}

/* ===============================================
 mv
=============================================== */

#mv {
	position: relative;
	padding-top: 90px;
	opacity: 0;
	width: 100%;
	height: 100svh;
	animation-name: top03;
	animation-duration: 5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 5s;
}
.mv_body {
	position: absolute;
	z-index: 100;
	width: 100%;
	top: calc(50% + 45px);
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	text-align: center;
	color: #fff;
}
@keyframes top03 {
	0% {
		opacity: 0;
	}
	70%,
	100% {
		opacity: 1;
	}
}
.mv_body .ttl {
	font-size: 4.1rem;
	font-weight: 700;
	line-height: 1.4;
}
.mv_body .txt {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8;
	margin: 15px auto 0;
}
.mv_body .btn {
	width: fit-content;
	margin: 50px auto 0;
}
.mv_body .btn a {
	font-size: 1.8rem;
	font-weight: 500;
	color: #fff;
	background-color: #0090e7;
	border-radius: 3px;
	width: 300px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media screen and (max-width: 767px) {
	#mv {
		padding-top: 0;
		height: auto;
	}
	.mv_body {
		width: 92vw;
		top: 40.933vw;
	}
	.mv_body .ttl {
		font-size: 2.5rem;
	}
	.mv_body .txt {
		display: none;
	}
	.mv_body .btn {
		display: none;
	}
	.mv_body_sp {
		background-color: #fff;
		padding: 20px 4vw 30px;
	}
	.mv_body_sp .txt {
		font-size: 1.6rem;
		font-weight: 400;
		line-height: 1.6;
		color: #595757;
		margin: 0 auto;
	}
	.mv_body_sp .btn {
		width: fit-content;
		margin: 15px auto 0;
	}
	.mv_body_sp .btn a {
		font-size: 1.6rem;
		font-weight: 400;
		color: #fff;
		background-color: #0090e7;
		border-radius: 3px;
		width: 260px;
		height: 44px;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

/* swiper */

#mv .swiper-img img {
	transition: 7s 1s ease-out;
	height: calc(100svh - 90px);
	object-fit: cover;
}
#mv .swiper-slide[class*=-active] .swiper-img img {
	transition-delay: 0s;
	transform: scale(1.05);
}
@media screen and (max-width: 767px) {
	#mv .swiper-img img {
		height: 81.866vw;
	}
}

/* scroll */

#mv .scroll {
	position: absolute;
	z-index: 99;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}
#mv .scroll span {
	position: relative;
	font-size: 1.8rem;
	font-weight: 400;
	color: #fff;
	display: block;
	padding: 0 0 25px;
}
#mv .scroll span::before {
	content: "";
	position: absolute;
	bottom: 0px;
	left: calc(50% - 10px);
	width: 20px;
	height: 12px;
	background: url("../images/common/arrow_totop.svg") no-repeat center center;
	background-size: contain;
	transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
	#mv .scroll {
		display: none;
	}
}

/* ===============================================
 issues
=============================================== */

.issues {
	background-color: #cfe0e9;
	padding: 90px 0 100px;
}
.issues h2 {
	font-size: 4rem;
	font-weight: 500;
	color: #526771;
	text-align: center;
}
.issues h2 + p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	margin: 45px auto 50px;
	text-align: center;
}
.issues ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 60px;
}
.issues li {
	width: calc(50% - 30px);
	min-height: 247px;
	background-color: #fff;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
	padding: 35px 0 40px;
}
.issues li .ttl {
	position: relative;
	font-size: 2rem;
	font-weight: 500;
	color: #6397b6;
	text-align: center;
}
.issues li .ttl::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 21%;
	height: 1px;
	background-color: #6397b6;
}
.issues li .ttl::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 21%;
	height: 1px;
	background-color: #6397b6;
}
.issues li .subttl {
	font-size: 1.4rem;
	font-weight: 400;
	margin: 4px auto 16px;
	text-align: center;
}
.issues li .txt {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	padding: 0 60px;
}
@media screen and (max-width: 767px) {
	.issues {
		padding: 30px 0;
	}
	.issues h2 {
		font-size: 2rem;
		font-weight: 700;
		text-align: left;
	}
	.issues h2 + p {
		font-size: 1.4rem;
		margin: 12px auto 20px;
		text-align: left;
	}
	.issues ul {
		display: flex;
		flex-direction: column​​;
		gap: 20px;
	}
	.issues li {
		width: 100%;
		min-height: auto;
		box-shadow: none;
		padding: 20px 0;
	}
	.issues li .ttl::before {
		width: 18%;
	}
	.issues li .ttl::after {
		width: 18%;
	}
	.issues li .subttl {
		margin: 0 auto 10px;
	}
	.issues li .txt {
		font-size: 1.4rem;
		line-height: 1.8;
		padding: 0 15px;
	}
}

/* ===============================================
 solution
=============================================== */

.solution {
	background-color: #6397b6;
	padding: 90px 0 100px;
}
.solution h2 {
	font-size: 4rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
.solution h2 + p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	color: #fff;
	margin: 45px auto 50px;
	text-align: center;
}
.tab_container {
	margin: 50px auto 0;
}
.tab_menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 3px;
	background-color: #fff;
}
.tab_menu li {
	width: calc((100% - 9px) / 4);
	height: 60px;
	background-color: #cbdde7;
	border-top: 5px solid #bdbcbc;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all .3s ease;
}
.tab_menu li.selected {
	background-color: #fff;
	border-top: 5px solid #cf145a;
}
.tab_content {
	background-color: #fff;
	padding: 50px 13.5% 80px;
	display: none;
}
.tab_content.selected {
	display: block;
}
.tab_content p {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	margin: 0 auto 30px;
}
.tab_content ol {
	background-color: #cbdde7;
	padding: 30px 50px;
}
.tab_content li {
	position: relative;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	padding-left: 15px;
}
.tab_content li::before {
	content: "";
	position: absolute;
	top: 9px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #6397b6;
}
@media screen and (max-width: 767px) {
	.solution {
		padding: 30px 0;
	}
	.solution h2 {
		font-size: 2rem;
		font-weight: 700;
		text-align: left;
	}
	.solution h2 + p {
		font-size: 1.4rem;
		margin: 12px auto 20px;
		text-align: left;
	}
	.tab_container {
		margin: 0 auto;
	}
	.tab_menu {
		gap: 0;
		margin: 0 auto 15px;
	}
	.tab_menu li {
		width: calc((100% - 2px) / 2);
		height: 54px;
		background-color: #cbdde7;
		border-top: 2px solid #bdbcbc;
	}
	.tab_menu li.selected {
		border-top: 2px solid #cf145a;
	}
	.tab_content {
		padding: 0;
	}
	.tab_content p {
		font-size: 1.4rem;
		margin: 0 auto;
		padding: 15px;
	}
	.tab_content ol {
		padding: 15px;
	}
	.tab_content li {
		font-size: 1.4rem;
		padding-left: 13px;
	}
	.tab_content li::before {
		width: 8px;
		height: 8px;
	}
}

/* ===============================================
 diagnosis
=============================================== */

.diagnosis {
	background-color: #fff;
	padding: 90px 0 100px;
}
.diagnosis h2 {
	font-size: 4rem;
	font-weight: 700;
	color: #526771;
	text-align: center;
}
.diagnosis h2 + p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	margin: 45px auto 0;
	text-align: center;
}
#questions .q_txt {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
	color: #6397b6;
	margin: 30px 0 5px;
}
#questions .q_txt:first-child {
	margin: 50px 0 5px;
}
#questions .a_box label {
	display: block;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}
.diagnosis .legend {
	position: relative;
	font-size: 1.6rem;
	font-weight: 400;
	display: block;
	margin: 20px auto 10px;
	padding-left: 60px;
	width: fit-content;
}
.diagnosis .legend::before {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	width: 52px;
	height: 17px;
	border: 2px solid #595757;
	background-color: #b4d3e0;
}
.diagnosis .chart_container {
	width: 100%;
	height: 380px;
}
@media screen and (max-width: 767px) {
	.diagnosis {
		padding: 30px 0;
	}
	.diagnosis h2 {
		font-size: 2rem;
		font-weight: 700;
		text-align: left;
	}
	.diagnosis h2 + p {
		font-size: 1.4rem;
		margin: 12px auto 20px;
		text-align: left;
	}
	#questions .q_txt {
		font-size: 1.4rem;
		font-weight: 700;
		margin: 30px 0 10px;
	}
	#questions .q_txt:first-child {
		margin: 20px 0 10px;
	}
	#questions .a_box label {
		font-size: 1.4rem;
	}
	.diagnosis .legend {
		font-size: 1.4rem;
		margin: 20px auto 10px;
		padding-left: 46px;
	}
	.diagnosis .legend::before {
		top: 5px;
		width: 40px;
		height: 14px;
	}
	.diagnosis .chart_container {
		width: 100%;
		height: 240px;
	}
}

/* ===============================================
 about
=============================================== */

.about {
	background-color: #cfe0e9;
	padding: 90px 0 100px;
}
.about h2 {
	font-size: 4rem;
	font-weight: 700;
	color: #526771;
	text-align: center;
	margin: 0 auto 50px;
}
.about_container {
	display: flex;
	justify-content: space-between;
}
.about_container .picture {
	width: 34%;
}
.about_container .paragraph {
	width: 58%;
}
.about_container .paragraph p {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
}
.about_container .paragraph div {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 24px;
	margin: 30px 0 0;
	text-align: right;
}
.about_container .paragraph div span {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 24px;
}
.about_message {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	margin: 45px 0 0;
}
.about_company {
	border-radius: 5px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 55px 0 0;
	padding: 60px 20px;
}
.about_company h3 {
	width: 30%;
	text-align: center;
	font-size: 1.8rem;
	font-weight: 500;
}
.about_company table {
	width: 70%;
	border-left: 1px solid #acabab;
	padding-left: 8%;
	display: flex;
}
.about_company th {
	width: 7em;
	text-align: left;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.8;
}
.about_company td {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.about {
		padding: 30px 0;
	}
	.about h2 {
		font-size: 2rem;
		font-weight: 700;
		text-align: left;
		margin: 0 auto 18px;
	}
	.about_container {
		display: block;
	}
	.about_container .picture {
		width: 63.333%;
		margin: 0 auto 18px;
	}
	.about_container .paragraph {
		width: 100%;
	}
	.about_container .paragraph p {
		font-size: 1.4rem;
		font-weight: 400;
	}
	.about_container .paragraph div {
		font-size: 1.8rem;
		font-weight: 500;
		line-height: 18px;
		margin: 15px 0 0;
	}
	.about_container .paragraph div span {
		font-size: 1.2rem;
		font-weight: 400;
		line-height: 18px;
	}
	.about_message {
		font-size: 1.4rem;
		margin: 20px 0 0;
	}
	.about_company {
		border-radius: 3px;
		display: block;
		margin: 20px 0 0;
		padding: 15px 15px;
	}
	.about_company h3 {
		width: 100%;
		font-size: 1.4rem;
	}
	.about_company table {
		width: 100%;
		border-left: none;
		border-top: 1px solid #acabab;
		padding: 15px 0 0;
		margin: 15px 0 0;
	}
	.about_company th {
		width: 6em;
		font-size: 1.4rem;
	}
	.about_company td {
		font-size: 1.4rem;
	}
}

/* ===============================================
 instagram
=============================================== */

.instagram {
	background-color: #fff;
	padding: 100px 0;
}
.instagram iframe {
	width: 100%;
	margin: 0;
}
@media screen and (max-width: 767px) {
	.instagram {
		padding: 30px 0;
	}
	.instagram iframe {
		padding: 0 6%;
	}
}

/* ===============================================
 contact
=============================================== */

.contact {
	background-color: #6397b6;
	padding: 90px 0 100px;
}
.contact h2 {
	font-size: 4rem;
	font-weight: 500;
	color: #fff;
	text-align: center;
}
.contact h2 + p {
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.8;
	color: #fff;
	margin: 30px auto 50px;
	text-align: center;
}
.form_container {
	border-radius: 15px;
	background-color: #fff;
	padding: 50px 13% 60px;
}
.form_container h3 {
	font-size: 2.4rem;
	font-weight: 500;
	color: #526771;
	text-align: center;
	margin: 0 auto 50px;
}
.form_container dl {
	margin: 35px auto 0;
}
.form_container dl:first-child {
	margin: 0 auto;
}
.form_container dt {
	font-size: 1.6rem;
	font-weight: 500;
	margin: 0 0 7px;
}
.form_container dd input {
	width: 100%;
	border: 1px solid #595757;
	border-radius: 8px;
	padding: 8px;
}
.form_container dd textarea {
	width: 100%;
	height: 140px;
	border: 1px solid #595757;
	border-radius: 8px;
	padding: 8px;
}
.form_container .error {
	font-size: 1.6rem;
	font-weight: 400;
	color: #cf145a;
	margin: 10px 0 0;
}
.form_privacy {
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	margin: 50px auto;
}
.form_privacy a {
	font-size: 1.6rem;
	font-weight: 500;
	color: #6397b6;
}
.form_btn {
	text-align: center;
	margin: 0 auto;
	position: relative;
	width: fit-content;
	background-color: #fff;
	border: 1px solid #595757;
	border-radius: 8px;
}
.form_btn input[type="submit"] {
	width: 320px;
	height: 50px;
	background-color: transparent;
	border: none;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 48px;
	text-align: center;
	color: #595757;
	transition: all .3s;
	position: relative;
	cursor: pointer;
}
.form_btn::after {
	content: "";
	background: url(../images/common/arrow_btn.svg) no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 99999;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%);
	width: 30px;
	height: 10px;
}
.form_btn:hover {
	background-color: #595757;
	color: #fff;
	transition: all .3s;
}
.form_btn:hover::after {
	background: url(../images/common/arrow_btn_white.svg) no-repeat;
	transition: all .3s;
}
.form_btn:hover input[type="submit"] {
	color: #fff;
	transition: all .3s;
}
@media screen and (max-width: 767px) {
	.contact {
		padding: 30px 0;
	}
	.contact h2 {
		font-size: 2rem;
		font-weight: 700;
		text-align: left;
	}
	.contact h2 + p {
		font-size: 1.4rem;
		margin: 12px auto 20px;
		text-align: left;
		margin: 12px auto 20px;
	}
	.form_container {
		border-radius: 8px;
		padding: 25px 20px;
	}
	.form_container h3 {
		font-size: 1.4rem;
		margin: 0 auto 15px;
	}
	.form_container dl {
		margin: 15px auto 0;
	}
	.form_container dt {
		font-size: 1.4rem;
		margin: 0 0 5px;
	}
	.form_container dd input {
		border-radius: 5px;
	}
	.form_container dd textarea {
		height: 100px;
		border-radius: 5px;
	}
	.form_container .error {
		font-size: 1.4rem;
		margin: 5px 0 0;
	}
	.form_privacy {
		font-size: 1.4rem;
		text-align: left;
		margin: 20px auto;
	}
	.form_privacy a {
		font-size: 1.4rem;
	}
	.form_btn {
		border: 1px solid #595757;
		border-radius: 8px;
	}
	.form_btn input[type="submit"] {
		width: 200px;
		height: 44px;
		font-size: 1.4rem;
		line-height: 42px;
	}
	.form_btn::after {
		content: none;
	}
}

/* confirm */

#confirm .form_container {
	margin: 100px 0 0;
}
#confirm .form_container dd {
	width: 100%;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 8px;
	background-color: #eee;
}
.confirm-btn-box {
	position: relative;
	width: 600px;
	height: 55px;
	margin: 50px auto 0;
}
.confirm-btn-preb {
	position: absolute;
	top: 0;
	left: 0;
	width: 280px;
	height: 50px;
	text-align: center;
	margin: 0;
	padding: 0 0 0 30px;
	transition: all .3s;
}
.confirm-btn-preb input[type="submit"] {
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid #595757;
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 48px;
	color: #595757;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.confirm-btn-preb::after {
	content: "";
	background: url(../images/common/arrow_btn_prev.svg) no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 99999;
	top: 50%;
	left: 15px;
	transform: translate(0, -50%);
	width: 30px;
	height: 10px;
}
.confirm-btn-preb input[type="submit"]:hover {
	background-color: #595757;
	color: #fff;
	transition: all .3s;
}
.confirm-btn-preb:hover::after {
	background: url(../images/common/arrow_btn_prev_white.svg) no-repeat;
	transition: all .3s;
}
.confirm-btn-next {
	position: absolute;
	top: 0;
	right: 0;
	width: 280px;
	height: 50px;
	text-align: center;
	margin: 0;
	padding: 0 30px 0 0;
	transition: all .3s;
}
.confirm-btn-next input[type="submit"] {
	width: 100%;
	height: 100%;
	background-color: #fff;
	border: 1px solid #595757;
	border-radius: 8px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 48px;
	color: #595757;
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
}
.confirm-btn-next::after {
	content: "";
	background: url(../images/common/arrow_btn.svg) no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 99999;
	top: 50%;
	right: 15px;
	transform: translate(0, -50%);
	width: 30px;
	height: 10px;
}
.confirm-btn-next input[type="submit"]:hover {
	background-color: #595757;
	color: #fff;
	transition: all .3s;
}
.confirm-btn-next:hover::after {
	background: url(../images/common/arrow_btn_white.svg) no-repeat;
	transition: all .3s;
}
@media screen and (max-width: 767px) {
	#confirm #footer {
		padding: 0;
	}
	#confirm .form_container {
		margin: 0;
	}
	#confirm .form_container dd {
		border-radius: 5px;
	}
	.confirm-btn-box {
		position: relative;
		width: 300px;
		height: 44px;
		margin: 20px auto 0;
	}
	.confirm-btn-preb {
		width: 140px;
		height: 44px;
		padding: 0;
	}
	.confirm-btn-preb input[type="submit"] {
		border-radius: 5px;
		font-size: 1.4rem;
		line-height: 42px;
	}
	.confirm-btn-preb::after {
		content: none;
	}
	.confirm-btn-next {
		width: 140px;
		height: 44px;
		padding: 0;
	}
	.confirm-btn-next input[type="submit"] {
		border-radius: 5px;
		font-size: 1.4rem;
		line-height: 42px;
	}
	.confirm-btn-next::after {
		content: none;
	}
}

/* error / finish */

#error .form_container {
	margin: 100px 0 0;
}
.form-message h4 {
	font-size: 2.2rem;
	font-weight: 500;
	text-align: center;
	margin: 0 auto 30px;
}
.form-message p {
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
}
.form-message p + p {
	margin-top: 1em;
}
.form-back-btn {
	text-align: center;
	margin: 50px auto 0;
	position: relative;
	width: fit-content;
	background-color: #fff;
	border: 1px solid #595757;
	border-radius: 8px;
}
.form-back-btn a {
	width: 320px;
	height: 50px;
	background-color: transparent;
	border: none;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 48px;
	text-align: center;
	transition: all .3s;
	position: relative;
	cursor: pointer;
}
.form-back-btn::after {
	content: "";
	background: url(../images/common/arrow_btn_prev.svg) no-repeat;
	background-size: contain;
	position: absolute;
	z-index: 99999;
	top: 50%;
	left: 15px;
	transform: translate(0, -50%);
	width: 30px;
	height: 10px;
}
.form-back-btn:hover {
	background-color: #595757;
	color: #fff;
	transition: all .3s;
}
.form-back-btn:hover::after {
	background: url(../images/common/arrow_btn_prev_white.svg) no-repeat;
	transition: all .3s;
}
.form-back-btn:hover a {
	color: #fff;
	opacity: 1;
	transition: all .3s;
}
@media screen and (max-width: 767px) {
	#error .form_container {
		margin: 0;
	}
	.form-message h4 {
		font-size: 1.6rem;
		margin: 0 auto 10px;
		padding: 10px 0 0;
	}
	.form-message p {
		font-size: 1.4rem;
	}
	.form-back-btn {
		margin: 30px auto 0;
		border-radius: 5px;
	}
	.form-back-btn a {
		width: 140px;
		height: 44px;
		font-size: 1.4rem;
		line-height: 42px;
	}
	.form-back-btn::after {
		content: none;
	}
}

/* ===============================================
 modal - [ micromodal.js ]
=============================================== */

#modal-1 {
	display: none;
}
#modal-1.is-open {
	display: block;
}
.modal {
}
.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.3);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.modal__container {
	background-color: #fff;
	width: 100%;
	max-width: 930px;
	height: 800px;
	max-height: 90svh;
	margin: 0 20px;
	padding: 40px 45px 45px;
	border: 1px solid #595757;
	overflow-y: auto;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	overflow: visible;
}
.rules__textContainer {
	max-width: 750px;
	height: 80%;
	margin: 0 auto;
	padding: 6px 0;
}
.rules__textContainer__inner {
	width: 100%;
	height: 70svh;
	overflow-y: scroll;
	overflow-x: hidden;
	padding: 15px;
}
.rules__textContainer__inner__text {
	padding: 30px 25px 0;
}
.rules__textContainer__inner__text.start {
	padding: 0 25px;
}
.rules__textContainer__inner__text.end {
	padding: 30px 25px 15px;
}
.rules__textContainer__inner__text h3 {
	text-align: center;
	margin: 0 auto 40px;
}
.rules__textContainer__inner__text span {
	display: block;
}
.rules__textContainer__inner__text h3 .jp {
	font-size: 4rem;
	font-weight: 400;
	line-height: 1.8;
}
.rules__textContainer__inner__text h3 .en {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: .2em;
}
.rules__textContainer__inner__text p {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
}
.rules__textContainer__inner__text h4 {
	font-size: 2.8rem;
	font-weight: 400;
	border-bottom: 1px solid #bebebe;
	padding-bottom: 10px;
	margin: 0 0 15px;
}
.rules__textContainer__inner__text ul {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.8;
	padding-left: 1em;
	text-indent: -1em;
}
.rules__textContainer__inner__text p.info {
	margin: 25px 0 0;
}
.rules__textContainer__inner__text p.info span {
	text-decoration: underline;
	display: inline;
}
.rules__textContainer__inner__text p.info span:hover {
	opacity: .7;
}
.modal__close {
	position: absolute;
	right: 25px;
	top: 25px;
	width: 50px;
	height: 50px;
	background-color: transparent;
	border: none;
}
.modal__close:hover {
	opacity: 1;
}
.modal__close::before,
.modal__close::after {
	content: "";
	position: absolute;
	top: 25px;
	right: 0;
	width: 50px;
	height: 1px;
	background-color: currentColor;
}
.modal__close::before {
	transform: rotate(-45deg);
}
.modal__close::after {
	transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
	.modal__container {
		width: 100%;
		height: 800px;
		max-height: 90svh;
		margin: 0 20px;
		padding: 50px 15px 15px;
	}
	.rules__textContainer__inner {
		height: 75svh;
		padding: 5px 10px;
	}
	.rules__textContainer__inner__text {
		padding: 15px 10px 0;
	}
	.rules__textContainer__inner__text.start {
		padding: 0 10px;
	}
	.rules__textContainer__inner__text.end {
		padding: 15px 10px 10px;
	}
	.rules__textContainer__inner__text h3 {
		margin: 0 auto 20px;
	}
	.rules__textContainer__inner__text h3 .jp {
		font-size: 2rem;
	}
	.rules__textContainer__inner__text h3 .en {
		font-size: 1.2rem;
	}
	.rules__textContainer__inner__text p {
		font-size: 1.4rem;
	}
	.rules__textContainer__inner__text h4 {
		font-size: 1.8rem;
		padding-bottom: 7px;
		margin: 0 0 10px;
	}
	.rules__textContainer__inner__text ul {
		font-size: 1.4rem;
	}
	.rules__textContainer__inner__text p.info {
		margin: 10px 0 0;
	}
	.modal__close {
		right: 15px;
		top: 15px;
		width: 30px;
		height: 30px;
	}
	.modal__close::before,
	.modal__close::after {
		content: "";
		position: absolute;
		top: 15px;
		width: 30px;
	}
}

/* Demo Animation Style */

@-webkit-keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@-webkit-keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@-webkit-keyframes mmslideIn {
	from {
		-webkit-transform: translateY(15%);
		        transform: translateY(15%);
	}
	to {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes mmslideIn {
	from {
		-webkit-transform: translateY(15%);
		        transform: translateY(15%);
	}
	to {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes mmslideOut {
	from {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	to {
		-webkit-transform: translateY(-10%);
		        transform: translateY(-10%);
	}
}
@keyframes mmslideOut {
	from {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	to {
		-webkit-transform: translateY(-10%);
		        transform: translateY(-10%);
	}
}
.micromodal-slide {
	display: none;
}
.micromodal-slide.is-open {
	display: block;
}
.micromodal-slide[aria-hidden="false"] .modal__overlay {
	-webkit-animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
	        animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
	-webkit-animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
	        animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
	-webkit-animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
	        animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
	-webkit-animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
	        animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}
.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}

/* +++ */