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


/*------------------------------------------------------

	common css

------------------------------------------------------*/
:root {
	--base-color-01:#2BB46F;
	--base-color-02:#2F4852;
}

*, *:before, *:after { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; -o-box-sizing: border-box; -ms-box-sizing: border-box; box-sizing: border-box; }
html { width: 100%; overflow: scroll; font-size: 10px; }
html.fixed {}
html.fixed body { height: 100%; position: fixed; width: 100%;}
body { font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", " 游ゴシック Medium", 游ゴシック体, "Yu Gothic Medium", YuGothic,メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; color: #333; line-height: 1.8; background-color: #fff; overflow: hidden;}
.container { width: 100%; margin-left: auto; margin-right: auto; position: relative;}
ul { list-style: none; }
ol { list-style: decimal; }
img { vertical-align: bottom; width: auto; max-width: 100%; height: auto; }
/*a:link { color: #000; text-decoration: none; }
a:visited { color: #000; }*/
a.fade:hover { text-decoration: none; background-color: #fff; color: #333; -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); }

.pc { display:block; }
.sp { display:none; }

main { display: block; margin-bottom: 50px; }
.highlighter { background: linear-gradient(transparent 50%, #EBFF00 0%); }

@media (min-width: 768px) {

	.container { max-width: 1160px; }
	.w800 { max-width: 800px; margin-left: auto; margin-right: auto;}
    .w920 { max-width: 920px; margin-left: auto; margin-right: auto;}
	.w960 { max-width: 960px; margin-left: auto; margin-right: auto;}

	a:hover { text-decoration: underline; }
	a img:hover { opacity: 0.8; -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1); }
	a[href^="tel:"]{ pointer-events: none; }
}

@media screen and (min-width:768px) and ( max-width:1210px) {
    .container { width: -webkit-calc(100% - 40px); width: calc(100% - 40px);}
}

@media (max-width: 767px) {

	.container { margin-left: 15px; margin-right: 15px; width: auto; }
	.pc { display: none !important; }
	.sp { display: block !important; }

	.text p { padding-left: 10px; padding-right: 10px;}
}

.font-01 {
	font-family: "Oswald", serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
}

.font-02 {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 900;
	font-style: normal;
}


/*------------------------------------------------------

    pageTop

------------------------------------------------------*/
#page-top { position: fixed; bottom:20px; right:20px; z-index:999; }
#page-top a { background: rgba(0,0,0,0.5); text-decoration: none; width:48px; height: 48px; text-align:center; display: block; transition: all 0.2s; }
#page-top a::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; margin: -4px auto 0; transform: rotate(-45deg); border-top: 2px solid #fff; border-right: 2px solid #fff; width: 15px; height: 15px; }

@media (min-width: 768px) {
    #page-top a:hover { text-decoration:none; opacity: 0.8; }
}

@media (max-width: 767px) {
	#page-top { display: none;}
}


/*------------------------------------------------------

	animation

------------------------------------------------------*/
:root {
    --delay: 0.5s;
    --duration: 500ms;
    --iterations: 1;
}

/**
	js-fade-up
	animation
*/
.js-fade-up { opacity: 0;}
.js-fade-up.animation-on {
	animation-name: basic-animation;
	animation-duration: var(--duration);
	animation-fill-mode: forwards;
	animation-timing-function: ease-out;
}
/**
	下から上
*/
@keyframes basic-animation{
	0% {
		opacity: 0;
		transform: translateY(20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}


@media (min-width: 768px) {
	.delay01 { animation-delay: 0.1s; }
	.delay02 { animation-delay: 0.2s; }
	.delay03 { animation-delay: 0.3s; }
	.delay04 { animation-delay: 0.4s; }
	.delay05 { animation-delay: 0.5s; }
	.delay06 { animation-delay: 0.6s; }
	.delay07 { animation-delay: 0.7s; }
	.delay08 { animation-delay: 0.8s; }
	.delay09 { animation-delay: 0.9s; }
	.delay10 { animation-delay: 1.0s; }
	.delay11 { animation-delay: 1.1s; }
	.delay12 { animation-delay: 1.2s; }
	.delay13 { animation-delay: 1.3s; }
	.delay14 { animation-delay: 1.4s; }
	.delay15 { animation-delay: 1.5s; }
	.delay16 { animation-delay: 1.6s; }
	.delay17 { animation-delay: 1.7s; }
	.delay18 { animation-delay: 1.8s; }
	.delay19 { animation-delay: 1.9s; }
	.delay20 { animation-delay: 2.0s; }
}


/*------------------------------------------------------

	menu-btn

------------------------------------------------------*/
#menu-btn { width: 32px; height: 32px; position: absolute; top: 5px; right: 5px; cursor: pointer; z-index: 100; }
#menu-btn span { background-color: #6BBB63; display: block; height: 3px; position: relative; transition: all 0.15s; width: 26px; left: 0; right: 0; margin: auto; }

#menu-btn span:nth-child(1) { top: 7px;}
#menu-btn span:nth-child(2) { top: 13px;}
#menu-btn span:nth-child(3) { top: 19px;}

#menu-btn.active span:nth-child(2) { opacity: 0;}
#menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(-45deg); }
#menu-btn.active span:nth-child(3) { transform: translateY(-10px) rotate(45deg); }

@media (min-width: 768px) {
	#menu-btn { display: none;}
}

@media (max-width: 767px) {
	#menu-btn {}

}


/*------------------------------------------------------

	header

------------------------------------------------------*/
header { background-color: #fff;}
header .l_col-head {}
header .l_col-logo {}
header .l_col-logo .logo { border-right: 1px solid var(--base-color-02); }
header .l_col-logo .logo a {}
header .l_col-logo .logo img { width: 100%; max-width: 146px;}
header .l_col-logo .site-name {}
header .l_col-logo .site-name a {}
header .l_col-logo .site-name img {}
header .l_col-head > a { color: #fff; font-weight: 700; height: 28px; border-radius: 14px; background-color: var(--base-color-01); text-decoration: none; line-height: 28px; padding: 0 16px;}

@media (min-width: 768px) {
	header {}
	header .l_col-head { align-items: center; height: 100px; padding: 0 20px;}
	header .l_col-logo { align-items: center; }
	header .l_col-logo .logo { padding-right: 15px; margin-right: 15px;}
	header .l_col-logo .logo a {}
	header .l_col-logo .logo img {}
	header .l_col-logo .site-name {}
	header .l_col-logo .site-name a {}
	header .l_col-logo .site-name img {}
	header .l_col-head > a { font-size: 1.4rem; }
}

@media (max-width: 767px) {
	header {}
	header .l_col-head { align-items: center; height: 50px; padding: 0 10px;}
	header .l_col-logo { margin-bottom: 0; align-items: center;}
	header .l_col-logo .logo { margin-bottom: 0; margin-right: 10px; padding-right: 10px;}
	header .l_col-logo .logo a {}
	header .l_col-logo .logo img { width: calc(145px / 2);}
	header .l_col-logo .site-name { margin-bottom: 0;}
	header .l_col-logo .site-name a {}
	header .l_col-logo .site-name img { width: calc(215px / 2);}
	header .l_col-head > a { margin-bottom: 0; font-size: 1.2rem;}
}


/*------------------------------------------------------

	title

------------------------------------------------------*/
.title-a { color: var(--base-color-02); text-align: center; letter-spacing: 0.05em; background-color: #EBFF00;}
.title-b { color: #000; font-size: 2rem; font-weight: 700; line-height: 1.4; letter-spacing: 0.05em; }

.title-c { text-align: center; color: var(--base-color-02); font-size: 1.6rem; width: 150px; height: 150px; background-color: #EBFF00; border-radius: 50%; letter-spacing: 0.05em; position: relative; line-height: 1.5; padding-top: 40px; font-weight: bold;}
.title-c::before { content: ""; position: absolute; width: calc(100% + 40px); height: calc(100% + 40px); left: -20px; top: -20px; border-radius: 50%; border: 20px solid rgba(235, 255, 0, 0.3);}
.title-c strong { display: block; font-size: 3.6rem;}

.title-d { color: var(--base-color-02); text-align: center; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em; margin-bottom: 30px;}

@media (min-width: 768px) {
	.title-a { font-size: 3.4rem; max-width: 668px; margin-left: auto; margin-right: auto; padding: 10px 5px; line-height: 1.6; }
	.title-b {}

	.title-c { width: 150px; margin-left: 20px;}
	.title-c strong {}

	.title-d { font-size: 3.4rem; }
}

@media (max-width: 767px) {
	.title-a { font-size: 2.4rem; line-height: 1.2; padding: 10px;}
	.title-b {}

	.title-d { font-size: 2.4rem; }
}


/*------------------------------------------------------

	parts

------------------------------------------------------*/
.list-a {}
.list-a li { font-weight: 500; line-height: 1.6; letter-spacing: 0.05em; position: relative; padding-left: 18px; font-size: 1.8rem;}
.list-a li::before { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background-color: var(--base-color-01); left: 0; top: calc(0.5em);}

.btn-a { color: var(--base-color-01); font-weight: 800; line-height: 1.6; letter-spacing: 0.05em; background-color: #fff; text-decoration: none; display: inline-block; padding: 10px 50px 10px 18px; border-radius: 24px; position: relative;}
.btn-a::before { content: ""; width: 28px; height: 28px; position: absolute; right: 10px; top: calc(50% - 14px); border-radius: 50%; background-color: var(--base-color-01);}
.btn-a::after { content: ""; position: absolute; right: 19px; top: calc(50% - 3px); width: 10px; height: 10px; border-top: 3px solid #fff; border-right: 3px solid #fff; -webkit-transform: rotate(315deg); transform: rotate(315deg); }


@media (min-width: 768px) {
	.list-a {}
	.list-a li {}

	.btn-a { font-size: 1.8rem;}
	.btn-a::before {}
	.btn-a::after {}
}

@media (max-width: 767px) {
	.list-a {}
	.list-a li {}

	.btn-a { font-size: 1.6rem;}
	.btn-a::before {}
	.btn-a::after {}
}



/*------------------------------------------------------

	service-01

------------------------------------------------------*/
.service-contents { background-color: #ccc; border-radius: 24px; position: relative;}
.service-contents .no { border-radius: 50%; background-color: var(--base-color-01); color: #fff; position: absolute; left: 0; right: 0; bottom: auto; margin: auto; font-weight: 700; letter-spacing: 0.05em; text-align: center; font-family: "Oswald", serif; }
.service-contents > .title { color: #fff; text-align: center; font-weight: 700; line-height: 1.4; letter-spacing: 0.05em; }
.service-contents > .contents { background-color: #fff; border-radius: 24px; margin-bottom: 20px;}
.service-contents .btn {}
.service-contents .btn .btn-a {}

#service-01 {}
#service-01 .container {}
#service-01 .service-contents { background-color: #FF9900; }
#service-01 .service-contents .no {}
#service-01 .service-contents > .title {}
#service-01 .service-contents > .contents {}
#service-01 .service-contents .title-a {}

#service-01 .l_col-outline { margin-bottom: 50px;}
#service-01 .l_col-outline figure {}
#service-01 .l_col-outline figure img { border-radius: 24px; overflow: hidden; }
#service-01 .l_col-outline > div { color: var(--base-color-02);}
#service-01 .l_col-outline .lead { letter-spacing: 0.05em; font-size: 2.2rem;}
#service-01 .l_col-outline .text { line-height: 2;}
#service-01 .l_col-outline .text p { font-size: 1.6rem; }

#service-01 .l_col-merit { margin-bottom: 50px; }
#service-01 .l_col-merit .title-b {}
#service-01 .l_col-merit ul { counter-reset: list-counter; }
#service-01 .l_col-merit ul li { font-size: 1.8rem; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em; position: relative; padding-left: 70px;}
#service-01 .l_col-merit ul li p { font-weight: normal; font-size: 1.6rem;}
#service-01 .l_col-merit ul li::before { counter-increment: list-counter; content: counter(list-counter); width: 54px; height: 54px; color: #fff; border-radius: 50%; background-color: #f90; position: absolute; text-align: center; line-height: 54px; font-size: 2.8rem; left: 0; top: 0; font-family: "Oswald", serif;}

#service-01 .l_col-image { margin-bottom: 50px;}
#service-01 .l_col-image .title-b {}
#service-01 .l_col-image .l_col-4 {}
#service-01 .l_col-image .l_col-4 figure {}
#service-01 .l_col-image .l_col-4 figure img { width: 100%; max-width: 125px; height: auto;}
#service-01 .l_col-image .l_col-4 figcaption { font-weight: bold; font-size: 1.6rem; margin: 0; color: #000; padding-top: 5px;}
#service-01 .l_col-image .list-a {}
#service-01 .l_col-image .list-a li {}

#service-01 .l_col-spec { margin-bottom: 0;}
#service-01 .l_col-spec .title-b {}
#service-01 .l_col-spec .l_col-2 {}
#service-01 .l_col-spec .l_col-2 figure {}
#service-01 .l_col-spec .l_col-2 figure img { width: 100%;}

#service-01 .btn { text-align: center;}
#service-01 .btn .btn-a {}


@media (min-width: 768px) {
	.service-contents { padding: 60px 20px 20px; margin-bottom: 160px;}
	.service-contents .no { width: 113px; height: 113px; top: -65px; font-size: 5.4rem; line-height: 113px; }
	.service-contents > .title { font-size: 3.6rem; margin-bottom: 22px;}
	.service-contents > .contents { padding: 40px 60px 55px;}
	
	#service-01 .service-contents .title-a { margin-bottom: 40px;}
	
	#service-01 .l_col-outline figure { width: 360px; margin-bottom: 0;}
	#service-01 .l_col-outline > div { width: calc(100% - (360px + 40px));}
	#service-01 .l_col-outline .lead { margin-bottom: 5px; }
	#service-01 .l_col-outline .lead span { margin-bottom: 10px;}
	
	#service-01 .l_col-merit .title-b { width: 140px; border-right: 5px solid var(--base-color-01);}
	#service-01 .l_col-merit ul { width: calc(100% - (140px + 40px));}
	#service-01 .l_col-merit ul li:not(:last-child) { margin-bottom: 20px;}
	
	#service-01 .l_col-image .title-b { width: 140px; border-right: 5px solid var(--base-color-01); margin-right: 20px; }
	#service-01 .l_col-image .l_col-4 { width: calc(100% - (140px + 240px)); }
	#service-01 .l_col-image .l_col-4 figure { width: calc((100% / 4) - 20px); margin-right: 20px; max-width: 125px; }
	#service-01 .l_col-image .list-a { width: 200px;}


	#service-01 .l_col-spec .title-b { width: 140px; border-right: 5px solid var(--base-color-01); }
	#service-01 .l_col-spec .l_col-2 { width: calc(100% - (140px + 40px)); justify-content: flex-start; }
	#service-01 .l_col-spec .l_col-2 figure { max-width: 305px; width: calc(50% - 40px); margin-right: 40px; margin-bottom: 0;}
	#service-01 .l_col-spec .l_col-2 figure:last-child { max-width: 364px; width: 50%; margin-right: 0;}
	
}

@media screen and (min-width:768px) and ( max-width:1210px) {
	.service-contents > .contents { padding-left: 30px; padding-right: 30px;}
}

@media (max-width: 767px) {
	.service-contents { padding: 50px 5px 20px; }
	.service-contents .no { width: 80px; height: 80px; top: -40px; font-size: 4.4rem; line-height: 80px; }
	.service-contents > .title { font-size: 2.8rem; margin-bottom: 30px;}
	.service-contents > .contents { padding: 30px 10px 30px;}
	
	#service-01 .container { margin-left: 0; margin-right: 0;}
	#service-01 .service-contents .title-a { margin-bottom: 30px;}
	
	#service-01 .l_col-outline > div { margin-bottom: 0;}
	#service-01 .l_col-outline .lead { text-align: center; line-height: 1.6; margin-bottom: 20px;}
	#service-01 .l_col-outline .lead span:not(:last-child)::after { content: "";}

	
	#service-01 .l_col-merit .title-b { border-bottom: 5px solid var(--base-color-01); width: 100%; padding-bottom: 10px;}
	#service-01 .l_col-merit ul { width: 100%; margin-bottom: 0;}
	#service-01 .l_col-merit ul li:not(:last-child) { margin-bottom: 50px;}
	
	#service-01 .l_col-image .title-b { border-bottom: 5px solid var(--base-color-01); width: 100%; padding-bottom: 10px; }
	#service-01 .l_col-image .l_col-4 { width: 100%;}
	#service-01 .l_col-image .l_col-4 figure { width: 50%;}
	#service-01 .l_col-image .list-a { width: 100%; padding-left: 40px; margin-bottom: 0;}
	
	#service-01 .l_col-spec .title-b { border-bottom: 5px solid var(--base-color-01); width: 100%; padding-bottom: 10px; }
	#service-01 .l_col-spec .l_col-2 { margin-bottom: 0; width: 100%;}
	#service-01 .l_col-spec .l_col-2 figure:last-child { margin-bottom: 0;}
	#service-01 .l_col-spec .l_col-2 figure img { max-width: 320px;}
	
}


/*------------------------------------------------------

	service-02

------------------------------------------------------*/
#service-02 {}
#service-02 .container {}
#service-02 .service-contents { background-color: #04A5C2;}
#service-02 .service-contents .no {}
#service-02 .service-contents > .title {}
#service-02 .service-contents > .contents {}

#service-02 .l_col-outline {}
#service-02 .l_col-outline .title-c {}
#service-02 .l_col-outline .title-c::before {}
#service-02 .l_col-outline .title-c strong {}
#service-02 .l_col-outline > div {}
#service-02 .l_col-outline .lead { color: var(--base-color-02); font-size: 2.2rem; font-weight: 700; letter-spacing: 0.05em;}
#service-02 .l_col-outline .lead span {}

#record { background: url(../images/bg_stripe-blue.png) repeat left top; background-size: 45px auto;  border-radius: 24px; margin-bottom: 0;}
#record > .title-d {}
#record .l_col-2 {}
#record .record-inner { background-color: #fff; border-radius: 24px; margin-bottom: 0;}
#record .record-inner .area-title { color: #fff; font-size: 2rem; font-weight: 700; letter-spacing: 0.05em; border-radius: 24px; background: linear-gradient(90deg, #2BB46F 0%, #04A5C2 100%); width: 220px; text-align: center; height: 48px; line-height: 48px; margin-left: auto; margin-right: auto; margin-top: -24px; margin-bottom: 5px; }
#record .record-inner .year { color: var(--base-color-02); text-align: center; font-size: 1.6rem; line-height: 1.6; letter-spacing: 0.05em; margin-bottom: 20px;}
#record .record-inner .graph {}
#record .record-inner .graph img { width: 100%; }
#record .record-inner .data { margin-bottom: 30px;}
#record .record-inner .data img { width: 100%; }
#record .record-inner .area { margin-bottom: 30px; }
#record .record-inner .area img { width: 100%; }
#record .record-inner .branch {}
#record .record-inner .l_col-branch { margin-bottom: 20px;}
#record .record-inner .l_col-branch:last-child { margin-bottom: 0;}
#record .record-inner .l_col-branch figure {}
#record .record-inner .l_col-branch figure img { width: 100%; max-width: 180px;}
#record .record-inner .l_col-branch .text { line-height: 1.6; letter-spacing: 0.05em; }
#record .record-inner .l_col-branch .name { color: var(--base-color-01); font-size: 1.6rem; font-weight: 700; margin-bottom: 5px;}
#record .record-inner .l_col-branch .address { font-size: 1.4rem; }
#record .record-inner .l_col-branch .note { font-size: 1.4rem; border-top: 1px solid #04A5C2; padding-top: 15px; }

#service-02 .more-btn {}
#service-02 .more-btn span {}
#service-02 .more { }
#service-02 .more dl {}
#service-02 .more dl > div { margin-bottom: 18px;}
#service-02 .more dl dt { color: #fff; font-size: 1.6rem; line-height: 1.6; letter-spacing: 0.05em; border-radius: 14px; background-color: #04A5C2; display: inline-block; padding: 1px 11px; margin-bottom: 10px;}
#service-02 .more dl dd { font-size: 1.6rem; line-height: 1.6; letter-spacing: 0.05em;}
#service-02 .more dl dd ul { list-style-type: disc; padding-left: 1.5em;}
#service-02 .more dl dd ul li {}
#service-02 .more dl dd table { border: 1px solid #000;}
#service-02 .more dl dd table tr {}
#service-02 .more dl dd table th,
#service-02 .more dl dd table td { font-size: 1.4rem; line-height: 1.6; letter-spacing: 0.05em; border-right: 1px solid #C9C9C9; border-bottom: 1px solid #C9C9C9; padding: 5px 8px; }
#service-02 .more dl dd table th { text-align: left; font-weight: normal; background-color: #f5f5f5; width: 55%;}
#service-02 .more dl dd table td {}
#service-02 .more dl dd table tr:last-child th ,
#service-02 .more dl dd table tr:last-child td { border-bottom: none;}
#service-02 .more dl dd table tr td:last-child { border-right: none; text-align: right;}

#service-02 .btn { text-align: center;}

@media (min-width: 768px) {
	#service-02 .service-contents > .contents { padding-top: 60px; padding-bottom: 40px; }
	
	#service-02 .l_col-outline { align-items: center; margin-bottom: 60px;}
	#service-02 .l_col-outline > div { width: calc(100% - (150px + 65px));}
	#service-02 .l_col-outline .lead span { margin-bottom: 10px; }
	
	#record { padding: 20px; }
	#record .record-inner { width: calc(50% - 10px); padding: 0 20px 20px;}
	#record .record-inner .graph { margin-bottom: 50px; }
	#record .record-inner .graph img { max-width: 430px;}
	#record .record-inner .data img { max-width: 430px;}
	#record .record-inner .area img { max-width: 430px;}
	#record .record-inner .branch { margin-bottom: 20px;}
	#record .record-inner .l_col-branch figure { width: 180px; margin-bottom: 0;}
	#record .record-inner .l_col-branch .text { width: calc(100% - (180px + 20px));}
	#record #tokai .branch { min-height: 260px;}
	
	#service-02 .more-btn { display: none;}
	#service-02 .more { border-top: 1px solid #04A5C2; display: block !important; padding-top: 30px; }
}

@media (max-width: 767px) {
	#service-02 .container { margin-left: 0; margin-right: 0; }
	#service-02 .service-contents > .contents { padding-top: 50px;}
	
	#service-02 .l_col-outline { margin-bottom: 50px; }
	#service-02 .l_col-outline .title-c { margin-left: auto; margin-right: auto; margin-bottom: 45px;}
	#service-02 .l_col-outline > div { width: 100%; margin-bottom: 0;}
	#service-02 .l_col-outline .lead { text-align: center;}
	
	#record { padding: 20px 5px; }
	#record > .title-d { margin-bottom: 45px;}
	#record .record-inner { padding: 0 10px 20px; }
	#record .record-inner .graph { margin-bottom: 30px; }
	#record .record-inner .l_col-branch figure { width: 100%;}
	#record .record-inner .l_col-branch .text { width: 100%; text-align: center; }
	#record #tokai { margin-bottom: 70px;}
	
	#service-02 .more-btn { text-align: center; border-bottom: 1px solid #04A5C2; margin-bottom: 20px;}
	#service-02 .more-btn span { display: inline-block; color: #04A5C2; font-size: 1.6rem; letter-spacing: 0.05em; background-color: #fff; border-radius: 14px; border: 1px solid #04A5C2; width: 110px; height: 28px; line-height: 26px; position: relative; bottom: -14px;}

	#service-02 .more { display: none;}

}


/*------------------------------------------------------

	service-03

------------------------------------------------------*/
#service-03 {}
#service-03 .service-contents { background-color: #67B84E; }
#service-03 .service-contents .no {}
#service-03 .service-contents > .title {}
#service-03 .service-contents > .contents {}

#flow { counter-reset: list-counter; margin-bottom: 45px; }
#flow li { border: 3px solid var(--base-color-01); color: var(--base-color-01); font-weight: 800; line-height: 1.2; letter-spacing: 0.05em; writing-mode: vertical-rl; align-items: center; display: inline-flex; position: relative;}
#flow li::before { counter-increment: list-counter; content: counter(list-counter); writing-mode: horizontal-tb; font-size: 1.8rem; line-height: 1.4; border-bottom: 1px solid var(--base-color-01); width: calc(100% - 30px); text-align: center; padding-bottom: 10px; margin-bottom: 25px; }
#flow li::after { content: ""; width: 20px; height: 44px; border-left: 20px solid #F90; position: absolute; border-top: 22px solid #fff; border-bottom: 22px solid #fff; right: -34px; top: calc(50% - 22px); }
#flow li:last-child::after { display: none;}

#recycling { margin-bottom: 70px; position: relative;}
#recycling::before { content: ""; position: absolute; width: 80px; height: 40px; border-bottom: 40px solid var(--base-color-01); border-left: 40px solid #fff; border-right: 40px solid #fff; right: 25%; top: -40px;}

#recycling > .title { background-color: var(--base-color-01); color: #EBFF00; text-align: center; font-size: 2.8rem; font-weight: 800; line-height: 1.2; letter-spacing: 0.05em; }
#recycling .l_col-recycling { background-color: var(--base-color-01); padding: 45px; border-bottom-right-radius: 24px; border-bottom-left-radius: 24px;}
#recycling .l_col-recycling .title-c {}
#recycling .l_col-recycling .title-c strong { font-size: 2.6rem;}
#recycling .l_col-recycling section { margin-bottom: 0;}
#recycling .l_col-recycling .name { background-color: #fff; width: 100%; max-width: 186px; height: 40px; border-radius: 20px; line-height: 40px; color: var(--base-color-01); text-align: center; font-size: 2rem; font-weight: 700; letter-spacing: 0.05em; margin-left: auto; margin-right: auto; margin-bottom: 30px;}
#recycling .l_col-recycling figure { margin-bottom: 0;}
#recycling .l_col-recycling figure img { width: 100%; max-width: 289px;}
#recycling .l_col-recycling figcaption { padding-top: 20px; color: #fff; text-align: center; font-size: 1.6rem; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em; margin: 0;}

#recycling .l_col-recycling-sub { background-color: #239D60; border-radius: 24px; }
#recycling .l_col-recycling-sub section { margin-bottom: 0;}
#recycling .l_col-recycling-sub .name { background-color: #fff; width: 100%; max-width: 120px; height: 36px; margin-left: auto; margin-right: auto; margin-bottom: 30px; line-height: 36px; border-radius: 18px; color: var(--base-color-01); text-align: center; font-size: 1.6rem; font-weight: 700; letter-spacing: 0.05em;}
#recycling .l_col-recycling-sub figure { margin-bottom: 0;}
#recycling .l_col-recycling-sub figure img { width: 100%; max-width: calc(337px / 2);}
#recycling .l_col-recycling-sub figcaption { color: #fff; margin: 0; font-size: 1.6rem; text-align: center; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em;}


#recycling-rate { margin-bottom: 50px;}
#recycling-rate .title-a {}
#recycling-rate .l_col-2-l {}
#recycling-rate .l_col-2-l .text { letter-spacing: 0.05em; }
#recycling-rate .l_col-2-l .lead { color: var(--base-color-02); font-size: 2.2rem; line-height: 1.9; }
#recycling-rate .l_col-2-l .lead span {}
#recycling-rate .l_col-2-l .lead + p { font-size: 1.6rem; line-height: 2;}
#recycling-rate .l_col-2-l figure {}
#recycling-rate .l_col-2-l figure img { width: 100%; max-width: 350px;}
#recycling-rate .l_col-2-l figcaption { color: #000; font-size: 1.6rem; margin: 0; letter-spacing: 0.05em;}

#waste { margin-bottom: 0;}
#waste .title-a { margin-bottom: 45px; }
#waste .l_col-2-l {}
#waste .l_col-2-l .text { letter-spacing: 0.05em; }
#waste .l_col-2-l .text p { font-size: 1.6rem; line-height: 2; }
#waste .l_col-2-l figure {}
#waste .l_col-2-l figure img { width: 100%; max-width: 350px; }
#waste .l_col-2-l figcaption { color: #000; font-size: 1.6rem; margin: 0; letter-spacing: 0.05em; }

#service-03 .btn { text-align: center;}
#service-03 .btn .btn-a {}


@media (min-width: 768px) {
	#flow li { width: calc(100% / 5 - 32px); border-radius: 24px; font-size: 2.2rem; padding-top: 20px; padding-bottom: 30px;}
	
	#recycling > .title { padding-top: 45px; border-top-right-radius: 24px; border-top-left-radius: 24px; }
	#recycling .l_col-recycling section { max-width: calc((100% - 240px) / 2);}
	
	#recycling .l_col-recycling-sub { padding: 45px 30px; }
	#recycling .l_col-recycling-sub section { width: calc(100% / 5 - 12px);}
	
	#recycling-rate .title-a { margin-bottom: 45px; }
	#recycling-rate .l_col-2-l .text { width: calc(100% - (350px + 40px));}
	#recycling-rate .l_col-2-l figure { width: 350px; margin-bottom: 0;}
	
	#waste .l_col-2-l .text { width: calc(100% - (350px + 40px)); }
	#waste .l_col-2-l figure { width: 350px; margin-bottom: 0; }

}

@media (max-width: 767px) {
	#service-03 .container { margin-left: 0; margin-right: 0; }
	
	#flow { margin-bottom: 30px;}
	#flow li { width: calc(100% / 5 - 12px); border-width: 2px; border-radius: 12px; font-size: 1.8rem; padding-top: 10px; padding-bottom: 20px; margin-bottom: 0;}
	#flow li::after { width: 10px; height: 22px; border-left-width: 10px; border-top-width: 11px; border-bottom-width: 11px; right: -15px; top: calc(50% - 11px); }
	
	#recycling::before { width: 56px; height: 24px; border-bottom-width: 24px; border-left-width: 28px; border-right-width: 28px; right: 21%; top: -24px; }
	#recycling > .title { font-size: 2.2rem; padding-top: 30px; border-top-right-radius: 12px; border-top-left-radius: 12px;}
	#recycling .l_col-recycling { padding: 50px 10px;}
	#recycling .l_col-recycling .title-c { margin-left: auto; margin-right: auto; margin-bottom: 45px;}
	#recycling .l_col-recycling section { width: 100%;}
	#recycling .l_col-recycling section:not(:last-child) { margin-bottom: 50px;}
	
	#recycling .l_col-recycling-sub { padding: 45px 10px; }
	#recycling .l_col-recycling-sub section { width: calc(50% - 10px);}
	#recycling .l_col-recycling-sub section:nth-child(n+3) { margin-top: 50px;}
	#recycling .l_col-recycling-sub section:last-child { margin-left: auto; margin-right: auto;}
	
	#recycling-rate .title-a { margin-bottom: 25px; }
	#recycling-rate .l_col-2-l .lead { text-align: center;}
	
	#waste .title-a { margin-bottom: 25px;}
	
}


/*------------------------------------------------------

	service-04

------------------------------------------------------*/
#service-04 {}
#service-04 .service-contents { background-color: #A612BE;}
#service-04 .service-contents .no {}
#service-04 .service-contents > .title {}
#service-04 .service-contents > .contents {}

#service-04 .outline { margin-bottom: 45px;}
#service-04 .outline .title-a { margin-bottom: 30px;}
#service-04 .outline .text { line-height: 1.6;}
#service-04 .outline .text p { font-size: 1.8rem; letter-spacing: 0.05em;}

#service-04 .l_col-merit { margin-bottom: 70px;}
#service-04 .l_col-merit .title-c {}
#service-04 .l_col-merit .title-c strong { font-size: 3rem;}
#service-04 .l_col-merit > div {}
#service-04 .l_col-merit .lead { color: var(--base-color-02); font-size: 2.2rem; font-weight: 700; letter-spacing: 0.05em; }
#service-04 .l_col-merit .lead span {}
#service-04 .l_col-merit figure { width: 100%;}
#service-04 .l_col-merit figure img { width: 100%; max-width: 610px; margin-left: auto; margin-right: auto;}

#service-04 .bg { background: url(../images/bg_stripe-purple.png) repeat left top; background-size: 45px auto; border-radius: 24px; }
#manifesto-flow { margin-bottom: 50px;}
#manifesto-flow .title-d {}
#manifesto-flow .inner { background-color: #fff; border-radius: 24px;}
#manifesto-flow .l_col-manual-input { border: 2px solid #A2A2A2; overflow: hidden;}
#manifesto-flow .l_col-manual-input li { font-size: 1.6rem; position: relative; font-weight: bold; line-height: 1.4;}
#manifesto-flow .l_col-manual-input li::before { content: ""; position: absolute; right: -60px; top: calc(50% - 42px); width: 60px; height: 84px; border-top: 42px solid transparent; border-right: 30px solid transparent; border-bottom: 42px solid transparent; border-left: 30px solid #A2A2A2; }
#manifesto-flow .l_col-manual-input li::after { content: ""; position: absolute; right: -58px; top: calc(50% - 42px); width: 60px; height: 84px; border-top: 42px solid transparent; border-right: 30px solid transparent; border-bottom: 42px solid transparent; border-left: 30px solid #fff; }
#manifesto-flow .l_col-manual-input li:first-child::after { border-left-color: transparent;}
#manifesto-flow .l_col-manual-input li span { font-size: 1.8rem; color: #fff;}
#manifesto-flow .l_col-manual-input li:first-child {}
#manifesto-flow .l_col-manual-input li.red { color: #FF0000;}

#manifesto-flow .l_col-data-import { border: 2px solid #A612BE; overflow: hidden; }
#manifesto-flow .l_col-data-import li { font-size: 1.6rem; color: #A612BE; position: relative; font-weight: bold; line-height: 1.4;}
#manifesto-flow .l_col-data-import li::before { content: ""; position: absolute; right: -60px; top: calc(50% - 42px); width: 60px; height: 84px; border-top: 42px solid transparent; border-right: 30px solid transparent; border-bottom: 42px solid transparent; border-left: 30px solid #A612BE; }
#manifesto-flow .l_col-data-import li::after { content: ""; position: absolute; right: -58px; top: calc(50% - 42px); width: 60px; height: 84px; border-top: 42px solid transparent; border-right: 30px solid transparent; border-bottom: 42px solid transparent; border-left: 30px solid #fff; }
#manifesto-flow .l_col-data-import li:first-child::after { border-left-color: transparent;}
#manifesto-flow .l_col-data-import li span { font-size: 1.8rem; color: #fff; }
#manifesto-flow .l_col-data-import li:first-child {}

#compare { margin-bottom: 0;}
#compare .title-d {}
#compare .l_col-2 {}
#compare section { background-color: #fff; padding: 20px; border-radius: 24px; margin-bottom: 0;}
#compare section .title { color: var(--base-color-02); font-size: 1.6rem; font-weight: 900; line-height: 1.6; letter-spacing: 0.1em; border-left: 5px solid #A612BE; padding-left: 10px;}
#compare section figure { margin-bottom: 0;}
#compare section figure img { width: 100%; max-width: 430px;}
#compare section:nth-child(3) figure img { max-width: calc(871px / 2);}
#compare section:nth-child(4) figure img { max-width: 367px;}

#service-04 .btn { text-align: center;}
#service-04 .btn .btn-a {}

@media (min-width: 768px) {
	
	#service-04 .l_col-merit { align-items: center;}
	#service-04 .l_col-merit > div { width: calc(100% - (150px + 65px)); }
	#service-04 .l_col-merit figure { margin-top: 65px;}
	
	#service-04 .bg { padding: 20px; }
	#manifesto-flow .inner { padding: 20px; }
	#manifesto-flow .l_col-manual-input { align-items: center; margin-bottom: 20px; border-radius: 24px;}
	#manifesto-flow .l_col-manual-input li { width: calc((100% - 120px) / 4); height: 76px; align-items: center; display: inline-flex; padding-left: 40px; white-space: nowrap;}
	#manifesto-flow .l_col-manual-input li:first-child { background: url(../images/icon_keyboard.svg) no-repeat 12px center / 30px auto #A2A2A2; width: 120px; padding-left: 50px; white-space: nowrap; }
	#manifesto-flow .l_col-manual-input li:nth-child(3),
	#manifesto-flow .l_col-manual-input li:last-child { justify-content: center;}

	#manifesto-flow .l_col-data-import { align-items: center; max-width: 720px; border-radius: 24px;}
	#manifesto-flow .l_col-data-import li { width: calc((100% - 120px) / 3); height: 76px; align-items: center; display: inline-flex; padding-left: 40px; white-space: nowrap; }
	#manifesto-flow .l_col-data-import li:first-child { background: url(../images/icon_download.svg) no-repeat 12px center / 30px auto #A612BE; width: 120px; padding-left: 50px; white-space: nowrap; }
	#manifesto-flow .l_col-data-import li:nth-child(3),
	#manifesto-flow .l_col-data-import li:last-child { justify-content: center;}

	#compare section { width: calc(50% - 10px);}
	#compare section:nth-child(n+3) { margin-top: 20px;}
	#compare section:nth-child(1) figure ,
	#compare section:nth-child(2) figure { position: relative; top: -30px; margin-bottom: -30px;}
	
}

@media screen and (min-width:768px) and ( max-width:1210px) {
	#manifesto-flow .l_col-manual-input li { font-size: clamp(1.2rem,1.3vw,1.6rem); white-space: wrap;}
	#manifesto-flow .l_col-data-import li { font-size: clamp(1.4rem,1.3vw,1.6rem); white-space: wrap; }
}

@media (max-width: 767px) {
	#service-04 .container { margin-left: 0; margin-right: 0; }

	#service-04 .l_col-merit .title-c { margin-left: auto; margin-right: auto; margin-bottom: 50px;}
	#service-04 .l_col-merit > div { width: 100%; margin-bottom: 30px;}
	#service-04 .l_col-merit .lead { text-align: center;}
	
	#service-04 .bg { padding: 20px 5px; }
	#manifesto-flow .title-d { margin-bottom: 20px;}
	#manifesto-flow .inner { padding: 20px 10px; display:-webkit-box; display:-ms-flexbox; display:flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; align-items:flex-start;}
	#manifesto-flow .l_col-manual-input { width: calc(50% - 5px); border-radius: 20px;}
	#manifesto-flow .l_col-manual-input li { width: 100%; text-align: center; font-size: 1.4rem;}
	#manifesto-flow .l_col-manual-input li span { font-size: 1.6rem; background: url(../images/icon_keyboard.svg) no-repeat left center / 30px auto; min-height: 27px; padding-left: 40px; display: inline-block; padding-top: 3px; }

	#manifesto-flow .l_col-manual-input li:first-child { background-color: #A2A2A2; height: 56px; padding-top: 16px;}
	#manifesto-flow .l_col-manual-input li:last-child { margin-bottom: 10px;}
	#manifesto-flow .l_col-manual-input li:not(:first-child) { padding-top: 10px; padding-bottom: 10px;}
	#manifesto-flow .l_col-manual-input li::before { right: -10px; border-top: 15px solid #A2A2A2; border-right: calc(25vw - 10px) solid transparent; border-bottom: 15px solid transparent; border-left: calc(25vw - 10px) solid transparent; width: 30px; height: 30px; bottom: -30px; top: auto; }
	#manifesto-flow .l_col-manual-input li::after { right: -10px; border-top: 15px solid #fff; border-right: calc(25vw - 10px) solid transparent; border-bottom: 15px solid transparent; border-left: calc(25vw - 10px) solid transparent; width: 30px; height: 30px; bottom: -28px; top: auto; }
	#manifesto-flow .l_col-manual-input li:first-child::after { border-top-color: transparent;}
	#manifesto-flow .l_col-manual-input li:last-child::before ,
	#manifesto-flow .l_col-manual-input li:last-child::after { display: none;}

	#manifesto-flow .l_col-data-import { width: calc(50% - 5px); border-radius: 20px; }
	#manifesto-flow .l_col-data-import li { width: 100%; text-align: center;}
	#manifesto-flow .l_col-data-import li span { font-size: 1.6rem; font-size: 1.6rem; background: url(../images/icon_download.svg) no-repeat left center / 30px auto; min-height: 30px; padding-left: 40px; display: inline-block; padding-top: 3px; }

	#manifesto-flow .l_col-data-import li:first-child { background-color: #A612BE; height: 56px; padding-top: 6px; line-height: 1.2; }
	#manifesto-flow .l_col-data-import li:last-child { margin-bottom: 10px;}
	#manifesto-flow .l_col-data-import li:not(:first-child) { padding-top: 10px; padding-bottom: 10px;}
	#manifesto-flow .l_col-data-import li::before { right: -10px; border-top: 15px solid #A612BE; border-right: calc(25vw - 10px) solid transparent; border-bottom: 15px solid transparent; border-left: calc(25vw - 10px) solid transparent; width: 30px; height: 30px; bottom: -30px; top: auto;	}
	#manifesto-flow .l_col-data-import li::after { right: -10px; border-top: 15px solid #fff; border-right: calc(25vw - 10px) solid transparent; border-bottom: 15px solid transparent; border-left: calc(25vw - 10px) solid transparent; width: 30px; height: 30px; bottom: -28px; top: auto;	}

	#manifesto-flow .l_col-data-import li:nth-child(2) { font-size: 1.5rem; padding-top: 5px;}
	#manifesto-flow .l_col-data-import li:first-child::after { border-top-color: transparent;}
	#manifesto-flow .l_col-data-import li:last-child::before ,
	#manifesto-flow .l_col-data-import li:last-child::after { display: none;}
	
	#compare .title-d { margin-bottom: 20px;}
	#compare section:nth-child(n+2) { margin-top: 20px;}
}


/*------------------------------------------------------

	main-visual

------------------------------------------------------*/
#main-visual { margin-bottom: 0; position: relative;}
#main-visual figure { margin-bottom: 0;}
#main-visual figure img { max-width: none; width: 100%;}



#main-visual .container { width: 100%; height: 100%; left: 0; top: 0; right: 0; padding-top: 70px; padding-left: 360px; }
/* #main-visual h1 { line-height: 1; color: var(--base-color-02); font-size: 2.8rem; font-weight: 700; letter-spacing: 0.05em;}
#main-visual .type-a { color: var(--base-color-02); font-size: 4.4rem; font-weight: 700; letter-spacing: 0.1em; background-color: #fff; padding: 5px 18px 0 18px; margin-bottom: 20px; display: inline-block; height: 80px;}
#main-visual .type-a strong { font-size: 6.4rem;}
#main-visual .type-a:nth-of-type(1) { margin-top: 30px;}
#main-visual .type-a:nth-of-type(2) strong { color: #FF7A00;}
#main-visual .type-a:nth-of-type(2) { margin-left: 152px; margin-bottom: 35px;}
#main-visual .type-b { color: var(--base-color-02); font-size: 5.2rem; font-weight: 900; letter-spacing: 0.05em; border-radius: 40px; border: 3px solid #fff; background-color: #EBFF00; line-height: 1; padding: 10px 30px 12px; display: inline-block; margin-bottom: 30px; margin-right: 20px;}
#main-visual .type-c { color: var(--base-color-01); border-radius: 24px; background-color: #fff; padding: 8px 20px 12px; display: inline-block; line-height: 1; margin-right: 10px;}
#main-visual .type-c:last-child { color: #04A5C2;}*/

#main-visual h1 { max-width: calc(1672px / 2); margin-left: auto; margin-right: 40px;}
#main-visual h1 img { width: 100%;}

@media (min-width: 768px) {
	#main-visual figure { position: absolute; left: 0; top: 0; height: 100%; width: 100%; }
	#main-visual figure img { max-width: none; object-fit: cover; height: 100%; width: 100%; object-position: left center; }

	#main-visual .container { max-width: 1260px; padding-bottom: 140px;}
	/* #main-visual h1 {}
	#main-visual .type-a {}
	#main-visual .type-a strong {}
	#main-visual .type-b {}
	#main-visual .type-c {}*/
	#main-visual h1 {}
#main-visual h1 img {}

}

@media screen and (min-width:768px) and ( max-width:1230px) {
	 #main-visual .container { padding-left: 110px; padding-top: 50px; padding-bottom: 100px;}
	 #main-visual .container > div { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: flex-end; }
	/* #main-visual h1 { font-size: 2rem; }
	#main-visual .type-a { font-size: 3.6rem; padding-bottom: 12px; height: auto;}
	#main-visual .type-a strong { font-size: 4.4rem;}
	#main-visual .type-a:nth-of-type(2) { margin-bottom: 20px; margin-left: 112px;}
	#main-visual .type-b { font-size: 3.4rem;}
	#main-visual .type-c {}*/
	#main-visual h1 { margin-right: 20px; width: 72%; }
#main-visual h1 img {}

}

@media (max-width: 767px) {
	#main-visual .container { display: none;}
	/* #main-visual h1 {}
	#main-visual .type-a {}
	#main-visual .type-a strong {}
	#main-visual .type-b {}
	#main-visual .type-c {}*/
	#main-visual h1 {}
#main-visual h1 img {}

}


/*------------------------------------------------------



------------------------------------------------------*/
#movie { position: relative; background: url(../images/bg_movie.png) no-repeat left top / cover; margin-bottom: 0;}
#movie::before { content: ""; background: linear-gradient(90deg, #2BB46F 0%, #04A5C2 100%); width: 100%; height: 200px; position: absolute; left: 0; top: 0;}

/* #video { display: none; } */
#videoWrap { background-color: #fff; border-radius: 30px; line-height: 1; box-shadow: 0px 0px 74px 0px rgba(0, 0, 0, 0.20); transition: all 0.4s;}
#videoWrap * { transition: all 0.4s;}

#videoWrap .head { background-color: var(--base-color-01); text-align: center; color: #fff; letter-spacing: 0.05em; line-height: 1.4; padding: 12px 10px; border-top-right-radius: 20px; border-top-left-radius: 20px;}
#videoWrap .head p { font-size: 1.4rem; font-weight: 700;}
#videoWrap .head p::before ,
#videoWrap .head p::after { content: ""; position: absolute; width: 15px; height: 15px; border-top: 1px solid #fff; transform: rotate(225deg) translateX(10px) translateY(-7px);}
#videoWrap .head p::after { transform: rotate(125deg) translateX(3px) translateY(7px);}
#videoWrap .head .title {}


#videoWrap video {
    width: 100%;
    height: calc(100% - 40px);
}

#videoWrap video[poster]{
    object-fit: cover
}

#videoWrap button {

    cursor: pointer;
    padding: 0;
    color: #fff;
    background-color: transparent;
    border: 0;
    line-height: 1;
	border-radius: 50%;
	background-color: var(--base-color-01);
	margin-right: 10px;
}

#controller-box {
    background-color: #E5F4DA;
    padding: 22px 10px 10px;
    position: relative;
    height: 110px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    text-align: center;
	display:-webkit-box; display:-ms-flexbox; display:flex; justify-content: center; align-items: center;
}

#video-file {
    display: none;
}

#video-play.hide ,
#video-pause.hide ,
#video-vol .hide { display: none;}

#full-screen { width: 124px; border-radius: 22px !important; font-size: 1.8rem; font-weight: 700; }

/* #videoWrap.full { max-width: 100vw; width: calc(100vw - 200px); height: 100vh; padding: 0; z-index: 100; }
#videoWrap.full .head { display: none;}
#videoWrap.full video { height: calc(100vh - 90px); } */
#videoWrap.full { max-width: 100vw; z-index: 100; }
#videoWrap.full .head { display: none;}
#videoWrap.full video { border-top-right-radius: 20px; border-top-left-radius: 20px; }


#progress-wrap {

    width: calc(100% - 40px);
    height: 8px;
    position: absolute;
    right: 20px;
    top: 8px;
    z-index: 1;
}

#progress-out {
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    /* border-radius: 3px; */
    /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); */
    transform: scaleY(1.0);
    transition: 0.3s;
}

#progress-out:hover {
    transform: scaleY(1.0);
    /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
    cursor: pointer;
}

#progress-in {
    margin: 0 auto 0 0;
    width: 100%;
    height: 100%;
    background-color: #27B279;
    /* border-radius: 3px; */
    transform-origin: top left;
    transition: 0.1s;
    transform: scaleX(0);
}

#progress-buff {
    margin: 0 auto 0 0;
    width: 100%;
    /* height: calc(100% - 2px); */
	height: 100%;
    background-color: #ccc;
    /* border-radius: 3px; */
    transform-origin: top left;
    transition: 0.1s;
    transform: scaleX(0);
    top: -8px;
    position: relative;
    z-index: -1;
}


@media (min-width: 768px) {
	#movie { height: 85vw; max-height: 840px; background-position: left 200px;}
	#videoWrap { max-width: 1060px; position: relative; top: -30px; padding: 30px 50px;}
	#videoWrap .head {}
	#videoWrap .head p {}
	#videoWrap .head .title { font-size: 3.2rem; }

	#full-screen { height: 44px;}
	#video-play { width: 44px; height: 44px;}
	#video-pause { width: 44px; height: 44px;}
	#video-vol { width: 64px; height: 64px;}

	#videoWrap.full { width: calc(100vw - 200px); padding: 20px; max-width: calc(((100vh - 130px) / 0.5625) + 40px); }
	#videoWrap.full .head {}
	#videoWrap.full video {}
}

@media (max-width: 768px) {
	#full-screen { display: none;}
}

@media (max-width: 767px) {
	#movie { padding-bottom: 30px;}

	#videoWrap { padding: 10px;}
	#videoWrap .head {}
	#videoWrap .head p {}
	#videoWrap .head .title { font-size: 2.6rem; }

	#full-screen { height: 40px;}
	#video-play { width: 40px; height: 40px;}
	#video-pause { width: 40px; height: 40px;}
	#video-vol { width: 54px; height: 54px;}

	#videoWrap.full { width: 100%; margin-left: 0; margin-right: 0;}
	
}


/*------------------------------------------------------

	solution

------------------------------------------------------*/
#solution { background: url(../images/bg_solution.jpg) no-repeat center center / cover; text-align: center; margin-bottom: 0;}
#solution .container {}
/* #solution .title { color: #005D93; font-weight: 800; line-height: 1.6; letter-spacing: 0.05em; margin-bottom: 35px;}
#solution .title strong {} */
#solution h2.title { width: 85%; max-width: calc(1062px / 2); margin-left: auto; margin-right: auto; }
#solution h2.title img { width: 100%;}
#solution .message { color: #fff; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em; background-color: #04A5C2; border-radius: 24px; padding: 10px; margin-bottom: 45px; position: relative;}
#solution .message span { color: #EBFF00;}
#solution .message::after { content: ""; position: absolute; width: 40px; height: 20px; border-top: 20px solid #04A5C2; border-left: 20px solid transparent; border-right: 20px solid transparent; left: 0; right: 0; bottom: -20px; margin: auto; }

#yes-no { background-color: #fff; margin-left: auto; margin-right: auto; position: relative; box-shadow: 0px 0px 20px 0px rgba(0, 104, 164, 0.25);}

#solution .question, .result {}
#solution .hidden { display: none; }
#solution .q-btn {}
#solution .q-btn:hover { background-color: #45a049; }

#front-cover { position: absolute; width: 100%; height: 100%; left: 0; top: 0; background: url(../images/bg_mesh.png) repeat left top #fff; text-align: center; line-height: 1.6; z-index: 1; }
#front-cover .title { color: var(--base-color-02); font-weight: 800; letter-spacing: 0.05em; margin-bottom: 0; background: url(../images/img_kantan.png) no-repeat 55px top / 79px auto; padding-top: 9px;}
#front-cover .title + p { color: #04A5C2; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 20px; }
#front-cover figure {}
#front-cover figure img { width: 100%; max-width: calc(802px / 2);}
#front-cover button { border: none; background-color: #0068A4; cursor: pointer; border-radius: 5px; color: #fff; font-size: 2.4rem; font-weight: 700; letter-spacing: 0.05em; width: 160px; height: 46px; }
#front-cover.hide { display: none;}


#question-container { background: url(../images/bg_mesh.png) repeat left top #fff; height: 100%; padding-bottom: 80px; padding-top: 15px; padding-left: 20px; padding-right: 20px; }
#question-container .title { font-size: 2.4rem; font-weight: 800; color: var(--base-color-02); margin-bottom: 30px;}
#question-container #question-no { color: var(--base-color-02); font-size: 2.8rem; font-weight: 800; line-height: 1.6; letter-spacing: 0.05em;}
#question-container #question-text { color: #04A5C2; font-weight: 700; line-height: 1.4; letter-spacing: 0.1em; }
#question-container .q-btn { border: none; cursor: pointer; border-radius: 6px; color: #fff; font-size: 2.4rem; font-weight: 700; line-height: 1.6; background-color: #61B851;  height: 46px; position: absolute; left: 0; bottom: 20px; right: 180px; top: auto; margin: auto; line-height: 46px; }
#question-container .q-btn:last-child { background-color: var(--base-color-01); right: 0; left: 180px;}


#result-container { background: url(../images/bg_mesh.png) repeat left top #fff; height: 100%; padding: 15px 20px; }
#result-container .title { font-size: 2.4rem; font-weight: 800; color: var(--base-color-02); margin-bottom: 50px; margin-bottom: 110px; }
#result-container #result-text {}
#result-container #restart-btn {  border: none; background-color: #0068A4; cursor: pointer; border-radius: 5px; color: #fff; font-size: 2.4rem; font-weight: 700; letter-spacing: 0.05em; padding: 0 20px; height: 46px; }


@media (min-width: 768px) {
	#solution { padding-top: 65px; padding-bottom: 150px;}
	#solution .container {}
	/* #solution .title { font-size: 4.4rem; }
	#solution .title strong { font-size: 6.4rem; } */
	#solution h2.title { margin-bottom: 30px; }
	#solution h2.title img {}

	#solution .message { max-width: 980px; margin-left: auto; margin-right: auto; font-size: 2.4rem;}
	#solution .message span {}
	#solution .message::after {}
	
	#yes-no { width: 640px; height: 380px; }

	#front-cover { padding: 32px 10px 10px; }
	#front-cover .title { font-size: 5.2rem; }
	#front-cover .title + p { font-size: 2.4rem; }
	#front-cover figure { margin-bottom: 25px; }
	#front-cover figure img {}
	#front-cover button {}

	#question-container {}
	#question-container .title {}
	#question-container #question-no {}
	#question-container #question-text { font-size: 3.6rem; }
	#question-container .q-btn { width: 160px; }

}

@media (max-width: 767px) {
	#solution { padding-top: 30px; padding-bottom: 80px; }
	#solution .container {}
	/* #solution .title { font-size: 2.6rem;}
	#solution .title strong { font-size: 3.6rem;} */
	#solution h2.title { margin-bottom: 20px; }
	#solution h2.title img {}

	#solution .message { font-size: 1.8rem; }
	#solution .message span {}
	#solution .message::after {}
	
	#yes-no { width: 100%; height: 340px; }

	#front-cover { padding: 20px 10px 10px; }
	#front-cover .title {
		background-position: calc(50% - 35px) top;
        padding-top: 0;
		font-size: 3.2rem;
		text-indent: -20px;
		background: none;
	}
	#front-cover .title::before { content: ""; position: relative; background: url(../images/img_kantan.png) no-repeat left top; width: 79px; height: 55px; background-size: cover; display: inline-block; margin-bottom: 10px; }

	#front-cover .title + p { font-size: 2rem; }
	#front-cover figure {
		width: 90%;
        margin-left: auto;
        margin-right: auto;
		margin-bottom: 20px;
	}
	#front-cover figure img {}
	#front-cover button {}

	#question-container { padding-left: 10px; padding-right: 10px; }
	#question-container .title {}
	#question-container #question-no {}
	#question-container #question-text { font-size: 2.8rem;}
	#question-container .q-btn { width: 120px; right: 140px; }
	#question-container .q-btn:last-child { left: 140px;}

}



/*------------------------------------------------------

	service

------------------------------------------------------*/
#service { background: linear-gradient(180deg, #F8FFCE 0%, #87CE9E 100%); }
#service .title { font-weight: 900; line-height: 1.6; letter-spacing: 0.05em; background: linear-gradient(90deg, #2BB46F 0%, #04A5C2 100%); background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-align: center;}
#service .title + .text { text-align: center; }
#service .title + .text p { font-size: 1.4rem; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em;}

#service-index {}
#service-index a { border-radius: 24px; background: linear-gradient(90deg, #2BB46F 0%, #F90 100%); padding: 10px; text-decoration: none; color: #fff; line-height: 1.6; letter-spacing: 0.05em; position: relative;}
#service-index a:nth-child(2) { background: linear-gradient(90deg, #2BB46F 0%, #04A5C2 100%); }
#service-index a:nth-child(3) { background: linear-gradient(90deg, #2BB46F 0%, #67B84E 100%); }
#service-index a:nth-child(4) { background: linear-gradient(90deg, #2BB46F 0%, #D2D822 100%); }

#service-index .l_col-img { align-items: flex-start;}
#service-index .l_col-img img { border-radius: 16px;}
#service-index .l_col-img figcaption { margin: 0; color: #fff; font-weight: 700; line-height: 1.4; writing-mode: vertical-rl; padding: 0;}
#service-index .l_col-img figcaption span { line-height: 1; padding-bottom: 12px; writing-mode:horizontal-tb; width: 100%;}
#service-index a p { text-align: center; font-weight: 700; position: relative;}
#service-index a p::after { content: ""; border-right: 2px solid #fff; border-bottom: 2px solid #fff; display: inline-block; width: 10px; height: 10px; transform: rotate(315deg); vertical-align: 3px; margin-left: 6px; }

#service-index a.focus {}
#service-index a.focus::after { content: ""; position: absolute; width: 140px; height: 140px; background: url(../images/img_focus.png) no-repeat left top / cover; left: -40px; top: -40px;
	animation: r-turn 1.4s linear infinite alternate; }
@keyframes r-turn {
	0%   { transform: rotate(-5deg); }
	10% { transform: rotate(5deg); }
	20% { transform: rotate(-5deg); }
	30% { transform: rotate(5deg); }
	40% { transform: rotate(0deg); }
	100% { transform: rotate(0deg); }
}
#service-index a.focus-out::after { content: ""; position: absolute; width: 100%; height: 100%; background-color: rgba(0,0,0,0.5); left: 0; top: 0; border-radius: 24px;}
#service-index a.focus-out:hover::after { opacity: 0; transition: opacity 0.2s;}

@media (min-width: 768px) {
	#service { padding-top: 70px; padding-bottom: 60px; margin-bottom: 170px;}
	#service .title { font-size: 3.6rem; }
	#service .title + .text { margin-bottom: 60px; }
	#service .title + .text p {}
	
	#service-index { max-width: 1120px; margin-left: auto; margin-right: auto;}
	#service-index a { width: calc(50% - 40px);}
	#service-index a:nth-child(n+3) { margin-top: 80px;}
	#service-index .l_col-img {}
	#service-index .l_col-img img { width: calc(100% - 60px);}
	#service-index .l_col-img figcaption { width: 60px;}
	#service-index .l_col-img figcaption span { font-size: 4.8rem; }
	#service-index a p { font-size: 2.2rem; }

}

@media (max-width: 767px) {
	#service { padding-top: 35px; padding-bottom: 30px; }
	#service .title { font-size: 2.8rem; margin-bottom: 10px; }
	#service .title + .text { margin-bottom: 40px; }
	
	#service-index { max-width: 1120px; margin-left: auto; margin-right: auto;}
	#service-index .l_col-img img { width: calc(100% - 60px); margin-bottom: 0;}
	#service-index .l_col-img figcaption { width: 60px; font-size: 1.1rem;}
	#service-index .l_col-img figcaption span { font-size: 3.4rem; }
	#service-index a p { font-size: 2rem; }

	#service-index a.focus::after { width: 120px; height: 120px; left: -20px; top: -20px;}
}




/*------------------------------------------------------

	footer

------------------------------------------------------*/
footer { border-top: 1px solid var(--base-color-01);}
footer .l_col-foot {}
footer .l_col-foot > div:first-child {}
footer .l_col-foot .l_col-logo { justify-content: flex-start; align-items: center;}
footer .l_col-foot .logo { border-right: 1px solid var(--base-color-02); }
footer .l_col-foot .logo a {}
footer .l_col-foot .logo img { width: 100%; max-width: 146px;}
footer .l_col-foot .site-name { font-weight: 700; line-height: 1.4; letter-spacing: 0.05em;}
footer .l_col-foot .site-name a { color: var(--base-color-01); text-decoration: none; }
footer .l_col-foot .official-link { line-height: 1.6; letter-spacing: 0.05em; color: #000; padding-top: 20px;}
footer .l_col-foot .official-link a { color: #000; text-decoration: none;}

footer .l_col-contact {}
footer .l_col-contact > div:first-child {}
footer .l_col-contact .title { color: var(--base-color-01); font-size: 1.6rem; font-weight: 700; line-height: 1.6; letter-spacing: 0.05em; }
footer .l_col-contact dl { color: var(--base-color-02); font-size: 1.6rem; line-height: 1.6; letter-spacing: 0.05em; }
footer .l_col-contact dl dt { font-weight: 700;}
footer .l_col-contact dl dd { margin-bottom: 20px; }
footer .l_col-contact > div:last-child {}
footer .l_col-contact figure {}
footer .l_col-contact figure img { width: 100%; max-width: 180px;}

#copy { color: #fff; font-weight: 400; letter-spacing: 0.05em; background-color: var(--base-color-01);  }
@media (min-width: 768px) {
	footer .l_col-foot { padding: 50px 0;}
	footer .l_col-foot > div:first-child { width: calc(50% - 20px);}
	footer .l_col-foot .logo { padding-right: 15px; margin-right: 15px; }
	footer .l_col-foot .site-name { font-size: 1.8rem; }
	footer .l_col-foot .official-link { font-size: 1.6rem; }
	
	footer .l_col-contact { width: calc(50% - 20px); }
	footer .l_col-contact > div:first-child { width: calc(100% - (180px + 20px));}
	footer .l_col-contact .title { margin-bottom: 20px;}
	footer .l_col-contact > div:last-child { width: 180px;}
	
	#copy { font-size: 1.6rem; padding-top: 6px; height: 38px; }
}

@media (max-width: 767px) {
	footer .l_col-foot { padding: 30px 0;}
	footer .l_col-foot > div:first-child { width: 100%;}
	footer .l_col-foot .logo { padding-right: 10px; margin-right: 10px; margin-bottom: 0; }
	footer .l_col-foot .site-name { font-size: 1.6rem; margin-bottom: 0;}
	footer .l_col-foot .official-link { font-size: 1.4rem; }
	
	footer .l_col-contact { width: 100%; margin-bottom: 0;}
	footer .l_col-contact > div:first-child { width: 100%;}
	footer .l_col-contact .title { margin-bottom: 10px;}
	footer .l_col-contact > div:last-child { width: 100%; margin-bottom: 0;}
	footer .l_col-contact figure { text-align: left; margin-bottom: 0;}
	
	#copy { font-size: 1.2rem; padding: 5px 0; }
}

/*------------------------------------------------------

	fixed-contact

------------------------------------------------------*/
#fixed-contact { position: fixed; background: #FF7A00; box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.35); z-index: 1;}
#fixed-contact a { color: #FFF; font-size: 2rem; font-weight: 700; line-height: 1.15; text-decoration: none; display: block; }
#fixed-contact img { width: 42px; height: auto;}


@media (min-width: 768px) {
	#fixed-contact { right: 0; top: 200px; border-radius: 15px 0px 0px 15px;border: 4px solid #fff; border-right: none; writing-mode: vertical-rl; text-orientation: upright; }
	#fixed-contact a { padding: 40px 8px; letter-spacing: 3px; }
	#fixed-contact img { vertical-align: 0; margin-bottom: 12px;}
}

@media (max-width: 767px) {
	#fixed-contact { left: 10px; bottom: 0; width: calc(100% - 20px); text-align: center; border-radius: 12px 12px 0 0; border: 4px solid #fff; border-bottom: 0; }
	#fixed-contact a { letter-spacing: 1px; padding: 6px 10px 8px;}
	#fixed-contact img { vertical-align: -13px; margin-right: 4px;}
}

