@charset "UTF-8";
/* charset */

/*
font-family: "Zen Old Mincho", serif;
*/

/*
clamp
961-1200
80%-100%
*/



* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
:root {
	--header: 200px;
	--bodybg: #f2f2f2;
	--fcolor: #1b1b1b;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}
body {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: var(--fcolor);
	background: var(--bodybg);
	font-size: clamp(0.813rem, 0.059rem + 1.26vw, 1rem);
	font-weight: 600;
	font-family: "Zen Old Mincho", serif;
	letter-spacing: 0.025em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: auto;
}
h1, h2, h3, h4, h5, h6, h7,
ul, ol, li, dl, dt, dd,
article, section,
div, figure, p, form, img, legend, i {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 1em;
	list-style: none;
	font-style: normal;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

a ,
button ,
span ,
img {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}
img{
	max-width:100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}
a {text-decoration: none;}
a:link {color: #00f;}
a:visited {color: #00f;}
a:active {color: #00f;}

a:hover {
	color: #f00;
}

a:hover img ,
button:hover img {
	opacity: .75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
	-khtml-opacity: .75;
	-moz-opacity: .75;
}
.wrapper {
	position: relative;
}
.error {
	color: #ce0f0f;
}
.error span {
	display: block;
}
.error span:before {
	content: "\f071";
	margin-right: 3px;
	color: #ce0f0f;
	font-size: 18px;
	font-family: "FontAwesome";
}

.hide {
	display: none!important;
}

.spi {
	display: none!important;
}
.spb {
	display: none!important;
}

.pci {
	display: inline!important;
}
.pcb {
	display: block!important;
}

.eupfade {
	opacity : 0;
	transform : translate(0, 30px);
	transition : all 1s ease-in-out;
}
.eupfade.escroll {
	opacity : 1;
	transform : translate(0, 0);
	transition-delay: 0.2s;
}

.btn {
	display: flex;
}
.btn a {
	display: flex;
	align-items: center;
	align-self: center;
	border-radius: 8px;
	padding: 0 1em 0 0.25em;
	line-height: 1;
	font-size: 30px;
	background: #06c755;
}
.btn a i {
	width: 93px;
	height: 93px;
	background: url(/img/icon_line.webp) no-repeat center center;
	background-size: cover;
}
.btn a span {
	color: #fff;
	font-size: inherit;
	font-weight: 900;
	letter-spacing: 0;
	white-space: nowrap;
}
.btn p {
	display: flex;
	flex-flow: column;
	justify-content: center;
}
.btn p b {
	line-height: 1.35;
	color: #c00;
}

.inner {
	margin: 0 auto;
	width: 90%;
	max-width: 1200px;
}
header {
	padding: 15px;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: hsl(0deg 0% 0% / 10%);
	backdrop-filter: blur(5px);
	box-shadow: 0 0 15px rgba(0,0,0,0.3);

}
/*
header:after {
	content: "";
	width: 100%;
	height: 100%;
	backdrop-filter: blur(10px);
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
}
*/
header .inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: initial;
	max-width: auro;
}
header .logo {
	width: 170px;
}
header nav {
	display: flex;
	align-items: center;
	padding: 0 15px;
	width: calc(100% - 170px);
	height: clamp(4.375rem, 0.903rem + 5.78vw, 6.25rem);
	background: rgba(255,255,255,0.95);
}
header nav a.link {
	margin: 0 clamp(0.313rem, -0.845rem + 1.93vw, 0.938rem);
	padding: 0 5px 1.25em;
	line-height: 1;
	color: #1b1b1b!important;
	font-size: 20px;
	position:  relative;
	white-space: nowrap;
}
header nav a.link:before {
	content: "";
	width: 100%;
	height: clamp(0.188rem, -0.566rem + 1.26vw, 0.375rem);
	background: #1b1b1b;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}
header nav a.link:hover {
	color: #c00!important;
}
header nav a.link:hover:before {
	background: #c00;
}
header .btn {
	margin-left: auto;
}
header .btn a {
	padding: 0 15px 0 5px;
	height: clamp(2.5rem, 0.185rem + 3.85vw, 3.75rem);
}
header .btn a i {
	width: clamp(1.875rem, -1.597rem + 5.78vw, 3.75rem);
	height: clamp(1.875rem, -1.597rem + 5.78vw, 3.75rem);
}
header .btn a span {
	font-size: clamp(1.125rem, 0.185rem + 1.56vw, 1.75rem);
}
header .btn p {
	flex-flow: row;
	justify-content: start;
}
header nav a.link ,
header .btn p b {
	text-align: center;
	font-weight: 900;
	font-size: clamp(0.875rem, 0.159rem + 1.09vw, 1.25rem);
	letter-spacing: 0;
}
header .btn p b {
	display: flex;
	align-items: center;
	padding: 0 0.5em;
	text-align: center;
	white-space: nowrap;
}
.main {
	display: flex;
	flex-flow: column;
}
.bg {
	display: flex;
	flex-flow: column;
	padding: clamp(5rem, -0.026rem + 8.37vw, 6.25rem) 0;
	min-height: 100dvh;
	clip-path: inset(0);
	position: relative;
}
.top.bg {
	padding: clamp(5rem, -0.026rem + 8.37vw, 6.25rem);
	min-height: initial;
	height: 100dvh;
}
.bg:before {
	content: "";
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: fixed;
	inset: 0;
	z-index: -1;
}
.top.bg:before {
	background-image: url(/img/bg_top.png);
}
.about.bg:before {
	background-image: url(/img/bg_about.png);
}
.plan.bg:before {
	background-image: url(/img/bg_plan.png);
}
.company.bg:before {
	background-image: url(/img/bg_company.png);
}
.contact.bg:before {
	background-image: url(/img/bg_contact.png);
}
.bg .inner {
	padding: clamp(5rem, -0.026rem + 8.37vw, 6.25rem);
	background: #fff;
	position: relative;
	z-index: 1;
}

.ttl {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	min-height: clamp(9.25rem, -3.818rem + 21.76vw, 12.5rem);
	position: relative;
	z-index: 1;
}
.ttl:before ,
.ttl:after {
	content: "";
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}
.ttl:before {
	width: clamp(6.875rem, -0.916rem + 12.97vw, 8.813rem);/* 110-141px */
	height: clamp(6.875rem, -0.916rem + 12.97vw, 8.813rem);
	top: clamp(-1.938rem, 2.837rem + -7.95vw, -3.125rem);
	box-shadow: 15px 15px 0 #f2f2f2;
	z-index: -1;
}
.ttl:after {
	width: clamp(14.625rem, -1.961rem + 27.62vw, 18.75rem);/* 234-300px */
	height: clamp(14.625rem, -1.961rem + 27.62vw, 18.75rem);
	top: clamp(1.938rem, -2.837rem + 7.95vw, 3.125rem);
	z-index: -2;
}
.ttl .cap {
	line-height: 1.25;
	font-size: clamp(5.625rem, -1.914rem + 12.55vw, 7.5rem);
	letter-spacing: 0.075em;
	text-shadow: 5px 5px 0 #fff;
	z-index: 3;
}
.ttl span {
	line-height: 1.25;
	font-size: clamp(1.75rem, -1.266rem + 5.02vw, 2.5rem);
	letter-spacing: 0.075em;
	text-shadow: 5px 5px 0 #f1f1f1;
	z-index: 3;
}

.sttl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 80px auto 40px;
	width: 100%;
	max-width: 1000px;
	position: relative;
}
.sttl:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #202020;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sttl .cap ,
.sttl span {
	padding: 0 0.25em;
	font-size: clamp(2.75rem, -1.271rem + 6.69vw, 3.75rem);
	font-weight: 900;
	background: #fff;
	letter-spacing: 0;
}
.sttl span {
	padding: 0 0.5em;
	font-size: clamp(1.25rem, -0.258rem + 2.51vw, 1.625rem);
}

.top.bg .inner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border: 6px solid var(--fcolor);
	width: 100%;
	height: 100%;
	max-width: initial;
	max-width: auro;
	background: transparent!important;
}
.top.bg .inner:before {
	content: "";
	padding-top: 12.297%;
	width: clamp(25rem, -6.394rem + 52.27vw, 45.875rem);
	background: url(/img/img_top.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	bottom: 2vw;
	right: 2vw;
}
.top .inner p {
	font-size: clamp(1.875rem, -1.891rem + 6.27vw, 3.125rem);
	line-height: 1.5;
	font-weight: 900;
	text-shadow: 5px 5px 0 #fff;
	letter-spacing: 0;
}

.about {
}
.about .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(1rem, -0.508rem + 2.51vw, 1.375rem);
	letter-spacing: 0;
}
.about ul {
	display: flex;
	flex-flow: column;
}
.about ul li {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	margin-top: clamp(4rem, -0.021rem + 6.69vw, 5rem);
	border: 1px solid rgba(204,204,204,0.5);
	padding: clamp(2.5rem, -0.013rem + 4.18vw, 3.125rem);
	min-height: clamp(17.5rem, -0.092rem + 29.29vw, 21.875rem);
	position: relative;
}
.about ul li:before {
	content: "";
	background: url(/img/bg_aboutlist.png) repeat;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 0.3;
}
.about ul li .name {
	display: flex;
	align-items: end;
	padding: 1em 1.5em 1.25em;
	width: fit-content;
	background: #202020;
	position: absolute;
	top: -30px;
	left: 30px;
}
.about ul li .name b {
	line-height: 1;
	font-size: clamp(1.625rem, -0.888rem + 4.18vw, 2.25rem);
	color: #fff;
}
.about ul li .name span {
	margin-left: 1em;
	line-height: 1;
	font-size: clamp(1.125rem, -0.383rem + 2.51vw, 1.5rem);
	color: #ff8282;
}
.about ul li figure {
	display: inline-block;
	width: clamp(12.5rem, -0.065rem + 20.92vw, 15.625rem);
	box-shadow: clamp(0.625rem, -0.632rem + 2.09vw, 0.938rem) clamp(0.625rem, -0.632rem + 2.09vw, 0.938rem) 0 #202020;
	position: absolute;
	top: clamp(2.5rem, -0.013rem + 4.18vw, 3.125rem);
	right: clamp(2.5rem, -0.013rem + 4.18vw, 3.125rem);
}
.about ul li .status {
	display: flex;
	flex-flow: column;
	justify-content: center;
	min-height: clamp(9.75rem, -0.302rem + 16.74vw, 12.25rem);
}
.about ul li .status b {
	line-height: 1.5;
	font-size: clamp(1.313rem, -0.447rem + 2.93vw, 1.75rem);
	font-weight: 600;
	color: #0e2965;
}
.about ul li .comment {
	display: flex;
	flex-flow: column;
}
.about ul.mid {
	flex-flow: wrap;
	justify-content: space-between;
}
.about ul.mid li {
	justify-content: normal;
	margin-top: clamp(6rem, -0.031rem + 10.04vw, 7.5rem);
	padding: clamp(1rem, -0.005rem + 1.67vw, 1.25rem);
	width: 46%;
	background: #f7f7f7;
}
/*
@media screen and (max-width:1000px) {
	.about ul.mid li {
		width: 100%;
	}
}
*/
.about ul.mid li .name {
	flex-flow: column;
	align-items: start;
	padding: 0.5em 0.75em 0.6em;
	width: 90%;
	top: 0;
	left: 50%;
	transform: translate(-50%, -85%);
}
.about ul.mid li .name b {
	font-size: clamp(1.75rem, -0.26rem + 3.35vw, 2.25rem);
	text-align: left;
}
.about ul.mid li .name span {
	margin: 0;
	margin-top: 0.5em;
	width: 100%;
	font-size: clamp(0.75rem, 0.247rem + 0.84vw, 0.875rem);
	text-align: right;
}
.about ul.mid li figure {
	width: clamp(8.5rem, -0.044rem + 14.23vw, 10.625rem);
	box-shadow: 5px 5px 0 #202020;
	top: clamp(1rem, -0.005rem + 1.67vw, 1.25rem);
	right: clamp(1rem, -0.005rem + 1.67vw, 1.25rem);
}
.about ul.mid li .status {
	padding-right: 11.25em;
}
.about ul.mid li .status b {
	font-size: clamp(0.75rem, -0.255rem + 1.67vw, 1rem);
}
.about ul.mid li .comment {
	font-size: clamp(0.75rem, -0.255rem + 1.67vw, 1rem);
}

.plan {
}
.plan.bg .inner {
	padding: clamp(5rem, -0.026rem + 8.37vw, 6.25rem) clamp(2.25rem, -0.012rem + 3.77vw, 2.813rem);
}
.plan .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(1.125rem, -0.383rem + 2.51vw, 1.5rem);
	letter-spacing: 0;
}
.plan ul.planlist {
	display: flex;
	justify-content: space-between;
	margin-top: clamp(5rem, -0.026rem + 8.37vw, 6.25rem);
}
.plan ul.planlist li {
	display: flex;
	width: 31%;
	max-width: 350px;
}
.plan ul.planlist li dl {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: clamp(2.375rem, -0.641rem + 5.02vw, 3.125rem) 0;
	width: 100%;
	position: relative;
	color: #fff;
	z-index: 1;
}
.plan ul.planlist li:nth-child(1) dl {
	background: #eb9f9f;
}
.plan ul.planlist li:nth-child(2) dl {
	background: #c4c96e;
}
.plan ul.planlist li:nth-child(3) dl {
	background: #86d797;
}
.plan ul.planlist li dl:before {
	content: "";
	width: 100%;
	height: 100%;
	background: url(/img/bg_planlist.png) repeat;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}
.plan ul.planlist li dl dt {
	display: flex;
	justify-content: center;
	line-height: 1.15;
	font-weight: 900;
	font-size: clamp(2.25rem, -0.263rem + 4.18vw, 2.875rem);
	text-align: center;
}
.plan ul.planlist li:nth-child(1) dl dt {
	text-shadow: 3px 3px 0 #ee8080;
}
.plan ul.planlist li:nth-child(2) dl dt {
	text-shadow: 3px 3px 0 #90972b;
}
.plan ul.planlist li:nth-child(3) dl dt {
	text-shadow: 3px 3px 0 #55a666;
}
.plan ul.planlist li dl dd {
	display: flex;
	z-index: 3;
}
.plan ul.planlist li dl .price {
	justify-content: center;
	align-items: end;
	margin: 1em auto calc(1em + 20px);
	padding: 0 0.5em;
	width: fit-content;
	line-height: 1;
	position: relative;
}
.plan ul.planlist li dl .price:after {
	content: "";
	width: 100%;
	height: 8px;
	background-image : linear-gradient(to right, #fff 2px, transparent 2px);
	background-size: 5px 1px;
	position: absolute;
	bottom: -18px;
	left: 0;
}
.plan ul.planlist li dl .price b {
	font-size: clamp(2.375rem, -0.641rem + 5.02vw, 3.125rem);
	font-weight: 900;
}
.plan ul.planlist li dl .price b:after {
	content: "/";
	margin: 0 5px;
}
.plan ul.planlist li dl .price i {
	font-size: clamp(1.5rem, -0.008rem + 2.51vw, 1.875rem);
	font-weight: 900;
}
.plan ul.planlist li dl .price span {
	font-size: clamp(2rem, -0.01rem + 3.35vw, 2.5rem);
	font-weight: 900;
}
.plan ul.planlist li dl .price.moniter {
	flex-flow: column;
	align-items: center;
	margin: 1.5em auto calc(2em + 12px);
	line-height: 1.1;
}
.plan ul.planlist li dl .price.moniter:after {
	height: 8px;
	bottom: -12px;
}
.plan ul.planlist li dl .price.moniter b {
	font-size: clamp(2.25rem, -0.766rem + 5.02vw, 3rem);
	letter-spacing: -0.05em;
}
.plan ul.planlist li dl .price.moniter b:after {
	content: none;
}
.plan ul.planlist li dl .price.moniter i {
	font-size: clamp(1.5rem, -0.008rem + 2.51vw, 1.875rem);
	line-height: 0.75em;
	padding-bottom: 0.2em;
}
.plan ul.planlist li dl .price.moniter span {
	font-size: clamp(2.25rem, -0.766rem + 5.02vw, 3rem);
	letter-spacing: -0.05em;
}
.plan ul.planlist li dl .price.moniter b i ,
.plan ul.planlist li dl .price.moniter span i {
	line-height: 1;
	padding-bottom: 0;
	font-size: clamp(1.25rem, -2.268rem + 5.86vw, 2.125rem);
}
.plan ul.planlist li dl .comment {
	display: flex;
	justify-content: center;
	align-items: center;
}
.plan ul.planlist li dl .comment p {
	line-height: 1.5em;
	font-size: clamp(1.625rem, -0.888rem + 4.18vw, 2.25rem);
	text-align: center;
}

.plan ul.planlist li dl .price.moniter + .comment p {
	line-height: 1.25em;
	font-size: clamp(1rem, -0.005rem + 1.67vw, 1.25rem);
}

.plan ul.level {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
	position: relative;
}
.plan ul.level li {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0;
	width: 31%;
	background: linear-gradient(to bottom,  #eeffe1 0%,#b1ff76 100%);
}
.plan ul.level li p {
	display: flex;
	flex-flow: column;
	line-height: 2em;
	font-size: clamp(1.375rem, -0.133rem + 2.51vw, 1.75rem);
	letter-spacing: 0;
}
.plan .btn {
	flex-flow: column;
}
.plan .btn b {
	padding: 2.5em 0 1em;
	line-height: 1.5em;
	font-size: 24px;
	text-align: center;
}
.faq {
	display: flex;
	flex-flow: column;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.faq li + li {
	margin-top: 30px;
}
.faq li dl {
	display: flex;
	flex-flow: column;
	letter-spacing: 0;
}
.faq li dl dt {
	border-radius: 10px;
	padding: 1.25em 5em 1.25em 1.5em;
	font-size: clamp(1.125rem, -0.383rem + 2.51vw, 1.5rem);
	font-weight: 900;
	color: #fff;
	background: #202020;
	position: relative;
	z-index: 2;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}
.faq li dl dt.on {
	color: #c00;
}
.faq li dl dt:hover {
	color: #000;
	background: #999;
}
.faq li dl dt:before ,
.faq li dl dt:after {
	content: "";
	width: 60px;
	height: 1px;
	background: #f2f2f2;
	position: absolute;
	top: 50%;
	right: 1.5em;
	transform: translateY(-50%);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}
.faq li dl dt:after {
	transform: translateY(-50%) rotate(90deg);
}
.faq li dl dt.on:after {
	transform: translateY(-50%) rotate(0deg);
}

.faq li dl dd {
	display: none;
	padding: calc(2em + 10px) 2em 2em;
	font-size: clamp(1rem, -0.508rem + 2.51vw, 1.375rem);
	background: #f2f2f2;
	position: relative;
	top: -10px;
}
.faq li dl dd p {
	line-height: 1.5em;
}

.company {
}
.company dl {
	display: flex;
}
.company dl dt {
	width: 40%;
}
.company dl dt figure {
	padding-top: 100%;
	width: 100%;
	position: relative;
}
.company dl dt figure iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.company dl dd {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60%;
	background: #1f1f1f url(/img/bg_aboutlist.png) repeat;
}
.company dl dd ul {
	display: flex;
	flex-flow: column;
}
.company dl dd ul li {
	display: flex;
	color: #fff;
	font-size: clamp(1rem, -0.257rem + 2.09vw, 1.313rem);
}
.company dl dd ul li b {
	display: flex;
	justify-content: end;
	width: 5.25em;
	font-weight: 600;
}
.company dl dd ul li b:after {
	content: "：";
}
.company dl dd ul li span {
	display: flex;
}

.contact {
}
.contact .btn {
	flex-flow: column;
}
.contact .btn p {
	align-items: center;
	padding-bottom: 1.5em;
	font-size: 22px;
}
.contact .btn p b {
	padding-top: 0.5em;
	font-size: 40px;
	line-height: 2em;
}

footer {
	color: #fff;
	padding: 80px 0;
	background: #1b1b1b;
}
footer dl {
	display: flex;
}
footer dl dt {
	margin-right: 65px;
}
footer dl dd {
	display: flex;
	flex-flow: column;
	justify-content: space-evenly;
	width: calc(100% - 235px);
}

footer dl dd nav {
	display: flex;
	align-items: center;
	width: 100%;
}
footer dl dd nav a {
	margin: 0 15px;
	padding: 0 5px 1.25em;
	line-height: 1;
	color: #fff!important;
	font-size: clamp(0.875rem, 0.159rem + 1.09vw, 1.25rem);
	font-weight: 900;
	position:  relative;
	white-space: nowrap;
}
footer dl dd nav a:before {
	content: "";
	width: 100%;
	height: 3px;
	background: #fff;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}
footer dl dd nav a:hover {
	color: #f00!important;
}
footer dl dd nav a:hover:before {
	background: #f00;
}
footer dl dd .btm {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer dl dd .btm ul {
	display: flex;
}
footer dl dd .btm ul li {
	margin: 0 10px;
}
footer dl dd .btm ul li a {
}
footer dl dd .btm ul li a img {
}
footer dl dd .btm .copy {
}
