@charset "utf-8";
/*  General CSS*/

/*  共通 */
.fs12{font-size: 12px;}.fs18{font-size: 18px;}.fs20 {font-size: 20px;}.fs22{font-size: 22px;}.fs26{font-size: 26px;}.fs32 {font-size: 32px;}
.mb10{margin-bottom: 10px !important;}.mb20{margin-bottom: 20px !important;}.mb30{margin-bottom: 30px !important;}
.mb50 {margin-bottom: 50px !important;}.mb100{margin-bottom: 100px !important;}
.center {text-align: center;}.center_l {text-align: center;}.right {text-align: right;}.left {text-align: left;}
.flexbox {
	-webkit-display: flex;
	display: flex;
	-webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	width: 100%;
}
.c3 {width: 30%;}
.c3 img {height: auto !important;}
.sp_on {display: none;}
.a-hover:hover {
	transition-property: all;
	transition: 0.3s linear;
	opacity: 0.6;
}
.text {line-height: 220%;}
.wb {font-weight: bold;}
.fcB {color: #0095e3;}
.fcW {color: #ffffff;}
.fcY {color: #f6ff00;}

/* ヘッダー
------------------------------------------------------------*/
header {
	width: 100%;
	position: relative;
	padding: 10px 30px 0;
}
h1 {font-size: 16px;}
header .logo {
	width: 245px;
	margin: 0 auto 20px;
}
header .cv-btn {
	position: fixed;
	right: 80px;
	top: 20px;
	z-index: 99;
}
.cv-btn {display: block;}
.cv-btn:hover {animation: anima1 2s linear infinite;}
@keyframes anima1 {
    7% {transform: translateY(-15px);}
    15% {transform: translateY(0);}
    20% {transform: translateY(-7px);}
    25% {transform: translateY(0);}
}

/* ナビゲーション
------------------------------------------------------------*/
/* バーガーメニュー */
.hamburger {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 100;
	width: 45px;
	height: 45px;
	border: none;
	background: #1ba1e6;
	border-radius: 10px;
	cursor: pointer;
}
.hamburger__line {
	position: absolute;
	left: 10px;
	width: 25px;
	height: 2px;
	background-color: #ffffff;
	transition: all .4s;
}
.hamburger__line:nth-of-type(1) {top: 13px;}
.hamburger__line:nth-of-type(2) {top: 22px;}
.hamburger__line:nth-of-type(3) {top: 31px;}
/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {transform: translateY(9px) rotate(-45deg);}
.hamburger.active .hamburger__line:nth-of-type(2) {opacity: 0;}
.hamburger.active .hamburger__line:nth-of-type(3) {transform: translateY(-9px) rotate(45deg);}
.nav {
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100vh;
	background-color: #fff;
	box-shadow: -2px 0 4px rgba(0,0,0,.1);
	transform: translateX(102%);
	transition: transform .4s;
	z-index: 90;
}
.nav.active {transform: translateX(0);}
.nav__list {
	margin: 0;
	padding: 100px 0 0;
	list-style: none;
}
.nav__item {padding: 0 20px;}
.nav__link {
	display: block;
	padding: 15px 0;
	color: #333;
	text-decoration: none;
	border-bottom: 1px solid #eee;
}

/* fv
------------------------------------------------------------*/
.fv-area {
	position: relative;
	width: 100%;
	height: 44vw;
	background-image: url("../images/fv-bg.webp");
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}
.fv-area::after {
	content: '';
	width: 142px;
	height: 72px;
	display: block;
	background: url("../images/scroll.svg") no-repeat;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.fv-area .fv-item {
	position: absolute;
	right: 6%;
	top: 30%;
}
.fv-area .fv-item .fv-copy {
	position: relative;
	background: #82c7e6;
	border-radius: 20px;
	padding: 4.5vw;
}
.fv-area .fv-item .fv-copy::before {
	content: '';
	width: 8vw;
	height: 8.5vw;
	display: block;
	background: url("../images/makidume-illust.svg") no-repeat;
	position: absolute;
	top: -5vw;
	left: 0;
	right: 0;
	margin: auto;
}
.fv-area .fv-item .fv-copy div,
.fv-area .fv-item .fv-copy div strong,
.fv-area .fv-item .fv-copy p,
.fv-area .fv-item .fv-copy p span {text-align: center;letter-spacing: 0;}
.fv-area .fv-item .fv-copy div,
.fv-area .fv-item .fv-copy div strong {color: #4d4d4d;}
.fv-area .fv-item .fv-copy div {
	font-size: 2vw;
	background: url("../images/line.svg") no-repeat center bottom;
	background-size: 40%;
	padding-bottom: 1.5vw;
	margin-bottom: 1.5vw;
}
.fv-area .fv-item .fv-copy div strong {font-size: 2.7vw;}
.fv-area .fv-item .fv-copy p {font-size: 1.8vw;}
.fv-area .fv-item .fv-copy p span {font-size: 1.8vw;}

/* contents
------------------------------------------------------------*/
#wrap {
	width: 100%;
	overflow: hidden;
}
.title {
	text-align: center;
	margin-bottom: 100px;
}
.title span {
	font-size: 48px;
	font-weight: bold;
	background: linear-gradient(transparent 50%, #f6ff00 50%);
}
.contents {
	max-width: 1200px;
	width: 90%;
	margin: auto;
	padding: 150px 0;
}
.contentsS {
	max-width: 1000px;
	width: 90%;
	margin: auto;
	padding: 150px 0;
}
.trouble-top {
	background: #c5e5f3;
	padding-top: 150px;
	position: relative;
}
.trouble-top::after {
	content: '';
	display: block;
	width: 62.5vw;
	height: 5vw;
	background: url("../images/trouble-bg.svg")no-repeat;
	background-position: center center;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: -5vw;
}
.trouble-list {
	max-width: 1200px;
	width: 90%;
	margin: 0 auto 50px;
	background: url("../images/trouble.webp") no-repeat;
	background-position: bottom center;
	background-size: auto;
	padding-bottom: 380px;
}
.trouble-list li {
	width: 48%;
	margin: 1%;
	background: #ffffff;
	font-weight: bold;
	text-align: center;
	border: solid 3px #82c7e6;
	border-radius: 10px;
	letter-spacing: 0;
	padding: 15px 10px;
}
.trouble-copy {
	background: url("../images/makidume-illustline.webp") no-repeat bottom center;
	padding-bottom: 150px;
	margin-bottom: 50px;
}
.feature {
	max-width: 780px;
	width: 100%;
	margin: auto;
	border: solid 2px #82c7e6;
	border-radius: 10px;
	padding: 30px;
}
.feature h3 {
	color: #ffffff;
	background: #1ba1e6;
	padding: 5px;
	border-radius: 30px;
	margin-bottom: 10px;
}
.feature li {
	background: url("../images/ls.svg") no-repeat;
	background-position: center left;
	background-size: 25px;
	padding: 10px 0 10px 30px;
	border-bottom: 1px solid #cccccc;
}
#reason {
	width: 100%;
	background: url("../images/feet-illust.webp") no-repeat;
	background-position: top left;
	background-size: 54%;
}
#reason h2 {
	text-align: right;
	font-size: 44px;
}
#reason .copy {
	width: 600px;
	float: right;
}
#reason .point {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#reason .point li {margin-left: 5%;}
#reason .point li:first-child,#reason .point li:nth-child(4) {margin-left: 0 !important;}
#reason .point li:nth-child(2) {margin-top: 10%;}
#reason .point li:nth-child(3) {margin-top: 20%;}
#reason .point li:nth-child(4) {margin-top: -5%;}
#reason .point li:nth-child(5) {margin-top: 5%;}
.cv-area {
	width: 100%;
	background: #82c7e6;
	padding: 50px 0;
}
.cv-area h2 {
	width: 320px;
	margin: auto;
	background: #ffffff;
	border-radius: 30px;
	padding: 15px 30px;
}
.cv-area .cv-btn {
	width: 300px;
	margin: auto;
}
#flow {
	background-image: url("../images/bg-flow.webp"),url("../images/feet-img.webp");
	background-repeat: no-repeat;
	background-position: top left,bottom center;
	background-size: 7%,auto;
	padding-bottom: 200px;
}
#flow .step li {
	border: solid 2px #82c7e6;
	border-radius: 20px;
	margin: 2.5% 1.5%;
	padding: 3% 2% 2%;
	position: relative;
}
#flow .step li span {
	max-width: 250px;
	width: 80%;
	background: #82c7e6;
	border-radius: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	margin: auto;
}
#flow .step .cv-btn {
	max-width: 220px;
	width: 100%;
	margin: auto;
}
#fee {
	background-image: url("../images/bg-fee.webp");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 7%;
}
.fee-box {
	width: 100%;
	border: 3px solid #1ba1e6;
	border-radius: 20px;
	padding: 50px;
}
.fee-box .fee-list {
	max-width: 780px;
	width: 100%;
	margin: auto;
}
.fee-box .fee-list dl {
	display: flex;
	padding: 15px;
	border-bottom: solid 1px #82c7e6;
}
.fee-box .fee-list dl dt {width: calc(100% - 100px);}
.fee-box .fee-list dl dd {width: 100px;text-align: right;}
.fee-box .notes {
	max-width: 780px;
	width: 100%;
	margin: auto;
	background: #f2f2f2;
	padding: 30px;
}
#faq {
	background-image: url("../images/bg-Questions.webp");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 7%;
}
.accordion {
	width: 100%;
	margin-bottom: 20px;
	border-radius: 20px;
	background: #e2f2f9;
	overflow: hidden;
}
.accordion summary {
    padding: 10px 50px 10px 20px;
    cursor: pointer;
	background: url("../images/plus.svg") no-repeat;
	background-position: 98% center;
	background-size: 25px;
	list-style: none;
}
.accordion summary::-webkit-details-marker {display: none;}
.accordion[open] summary {
	background: url("../images/minus.svg") no-repeat;
	background-position: 98% center;
	background-size: 25px;
}
.accordion .accordion-inner {
	background: #e2f2f9;
	padding: 0 20px 20px;
}
.accordion .accordion-inner div {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 20px;
    transition: transform .5s, opacity .5s;
	background: #ffffff;
}
.accordion[open] .accordion-inner div {
    transform: none;
    opacity: 1;
}
.accordion .accordion-inner ul li {
	background: url("../images/ls.svg") no-repeat;
	background-position: center left;
	background-size: 15px;
	padding-left: 20px;
}
#outline {
	width: 100%;
	background-color: #82c7e6;
	background-image: url("../images/bg-outline.webp");
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 7%;
}
#outline .footer-contents {
	max-width: 1200px;
	width: 90%;
	margin: auto;
	padding: 150px 0 100px;
}
#outline .copyright {
	width: 100%;
	padding: 10px;
	background: #1ba1e6;
}
#outline h2 {font-size: 48px;}
#outline .cv-btn {
	width: 300px;
	margin: 0 auto 50px;
}
#outline .detail {width: 57%;}
#outline .map{
	width: 40%;

}
#outline .map iframe{
	width: 100%;
	height: 100%;
}
#outline .detail dl {margin-bottom: 5px;}
#outline .detail dl dt {
	background: #ffffff;
	width: 130px;
	padding: 20px 15px;
}
#outline .detail dl dd {
	background: #ffffff;
	width: calc(100% - 135px);
	padding: 15px;
}
#outline .detail > div {
	background: #ffffff;
	padding: 15px;
	margin-bottom: 5px;
}
#outline .detail > div a {
	display: block;
	max-width: 250px;
	width: 100%;
	margin: auto;
}
#pagetop {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    transform: rotate(90deg);
    line-height: 1.5rem;
    color: #1ba1e6;
    padding: 0 0 0 35px;
    border-top: solid 2px;
	opacity: 0;
	transition: 0.8s ease;
	pointer-events: none;
	z-index: 99!important;
}
#pagetop a {
    font-size: 18px;
    font-weight: bold;
	color: #1ba1e6;
}
#pagetop::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 20px;
    border-top: solid 2px;
    transform: rotate(35deg);
    transform-origin: left top;
}
#pagetop:hover {opacity: 0.5 !important;}
#pagetop.visible {
  opacity: 1;
  pointer-events: auto;
}

/*----------------------------------------------------------*/
/* ブレイクポイント
------------------------------------------------------------*/
/* 1024px以下から
------------------------------------------------------------*/
@media only screen and (max-width:1024px){
	a[href^="tel:"]{pointer-events: auto;}.text {line-height: 180%;}
	.fs16,.fs18,.fs20 {font-size: 14px;}.fs22 {font-size: 16px;}
	.fs26,.fs32{font-size: 18px;}
	.mb100 {margin-bottom: 50px !important;}.mb50 {margin-bottom: 30px !important;}	
	header {padding: 10px 15px 0;}
	h1 {font-size: 12px;}
	header .logo {width: 180px;margin: 0 auto 15px;}
	header .cv-btn {width: 200px;right: 70px;}
	.fv-area::after {width: 110px;height: 56px;}
	.title {margin-bottom: 50px;}
	.title span {font-size: 20px;}
	.contents,.contentsS,#outline .footer-contents {padding: 80px 0;}
	.trouble-top {padding-top: 80px;}
	.trouble-top::after {width: 100vw;height: 8.4vw;bottom: -8.4vw;}
	.trouble-top .fcB {padding-bottom: 30px;}
	.trouble-list {
		margin: 0 auto 50px;
		background-size: 100%;
		padding-bottom: 40vw;
	}
	.trouble-copy {
		background-size: 70%;
		padding-bottom: 10vw;
		margin: 30px 0;
	}
	#reason h2 {font-size: 20px;}
	#reason .copy {width: 380px;}
	.cv-area h2 {width: 250px;padding: 10px 20px;}
	.cv-area .cv-btn {width: 250px;}
	#flow .step li span {top: -13px;}
	#flow {
		background-image: none,url("../images/feet-img.webp");
		background-size: 0, 1200px;
		padding-bottom: 150px;
	}
	#fee,#faq,#outline {background-image: none;}
	.accordion {margin-bottom: 15px;border-radius: 10px;}
	.accordion summary {
		padding: 10px 40px 10px 15px;
		background-position: 96% center;
		background-size: 20px;
	}
	.accordion[open] summary {
		background-position: 96% center;
		background-size: 20px;
	}
	.accordion .accordion-inner {padding: 0 10px 10px;}
	.accordion .accordion-inner div {padding: 10px;}
	#outline h2 {font-size: 20px;}
	#outline .cv-btn {
		width: 220px;
		margin: 0 auto 30px;
	}
	#outline .detail {width: 100%;}
	#outline .map {width: 100%;height: 350px;}
	#outline .detail dl dt {width: 90px;padding: 10px;}
	#outline .detail dl dd {width: calc(100% - 95px);padding: 10px;}
	#outline .detail > div {padding: 10px;}
	#outline .detail > div a {max-width: 200px;}
	#outline .detail > div a img {height: auto;}
}

/* 750px以下から
------------------------------------------------------------*/
@media only screen and (max-width:750px){
	h1 {margin-right: 50px;}
	.sp_non {display: none;}
	.sp_on {display: block;}
	.hamburger {top: 10px;right: 10px;}
	.c3 {width: 100%;}
	.center_l {text-align: left;}
	header .cv-btn {display: none;}
	.fv-area {
		height: 117vw;
		background-image: url("../images/fv-bgsp.webp");
		background-size: cover;
	}
	.fv-area::after {display: none;}
	.fv-area .fv-item {
		right: 0;
		left: 0;
		margin: auto;
		top: 15%;
		width: 80%;
	}
	.fv-area .fv-item .fv-copy {background: rgba(130,199,230,.8);padding: 10% 0;}
	.fv-area .fv-item .fv-copy::before {width: 20vw;height: 22vw;top: -13vw;}
	.fv-area .fv-item .fv-copy div {
		font-size: 5vw;
		background-size: 30%;
		padding-bottom: 4.5vw;
		margin-bottom: 4vw;
	}
	.fv-area .fv-item .fv-copy div strong {font-size: 5.5vw;}
	.fv-area .fv-item .fv-copy p {color: #ffffff;font-size: 4.5vw;}
	.fv-area .fv-item .fv-copy p span {color: #f6ff00;font-size: 4.5vw;}
	.trouble-list li {width: 100%;padding: 10px;}
	.trouble-copy {
		background-size: 100%;
		padding-bottom: 15vw;
		margin: 0 0 30px;
	}
	.feature {padding: 20px;}
	.feature li {
		background-size: 20px;
		padding: 5px 0 5px 25px;
	}
	#trouble .c3 {width: 280px;margin: auto;}
	#reason {background-size: 370px;}
	#reason h2 {
		text-align: center;
		padding-top: 100px;
	}
	#reason .copy {
		float: none;
		width: 100%;
		margin-bottom: 30px;
	}
	#reason .point li {
		margin-top: 0 !important;
		margin-bottom: 30px;
		margin-left: 0;
	}
	#reason .point li:last-child {margin-bottom: 0;}
	#reason .point li .img {
		max-width: 300px;
		width: 80%;
		margin: auto;
	}
	#flow .step li {
		border-radius: 10px;
		margin: 4% 0;
		padding: 6% 4% 4%;
	}
	.fee-box {border-radius: 10px;padding: 5%;}
	.fee-box .fee-list dl {padding: 10px;}
	.fee-box .fee-list dl dt {width: calc(100% - 65px);}
	.fee-box .fee-list dl dd {width: 65px;}
	.fee-box .notes {padding: 15px;}
}
