@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: 27vw;
	--bodybg: #f2f2f2;
	--fcolor: #1b1b1b;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header);
}
img {
	width: 100%;
	height: auto;
}

::selection {
	background: transparent;
}
::-moz-selection {
	background: transparent;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1.6;
	color: var(--fcolor);
	background: var(--bodybg);
	font-size: 4vw;
	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;
	font-weight: normal;
}

button {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
}

a ,
button ,
span {
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
	text-decoration: none!important;
}

a:link {color: #00f;}
a:visited {color: #00f;}
a:active {color: #00f;}

a:hover {
	color: #fff;
	text-decoration: none!important;
}

a:hover img ,
button:hover img {
	opacity: .75;
	filter: alpha(opacity=75);
	-ms-filter: "alpha(opacity=75)";
	-khtml-opacity: .75;
	-moz-opacity: .75;
}

table {
	border-top: 1px solid #34271f;
	border-left: 1px solid #34271f;
	border-collapse: separate;
	border-spacing: 0;
}

table tr {
}

table tr th ,
table tr td {
	border-right: 1px solid #34271f;
	border-bottom: 1px solid #34271f;
	vertical-align: middle;
}

table tr th {
	background: #40332b;
	font-weight: normal;
	text-align: center;
}

.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}

.clearfix:after {
	clear: both;
}
 
.clearfix {
	*zoom: 1;
}

.clear {
	clear: both!important;
}

.error {
	color: #c00;
}
.error span {
	display: block;
}
.error span:before {
	content: "\f071";
	margin-right: 3px;
	color: #c00;
	font-size: 15px;
	font-family: "FontAwesome";
}

.hide {
	display: none!important;
}

.spi {
	display: inline!important;
}
.spb {
	display: block!important;
}
.pci {
	display: none!important;
}
.pcb {
	display: none!important;
}

.eupfade {
	opacity : 0;
	transform : translate(0, 10vw);
	transition : all 1000ms ease-in-out;
}
.eupfade.escroll {
	opacity : 1;
	transform : translate(0, 0);
}

.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: 5vw;
	background: #06c755;
}
.btn a i {
	width: 14vw;
	height: 14vw;
	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: 2vw;
	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;
	width: 100%;
	max-width: initial;
	max-width: auro;
}
header .logo {
	width: 24vw;
}
header nav {
	display: flex;
	flex-flow: wrap;
	align-items: center;
	padding: 0 2vw;
	width: calc(100% - 20vw);
	background: rgba(255,255,255,0.95);
}
header nav a.link {
	margin: 0 1vw;
	padding: 0 1vw 0.5em;
	line-height: 1;
	width: 32.5vw;
	color: #1b1b1b !important;
	font-size: 3vw;
	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 ,
header nav a.link.invert {
	color: #c00!important;
}
header nav a.link:hover:before ,
header nav a.link.invert:before {
	background: #c00;
}
header .btn {
	justify-content: space-between;
	width: 100%;
}
header .btn a {
	padding: 0.1em 0.35em;
}
header .btn a i {
	width: 5vw;
	height: 5vw;
}
header .btn a span {
	font-size: 4vw;
}
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: 3.2vw;
	letter-spacing: 0;
}
header .btn p b {
	display: flex;
	align-items: center;
	line-height: 1.2em;
	font-size: 3vw;
	white-space: nowrap;
}
.main {
	display: flex;
	flex-flow: column;
}
.bg {
	display: flex;
	flex-flow: column;
	padding: 10vw 0;
	min-height: 100dvh;
	clip-path: inset(0);
	position: relative;
}
.top.bg {
	padding: 30vw 12vw 5vw;
	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/spbg_top.png);
}
.about.bg:before {
	background-image: url(/img/spbg_about.png);
}
.plan.bg:before {
	background-image: url(/img/spbg_plan.png);
}
.company.bg:before {
	background-image: url(/img/spbg_company.png);
}
.contact.bg:before {
	background-image: url(/img/spbg_contact.png);
}
.bg .inner {
	padding: 10vw 2.5vw 2.5vw;
	background: #fff;
	position: relative;
	z-index: 1;
}

.ttl {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	min-height: 20vw;
	position: relative;
	z-index: 1;
}
.ttl:before ,
.ttl:after {
	content: "";
	background: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
}
.ttl:before {
	width: 12vw;
	height: 12vw;
	top: -3vw;
	box-shadow: 1vw 1vw 0 #f2f2f2;
	z-index: -1;
}
.ttl:after {
	width: 30vw;
	height: 30vw;
	top: 7vw;
	z-index: -2;
}
.ttl .cap ,
.ttl span {
	line-height: 1.25;
	font-size: 10vw;
	font-weight: 900;
	letter-spacing: 0.075em;
	text-shadow: 0.25vw 0.25vw 0 #fff;
	z-index: 3;
}
.ttl span {
	font-size: 5vw;
}

.sttl {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 10vw auto 5vw;
	width: 100%;
	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: 5vw;
	font-weight: 900;
	background: #fff;
	letter-spacing: 0;
}
.sttl span {
	padding: 0 0.5em;
	font-size: 3vw;
}

.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: 17.297%;
	width: 54vw;
	background: url(/img/img_top.png) no-repeat center center;
	background-size: contain;
	position: absolute;
	bottom: 2vw;
	right: 2vw;
}
.top .inner p {
	font-size: 4.6vw;
	line-height: 1.5;
	font-weight: 900;
	text-shadow: 0.25vw 0.25vw 0 #fff;
	letter-spacing: 0;
	position: relative;
	writing-mode: vertical-rl;
}

.about {
}
.about .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
	letter-spacing: 0;
}
.about ul {
	display: flex;
	flex-flow: column;
}
.about ul li {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	margin-top: 15vw;
	border: 1px solid rgba(204, 204, 204, 0.5);
	padding: 5vw;
	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;
	flex-flow: column;
	padding: 0.5em 1em 0.75em;
	width: 90%;
	background: #202020;
	position: absolute;
	top: -10vw;
	left: 50%;
	transform: translateX(-50%);
}
.about ul li .name b {
	line-height: 1;
	font-size: 6vw;
	color: #fff;
}
.about ul li .name span {
	margin-top: 0.25em;
	margin-left: auto;
	line-height: 1;
	font-size: 4vw;
	color: #ff8282;
}
.about ul li figure {
	margin: 5vw auto 3vw;
	width: 40vw;
	box-shadow: 2vw 2vw 0 #202020;
}
.about ul li .status {
	display: flex;
	flex-flow: column;
	justify-content: center;
	margin: 0 0 3vw;
}
.about ul li .status b {
	line-height: 1.5;
	font-size: 4vw;
	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 .txt {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 5vw;
	letter-spacing: 0;
}
.plan ul.planlist {
	display: flex;
	flex-flow: column;
	align-items: center;
	margin-top: 10vw;
}
.plan ul.planlist li {
	display: flex;
	width: 80%;
}
.plan ul.planlist li + li {
	margin-top: 5vw;
}
.plan ul.planlist li dl {
	display: flex;
	flex-flow: column;
	justify-content: center;
	padding: 5vw 2.5vw;
	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: 9vw;
	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: 10vw;
	font-weight: 900;
}
.plan ul.planlist li dl .price b:after {
	content: "/";
	margin: 0 1vw;
}
.plan ul.planlist li dl .price i {
	font-size: 5vw;
	font-weight: 900;
}
.plan ul.planlist li dl .price span {
	font-size: 8vw;
	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: 9vw;
	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: 8vw;
	line-height: 0.75em;
	padding-bottom: 0.2em;
}
.plan ul.planlist li dl .price.moniter span {
	font-size: 9vw;
	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: 6vw;
	letter-spacing: 0;
}
.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: 6.8vw;
	text-align: center;
}

.plan ul.planlist li dl .price.moniter + .comment p {
	line-height: 1.25em;
	font-size: 4vw;
}

.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: 1em 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: 3vw;
	letter-spacing: 0;
}
.plan .btn {
	flex-flow: column;
}
.plan .btn b {
	padding: 2.5em 0 1em;
	line-height: 1.5em;
	font-size: 4.4vw;
	text-align: center;
}
.faq {
	display: flex;
	flex-flow: column;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.faq li + li {
	margin-top: 3vw;
}
.faq li dl {
	display: flex;
	flex-flow: column;
	letter-spacing: 0;
}
.faq li dl dt {
	border-radius: 10px;
	padding: 1em 4em 1em 1.5em;
	font-size: 3.6vw;
	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 ,
.faq li dl dt:hover {
	color: #000;
	background: #999;
}
.faq li dl dt:before ,
.faq li dl dt:after {
	content: "";
	width: 5vw;
	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(1em + 10px) 1em 1em;
	font-size: 3.4vw;
	background: #f2f2f2;
	position: relative;
	top: -10px;
}
.faq li dl dd p {
	line-height: 1.5em;
}

.company {
}
.company.bg {
	justify-content: center;
	padding: 0;
	min-height: calc(100dvh - var(--header));
}
.company.bg .inner {
	padding: 2.5vw;
}
.company dl {
	display: flex;
	flex-flow: column;
}
.company dl dt {
	order: 2;
	width: 100%;
}
.company dl dt figure {
	padding-top: 56.25%;
	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;
	order: 1;
	width: 100%;
	background: #1f1f1f url(/img/bg_aboutlist.png) repeat;
}
.company dl dd ul {
	display: flex;
	flex-flow: column;
	padding: 5vw 0;
}
.company dl dd ul li {
	display: flex;
	color: #fff;
	font-size: 3.2vw;
}
.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.bg {
	justify-content: center;
	padding: 0;
	min-height: calc(100dvh - var(--header));
}
.contact .btn {
	flex-flow: column;
}
.contact .btn p {
	align-items: center;
	padding-bottom: 1.5em;
	font-size: 5vw;
	text-align: center;
}
.contact .btn p b {
	padding-top: 0.5em;
	font-size: 10vw;
	line-height: 2em;
}

footer {
	color: #fff;
	padding: 5vw 0;
	background: #1b1b1b;
}
footer dl {
	display: flex;
}
footer dl dt {
	margin-right: 5vw;
	width: 32vw;
}
footer dl dd {
	display: flex;
	flex-flow: column;
	justify-content: space-evenly;
	width: calc(100% - 37vw);
}

footer dl dd nav {
	display: flex;
	flex-flow: column;
	align-items: center;
	width: 100%;
}
footer dl dd nav a {
	margin: 0 auto;
	padding: 0.5em 1em 0.75em;
	width: 100%;
	line-height: 1;
	color: #fff!important;
	font-size: 3.6vw;
	font-weight: 900;
	text-align: center;
	position:  relative;
	white-space: nowrap;
}
footer dl dd nav a + a {
	margin-top: 5vw;
}
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;
	flex-flow: column;
	justify-content: space-between;
	align-items: center;
}
footer dl dd .btm ul {
	display: flex;
	padding: 5vw 0;
}
footer dl dd .btm ul li {
	margin: 0 4vw;
	width: 5vw;
}
footer dl dd .btm ul li a {
}
footer dl dd .btm ul li a img {
}
footer dl dd .btm .copy {
	font-size: 3vw;
	text-align: center;
	width: 100%;
}