@charset "utf-8";
/*============================================
動き自体の指定：今回は「ふわっ」アニメーション処理
============================================*/
.fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeUpTrigger{
	opacity: 0;
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time01{
	animation-delay: 0.1s;
}
.delay-time02{
	animation-delay: 0.2s;
}
.delay-time03{
	animation-delay: 0.3s;
}
.delay-time04{
	animation-delay: 0.4s;
}
.delay-time05{
	animation-delay: 0.5s;
}
.delay-time06{
	animation-delay: 0.6s;
}
.delay-time15{
	animation-delay: 1.5s;
}

/*============================================
	header
============================================*/
header {
	position: fixed;
	background-color: #000;
	color: var(--colorWht);
	text-align: center;
	font-weight: 700;
	height: 100px;
	line-height: 100px;
	width: 100%;
	z-index: 100;
	top: 0;
	left: 0;
	transition: all .3s;
}
.header-inner {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header .header-logo {
	width: 330px;
	height: 53px;
	margin-left: 65px;
	margin-top: -70px;
}
header .header-logo a{
	display: block;
}
header .header-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
header #global-nav ul {
	display: flex;
	justify-content: flex-end;
}
header #global-nav ul li a {
	display: block;
	color: var(--colorWht);
	font-size: 1.4rem;
	padding: 0 25px;
	position: relative;
}
header #global-nav ul li a::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: var(--defaultColor);
	transform: scale(0, 1);
	transition: transform .4s;
}
header #global-nav ul li a:hover:before {
	transform: scale(1, 1);
}
header .header-contact {
	background-color: var(--defaultColor);
}
@media screen and (min-width:1181px) {
	#mobile-head {
		display: none;
	}
}
@media screen and (max-width:1180px) {
	header {
		padding: 0;
		height: 68px;
		line-height: 68px;
	}
	.header-inner {
		padding: 0;
	}
	header .header-logo {
		width: 100%;
		max-width: 218px;
		margin-left: 0;
		padding: 0.5rem 0 0 20px;
	}

	#nav-toggle {
		display: block;
		position: absolute;
		right: 25px;
		top: 12px;
		width: 48px;
		height: 48px;
		cursor: pointer;
		z-index: 101;
		background: var(--defaultColor);
		border-radius: 50%;
		padding: 10px;
	}
	#nav-toggle div {
		position: relative;
	}
	#nav-toggle span {
		display: block;
		position: absolute;
		height: 3px;
		width: 100%;
		background: var(--colorWht);
		left: 0;
		-webkit-transition: .35s ease-in-out;
		-moz-transition: .35s ease-in-out;
		transition: .35s ease-in-out;
	}
	#nav-toggle span:nth-child(1) {
		top: 5px;
	}
	#nav-toggle span:nth-child(2) {
		top: 14px;
	}
	#nav-toggle span:nth-child(3) {
		top: 23px;
	}
	/* Fixed reset */
	#mobile-head {
		background: var(--defaultFontColor);
		width: 100%;
		height: 68px;
		z-index: 999;
		position: relative;
	}
	nav#global-nav {
		position: absolute;
		top: -800px;
		background: var(--defaultFontColor);
		width: 100vw;
		text-align: center;
		padding: 10px 0;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		z-index: -1000;
		padding: 50px 0;
	}
	nav#global-nav ul {
		display: block;
	}
	#global-nav ul li {
		padding: 0 0 10px;
	}
	#global-nav ul li a {
		padding: 0 12px;
		display: inline-block;
		font-size: 1.8rem;
		text-decoration: none;
		color:  var(--colorWht);
		border-bottom: 1px solid var(--defaultColor);
		width: 70%;
		max-width: 230px;
		margin: 0 auto;
		padding-bottom: 10px;
	}
	#nav-toggle {
		display: block;
	}
	/* #nav-toggle 切り替えアニメーション */
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	/* #global-nav スライドアニメーション */
	.open #global-nav {
		-moz-transform: translateY(828px);
		-webkit-transform: translateY(828px);
		transform: translateY(828px);
	}

	/* header .header-contact {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 245px;
		height: 245px;
	} */
}


/*============================================
	btn
============================================*/
.btn_arrow {
	display: table;
	position: relative;
	min-width: 12em;
	color: var(--colorWht);
	font-weight: bold;
	line-height: 1.4em;
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
	border-radius: 30px;
	box-shadow: 2px 2px 10px #999;
	background: linear-gradient(0deg, #f05a23 0%, #ff911f 60%);
	border: 3px solid var(--colorWht);
	transition: all 1s ease-out;
}
.btn_arrow::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 6px 0 6px 8px;
	border-color: transparent transparent transparent var(--colorWht);
	position: absolute;
	top: 50%;
	right: 7%;
	margin-top: -6px;
	transition: right 0.3s ease-out;
}
.btn_arrow:hover {
	opacity: 0.8;
}
.btn_arrow:hover::after {
	right: 5%;
}


/*============================================
	mainvisual
============================================*/
.mainvisual {
	position: relative;
	width: 100%;
	height: 105vh;
}
.mainvisual .bg {
	position: relative;
	height: 100%;
	overflow: hidden;
}
.mainvisual .bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.mainvisual .main_msg {
	position: absolute;
	top: 120px;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
	color: var(--colorWht);
}
.mainvisual .main_msg p {
	font-size: 1.8rem;
	margin-top: -30px;
}
.mainvisual .mainvisual_btm .btn_arrow {
	margin: 20px auto;
	padding: .8em 4em;
	font-size: 3rem;
	border-radius: 50px;
}
.mainvisual .mainvisual-tip {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
}
.mainvisual .mainvisual-tip img {
	margin: 0 auto;
}

@media (min-width: 1500px) {
	.mainvisual {
		height: 110vh;
	}
	.mainvisual .mainvisual-tip {
		bottom: -80px;
	}
}
@media (max-width: 768px) {
	.mainvisual .mainvisual-tip {
		bottom: 210px;
	}
	.mainvisual .main_msg {
		width: 100%;
	}
	.mainvisual .main_msg.sp {
		width: 100%;
		height: 180px;
		bottom: -40px;
		top: auto;
	}
	.mainvisual .main_msg.sp p {
		position: absolute;
		font-size: 1.3rem;
		line-height: 1.4;
		width: 100%;
		height: 3.8rem;
		text-align: center;
		left: 0;
		bottom: 170px;
		text-shadow: 0 0 3px rgba(0,0,0,0.3);
	}
	.mainvisual .mainvisual_btm .btn_arrow {
		padding: .6em 2em;
		font-size: 2rem;
		width: 100%;
		max-width: 340px;
	}
}

/*============================================
	container、sec
============================================*/
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}
.caution {
	font-size: 1.3rem;
	margin: 20px auto;
}
.sec {
	position: relative;
	padding: 100px 0;
}
.link {
	color: #007acc;
	text-decoration: underline;
}
@media (max-width: 768px) {
	.caution {
		font-size: 1.1rem;
	}
	.sec {
		padding: 88px 0 50px;
	}
}

.sec.sec01 {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 162, 43, 0.2));
	padding-bottom: 150px;
}
.sec.sec01::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/dec_sec01_l.png) no-repeat center / 100% auto;
	width: 148px;
	height: 149px;
	bottom: 17%;
	left: 13%;
}
.sec.sec01::after {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/dec_sec01_r.png) no-repeat center / 100% auto;
	width: 111px;
	height: 112px;
	top: 22%;
	right: 12%;
}
.sec.sec01 h2 {
	max-width: 800px;
	margin: 50px auto 100px;
}
.sec.sec01 h3 {
	position: relative;
	color: var(--defaultColor);
	font-size: 2.8rem;
	line-height: 2;
	text-align: center;
}
.sec.sec01 h3::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/dec_quote-left.svg) no-repeat center / 100% auto;
	width: 32px;
	height: 25px;
	top: -10px;
	left: calc(50% - (2.8rem * 10));
}
.sec.sec01 h3::after {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/dec_quote-right.svg) no-repeat center / 100% auto;
	width: 32px;
	height: 25px;
	bottom: -0;
	right: calc(50% - (2.8rem * 9));
}
.sec.sec01 h3 span {
	background: linear-gradient(transparent 70%, #ffff00 0%);
	padding: 0.2em 0;
}
.sec.sec01 .listwrap {
	background-color: var(--colorWht);
	border-radius: 20px;
	max-width: 540px;
	margin: 50px auto;
	padding: 20px;
}
.sec.sec01 .listbox {
	max-width: 450px;
	margin: 0 auto;
	padding: 0;
}
.sec.sec01 .listbox li {
	list-style: none;
}
.sec.sec01 .listbox li + li {
	margin-top: 10px;
}
.sec.sec01 li::before {
	content: '●';
	color: var(--defaultColor);
	margin-right: 10px;
}
.sec.sec01 p {
	font-size: 2.0rem;
	line-height: 2;
	text-align: center;
}
.sec.sec01 p .uline {
	border-bottom: 3px solid var(--defaultColor);
}
@media (max-width: 768px) {
	.sec.sec01 {
		padding-bottom: 100px;
	}
	.sec.sec01::before {
		width: 74px;
		bottom: -2%;
		left: 3%;
	}
	.sec.sec01::after {
		width: 66px;
		top: 18%;
	}
	.sec.sec01 h2 {
		margin-bottom: 60px;
	}
	.sec.sec01 h3 {
		font-size: 2.6rem;
	}
	.sec.sec01 h3::before {
		left: calc(50% - (2.6rem * 5.5));
	}
	.sec.sec01 h3::after {
		right: calc(50% - (2.6rem * 6));
	}
	.sec.sec01 .listwrap {
		max-width: 340px;
		padding: 20px 14px;
	}
	.sec.sec01 li::before {
		margin-right: 4px;
	}
	.sec.sec01 p {
		font-size: 1.8rem;
	}
}

.sec.sec02 {
	background: url(../images/bg_gray.jpg) no-repeat center / auto 100%;
	padding-top: 150px;
}
.sec.sec02 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 3.2rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 50px;
}
.sec.sec02 h2::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon_sec02.svg) no-repeat center / 100% auto;
	width: 78px;
	height: 78px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec02 .flex {
	justify-content: center;
	grid-column: auto;
	margin: 0 auto;
}
.sec.sec02 .flexitem {
	width: calc(50% - 30px);
	text-align: center;
}
.sec.sec02 .flexitem_be {
	position: relative;
}
.sec.sec02 .flexitem_be::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	top: 20%;
	right: -20px;
	border-top: 40px solid transparent; /* 上の透明な部分 */
	border-bottom: 40px solid transparent; /* 下の透明な部分 */
	border-left: 30px solid #969696; /* 右向きの色付き部分 */
}
.sec.sec02 .flex h3 {
	font-size: 2.0rem;
	max-width: 470px;
	margin: 20px auto 30px;
}
.sec.sec02 .flex ul {
	text-align: left;
	line-height: 2;
	padding-left: 10%;
}
.sec.sec02 .flex ul li {
	list-style: none;
}
.sec.sec02 .flex ul li::before {
	content: '●';
	color: var(--defaultColor);
	margin-right: 10px;
}
.sec.sec02 .flexitem_be ul li::before {
	color: #969696;
}
@media (max-width: 768px) {
	.sec.sec02 {
		padding-top: 100px;
	}
	.sec.sec02 h2 {
		font-size: 2.0rem;
		margin-bottom: 20px;
	}
	.sec.sec02 h2::before {
		width: 39px;
		height: 39px;
		top: -50px;
	}
	.sec.sec02 .flex {
		flex-direction: column;
	}
	.sec.sec02 .flexitem {
		width: 96%;
		margin: 0 auto 20px;
	}
	.sec.sec02 .flexitem_be::after {
		top: auto;
		right: 50%;
		bottom: -90px;
		transform: translateX(50%);
		border-left: 20px solid transparent; /* 左の透明な部分 */
		border-right: 20px solid transparent; /* 右の透明な部分 */
		border-top: 20px solid #969696; /* 下向きの色付き部分 */
	}
	.sec.sec02 .flexitem_af {
		margin-top: 60px;
	}
	.sec.sec02 .flex h3 {
		margin-bottom: 20px;
	}
	.sec.sec02 .flex ul li {
		position: relative;
		font-size: 1.4rem;
		line-height: 1.3;
	}
	.sec.sec02 .flex ul li + li {
		margin-top: 10px;
	}
	.sec.sec02 .flex ul li::before {
		position: absolute;
		top: 0;
		left: -20px;
	}
}

.sec.sec03 h2 {
	position: relative;
	font-size: 3.2rem;
	line-height: 2;
	text-align: center;
}
.sec.sec03 h2::before,
.sec.sec03 h2::after {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/dec_sec03_l.svg) no-repeat center / 100% auto;
	width: 76px;
	height: 69px;
	top: 50%;
	transform: translateY(-50%);
}
.sec.sec03 h2::before {
	left: calc(50% - (4.8rem * 9.5));
}
.sec.sec03 h2::after {
	background-image: url(../images/dec_sec03_r.svg);
	right: calc(50% - (4.8rem * 9.5));
}
.sec.sec03 h2 span {
	color: var(--defaultColor);
}
.sec.sec03 h2 span.uline {
	background: linear-gradient(transparent 70%, #ffff00 0%);
	padding: 0.2em 0;
}
@media (max-width: 768px) {
	.sec.sec03 h2 {
		font-size: 2.4rem;
		line-height: 1.8;
	}
	.sec.sec03 .flex {
		flex-direction: column;
	}
}

.sec.sec04 {
	background-color: #fff;
	padding-top: 70px;
	padding-bottom: 100px;
}
.sec.sec04 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 2.8rem;
	text-align: center;
	margin-bottom: 125px;
}
.sec.sec04 h2::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon_sec04.svg) no-repeat center / 100% auto;
	width: 78px;
	height: 78px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec04 h2::after {
	content: '';
	position: absolute;
	background: var(--colorWht);
	border-radius: 50%;
	width: 300px;
	height: 300px;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sec.sec04 h2 span {
	position: relative;
	display: inline-block;
}
.sec.sec04 h2 span::before {
	content: '';
	position: absolute;
	background: var(--defaultColor);
	width: 2px;
	height: 65px;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec04 h2 span::after {
	content: '';
	position: absolute;
	background: var(--defaultColor);
	border-radius: 50%;
	width: 8px;
	height: 8px;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec04 h3 {
	font-size: 2.0rem;
	text-align: center;
	margin-bottom: 10px;
}
.sec.sec04 h3 span {
	background: linear-gradient(transparent 50%, #ffff00 0%);
	padding: 0.1em 0;
}
.sec.sec04 .flex {
	width: 90%;
	margin: 30px auto 50px;
}
.sec.sec04 .flex .flexitem {
	margin: 0 15px;
}
.sec.sec04 dl.flex {
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto;
}
.sec.sec04 dl.flex dt {
	background: var(--defaultColor);
	border: 2px solid var(--defaultColor);
	color: var(--colorWht);
	font-size: 2.0rem;
	font-weight: bold;
	width: 320px;
	padding: 22px 0;
	text-align: center;
}
.sec.sec04 dl.flex dd {
	background: var(--colorWht);
	border: 2px solid var(--defaultColor);
	width: calc(100% - 320px);
	padding: 15px 20px 25px;
}
.sec.sec04 dl.flex dd li {
	list-style: none;
	display: inline-block;
	width: 49%;
	margin-top: 10px;
}
.sec.sec04 dl.flex dd li::before {
	content: '●';
	color: var(--defaultColor);
	margin-right: 10px;
}
@media (max-width: 768px) {
	.sec.sec04 {
		padding-top: 50px;
	}
	.sec.sec04 h2 {
		font-size: 2.0rem;
		margin-bottom: 60px;
	}
	.sec.sec04 h2::before {
		width: 39px;
		height: 39px;
		top: -50px;
	}
	.sec.sec04 h2::after {
		width: 160px;
		height: 160px;
		top: -80px;
	}
	.sec.sec04 h2 span::before {
		height: 45px;
		bottom: -55px;
	}
	.sec.sec04 h2 span::after {
		bottom: -55px;
	}
	.sec.sec04 h3 {
		font-size: 1.8rem;
	}
	.sec.sec04 .flex {
		flex-direction: column;
	}
	.sec.sec04 .flex .flexitem {
		margin: 0 auto 30px;
	}
	.sec.sec04 dl.flex dt {
		font-size: 1.8rem;
		width: 100%;
		padding: 18px 0;
	}
	.sec.sec04 dl.flex dd {
		font-size: 1.4rem;
		width: 100%;
		padding: 15px 20px 20px;
	}
	.sec.sec04 dl.flex dd li {
		width: 100%;
	}
}

.sec.sec05 {
	background-color: #fff;
	padding-top: 70px;
	padding-bottom: 100px;
}
.sec.sec05 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 2.8rem;
	text-align: center;
	margin-bottom: 125px;
}
.sec.sec05 h2::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon_sec05.svg) no-repeat center / 100% auto;
	width: 78px;
	height: 78px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec05 h2::after {
	content: '';
	position: absolute;
	background: var(--colorWht);
	border-radius: 50%;
	width: 300px;
	height: 300px;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sec.sec05 h2 span {
	position: relative;
	display: inline-block;
}
.sec.sec05 h2 span::before {
	content: '';
	position: absolute;
	background: var(--defaultColor);
	width: 2px;
	height: 65px;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec05 h2 span::after {
	content: '';
	position: absolute;
	background: var(--defaultColor);
	border-radius: 50%;
	width: 8px;
	height: 8px;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec05 h3 {
	font-size: 2.0rem;
	text-align: center;
	margin-bottom: 10px;
}
.sec.sec05 h3 span {
	background: linear-gradient(transparent 50%, #ffff00 0%);
	padding: 0.1em 0;
}
.sec.sec05 .flex {
	width: 90%;
	margin: 30px auto 50px;
}
.sec.sec05 .flex .flexitem {
	margin: 0 15px;
}
.sec.sec05 dl.flex {
	flex-wrap: wrap;
	width: 90%;
	margin: 0 auto 50px;
}
.sec.sec05 dl.flex dt {
	background: var(--defaultColor);
	border: 2px solid var(--defaultColor);
	color: var(--colorWht);
	font-size: 2.0rem;
	font-weight: bold;
	width: 320px;
	padding: 22px 0;
	text-align: center;
}
.sec.sec05 dl.flex dd {
	background: var(--colorWht);
	border: 2px solid var(--defaultColor);
	width: calc(100% - 320px);
	padding: 15px 20px 25px;
}
.sec.sec05 dl.flex dd li {
	list-style: none;
	display: inline-block;
	width: 49%;
	margin-top: 10px;
}
.sec.sec05 dl.flex dd li::before {
	content: '●';
	color: var(--defaultColor);
	margin-right: 10px;
}
.sec.sec05 .circulation_wrap {
	background: #ececec;
	border-radius: 30px;
	width: 90%;
	max-width: 1170px;
	margin: 0 auto;
	padding: 40px 50px;
}
.sec.sec05 .circulation_wrap h3 {
	color: var(--defaultColor);
	font-size: 2.4rem;
	border-left: 12px solid var(--defaultColor);
	text-align: left;
	margin-bottom: 30px;
	padding-left: 10px;
}
.sec.sec05 .circulation_wrap .imgwrap {
	background: var(--colorWht);
	margin-bottom: 50px;
	padding: 30px 40px 50px;
}
.sec.sec05 .circulation_wrap .imgwrap h4 {
	font-size: 2.0rem;
	margin-bottom: 20px;
}
.sec.sec05 .circulation_wrap .imgwrap h4:last-of-type {
	margin-top: 60px;
}
.sec.sec05 .circulation_wrap .tablewrap {
	width: 100%;
	overflow-x: auto;
}
.sec.sec05 .circulation_wrap table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	margin-bottom: 10px;
}
.sec.sec05 .circulation_wrap table th {
	background: #0d0d0e;
	border-right: 1px solid var(--colorWht);
	color: var(--colorWht);
	font-size: 1.6rem;
	font-weight: bold;
	text-align: center;
	padding: 10px 0;
}
.sec.sec05 .circulation_wrap table th:last-of-type {
	border-right: none;
}
.sec.sec05 .circulation_wrap table td {
	background: var(--colorWht);
	border-bottom: 1px solid #ececec;
	border-right: 1px solid #ececec;
	font-size: 1.4rem;
	text-align: center;
	padding: 10px 5px;
}

@media (max-width: 768px) {
	.sec.sec05 {
		padding-top: 50px;
	}
	.sec.sec05 h2 {
		font-size: 2.0rem;
		margin-bottom: 60px;
	}
	.sec.sec05 h2::before {
		width: 39px;
		height: 39px;
		top: -50px;
	}
	.sec.sec05 h2::after {
		width: 160px;
		height: 160px;
		top: -80px;
	}
	.sec.sec05 h2 span::before {
		height: 45px;
		bottom: -55px;
	}
	.sec.sec05 h2 span::after {
		bottom: -55px;
	}
	.sec.sec05 h3 {
		font-size: 1.8rem;
	}
	.sec.sec05 .flex {
		flex-direction: column;
	}
	.sec.sec05 .flex .flexitem {
		margin: 0 auto 30px;
	}
	.sec.sec05 dl.flex dt {
		font-size: 1.8rem;
		width: 100%;
		padding: 18px 0;
	}
	.sec.sec05 dl.flex dd {
		font-size: 1.4rem;
		width: 100%;
		padding: 15px 20px 20px;
	}
	.sec.sec05 dl.flex dd li {
		width: 100%;
	}
	.sec.sec05 .circulation_wrap {
		border-radius: 10px;
		width: 96%;
		padding: 20px 15px;
	}
	.sec.sec05 .circulation_wrap h3 {
		font-size: 1.8rem;
		border-left-width: 8px;
	}
	.sec.sec05 .circulation_wrap .imgwrap {
		padding: 15px 10px 20px;
	}
	.sec.sec05 .circulation_wrap .imgwrap h4 {
		font-size: 1.6rem;
	}
	.sec.sec05 .circulation_wrap .imgwrap h4:last-of-type {
		margin-top: 30px;
	}
	.sec.sec05 .circulation_wrap .tablewrap {
		overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #ddd;
	}
	.sec.sec05 .circulation_wrap .tablewrap::-webkit-scrollbar {
		height: 8px;
	}
	.sec.sec05 .circulation_wrap .tablewrap::-webkit-scrollbar-track {
		background: #f1f1f1;
	}
	.sec.sec05 .circulation_wrap .tablewrap::-webkit-scrollbar-thumb {
		background: #c1c1c1;
		border-radius: 4px;
	}
	.sec.sec05 .circulation_wrap table th {
		font-size: 1.4rem;
		padding: 6px 0;
	}
	.sec.sec05 .circulation_wrap table td {
		font-size: 1.3rem;
		padding: 6px 3px;
	}
}

.sec.sec06 {
	background: url(../images/bg_gray.jpg) no-repeat center / cover;
	text-align: center;
	padding: 150px 0 60px;
}
.sec.sec06 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 2.8rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 50px;
}
.sec.sec06 h2::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon_sec06.svg) no-repeat center / 100% auto;
	width: 78px;
	height: 78px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec06 .flexitem {
	position: relative;
	background: var(--colorWht);
	border: 2px solid var(--defaultColor);
	width: calc(50% - 40px);
	text-align: center;
	margin: 0 20px 40px;
	padding: 30px 10px 40px;
}
.sec.sec06 .flexitem::before,
.sec.sec06 .flexitem::after {
	content:'';
	width: 50px;
	height: 50px;
	position: absolute;
	display: inline-block;
}
.sec.sec06 .flexitem::before {
	border-left: solid 6px var(--defaultColor);
	border-top: solid 6px var(--defaultColor);
	top:0;
	left: 0;
}
.sec.sec06 .flexitem::after {
	border-right: solid 6px var(--defaultColor);
	border-bottom: solid 6px var(--defaultColor);
	bottom:0;
	right: 0;
}
.sec.sec06 .flexitem .no {
	width: 87px;
	margin: 0 auto 20px;
}
.sec.sec06 .flexitem h3 {
	color: var(--defaultColor);
	font-size: 2.8rem;
	margin-bottom: 10px;
}
.sec.sec06 .flexitem h3 span {
	background: linear-gradient(transparent 50%, #ffff00 0%);
	padding: 0.1em 0;
}
@media (max-width: 768px) {
	.sec.sec06 {
		padding-top: 100px;
	}
	.sec.sec06 h2 {
		font-size: 2.0rem;
		margin-bottom: 20px;
	}
	.sec.sec06 h2::before {
		width: 39px;
		height: 39px;
		top: -50px;
	}
	.sec.sec06 .flexitem {
		width: 100%;
	}
	.sec.sec06 .flexitem .no {
		width: 55px;
	}
	.sec.sec06 .flexitem h3 {
		font-size: 2.0rem;
	}
	.sec.sec06 .flexitem h3 span {
		background: linear-gradient(transparent 60%, #ffff00 0%);
	}
	.sec.sec06 .flexitem p {
		font-size: 1.4rem;
	}
}

.sec.sec07 {
	background: url(../images/sec07_bg.jpg) no-repeat center / cover;
	text-align: center;
	padding: 50px 0 60px;
}
.sec.sec07 h2 {
	max-width: 600px;
	margin: 10px auto 50px;
}
.sec.sec07 .flex {
	width: 90%;
	margin: 0 auto;
}
@media (min-width: 1200px) {
	.sec.sec07 .flex {
		width: 100%;
		max-width: 1170px;
	}
}
@media (max-width: 768px) {
	.sec.sec07 .flex {
		width: 100%;
	}
}

.sec.sec08 {
	background: repeating-linear-gradient(-45deg, #f5f2e9 0px, #f5f2e9 5px, #fff 5px, #fff 10px);
	padding-top: 150px;
}
.sec.sec08 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 2.8rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 50px;
}
.sec.sec08 h2::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon_sec08.svg) no-repeat center / 100% auto;
	width: 78px;
	height: 78px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec08 .area-wrap {
	width: 90%;
	margin: 50px auto;
}
.sec.sec08 .area-item p {
	font-size: 1.8rem;
	margin-top: 20px;
}
@media (min-width: 1200px) {
	.sec.sec08 .area-wrap {
		width: 100%;
		max-width: 1170px;
	}
}
@media (max-width: 768px) {
	.sec.sec08 {
		padding-top: 100px;
	}
	.sec.sec08 h2 {
		font-size: 2.0rem;
		margin-bottom: 20px;
	}
	.sec.sec08 h2::before {
		width: 39px;
		height: 39px;
		top: -50px;
	}
	.sec.sec08 .area-wrap {
		margin-top: 20px;
		margin-bottom: 10px;
	}
	.sec.sec08 .area-item p {
		font-size: 1.6rem;
		margin-top: 15px;
	}
}

.sec.sec09 {
	background-color: #ebf3e5;
	counter-reset: number;
	padding-top: 250px;
}
.sec.sec09 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 3.6rem;
	text-align: center;
	margin-bottom: 125px;
}
.sec.sec09 h2::before {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/sec09_ttlbk.svg) no-repeat center / 100% auto;
	width: 720px;
	height: 202px;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sec.sec09 h2 span {
	position: relative;
	display: inline-block;
}
.sec.sec09 h2 span::before {
	content: '';
	position: absolute;
	background: var(--defaultColor);
	width: 2px;
	height: 65px;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec09 h2 span::after {
	content: '';
	position: absolute;
	background: var(--defaultColor);
	border-radius: 50%;
	width: 8px;
	height: 8px;
	bottom: -75px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec09 .flex.fjustify-cen {
	width: 90%;
	flex-direction: column;
	margin: 0 auto;
}
.sec.sec09 .flexitem {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 130px;
}
.sec.sec09 .flexitem::after {
	content: '';
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	border-left: 40px solid transparent; /* 左の透明な部分 */
	border-right: 40px solid transparent; /* 右の透明な部分 */
	border-top: 40px solid var(--defaultColor); /* 下向きの色付き部分 */
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec09 .flexitem:last-of-type::after {
	border: none;
}
.sec.sec09 .flexitem .flow-txt {
	width: calc(100% - 500px);
}
.sec.sec09 h4 {
	position: relative;
	color: var(--defaultColor);
	font-weight: bold;
	font-size: 2.4rem;
	margin-bottom: 25px;
	padding-top: 1rem;
	padding-left: 28px;
}
.sec.sec09 h4::before {
	counter-increment: number 1;
	content: counter(number);
	position: absolute;
	left: -2%;
	top: 60%;
	background: var(--defaultColor);
	border-radius: 50%;
	color: var(--colorWht);
	background-size: contain;
	padding: 13px 10px;
	font-size: 2.8rem;
	line-height: 10px;
	font-weight: bold;
	text-align: center;
	font-family: 'Roboto';
	transform: translateY(-50%);
}
.flow a.btn_arrow {
	margin: 20px;
	padding: .8em 3em;
	font-size: 2.3rem;
	border-radius: 50px;
}
.sec.sec09 .flexitem .flow-img {
	width: 100%;
	max-width: 500px;
}
.sec.sec09 .flexitem .flow-img img {
	border: 2px solid var(--defaultColor);
}
@media (min-width: 1200px) {
	.sec.sec09 .flex.fjustify-cen {
		width: 100%;
		max-width: 1170px;
	}
}
@media (max-width: 768px) {
	.sec.sec09 {
		padding-top: 100px;
	}
	.sec.sec09 h2 {
		font-size: 2.4rem;
		margin-bottom: 80px;
	}
	.sec.sec09 h2::before {
		width: 300px;
		top: -110px;
	}
	.sec.sec09 h2 span::before {
		height: 45px;
		bottom: -55px;
	}
	.sec.sec09 h2 span::after {
		bottom: -55px;
	}
	.sec.sec09 .flexitem {
		flex-direction: column;
		justify-content: center;
		width: 90%;
		margin: 0 auto 80px;
	}
	.sec.sec09 .flexitem::after {
		border-width: 30px 30px 0 30px;
	}
	.sec.sec09 .flexitem .flow-txt {
		width: 100%;
		margin-bottom: 20px;
	}
	.sec.sec09 h4 {
		font-size: 2.0rem;
		margin-bottom: 15px;
		padding-left: 30px;
	}
	.sec.sec09 h4::before {
		padding: 4px 9px;
		font-size: 2.4rem;
		line-height: 1;
		top: 65%;
	}
	.flow a.btn_arrow {
		margin: 20px auto;
		padding: .6em 2em;
		font-size: 1.8rem;
	}
}

.sec.sec10 {
	background: var(--colorWht);
	padding-top: 150px;
}
.sec.sec10 h2 {
	position: relative;
	color: var(--defaultColor);
	font-size: 2.8rem;
	line-height: 1.5;
	text-align: center;
	margin-bottom: 50px;
}
.sec.sec10 h2::before {
	content: '';
	position: absolute;
	display: block;
	background: url(../images/icon_sec10.svg) no-repeat center / 100% auto;
	width: 78px;
	height: 78px;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.sec.sec10 .flex-wrap {
	width: 90%;
	margin: 0 auto;
}
.sec.sec10 .flex-wrap .flexitem {
	margin-bottom: 50px;
}
.sec.sec10 .flex-wrap .flexitem dt {
	position: relative;
	background: var(--defaultColor);
	color: var(--colorWht);
	font-size: 1.6rem;
	font-weight: bold;
	padding: 20px 20px 20px 58px;
}
.sec.sec10 .flex-wrap .flexitem dt::before {
	content: 'Q.';
	position: absolute;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	left: 30px;
	top: 50%;
	transform: translateY(-55%);
}
.sec.sec10 .flex-wrap .flexitem dd {
	position: relative;
	background: #ebf3e5;
	padding: 20px 25px 20px 58px;
}
.sec.sec10 .flex-wrap .flexitem dd::before {
	content: 'A.';
	position: absolute;
	display: block;
	font-family: 'Roboto', sans-serif;
	font-size: 2.4rem;
	font-weight: 700;
	left: 30px;
	top: 15px;
}
@media (min-width: 1200px) {
	.sec.sec10 .flex-wrap {
		width: 100%;
		max-width: 1170px;
	}
}
@media (max-width: 768px) {
	.sec.sec10 {
		padding-top: 100px;
	}
	.sec.sec10 h2 {
		font-size: 2.0rem;
		margin-bottom: 30px;
	}
	.sec.sec10 h2::before {
		width: 39px;
		height: 39px;
		top: -50px;
	}
	.sec.sec10 .flex-wrap {
		width: 100%;
	}
	.sec.sec10 .flex-wrap .flexitem {
		margin: 0 20px 40px;
	}
	.sec.sec10 .flex-wrap .flexitem dt {
		padding: 14px 10px 14px 38px;
	}
	.sec.sec10 .flex-wrap .flexitem dt::before {
		font-size: 2.2rem;
		left: 10px;
		top: 10px;
		transform: initial
	}
	.sec.sec10 .flex-wrap .flexitem dd {
		font-size: 1.4rem;
		padding: 14px 10px 14px 38px;
	}
	.sec.sec10 .flex-wrap .flexitem dd::before {
		font-size: 2.2rem;
		left: 10px;
		top: 10px;
	}
}


/*============================================
	sec.contact
============================================*/
.sec.contact {
	background: url(../images/bg_contact.jpg) no-repeat center / cover;
	border-top: 10px solid var(--defaultColor);
	border-bottom: 10px solid var(--defaultColor);
	text-align: center;
	padding: 60px 0;
}
.sec.contact h2 {
	position: relative;
	font-size: 4.8rem;
	color: #ffff00;
	line-height: 1.5;
	margin-bottom: 40px;
}
.sec.contact h2::before,
.sec.contact h2::after {
	content: '';
	display: block;
	position: absolute;
	background: url(../images/dec_contact_l.svg) no-repeat center / 100% auto;
	width: 76px;
	height: 69px;
	top: 50%;
	transform: translateY(-50%);
}
.sec.contact h2::before {
	left: calc(50% - (4.8rem * 9.5));
}
.sec.contact h2::after {
	background-image: url(../images/dec_contact_r.svg);
	right: calc(50% - (4.8rem * 9.5));
}
.sec.contact h2 span {
	background: linear-gradient(transparent 90%, #fff 0%);
	padding: 10px 0;
}
.sec.contact p {
	color: var(--colorWht);
	font-size: 1.8rem;
}

.sec.contact .btn_arrow {
	margin: 20px auto;
	padding: .8em 4em;
	font-size: 3rem;
	border-radius: 50px;
}
@media (max-width: 768px) {
	.sec.contact {
		border-top-width: 5px;
		border-bottom-width: 5px;
		padding: 40px 0 30px;
	}
	.sec.contact h2 {
		font-size: 2.2rem;
		line-height: 2;
		margin-bottom: 40px;
	}
	.sec.contact h2::before {
		left: 2%;
	}
	.sec.contact h2::after {
		right: 2%;
	}
	.sec.contact h2 span {
		background: linear-gradient(transparent 92%, #fff 0%);
		padding: 6px 0;
	}
	.sec.contact p {
		font-size: 1.6rem;
	}
	.sec.contact .btn_arrow {
		padding: .6em 2em;
		font-size: 2rem;
	}
}