@charset "utf-8";
/* CSS Document */

:root {
    --primary-color: #ff6f00; /* オレンジ系 (画像参考) */
    --secondary-color: #007bff; /* 青系 (画像参考) */
    --text-color: #333;
    --background-color: #fff;
    --light-gray: #f4f4f4;
    --dark-gray: #555;
    --container-width: 1100px;
    --border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
    /*color: var(--text-color);*/
    background-color: var(--background-color);
	color: #292929;
}
ul, li {
	list-style: none;
	margin: 0;
	padding: 0;
}
a {
	text-decoration: none;
}
a:hover {
	/*opacity: .7;*/
}
img {
	width: 100%;
	vertical-align: bottom;
}

.inner {
	max-width: 1200px;
	min-width: 1060px;
	width: 100%;
	margin: 0 auto;
}
.flexBox {
	display: flex;
	flex-wrap: wrap;
}
h2.ttl {
	/*color: #fff7ec;*/
	color: #faeddc;
	text-align: center;
	font-size: 9.2rem;
	letter-spacing: -0.3rem;
}
h2.ttl > p {
	font-size: 2.2rem;
	color: #292929;
	margin-top: -75px;
	letter-spacing: 0.05rem;
}

/** header
----------------------------------------------------------------------------**/
header {
	padding: 10px 6%;
}
header > .flexBox {
	align-items: center;
	justify-content: space-between;
}
header .logo {
	width: 15%;
}
ul.headNav.flexBox {
	margin-left: 50px;
}
.headNav > li {
	margin-right: 50px;
}
.headNav > li:last-child {
	margin-right: 0;
}
.headNav a {
	font-size: 18px;
	color: #292929;
}
.headNav li:not(:last-child) > a{
	position: relative;
}
.headNav li:not(:last-child) > a::after {
  position: absolute;
  right: -25%;
  top: 20%;
  display: block;
  content: "";
  width: 12%;
  height: 33%;
  border-right: 1px solid #292929;
  border-top: 1px solid #292929;
  transform: rotate(135deg);
}

.headNav > li:last-child > a {
	background: #fe7b23;
	color: #fff;
	padding: 7px 25px;
	border-radius: 5px;
}
#js-header.is-show {
	position: fixed;
	width: 100%;
	background: #fff;
	top: 0;
	left: 0;
	z-index: 2;
}

/** main
----------------------------------------------------------------------------**/
#main {
}
.fv {
	position: relative;
	margin-top: 5px;
	padding: 30px 0;
	background: url("../images/fv_bg.png")no-repeat;
	background-position-x: -180px;
}
.fv > .inner {
	max-width: inherit;
	min-width: inherit;
	width: 94%;
	margin: 0 auto;
}
.fv > .flexBox {
	justify-content: space-between;
	/*align-items: center;*/
}
.fv_txt, .fv_img {
	width: 48%;
}
.fv_txt {
	margin-top: 5px;
	text-align: center;
}
.fv_txt > p {
	/*font-size: 3.4rem;*/
	font-size: 3vw;
	font-weight: bold;
	text-align: center;
}
.fv_txt > p > span {
	color: #fe7b23;
}
.fv_txt > p:last-of-type {
	font-size: 1.6rem;
	text-align: center;
}
.fv_txt > img {
	width: 55%;
	margin: 30px 0;
}
.fv_img > img:first-child {
	display: block;
	width: 55%;
	margin: 0 auto 15px;
}
.fv_txt > span {
	display: block;
	margin-top: 35px;
	font-size: 22px;
	font-weight: bold;
}
.fv_txt > span ruby {
	font-size: 1rem;
	margin: 0 10px;
}
a.btn_fv {
	display: block;
	width: 65%;
	background: #fe7b23;
	color: #fff;
	text-align: center;
	padding: 15px 0;
	font-size: 1.6rem;
	font-weight: bold;
	margin: 5px auto 0;
	border-bottom: 4px solid #a64808;
	border-radius: 5px;
	position: relative;
	top: 0;
}
a.btn_fv:hover {
	top: 4px;
	border-bottom: none;
}
/** infinity-scroll
---------------------------------------------**/
.scroll-infinity {
	padding: 4.5rem 0;
	background: #f1f1f1;
}
@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 9);
	margin: 0 25px;
}
.scroll-infinity__item>img {
  width: 100%;
}
/** sec01
---------------------------------------------**/
#sec01 {
	padding: 4rem 0;
}
#sec01 .expo_banner {
	width: 70%;
	margin: 0px auto 4rem;
}
#sec01 .expo_banner > a > img {
	box-shadow: 2px 2px 5px rgb(217,217,217);
}
#sec01 .txt_expo {
	text-align: center;
    font-size: 32px;
    font-weight: bold;
	margin-bottom: 20px;
}
#sec01 h3 {
	font-size: 2.7rem;
	line-height: 1.7;
	margin-bottom: 25px;
}
#sec01 .flexBox {
	justify-content: space-between;
	align-items: center;
}
#sec01 .flexBox > li {
	width: 55%;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.7;
}
#sec01 .flexBox > li:last-child {
	width: 44%;
}
/** sec02
---------------------------------------------**/
#sec02 {
	padding-bottom: 5rem;
}
.merit {
}
.merit > .flexBox {
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
	opacity: 0;
}
.merit > .flexBox:last-of-type {
	margin-bottom: 0;
}
.merit > .flexBox:nth-of-type(even) {
	flex-direction:row-reverse
}
.merit > .flexBox > li:first-child {
	width: 55%;
}
.merit > .flexBox > li:last-child {
	width: 42%;
}
.merit > .flexBox > li > b {
	color: #f9ab3c;
	font-size: 6.5rem;
	font-weight: normal;
	font-family: 'Impact',sans-serif;
	margin-left: 15px;
}
.merit > .flexBox > li > p {
	font-size: 18px;
	line-height: 2;
}
.merit > .flexBox > li > p:first-of-type {
	font-size: 39px;
	font-weight: bold;
	margin-bottom: 30px;
	line-height: 1.6;
}
.txt_movie {
	text-align: center;
	font-size: 32px;
	font-weight: bold;
	margin: 50px 0 20px;
}
.test00 {
	display: block;
	width: 75%;
	margin: 0 auto;
}

.inview {
	animation-name: fade-in;
	animation-duration: .5s;
	animation-timing-function: ease-in-out;
	animation-delay: .3s;
	animation-iteration-count: 1;
	animation-direction: normal;
	animation-fill-mode: forwards;
}
@keyframes fade-in {
  0% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
/** sec03
---------------------------------------------**/
#sec03 {
	padding-bottom: 5rem;
}
#sec03 h2 {
	/*color: #eff9fa;*/
	color: #d5ecee;
}
#sec03 .flexBox {
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 4.5rem;
	opacity: 0;
}
#sec03 .flexBox > li {
	width: 30%;
}
#sec03 .flexBox > li > img {
	display: block;
	width: 85%;
	margin: 0 auto;
}
#sec03 .flexBox > li > p:first-of-type {
	margin: 20px auto;
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.7;
}
#sec03 .flexBox > li > p:last-of-type {
	font-size: 1rem;
	line-height: 1.7;
}
/** dl_area
---------------------------------------------**/
#dl_area {
	background: url("../images/dl_bg.png")no-repeat;
	background-size: cover;
	padding: 5rem 0;
}
#dl_area p {
	font-size: 32px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	margin-bottom: 30px;
}
.btn_dl {
	color: #053a98;
	font-size: 32px;
	font-weight: bold;
	display: block;
	width: 45%;
	margin: 0 auto;
	background: #fff;
	padding: 20px 0;
	text-align: center;
	border-radius: 5px;
}
/** sec04
---------------------------------------------**/
#sec04 {
	padding: 4rem 0 5rem;
	background: #f6f6f6;
}
#sec04 > .inner {
	width: 70%;
    min-width: 1000px;
}
#sec04 h2 {
	color: #dedede;
}
#sec04 > .inner > p {
	font-size: 24px;
	font-weight: bold;
	margin: 3.3rem 0 20px;
}
#sec04 .flexBox {
	justify-content: flex-start;
}
#sec04 .flexBox > li {
	width: 22%;
	margin-right: 4%;
	background: #fff;
	border-radius: 10px;
	padding: 9px 0;
	margin-bottom: 40px;
	box-shadow: 2px 2px 7px #ccc;
	display: flex;
    flex-direction: column;
}
#sec04 .flexBox > li:nth-child(4n) {
	margin-right: 0;
}
#sec04 .flexBox > li:nth-child(n+5) {
	margin-bottom: 0;
}
#sec04 .flexBox:last-of-type > li {
	margin-bottom: 0;
}
#sec04 .flexBox > li > a {
	color: #292929;
}
#sec04 .flexBox > li img {
	display: block;
	width: 45%;
	margin: 0 auto 10px;
}
#sec04 .flexBox > li p {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
}
/** modal----------**/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 5;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}


.modal__content{
    background: #EEF3F6;
    left: 50%;
    padding: 30px 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
	text-align: center;
	height: 94%;
    overflow-y: auto;
	max-width: 1000px;
}

.modal__content > h5 {
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.modal__content > p {
	font-size: 1.4rem;
	margin: auto;
	margin-bottom: 20px;
	text-align: left;
	max-width: 810px;
}
.modal__content > img {
    max-width: 810px;
}
a.js-modal-close {
	display: block;
	width: 35%;
	margin: 30px auto 0;
	text-align: center;
	font-size: 1.2rem;
	padding: 8px 0;
	border: 1px solid #666;
	border-radius: 50px;
	color: #666;
}
/** sec05
---------------------------------------------**/
#sec05 {
	padding: 3rem 0 5rem;
}
#sec05 h2 {
	color: #f6faec;
}
#sec05 > .inner > .swiper > .flexBox {
	justify-content: space-between;
	margin-top: 4rem;
}
#sec05 .flexBox > li {
	width: 30%;
	background: #f6faec;
	padding: 30px 25px;
	display: flex;
    flex-direction: column;
	border-radius: 10px;
}
#sec05 .flexBox > li > img {
	display: block;
	width: 40%;
	margin: 0 auto;
}
#sec05 > .inner > .swiper > .flexBox > li > p {
	font-size: 22px;
	font-weight: bold;
	margin: 15px 0 45px;
	flex-grow: 1;
}
#sec05 .data {
	justify-content: space-between;
	align-items: flex-start;
	font-size: 15px;
}
#sec05 .data:first-of-type {
	margin-bottom: 20px;
}
#sec05 .data > li {
	padding: 8px 0;
}
#sec05 .data > li:first-child {
	background: #9cc948;
	width: 33%;
	text-align: center;
	border-radius: 2px;
}
#sec05 .data > li:last-child {
	width: 60%;
}
.btn_more {
	display: block;
	text-align: center;
	font-size: 16px;
	margin-top: 30px;
	color: #292929;
	position: relative;
}
.btn_more:after {
	content: ">";
	display: block;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	background: #9bc945;
	color: #fff;
	border-radius: 50px;
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: 20%;
	transform: translate(-20%,-50%);
}
.sec05_btn {
	display: block;
	width: 50%;
	border: 1px solid #9cca46;
	border-radius: 50px;
	font-size: 22px;
	color: #9cca46;
	text-align: center;
	padding: 15px 0;
	margin: 5rem auto 0;
}
/** sec06
---------------------------------------------**/
#sec06 {
	/*padding: 5rem 0;*/
}
.sec06_ttl {
	background: #007bc1;
	color: #fff;
	text-align: center;
	font-size: 48px;
	font-weight: bold;
	padding: 5rem 0;
	position: relative;
}
.sec06_ttl > span {
	display: block;
	font-size: 30px;
	font-weight: normal;
	padding-top: 20px;
}
.sec06_ttl:after {
	content: "";
	width: 0;
	height: 0;
	border-left: 50px solid transparent;
	border-right: 50px solid transparent;
	border-top: 50px solid #007bc1;
	position: absolute;
	left: 50%;
	bottom: -45px;
	transform: translate(-50%, 0%);
}
#sec06 h4 {
	text-align: center;
	font-size: 36px;
	font-weight: bold;
	margin-top: 5rem;
}
#sec06 h4 > span {
	display: block;
	font-size: 22px;
	font-weight: normal;
	padding-top: 15px;
}
#detail {
	justify-content: space-between;
    align-items: flex-start;
    margin: 5rem auto 30px;
}
#detail #form_txt {
    width: 55%;
}
#detail #form_txt dl {
    margin-bottom: 25px;
}
#detail #form_txt dl dt {
	font-size: 24px;
    font-weight: 700;
	margin-bottom: 10px;
}
#detail #form_txt dl dd {
    font-size: 18px;
}
#detail #form_txt dl dd b {
    font-weight: 700;
    color: #ff7a22;
}
#detail #form_txt p {
    line-height: 1.6;
    margin-bottom: 10px;
	font-size: 24px;
}
#detail #form_img {
    display: inline-block;
    width: 40%;
    font-size: 14px;
}

footer {
    padding: 10px 0;
}
footer p {
    font-size: 15px;
    text-align: center;
}


/** TAB
---------------------------------------------**/
@media (max-width: 1024px) and (min-width: 768px) {
	#wrapper {
		width: 100%;
		height: auto;
		margin: 0 auto;
		overflow: hidden;
	}
	.inner {
		max-width: 94%;
		min-width: 94%;
		width: 94%;
		margin: 0 auto;
	}
	
	h2.ttl {
		font-size: 13vw;
	}
	h2.ttl > p {
		font-size: 2.8vw;
		margin-top: -70px;
	}
	
	/** header
	--------------------------------------------------**/
	header {
		padding: 15px 3%;
	}
	header .logo {
		width: 20%;
	}
	header .logo > img {
		vertical-align: middle;
	}
	.headNav {
		/*width: 80%;*/
	}
	.headNav > li {
		margin-right: 40px;
	}
	.headNav a {
		font-size: 1.6vw;
	}
	.headNav > li:last-child > a {
		padding: 5px 15px;
	}
	
	/** main
	----------------------------------------------------------------------------**/
	.fv {
		background-position-x: -28rem;
	}
	.fv_txt > p {
		font-size: 3.6vw;
	}
	.fv_txt > p:last-of-type {
		font-size: 2vw;
	}
	.fv_txt > span {
		font-size: 1.7vw;
	}
	.fv_txt > img {
		margin: 20px auto;
	}
	a.btn_fv {
		width: 85%;
		padding: 12px 0;
    	font-size: 2.2vw;
	}
	/** infinity-scroll
	---------------------------------------------**/
	.scroll-infinity {
		padding: 4rem 0;
		background: #f1f1f1;
	}
	.scroll-infinity__item {
		width: calc(100vw / 6);
		margin: 0 15px;
	}
	/** sec01
	---------------------------------------------**/
	#sec01 h3 {
		font-size: 4.2vw;
		line-height: 1.5;
	}
	#sec01 .flexBox > li {
		font-size: 1.7vw;
		line-height: 1.9;
	}
	/** sec02
	---------------------------------------------**/
	.merit > .flexBox > li > b {
		font-size: 7vw;
	}
	.merit > .flexBox > li > p:first-of-type {
		font-size: 4vw;
	}
	.merit > .flexBox > li > p {
		font-size: 1.85vw;
	}
	.txt_movie {
		font-size: 2.5vw;
	}
	/** sec03
	---------------------------------------------**/
	#sec03 .flexBox > li > p:first-of-type {
		font-size: 2.1vw;
	}
	#sec03 .flexBox > li > p:last-of-type {
		font-size: 1.6vw;
		text-align: justify;
	}
	/** dl_area
	---------------------------------------------**/
	#dl_area p {
		font-size: 3vw;
	}
	.btn_dl {
		width: 55%;
		font-size: 3vw;
	}
	/** sec04
	---------------------------------------------**/
	#sec04 > .inner {
		min-width: 94%;
		width: 94%;
	}
	#sec04 > .inner > p {
		font-size: 2.2vw;
	}
	#sec04 .flexBox > li {
		width: 23%;
		margin-right: 2.6%;
		margin-bottom: 25px;
	}
	#sec04 .flexBox > li p {
		font-size: 2vw;
	}
	/** sec05
	---------------------------------------------**/
	#sec05 > .inner > .swiper > .flexBox {
		justify-content: space-between;
		margin-top: 4rem;
		flex-wrap: nowrap;
	}
	#sec05 .flexBox > li {
		width: 100%;
		background: #f6faec;
		padding: 40px 3% 50px;
		display: block;
	}
	#sec05 > .inner > .swiper > .flexBox > li > p {
		font-size: 2.1vw;
		margin: 15px 0 30px;
	}
	
	#sec05 .data > li:first-child {
		padding: 10px 0;
		font-size: 1.4vw;
	}
	#sec05 .data > li:last-child {
		padding: 10px 0;
		font-size: 1.4vw;
	}
	#sec05 .swiper-button-prev:after, #sec05 .swiper-button-next:after {
		font-size: 28px;
		color: #fe7b23;
	}
	.btn_more {
		font-size: 1.8vw;
	}
	.btn_more:after {
		right: 25%;
		transform: translate(-25%, -50%);
	}
	.sec05_btn {
		margin: 4rem auto 0;
		font-size: 2vw;
	}
	/** sec06
	---------------------------------------------**/
	.sec06_ttl {
		font-size: 4.5vw;
	}
	.sec06_ttl > span {
		font-size: 2.5vw;
	}
	#sec06 h4 {
		font-size: 3.5vw;
	}
	#sec06 h4 > span {
		font-size: 2.2vw;
	}
}



/** SP
---------------------------------------------**/
@media screen and (max-width: 768px) {
	/** common
	--------------------------------------------------**/
	#wrapper {
		width: 100%;
		height: auto;
		margin: 0 auto;
		overflow: hidden;
	}
	.inner {
		max-width: 92%;
		min-width: 92%;
		width: 92%;
		margin: 0 auto;
	}
	h2.ttl {
		font-size: 17vw;
        line-height: 1.1;
	}
	h2.ttl > p {
		font-size: 5vw;
		margin-top: -20px;
	}

	
	/** header
	--------------------------------------------------**/
	header {
		padding: 10px 2%;
	}
	header .logo {
		width: 28%;
	}
	header .logo > img {
		vertical-align: middle;
	}
	header .headNav {
		width: 69%;
	}
	.headNav {
		/*width: 80%;*/
	}
	ul.headNav.flexBox {
		margin-left: 9px;
	}
	.headNav > li {
		margin-right: 8%;
	}
	.headNav a {
		font-size: 3.3vw;
	}
	.headNav li:not(:last-child) > a::after {
    right: -3vw;
    top: 1vw;
    width: 1.7vw;
    height: 1.7vw;
	}
	.headNav > li:last-child > a {
		padding: 5px 15px;
	}
	header > .flexBox {
    justify-content: space-between;
	}
	
	/** main
	----------------------------------------------------------------------------**/
	#main {
	}
	.fv {
		position: relative;
		margin-top: 5px;
		padding: 20px 0;
		background: url("../images/fv_bg.png")no-repeat;
		background-position-x: 92%;
        background-size: cover;
	}
	.fv_txt, .fv_img {
		width: 100%;
	}
	.fv_txt {
		width: 100%;
		margin-top: 0px;
	}
	.fv_txt > p {
		font-size: 7.5vw;
	}
	.fv_txt > p:last-of-type {
		font-size: 4.5vw;
	}
	.fv_txt > span {
		margin-top: 15px;
	}
	.fv_txt > img {
		width: 60%;
		margin: 10px 0;
	}
	.fv_img > img:first-child {
		display: block;
		width: 75%;
		margin: 0 auto 5px;
	}
	a.btn_fv {
		width: 94%;
		padding: 15px 0;
		font-size: 5vw;
		margin: 5px auto 30px;
		border-bottom: 4px solid #a64808;
	}
	/** infinity-scroll
	---------------------------------------------**/
	.scroll-infinity {
		padding: 3rem 0;
		background: #f1f1f1;
	}
	.scroll-infinity__item {
		width: calc(100vw / 3);
		margin: 0 10px;
	}
	/** sec01
	---------------------------------------------**/
	#sec01 {
		padding: 2.5rem 0 5rem;
	}
	#sec01 .txt_expo {
        font-size: 5vw;
        margin: 30px 0 15px;
	}
	#sec01 .expo_banner {
		width: 100%;
		margin: 0px auto 2.5rem;
	}
	#sec01 h3 {
		font-size: 5.3vw;
		line-height: 1.7;
		margin-bottom: 25px;
	}
	#sec01 .flexBox {
		flex-direction: column-reverse;
	}
	#sec01 .flexBox > li {
		width: 100%;
		font-size: 4vw;
	}
	#sec01 .flexBox > li:last-child {
		width: 100%;
		margin-bottom: 15px;
	}
	/** sec02
	---------------------------------------------**/
	#sec02 {
		padding-bottom: 5rem;
	}
	.merit {
		margin-top: 3rem;
	}
	.merit > .flexBox {
		justify-content: space-between;
		align-items: center;
		margin-bottom: 30px;
		opacity: 0;
	}
	.merit > .flexBox:last-of-type {
		margin-bottom: 0;
	}
	.merit > .flexBox:nth-of-type(even) {
		/*flex-direction:row-reverse;*/
	}
	.merit > .flexBox > li:first-child {
		width: 100%;
		display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
	}
	.merit > .flexBox > li:last-child {
		width: 80%;
        margin: 0 auto;
	}
	.merit > .flexBox > li > b {
		font-size: 10vw;
		font-family: 'Impact',sans-serif;
		margin-left: 0px;
		width: 10%;
	}
	.merit > .flexBox > li > p {
		font-size: 4vw;
		line-height: 1.5;
	}
	.merit > .flexBox > li > p:first-of-type {
		font-size: 6vw;
		margin-bottom: 20px;
		line-height: 1.35;
		width: 85%;
	}
	.txt_movie {
		font-size: 5vw;
		margin: 30px 0 15px;
	}
	.test00 {
		display: block;
		width: 100%;
		margin: 0 auto;
	}
	/** sec03
	---------------------------------------------**/
	#sec03 {
		padding-bottom: 5rem;
	}
	#sec03 .flexBox {
		justify-content: space-between;
		align-items: flex-start;
		margin-top: 3rem;
		opacity: 0;
	}
	#sec03 .flexBox > li {
		width: 100%;
		margin-bottom: 35px;
	}
	#sec03 .flexBox > li:last-child {
		margin-bottom: 0;
	}
	#sec03 .flexBox > li > img {
		width: 65%;
	}
	#sec03 .flexBox > li > p:first-of-type {
		margin: 10px auto;
		font-size: 5.5vw;
		line-height: 1.4;
	}
	#sec03 .flexBox > li > p:last-of-type {
		font-size: 4vw;
		line-height: 1.45;
		text-align: justify;
	}
	/** dl_area
	---------------------------------------------**/
	#dl_area {
		background: url("../images/dl_bg.png")no-repeat;
		background-size: cover;
		padding: 3rem 0;
	}
	#dl_area p {
		font-size: 5.2vw;
		margin-bottom: 25px;
	}
	.btn_dl {
		font-size: 5vw;
		width: 96%;
		padding: 15px 0;
	}
	/** sec04
	---------------------------------------------**/
	#sec04 {
		padding: 4rem 0;
	}
	#sec04 > .inner {
		min-width: 92%;
		width: 92%;
	}
	#sec04 > .inner > p {
		font-size: 4.5vw;
		font-weight: bold;
		margin: 3rem 0 15px;
	}
	#sec04 .flexBox {
		justify-content: flex-start;
	}
	#sec04 .flexBox > li {
		width: 48%;
		margin-right: 4%;
		background: #fff;
		border-radius: 10px;
		padding: 35px 0;
		margin-bottom: 15px;
		box-shadow: 2px 2px 7px #ccc;
		display: flex;
		flex-direction: column;
	}
	#sec04 .flexBox > li:nth-child(even) {
		margin-right: 0;
	}
	#sec04 .flexBox > li:nth-child(n+5) {
		margin-bottom: 15px;
	}
	#sec04 .flexBox:last-of-type > li {
		margin-bottom: 15px;
	}
	#sec04 .flexBox > li img {
		display: block;
		width: 45%;
		margin: 0 auto 25px;
	}
	#sec04 .flexBox > li p {
		font-size: 4.3vw;
		font-weight: bold;
		text-align: center;
	}
	.modal__content > p {
		font-size: 1.1rem;
	}
	
		/** modal
	---------------------------------------------**/
	.modal__content {
    padding: 30px 15px;
    width: 90%;
    height: 70%;
}
	/** sec05
	---------------------------------------------**/
	#sec05 {
		padding: 3rem 0;
	}
	#sec05 > .inner > .swiper > .flexBox {
		justify-content: space-between;
		margin-top: 4rem;
		flex-wrap: nowrap;
	}
	#sec05 .flexBox > li {
		width: 100%;
		background: #f6faec;
		padding: 30px 3% 40px;
		display: block;
	}
	
	#sec05 .flexBox > li > img {
		display: block;
		width: 40%;
		margin: 0 auto;
	}
	#sec05 > .inner > .swiper > .flexBox > li > p {
		font-size: 5vw;
		font-weight: bold;
		margin: 15px 0 25px;
		/*flex-grow: 1;*/
		text-align: center;
	}
	#sec05 .data {
		justify-content: space-between;
		align-items: flex-start;
		font-size: 15px;
	}
	#sec05 .data:first-of-type {
		margin-bottom: 20px;
	}
	#sec05 .data > li {
		padding: 8px 0;
	}
	#sec05 .data > li:first-child {
		background: #9cc948;
		width: 33%;
		text-align: center;
		border-radius: 2px;
	}
	#sec05 .data > li:last-child {
		width: 60%;
	}
	.btn_more {
		display: block;
		text-align: center;
		font-size: 16px;
		margin-top: 30px;
		color: #292929;
		position: relative;
	}
	.btn_more:after {
		content: ">";
		display: block;
		width: 25px;
		height: 25px;
		line-height: 25px;
		text-align: center;
		background: #9bc945;
		color: #fff;
		border-radius: 50px;
		font-weight: bold;
		position: absolute;
		top: 50%;
		right: 24%;
		transform: translate(-24%,-50%);
	}
	.sec05_btn {
		width: 94%;
		font-size: 5vw;
		padding: 15px 0;
		margin: 3rem auto 0;
	}
	#sec05 .swiper-button-prev:after, #sec05 .swiper-button-next:after {
		font-size: 26px;
		color: #fe7b23;
	}
	#sec05 .swiper-button-next {
		right: 0px;
	}
	#sec05 .swiper-button-prev {
		left: 0px;
	}
	#sec05 .swiper-pagination.swiper-pagination-bullets.swiper-pagination-horizontal {
		bottom: 5px;
	}
	/** sec06
	---------------------------------------------**/
	#sec06 {
		/*padding: 5rem 0;*/
	}
	.sec06_ttl {
		font-size: 6vw;
		padding: 3.5rem 0;
		position: relative;
	}
	.sec06_ttl > span {
		display: block;
		font-size: 3.8vw;
		font-weight: normal;
		padding: 15px 3% 0;
	}
	.sec06_ttl:after {
		content: "";
		width: 0;
		height: 0;
		border-left: 35px solid transparent;
		border-right: 35px solid transparent;
		border-top: 35px solid #007bc1;
		position: absolute;
		left: 50%;
		bottom: -33px;
		transform: translate(-50%, 0%);
	}
	#sec06 h4 {
		text-align: center;
		font-size: 5.5vw;
		font-weight: bold;
		margin-top: 4rem;
	}
	#sec06 h4 > span {
		display: block;
		font-size: 3.8vw;
		font-weight: normal;
		padding-top: 15px;
	}
	
	#detail {
		justify-content: space-between;
		align-items: flex-start;
		margin: 3.5rem auto 30px;
	}
	#detail #form_txt {
		width: 100%;
	}
	#detail #form_txt dl dt {
		font-size: 4.5vw;
		margin-bottom: 10px;
	}
	#detail #form_txt dl dd {
		font-size: 3.6vw;
	}
	#detail #form_txt p {
		font-size: 4.5vw;
	}
	#detail #form_img {
		display: inline-block;
		width: 100%;
		font-size: 14px;
		margin-top: 35px;
	}

	footer {
		padding: 10px 0;
	}
	footer p {
		font-size: 15px;
		text-align: center;
	}
}