/*====================================================================*/
/** general
/*====================================================================*/
body{
	background: #F2F2F2;
}


/** font
/*--------------------------------------------------------------------*/
* {
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Roboto, sans-serif;
	color: #3F3A34;
}

/** ttl
/*--------------------------------------------------------------------*/
.ttlA{
	text-align: center;
	margin-top: 100px;
}
.ttlA img {
	width: 200px;
}
.ttlA h2 {
	font-size: 50px;
	font-weight: bold;
	margin: 0 0 20px 0
}
.ttlA p {
	font-size: 20px;
	font-weight: bold;
	padding: 0 10px;
}
@media (max-width: 768px) {
	.ttlA img {
		width: 120px;
	}
	.ttlA h2 {
		font-size: 36px;
	}
	.ttlA p {
		text-align: left;
	}
}

/** btn
/*--------------------------------------------------------------------*/
.btn01 {
	display: inline-block;
	padding: 20px 70px 20px 40px;
	text-align: center;
	background: #DE5D50;
	border-radius: 5px;
	border: none;
	color: #fff;
	text-decoration: none;
	font-size: 130%;
	font-weight: bold;
	position: relative;
	cursor: pointer;
}
.btn01:hover {
	opacity: 0.7;
	color: #fff;
}
.btn01:after {
	display: block;
	content: "";
	position: absolute;
	top: 40%;
	left: auto;
	right: 20px;
	width: 14px;
	height: 14px;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	background: none;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.btn01.grey {
	background: #666;
}

@media (max-width: 768px) {
	.btn01 {
		padding: 20px 40px 20px 10px;
		font-size: 110%;
		width: 100%;
	}
}


/** color
/*--------------------------------------------------------------------*/
.red {
	color: rgba(253, 0, 4, 1.00);
}
.gray {
	color: #808080;
}
.white {
	color: #FFF;
}
.ov:hover{
	opacity: 0.7;
}

/* fadein
/*--------------------------------------------------------------------*/
.fadein {
	opacity: 0;
	transform : translate(0, 50px);
	transition : all 1500ms;
}
.fadein.scrollin{
	opacity: 1;
	transform: translate(0, 0);
}

/* page-top
/*--------------------------------------------------------------------*/
#page-top {
	position: fixed;
	bottom: 25px;
	right: 20px;
	width: 60px;
	height: 60px;
	background-color: rgba(0,0,0,0.7);
	cursor: pointer;
}
#page-top a {
	position: absolute;
	width: 18px;
	height: 18px;
	border-left:2px solid #fff;
	border-top:2px solid #fff;
	top: 25px;
	left: 22px;
	transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg)
}
/*====================================================================*/
/** header
/*====================================================================*/
header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	background: rgba(255, 255, 255, 1);
	z-index: 2000;
}
header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}
header h1.logo {
	margin: 10px 0;
	padding: 0;
	z-index: 20;
	font-size: 100%;
}
header h1.logo img {
	width: 200px;
}
header .menu_box {
	margin-right: -15px;
	height: 100%;
	display: flex;
	align-items: center;
}
header .menu_box .menu-trigger {
	display: none;
}
header .menu_box .menu-wrap {
	z-index: 1000;
}
header .menu_box .menu-wrap ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
header .menu_box .menu-wrap ul li a {
	display: block;
	color: #3F3A34;
	padding: 20px;
	text-decoration: none;font-weight: bold;
}
header .menu_box .menu-wrap ul li a:hover {
	color: #901D22;
}

@media (max-width: 992px) {
	header h1.logo img {
		width: 140px;
	}
	header {
		height: 60px;
	}
	header .menu_box .menu-trigger {
		padding: 18px 20px;
		display: flex;
		flex-wrap: wrap;
		width: 70px;
		height: 100%;
		box-sizing: border-box;
	}
	header .menu_box .menu-wrap.d-block {
		transform: translate(0); 
	}
	header .menu_box .menu-trigger span {
		display: inline-block;
		transition: all .4s;
		box-sizing: border-box;
	}
	header .menu_box .menu-trigger span {
		width: 100%;
		height: 3px;
		background-color: #3F3A34;
		border-radius: 4px;
	}
	header .menu_box .menu-trigger span:nth-of-type(1) {
		align-self: flex-start;
	}
	header .menu_box .menu-trigger span:nth-of-type(2) {
		align-self: center;
	}
	header .menu_box .menu-trigger span:nth-of-type(3) {
		align-self: flex-end;
	}
	header .menu_box .menu-trigger.active span:nth-of-type(1) {
		-webkit-transform: translateY(11px) rotate(-45deg);
		transform: translateY(11px) rotate(-45deg);
	}
	header .menu_box .menu-trigger.active span:nth-of-type(2) {
		opacity: 0;
	}
	header .menu_box .menu-trigger.active span:nth-of-type(3) {
		-webkit-transform: translateY(-11px) rotate(45deg);
		transform: translateY(-11px) rotate(45deg);
	}
	header .menu_box .menu-wrap {
		position: absolute;
		background: rgba(0,0,0,0.7);
		width: 300px;
		height: 100vh;
		transition: all 0.3s;
		transform: translate(300px);
		top: 60px;
		right: 0;
		z-index: 1000;
	}
	header .menu_box .menu-wrap ul {
		flex-wrap: wrap;
	}
	header .menu_box .menu-wrap ul li {
		width:100%;
	}
	header .menu_box .menu-wrap ul li a {
		border-bottom: solid 1px #ccc;
		color: #fff;
	}
	header .menu_box .menu-wrap ul li a:hover {
		color: #eee;
	}
}
@media (max-width: 768px) {
	header .menu_box .menu-wrap {
		width: 100%;
		transform: translate(100%);
	}
	
}

/*====================================================================*/
/** breadcrumbs
/*====================================================================*/
.breadcrumbs {
	margin-top: 70px;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
	margin-bottom: 20px;
	list-style: none;
	background: none;
	font-size: 12px;
}
.breadcrumbs ol li:after {
	display: inline-block;
	padding-left: 10px;
	content: "〉";
}
.breadcrumbs ol li:last-child:after {
	content: none;
}
.breadcrumbs ol li a {
	color: #212529;
	text-decoration: none;
}
@media (max-width: 992px) {
	.breadcrumbs {
		display: none;
	}
}
/*====================================================================*/
/** footer
/*====================================================================*/
footer {
	background: #901D22;
	padding: 20px 5px;
}
footer .logo {
	width: 100px;
	margin: 20px auto;
}
footer .link ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
	justify-content: center;
	flex-wrap: wrap;
}
footer .link ul li a {
	color: #fff;
	display: inline-block;
	padding: 0 20px;
	border-left: solid 1px #fff;
	font-size: 80%;
}
footer .link ul li:last-child a {
	border-right: solid 1px #fff;
}
footer .copyright {
	color: #fff;
	text-align: center;
	padding: 20px 0;
	font-size: 12px;
}

/*====================================================================*/
/** main
/*====================================================================*/

/* mv
/*--------------------------------------------------------------------*/
main .mv{
	height: 750px;
	background: url(/top/img/mv.jpg) center repeat-x;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: center;
	margin: 60px 0 0 0;
}
main .mv figure{
	width: 100%;
	text-align: center
}
main .mv figure img{
	width: 300px;
}
main .mv p{
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}
@media (max-width: 768px) {
	main .mv{
		height: 400px;
		background-size: cover;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;
		margin: 60px 0 0 0;
	}
	main .mv figure img{
		width: 180px;
	}
	main .mv p{
		font-size: 18px;
	}
}

/* block
/*--------------------------------------------------------------------*/
main .contents {
	padding: 80px 0;
}
main .contents a {
	text-decoration: none;
	word-break: break-all;
}
main .contents .row {
	display: flex;
	margin-bottom: 40px;
	transition: all .2s ease;
}
main .contents .row .col {
	width: 50%;
	background: #fff;
	padding: 0;
}
main .contents .row .col figure {
	margin: 0;
}
main .contents .row .col .block {
	padding: 20px 30px;
	display: flex;
	flex-wrap: wrap;
	height: 100%;
	justify-content: center;
	align-content: center;
}
main .contents .row .col .block div {
	text-align: center;
	width: 100%;
}
main .contents .row .col .block div img {
	width: 150px;
}
main .contents .row .col h2 {
	text-align: center;
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 30px;
	width: 100%;
}
main .contents .row .col h3 {
	text-align: center;
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 20px;
	width: 100%;
}
main .contents .row .col h4 {
	text-align: center;
	font-weight: bold;
	width: 100%;
}
main .contents .row .col p {
	font-weight: bold;
	font-size: 18px;
	width: 100%;
	margin: 0 0 20px 0
}
main .contents .row .col .block p.more {
	text-align: right;
	width: 100%;
	background: url(/common/img/arrow_more.svg) no-repeat 98% 100%;
	background-size: 120px;
	margin: 0;
	padding: 0 50px 10px 0;
	transition: all .2s ease;
}
main .contents a:hover .row {
	box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}
main .contents a:hover .row .col .block p.more {
	padding: 0 50px 10px 0;
	background: url(/common/img/arrow_more.svg) no-repeat 100% 100%;
	background-size: 120px;
}
main .contents iframe {
	vertical-align: bottom;
}

@media (max-width: 768px) {
	main .contents {
		padding: 40px 10px;
	}
	main .contents .row .col .block {
		padding: 20px;
	}
	main .contents .row .col .block div img {
		width: 120px;
	}
	main .contents .row .col .block h2 {
		font-size: 36px;
	}
	main .contents .row .col .block p {
		font-weight: bold;
		font-size: 18px;
	}
	main .contents .row .col .block.flow img {
		width: 100%;
	}
}

/*====================================================================*/
/** form
/*====================================================================*/
#formWrap{
	width: 900px;
	margin: 0 auto;
	text-align: left;
}
#formWrap .formTable{
	width: 100%;
	border-top: solid 1px #ccc;
}
#formWrap .formTable th{
	width:30%;
}
#formWrap .formTable th,
#formWrap .formTable td{
	padding: 20px 0;
	border-bottom: solid 1px #ccc;
}
#formWrap .formTable th span{
	color: #DE5D50;
	font-size: 12px;
}
#formWrap .formTable input{
	display: inline-block;
}
#formWrap .formTable input.half{
	width: 48%;
	margin-right: 1%;
}

@media (max-width: 768px) {
	#formWrap .formTable th{
		border-bottom: none;
		padding-bottom: 0;
	}
	#formWrap .formTable th,
	#formWrap .formTable td{
		display: block;
		width: 100%;

	}
}
