@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,200,300,400,500,600,700,900&display=swap');

/* リセットCSS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* /リセットCSS */


/****************************************
		clearfix
*****************************************/
.cf::before,
.cf::after {
	content: " ";
	display: table;
}
.cf::after {
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.cf {
	display: inline-block;
	*zoom: 1;
}

* html .cf {
	height: 1%;
}
/* /clearfix */

/****************************************
		base
*****************************************/
*{
	box-sizing: border-box;
}
body{
	max-width: 100%;
	width: 100%;
	position: relative;
	font-size: 18px;
	font-family: 'Noto Sans JP','ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	color: #000000;
	letter-spacing: 0.04em;
}

p{
	line-height: 1.6em;
	letter-spacing: 0.05em;
	word-break: break-word;
	overflow-wrap : break-word;
}

h1,h2,h3,h4,h5,h6{
	line-height: 1.4em;
	letter-spacing: 0.05em;
	word-break: break-word;
	overflow-wrap : break-word;
}

img{
	margin: 0 auto;
	line-height: 0;
	padding: 0;
	vertical-align: bottom;
	max-width: 100%;
}
a{
	transition: 0.3s;
	display: inline-block;
	text-decoration: none;
	color: inherit;
}
a:hover{
	transition: 0.3s;
	color: inherit;
	opacity: 0.7;
}

button{
	font-size: 100%;
	border: 0;
	padding: 0;
	font-family: inherit;
	background: none;
	border: none;
	outline: none;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

body ::-webkit-scrollbar {
	height: 15px;
	width: 15px;
	display: inline-block;
}
body ::-webkit-scrollbar-track {
	background: #EEEEEE;
}

body ::-webkit-scrollbar-thumb {
	background: #51BDD7;
}


.inner{
	max-width: 1200px;
	margin: 0 auto;
	width: 90%;
	box-sizing: border-box;
	display: block;
}

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

.section_tit{
	text-align: center;
	margin: 0 0 1em;
    font-size: 37px;
    font-weight: 800;
    letter-spacing: 0.14em;
}
.sub_tit{
	text-align: center;
	margin: 0 0 0.6em;
	font-size: 33px;
	font-weight: 700;
    letter-spacing: 0.03em;
}

.big{
	font-size: 1.2em;
}
.small{
	font-size: 0.85em;
}
.indent-half{
	text-indent: -0.5em;
	display: inline-block;
}
.indent1em{
	text-indent: 1em;
	display: inline-block;
}
.txt_left{
	text-align: left;
}
.txt_center{
	text-align: center;
}
.txt_right{
	text-align: right;
}

.f_color_wh{
	color: #fff;
}


sup{
	font-size: 0.8em;
	vertical-align: top;
}

.link_line{
	color: #00a0e9;
	text-decoration: underline;
	text-underline-offset: 0.3em;
    font-weight: 600;
}
.link_line:hover{
	opacity: 0.6;
	color: #00a0e9;
}

.link_btn{
	position: relative;
	background: #FFA800;
	color: #000000;
	text-align: center;
	max-width: 370px;
	width: 90%;
	box-sizing: border-box;
	border-radius: 50px;
	display: block;
	margin: 1em auto 0;
	padding: 1.4em;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 4px 4px 0 rgb(0 0 0 / 60%);
}
.link_btn:hover{
	opacity: 1;
	background: #FFA800;
}

a:hover .link_btn{
	opacity: 1;
}

/****************************************
		fade
*****************************************/
.fadein {
  transition: all 2s;
  opacity: 0;
  visibility: hidden;
  transform: translate(0px, 20px);
}

.fadein.scrollin {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}

.fadein + .fadein{
	transition-delay: 0.2s;
}
.fadein + .fadein + .fadein{
	transition-delay: 0.4s;
}
.fadein + .fadein + .fadein + .fadein{
	transition-delay: 0.6s;
}
.fadein + .fadein + .fadein + .fadein + .fadein{
	transition-delay: 0.8s;
}
.fadein + .fadein + .fadein + .fadein + .fadein + .fadein{
	transition-delay: 1s;
}

/****************************************
		header
*****************************************/
header{
	top: 0;
	z-index: 10;
	margin: 0 auto;
	width: 100%;
	padding: 20px 38px 30px;
	background: #fff;
}

/****************************************
		footer
*****************************************/

footer{
	text-align: left;
	overflow: hidden;
	padding: 40px 45px 30px;
	position: relative;
	z-index: 1;
	border-top: solid 1px #000;
}

footer .copy_wrap{
	float: left;
}
footer .foot_nav{
	float: right;
	text-align: right;
	padding-top: 0.5em;
	padding-bottom: 10px;
}


footer .copy_wrap .foot_logo{
	margin-right: 20px;
	display: inline-block;
	padding-bottom: 10px;
}
footer .copy_wrap small{
	display: inline-block;
	font-size: 17px;
    letter-spacing: 0.11em;
	padding-bottom: 10px;
}

footer .foot_nav li{
	display: inline-block;
	font-size: 20px;
}
footer .foot_nav li + li:before{
	content: "";
	margin: 0 0.5em;
	background: #000;
	height: 1.2em;
	width: 1px;
	display: inline-block;
	vertical-align: text-bottom;
}

/****************************************
		totop
*****************************************/
.totop{
	display: none;
	margin: 0 auto;
	box-sizing: border-box;
	left: 0;
	right: 5vw;
	bottom: 10px;
	pointer-events: none;
	position: fixed;
	z-index: 5;
}
.totop a{
	float: right;
	pointer-events: all;
	text-decoration: none;
	transition: .3s;
}
.totop a:hover{
	opacity: 0.8;
	transition: .3s;
}
.totop a img{
	width: 70px;
	height: auto;
}/****************************************
		hero
*****************************************/

.hero_wrap {
	position: relative;
	color: #fff;
	background: url(../img/hero.png) center center/cover no-repeat;
	padding: 177px 0 210px;
}

.hero_wrap .txt {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto;
	font-weight: 600;
	font-size: 20px;
}

.hero_wrap .txt .pop {
	margin: 0 0 0 30px;
}

.hero_wrap .txt .tit {
	font-size: 56px;
	line-height: 1.3;
	margin-bottom: 0.3em;
	font-weight: 800;
}

.hero_wrap .txt p {
	font-size: 28px;
	letter-spacing: 0.04em;
	line-height: 1.5;
}

.hero_wrap .txt .link_btn {
	margin: 39px 0 0;
}


/****************************************
		merit
*****************************************/

.merit_wrap {
	padding: 68px 0 0;
}

.merit_wrap .merit_list {
	margin-top: 45px;
}

.merit_wrap .merit_list li .inner {
	display: flex;
	justify-content: space-between;
	padding: 40px 0;
}

.merit_wrap .merit_list li .txt {
	width: 49%;
}

.merit_wrap .merit_list li .img {
	width: 43.7%;
}

.merit_wrap .merit_list li:nth-of-type(even) {
	background: #EEEEEE;
}

.merit_wrap .merit_list li:nth-of-type(even) .inner {
	flex-direction: row-reverse;
}

.merit_wrap .merit_list li .head {
	display: flex;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 20px;
}

.merit_wrap .merit_list li .num {
	display: block;
	background: #51BDD7;
	color: #000;
	border-radius: 50%;
	font-size: 48px;
	font-weight: 800;
	width: 94px;
	height: 94px;
	text-align: center;
	padding-top: 0.7em;
	margin-right: 20px;
}

.merit_wrap .merit_list li .tit {
	display: block;
	font-weight: 800;
	font-size: 33px;
	line-height: 1.2;
	flex: 1;
}

.merit_wrap .merit_list li .txt p {
	font-weight: 700;
	text-align: left;
	font-size: 22px;
	line-height: 1.7;
}


/****************************************
		slide
*****************************************/

.slide_wrap {
	padding: 73px 0 80px;
	background: #EEEEEE;
	text-align: center;
}

.slide_wrap .copy {
	font-size: 22px;
	font-weight: 600;
	margin: 60px auto 0;
}

.slider .item {
	aspect-ratio: 3 / 2;
	position: relative;
	margin: 85px auto 0;
}

.slider .item img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.slider .item:before {
	content: "";
	position: absolute;
	z-index: 10;
	top: -70px;
	left: -15px;
	display: block;
	width: 155px;
	height: 150px;
	background: url(../img/slide_pop.png) center center/cover no-repeat;
}

.slider {
	margin: 0 auto;
	padding-bottom: 60px;
}

.slider img {
	width: 100%;
}

.slider .slick-slide {
	height: auto!important;
}

.slider .slick-arrow {
	z-index: 2!important;
}

.slider .slick-next {
	right: 0!important;
}

.slider .slick-prev {
	left: 0!important;
}

.slick-dots {
	bottom: 0 !important;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-dots li {
	margin: 0 11px !important;
	background: #DCDCDC !important;
	opacity: 1 !important;
	width: 25px !important;
	height: 25px !important;
	border-radius: 50% !important;
	overflow: hidden;
}

.slick-dots li button {
	width: 100%;
	height: 100%;
	display: block;
}

.slick-dots li button:before {
	content: none;
}

.slick-dots li.slick-active button {
	background: #51BDD7 !important;
}

.slider .slick-slide {
	margin-right: 1vw!important;
	margin-left: 1vw!important;
}


/****************************************
		step
*****************************************/

.step_wrap {
	padding: 75px 0 98px;
}

.step_wrap .inner {
	max-width: 1310px;
}

.step_wrap .step_list {
	position: relative;
	margin: 90px auto 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.step_wrap .step_list li {
	position: relative;
	text-align: center;
	width: 33.333%;
}

.step_wrap .step_list li:after {
	content: "";
	position: absolute;
	background: #51BDD7;
	width: calc(100%);
	height: 10px;
	left: calc(-50%);
	top: 20px;
	z-index: -1;
}

.step_wrap .step_list li:first-child:after {
	display: none;
}

.step_wrap .step_list li .num {
	font-weight: bold;
	background: #fff;
	border: solid 1px #000;
	border-radius: 50px;
	display: inline-block;
	padding: 0.5em;
	letter-spacing: 0.1em;
	font-size: 24px;
	min-width: 170px;
	margin-bottom: 41px;
}

.step_wrap .step_list li .txt {
	width: 82%;
	margin: 0 auto;
}

.step_wrap .step_list li .txt .ico {
	min-height: 165px;
	display: flex;
	align-items: flex-end;
}

.step_wrap .step_list li .txt .tit {
	font-size: 32px;
	font-weight: 700;
	margin: 0.9em auto 0.7em;
}

.step_wrap .step_list li .txt p {
	text-align: left;
	font-size: 22px;
}


/****************************************
		app
*****************************************/

.app_wrap {
	padding: 79px 0 76px;
	color: #fff;
	text-align: center;
	background: url(../img/app.png) center center/cover no-repeat;
}

.app_wrap .section_tit {
	margin: 0 0 0.4em 1em;
}

.app_wrap p {
	font-size: 22px;
}

.app_wrap .link_btn {
	margin-top: 1.8em;
}


/****************************************
		price
*****************************************/

.price_wrap {
	padding: 86px 0 60px;
	text-align: center;
}

.price_wrap .price {
	margin: 25px auto 0;
	display: inline-block;
	overflow: hidden;
	font-size: 42px;
	font-weight: 800;
	text-align: center;
	line-height: 1.25;
	background: linear-gradient(transparent 80%, #51BDD7 80%);
}

.price_wrap .payment {
	margin-top: 84px;
}

.price_wrap .payment .border_box {
	border: solid 1px #000;
	padding: 14px 20px 23px;
	margin-top: 35px;
}

.price_wrap .payment .tit {
	font-size: 43px;
	font-weight: 800;
	text-align: center;
	letter-spacing: 0.02em;
	margin: 0 0 0.3em;
}

.price_wrap .payment p {
	font-size: 21px;
}

.price_wrap .attention {
	text-align: left;
	margin-top: 51px;
}

.price_wrap .attention p {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 22px;
	line-height: 1.4;
	letter-spacing: 0.03em;
}

.price_wrap .attention p + p {
	margin-top: 0.6em;
}


/****************************************
		sns
*****************************************/

.sns_wrap {
	padding: 60px 0 97px;
	background: #51BDD7;
	text-align: center;
}

.sns_wrap .copy {
	margin: 1.4em auto 1.2em;
	font-weight: 800;
	font-size: 40px;
	line-height: 1.7;
	text-align: center;
}

.sns_wrap .copy .big {
	letter-spacing: 0.07em;
}

.sns_wrap .copy .small {
	font-size: 0.95em;
}


/****************************************
		service
*****************************************/

.service_wrap {
	padding: 90px 0 155px;
}

.service_wrap table {
	margin: 105px auto 0;
}

.service_wrap table th {
	vertical-align: middle;
	text-align: center;
	padding: 1em 0.5em 1em;
	background: #E6E3DB;
	font-size: 24px;
	font-weight: 600;
	border-bottom: solid 1px #fff;
	width: 264px;
	word-break: break-word;
	overflow-wrap: break-word;
}

.service_wrap table td {
	text-align: left;
	padding: 1em 1.5em 1em 2em;
	font-weight: 600;
	line-height: 1.7;
	background: #F3F3F3;
	border-bottom: solid 1px #fff;
}

.service_wrap table td p {
	text-indent: -1em;
	padding-left: 1em;
}



/****************************************
		contact
*****************************************/

.contact_wrap {
	padding: 40px 0 36px;
}

.contact_wrap .contact_link {
	min-height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 25px;
	letter-spacing: 0.01em;
}

.contact_wrap .contact_link .tit {
	border-right: solid 1px #000;
	min-height: 100px;
	display: flex;
	align-items: center;
	font-weight: 600;
	padding-right: 1.2em;
	margin-right: 1.4em;
}



/****************************************
		mobile
*****************************************/

.pc {
	display: block;
}

.sp {
	display: none;
}

img.pc {
	display: inline-block !important;
}

img.sp {
	display: none !important;
}

@media (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	img.pc {
		display: none !important;
	}
	img.sp {
		display: inline-block !important;
	}
	.sp-scroll-x {
		overflow-x: scroll !important;
	}

	.br:before {
		content: "\A";
		white-space: pre;
	}

	body {
		font-size: 2.6vw;
		min-width: 0;
	}
	.section_tit {
		font-size: 6.5vw;
		margin-bottom: 3vw;
	}
	.sub_tit {
		font-size: 5vw;
		margin-bottom: 1em;
	}

	.link_btn {
		font-size: 4vw;
		width: 70%;
	}
	.inner {
		width: 92%;
	}

	header {
		padding: 4vw 4vw 4vw;
	}
	header .head_logo {
		width: 20vw;
	}

	footer {
		padding: 9vw 0 0;
		text-align: center;
	}
	footer .copy_wrap {
		float: none;
		text-align: center;
	}
	footer .copy_wrap .foot_logo {
		padding: 0 0 3vw;
	}

	footer .copy_wrap small {
		font-size: 2.6vw;
		padding-bottom: 5vw;
	}

	footer .foot_nav {
		float: none;
		text-align: center;
		padding: 3vw 0 7vw;
	}
	footer .foot_nav li {
		font-size: 3.6vw;
	}


	.totop {
		bottom: 2vw;
		right: 3.5vw;
	}
	.totop a img {
		width: 8vw;
	}
	.hero_wrap .txt .pop {
		margin: 0 0 0 3vw;
		width: 17vw;
	}
	.hero_wrap .txt .tit {
		font-size: 9vw;
	}
	.hero_wrap .txt p {
		font-size: 4vw;
	}
	.hero_wrap {
		background: url(../img/hero_sp.png) center center/cover no-repeat;
		padding: 20vw 0;
	}
	.hero_wrap .txt .link_btn {
		margin: 5vw 0 0;
	}

	.merit_wrap {
		padding: 15vw 0 0;
	}
	.merit_wrap .merit_list {
		margin-top: 3vw;
	}

	.merit_wrap .merit_list li .inner,
	.merit_wrap .merit_list li:nth-of-type(even) .inner {
		flex-direction: column;
		padding: 10vw 0 10vw;
	}
	.merit_wrap .merit_list li .head {
		margin: 0 auto 5vw;
	}
	.merit_wrap .merit_list li .txt {
		width: 90%;
		margin: 0 auto;
		width: 95%;
	}
	.merit_wrap .merit_list li .num {
		font-size: 7vw;
		width: 15vw;
		height: 15vw;
	}

	.merit_wrap .merit_list li .tit {
		font-size: 6vw;
	}
	.merit_wrap .merit_list li .txt p {
		font-size: 4vw;
	}
	.merit_wrap .merit_list li .img {
		width: 90%;
		margin: 5vw auto 0;
		text-align: center;
		width: 95%;
	}
	.slide_wrap {
		padding: 15vw 0 8vw;
	}
	.slide_wrap .copy {
		margin: 7vw auto 0;
		font-size: 4vw;
	}
	.slider .item:before {
		width: 15vw;
		height: 15vw;
		top: -3vw;
		left: -1vw;
	}
	.slider .item {
		margin-top: 10vw;
	}

	.slider {
		padding-bottom: 10vw !important;
	}
	.slick-dots li {
		width: 4vw !important;
		height: 4vw !important;
		margin: 0 2vw !important;
	}

	.step_wrap {
		padding: 15vw 0 10vw;
	}
	.step_wrap .step_list {
		flex-direction: column;
		margin: 15vw auto 0;
	}
	.step_wrap .step_list li {
		width: 100%;
		padding-bottom: 10vw;
	}
	.step_wrap .step_list li:after {
		width: 3vw;
		height: 100%;
		top: 0;
		left: 9vw;
	}
	.step_wrap .step_list li:first-child:after {
		display: block;
	}
	.step_wrap .step_list li:last-child:after {
		display: none;
	}
	.step_wrap .step_list li .num {
		width: 23%;
		margin: 0;
		float: left;
		min-width: 0;
		font-size: 4vw;
	}
	.step_wrap .step_list li .txt {
		float: right;
		width: 73%;
	}
	.step_wrap .step_list li .txt .ico {
		min-height: 0;
		width: 8vw;
		height: 8vw;
		margin: 0 auto;
		float: left;
		margin-bottom: 3vw;
		align-items: center;
		margin-right: 3vw;
	}
	.step_wrap .step_list li .txt .ico img {
		width: auto;
	}
	.step_wrap .step_list li .txt .tit {
		display: inline-block;
		font-size: 6vw;
		float: left;
		margin: 0;
		vertical-align: bottom;
		margin-bottom: 3vw;
	}
	.step_wrap .step_list li .txt p {
		display: block;
		clear: both;
		float: none;
		font-size: 4vw;
	}
	.app_wrap {
		padding: 15vw 0 15vw;
	}
	.app_wrap p {
		font-size: 4vw;
	}
	.app_wrap .section_tit {
		margin: 0 0 0.5em;
	}

	.price_wrap {
		padding: 15vw 0;
	}

	.price_wrap .price {
		font-size: 8vw;
		margin: 5vw auto 0;
	}
	.price_wrap .payment {
		margin-top: 20vw;
	}
	.price_wrap .payment .border_box {
		margin-top: 5vw;
		padding: 6vw 3vw 6vw;
	}
	.price_wrap .payment .tit {
		font-size: 7vw;
	}
	.price_wrap .payment p {
		font-size: 4vw;
	}
	.price_wrap .attention {
		margin-top: 10vw;
	}
	.price_wrap .attention p {
		font-size: 4vw;
	}
	.sns_wrap {
		padding: 15vw 0;
	}

	.sns_wrap .copy {
		font-size: 4.8vw;
	}

	.service_wrap {
		padding: 15vw 0;
	}
	.service_wrap table {
		margin: 10vw auto 0;
	}
	.service_wrap table th {
		width: 23vw;
		font-size: 3vw;
		vertical-align: top;
	}
	.service_wrap table td {
		padding: 1em 1.5em;
	}

	.contact_wrap .contact_link {
		flex-direction: column;
		font-size: 5vw;
		line-height: 1.6;
	}
	.contact_wrap .contact_link .tit {
		padding: 0 0 1em;
		margin: 0 0 1em;
		border: none;
		padding: 0;
		min-height: 0;
	}
}
