/*--------------------------------------------------------------*/
/* MainReset */
/*--------------------------------------------------------------*/
@font-face {
	font-family: 'din';
	src: url(./din.ttf);
}
html {
	font-size: 62.5%;
	background: #fff;
	box-sizing: border-box;
	scroll-behavior: smooth;
}
*, *:before, *:after {
	box-sizing: inherit;
}
body, div, dl, dt, dd, ul, ol, li, pre, code, 
form, fieldset, legend, input, textarea, figure, 
p, blockquote, th, td {
	font-size: 1.8rem;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4, h5, h6 {
	font-size: 5.0rem;
	font-weight: bold;
	margin: 0;
	padding: 0;
}
/* 580 */
@media (max-width: 580px) {
	body, div, dl, dt, dd, ul, ol, li, pre, code, 
	form, fieldset, legend, input, textarea, figure, 
	p, blockquote, th, td {
		font-size: 1.6rem;
	}
	h1, h2, h3, h4, h5, h6 {
		font-size: 3.0rem;
	}
}
body {
	color: #000;
	//font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
	font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
	//font-family:"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
	//font-family: メイリオ, HiraMaruPro-W4, Meiryo, "ヒラギノ角ゴ Pro W3";
	-mts-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
.din {
	font-family: "din", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, 游ゴシック体, "ヒラギノ角ゴ Pro W3", メイリオ, sans-serif;
}
.mn {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
img {
	-webkit-backface-visibility: hidden;
	max-width: 100%;
}
input, textarea, select, button {
	font-family: inherit;
	font-size: inherit;
	font-weight: normal;
}
input, select, button {
	vertical-align: middle;
}
textarea::placeholder,
input::placeholder {
	color: #ccc;
}
input:-ms-input-placeholder {
	color: #ccc;
}
input::-ms-input-placeholder {
	color: #ccc;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
address, caption, code, th {
	font-style: normal;
	font-weight: normal;
}
img, fieldset {
	border: 0;
}
ol, ul {
	list-style-type: none;
}
input[type=text],
input[type=email],
input[type=tel],
input[type=checkbox],
input[type=submit],
input[type=button],
input[type=number],
button,
select,
textarea {
	border-radius: 2px;
	border: 1px solid #ddd;
	margin: 0;
	padding: 5px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input[type=text]:focus,input[type=email]:focus,input[type=tel]:focus, select:focus, textarea:focus {
	outline: none;
	background-color: #FFFFDF;
}
input[type=submit], input[type=button], button {
	cursor: pointer;
	background-color: #F4F4F4;
}
input[type=submit]:hover, input[type=button]:hover, button:hover {
	background-color: #fff;
}
input[type=submit]:active, input[type=button]:active, button:active {
	background-color: #FFFFDF;
}
/* select */
select {
	background: url(./images/arrow.png) right 50% no-repeat #fff;
	background-size: contain;
	padding-right: 40px;
}
/* radio, checkbox */
input[type=checkbox] {
	visibility: hidden;
	width: 0;
	margin: 0;
	padding: 0;
	position: absolute;
}
input[type=checkbox] + label {
	position: relative;
	vertical-align: middle;
	display: block;
	padding-top: 5px;
	margin-top: 4px;
	padding-left: 21px;
	line-height: 1.4;
	cursor: pointer;
	display: inline;
}
input[type=checkbox] + label:before {
	content: "\f372";
	font-family: "Ionicons";
	color: #fff;
	font-size: 22px;
	line-height: 1;
	margin-right: 4px;
	vertical-align: middle;
	margin-right: 8px;
}
input[type=checkbox]:checked + label:before {
	content: "\f374";
	color: #fff;
}
/*
input[type=radio] {
	display: none;
}
input[type=radio] + label:before {
	content: "\f3a6";
	font-family: "Ionicons";
	color: #ccc;
	font-size: 19px;
	margin-right: 4px;
}
input[type=radio]:checked + label:before {
	content: "\f3a7";
	color: #00a99d;
}*/

/**
 * vertical style of radio and checkbox
 */
.mw_wp_form .vertical-item {
	display: block;
}
.mw_wp_form .vertical-item + .vertical-item {
	margin-top: 5px;
}

/**
 * horizontal style of radio and checkbox
 */
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 10px;
}

/**
 * radio and checkbox
 */
.mwform-checkbox-field label,
.mwform-radio-field label {
	font-weight: normal;
	margin-bottom: 0;
}
.mwform-checkbox-field input,
.mwform-radio-field input {
	margin-right: 5px;
}

/*--------------------------------------------------------------*/
/* common */
/*--------------------------------------------------------------*/
::selection {
	background: red;
	color: #fff;
}
a {
	color: inherit;
	text-decoration: none;
}
a:active, a:hover {
	color: #0074c1;
	outline: 0;
	text-decoration: none;
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	transition: all 0.5s;
}
.content {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}
p {
	line-height: 180%;
}
/* row left right */
.row {
	font-size: 0;
}
.left, .right {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
/* 580 */
@media (max-width: 580px) {
	.row .left,
	.row .right {
		display: block;
		width: 100%;
	}
}
/* pc tb sp view */
.sp_view {
	display: none;
}
.tb_view {
	display: none;
}
/* 768 */
@media (max-width: 768px) {
	.pc_view {
		display: none;
	}
	.tb_view {
		display: block;
	}
	.tb_none {
		display: none;
	}
}
/* 580 */
@media (max-width: 580px) {
	.sp_view {
		display: block;
	}
	.sp_none {
		display: none!important;
	}
}
/* move */
.mv_left,
.mv_right,
.mv_up,
.mv_down,
.mv_bk {
	position: relative;
}
.lv_fade,
.mv_fade {
	opacity: 0;
}
.mv_fade0 {
	opacity: 1;
}
.mv_left {
	opacity: 0;
	left: -100px;
}
.mv_right {
	opacity: 0;
	right: -100px;
}
.mv_up {
	opacity: 0;
	top: 100px;
}
.mv_down {
	opacity: 0;
	top: -100px;
}
/* table */
table {
	border-collapse: collapse;
}

/*--------------------------------------------------------------*/
/* site common */
/*--------------------------------------------------------------*/
main section {
	padding-top: 110px;
}
main section header {
	text-align: center;
}
.ye::before {
	content: '';
	background: url(../images/sankaku_yellow.svg) no-repeat;
	background-size: 100% auto;
	position: absolute;
	width: 100%;
	height: 100px;
	display: block;
	left: 0;
	top: 0px;
}
.gr::before {
	content: '';
	background: url(../images/sankaku_green.svg) no-repeat;
	background-size: 100% auto;
	position: absolute;
	width: 100%;
	height: 100px;
	display: block;
	left: 0;
	top: 0px;
}
.gr2::before {
	content: '';
	background: url(../images/sankaku_green2.svg) no-repeat;
	background-size: 100% auto;
	position: absolute;
	width: 100%;
	height: 100px;
	display: block;
	left: 0;
	top: 0px;
}
.ani_wrap {
	position: relative;
	display: inline-block;
	overflow: hidden;
}
.ani_fill {
	position: absolute;
	display: block;
	width: 200%;
	top: 0;
	left: -100%;
	bottom: 0;
	background: linear-gradient(90deg, #009389 0%,#009389 50%,#009389 0%,#009389 50%);
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
	-ms-transition: all 0.6s;
}
.ani_fill2 {
	position: absolute;
	display: block;
	width: 200%;
	top: 0;
	left: -100%;
	bottom: 0;
	background: linear-gradient(90deg, #FFCF00 0%,#FFCF00 50%,#FFCF00 0%,#FFCF00 50%);
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
	-ms-transition: all 0.6s;
}
.ani_fill3 {
	position: absolute;
	display: block;
	width: 200%;
	top: 0;
	left: -100%;
	bottom: 0;
	background: linear-gradient(90deg, #fff 0%,#fff 50%,#fff 0%,#fff 50%);
	-webkit-transition: all 0.6s;
	-moz-transition: all 0.6s;
	-o-transition: all 0.6s;
	-ms-transition: all 0.6s;
}
.ani_mv {
	-webkit-transform: translate(101%,0);
	-moz-transform: translate(101%,0);
	-o-transform: translate(101%,0);
	-ms-transform: translate(101%,0);
}
/* youtube popup close */
.modal-video button {
	outline: none;
}
.modal-video button:active {
	background-color: unset;
}
.modal-video button:hover {
	background-color: unset;
}
.modal-video-close-btn:hover:before,
.modal-video-close-btn:hover:after {
	background: #ccc;
}

/*--------------------------------------------------------------*/
/* MENU */
/*--------------------------------------------------------------*/
div#open {
	height: 20px;
	position: fixed;
	right: 20px;
	top: 20px;
	width: 30px;
	z-index: 9;
	cursor: pointer;
	display: none;
}
.menu_line {
	background: #000;
	display: block;
	height: 2px;
	position: absolute;
	transition:transform .3s;
	width: 100%;
}
.menu--active .menu_line {
	background: #fff!important;
}
.menu:hover .menu_line {
	background: #ccc;
}
.menu_line-center {
	top: 9px;
}
.menu_line-bottom {
	bottom: 0;
}
.menu--active .menu_line-top {
	top: 8px;
	transform: rotate(45deg);
}
.menu--active .menu_line-center {
	transform:scaleX(0);
}
.menu--active .menu_line-bottom {
	bottom: 10px;
	transform: rotate(135deg);
}
/* 768 */
@media (max-width: 768px) {
	div#open {
		display: block!important;
	}
}

/*--------------------------------------------------------------*/
/* SP MENU */
/*--------------------------------------------------------------*/
.menu {
	position: fixed;
	right: 0;
	top: 0;
	background: rgba(0,0,0,0.9);
	color: #F0F0F0;
	height: 100vh;
	width: 0;
	overflow: hidden;
	transition: all .3s ease-in-out;
	z-index: 99;
}
.menu .menu-inner {
	position: relative;
	height: 100%;
	width: 80vw;
	padding: 1.5rem;
}
.menu--active {
	height: 100vh;
	overflow: hidden;
}
.menu--active .menu {
	width: 83%;
	z-index: 5;
}
.menu ul.din {
	padding-top: 40px;
}
.menu ul.din li {
	transform: translate3d(-200px, 0, 0);
	transition: transform .15s ease-in;
	font-size: 3.0rem;
	margin-bottom: 30px;
	line-height: 0.6;
}
.menu--active ul.din li {
	transform: translate3d(0, 0, 0);
	transition: transform 500ms ease-out;
}
.menu--active ul.din li:nth-child(1) {
	transition-delay: .2s;
}
.menu--active ul.din li:nth-child(2) {
	transition-delay: .3s;
}
.menu--active ul.din li:nth-child(3) {
	transition-delay: .4s;
}
.menu--active ul.din li:nth-child(4) {
	transition-delay: .5s;
}
.menu--active ul.din li:nth-child(5) {
	transition-delay: .6s;
}
.menu--active ul.din li:nth-child(6) {
	transition-delay: .7s;
}
.menu--active ul.din li:nth-child(7) {
	transition-delay: .8s;
}
.menu--active ul.din li:nth-child(8) {
	transition-delay: .9s;
}
.menu ul.din li a small {
	font-size: 1.3rem;
}
.menu ul.din li a:hover {
	color: #009389;
}
.menu .version,
.menu .madeIn {
	position: absolute;
	bottom: 1.5rem;
	font-size: 1.2rem;
	text-transform: uppercase;
	font-weight: bold;
}
.menu .version {
	right: 1.5rem;
}
#close {
	font-size: 1.0rem;
	display: block;
	cursor: pointer;
	margin-bottom: 30px;
}

/*--------------------------------------------------------------*/
/* #pageTop */
/*--------------------------------------------------------------*/
#pageTop {
	border: 1px solid #009389;
	opacity: 0.8;
	position: fixed;
	padding: 0 7px;
	bottom: 20px;
	right: 20px;
	text-align: center;
	display: none;
	z-index: 4;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.7);
}
#pageTop::after {
	content: '\f3d8';
	font-family: "Ionicons";
	font-size: 2.8rem;
	color: #009389;
}
#pageTop:hover {
	background: #fff;
}


/*--------------------------------------------------------------*/
/* header #header */
/*--------------------------------------------------------------*/
#header {
	position: relative;
	width: 100%;
	height: 100vh;
}
#header .content {
	text-align: center;
	position: relative;
	z-index: 2;
	top: 50%;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
#header .play {
	padding: 40px 0;
}
/* 580 */
@media (max-width: 580px) {
	#header .t1530 span.num {
		font-size: 5.0rem;
	}
	#header .t1530 span.big {
		font-size: 5.0rem;
	}
	#header .t1530 strong {
		background: linear-gradient(transparent 70%,#009389 30%)!important;
	}
	#header img.play {
		padding: 25% 0;
		width: 130px;
	}
	#header h1 img {
		width: 80%;
	}
}

/*--------------------------------------------------------------*/
/* header movie */
/*--------------------------------------------------------------*/
#movie {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: #000;
}
#movie::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100vh;
	background: rgba(255,255,255,0.7);
}
#movie video {
	position: absolute;
	width: 100%;
	height: 100vh;
	object-fit: cover;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------*/
/* #concept */
/*--------------------------------------------------------------*/
#concept {
	position: relative;
	background: #FFCF00;
}
#concept .content {
	max-width: 750px;
	position: relative;
}
#concept h2 {
	text-align: center;
	margin-bottom: 50px;
}
#concept h2 span {
	background: #009389;
	color: #fff;
	padding: 8px 30px;
	line-height: 1;
	font-size: 3.4rem;
	letter-spacing: 4px;
}
#concept h3 {
	text-align: left;
	display: inline-block;
	line-height: 1.1;
	letter-spacing: -2px;
	margin-bottom: 50px;
}
#concept .cam01 {
	position: absolute;
	right: 5%;
	top: 12%;
}
#concept p.txt {
	text-align: left;
	display: inline-block;
	letter-spacing: -2px;
	margin-bottom: 100px;
}
#concept .cam02 {
	text-align: center;
	padding-bottom: 30px;
}
.t1530 {
	text-align: center!important;
	width: 100%;
}
.t1530 span.num {
	font-size: 8.0rem;
}
.t1530 span.big {
	font-size: 7.0rem;
}
.t1530 span.bold {
	font-weight: bold;
}
.t1530 strong {
	background: linear-gradient(transparent 70%,#009389 30%)!important;
}
/* 580 */
@media (max-width: 580px) {
	#concept h3 {
		line-height: 1.6;
	}
	#concept p.txt {
		margin-bottom: 30px;
	}
	#concept .cam01 {
		text-align: center;
		position: relative;
		margin-bottom: 60px;
	}
	#concept .cam01 img {
		width: 80px;
	}
	#concept .cam02 img {
		width: 60px;
	}
	.t1530 span.num {
		font-size: 6.0rem;
	}
	.t1530 span.big {
		font-size: 3.5rem;
	}
}

/*--------------------------------------------------------------*/
/* #work_content */
/*--------------------------------------------------------------*/
#work_content {
	position: relative;
	background: #009389;
	padding-bottom: 70px;
}
#work_content h1 {
	color: #fff;
	letter-spacing: -4px;
	line-height: 1.2;
}
#work_content h2 {
	color: #fff;
	font-size: 2.6rem;
}
#work_content header {
	margin-bottom: 60px;
}
#work_content table {
	background: #fff;
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
}
#work_content table th {
	font-size: 3.0rem;
	font-weight: bold;
	padding-left: 25px;
	text-align: left;
	width: 30%;
}
#work_content table td {
	font-size: 2.0rem;
}
#work_content table td:nth-of-type(1) {
	text-align: center;
	font-size: 5.0rem;
	font-weight: bold;
	color: red;
	width: 20%;
}
#work_content table tr:nth-child(even) {
	background: #81c9c4;
}
/* 580 */
@media (max-width: 580px) {
	#work_content h1 {
		font-size: 3.2rem;
	}
	#work_content h2 {
		font-size: 1.6rem;
	}
	#work_content table tr {
		display: block;
		padding: 17px;
		position: relative;
	}
	#work_content table tr th {
		line-height: 1;
		display: block;
		width: 100%;
		padding: 0;
		margin-bottom: 5px;
	}
	#work_content table tr td {
		line-height: 1.2;
		font-size: 1.6rem;
		letter-spacing: -1.7px;
		display: block;
		width: 100%;
	}
	#work_content table td:nth-of-type(1) {
		position: absolute;
		top: 5px;
		right: 0;
		line-height: 1;
		text-align: center;
		font-size: 5.0rem;
	}
}

/*--------------------------------------------------------------*/
/* #price */
/*--------------------------------------------------------------*/
#price {
	position: relative;
	background: #FFCF00;
	padding-top: 150px;
	padding-bottom: 70px;
}
#price header {
	margin-bottom: 65px;
}
#price ul {
	font-size: 0;
	max-width: 800px;
	width: 100%;
	margin: 0 auto 30px auto;
}
#price ul li {
	display: inline-block;
	vertical-align: top;
	width: calc(92%/3);
	margin-right: 4%;
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
	text-align: center;
	cursor: pointer;
	font-weight: bold;
}
#price ul li .gr2::before {
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}
#price ul li:hover .gr2::before {
	content: '';
	background: url(../images/sankaku_red2.svg) no-repeat;
	background-size: 100% auto;
	position: absolute;
	width: 100%;
	height: 100px;
	display: block;
	left: 0;
	top: 0px;
}
#price ul li:nth-child(3n) {
	margin-right: 0;
}
#price ul li .head {
	background: #009389;
	color: #fff;
	padding-top: 20px;
	border-radius: 10px 10px 0 0;
	height: 105px;
	position: relative;
	z-index: 2;
}
#price ul li:hover .head {
	background: #DC000C;
}
#price ul li .head h2 {
	font-size: 3.7rem;
	margin-bottom: 7px;
}
#price ul li .head .plan {
	background: #000;
	color: #fff;
	display: inline;
	padding: 1px 20px 3px 20px;
	border-radius: 20px;
	font-size: 2.0rem;
	font-style: oblique;
}
#price ul li .body {
	position: relative;
	background: #fff;
	padding-top: 40px;
	padding-bottom: 10px;
	z-index: 1;
}
#price ul li .body h3 {
	font-size: 2.5rem;
}
#price ul li .body table {
	width: 100%;
}
#price ul li .body table td {
	padding: 0;
}
#price ul li .body table td:nth-child(1) {
	text-align: right;
	width: 82%;
	padding-right: 3%;
}
#price ul li .body table td:nth-child(2) {
	text-align: left;
	width: 18%;
}
#price ul li .body span.num {
	font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
	font-stretch: condensed;
	font-weight: bold;
	font-size: 4.2rem;
}
#price ul li .body .price {
	font-size: 5.2rem;
	letter-spacing: -2px;
}
#price ul li .body .yen {
	font-size: 2.5rem;
	line-height: 1.1;
}
#price ul li .body .zei {
	display: block;
	font-size: 1.0rem;
	letter-spacing: 3px;
}
#price ul li .order {
	background: #DC000C;
	color: #fff;
	padding: 10px 0;
	border-radius: 0 0 10px 10px;
	font-size: 2.0rem;
	font-style: oblique;
}
#price ul li a:hover {
	color: #FFCF00;
}
#price ul li:hover .order {
	background: #000;
	font-weight: bold;
	color: #FFCF00;
}
/* 580 */
@media (max-width: 580px) {
	#price {
		padding-top: 80px;
		padding-bottom: 30px;
	}
	#price ul {
		text-align: center;
	}
	#price ul li {
		width: 100%;
		margin-right: 0;
		margin-bottom: 40px;
		max-width: 300px;
	}
	#price ul li .body {
		padding-top: 60px;
	}
	#price ul li .body table td:nth-child(1) {
		padding-right: 8%;
	}
}

/*--------------------------------------------------------------*/
/* #works */
/*--------------------------------------------------------------*/
#works {
	position: relative;
	background: #009389;
	padding-top: 150px;
}
#works header {
	color: #fff;
}
#works header h1 {
	margin-bottom: 35px;
	letter-spacing: -3px;
}
#works header ul.check {
	max-width: 600px;
	width: 100%;
	margin: 0 auto 65px auto;
}
#works header ul.check li {
	text-align: left;
	font-size: 2.4rem;
	font-weight: bold;
	margin-bottom: 7px;
}
#works header ul.check li::before {
	content: '';
	display: inline-block;
	margin-right: 15px;
	width: 22px;
	height: 25px;
	background: url(../images/check.svg) no-repeat;
	background-size: contain;
}
#works ul.movelist {
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	font-size: 0;
}
#works ul.movelist li {
	display: inline-block;
	vertical-align: top;
	width: calc(94%/3);
	margin-right: 3%;
	margin-bottom: 40px;
	text-align: center;
}
#works ul.movelist li figure {
	margin-bottom: 5px;
}
#works ul.movelist li:nth-child(3n) {
	margin-right: 0;
}
#works ul.movelist li h2.plan {
	background: #000;
	color: #fff;
	display: inline;
	padding: 1px 20px 3px 20px;
	border-radius: 20px;
	font-size: 2.0rem;
}
#works ul.movelist li h2.plan + p {
	padding-top: 5px;
}
#works .youtube {
	text-align: center;
}
/* 768 */
@media (max-width: 768px) {
	#works {
		padding-top: 90px;
		padding-bottom: 40px;
	}
	#works header ul.check li {
		font-size: 1.4rem;
		letter-spacing: -1px;
	}
	#works header ul.check li::before {
		margin-right: 8px;
		width: 15px;
		height: 18px;
	}
	#works ul.movelist li {
		width: calc(95%/2);
		margin-right: 5%;
	}
	#works ul.movelist li:nth-child(3n) {
		margin-right: 5%;
	}
	#works ul.movelist li:nth-child(2n) {
		margin-right: 0;
	}
	#works ul.movelist li h2.plan {
		padding: 3px 15px;
		border-radius: 15px;
		font-size: 1.6rem;
	}
	#works ul.movelist li h2.plan + p {
		font-size: 1.3rem;
	}
}

/*--------------------------------------------------------------*/
/* #flow */
/*--------------------------------------------------------------*/
#flow {
	position: relative;
	background: #FFCF00;
	padding-top: 150px;
}
#flow h1 {
	margin-bottom: 50px;
}
#flow table {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
}
#flow table th {
	text-align: center;
	padding: 35px 0;
	width: calc(100%/8);
	min-height: 230px;
	font-weight: bold;
	position: relative;
}
#flow table th:nth-child(odd) {
	background: #ffe470;
}
#flow table th:nth-child(even)::after {
	content: '';
	display: block;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 13px solid #ffe470;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
#flow table th:nth-child(2n+3)::after {
	content: '';
	display: block;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	border-left: 13px solid #FFCF00;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
#flow table th span.tate {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 3.0rem;
}
#flow table th span.tate.red {
	color: #DC000C;
}
#flow table tr:nth-child(2) td {
	height: 12px;
}
/* tr3 */
#flow table tr:nth-child(3) td {
	padding: 5px 0;
}
#flow table td.web {
	font-size: 1.5rem;
	background: #1A1311;
	color: #fff;
	padding-left: 10px!important;
	padding-right: 10px!important;
	line-height: 1.2;
	position: relative;
	overflow: hidden;
	z-index: 1;
}
#flow table td.web:before {
	content: '';
	width: 20px;
	height: 100px;
	position: absolute;
	right: -2px;
	top: -5px;
	background: linear-gradient(90deg,#FFCF00 0%,#FFCF00 50%,#DC000C 50%,#DC000C 100%);
	transform: rotate(15deg);
	-webkit-backface-visibility: hidden;
	z-index: 2;
}
#flow table td.five {
	font-size: 2.1rem;
	line-height: 1.2;
	background: #DC000C;
	color: #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}
#flow table td.five:before {
	content: '';
	width: 20px;
	height: 100px;
	position: absolute;
	left: -18px;
	top: -5px;
	background: linear-gradient(90deg,#FFCF00 0%,#FFCF00 50%,#DC000C 50%,#DC000C 100%);
	transform: rotate(15deg);
	-webkit-backface-visibility: hidden;
	z-index: 2;
}
#flow table td.five:after {
	content: '';
	width: 30px;
	height: 100px;
	position: absolute;
	right: -2px;
	top: -5px;
	background: linear-gradient(90deg,#DC000C 0%,#DC000C 50%,#FFCF00 50%,#FFCF00 100%);
	transform: rotate(15deg);
	-webkit-backface-visibility: hidden;
	z-index: 2;
}
#flow table td.five span.num {
	font-family: "Futura-CondensedExtraBold", Futura, sans-serif;
	font-size: 3.5rem;
	font-weight: bold;
}
/* 580 */
@media (max-width: 580px) {
	#flow {
		padding-top: 90px;
	}
	#flow table th span.tate {
		font-size: 2.3rem;
	}
	#flow table tr:nth-child(3) {
		display: none;
	}
	#flow div.five {
		padding-top: 30px;
		text-align: center;
	}
	#flow table th:nth-child(even)::after {
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 8px solid #ffe470;
	}
	#flow table th:nth-child(2n+3)::after {
		border-top: 10px solid transparent;
		border-bottom: 10px solid transparent;
		border-left: 5px solid #FFCF00;
	}
}

/*--------------------------------------------------------------
 * #faq
--------------------------------------------------------------*/
#faq {
	background: #FFCF00;
}
#faq header {
	margin-bottom: 40px;
}
#faq header h1 {
	letter-spacing: -4px;
}
#faq dl {
	padding-bottom: 3%;
}
#faq dl dt {
	display: table;
	width: 100%;
	background: #009389;
	position: relative;
	cursor: pointer;
}
#faq dl dt::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 20px;
	height: 5px;
	background: #009389;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-delay: 0;
	transition-delay: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#faq dl dt.is-open::after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 5px;
	background: #fff;
	-webkit-transform: rotate(-225deg);
	-ms-transform: rotate(-225deg);
	transform: rotate(-225deg);
}
#faq dl dt::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 32px;
	width: 20px;
	height: 5px;
	background: #009389;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: .6s;
	transition-duration: .6s;
	-webkit-transition-delay: 0;
	transition-delay: 0;
	-webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
	transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
#faq dl dt:hover::before,
#faq dl dt:hover::after {
	background: #fff;
}
#faq dl dt.is-open::before {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	width: 30px;
	height: 5px;
	background: #fff;
	-webkit-transform: rotate(225deg);
	-ms-transform: rotate(225deg);
	transform: rotate(225deg);
}
#faq dl dt .num {
	width: 70px;
	padding: 20px 0;
	text-align: center;
	color: #fff;
	letter-spacing: -2px;
	line-height: 1;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 3.5rem;
	display: table-cell;
	vertical-align: middle;
}
#faq dl dt .text {
	background: #fff;
	color: #000;
	line-height: 1.2;
	font-size: 2.4rem;
	display: table-cell;
	vertical-align: middle;
	padding-right: 60px;
	padding-left: 2%;
}
#faq dl dt.is-open .text,
#faq dl dt:hover .text {
	background: #009389;
	color: #fff;
}
#faq dl dd .tbl {
	display: table;
	width: 100%;
}
#faq dl dd .num {
	width: 70px;
	padding: 20px 0;
	text-align: center;
	color: #DC000C;
	letter-spacing: -2px;
	line-height: 1;
	font-family: 'Roboto', sans-serif;
	font-weight: 700;
	font-size: 3.5rem;
	display: table-cell;
	vertical-align: top;
}
#faq dl dd p {
	padding: 20px 3% 30px 2%;
	line-height: 1.3;
	display: table-cell;
	vertical-align: top;
}
#faq dl dd {
	background: #fff;
	display: none;
}
/* 580 */
@media (max-width: 580px) {
	#faq dl dt .num {
		width: 70px;
	}
	#faq dl dt .text {
		font-size: 1.4rem;
	}
	#faq dl dt .num {
		width: 50px;
		padding: 15px 0;
		font-size: 2.5rem;
	}
	#faq dl dd .num {
		width: 50px;
		padding: 15px 0;
		font-size: 2.5rem;
	}
	#faq dl dd p {
		padding: 15px 10% 30px 2%;
		font-size: 1.4rem;
	}
}

/*--------------------------------------------------------------*/
/* #option */
/*--------------------------------------------------------------*/
#option {
	position: relative;
	background: #FFCF00;
	text-align: center;
	padding-bottom: 40px;
}
#option header {
	margin-bottom: 30px;
}
#option ul {
	text-align: center;
	margin-bottom: 30px;
}
#option ul li {
	display: inline-block;
	vertical-align: top;
	background: #fff;
	padding: 5px 3% 0px 3%;
	margin: 15px 20px;
	font-size: 3.0rem;
	letter-spacing: -2px;
	font-weight: bold;
}
/* 580 */
@media (max-width: 580px) {
	#option {
		padding-bottom: 60px;
	}
	#option ul li {
		padding: 5px 10%;
		margin: 7px 20px;
		font-size: 2.4rem;
		letter-spacing: -2px;
	}
}

/*--------------------------------------------------------------*/
/* #contact */
/*--------------------------------------------------------------*/
#contact {
	position: relative;
	background: #009389;
	color: #fff;
}
#contact header h1 {
	margin-bottom: 20px;
}
#contact header p {
	margin-bottom: 20px;
}
#contact .otoiawase {
	text-align: center;
}
#contact .otoiawase a {
	text-decoration: underline;
}
#contact .otoiawase a:hover {
	text-decoration: none;
	color: #FFCF00;
}
#contact input.ymd {
	background: url(../images/cal.svg) no-repeat center right 10px #fff;
}
#contact form {
	padding-top: 60px;
	max-width: 550px;
	margin: 0 auto;
}
.help-block {
	line-height: 1.4;
	padding-top: 3px;
}
.form-group {
	padding-bottom: 20px;
}
form input[type=text],
form input[type=email],
form textarea,
form select {
	width: 100%;
}
form textarea {
	height: 120px;
}
form textarea + p {
	margin-top: -5px;
}
form button[type=submit] {
	background: #DC000C;
	border: none;
	padding: 5px 10%;
	color: #fff;
	outline: none;
}
form button[type=submit]:hover {
	background: orange;
}
form .form-group.chk {
	text-align: center;
	margin-bottom: 30px;
}
#contactForm2 .form-group.chk {
	text-align: center;
	margin-bottom: 0px;
}
form .form-group.chk .help-block {
	text-align: center;
}
/* modaal */
.modaal-container {
	max-width: 600px;
	background: #FFCF00;
	text-align: center;
}
.modaal-container header h1 {
	margin-bottom: 15px;
}
.modaal-container header p {
	font-size: 1.4rem;
	margin-bottom: 50px;
	line-height: 1.5;
}
.modaal-container .form-group.chk {
	font-size: 1.4rem;
}
.modaal-container .form-group.chk #agree2 + label::before {
	color: #000;
}
/* 580 */
@media (max-width: 580px) {
	#contact {
		padding-top: 70px;
		padding-bottom: 40px;
	}
	#contact header p {
		font-size: 1.2rem;
	}
	#contact form {
		padding-top: 50px;
	}
	#contact .form-group.chk {
		font-size: 1.3rem;
	}
	.modaal-container header p {
		font-size: 1.2rem;
		margin-bottom: 30px;
	}
	.modaal-container .form-group.chk {
		font-size: 1.2rem;
	}
	.form-group {
		padding-bottom: 10px;
	}
	form input[type=text],
	form input[type=email],
	form textarea,
	form select {
		width: 100%;
	}
}

/*--------------------------------------------------------------*/
/* form validation message */
/*--------------------------------------------------------------*/
p.help-block {
	text-align: left;
	color: red;
}
p.help-block ul li {
	font-size: 1.3rem;
}
#contactForm p.help-block ul li {
	background: #ffff94;
	display: inline;
	font-size: 1.3rem;
}
div.alert-success {
	font-size: 1.3rem;
	color: blue;
	margin-bottom: 20px;
}
div.alert-danger {
	font-size: 1.3rem;
	color: red;
	margin-bottom: 20px;
}
#success2 {
	padding-bottom: 15px;
}
#contactForm2 div.alert-success {
	background: blue;
	display: inline;
	color: white;
	border: 2px solid blue;
	padding: 2px 6px 3px 10px;
	line-height: 1;
	border-radius: 4px;
}

/*--------------------------------------------------------------*/
/* footer */
/*--------------------------------------------------------------*/
footer {
	position: relative;
	padding-top: 160px;
	background: #FFCF00;
	text-align: center;
}
footer h1 {
	margin-bottom: 60px;
}
footer .operated {
	margin-bottom: 35px;
}
footer .operated p {
	font-weight: bold;
	font-style: oblique;
	margin-bottom: 5px;
}
footer #copy {
	padding-bottom: 15px;
	font-size: 1.6rem;
}
footer #copy a:hover {
	color: #009389;
}
/* 580 */
@media (max-width: 580px) {
	footer {
		padding-top: 70px;
	}
	footer #copy {
		font-size: 1.1rem;
	}
}
