@charset "utf-8";

/*文字サイズ自動調整オフ*/
html {
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
* {
	box-sizing: border-box;
	text-align: center;
}
body {
	font-family: "century-gothic", "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 1.4rem;
	line-height: 1.6;
	background: #fff;
	color: #333;
	overflow-x:hidden;
}
img {
	max-width: 100%;
	height: auto;
}
a:hover {
	opacity: 0.6;
}
a {
	transition: 0.3s;
}
/*header*/
header {
	display: flex;
	justify-content: flex-end;
	padding: 0.5em 0;
	background: #f0faff;
}
header div {
	font-size: 1.2rem;
	font-weight: bold;
	letter-spacing: 0;
	line-height: 1;
	color: #002f68;
}
header div p:nth-of-type(2){
	font-size: 200%;
}
header div p:nth-of-type(2) i {
	margin-right: 0.2em;
	font-size: 80%;
}
header > p a {
	display: block;
	margin: 0 0.5em;
	padding: 0.5em 1em;
	font-weight: bold;
	color: #fff;
	border-radius: 0.5em;
	background: #c70303;
	box-shadow: 0.2em 0.2em 0.2em #ddd;
}
header > p a::after {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-left: 0.5em;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	animation: arrow-header 1300ms ease infinite;
}
@keyframes arrow-header {
  0%, 15%, 50%, 70%, 100% {transform: translate(0.1em) rotate(-135deg);}
  30% {transform: translate(0.2em) rotate(-135deg);}
  45% {transform: translate(0.3em) rotate(-135deg);}
}
/*h1*/
.limited {
	margin: 0.5em 0;
}
.limited span {
	display: inline-block;
	padding: 0.5em 0.8em;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 900;
	letter-spacing: 0.1em;
	background: #002f68;
	transform: skew(-5deg);
}
.limited span:nth-of-type(1) {
	color: #002f68;
	background: #fff200;
	transform: skew(-5deg);
}
/*seminar*/
.seminar a {
	display: block;
	padding: 0.5em 0;
	line-height: 1.2;
	background: #c70303;
	color: #fff;
	font-weight: bold;
}
.seminar_free{
	display: inline-block;
	margin-bottom: 0.5em;
	font-size: 120%;
	letter-spacing: 0.2em;
	border-bottom: 5px solid #fff200;
}
.seminar_btn {
	display: inline-block;
	margin-top: 0.2em;
	margin-left: 0.5em;
	padding: 0.1em 0.5em;
	background: #fff;
	color: #c70303;
	border-radius: 0.2em;
}
.seminar_btn::after {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-left: 0.2em;
	border-left: 2px solid #c70303;
	border-bottom: 2px solid #c70303;
	transform: rotate(-135deg);
}
/*circle*/
.circle {
	display: flex;
	justify-content: center;
	margin: 0.5em auto;
}
.circle li {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 10em;
	height: 10em;
	margin: 0.2em;
	font-size: 1.2rem;
	font-weight: 800;
	letter-spacing: 0;
	line-height: 1.4;
	color: #002f68;
	background: #a6dbff;
	border-radius: 50%;
}
.circle li span span{
	font-size: 120%;
}
.circle li:first-child span span{
	display: inline-block;
	margin-top: -0.2em;
	font-size: 250%;
}
/*section*/
section {
	margin: 2em auto;
	padding: 0 0.5em;
}
/*こんなお悩みはありませんか？*/
#trouble h2{
	margin-bottom: 1em;
	font-size: 2.2rem;
	font-weight: 900;
	color: #002f68;
	transform: skew(-5deg);
}
#trouble ul {
	max-width: 720px;
	margin: 0 auto;
}
#trouble li {
	margin-bottom: 1em;
	font-size: 1.6rem;
	font-weight: bold;
	text-align: left;
}
#trouble li i {
	margin-right: 0.2em;
	color: #002f68;
}
#trouble::after {
	position:absolute;
	right: calc(50% - 150px);
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 50px 150px 0 150px;
	border-color: #FFF200 transparent transparent transparent;
}
/*解決します*/
#support {
	margin-top: 6em;
	padding: 2em 0;
	background: #f0faff;
}
#support h2 {
	font-size: 2em;
	font-weight: 900;
	line-height: 1.2;
	color: #002f68;
	transform: skew(-5deg);
}
#support h2 span {
	font-size: 155%;
	color: #c70303;
}
#support section {
	margin-bottom: 4em;
}
#support section h3 {
	margin-bottom: 0.5em;
	font-size: 1.6em;
	font-weight: 900;
	letter-spacing: 0.1em;
	color: #002f68;
	background: #a6dbff;
	transform: skew(-5deg);
}
#support section p {
	margin-bottom: 0.5em;
	text-align: justify;
}
/*資料請求ボタン*/
.btn_form a {
	position: relative;
	display: block;
	max-width: 300px;
	margin: 0 auto;
	padding: 0.5em;
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	color: #fff;
	background: #c70303;
	border-radius: 0.5em;
	box-shadow: 0.2em 0.2em 0.2em #ddd;
}
.btn_form {
  animation: dkdk 1300ms ease infinite;
}
@keyframes dkdk {
  0%  { transform: scale(1); }
  15% { transform: scale(1.1); }
  30% { transform: scale(1); }
  45% { transform: scale(1.1); }
  70% { transform: scale(1); }
}
.btn_form a::after {
	content: "";
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	margin-left: 0.5em;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	animation: arrow 1300ms ease infinite;
}
@keyframes arrow {
  0%, 15%, 50%, 70%, 100% { transform: translate(0.1em) rotate(-135deg);}
  30% {transform: translate(0.5em) rotate(-135deg);}
  45% {transform: translate(1.0em) rotate(-135deg);}
}
.btn_form span {
	position: absolute;
	top: -3em;
	left: -1em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 4em;
	height: 4em;
	font-size: 90%;
	color: #002f68;
	background: #fff200;
	border-radius: 50%;
}
.btn_form span::after {
	position:absolute;
	bottom: -5px;
	right: calc(50% - 15px);
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 15px 15px 0 15px;
	border-color: #fff200 transparent transparent transparent;
}
/*INOUTとは*/
#inout {
	padding: 0;
}
#inout h2 {
	padding: 0.5em;
	font-size: 1.8rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	background: #a6dbff;
}
#inout p:first-of-type {
	margin-bottom: 1em;
}
#inout p:not(:first-of-type) {
	padding: 0.5em;
	text-align: justify;
}
#inout p span {
	background:linear-gradient(transparent 60%, #fff200 60%);
}
/*選ばれる理由*/
#point {
	padding: 0 0 1em 0;
	background: #f0faff;
}
#point h2 {
	padding: 1em 0;
	color: #002f68;
	background: #a6dbff;
}
#point h2 > span {
	display: inline-block;
	padding-left: 3.5em;
	font-size: 2rem;
	font-style: italic;
	font-weight: 800;
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #002f68;
	background: url("../img/ico_point.jpg") no-repeat left 0.2em center;
	background-size: 60px;
}
#point h2 > span span {
	font-size: 150%;
}
#point li {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 2em 0.5em;
	padding: 1em;
	background: #fff;
	border-radius: 1em;
}
#point li:nth-of-type(even) {
	flex-direction: row-reverse;
}
#point div {
	width: 60%;
}
#point li:nth-of-type(even) div {
	padding-left: 1em;
}
#point li div p {
	position: relative;
	font-size: 5rem;
	font-weight: bold;
	font-style: italic;
	text-align: left;
	color: #1999e0;
}
#point li div p::after {
	position: absolute;
	top: 50%;
	content: "";
	display: inline-block;
	width: calc(100% - 2em);
	margin-left: 0.5em;
	height: 1px;
	background: #1999e0;
}
#point li h3 {
	font-size: 1.8rem;
	font-weight: 900;
	text-align: left;
	color: #002f68;
}
#point li h3 span {
	color: #c70303;
}
#point li p:nth-child(2) {
	width: 40%;
}
/*開業までのステップ*/
#step {
	padding: 0;
	background: #f0faff;
}
#step h2 {
	color: #002f68;
	background: #a6dbff;
}
#step h2 > span {
	display: inline-block;
	padding: 1em 0 1em 2.5em;
	font-size: 2.5rem;
	font-style: italic;
	font-weight: 800;
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #002f68;
	background: url("../img/ico_step.jpg") no-repeat left center;
	background-size: 60px;
}
#step h2 > span span {
	margin-left: 0.2em;
	font-size: 150%;
}
#step li {
	position: relative;
	display: flex;
	align-items: center;
	margin: 2em 0.5em;
	font-size: 1.8rem;
	border: 1px solid #002f68;
}
#step li:nth-of-type(1) {
	background: #fff url("../img/ico_step_01.jpg") no-repeat right 0.5em center;
	background-size: 3em;
}
#step li:nth-of-type(2) {
	background: #fff url("../img/ico_step_02.jpg") no-repeat right 0.5em center;
	background-size: 3em;
}
#step li:nth-of-type(3) {
	background: #fff url("../img/ico_step_03.jpg") no-repeat right 0.5em center;
	background-size: 3em;
}
#step li:nth-of-type(4) {
	background: #fff url("../img/ico_step_04.jpg") no-repeat right 0.5em center;
	background-size: 3em;
}
#step li:nth-of-type(5) {
	background: #fff200 url("../img/ico_step_05.jpg") no-repeat right 0.5em center;
	background-size: 3em;
}
#step li:not(:last-of-type)::before {
	position: absolute;
	bottom: -15px;
	right: calc(50% - 20px);
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 15px 20px 0 20px;
	border-color: #1F3A60 transparent transparent transparent;
}
#step li:not(:last-of-type)::after {
	position: absolute;
	bottom: -14px;
	right: calc(50% - 20px);
	content: "";
	display: block;
	width:0;
	height:0;
	border-style:solid;
	border-width: 15px 20px 0 20px;
	border-color: #fff transparent transparent transparent;
}
#step li p:nth-of-type(1){
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	font-size: 2em;
	color: #fff;
	background: #002f68;
}
#step li p:nth-of-type(2){
	display: flex;
	justify-content: center;
	align-items: center;
	width: calc(100% - 2em);
	padding-right: 3.5em;
	font-weight: 600;
}
/*よくあるご質問*/
#faq {
	margin-bottom: 5em;
	padding: 0;
}
#faq h2 {
	color: #002f68;
	background: #a6dbff;
}
#faq h2 > span {
	display: inline-block;
	padding: 1em 0 1em 2.7em;
	font-size: 2.5rem;
	font-style: italic;
	font-weight: 800;
	text-align: left;
	letter-spacing: 0.05em;
	line-height: 1;
	color: #002f68;
	background: url("../img/ico_faq.jpg") no-repeat left center;
	background-size: 60px;
}
#faq .accordion-area {
	max-width: 900px;
	margin: 0 auto;
	padding: 0 0.5em;
}
#faq .accordion-area .title {
	margin-top: 1em;
	color: #fff;
	background: #002f68;
	position: relative;
	cursor: pointer;
	font-weight: 600;
	padding: 10px;
	transition: all .5s ease;
	text-align: left;
}
#faq .accordion-area .title::before,
#faq .accordion-area .title::after{
    position: absolute;
    content:'';
    width: 10px;
    height: 1px;
    background-color: #fff;
}
#faq .accordion-area .title::before{
    top:48%;
    right: 10px;
    transform: rotate(0deg);  
}
#faq .accordion-area .title::after{    
    top:48%;
    right: 10px;
    transform: rotate(90deg);
}
#faq .accordion-area .title.close::before{
  transform: rotate(45deg);
}
#faq .accordion-area .title.close::after{
  transform: rotate(-45deg);
}
#faq .accordion-area .box {
    display: none;
	padding: 10px;
	text-align: left;
	border: 1px solid #002f68;
}
/*運営会社について*/
#about {
	margin: 5em 0.5em;
	padding: 1.5em 0.5em;
	border: 1px solid #333;
}
#about h2 {
	margin-bottom: 2em;
	font-size: 2rem;
	font-weight: bold;
}
#about  dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#about dt {
	width: 5em;
	text-align: left;
}
#about dd {
	width: calc(100% - 5em);
	text-align: left;
}
#about > dl > dt:not(:last-of-type),
#about > dl > dd:not(:last-of-type){
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
	border-bottom: 1px solid #333;
}
#about > dl > dt {
	font-weight: 600;
}
#about li {
	text-align: left;
}
#about dl  li dt {
	width: 8em;
}
#about > dl li dd {
	width: calc(100% - 8em);
}
/*説明会*/
#session {
	max-width: 600px;
	margin-bottom: 80px;
	padding: 20px 10px;
	background: #a6dbff;
	border: 2px solid #fff;
	border-radius: 10px;
	box-shadow:  0 0 0 10px #a6dbff;
}
#session h3 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}
#session li {
	margin: 10px auto;
	background: #fff;
}
#session p {
	font-weight: bold;
	line-height: 1.2;
}
#session p span {
	display: inline-block;
	margin-top: 10px;
	font-size: 80%;
	font-weight: normal;
}
/*資料請求フォーム*/
#form {
	background-color: #F0FAFF;
	padding: 40px 20px;
	margin-bottom: 0;
}
#form h2 {
	font-size: 1.8rem;
	font-weight: 800;
	margin-bottom: 20px;
}

#form .form-container {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#form .form-container h2 {
	text-align: center;
	margin-bottom: 25px;
	color: #333;
}

#form .form-group {
	margin-bottom: 20px;
}

#form .form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
}

#form .form-group input,
#form .form-group select,
#form .form-group textarea {
	text-align: left;
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	border-radius: 6px;
	font-size: 16px;
}

#form .form-group textarea {
	height: 120px;
	resize: vertical;
}

#form .required {
	color: red;
	margin-left: 5px;
}

#form .radio-wrap {
	display: flex;
	justify-content: center;
	column-gap: 40px;
}

#form .radio-wrap label {
	display: flex;
	font-size: 20px;
	font-weight: normal;
}

#form .check-consent-wrapper {
	margin-bottom: 30px;
}

#form .check-consent-wrapper .check-label {
	font-size: 18px;
}

#form .check-consent-wrapper .check-label a {
	text-decoration: underline;
}

#form .submit-btn {
	width: 100%;
	padding: 12px;
	background-color: #002F68;
	color: #fff;
	font-size: 20px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

#form .submit-btn:hover {
	background-color: #005f8c;
}

/* 入力エラーメッセージ表示領域 */
#form .cmn-validate-err-wrap {
	background-color: #FCE3E3;
	border: 1px solid #D30000;
	color: #D30000;
	padding: 10px;
	margin: 20px auto;
	text-align: left;
	list-style-type: disc;
	border-left-width: 3px;
	font-size: 16px;
}

#form .err-item {
	margin-left: 1.5em;
	text-align: left;
}

/*footer*/
footer {
	padding: 1em 0;
	font-size: 1.2rem;
	color: #fff;
	background: #002f68;
}
footer div p:first-of-type {
	font-size: 110%;
	font-weight: 600;
}
footer > p{
	margin: 0.5em auto;
}
footer a {
	text-decoration: underline;
}

@media screen and (min-width: 600px) {
	html {
	font-size: 100%;
	}
	a[href^="tel:"] {
		pointer-events: none;
	}
	br.sp {
		display: none;
	}
	#support section {
		display: flex;
		justify-content: space-between;
		max-width: 900px;
	}
	#support section:nth-of-type(even) {
		flex-direction: row-reverse;
	}
	#support section div {
		width: 55%;
	}
	#support section > p {
		width: 40%;
	}
	.btn_form a {
		max-width: 500px;
	}
	#inout p {
		max-width: 900px;
		margin: 0 auto;
	}
	#point ol {
		max-width: 900px;
		margin: 0 auto;
	}
	#step ol {
		max-width: 900px;
		margin: 0 auto;
	}
	#about {
		max-width: 900px;
		margin: 5em auto;
		padding: 2em;
	}
	#about > dl > dt {
		width: 40%;
	}
	#about > dl > dd {
		width: 60%;
	}
}

/*サンクスページ*/
#thanks-page-main {
	background-color: #EFEFEF;
	padding: 18vh 20px;
}

#thanks-page-main .thank-you-message {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	max-width: 1200px;
	margin: 0 auto;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

#thanks-page-main .thank-you-message h1 {
	color: #0073aa;
	margin-bottom: 20px;
	font-size: 30px;
	font-weight: bold;
}

#thanks-page-main .thank-you-message p {
	font-size: 16px;
	color: #333;
}

#thanks-page-main .page-back-btn {
	display: inline-block;
	padding: 8px 12px;
	margin-top: 20px;
	background-color: #5f5f5f;
	color: #fff;
	font-size: 18px;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

#thanks-page-main .submit-btn:hover {
	opacity: 0.8;
}

@media screen and (max-width: 600px) {
	#thanks-page-main {
		padding: 10vh 20px;
	}
	#thanks-page-main .thank-you-message {
		padding: 20px 10px;
	}
	#thanks-page-main .thank-you-message h1 {
		font-size: 18px;
		margin-bottom: 10px;
	}
	#thanks-page-main .thank-you-message p {
		font-size: 14px;
	}

	#form .radio-wrap label {
		font-size: 16px;
	}

	#form .check-consent-wrapper .check-label {
		font-size: 16px;
	}
}