@charset "UTF-8";

/* reset */
html, body, div, span, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,abbr, address, cite, code,del, dfn, em, img, ins, kbd, q, samp,small,sub, sup, var,b, i,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, dialog, figure, footer, header,hgroup, menu, nav, section,time, mark, audio, video {margin: 0; padding: 0; font-weight: 400;border: 0;outline: 0; font-size: 100%; vertical-align: baseline;background: transparent; line-break: strict; word-wrap: normal;}
textarea,input[type="button"],input[type="text"],input[type="image"],input[type="submit"] {-webkit-appearance:none;}
* {outline: none;}
body { word-break:break-all; -webkit-text-size-adjust: none;}
ul,dl {text-indent: 0;}
ul li, ol ul li, ol li {list-style: none;}
address,caption,cite,code,dfn,em,th,var {font-style: normal; font-weight: normal;}
input,textarea,select {font-family: inherit; font-size: inherit; font-weight:inherit;}
* html input,* html textarea,* html select {font-size: 100%;}
*:first-child+html+input,*:first-child html+textarea,*:first-child+html select {font-size: 100%;}
img {width: 100%;}
table {border-collapse:collapse; border-spacing:0;}
th,td {text-align: left; vertical-align: top;}

a {text-decoration: none; color: #232323;}

/* all */
html {width: 100%; height: 100%; font-size: 62.5%;}

body {
	font-family: "Noto Sans JP","ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","Yu Gothic",yugothic,"メイリオ",meiryo,sans-serif;
	word-wrap: break-word;
	width: 100%;
	height: 100%;
	position: relative;
	font-size: 1.5rem;
	line-height: 1.7;
	letter-spacing: 0.08em;
	color: #232323;
	text-align: justify;
}

#container {
	position: relative; 
	padding: 0 0 500px;
}

.contents {
	padding-top: 65px;
	width: 100%;
	height: 100%;
}

section {
	width: 100%;
	padding: 0 0 110px;
}

h2 {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 500;
	padding: 80px 0 60px;
}

h2 span {
	display: block;
	font-size: 1.5rem;
	letter-spacing: .1em;
	color: #ccc;
}

.flex {
	display: flex; 
	justify-content: space-around;
	flex-wrap: wrap;
}

.ttl {font-size: 1.7rem; font-weight: 500;}
.display-pc {display: none !important;}

/*　アニメーション　*/
@keyframes fadeIn {
	0% {opacity:0}
	100% {opacity:1}
}

@-webkit-keyframes fadeIn {
	0% {opacity:0}
	100% {opacity:1}
}

body {
	animation:fadeIn 2s ease 0s 1 normal;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
}

.fadein {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 1s ease, transform 1s ease;
}

.fadein.visible {
	opacity: 1;
	transform: translateY(0);
}

/* 文字色・背景色・角丸 */
.f1 {color: #fff;}
h2.f1 span{color: #fff;}
.f2 {color: #009DAB;}

.bg1 {background: #fff;}
.bg2 {background-image: linear-gradient(135deg, #8adce2, #00b4be);}
.bg3 {background-image: linear-gradient(135deg, #ecf8fa, #c7eaf1);}
.bg4 {background: #eaf6f8;}

.radius5 {border-radius: 5px;}

/* 下線装飾 */
.bd {position: relative;}

.bd::before {
	content: '';
	position: absolute;
	bottom: -5px;
	width: 97%;
	height: 3px;
	background: #00bac7;
}

.bd::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 40px;
	height: 3px;
	background: #007ab7;
}

/* btn */
.btn {
	display: block;
	padding: 15px 0;;
	width: 250px;
	margin: 0;
	color: #fff;
	text-align: center;
	border-radius: 100vh;
	background: #ffb125;
	background: linear-gradient(135deg,#ff7f93,#ffb125 51%,#ffb0b0);
	background-size: 200%;
	transition: .5s;
	font-size: 1.6rem;
	font-weight: 500;
}

.btn:hover {opacity: 1;}

/* header */
header {
	width: 100%;
	height: 65px;
	color: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 0 7px rgb(0 0 0 / 10%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	display: block;
	width: 150px;
	height: auto;
	padding: 0 0 0 15px;
}

header .header-nav {display: none;}

/*ハンバーガーメニュー*/
#g-nav{
	opacity: 0;
	visibility: hidden;
	position:fixed;
	top:0;
	width:100%;
	height: 100%;
	background:#fff;
}

#g-nav.panelactive{
	opacity: 1;
	z-index:10000;
	visibility: inherit;
	display: grid;
	place-items: center;
	align-content: center;
}

body.active {
	height: 100%;
	overflow: hidden;
}

#g-nav li {width: 250px;}

#g-nav li a:not(.btn) {
	display: block;
	margin: 0 0 20px;
	color: #009DAB;
	position: relative;
	line-height: 1.5;
	font-weight: 500;
}

#g-nav li a span {
	display: block;
	color: #c7c7c7;
	font-size: 1rem;
}

#g-nav li a span::after {
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	position: absolute;
	right: 0;
	top: 48%;
	border-bottom: #b9b8b8 2px solid;
	border-right: #b9b8b8 2px solid;
	transform: rotate(-45deg)translateY(-30%);
	transition: all 0.3s ease;
}

#g-nav li a:hover {opacity: 1;}

#g-nav .btn {
	margin: 20px auto 0;
	padding: 8px 0;
}

/*ハンバーガーメニューボタン*/
.openbtn1{
	position:fixed;
	z-index: 100000;
	top:10px;
	right: 10px;
	cursor: pointer;
	width: 50px;
	height:50px;
}

/*×に変化*/
.openbtn1 span{
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 12px;
	height: 3px;
	border-radius: 2px;
	background-color: #acacac;
	width: 50%;
}

.openbtn1 span:nth-of-type(1) {top:12px; }
.openbtn1 span:nth-of-type(2) {top:21px;}
.openbtn1 span:nth-of-type(3) {top:30px;}

.openbtn1.active span:nth-of-type(1) {
	top: 13px;
	left: 10px;
	transform: translateY(6px) rotate(-45deg);
	width: 60%;
}

.openbtn1.active span:nth-of-type(2) {opacity: 0;}

.openbtn1.active span:nth-of-type(3){
	top: 25px;
	left: 10px;
	transform: translateY(-6px) rotate(45deg);
	width: 60%;
}

/* footer */
footer {
	display: flex;
	align-items: center;
	width: 100%;
	height: 500px;
	position: absolute;
	left: 0;
	bottom: 0;
}

footer .wrap {
	width: 90%;
	max-width: 1200px;
	margin: auto;
}

footer .logo {
	display: block;
	width: fit-content;
	margin: 0 auto 40px;
}

footer .logo img {
	width: 180px;
	height: auto;
}

footer ul {
	justify-content: center !important;
	gap: 5px 30px;
	font-size: 1.4rem;
}

footer .nav {margin: 0 auto 40px;}
footer .other-link {padding: 0 0 40px;}

footer .other-link .ttl {
	width: fit-content;
	margin: 0 auto 20px;
	padding: 2px 20px;
	font-size: 1.3rem;
	color: #73bfcb;
	border-radius: 100vh;
}

footer .other-link a {font-weight: 500;}

footer .company-info {
	font-size: 1.2rem;
	padding: 30px 0 0;
	border-top: solid 2px #fff;
}

footer a {color: #666666;}
footer .company-info, footer .company-info a {color: #61a7ae;}

/* .mv */
.mv {
	background: url(../img/mainimg_bg.jpg) no-repeat 25% 0;
	background-size: cover;
}

.mv .mv-inner {
	width: 100%;
	padding: 70px 0;
}

.mv .mv-inner p {
	width: 90%;
	margin: auto;
	font-size: min(5vw, 3rem);
	text-align: end;
	font-weight: 500;
	color: #3e3e3e;
	text-shadow: 2px 2px 20px #fff, -2px 2px 20px #fff, 2px -2px 20px #fff, -2px -2px 20px #fff;
}

.mv .mv-inner ul {
	width: 90%;
	justify-content: end;
	margin: 30px auto 0;
}

.mv .mv-inner ul li {
	width: 20vw;
	max-width: 100px;
	height: 20vw;
	max-height: 100px;
	border-radius: 100vh;
	display: table;
	border: solid 2px #009DAB;
	background: #ffffff96;
	margin: 0 0 0 5%;
}

.mv .mv-inner ul li p {
	display: table-cell;
	vertical-align: middle;
	font-size: min(3vw, 1.6rem);
	font-weight: 500;
	padding: 0 0 5px;
	text-align: center;
}

/* #trouble */
#trouble {padding: 0;}
#trouble h2 {font-size: 2.3rem;}

#trouble h2 .s01 {
	font-size: 2rem;
	color: #232323;
	margin: 0 0 10px;
}

#trouble h2 .s02 {
	font-size: 2.3rem;
	color: #21719e;
	display: inline-block;
	border: solid 3px #e5ebf3;
	padding: 1px 3px 1px 6px;
	margin: 0 4px;
	line-height: 1.3;
	font-weight: 500;
}

#trouble ul {
	width: 80%;
	max-width: 350px;
	margin: auto;
}

#trouble ul li {margin: 0 auto 60px;}
#trouble ul .ttl {text-align: center;}
#trouble ul img {margin: 20px auto;}

#trouble .msg {
	background: url(../img/trouble_bg.jpg) no-repeat 84% 0;
	background-size: cover;
	margin: 100px 0 0;
}

#trouble .msg .msg-inner {
	width: 70%;
	max-width: 550px;
	margin: 0 auto;
	padding: 30px 25px;
}

#trouble .msg .msg-txt01 {
	font-size: 2rem;
	margin: 20px 0 -10px;
	font-weight: 500;
}

#trouble .msg .msg-txt02 {
	font-size: 2rem;
	font-weight: 500;
}

#trouble .msg .msg-txt02 span {
	font-size: 3rem;
	font-weight: 500;
	padding: 0 7px 0 0;
}

@media (max-width: 600px) {
	#trouble .msg .msg-inner {background: rgba(255, 255, 255, 0.6);}
}

@media (max-width: 330px) {
	#trouble .msg .msg-txt02 span.bd::before, #trouble .msg .msg-txt02 span.bd::after {display: none;}
}

/* #service */
#service h3 {
	width: 90%;
	max-width: fit-content;
	text-align: center;
	margin: 0 auto 30px;
}

#service ul {
	width: 80%;
	max-width: 350px;
	margin: auto;
}

#service ul.step li:not(:last-child) {
	position: relative;
	margin: 0 0 30px;
}

#service ul.step li:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	margin: 0 0 0 15px;
	border-bottom: #a9becb 3px solid;
	border-right: #a9becb 3px solid;
	transform: rotate(45deg) translateY(-30%);
	position: absolute;
	bottom: -30px;
	left: 0;
	right: 0;
	margin: auto;
}

#service ul img {
	width: 105%;
	margin: 0 0 10px -5%;
	display: block;
}

#service ul .ttl {
	text-align: center;
	margin: 0 0 10px;
}

#service .merit {
	margin: 40px auto 0;
	padding: 30px 0;
	align-items: center;
	border: solid 2px #e6e6e6;
}

#service .merit li:first-child img {
	width: 60px;
	margin: 0 auto 20px;
}

#service .merit h3{
	margin: 0 auto 10px;
	width: 100%;
}

#service .merit li:last-child {
	width: 90%;
	margin: auto;
}

@media (max-width: 330px) {
	#service h3 {text-align: left;}
	#service h3 br, #service h3 .bd::before, #service h3 .bd::after {display: none;}
}


/* #features */
#features ul {
	width: 80%;
	max-width: 350px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3em;
}

#features ul li {padding: 20px;}

#features ul li h3 {
	font-size: 1.7rem;
	font-weight: 500;
	text-align: center;
	margin: 20px 0 10px;
}

/* #case */
#case {border-bottom: solid 3px #c8e6e8;}

#case h3 {
	border: solid 3px #c8e6e8;
	border-radius: 100vh;
	width: fit-content;
	margin: 0 auto 30px;
	padding: 0 40px;
	color: #636363;
}

#case table {
	width: 90%;
	max-width: 600px;
	margin: auto;
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
	font-size: 1.2rem;
}

#case th {
	padding: 10px 0;
	text-align: center;
	border-bottom: solid 1px #ccc;
	color: #999999;
	font-weight: 500;
}

#case th:first-child, #case td:first-child {
	width: 30px;
	text-align: center;
}

#case th:last-child, #case td:last-child {display: none;}

#case td {
	padding: 10px 5px;
	border-bottom: solid 1px #ccc;
	vertical-align: middle;
	font-weight: 500;
}

#case td:nth-child(3) {font-weight: normal;}

/* #price */
#price {padding: 0;}
#price h3 {text-align: center;}

#price ul, #price ol {
	width: 90%;
	max-width: 600px;
}

#price ul {
	margin: 30px auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1em;
}

#price ul li {
	text-align: center;
	border: solid 2px #00bac7;
}

#price ul li .ttl {
	padding: 10px 0;
	border-radius: 5px 5px 0 0;
}

#price ul li .txt01 span {
	font-size: 4rem;
	font-weight: 500;
	padding: 0 5px;
}

#price ul li .txt02 {
	color: #999999;
	font-size: 1.2rem;
	margin: -5px 0 20px;
}

#price ol {margin: 0 auto;}

#price ol li {
	list-style: none;
	text-indent: -1em;
	padding-left: 1em;
	font-size: 1.3rem;
}

#price .simulation {
	margin: 70px auto 0;
	padding: 80px 0 100px;
}

#price .simulation h3 {
	border-radius: 100vh;
	width: fit-content;
	margin: 0 auto 120px;
	padding: 7px 40px;
	font-size: 2rem;
}

#price .simulation table {
	width: 90%;
	max-width: 600px;
	margin: auto;
	color: #5c5c5c;
	font-size: 1.3rem;
}

#price .simulation table th, #price .simulation table td {
	padding: 15px 0px;
	border: solid 2px #b5b5b5;
	text-align: center;
}

#price .simulation table th {
	font-weight: 500;
	padding: 5px 0;
}

#price .simulation table th:first-child {border: none;}

#price .simulation table th:nth-child(2) {
	background: #00bac7;
	border: solid 5px #00bac7;
	position: relative;
}

#price .simulation table th:nth-child(2)::after {
	content: "";
	width: 170px;
	height: 40px;
	background: url(../img/simulation_01.png) no-repeat center center;
	background-size: 100%;
	position: absolute;
	top: -50px;
	left: -100%;
	right: -100%;
	margin: auto;
}

#price .simulation table th:nth-child(3), #price .simulation table th:nth-child(4) {
	background: #f5f5f5;
	color: #999999;
}

#price .simulation table td:first-child {background: #dbe9ef;}

#price .simulation table td:nth-child(2) {
	border: solid 5px #00bac7;
	font-weight: 500;
}

#price .simulation p {
	margin: 30px auto 0;
	width: 90%;
	max-width: 600px;
}

#price h3.example-ttl {
	width: 90%;
	max-width: 600px;
}

#price h3.example-ttl {
	font-size: 1.7rem;
	margin: 80px auto;
	padding: 0 0 5px 5px;
	text-align: left;
	border-bottom: solid 2px #00bac7;
	border-radius: 0;
}

#price .example-wrap {
	width: 90%;
	max-width: 300px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4em;
}

#price .example-wrap .example-box {
	background: rgba(255, 255, 255, 0.5);
	padding: 30px;
	position: relative;
}

#price .example-wrap .example-box h4 {
	position: absolute;
	top: -32px;
	left: 5px;
}

#price .example-wrap ul {
	gap: 1em;
	margin: 0 auto;
	width: 100%;
}

#price .example-wrap ul li {border: none;}

#price .example-wrap ul li p {
	margin: 0;
	text-align: right;
	width: 100%;
	max-width: 100%;
}

#price .example-wrap .total-txt {
	width: 100%;
	max-width: 100%;
	font-size: 1.8rem;
	text-align: right;
	margin: 15px 0 0px;
	padding: 10px 0 0;
	border-top: solid 1px #ccc;
}

/* #prepare */
#prepare {padding: 0;}

#prepare ul {
	width: 80%;
	max-width: 350px;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3em;
}

#prepare ul li {border: solid 2px #ccc;}
#prepare ul li img {border-radius: 4px 4px 0 0;}

#prepare ul li .ttl {
	text-align: center;
	padding: 20px 0;
}

#prepare ul li p {
	width: 90%;
	margin: auto;
	padding: 0 0 15px;
}

#prepare ul.support {
	display: block;
	margin: 100px 0 0;
	padding: 50px 0;
	width: 100%;
	max-width: 100%;
	background-image: linear-gradient(135deg, #ecf8fa, #c7eaf1);
}

#prepare ul.support li {border: none; border-radius: 0;}

#prepare ul.support li:first-child {
	width: 300px;
	height: 200px;
	margin: 0 auto;
	background: url(../img/prepare_03.png) no-repeat center center;
	background-size: cover;
}

#prepare ul.support li:last-child {background: none;}
#prepare ul.support li:last-child h3 {padding: 30px 0;}

#prepare ul.support li:last-child h3 span {
	font-weight: 500;
	padding: 0 3px 0 0;
}

#prepare ul.support li:last-child h3, #prepare ul.support li:last-child p {
	width: 90%;
	max-width: 600px;
	margin: auto;
}

#prepare ul.support li:last-child p {padding: 0;}

/* #introduction */
#introduction ul {
	width: 80%;
	max-width: 350px;
	padding: 25px 0 20px;
	margin: auto;
	position: relative;
}

#introduction ul.arrow {margin: 0 auto 70px;}

#introduction ul.arrow::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 0 0 15px;
	border-bottom: #ffffff 2px solid;
	border-right: #ffffff 2px solid;
	transform: rotate(45deg) translateY(-30%);
	position: absolute;
	bottom: -45px;
	right: 0;
	left: 0;
	margin: auto;
}

#introduction ul li {
	width: 90%;
	margin: auto;
}

#introduction ul li:first-child img {
	display: block;
	width: 90px;
	margin: 0 auto 20px;
}

#introduction ul li:nth-child(2) {}

#introduction ul .ttl {
	padding: 20px 0 10px;
	text-align: center;
}

/* #contact */
form {
	width: 85%;
	max-width: 600px;
	margin: auto;
}

form ul {padding: 10px 0;}

form ul li:first-child {
	letter-spacing: .2rem;
	padding-left: 5px;
	margin: 0 0 -5px;
}

form ul li label {position: relative;}

form ul li:first-child span {
	width: 36px;
	height: 20px;
	line-height: 18px;
	text-align: center;
	background: #00bac7;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 500;
	position: absolute;
	top: 3px;
	right: -45px;
	border-radius: 3px;
}

form .inputbox {
	width: 96%;
	padding: 12px 2%;
	margin-top: 10px;
	border: solid 2px #c8c8c8;
	transition: all 0.3s ease;
	font-size: 1.6rem;
}

form .inputbox:hover {border: solid 2px #ffbe64;}
::placeholder {color: #ccc;}

form .btn {
	margin: 30px auto 0;
	cursor: pointer;
	border: none;
}

form .recaptcha ,form .recaptcha a {
	width: fit-content;
	margin: auto;
	color: #969696;
	font-size: 1.2rem;
}

form .recaptcha a {text-decoration: underline;}

/* エラーメッセージ */
.submit-error-msg, .wpcf7-response-output {
	width: fit-content;
	margin: 30px auto !important;
	padding: 10px 20px !important;
	color: #e24227 !important;
	border: 2px solid #e24227 !important;
}

.wpcf7-not-valid-tip {
	margin-top:3px;
	color:#e24227;
}

/* #thanks */
#thanks {
	width: 90%;
	max-width: 600px;
	text-align: center;
	margin: 80px auto;
	padding: 50px 0 60px;
	background: #f8f8f8;
}

#thanks h2 {
	padding: 0 0 40px;
	font-size: 2.7rem;
}

#thanks h2 span {
	font-size: 1.4rem;
	display: block;
	color: #8f8f8f;
	padding: 5px 9px 0 0;
}

#thanks p {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}

#thanks a {
	display: inline-block;
	margin-top: 40px;
}