@charset "utf-8";


/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 70px 20px;
	box-sizing: border-box;
}
.inner {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}
.ttl01 {
	text-align: center;
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 30px 20px;
	}
	.inner {
		max-width: 100%;
	}
}


/* header
-------------------------------------------------------*/
#header {
	box-sizing: border-box;
	padding: 20px 0 15px;
}
#header .inner {
	max-width: 1000px;
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
#header .logo img {
    max-width: 247px;
}
#header .line img {
	max-width: 366px;
}
@media screen and (max-width:768px) {
	#header {
		padding: 10px;
	}
	#header .inner {
		justify-content: center;
	}
	#header .logo img {
		max-width: 170px;
	}
	#header .line {
		text-align: center;
	}
	#header .line img {
		max-width: 300px;
	}
	#header .line {
		position: fixed;
		left: 0;
		bottom: 0;
		z-index: 9;
		background: rgba(255, 255, 255, 0.9);
		padding: 10px 5px;
		width: 100%;
		box-sizing: border-box;
	}
}


/* visual
-------------------------------------------------------*/
#visual {
	padding: 0 20px 50px;
	box-sizing: border-box;
	background: url(../img/visual_bg.png)no-repeat center/cover;
}
#visual .txt {
	box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);
}

@media screen and (max-width:768px) {
	#visual {
		padding: 0 20px 30px;
	}
}


/* footer
-------------------------------------------------------*/
#footer {
	text-align: center;
}
#footer .logo {
    margin: 0 0 20px;
}
#footer .logo img {
    max-width: 155px;
}
#footer .copy {
	font-size: 75%;
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 40px 20px 120px;
	}
}


/* example
-------------------------------------------------------*/
#example ul {
	border: 1px solid #f49a08;
	padding: 50px 20px 60px;
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: space-between;
	border-radius: 10px;
}
#example ul li {
	width: 30%;
}
#example ul li:nth-child(-n+3) {
	margin: 0 0 40px;
}
#example ul li .icon {
	text-align: center;
	margin: 0 0 20px;
}
#example ul li .icon img {
	max-width: 73px;
}
@media screen and (max-width:768px) {
	#example ul {
		padding: 30px 10px;
	}
	#example ul li {
		width: 48%;
	}
	#example ul li:nth-child(-n+4) {
		margin: 0 0 30px;
	}
	#example ul li .icon {
		margin: 0 0 10px;
	}
	#example ul li .icon img {
		max-width: 60px;
	}
}


/* mid_ttl
-------------------------------------------------------*/
#mid_ttl.area {
	padding: 0 0 50px;
}
#mid_ttl .ttl01 {
	background: #f49a08;
	padding: 50px 0;
	margin: 0 0 50px;
}
#mid_ttl .ttl01 img {
	max-width: 895px;
}
#mid_ttl .txt {
	text-align: center;
	font-size: 180%;
	font-weight: 700;
	line-height: 1.7;
	color: #5d4408;
}
@media screen and (max-width:768px) {
	#mid_ttl.area {
		padding: 0 0 30px;
	}
	#mid_ttl .ttl01 {
		padding: 30px 20px;
		margin: 0 0 20px;
	}
	#mid_ttl .txt {
		font-size: 110%;
	}
}


/* flow
-------------------------------------------------------*/
#flow {
	background: #fcf9f2;
}
#flow .inner {
	max-width: 700px;
}
#flow .ttl01 {
	margin: 0 0 40px;
}
#flow ul li.cont {
	background: #fff;
	padding: 40px 30px;
	border: 2px dashed #f49a08;
	border-radius: 10px;
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-start;
	justify-content: flex-start;
}
#flow ul li.cont .icon {
	margin: 0 30px 0 0;
}
#flow ul li.cont .icon img {
	max-width: 163px;
	min-width: 163px;
}
#flow ul li.cont .ttl {
	margin: 0 0 20px;
}
#flow ul li.cont:first-child .ttl img {
	max-width: 289px;
}
#flow ul li.cont:last-child .ttl img {
	max-width: 436px;
}
#flow ul li .txt {
	line-height: 1.6;
	font-size: 110%;
}
#flow ul li.arrow {
	margin: 30px auto 20px;
	text-align: center;
}
#flow ul li.arrow img {
	max-width: 333px;
}
@media screen and (max-width:768px) {
	#flow .ttl01 {
		margin: 0 0 20px;
	}
	#flow ul li.cont {
		padding: 20px;
		border-radius: 10px;
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: center;
	}
	#flow ul li.cont .icon {
		margin: 0 0 20px;
	}
	#flow ul li.cont .icon img {
		max-width: 100px;
		min-width: 100px;
	}
	#flow ul li.cont .ttl {
		margin: 0 0 10px;
	}
	#flow ul li.cont:first-child .ttl img {
		max-width: 346px;
	}
	#flow ul li.cont:last-child .ttl img {
		max-width: 346px;
	}
	#flow ul li .txt {
		font-size: 100%;
		text-align: center;
	}
	#flow ul li.arrow img {
		max-width: 250px;
	}
}


/* voice
-------------------------------------------------------*/
#voice {
	background: url("../img/voice_bg.png")no-repeat center/cover;
}
#voice .ttl01 {
	margin: 0 0 40px;
}
#voice .ttl01 img {
	max-width: 264px;
}
#voice ul li {
	background: #fff;
	border: 1px dashed #f1aa3e;
	padding: 30px;
	border-radius: 10px;
}
#voice ul li:not(:last-child) {
	margin: 0 0 30px;
}
#voice ul li .top_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: center;
	margin: 0 0 20px;
}
#voice ul li .top_box .img {
	margin: 0 40px 0 0;
}
#voice ul li .top_box .img img {
	max-width: 173px;
}
#voice ul li .top_box .name img {
	max-width: 270px;
}
#voice ul li .txt {
	line-height: 1.6;
}
@media screen and (max-width:768px) {
	#voice .ttl01 {
		margin: 0 0 30px;
	}
	#voice .ttl01 img {
		max-width: 230px;
	}
	#voice ul li {
		padding: 20px;
	}
	#voice ul li:not(:last-child) {
		margin: 0 0 20px;
	}
	#voice ul li .top_box {
	}
	#voice ul li .top_box .img {
		margin: 0 20px 0 0;
	}
	#voice ul li .top_box .img img {
		max-width: 150px;
	}
}


/* contact
-------------------------------------------------------*/
#contact {
	background: url("../img/contact_bg.png");
}
#contact .inner {
	background: #fffcf5;
	border-radius: 10px;
	padding: 50px;
	position: relative;
	text-align: center;
}
#contact .inner::before {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/icon01.png")no-repeat center/135px 149px;
	width: 135px;
	height: 149px;
	left: 40px;
	top: 20px;
	z-index: 1;
}
#contact .inner::after {
	position: absolute;
	display: block;
	content: "";
	background: url("../img/icon02.png")no-repeat center/191px 267px;
	width: 191px;
	height: 267px;
	right: 40px;
	bottom: 20px;
	z-index: 1;
}
#contact .ttl01 {
	margin: 0 0 40px;
	position: relative;
	z-index: 2;
}
#contact .ttl01 img {
	max-width: 537px;
}
#contact .logo {
	margin: 40px auto 0;
	position: relative;
	z-index: 2;
}
#contact .logo img{
	max-width: 247px;
}
#contact .line  {
	position: relative;
	z-index: 2;
}
#contact .line img {
	max-width: 550px;
}

@media screen and (max-width:768px) {
	#contact .inner {
		padding: 30px;
	}
	#contact .inner::before {
		background: url("../img/icon01.png")no-repeat center/68px 75px;
		width: 68px;
		height: 75px;
		left: 30px;
		top: 10px;
	}
	#contact .inner::after {
		background: url("../img/icon02.png")no-repeat center/85px 134px;
		width: 85px;
		height: 134px;
		right: 20px;
		bottom: 10px;
	}
	#contact .ttl01 {
		margin: 0 0 20px;
	}
	#contact .logo {
		margin: 20px auto 0;
	}
	#contact .logo img{
		max-width: 200px;
	}
	#contact .line  {
		position: relative;
		z-index: 2;
	}
	#contact .line img {
		max-width: 550px;
	}
}

.small_txt {
	display: block;
	font-size: 70%;
	margin-top: 10px;
}


.last_txt {
	background: #fbc302;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 5px;
	font-size: 120%;
	text-align: center;
	margin-bottom: 50px;
	line-height: 1.4;
}
