@charset "UTF-8";

/*========================================
  common
========================================*/
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
html {
    font-size: 62.5%;/* 10px */
}
body {
    min-width: 1000px;
    background-color: #FFF;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
    font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.6rem;
    color: #2E2D2C;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 768px) {
    body {
        min-width: 100%;
    }
}
@media screen and (max-width: 480px) {
    body {
        min-width: 320px;
    }
}

/* placeholder */
:placeholder-shown { color: #666666;}
::-webkit-input-placeholder { color: #666666;}
::-moz-placeholder { color: #666666; opacity: 1;}
:-ms-input-placeholder { color: #666666;}


/* anchor */
a {
    text-decoration: none;
	color: #000;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
a img {
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
a:hover {
    opacity: 0.6;
}
a:hover img {
    opacity: 0.6;
}
@media screen and (max-width: 768px) {
    a {
        word-break: break-all;
    }
}

/* ul ol */
ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* table wrapper */
.tableWrap {
    overflow-x: auto;
    margin: 1em 0;
    width: 100%;
}
.tableWrap table {
    table-layout: auto;
    min-width: 100%;
    width: 100%;
}
@media screen and (max-width: 768px) {
    .tableWrap table {
        width: 640px;
    }
}

/* image */
img {
    display: block;
}
.fitImg img {
    max-width: 100%;
    margin: 0 auto;
    height: auto;
}

/* marker */
.mark {
    background: linear-gradient(transparent 40%, #fff82e 40%);
    font-weight: bold;
}

/* line wrap */
.lw, .lw span {
    display: inline-block;
}

/* br */
br.pc {
    display: block;
}
br.sp {
    display: none;
}
@media screen and (max-width: 768px) {
    br.pc {
        display: none;
    }
    br.sp {
        display: block;
    }
}

/* button */
a[class^='btn-'] {
    position: relative;
    display: block;
	max-width: 720px;
	margin: 0 auto;
    padding: 16px;
	background-color: #D74B4B;
    text-align: center;
    font-size: 2.4rem;
    color: #FFF;
	-webkit-border-radius: 50px;
	border-radius: 50px;
}
a[class^='btn-'][class$='inquiry']::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 20px;
	margin: 0 10px 3px 0;
    background: url("../img/icon_mail.png") no-repeat center center;
    background-size: 26px 20px;
	vertical-align: middle;
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
	a[class^='btn-'] {
		padding: 16px;
		font-size: 1.8rem;
	}
}


/* button set */
.btnSet {
    margin-top: 60px;
}
.btnSet p {
	margin-bottom: 16px;
	text-align: center;
	font-size: 2.2rem;
	color: #D74B4B;
}

@media screen and (max-width: 480px) {
    .btnSet {
    	margin-top: 50px;
    }
    .btnSet p {
		font-size: 1.8rem;
    }
}


/* lead text */
.lead {
    font-size: 2.2rem;
    color: #1b7e47;
}

/* ScrollReveal */
html.sr .load-hidden {
    visibility: hidden;
}
.fadeinBox {
    visibility: hidden;
}


/*========================================
  Header
========================================*/
.header {
    position: fixed;
    z-index: 1000;
    width: 100%;
    min-width: 1000px;
    background-color: #FFF;
    -webkit-box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.2);
}
.header .inner {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
	width: 1000px;
	margin: 0 auto;
	padding: 20px 0;
}
@media screen and (max-width: 768px) {
    .header {
        width: 100%;
        min-width: auto;
    }
	.header .inner {
		width: 100%;
		padding: 10px 20px;
	}
}
@media screen and (max-width: 480px) {
}


/* navi */
.gnav {}
.gnav ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
.gnav ul li {
    padding: 0 15px;
}
.gnav ul li:first-child {
    padding-left: 0;
}
.gnav ul li:last-child {
    padding-right: 0;
}
.gnav ul li a {
    position: relative;
    display: block;
    padding: 8px 0;
    font-size: 1.4rem;
}
.gnav ul li a:hover {
	opacity: 1;
}
.gnav ul li a[class^='btn-'] {
    padding: 8px 16px;
	line-height: 1;
    font-size: 1.4rem;
}
.gnav ul li a[class^='btn-'][class$='inquiry']::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 10px;
	margin: 2px 8px 2px 0;
    background: url("../img/icon_mail.png") no-repeat center center;
    background-size: contain;
	vertical-align: top;
	line-height: 1;
}

.gnav ul li a:hover::after, .gnav ul li a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 4px;
    background-color: #0084D1;
}
.gnav ul li a[class^='btn-'][class$='inquiry']:hover {
	opacity: 0.6;
}
.gnav ul li a[class^='btn-'][class$='inquiry']::after {
	display: none;
}

@media screen and (max-width: 768px) {
    .gnav ul {
		position: fixed;
		left: 0;
		top: 60px;
		
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
        width: 100%;
        margin: 0 auto;
		background-color: #FFF;
		border-top: 1px solid #bbbdbe;
    }
    .gnav ul li {
		width: 50%;
        padding: 0;
        border-bottom: 1px solid #bbbdbe;
		text-align: center;
    }
    .gnav ul li a {
        display: block;
        padding: 20px;
        font-size: 1.6rem;
    }
	.gnav ul li a[class^='btn-'] {
		padding: 16px 20px;
		font-size: 1.8rem;
	}
	.gnav ul li a[class^='btn-'][class$='inquiry']::before {
		width: 26px;
		height: 20px;
		margin: 0 8px 3px 0;
	}
	
	.gnav ul li a:hover::after, .gnav ul li a.active::after {
		display: none;
	}
    .gnav ul li a.active::before {
        display: none;
    }
	.gnav ul li:last-child {
		width: 100%;
		padding: 20px;
	}
	.gnav ul li:first-child {
		display: none;
	}
	.gnav ul li:nth-child(odd) {
		border-left: 1px solid #bbbdbe;
	}
}


/* menu button */
.menuBtn {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    width: 60px;
    height: 60px;
    background-color: #FFF;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
.menuBtn:hover {
    opacity: 0.6;
}
.menuBtn span {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10;
    display: block;
    width: 32px;
    height: 2px;
    background-color: #2E2D2C;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.menuBtn span::before, .menuBtn span::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    z-index: 1010;
    width: 32px;
    height: 2px;
    background-color: #2E2D2C;
    -webkit-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}
.menuBtn span::before {
    top: -12px;
}
.menuBtn span::after {
    top: 12px;
}
.menuBtn.open span {
    background-color: #FFF;
}
.menuBtn.open span::before {
    top: 0;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}
.menuBtn.open span::after {
    top: 0;
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
}
@media screen and (max-width: 768px) {
    .menuBtn {
        display: block;
    }
}


/*========================================
  Footer
========================================*/
.footer {
	position: relative;
	min-width: 1000px;
    background-color: #E6E6EB;
}
@media screen and (max-width: 768px) {
	.footer {
		min-width: 100%;
	}
}
@media screen and (max-width: 480px) {
}

/* footer navi */
.fnav {
	width: 1000px;
	margin: 0 auto;
}
.fnav ul {
	display: flex; 
	flex-flow: row nowrap;
	justify-content: center;
	padding: 20px;
}
.fnav ul li {
	margin: 0 20px;
}
.fnav ul li a {
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.fnav {
		width: 100%;
	}
	.fnav ul {
		flex-flow: row wrap;
		justify-content: center;
		padding: 20px;
	}
	.fnav ul li {
		margin: 10px 20px;
	}
}
@media screen and (max-width: 480px) {
}

/* provider */
.provider {
	border-top: 1px solid #0084D1;
}
.provider .inner {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: flex-start;
	width: 1000px;
	margin: 0 auto;
	padding: 40px 20px;
}
.provider .inner .logo {
	width: 72px;
	margin-right: 30px;
}
.provider .inner address {
	font-style: normal;
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.provider .inner {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.provider .inner {
		display: block;
		padding: 40px 20px;
	}
	.provider .inner .logo {
		margin: 0 auto 20px;
	}
	.provider .inner address {
		margin: 0 auto;
		text-align: center;
	}

}


/* bottom */
.bottom {
	min-width: 1000px;
	padding: 16px 0;
	background-color: #FFF;
	font-size: 1.2rem;
}
.bottom .inner {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: flex-end;
	width: 1000px;
	margin: 0 auto;
}
.guideLink {
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
}
.guideLink li {
	margin-right: 20px;
}
.copyright {}

@media screen and (max-width: 768px) {
	.bottom {
		min-width: 100%;
	}
	.bottom .inner {
		display: block;
		width: 100%;
		padding: 0 16px;
	}
	.guideLink {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
	}
	.guideLink li {
		margin: 5px 10px;
	}

	.copyright {
		margin-top: 1em;
		padding: 1em;
		border-top: 1px solid #2E2D2C;
		text-align: center;
	}
}
@media screen and (max-width: 480px) {
}

/* page top */
.pagetop {
    position: absolute;
    right: 50%;
    top: -20px;
    margin-right: -550px;
}
.pagetop a {
    overflow: hidden;
    display: block;
    width: 40px;
    height: 0;
    padding-top: 40px;
    background: url("../img/pagetop_arrow.png") no-repeat center center #0084D1;
    background-size: 15px 8px;
}
@media screen and (max-width: 768px) {
    .pagetop {
        position: fixed;
        right: 10px;
        top: auto;
		bottom: 10px;
		z-index: 900;
        margin-right: 0;
    }
}

/*========================================
  main
========================================*/
main {
    padding-top: 80px;
}
@media screen and (max-width: 768px) {
    main {
        padding-top: 60px;
    }
}

/* block */
.block {
    width: 100%;
}
.block .inner {
    width: 1000px;
    margin: 0 auto;
    padding: 60px 0;
}

.block.hasBg {
	position: relative;
    background-color: #E6E6EB;
}
.block.hasBg::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -70px;
    display: block;
    width: 0;
    height: 0;
    border-width: 70px 75px 0 75px;
    border-style: solid;
    border-color: #E6E6EB transparent transparent transparent;
    pointer-events: none;
    -webkit-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
}
.block.hasBg + .block .inner {
    padding-top: 130px;
}
@media screen and (max-width: 768px) {
    .block {
        width: 100%;
    }
    .block .inner {
        width: calc(100% - 40px);
        padding: 40px 0;
    }
}
@media screen and (max-width: 480px) {
	.block.hasBg::after {
		bottom: -30px;
		border-width: 30px 35px 0 35px;
		border-style: solid;
		border-color: #E6E6EB transparent transparent transparent;
		pointer-events: none;
		-webkit-transform: translateX(-50%) translateY(0%);
		transform: translateX(-50%) translateY(0%);
	}
	.block.hasBg + .block .inner {
		padding-top: 70px;
	}
}

.blockHead {
	position: relative;
	z-index: 100;
	margin-bottom: 30px;
	padding: 0 20px;
}
.blockHead h2 {
    position: relative;
	text-align: center;
	font-weight: normal;
    font-size: 3rem;
}
.blockHead h2 .underline {
	display: inline-block;
	border-bottom: 3px solid #0084D1;
}
.blockHead h2 .stxt {
    font-size: 84%;
}
.blockHead h2 strong {
	font-weight: bold;
    font-size: 5.5rem;
	color: #0084D1;
}
.blockHead p {
    margin-top: 1.5em;
    font-size: 1.8rem;
}
.blockHead .text-center {
	text-align: center;
}

@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
	.blockHead h2 {
		font-size: 2.4rem;
	}
	.blockHead h2 strong {
		font-size: 3rem;
	}
	.blockHead p {
		font-size: 1.4rem;
	}

}

/*========================================
  splash
========================================*/
.splash {
	position: relative;
	z-index: 0;
	overflow: hidden;
	min-width: 1000px;
	background: url("../img/bg_dot_gy.png") repeat center top #E6E6EB;
}
.splash .inner {
	position: relative;
	z-index: 0;
	width: 1000px;
	height: 580px;
	margin: 0 auto;
	padding: 80px 0 160px;
}
.splash .inner p {
	position: relative;
	z-index: 50;
	margin-bottom: 30px;
	padding-left: 8px;
	border-left: 3px solid #0084D1;
	line-height: 1.375;
	font-weight: bold;
	font-size: 3rem;
	color: #0084D1;
}
.splash .inner p .stxt {
	font-size: 84%;
}
.splash .inner h1 {
	position: relative;
	z-index: 50;
	font-weight: normal;
	font-size: 4rem;
	color: #2E2D2C;
}
.splash .inner h1 span {
	display: inline-block;
	border-bottom: 3px solid #0084D1;
}
.splash .inner h1 span:first-child {
	z-index: 20;
}
.splash .inner .floatimg {
	position: absolute;
	z-index: 0;
	right: -211px;
	top: 35px;
}
.splash .inner::after {
	content: "";
	position: absolute;
	left: -20px;
	top: 240px;
	z-index: 10;
	display: block;
	width: 360px;
	height: 120px;
	background-color: #E6E6EB;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-webkit-box-shadow: 0 0 64px 48px #E6E6EB;
	box-shadow: 0 0 64px 48px #E6E6EB;
}

@media screen and (max-width: 768px) {
	.splash {
		min-width: 100%;
	}
	.splash .inner {
		position: relative;
		z-index: 0;
		width: 100%;
		height: auto;
		margin: 0 auto;
		padding: 40px 20px 140px;
	}
	.splash .inner p {
		margin-bottom: 100px;
	}
	.splash .inner .floatimg {
		right: -500px;
		top: 60px;
		width: auto;
	}
	.splash .inner .floatimg img {
		width: 75%;
		height: auto;
	}
	.splash .inner::after {
		top: 280px;
	}

}
@media screen and (max-width: 480px) {
	.splash .inner {
		padding: 40px 20px 100px;
	}
	.splash .inner p {
		margin-bottom: 140px;
		font-size: 2rem;
	}
	.splash .inner h1 {
		font-size: 2.8rem;
	}
	.splash .inner .floatimg img {
		width: 60%;
	}
	.splash .inner::after {
		top: 250px;
	}

}


/*========================================
  feature
========================================*/
/* feature */
#feature {
	position: relative;
	z-index: 100;
	margin-top: -130px;
}
#feature .inner {
	padding: 60px 80px 80px;
	background-color: #FFF;
}
@media screen and (max-width: 768px) {
	#feature {
		margin-top: -70px;
	}
	#feature .inner {
		padding: 40px 20px;
	}
}
@media screen and (max-width: 480px) {
	#feature .inner {
		padding: 40px 0;
	}
}

/* feature items */
.featureItems {
	margin-top: 30px;
}
.featureItems h3 {
	line-height: 1;
	text-align: center;
	font-size: 3rem;
}
.featureItems h3 strong {
	font-weight: bold;
	font-size: 5.5rem;
	color: #0084D1;
}
.featureList {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;
}
.featureList li {
	width: 400px;
	margin-top: 40px;
	padding: 30px;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 6px 6px 12px 0 rgba(0,0,0,0.2);
	box-shadow: 6px 6px 12px 0 rgba(0,0,0,0.2);
}
.featureList li .icon {
	width: 64px;
	margin: 0 auto 20px;
}
.featureList li h4 {
	text-align: center;
	font-size: 2.2rem;
	color: #0084D1;
}
.featureList li p {
	max-width: 230px;
	margin: 1em auto 0;
}

@media screen and (max-width: 768px) {
	.featureList {
		justify-content: center;
	}

}
@media screen and (max-width: 480px) {
	.featureList li {
		width: 100%;
		max-width: 400px;
		padding: 20px 10px;
	}
	.featureList li h4 {
		font-size: 1.8rem;
	}
	.featureList li p {
		font-size: 1.4rem;
	}
}

/*========================================
  problem
========================================*/
#problem {
	position: relative;
	z-index: 200;
}
#problem .inner {
	position: relative;
}
#problem .inner::before {
	content: "";
	display: block;
	position: absolute;
	left: -60px;
	top: -70px;
	z-index: 10;
	width: 225px;
	height: 206px;
	background: url("../img/case_illust01.png") no-repeat center center;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	#problem .inner::before {
		left: -100px;
		top: 10px;
	}
}
@media screen and (max-width: 480px) {
	#problem .inner::before {
		display: none;
	}

}


/* problem items */
.problemItems {
	margin-top: 40px;
}
.problemItems ul {
	position: relative;
	z-index: 100;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
.problemItems ul li {
	width: 184px;
}
.problemItems ul li h3 {
	white-space: nowrap;
	text-align: center;
	font-size: 1.8rem;
	color: #0084D1;
}
.problemItems ul li .problemDetail {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: left;
	min-height: 200px;
	margin-top: 10px;
	padding: 16px;
	background-color: #FFF;
	font-size: 1.4rem;
}
.problemItems ul li .problemDetail strong {
	display: block;
	text-align: center;
	color: #0084D1;
}
.problemItems ul li .problemDetail p {}


@media screen and (max-width: 768px) {
	.problemItems ul {
		flex-flow: column;
		justify-content: flex-start;
		align-items: center;
	}
	.problemItems ul li {
		width: 100%;
		max-width: 400px;
	}
	.problemItems ul li + li {
		margin-top: 40px;
	}
	.problemItems ul li .problemDetail {
		display: block;
		min-height: auto;
	}
}
@media screen and (max-width: 480px) {
}




.problemItems .problemEnd {
	position: relative;
	margin-top: 72px;
	text-align: center;
	font-size: 3.8rem;
	color: #0084D1;
}
.problemItems .problemEnd::before {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: -42px;
	width: 0;
	height: 0;
	border-width: 22px 18px 0 18px;
	border-style: solid;
	border-color: #818181 transparent transparent transparent;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
}
.problemItems .problemEnd p {
	position: relative;
	display: inline-block;
}
.problemItems .problemEnd p::after {
	content: "";
	display: block;
	position: absolute;
	right: -120px;
	top: 20px;
	z-index: 10;
	width: 109px;
	height: 208px;
	background: url("../img/case_illust02.png") no-repeat center center;
	background-size: contain;
}

@media screen and (max-width: 768px) {
	.problemItems .problemEnd {
		font-size: 2.8rem;
	}
	.problemItems .problemEnd p::after {
		right: -40px;
		top: 84px;
	}

}
@media screen and (max-width: 480px) {
	.problemItems .problemEnd {
		font-size: 2.2rem;
	}
	.problemItems .problemEnd p::after {
		display: none;
	}

}


/*========================================
  merit
========================================*/
#merit {}

/* merit box */
.meritBox {
	position: relative;
	width: 850px;
	min-height: 330px;
	margin: 0 auto;
	padding: 40px 0 40px 470px;
	background-color: #FFF;
	border-bottom: 1px solid #2E2D2C;
}
.meritBox .meritImg {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.meritBox strong {
	font-family: "abel", sans-serif;
	font-weight: bold;
	font-size: 2.4rem;
}
.meritBox strong span {
	font-size: 4rem;
}
.meritBox h3 {
	font-weight: normal;
	font-size: 3rem;
	color: #0084D1;
}
.meritBox p {
	margin-top: 10px;
	font-size: 1.8rem;
}
.meritBox small {
	display: block;
}

.meritBox:nth-of-type(odd) {
	padding: 40px 470px 40px 0;
}
.meritBox:nth-of-type(odd) .meritImg {
	position: absolute;
	left: auto;
	right: 0;
	top: 50%;
	-webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

@media screen and (max-width: 768px) {
	.meritBox {
		width: 100%;
		min-height: auto;
		padding: 40px 20px;
		text-align: center;
	}
	.meritBox .meritImg {
		position: relative;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}
	.meritBox:nth-of-type(odd) {
		padding: 40px 20px;
	}
	.meritBox:nth-of-type(odd) .meritImg {
		position: relative;
		-webkit-transform: translate(0, 0);
		transform: translate(0, 0);
	}

}
@media screen and (max-width: 480px) {
	.meritBox h3 {
		font-size: 2rem;
	}
	.meritBox p {
		font-size: 1.4rem;
	}

}





/*========================================
  case
========================================*/
#case {}

/* case */
.caseBox {
	width: 850px;
	margin: 0 auto;
	padding: 30px 40px 40px;
	background-color: #FFF;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-webkit-box-shadow: 6px 6px 12px 0 rgba(0,0,0,0.2);
	box-shadow: 6px 6px 12px 0 rgba(0,0,0,0.2);
}
.caseBox .boxHead {
	display: block;
	margin-bottom: 30px;
	font-family: "abel", sans-serif;
	text-align: center;
	letter-spacing: 0.75em;
	font-weight: bold;
	font-size: 2rem;
}
@media screen and (max-width: 768px) {
	.caseBox {
		width: 100%;
		margin: 0 auto;
		padding: 20px 30px 30px;
	}
	.caseBox .boxHead {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 480px) {
	.caseBox {
		padding: 20px;
	}

}

.caseSummary {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
}
.caseSummary .summaryImg {
	margin-right: 40px;
}
.caseSummary .summaryTxt {
	flex: 1;
}
.caseSummary .summaryTxt h3 {
	margin: 10px 0 0;
	font-size: 2.2rem;
	color: #0084D1;
}
.caseSummary .summaryTxt p {
	font-size: 1.6rem;
}
.caseSummary .summaryTxt table {
	width: 100%;
	margin-top: 10px;
	border-collapse: separate;
	border-spacing: 4px;
}
.caseSummary .summaryTxt table th {
	border: 1px solid #2E2D2C;
	width: 90px;
	white-space: nowrap;
}
.caseSummary .summaryTxt table td {
	padding-left: 16px;
	text-align: left;
}

@media screen and (max-width: 768px) {
	.caseSummary {
		display: block;
		width: 100%;
		max-width: 374px;
		margin: 0 auto;
	}
	.caseSummary .summaryImg {
		margin: 0 0 20px;
	}
	.caseSummary .summaryTxt {
		text-align: center;
	}
	.caseSummary .summaryTxt p img {
		margin: 0 auto;
	}

}
@media screen and (max-width: 480px) {
	.caseSummary .summaryTxt h3 {
		font-size: 1.8rem;
	}
	.caseSummary .summaryTxt p {
		font-size: 1.4rem;
	}

}

.caseDetail {}
.caseDetail dt {
	margin-top: 30px;
	font-size: 2.2rem;
	color: #0084D1;
}
.caseDetail dd {
	margin-top: 0.5em;
	font-size: 1.5rem;
}

@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}


/*========================================
  cost
========================================*/
#cost {
	background: url("../img/bg_dot_gy.png") repeat center top #E6E6EB;
}

/* cost */
.costItems {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	width: 760px;
	margin: 0 auto;
}
.costBox {
	position: relative;
	width: 360px;
	padding: 25px;
	background-color: #FFF;
}
.costBox::after {
	content: "";
	display: block;
	position: absolute;
	left: 25px;
	bottom: 25px;
	width: calc(100% - 50px);
	border-bottom: 2px solid #0084D1;
}
.costBox h3 {
	padding: 24px;
	background-color: #0084D1;
	text-align: center;
	font-weight: normal;
	font-size: 2.4rem;
	color: #FFF;
}
.costBox p {
	padding: 6px 0;
	text-align: center;
	font-size: 2.4rem;
}
.costBox p span {
	letter-spacing: 0.1em;
	font-family: "abel", sans-serif;
	font-weight: bold;
	font-size: 4.8rem;
}
.costBox .costList {
	padding: 8px 0;
	border-top: 2px solid #0084D1;
}
.costBox .costList li {
	padding-left: 1em;
	text-indent: -1em;
	font-size: 1.4rem;
	letter-spacing: 0;
}
.costBox .costList li::before {
	content: "■";
	text-indent: 0;
	color: #0084D1;
	
}


@media screen and (max-width: 768px) {
	.costItems {
		display: flex;
		flex-flow: column;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
	}
	.costBox {
		width: 100%;
		max-width: 360px;
	}
	.costBox:not(:first-child) {
		margin-top: 40px;
	}

}
@media screen and (max-width: 480px) {
	.costBox h3 {
		padding: 12px;
		font-size: 1.8rem;
	}
	.costBox p {
		font-size: 2rem;
	}
	.costBox p span {
		font-size: 3.6rem;
	}

}

/*========================================
  flow
========================================*/
#flow {}

/* flow */
.flowBox {
	width: 730px;
	margin: 40px auto 0;
}
.flowBox small {
	display: block;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.flowBox {
		width: 100%;
	}
	.scrollBox {
		position: relative;
		overflow-x: scroll;
	}
}
@media screen and (max-width: 480px) {
}

/*========================================
  comparison
========================================*/
#comparison {
	background: url("../img/bg_dot_gy.png") repeat center top #E6E6EB;
}

/* comparison */
.comparisonBox {
	margin: 40px auto 0;
}
.comparisonNote {
	width: 666px;
	margin: 40px auto 0;
}
.comparisonNote dt {
	text-align: center;
	font-size: 2.2rem;
}
.comparisonNote dt span {
	font-size: 2.8rem;
	color: #D74B4B;
}
.comparisonNote dd {
	margin-top: 10px;
}

@media screen and (max-width: 768px) {
	.comparisonNote {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.comparisonNote {}
	.comparisonNote dt {
		text-align: center;
		font-size: 1.6rem;
	}
	.comparisonNote dt span {
		font-size: 2rem;
		color: #D74B4B;
	}
	.comparisonNote dd {
		font-size: 1.4rem;
	}
}

/*========================================
  operation
========================================*/
#operation {}


.operationBox {}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
	.operationBox .scrollBox img {
		width: 496px;
		height: auto;
	}
}

/*========================================
  features
========================================*/
#features {}

/* features */
.featuresTable {
	table-layout: auto;
	border-collapse: collapse;
	width: 100%;
	font-size: 1.6rem;
}
.featuresTable thead th {
	padding: 1em;
	border: 1px solid #0084D1;
	white-space: nowrap;
	font-size: 1.4rem;
}
.featuresTable tbody th {
	width: 140px;
	padding: 1em;
	background-color: #E6E6EB;
	border: 1px solid #0084D1;
	font-weight: normal;
	color: #0084D1;
}
.featuresTable tbody td {
	padding: 1em;
	border: 1px solid #0084D1;
}
.featuresTable tbody td:first-of-type { width: 140px;}
.featuresTable tbody td:nth-of-type(3) { width: 100px;}
.featuresTable tbody td:nth-of-type(4) { width: 100px;}

.featuresTable tbody tr td:first-of-type {
	width: 140px;
	background-color: #EDF6FC;
	text-align: center;
}
.featuresTable tbody tr td:nth-last-of-type(-n+2) {
	text-align: center;
	color: #969696;
}

@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
	.featuresTable {
		font-size: 1.2rem;
	}
	.featuresTable thead th {
		padding: 1em;
		font-size: 1.2rem;
	}
	.featuresTable tbody th {
		width: 100px;
		padding: 8px;
	}
	.featuresTable tbody td {
		padding: 8px;
	}
	.featuresTable tbody tr td:first-of-type {
		width: 100px;
	}
}


