@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 90px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ttl_en {
	text-align: center;
	margin: 0 0 20px;
	line-height: 1;
}
.ttl01 {
	line-height: 1;
	font-size: 1.8rem;
	text-align: center;
	margin: 0 0 40px;
	letter-spacing: 0.1em;
}
.btm_bd {
	position: relative;
}
.btm_bd::after {
	position: absolute;
	display: block;
	content: "";
	width: 1px;
	height: 100px;
	right: 50%;
	bottom: -50px;
	transform: translate(50%,0);
	background-color: #374062;
	z-index: 5;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 70px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.ttl01 {
		font-size: 1.6rem;
		margin: 0 0 30px;
	}
	.btm_bd::after {
		height: 50px;
		bottom: -25px;
	}
}


/* header
-------------------------------------------------------*/
header {
	box-sizing: border-box;
	padding: 15px 20px;
	position: fixed;
	/*background-color: #fff;*/
	background: #f5f3f4;
	width: 100%;
	/*box-shadow: 0 2px 3px rgb(0 0 0 / 15%);*/
	z-index: 900;
}
header .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
}
header h1 {
	line-height: 1;
}
header .logo img {
	max-width: 203px;
}
@media screen and (max-width:1090px) {
	header .logo img {
		max-width: 130px;
	}
}
@media screen and (max-width:768px) {
	header {
		padding: 15px;
	}
	header .logo img {
		max-width: 170px;
	}
}

/* nav
-------------------------------------------------------*/
#nav_pc ul  {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-end;
	font-size: 1.4rem;
}
#nav_pc ul li:not(:last-child) {
	margin-right: 30px;
}
.btn_contact a {
	display: block;
	background-color: #222d54;
	padding: 10px 40px;
	color: #fff;
	font-size: 1.2rem;
}
.btn_contact a span {
	position: relative;
}
.btn_contact a span::before {
	position: absolute;
	display: block;
	content: "";
	width: 13px;
	height: 1px;
	left: -25px;
	top: 50%;
	transform: translate(0,50%);
	background-color: #fff;
}
@media screen and (max-width:1090px) {
	#nav_pc ul {
		font-size: 1.2rem;
	}
	#nav_pc ul li:not(:last-child) {
		margin-right: 20px;
	}
	.btn_contact a {
		padding: 10px 35px;
	}
}
@media screen and (max-width:768px) {
	#btn_nav {
		position: fixed;
		top: 14px;
		right: 15px;
		z-index: 999;
		cursor: pointer;
		display: flex;
		flex-flow: column;
		justify-content: space-between;
		height: 16px;
	}
	#btn_nav span {
		display: inline-block;
		background: #333;
		width: 25px;
		height: 1px;
		transition: .5s;
		position: relative;
	}
	#btn_nav.active span {
		transform: translateY(8px) rotate(225deg);
	}
	#btn_nav.active span:nth-child(2) {
		transform: scaleX(0);
	}
	#btn_nav.active span:last-child {
		transform: translateY(-8px) rotate(-225deg);
	}
	#nav_sp div,
	#nav_sp div::after {
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		overflow: hidden;
	}
	#nav_sp div {
		overflow: auto;
		background: #fff;
		right: -100%;
		z-index: 998;
		transition: .5s;
		padding: 30px 20px;
		box-sizing: border-box;
	}
	#nav_sp div.active {
		right: 0;
	}
	#nav_sp .nav_logo {
		margin: 0 0 30px;
		text-align: center;
	}
	#nav_sp .nav_logo img {
		max-width: 170px;
	}
	#nav_sp ul {
		margin: 0 0 20px;
	}
	#nav_sp ul li a {
		padding: 20px 10px;
		display: block;
		border-top: 1px dashed #d5d4d4;
		position: relative;
	}
	#nav_sp ul li a::after {
		position: absolute;
		display: block;
		content: "";
		border-left: 5px solid #d5d4d4;
		border-top: 5px solid transparent;
		border-bottom: 5px solid transparent;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
	}
	#nav_sp ul li:last-child a {
		border-bottom: 1px dashed #d5d4d4;
	}
	#nav_sp .btn_contact a {
		padding: 15px 40px;
		font-size: 1.4rem;
	}
}

/* visual
-------------------------------------------------------*/
#visual {
	background-color: #ececec;
	margin-top: 70px;
}
#visual .inner {
	background: url("../img/visual_bg.png")no-repeat right center/cover;
	max-width: 1200px;
	padding: 200px 0;
}
#visual .ttl_box {
	position: relative;
	max-width: 770px;
	text-align: center;
	color: #fff;
	padding: 45px 20px;
	line-height: 1;
	overflow: hidden;
}
#visual .ttl_box::before {
	position: absolute;
	display: block;
	content: "";
	background-color: rgba(0,0,0,0.5);
	width: 100%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: 1;
}
#visual .ttl_box .ttl {
	font-size: 4.6rem;
	margin: 0 0 40px;
	letter-spacing: 0.2em;
	position: relative;
	z-index: 2;
}
#visual .ttl_box .sub_ttl {
	font-size: 2.4rem;
	margin: 0 0 40px;
	position: relative;
	z-index: 2;
}
#visual .ttl_box .sub_ttl span {
	position: relative;
}
#visual .ttl_box .sub_ttl span::before,#visual .ttl_box .sub_ttl span::after {
	position: absolute;
	display: block;
	content: "";
	background-color: #fff;
	width: 80px;
	height: 1px;
	top: 50%;
	transform: translate(0,50%);
	z-index: 2;
}
#visual .ttl_box .sub_ttl span::before {
	left: -100px;
}
#visual .ttl_box .sub_ttl span::after {
	right: -100px;
}
#visual .ttl_box .txt {
	font-size: 2rem;
	position: relative;
	z-index: 2;
}
#visual .ttl_box .txt span {
	position: relative;
}
#visual .ttl_box .txt span::after {
	position: absolute;
	display: block;
	content: "";
	background: url(../img/logo_txt.png)no-repeat right bottom/94px 22px;
	width: 94px;
	height: 22px;
	right: -70px;
	bottom: -20px;
}
@media screen and (max-width:768px) {
	#visual {
		margin-top: 45px;
	}
	#visual .inner {
		background: url("../img/visual_bg.png")no-repeat right 50% center/cover;
		padding: 100px 30px;
	}
	#visual .ttl_box {
		padding: 35px 20px;
	}
	#visual .ttl_box .ttl {
		font-size: 2.2rem;
		margin: 0 0 20px;
	}
	#visual .ttl_box .sub_ttl {
		font-size: 1.5rem;
		margin: 0 0 20px;
	}
	#visual .ttl_box .sub_ttl span {
		position: relative;
		display: inline-block;
		line-height: 1.2;
	}
	#visual .ttl_box .sub_ttl span::before,#visual .ttl_box .sub_ttl span::after {
		width: 30px;
	}
	#visual .ttl_box .sub_ttl span .sp {
		display: inline;
	}
	#visual .ttl_box .sub_ttl span::before {
		left: -50px;
	}
	#visual .ttl_box .sub_ttl span::after {
		right: -50px;
	}
	#visual .ttl_box .txt {
		font-size: 1.3rem;
		line-height: 1.2;
	}
	#visual .ttl_box .txt span::after {
		background: url(../img/logo_txt.png)no-repeat right bottom/75px 17px;
		width: 75px;
		height: 17px;
		right: -20px;
		bottom: -20px;
	}
}

/* concept
-------------------------------------------------------*/
#concept {
	background-color: #ececec;
}
#concept .ttl_en img {
	max-width: 203px;
}
#concept .txt {
	text-align: center;
	line-height: 2.6;
	letter-spacing: 0.1em;
}
@media screen and (max-width:768px) {
	#concept .ttl_en img {
		max-width: 142px;
	}
	#concept .txt {
		line-height: 2.2;
		font-size: 1.2rem;
	}
}

/* our_strength
-------------------------------------------------------*/
#our_strength {
	background-color: #f5f4f4;
}
#our_strength .ttl_en img {
	max-width: 336px;
}
#our_strength ul  {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#our_strength ul li {
	width: 28%;
}
#our_strength ul li .icon_box {
	position: relative;
}
#our_strength ul li .icon_box .num {
	position: absolute;
	top: 0;
	left: 10px;
}
#our_strength ul li .icon_box .num img {
	max-width: 65px;
	min-width: 60px;
}
#our_strength ul li .icon_box .img {
	text-align: center;
	margin: 0 0 30px;
	padding: 0 0 30px;
	border-bottom: 1px solid #d5d4d4;
}
#our_strength ul li .icon_box .img img {
	max-width: 172px;
}
#our_strength ul li .ttl {
	text-align: center;
	font-size: 2rem;
	margin: 0 0 20px;
	letter-spacing: 0.1rem;
}
#our_strength ul li .txt {
	font-size: 1.4rem;
	line-height: 2.2;
	text-align: justify;
}
@media screen and (max-width:768px) {
	#our_strength .ttl_en img {
		max-width: 235px;
	}
	#our_strength ul  {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#our_strength ul li {
		width: 100%;
	}
	#our_strength ul li:not(:last-child) {
		margin: 0 0 40px;
	}
	#our_strength ul li .icon_box .num img {
		max-width: 50px;
		min-width: 50px;
	}
	#our_strength ul li .icon_box .img {
		margin: 0 0 20px;
		padding: 0 0 20px;
	}
	#our_strength ul li .icon_box .img img {
		max-width: 140px;
	}
	#our_strength ul li .ttl {
		font-size: 1.6rem;
	}
	#our_strength ul li .txt {
		font-size: 1.2rem;
		line-height: 2;
	}
}

/* style
-------------------------------------------------------*/
#style {
	background: linear-gradient(to bottom, #fff 0%, #fff 30%, #faf9f9 30%, #faf9f9 80%, #fff 80%, #fff 100%);
}
#style .ttl_en img {
	max-width: 557px;
}
#style .top_txt {
	text-align: center;
	font-size: 2rem;
	letter-spacing: 0.1em;
	margin: 0 0 90px;
}
#style ul li {
	position: relative;
}
#style ul li:not(:last-child) {
	margin: 0 0 70px;
}
#style ul li .scene_ttl {
	position: absolute;
	left: 0;
	top: 0;
}
#style ul li:nth-child(even) .scene_ttl {
	left: inherit;
	right: 0;
}
#style ul li .scene_ttl span {
	position: relative;
	display: block;
}
#style ul li .scene_ttl span::after {
	position: absolute;
	display: block;
	content: "";
	width: 70px;
	height: 1px;
	background-color: #222d54;
	right: -100px;
	top: 50%;
	transform: translate(0,-50%);
}
#style ul li:nth-child(even) .scene_ttl span::after {
	right: inherit;
	left: -100px;
}
#style ul li .scene_ttl img {
	max-width: 24px;
}
#style ul li .cont_box {
	display: flex;
	flex-flow: row nowrap;
	/*align-items: flex-start;*/
	align-items: center;
	justify-content: space-between;
	width: 60%;
	max-width: 610px;
	margin: 0 auto;
}
#style ul li:nth-child(2) .cont_box {
	flex-flow: row-reverse;
}
#style ul li .cont_box .img {
	width: 50%;
	margin: 0 7% 0 0;
}
#style ul li:nth-child(even) .cont_box .img {
	width: 50%;
	margin: 0 0 0 7%;
}
#style ul li .cont_box .txt_box {
	width: 50%;
}
#style ul li .ttl {
	font-size: 2.5rem;
	color: #222d54;
	line-height: 1;
	margin: 0 0 25px;
}
#style ul li .txt {
	font-size: 1.4rem;
	line-height: 2.2;
	margin: 0 0 20px;
	text-align: justify;
}
#style ul li .price {
	border-bottom: 1px solid #222d54;
	font-size: 1.8rem;
	padding: 0 0 10px;
	letter-spacing: 0.1em;
	color: #222d54;
}
@media screen and (max-width:768px) {
	#style .ttl_en img {
		max-width: 389px;
	}
	#style .top_txt {
		font-size: 1.4rem;
		margin: 0 0 50px;
	}
	#style ul li  {
		display: flex;
		flex-flow: row nowrap;
		align-items: flex-start;
		justify-content: flex-start;
	}
	#style ul li .scene_ttl {
		position: inherit;
	}
	#style ul li .scene_ttl span::after {
		width: 100%;
		right: -34px;
	}
	#style ul li:nth-child(even) .scene_ttl span::after {
		right: inherit;
		left: -34px;
	}
	#style ul li .scene_ttl img {
		max-width: 18px;
	}
	#style ul li .cont_box {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		width: 100%;
	}
	#style ul li:nth-child(2) .cont_box {
		flex-flow: column;
	}
	#style ul li .cont_box .img {
		width: 70%;
		margin: 0 0 30px;
	}
	#style ul li:nth-child(even) .cont_box .img {
		width: 70%;
		margin: 0 0 20px;
	}
	#style ul li .cont_box .txt_box {
		width: 100%;
		padding: 0 20px 0 0;
	}
	#style ul li:nth-child(even) .cont_box .txt_box {
		padding: 0 0 0 20px;
	}
	#style ul li .ttl {
		font-size: 2rem;
		margin: 0 0 20px;
	}
	#style ul li .txt {
		font-size: 1.2rem;
		line-height: 2;
	}
}

/* detail
-------------------------------------------------------*/
#detail {
	background: url(../img/bg_details.png)no-repeat center/cover;
	color: #fff;
	background-attachment: fixed;
}
#detail .ttl_en img {
	max-width: 182px;
}
#detail ul {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: space-between;
}
#detail ul li {
	width: 28%;
}
#detail ul li .img {
	margin: 0 0 30px;
}
#detail ul li .ttl {
	margin: 0 0 30px;
	text-align: center;
	font-size: 2rem;
	letter-spacing: 0.1em;
}
#detail ul li .txt {
	font-size: 1.4rem;
	line-height: 2.2;
	text-align: justify;
}
@media screen and (max-width:768px) {
	#detail {
		background: url(../img/bg_details_sp.png)no-repeat center/cover;
	}
	#detail .ttl_en img {
		max-width: 127px;
	}
	#detail ul {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#detail ul li {
		width: 100%;
	}
	#detail ul li:not(:last-child) {
		margin: 0 0 50px;
	}
	#detail ul li .img {
		margin: 0 auto 20px;
		text-align: center;
		width: 70%;
	}
	#detail ul li .ttl {
		margin: 0 0 20px;
		font-size: 1.8rem;
	}
	#detail ul li .txt {
		font-size: 1.2rem;
		line-height: 2;
	}
}

/* voice
-------------------------------------------------------*/
#voice.area {
	padding: 90px 0;
}
#voice .ttl_en img {
	max-width: 421px;
}
#voice ul li:nth-child(odd) {
	margin-right: 40px;
}
#voice ul li:nth-child(even) {
	margin-left: 40px;
}
#voice ul li:not(:last-child) {
	margin-bottom: 60px;
}
#voice ul li .txt_box {
	max-width: 1000px;
	margin: 0 auto;
	padding: 70px 40px;
	position: relative;
	z-index: 3;
	position: relative;
}
#voice ul li .txt_box::before {
	position: absolute;
	display: block;
	content: "";
	background-color: #faf9f9;
	width: 200%;
	height: 100%;
	right: 0;
	bottom: 0;
	z-index: 1;
}
#voice ul li .txt_box::after {
	position: absolute;
	display: block;
	content: "";
	background-color: #d9d9d9;
	width: 210%;
	height: 100%;
	right: -10px;
	bottom: -10px;
	z-index: -1;
}
#voice ul li:nth-child(even) .txt_box::before {
	right: inherit;
	left: 0;
}
#voice ul li:nth-child(even) .txt_box::after {
	right: inherit;
	left: -10px;
}
#voice ul li .txt_box .box {
	position: relative;
	z-index: 5;
}
#voice ul li .txt_box .ttl {
	font-size: 2rem;
	margin: 0 0 20px;
}
#voice ul li .txt_box .ttl span {
	font-size: 1.4rem;
	/*margin: 0 0 0 15px;*/
	margin: 0 0 0 0;
}
#voice ul li .txt_box .txt {
	font-size: 1.4rem;
	line-height: 2.2;
}
@media screen and (max-width:768px) {
	#voice.area {
		padding: 70px 0;
	}
	#voice .ttl_en {
		margin: 0 20px 20px;
	}
	#voice .ttl_en img {
		max-width: 294px;
	}
	#voice ul li:nth-child(odd) {
		margin-right: 20px;
	}
	#voice ul li:nth-child(even) {
		margin-left: 20px;
	}
	#voice ul li:not(:last-child) {
		margin-bottom: 40px;
	}
	#voice ul li .txt_box {
		padding: 40px 15px 40px 30px;
	}
	#voice ul li:nth-child(even) .txt_box {
		padding: 40px 30px 40px 20px;
	}
	#voice ul li .txt_box::after {
		right: -5px;
		bottom: -5px;
	}
	#voice ul li:nth-child(even) .txt_box::after {
		right: inherit;
		left: -5px;
	}
	#voice ul li .txt_box .ttl {
		font-size: 2rem;
		margin: 0 0 20px;
	}
	#voice ul li .txt_box .ttl span {
		font-size: 1.2rem;
		margin: 0 0 0 15px;
	}
	#voice ul li .txt_box .txt {
		font-size: 1.2rem;
		line-height: 2;
	}
}

/* flow
-------------------------------------------------------*/
#flow {
	background: url(../img/bg_how_to.png)no-repeat center/cover;
	background-attachment: fixed;
}
#flow .ttl_en img {
	max-width: 344px;
}
#flow .top_txt {
	text-align: center;
	font-size: 2rem;
	margin: 0 0 80px;
}
#flow ul {
	max-width: 760px;
	margin: 0 auto;
	position: relative;
}
#flow ul::before {
	position: absolute;
	display: block;
	content: "";
	width: 3px;
	height: 95%;
	background: #222d54;
	top: 1%;
	left: 9%;
	z-index: 1;
}
#flow ul li {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
}
#flow ul li:not(:last-child) {
	margin: 0 0 60px;
}
#flow ul li .img {
	width: 20%;
	margin: 0 50px 0 0;
	position: relative;
	z-index: 2;
}
#flow ul li .txt_box {
	width: 80%;
}
#flow ul li .txt_box .ttl {
	font-size: 2.6rem;
	line-height: 1;
	margin: 0 0 20px;
	line-height: 1.2;
}
#flow ul li .txt_box .txt {
	font-size: 1.4rem;
	line-height: 2.2;
}
@media screen and (max-width:768px) {
	#flow {
		background: url(../img/bg_how_to.png)no-repeat right 20% center/cover;
	}
	#flow .ttl_en img {
		max-width: 240px;
	}
	#flow .top_txt {
		font-size: 1.6rem;
		margin: 0 0 50px;
	}
	#flow ul::before {
		left: 13%;
		width: 2px;
		height: 85%;
	}
	#flow ul li {
		align-items: flex-start;
		justify-content: flex-start;
	}
	#flow ul li:nth-child(2) {
		align-items: center;
	}
	#flow ul li:not(:last-child) {
		margin: 0 0 40px;
	}
	#flow ul li .img {
		width: 30%;
		margin: 0 20px 0 0;
	}
	#flow ul li .txt_box {
		width: 70%;
	}
	#flow ul li .txt_box .ttl {
		font-size: 2rem;
		margin: 0 0 15px;
	}
	#flow ul li .txt_box .txt {
		font-size: 1.2rem;
		line-height: 2;
	}
}

/* contact
-------------------------------------------------------*/
#contact.area {
	padding: 100px 20px 170px;
}
#contact .inner {
	max-width: 670px;
}
#contact .ttl_en img {
	max-width: 209px;
}
#contact .info_box {
	margin: 0 auto 70px; 
	background-color: #f3f3f3;
	padding: 40px 20px;
}
#contact .info_box .tel {
	text-align: center;
	margin: 0 0 20px;
}
#contact .info_box .tel a img {
	max-width: 305px;
}
#contact .info_box .tel span {
	font-size: 1.4rem;
	margin: 0 0 0 10px;
}
#contact .info_box dl {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
}
#contact .info_box dl dt {
	font-size: 1.4rem;
	line-height: 2.2;
	margin: 0 50px 0 0;
}
#contact .info_box dl dd img {
	max-width: 120px;
}
#contact .top_txt {
	text-align: center;
	font-size: 2rem;
	letter-spacing: 0.1em;
	margin: 0 0 40px;
}
#contact .table_temp {
	width: 100%;
	font-size: 1.4rem;
}
#contact.contact_after  {
	padding: 170px 20px 170px;
}
#contact tr {
	display: table;
	width: 100%;
	table-layout: fixed;
}
#contact tr>* {
	display: table-cell;
	vertical-align: middle;
	padding: 20px 10px;
	box-sizing: border-box;
	line-height: 1;
}
#contact tr th {
	width: 200px;
	text-align: left;
	line-height: 1.4;
	letter-spacing: 0.1em;
}
#contact tr th b {
	display: block;
	position: relative;
	font-weight: normal;
}
#contact tr.hissu th b::after,
#contact tr.nini th b::after {
	color: #fff;
	font-weight: 500;
	font-size: 1.2rem;
	width: 50px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}
#contact tr.hissu th b::after {
	content: "必須";
	background: #aa0726;
}
#contact tr.nini th b::after {
	content: "任意";
	background: #5e5e5e;
}
#contact.contact_after tr {
	border-bottom: 1px solid #ccc;
}
#contact.contact_after tr:first-child {
	border-top: 1px solid #ccc;
	margin: 30px 0 0;
}
#contact.contact_after tr th {
	color: #aaa;
}
#contact.contact_after tr td {
	font-weight: 500;
}
.txt_form .red,
.error_messe b {
	color: #f00;
	font-weight: normal;
}
.error_messe {
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.3;
}
.error_messe>* {
	display: inline-block;
}
#contact input[type="text"],
#contact select,
#contact textarea {
	width: 100%;
	background-color: #f3f3f3;
	border: 1px solid #d6d6d6;
}
#contact input[type="text"],
#contact select {
	height: 40px;
}
#contact textarea {
	min-height: 150px;
	resize: vertical;
}
#contact .radio_area label,
#contact .check_area label {
	display: inline-block;
	margin: 5px 5px 5px 0;
	line-height: 1.3;
}
#contact .txt_form {
	text-align: center;
	line-height: 1.3;
}
#contact .txt_form span {
	display: block;
}
::placeholder {
	color: #ccc;
}
#contact .form_btn {
	display: flex;
	flex-flow: row-reverse nowrap;
	align-items: center;
	justify-content: space-evenly;
}
#contact .form_btn01,
#contact .form_btn02 {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80%;
	max-width: 250px;
	height: 60px;
	border: none;
	padding: 10px;
	margin: 30px auto 0;
	box-sizing: border-box;
	color: #fff;
	line-height: 1;
    text-align: center;
	letter-spacing: 0.1rem;
}
#contact .form_btn01 {
	background: #222d54;
}
#contact .form_btn02 {
	background: #333;
}
/* table_temp end */
@media screen and (max-width:768px) {
	#contact.area {
		padding: 70px 20px 100px;
	}
	#contact.contact_after  {
		padding: 100px 20px 100px;
	}
	#contact .ttl_en img {
		max-width: 146px;
	}
	#contact .info_box {
		margin: 0 auto 40px; 
		padding: 30px 20px;
	}
	#contact .info_box .tel {
		text-align: center;
		margin: 0 0 20px;
	}
	#contact .info_box .tel a img {
		max-width: 305px;
	}
	#contact .info_box .tel span {
		display: block;
		margin: 10px 0 0;
	}
	#contact .info_box dl {
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#contact .info_box dl dt {
		font-size: 1.4rem;
		line-height: 2;
		margin: 0 0 20px;
	}
	#contact .info_box dl dd img {
		max-width: 100px;
	}
	#contact .top_txt {
		font-size: 1.8rem;
		margin: 0 0 30px;
	}
	/* table_temp start */
	#contact.contact_after tr:first-child {
		margin: 20px 0 0;
	}
	#contact tr>* {
		display: block;
		padding: 15px 0;
		line-height: 1.3;
	}
	#contact tr th {
		width: 100%;
		font-size: 100%;
	}
	#contact tr td {
		padding-top: 0;
	}
	#contact tr.hissu th b::after,
	#contact tr.nini th b::after {
		top: 0!important;
		right: 0!important;
		bottom: 0!important;
	}
	#contact .radio_area label,
	#contact .check_area label {
		display: flex;
		align-items: center;
	}
	#contact .form_btn {
		flex-flow: column;
	}
	#contact .form_btn01,
	#contact .form_btn02 {
		margin: 20px 0 0;
		font-size: 100%;
		height: 50px;
	}
	/* table_temp end */
}



/* footer
-------------------------------------------------------*/
#footer {
	background: url(../img/bg_footer.png)no-repeat center/cover;
	color: #fff;
}
#footer.area {
	padding: 40px 20px;
}
#footer .txt_box {
	background-color: rgba(16,25,59,0.8);
	padding: 10px;
	max-width: 340px;
	margin: 0 auto;
}
#footer .txt_box .bd {
	border: 1px dashed #fff;
	padding: 60px 20px;
}
#footer .logo {
	text-align: center;
	margin: 0 0 40px;
}
#footer .logo img {
	max-width: 203px;
}
#footer .txt {
	text-align: center;
	font-size: 1.4rem;
	line-height: 2.2;
	margin: 0 0 50px;
}
#footer .copy {
	font-size: 1.2rem;
	text-align: center;
}

@media screen and (max-width:768px) {
	#footer.area {
		padding: 50px 30px;
	}
	#footer .txt_box .bd {
		padding: 40px 20px;
	}
	#footer .logo {
		margin: 0 0 30px;
	}
	#footer .logo img {
		max-width: 150px;
	}
	#footer .txt {
		font-size: 1.2rem;
		line-height: 2;
		margin: 0 0 30px;
	}
	#footer .copy {
		font-size: 0.8rem;
	}
}

/* animation
-------------------------------------------------------*/
/* ani01 */
.ani01 {
	opacity : 0;
    transform : translate(-50px, 0);
    transition : all 2s;
  }
  .ani01.scrollin {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
  }

/* ani02 */
.ani02 span{
	opacity: 0;
}
.ani02.appeartext span{ 
	animation:text_anime_on 1s ease-out forwards; 
}
@keyframes text_anime_on {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* ani_visual */
#visual .ttl_box.ani_visual_bg::before {
	animation-name: test_box_slide;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateX(-100%); 
}
@keyframes test_box_slide {
	0% {
		opacity: 0;
		transform: translate(-100%,0);
	}
	100% {
		opacity: 1;
		transform: translate(0,0);
	}
}
.ttl_box .ani_visual_ttl {
	opacity: 0;
}
.ttl_box .ani_visual_ttl:nth-child(1) {
	animation: fade01 1s ease 0.5s 1 forwards;
}
.ttl_box .ani_visual_ttl:nth-child(2) {
	animation: fade01 1s ease 1.5s 1 forwards;
}
.ttl_box .ani_visual_ttl:nth-child(3) {
	animation: fade01 1s ease 1.7s 1 forwards;
}
#visual .ttl_box .txt span::after {
	opacity: 0;
	animation: fade02 1s ease 2.2s 1 forwards;
	transform: translateX(-20%); 
}
@keyframes fade01 {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade02 {
	0% {
		opacity: 0;
		transform: translate(-20%,0);
	}
	100% {
		opacity: 1;
		transform: translate(0,0);
	}
}

/* ani_border */
.btm_bd::after {
	transform: scaleY(0);
	animation: border 5s linear 1s infinite;
	transform-origin: center top;
}
@keyframes border {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	15% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	85% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}

/* flow ani_border */
#flow ul::before {
	transform: scaleY(0);
	animation: border02 6s forwards;
	transform-origin: center top;
}
@keyframes border02 {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	30% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	100% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
}

/* fade_row */
.fade_row {
	opacity: 0;
	flex: 0 1 30%;
	transform: translateY(20px);
	transition: all 1.0s;
}
.fade_row.show {
	opacity: 1;
	transform: translateY(0);
}
.fade_row.show:nth-of-type(1) {
	transition-delay: 0s;
}
.fade_row.show:nth-of-type(2) {
	transition-delay: 0.5s;
}
.fade_row.show:nth-of-type(3) {
	transition-delay: 1s;
}

/* ani_kira */
.ani_kira {
	position: relative;
	overflow: hidden;
}
.ani_kira a:hover {
	opacity: 1;
}
.ani_kira::before {
	content: '';
	position: absolute;	
	top: 0;
	left: -75%;
	width: 50%;
	height: 100%;
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	transform: skewX(-25deg);
}	  
.ani_kira:hover::before {
	animation: shine 1s;
}
@keyframes shine {
	100% {
		left: 125%;
	}
}
.form_btn.ani_kira:hover::before  {
	animation: shine 2.5s;
}