@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;400;500;700&display=swap');


/* ==========================================================================================================================================
	CSS reset
========================================================================================================================================== */
* ,*:before ,*:after {
	box-sizing:border-box;
	text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
}

html ,body ,div ,p ,span ,iframe ,a ,img ,
h1 ,h2 ,h3 ,h4 ,h5 ,h6 ,
dl ,dt ,dd ,ol ,ul ,li ,
form ,label ,em ,
table ,thead ,tbody ,tfoot ,tr ,th ,td ,
header ,footer ,nav ,article ,section ,aside {
	margin:0;
	padding:0;
	border:0 none;
	vertical-align:inherit;
	color:inherit;
	font-size:inherit;
	font-weight:inherit;
	font-family:inherit;
	font-style:inherit;
	text-decoration:inherit;
	
}




/* ==========================================================================================================================================
	common
========================================================================================================================================== */
@-webkit-keyframes blink {
	0%{opacity:0.1;} 100%{opacity:1;}
}
@keyframes blink{
	0%{opacity:0.1;} 100%{opacity:1;}
}

.blink {
	-webkit-animation:0.6s ease infinite alternate blink;
	animation:0.6s ease infinite alternate blink;
}


/* ================================================================================
	tag
================================================================================ */
html{
	scroll-behavior:smooth;
}
body{
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size:16px;
	line-height:1.6;
	color:#2e2a2a;
}

button ,input ,textarea ,select {
	font-size:16px;
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
button {
	padding:0.3em 1.5em;
}

h2{
	text-align:center;
	font-size:250%;
	font-weight:bold;
}
h2 strong{
	color:#e7161a;	
}
h3{
	font-size:140%;
	font-weight:bold;
}

img{
	max-width:100%;
	backface-visibility:hidden;
	-webkit-backface-visibility:hidden;
}
ol ,ul ,li {
	list-style:none;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}

a{
	color:#2e2a2a;
}

article section{
	max-width:1300px;
	margin:auto;
	padding:0 1em;
}

@media screen and (max-width:768px){
	h2{
		font-size:140%;
	}
	article section{
		width:100%;
		padding:0;
	}
}


/* ================================================================================
	class
================================================================================ */
#bodyOuter {
	width:100%;
	margin:0 auto;
}

.article-padding{
	padding: 5em 1.5em 6em;
}
.section-padding{
	padding: 5em 0 6em;
}

.altText{
	display:none!important;
}

@media screen and (min-width:769px){
	#bodyOuter {
		min-width:1300px;
	}
	.pc{
		display:block;
	}
	.sp{
		display:none!important;
	}
}
@media screen and (max-width:768px){
	#bodyOuter {
		width:480px;
		overflow:hidden;
	}
	.article-padding{
		padding: 3em 1em 3.5em;
	}
	.section-padding{
		padding: 3em 0 3.5em;
	}
	.pc{
		display:none!important;
	}
	.sp{
		display:block;
	}
}



/* ========================================
	title
======================================== */
.title_img{
	height:300px;
	background-position:50% 50%;
	background-repeat:no-repeat;
}
.title_img .h1{
	width:1300px;
	max-width:100%;
	height:100%;
	margin:0 auto;
	padding-bottom:2em;
	color:#fff;
	letter-spacing:0.1em;
	display:flex;
	justify-content:center;
	align-items:flex-start;
	flex-direction:column;
}
.title_img .sub{
	font-size:200%;
	font-weight:200;
}
.title_img .main{
	padding-top:0.2em;
	line-height:1.4;
	font-size:250%;
}
.title_img em{
	color:#ffeb00;
}
.title_img em em{
	font-size:130%;
	font-weight:900;
}


@media screen and (max-width:768px){
	.title_img {
		height:200px;
		background-size:cover;
		text-shadow:2px 2px 0.3em #000,2px 2px 0.3em #000;
	}
	.title_img .h1{
		padding:1em 1em 2em;
	}
	.title_img .sub{
		font-size:140%;
	}
	.title_img .main{
		font-size:150%;
	}

}





/* ========================================================================================================================
	header
======================================================================================================================== */
header{
	background:rgba(255,255,255,0.9);
	box-shadow:0 2px 10px #ccc;
	width:100%;
}
header .header{
	padding:5px 20px;
	display:flex;
	justify-content: space-between;
	align-items:center;
}
header .header img{
	display:block;
	height:60px;
}
header .header .menu ul{
	display:flex;
	align-items:center;
}
header .header .menu ul li{
	padding:0 10px;
}


/* ================================================================================
	hamburger-menu
================================================================================ */
.hamburger-menu{
	display:none;
}
@media screen and (max-width:768px){
	header .header{
		padding:15px 10px;
	}
	header .header img{
		max-height:50px!important;
	}
	header .header .logo{
		text-align:center;
		width:100%;
	}
	header .header .menu{
		display:none;
	}
	.hamburger-menu{
		display:block;
	}
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #2e2a2a;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #3584bb;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
	text-align:center;
    border-bottom: solid 1px #9d9b9b;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#000;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #FFF;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

}



/* ===============================================================================================================================================================
	FV
=============================================================================================================================================================== */
#fv{
	width:100%;
	max-width:1500px;
	margin:0 auto;
	background:url("images/fv.png") no-repeat 100% 40px / 50% auto;
}

#fv > section{
	max-width:100%;
}
#fv-catch{
	padding:1em 0;
	font-size:90%;
}

#fv .text img{
	max-width:700px;
}
@media screen and (max-width:768px){
	#fv {
		padding-top:1em;
		background-position: 50% 280px;
		background-size: 80%;
	}
		#fv .text img{
			max-width:768px;
			width:100%;
		}
}


/* ========================================
	fvlist
======================================== */
#fvlist{
	width:950px;
	max-width:100%;
	padding:1.5em 1em;
	display:flex;
	justify-content: space-between;
	text-align:left;
}
#fvlist li{
	width:calc(100% / 3 - 20px);
	padding:1em 1em 1em 2em;
	background:#ed4a4e;
	color:#FFF;
	box-shadow:0 0 10px rgba(0,0,10,0.15);
	border-radius: 1em;
}
#fvlist li h3{
	line-height:1.3;
	color:#ffeb00;
	text-align:center;
}
#fvlist li h3 span{
	font-size:200%;
}
#fvlist li p{
	text-align:right;
	padding:0 1em 0 0;
	font-weight:500;
}


#fv h2{
	padding:1em 0 1.5em;
}
#fv h2 strong{
	color:#e7161a;
}

@media screen and (max-width:768px){
	#fvlist{
		width:100%;
		padding:240px 0 0;
		font-size:95%;
		flex-direction:column;
	}
	#fvlist li{
		width:100%;
		margin-bottom:1em;
		padding: 0;
		border-radius: 0.5em;
		display:flex;
		justify-content:center;
		align-items:center;
		
	}
	#fvlist li h3{
		padding: 0em 0.4em;
	}
	/*#fvlist li h3 span{
		font-size:110%;
	}

	#fvlist li p{
		width:52%;
		padding:0.5em;
		text-align:left;
	}*/

}



/* ========================================
	cta
======================================== */
#fv .cta{
	padding-top:4em;
}

#fvcontact{
	display:flex;
	justify-content: center;
	align-items: center;
}

#fvcontact > li{
	text-align:center;
	padding:0 2em;
}
#fvcontact p{
	font-size: 160%;
	font-weight: bold;
	padding: 1em 0 0.5em;
}

@media screen and (max-width:768px){
	#fv .cta{
		padding-top:2em;
	}

	#fvcontact {
		flex-direction:column;
	}
	#fvcontact > li{
		padding:1em 0;
	}
}




/* ===============================================================================================================================================================
	Works
=============================================================================================================================================================== */
#works{
	background:#f2f2f2;
        overflow:hidden;
}
#works h2{
	padding-bottom:1.5em;
}
#works .slick-list{
	width:1200px;
	overflow:initial;
}

@media screen and (max-width:768px){
	#works{
		padding:2em 0;
	}

	#works .slick-list{
		width:100%;
		overflow:initial;
	}
}




/* ===============================================================================================================================================================
	three walls
=============================================================================================================================================================== */
#twalls{
}

#twalls .title_img{
	background-image:url(images/3walls_pc.png);
}
#twalls .title_img .main{
	line-height:1.1;
}

@media screen and (max-width:768px){
	#twalls .title_img{
		background-position:30% 50%;
	}
}


/* ================================================================================
	twalls_list
================================================================================ */
#twalls_list{
	width:900px;
	max-width:100%;
	margin:0 auto;
	padding-bottom:2em;
	display:flex;
	flex-direction:column;
	text-align:center;
}
#twalls_list > li{
	position:relative;
	display:flex;
	flex-direction: column;
	align-items: center;
	text-align:center;
	padding:2em 0;
}



/* ========================================
	twalls_list > h2
======================================== */
#twalls_list .h2{
	padding:0.5em 0 0.6em;
	line-height:1;
	font-size:140%;
	display:flex;
	--h2-bgcolor:#3486b8;
}
#twalls_list .h2 > h2{
	height:2.1em;
	padding:0 2em;
	font-size:100%;
	color:#FFF;
	background:var(--h2-bgcolor);
	display: flex;
	justify-content: center;
	align-items: center;
}
#twalls_list h2 strong{
	color:#FFF;
}
#twalls_list .h2::before,
#twalls_list .h2::after{
	content:"";
	width:0;
	height:0;
	border-style:solid;
	border-width:calc(2.1em / 2) 1em;
	border-color:transparent;
}
#twalls_list .h2::before{
	border-right-color:var(--h2-bgcolor);
}
#twalls_list .h2::after{
	border-left-color:var(--h2-bgcolor);
}


@media screen and (max-width:768px){
	#twalls_list .h2{
		font-size:120%;
	}
	#twalls_list .h2::before{
		margin-right:-1px;
	}
	#twalls_list .h2::after{
		margin-left:-1px;
	}
}



/* ========================================
	twalls_list > h3
======================================== */
#twalls_list h3{
	padding:0.5em 0 1em;
	font-size:180%;
	color:#3486b8;
}


@media screen and (max-width:768px){
	#twalls_list h3{
		font-size:130%;
	}
}



/* ========================================
	twalls_list balloon
======================================== */
#twalls_list > li .balloon_block{
	width:100%;
	min-height:calc(180px + 10px);
	padding:0 120px;
	--balloon-color:#c5c4c4;
}
#twalls_list > li:nth-child(1) .balloon_block{
	background:url(images/3walls_p1.png) 100% 10px no-repeat;
}
#twalls_list > li:nth-child(2) .balloon_block{
	background:url(images/3walls_p2.png) 0 10px no-repeat;
}
#twalls_list > li:nth-child(3) .balloon_block{
	background:url(images/3walls_p3.png) 100% 10px no-repeat;
}


#twalls_list .balloon {
	position:relative;
	display: block;
	padding: 0.4em 0.5em 0.5em;
	background: #FFF;
	border: solid 2px var(--balloon-color);
	border-radius:10px;
}

#twalls_list .balloon:before ,#twalls_list .balloon:after {
	content: "";
	position: absolute;
	top:50%;
	width:0;
	height:0;
	border-style:solid;
	border-color:transparent;
}

#twalls_list .balloon:before {
	border-width:11px 22px;
	margin-top:-10px;
	z-index:1;
}
#twalls_list .balloon:after {
	border-width:10px 20px;
	margin-top:-9px;
	z-index:2;
}

#twalls_list > li:nth-child(odd) .balloon:before ,
#twalls_list > li:nth-child(odd) .balloon:after {
	left:100%;
}
#twalls_list > li:nth-child(odd) .balloon:before {
	border-left-color:var(--h2-bgcolor);
}
#twalls_list > li:nth-child(odd) .balloon:after {
	border-left-color:#FFF;
}

#twalls_list > li:nth-child(even) .balloon:before ,
#twalls_list > li:nth-child(even) .balloon:after {
	right:100%;
}
#twalls_list > li:nth-child(even) .balloon:before {
	border-right-color:var(--h2-bgcolor);
}
#twalls_list > li:nth-child(even) .balloon:after {
	border-right-color:#FFF;
}


#twalls_list .balloon p{
	padding:0.5em 0;
	font-size:140%;
}
#twalls_list .balloon p span{
	font-weight:bold;
	color:#e7161a;	
}
#twalls_list .text{
	display:inline-block;
	margin-top:2em;
	padding:0.3em 2em 0.4em;
	font-size:120%;
	font-weight:bold;
	color:#FFF;
	background:#000;
	border-radius:2em;
}



@media screen and (max-width:768px){
	#twalls_list > li:nth-child(odd) .balloon_block{
		padding:0 100px 0 10px;
	}
	#twalls_list > li:nth-child(even) .balloon_block{
		padding:0 10px 0 100px;
	}

	#twalls_list > li:nth-child(odd) .balloon:after {
		margin-left:-1px;
	}
	#twalls_list > li:nth-child(even) .balloon:after {
		margin-right:-1px;
	}

	#twalls_list .balloon {
		padding:0.3em 0 0.4em;
	}
	#twalls_list .balloon p {
		font-size:110%;
	}
	#twalls_list .text {
		font-size:110%;
	}

}




/* ===============================================================================================================================================================
	3walls Answer
=============================================================================================================================================================== */
#twallsanswer{
	background:#ebf2f2;
	text-align:center;
}

#twallsanswer .twallsanswer_catch {
	display:block;
	text-align:center;
}

#twallsanswer p.ex{
	color:#889191;
	font-size:220%;
	font-weight:bold;
	padding:1em 0 0.5em;
}

@media screen and (max-width:768px){
	#twallsanswer .twallsanswer_catch {
		padding:2em 1em 0;
	}

	.ex_balloon {
	}
}



/* ========================================
	balloon
======================================== */
.ex_balloon {
	position:relative;
}
.ex_balloon > div {
	display:block;
	text-align:center;
}
.ex_balloon img {
	position:relative;
	opacity:0;
	transform:scale(0.3);
	transform-origin:bottom;
	-webkit-transition:all 0.6s ease;
	transition:all 0.6s ease;
}

.ex_balloon.on img {
	opacity:1;
	transform:scale(1);
}
.ex_balloon > div:nth-child(1) > img:nth-child(1) {
	transition-delay:0.2s;
}
.ex_balloon > div:nth-child(1) > img:nth-child(2) {
	transition-delay:0.5s;
}
.ex_balloon > div:nth-child(1) > img:nth-child(3) {
	transition-delay:0.8s;
}
.ex_balloon > div:nth-child(1) > img:nth-child(4) {
	transition-delay:1.1s;
}
.ex_balloon > div:nth-child(2) > img:nth-child(1) {
	transition-delay:1.4s;
}
.ex_balloon > div:nth-child(2) > img:nth-child(2) {
	transition-delay:1.7s;
}
.ex_balloon > div:nth-child(2) > img:nth-child(3) {
	transition-delay:2.0s;
}
.ex_balloon > div:nth-child(2) > img:nth-child(4) {
	transition-delay:2.3s;
}


@media screen and (max-width:768px){
	.ex_balloon {
		height:480px;
	}

	.ex_balloon > div > img {
		position:absolute;
	}

	.ex_balloon > div:nth-child(1) > img:nth-child(1) {
		top:0;
		left:130px;
	}
	.ex_balloon > div:nth-child(1) > img:nth-child(2) {
		top:80px;
		left:10px;
	}
	.ex_balloon > div:nth-child(1) > img:nth-child(3) {
		top:90px;
		left:230px;
	}
	.ex_balloon > div:nth-child(1) > img:nth-child(4) {
		top:170px;
		left:100px;
	}
	.ex_balloon > div:nth-child(2) > img:nth-child(1) {
		top:260px;
		left:0px;
	}
	.ex_balloon > div:nth-child(2) > img:nth-child(2) {
		top:290px;
		left:230px;
	}
	.ex_balloon > div:nth-child(2) > img:nth-child(3) {
		top:360px;
		left:10px;
	}
	.ex_balloon > div:nth-child(2) > img:nth-child(4) {
		top:390px;
		left:220px;
	}
}




/* ========================================
	contant
======================================== */
#twallsanswer h2{
	padding:1em 0 1.5em;
	font-weight:500;
}

#twallsanswer .contact{
	display:flex;
	justify-content: center;
}
#twallsanswer .contact > li{
	padding:0 2em;
}


@media screen and (max-width:768px){
	#twallsanswer .contact {
		flex-direction:column;
	}
	#twallsanswer .contact > li{
		padding:1em 0;
	}
}



/* ===============================================================================================================================================================
	Reason
=============================================================================================================================================================== */
#reason{
}

#reason .title_img{
	background-image:url(images/reason_pc.png);
}


@media screen and (max-width:768px){
	#reason .title_img {
		background-position:;
	}
}



/* ================================================================================
	reason list
================================================================================ */
#reason > section{
	max-width:none;
	padding:0;
}

#reason_list > li:nth-child(even){
	background-color:#f6fafa;
}

#reason_list > li > .reason_inner{
	max-width:1300px;
	margin:0 auto;
	padding:3em 2em;
	background-repeat:no-repeat;
	display:flex;
	justify-content: center;
}



.reason_block {
	background-position:0 0;
	background-repeat:no-repeat;
	padding-left:90px;
}


.reason_block h2{
	font-size:200%;
	line-height:80px;
	text-align:left;
}
.reason_block .text {
	padding:1em 0;
	font-weight:500;
	font-size: 110%;
}
.reason_block .text span{
	color:#ed4a4e;
}


.reason_block .arrow_text{
	padding:1em 0;
	display:flex;
	align-items:center;
}
.reason_block span.arrow{
	--arrow-color:#2e2a2a;
	position:relative;
	padding:0.5em 1.5em;
	line-height:1;
	font-size:120%;
	font-weight:bold;
	color:#FFF;
	background:var(--arrow-color);
	text-align:center;
}
.reason_block span.arrow::after{
	content:"";
	position:absolute;
}
.reason_block strong{
	margin-bottom:0.2em;
	padding:0 0.3em;
	color:#ed4a4e;
	font-size:180%;
	border-bottom:2px solid #ed4a4e;
}



@media screen and (min-width:769px){
	#reason_list > li:nth-child(odd) > .reason_inner{
		padding-right:400px;
		background-position:calc(100% - 3em) 50%;
		flex-direction: row-reverse;
	}
	#reason_list > li:nth-child(even) > .reason_inner{
		padding-left:400px;
		background-position:3em 50%;
	}

	.reason_block span.arrow{
		margin-right:2em;
	}
	.reason_block span.arrow::after{
		top:calc((2em - 1.5em * 2) / 2);
		left:100%;
		border: 1.5em solid transparent;
		border-left: 1.5em solid var(--arrow-color);
	}
}

@media screen and (max-width:768px){
	#reason_list > li > .reason_inner{
		max-width:100%;
		padding:200px 1em 0;
		background-position:50% 2em;
		background-size:auto 220px;
	}
	.reason_block {
		padding:50px 0 0;
		background-size:auto 65px;
	}
	.reason_block h2 {
		line-height:1.6;
		padding:1em 0 0.5em;
		font-size:190%;
		text-align:center;
	}

	.reason_block .text{
		font-size:100%;
	}

	.reason_block .arrow_text{
		flex-direction: column;
		padding-bottom:3em;
	}

	.reason_block span.arrow{
		--arrow-color:#6e6a6a;
		width:7em;
		margin-bottom:3.5em;
		padding:0.8em 0 0.1em;
		font-size:100%;
	}
	.reason_block span.arrow::after{
		top:100%;
		left:-1em;
		margin-top:-1px;
		border:solid transparent;
		border-width:2em 4.5em;
		border-top-color:var(--arrow-color);
	}

	.reason_block strong {
		font-size:170%;
		text-align:center;
	}
}






/* ================================================================================
	images
================================================================================ */
.reason_1 .reason_inner{
	background-image:url(images/reason_img1.png);
}
.reason_2 .reason_inner{
	background-image:url(images/reason_img2.png);
}
.reason_3 .reason_inner{
	background-image:url(images/reason_img3.png);
}
.reason_4 .reason_inner{
	background-image:url(images/reason_img4.png);
}
.reason_5 .reason_inner{
	background-image:url(images/reason_img5.png);
}

.reason_1 .reason_block {
	background-image:url(images/reason_p01.png);
}
.reason_2 .reason_block {
	background-image:url(images/reason_p02.png);
}
.reason_3 .reason_block {
	background-image:url(images/reason_p03.png);
}
.reason_4 .reason_block {
	background-image:url(images/reason_p04.png);
}
.reason_5 .reason_block {
	background-image:url(images/reason_p05.png);
}






/* ===============================================================================================================================================================
	Price
=============================================================================================================================================================== */
#price{
}
#price .title_img{
	background-image:url(images/price_pc.png);
}


.price_block{
	text-align:center;
}
.price_block h2 {
	line-height:1.3;
}
.price_block h2 span{
	color:#75d4a3;
}
.price_block h2 small{
	font-weight:normal;
	font-size:50%;
}

#price .price_balloon{
	padding-top:5em;
}
#price .price_balloon p{
	padding-top:2em;
	font-size:180%;
	font-weight:bold;
}

#price .price_text {
	min-height:calc(280px + 2em);
	padding:1em 0;
	font-size:200%;
	font-weight:bold;
	background:url(images/price_text.png) 50% 50% no-repeat;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
}
#price .price_text span{
	color:#75d4a3;
}


@media screen and (max-width:768px){
	.price_block h2 small {
		font-size:70%;
	}

	#price .price_balloon{
		padding:3em 1em 0;
	}
	#price .price_balloon p{
		padding-top:1em;
		font-size:140%;
	}
}




/* ================================================================================
	price list
================================================================================ */
#price_list .price_inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 3em 2em;
	background-repeat: no-repeat;
	display: flex;
	justify-content: flex-start;
	align-items:center;
}
#price_list ul > li:nth-child(odd) {
	background-color:#f6fafa;
}

.price_inner > .image {
	width:180px;
	display:flex;
	justify-content:flex-start;
	align-items:center;
}
.price_inner > .text {
	width:calc(100% - 180px);
	display:flex;
	justify-content:flex-start;
	align-items:center;
	flex-wrap:wrap;
}
.price_inner > .text > h3 {
	width:100%;
}
.price_inner > .text > p {
	width:calc(100% - 250px);
	padding-top:0.5em;
}
.price_inner > .text > .price {
	width:250px;
	text-align:right;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:flex-end;
}
.price_inner > .text .price p {
	padding:0 0.5em;
	line-height:1.5;
	font-size:200%;
	font-weight:900;
	border-bottom:2px solid #ffbe2e;
}
.price_inner > .text .price p small{
	font-size:80%;
	font-weight:500;
}
.price_inner > .text .price .unit {
	padding-top:0.3em;
	font-size:90%;
}


@media screen and (max-width:768px){
	#price_list .price_inner {
		padding:3em 1em;
	}

	.price_inner > .image {
		width:20%;
		padding-top:1em;
		align-self:flex-start;
	}
	.price_inner > .text {
		width:80%;
	}

	.price_inner > .text > h3 {
		order:1;
		width:100%;
	}
	.price_inner > .text > p {
		order:3;
		width:100%;
	}
	.price_inner > .text > .price {
		order:2;
		width:100%;
		padding:0.5em 0 1em;
		flex-direction:row-reverse;
		justify-content:flex-start;
		align-items:center;
	}


	#price .price_text {
		padding-left:0.5em;
		font-size:150%;
		background-image:url(images/price_text_sp.png);
		background-size:contain;
	}
}




/* ================================================================================
	handling
================================================================================ */
#handling {
	background:#fafafa;
}
#handling .h2-center {
	text-align:center;
}
#handling h2 {
	display:inline-block;
	padding:0 0.5em;
	color:#ed4a4e;
	border-bottom:3px solid #ed4a4e;
}
#handring-catch {
	padding:1.5em 0.5em;
	font-size:160%;
	text-align:center;
}

.handling-list {
	padding-top:1em;
	display:flex;
	justify-content:space-evenly;
	aligtn-items:stretch;
	flex-wrap:wrap;
}
.handling-list > .handling-cell {
	width:calc(100% / 3);
	min-height:100%;
	padding:1em;
}
.handling-cell > div {
	padding:0.8em 1em 1em;
	background:#fff;
	border:3px solid #0c3;
	border-radius:0.5em;
	display:flex;
	justify-content:flex-start;
	align-items:center;
	flex-wrap:wrap;
}
.handling-cell > div > .image {
	width:4em;
}
.handling-cell > div > .image img{
	display:block;
}
.handling-cell > div > h3 {
	width:calc(100% - 4em);
	padding-left:0.5em;
	color:#090;
}
.handling-cell > div > p {
	margin-bottom:10px;
	padding:0.6em 0.5em 0;
	width:100%;
	font-size:85%;
}
.handling_btn{
	background-color: #0c3;
	border-radius: 35px;
	color:#FFF;
	margin:auto 0 auto auto;
	padding:3px 20px;
}
.handling_btn.nourl{
	opacity: 0;
	pointer-events: none;
}


@media screen and (max-width:768px){
	#handling h2 {
		font-size:180%;
	}
	#handring-catch {
		font-size:130%;
	}

	.handling-list {
		padding:0 0.3em;
	}
	.handling-list > .handling-cell {
		width:calc(100% / 2);
		padding:0.5em 0.3em;
	}

	.handling-cell > div {
		height:100%;
		padding:0.4em 0.5em 1em;
		display:block;
	}
	.handling-cell > div > .image {
		width:100%;
		text-align:center;
	}
	.handling-cell > div > .image img {
		width:4em;
		margin:0 auto;
	}
	.handling-cell > div > h3 {
		width:100%;
		padding:0;
		text-align:center;
	}
	.handling-cell > div > p {
		font-size:95%;
	}
	.handling_btn{
		display:block;
		text-align:center;
	}
}



/* ===============================================================================================================================================================
	Order
=============================================================================================================================================================== */
#order{
}
#order .title_img{
	background-image:url(images/order_pc.png);
}

#order section {
	text-align:center;
}


@media screen and (max-width:768px){
	#order .title_img {
		background-position:62% 50%;
	}
}



/* ===============================================================================================================================================================
	Achievement
=============================================================================================================================================================== */
#achievement {
}
#achievement .title_img{
	background-image:url(images/achieve_pc.png);
}

#achievement > section {
	display:flex;
	justify-content:center;
	align-items:center;
}
#achievement > section > div {
	position:relative;
}
#achievement > section > div > img {
	display:block;
}
#achievement > section > div > img.achieveArrow {
	position:absolute;
	bottom:calc(602px - 392px);
	left:calc(1133px - 530px);
	-webkit-transition:all 0.8s ease;
    transition:all 0.8s ease;
	opacity:0;
	transform:scale(0);
	transform-origin:left bottom;
}
#achievement > section > div > img.achieveArrow.on {
	opacity:1;
	transform:scale(1);
}


@media screen and (max-width:768px){
	#achievement > section {
		padding:3em 1em 3.5em;
	}
	#achievement > section > div > img.achieveArrow {
		bottom:calc(100% - 78.5%);
		left:calc(100% - 81.9%);
		width:78.5%;
		height:81.9%;
	}
}


/* ===============================================================================================================================================================
	Media
=============================================================================================================================================================== */
#media{
	background:#edf5f5;
	text-align:center;
}
#media ul.medialist{
	padding-top:4em;
	display:flex;
	justify-content: center;
}
#media ul.medialist li{
	padding:0 2em;
}

#media2{
	text-align:center;
}

@media screen and (max-width:768px){
	#media ul.medialist{
		flex-direction:column;
	}
	#media ul.medialist li{
		padding:2em;
	}
}



/* ===============================================================================================================================================================
	Flow
=============================================================================================================================================================== */
#flow{
	position:relative;
}
#flow .title_img{
	position:relative;
	z-index:2;
	background-image:url(images/flow_pc.png);
}


.flowlist{
	position:relative;
	z-index:1;
	display:flex;
	justify-content: center;
}
.flowlist > li{
	width:250px;
}
.flowlist > li:last-child{
	width:300px;
}
.flowlist > li:last-child > div{
	width:250px;
}

.flowlist img {
	display:block;
}

.flowlist h2 {
	position: relative;
	padding:1em 0 0.5em;
	font-size:150%;
	text-align: center;
}
.flowlist h2::after {
	content: '';
	position: absolute;
	left: 30%;
	bottom: 0;
	display:block;
	width: 40%;
	height: 3px;
	background: #0a93c1;
}

.flowlist p{
	padding:1em 1em 0;
	font-size:85%;
}

.flowlist p span{
	color:#e7161a;
	font-weight:bold;
}


.flowlist > li {
	position:relative;
	opacity:0;
	transform:translate(-120%,0);
	-webkit-transition:all 1.2s ease-out;
    transition:all 1.2s ease-out;
}
.flowlist.on > li {
	opacity:1;
	transform:translate(0,0);
}
.flowlist.on > li:nth-child(1) {
	transition-delay:0.2s;
	z-index:5;
}
.flowlist.on > li:nth-child(2) {
	transition-delay:0.6s;
	z-index:4;
}
.flowlist.on > li:nth-child(3) {
	transition-delay:1.0s;
	z-index:3;
}
.flowlist.on > li:nth-child(4) {
	transition-delay:1.4s;
	z-index:2;
}
.flowlist.on > li:nth-child(5) {
	transition-delay:1.8s;
	z-index:1;
}


@media screen and (max-width:768px){
	.flowlist{
		flex-direction:column;
	}
	.flowlist li,.flowlist li:last-child{
		display:flex;
		width:100%;
	}
	.flowlist li {
		margin-top:-1px;
		transform:translate(0,-120%);
	}
	.flowlist li picture{
		width:35%;
	}
	.flowlist li div,.flowlist li:last-child div{
		width:65%;
		padding-top:1.5em;
	}
	.flowlist h2{
		font-size:140%;
		padding:0 0 0.5em;
	}
	.flowlist p {
		font-size:95%;
	}
}



/* ===============================================================================================================================================================
	Form
=============================================================================================================================================================== */
#Form{
	background:#ebf2f2;
	text-align:center;
}
#Form h2 {
	font-weight:500;
}
#Form h2 small{
	display:inline-block;
	padding:1em 0;
	font-size:80%;
}
#Form h2.form_sub {
	padding:0.5em 0 1.5em;
}

.form-wrapper{
	background:#FFF;
	border-radius:10px;
}

.contents-title{
	padding-top: 4em;
}

.contents-title-h1{
	font-size: 250%;
}

.contents-title-p{
	padding-top: 2em;
}

dl,dt,dd{
	margin:0;
	padding:0;
	display:block;
}

input, textarea, select{
	width:100%;
}

input, textarea{
}
input[type=submit]{
	font-size:22px;
}

input, textarea, select, .checkbox-bg{
	background-color: #ebf2f2;
	border:none;
	padding:10px;
}

select{
	padding-left: 1em;
}

textarea{
	resize:none;
	height:12em;
	padding:0.5em;
}

dl{
	display:flex;
	justify-content:center;
	align-items:stretch;
	flex-wrap:wrap;
	width:75%;
	line-height: 1.6;
	margin:auto;
}

dt{
	width:30%;
	text-align:left;
	padding:2.5em 0 0;
	color:#000;
}

dd{
	width:70%;
	margin-left:auto;
	padding-top:2em;
}

.error {
	color:#ff0;
	line-height:1.6;
}


.required:after,.required2:after,.required3:after{
	content:attr(data-text);
	display:inline-block;
	margin-left:1em;
	padding:0.3em 0.5em;
	line-height:1;
	color:#000;
}

.required:after,.required2:after{
	margin-left:1em;
}

.required2:after{
	margin-left:6em;
}

.required3:after{
	margin-left:0.5em;
	padding:0.3em 0;
}

.t-left{
	text-align: right;
}

.checkbox-bg-wrapper,.checkbox-bg-wrapper2{
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
}

.checkbox-bg-wrapper{
	width: 570px;
}

.checkbox-bg-wrapper2{
	width: 460px;
}

.ajustment-m-left{
	margin-left: 1em;
}

.ajustment-p-top{
	padding-top: 1em;
}

.checkbox-bg-cover{
	display: flex;
	align-items: center;
}

.checkbox-bg{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-size: 100%;
    background-color: #ebf2f2;
    width: auto;
    height: 40px;
	padding: 0.5em;
}

.checkbox-text{
	padding-right:0.5em;
	padding-left:0.5em;
	color: #000;
	white-space: nowrap;
}

input[type="checkbox"] {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    display: inline;
    background-color: #fff;
}

.formButton{
    padding-top: 2em;
	color: #000;
}


.formButton .anime-button{
	width:320px;
	height:calc(100px + 15px);
	background:initial;
	margin:auto;
}
.formButton .anime-button .anime-button-inner {
	border-radius:10px;
	height:100px;
	box-shadow:0 3px 0 #059300;
	background:#2ebb2a;
	padding:10px 0;
}
.formButton .anime-button .anime-button-inner:after{
	z-index:1;
}
.submit-btn {
	position:relative;
	z-index:2;
	width:100%;
	height:64px;
	background:transparent;
}
.formButton .anime-button .submit-btn{
	color:#FFF;
}
.formButton .anime-button:hover{
	padding-top:2px;
}
.formButton .anime-button:active .anime-button-inner{
	background:#ff2800;
}
.formButton .anime-button:active .submit-btn{
	/*color:#fff;*/
}
@media screen and (max-width:768px){
	dl{
		width:90%;
	}
	dt,dd,.checkbox-bg-wrapper{
		width:100%;
	}
	dd{
		padding-top:0.3em;
	}
	.required2:after {
		display:block;
		margin-top:0.3em;
		margin-left:0;
		padding-left:0;
	}
	dt.t-left {
		padding-top:1em;
		text-align:left;
	}
	.checkbox-bg-wrapper, .checkbox-bg-wrapper2{
		flex-direction: column;
		align-items:flex-start;
	}
	.ajustment-m-left{
		margin:1em 0 0;
	}
}



/* ===============================================================================================================================================================
	Footer
=============================================================================================================================================================== */
footer{
	background:#ebf2f2;
	text-align:center;
	padding:20px 0 120px;
}



/* ================================================================================
	bottom buttons
================================================================================ */
#fixedFooter {
	position:fixed;
	left:0;
	right:0;
	bottom:-200px;
	z-index:10000;
	pointer-events:none;
	-webkit-transition:all 0.5s ease;
	transition:all 0.5s ease;
}
#fixedFooter.on {
	bottom:0;
}
#fixedFooter ul{
	width:100%;
	display:flex;
	justify-content:center;
	align-items:flex-end;
}
#fixedFooter ul > li{
	padding:0 1em;
}
#fixedFooter ul > li a{
	display:block;
	pointer-events:auto;
}
#fixedFooter ul > li img{
	display:block;
}

@media screen and (max-width:768px){
	#fixedFooter ul > li {
		padding:0 0.1em;
	}
	#fixedFooter ul > li {
		padding:0 0.1em;
	}
}



