@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; transition: all 0.3s ease; color: #232323;}
a:hover {opacity: 0.6}

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

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

#container {
	min-height: 100% !important;
	position: relative;
	padding-top: 65px;
	margin-top: -65px;
}

.contents {
	width: 100%;
	height: 100%;
	min-height: 100%;
	margin: 65px auto 0;
	padding-bottom: 450px;
}

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

h2 {
	text-align: center;
	font-size: 3.5rem;
	padding: 170px 0 100px;
}

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

.ttl {font-size: min(1.7vw, 2rem); font-weight: 500;}
.flex {display: flex; justify-content: space-around;}
br.sp {display: none;}
.display-sp {display: none;}

/*　アニメーション　*/
@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: 99%;
	height: 3px;
	background: #00bac7;
}

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

/* btn */
.btn {
	display: inline-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;
	background-position: 100%;
}

/* 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 30px;
}

header ul {
	padding: 0 20px 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 630px;
}

header li {font-size: 1.4rem;}

header .btn {
	padding: 3px 10px;
	font-size: 1.4rem;
	width: 110px;
}

/* ハンバーガーメニュー */
.openbtn1, #g-nav li a span {display: none;}

/* footer */
footer {
	display: flex;
	align-items: center;
	width: 100%;
	height: 450px;
	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 30px;
}

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

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

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

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

footer .other-link ul {gap: 60px;}

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

footer .company-info {
	font-size: 1.2rem;
	padding: 30px 0 0;
	gap: 20px;
	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 center 0px;
	background-size: cover;
}

.mv .mv-inner {
	width: 60%;
	margin: 0;
	margin-left: auto;
	padding: 120px 0;
}

.mv .mv-inner p {
	font-size: min(3vw, 4.5rem);
	text-align: center;
	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: 80%;
	max-width: 600px;
	justify-content: space-evenly;
	margin: 30px auto 0;
}

.mv .mv-inner ul li {
	width: 12vw;
	max-width: 150px;
	height: 12vw;
	max-height: 150px;
	border-radius: 100vh;
	text-align: center;
	display: table;
	border: solid 2px #009DAB;
	background: #ffffff96;
}

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

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

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

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

#trouble ul {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 3em;
}

#trouble ul .ttl {text-align: center;}

#trouble ul img {
	width: 90%;
	max-width: 300px;
	margin: 30px auto;
	display: block;
}

#trouble ul p {
	max-width: 300px;
	margin: auto;
}

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

#trouble .msg .msg-inner {
	padding: 5% 0 5% 25%;
	font-size: 1.7rem;
}

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

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

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

@media (max-width: 1400px) {
	#trouble .msg .msg-inner {padding: 8% 0 8% 10%;}
}

/* #service */
#service h3 {
	text-align: center;
	font-size: 2rem;
}

#service ul {
	width: 90%;
	max-width: 1200px;
	margin: 120px auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5em;
}

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

#service ul span{position: relative;} 

#service ul span::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;
	top: 60%;
	right: -14%;
}

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

#service .merit {
	display: flex;
	justify-content: flex-start;
	gap: 0;
	width: 90%;
	max-width: 1200px;
	margin: 40px auto;
	padding: 30px 0;
	align-items: center;
	border: solid 2px #e6e6e6;
}

#service .merit li:first-child {width: 25%;}

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

#service .merit h3{
	text-align: start;
	margin: 0;
}

#service .merit li:last-child {width: 70%;}

@media (max-width: 1200px) {
#service ul span::after {right: -19%;}
}

/* #features */
#features ul {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4em;
}

#features ul li {padding: 20px;}

#features ul li h3 {
	font-size: 2rem;
	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;
	font-size: 1.8rem;
	color: #636363;
}

#case table {
	width: 90%;
	max-width: 1200px;
	margin: auto;
	font-size: 1.5rem;
	border-top: solid 2px #ccc;
	border-bottom: solid 2px #ccc;
}

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

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

#case th:not(:last-child), #case td:not(:last-child) {border-right: solid 2px #ccc;}

#case td {
	padding: 25px 15px;
	border-bottom: solid 2px #ccc;
	vertical-align: middle;
	font-weight: 500;
}

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

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

#price h3 {
	text-align: center;
	font-size: 2rem;
}

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

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

#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 {
	font-size: 2.5rem;
	margin: 20px 0 0px;
}

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

#price ul li .txt02 {
	padding: 0 0 50px;
	color: #999999;
	font-weight: 500;
	font-size: 2rem;
}

#price ol {margin: 0 auto;}

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

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

#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: 1200px;
	margin: auto;
	font-size: 2rem;
	color: #5c5c5c;
}

#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: 220px;
	height: 50px;
	background: url(../img/simulation_01.png) no-repeat center center;
	background-size: 100%;
	position: absolute;
	top: -60px;
	right: 0;
	left: 0;
	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;
	width: 130px;
}

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

#price .simulation p {
	margin: 30px auto 0;
	width: 80%;
	max-width: fit-content;
}

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

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

#price .example-wrap {
	width: 85%;
	max-width: 900px;
	margin: auto;
	display: grid;
	justify-content: center;
	grid-template-columns: 330px 330px;
	gap: 3em;
}

#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: -35px;
	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: 90%;
	max-width: 1200px;
	margin: 50px auto 30px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5em;
}

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

#prepare ul li .ttl {
	font-size: 2.3rem;
	text-align: center;
	padding: 25px 0;
}

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

#prepare ul.support {
	margin: 150px 0 0;
	width: 100%;
	max-width: 100%;
	grid-template-columns: 1.5fr 3fr;
	gap: 0;
}

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

#prepare ul.support li:first-child {
	background: url(../img/prepare_03.png) no-repeat center center;
	background-size: cover;
}

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

#prepare ul.support li:last-child h3 {
	text-align: left;
	padding: 0 0 50px;
}

#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: 70%;
	max-width: 550px;
	margin: auto;
}

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

/* #introduction */
#introduction ul {
	display: flex;
	justify-content: space-evenly;
	width: 90%;
	max-width: 1200px;
	padding: 40px 0px;
	margin: auto;
	align-items: center;
	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:first-child img {
	display: block;
	width: 90px;
	margin: auto;
}

#introduction ul li:nth-child(2) {width: 25%;}
#introduction ul li:last-child {width: 50%;}
#introduction ul .ttl {padding: 0 0 5px;}

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

form ul {padding: 15px 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: 15px 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 {
	display: block;
	margin: 50px 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:550px;
	margin:30px auto !important;
	padding:10px !important;
	color:#e24227 !important;
	text-align:center;
	border:2px solid #e24227 !important;
}

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

/* #thanks */
#thanks {
	width: 800px;
	text-align: center;
	margin: 200px 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: fit-content;
	margin: 0 auto;
	text-align: left;
}

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