@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: 1260px;
	width: 100%;
	margin: 0 auto;
	padding-inline: 30px;
}
.flexBox {
	display: flex;
	flex-wrap: wrap;
}
h2.ttl {
	/*color: #fff7ec;*/
	color: #faeddc;
	text-align: center;
	font-size: 14rem;
	letter-spacing: -0.3rem;
}
h2.ttl>p {
	font-size: 3.5rem;
	color: #292929;
	margin-top: -75px;
	letter-spacing: 0.05rem;
}

/** header
----------------------------------------------------------------------------**/
#js-header {
	padding: 10px 6%;
	padding-inline: 20px 30px;
}
#js-header>.flexBox {
	align-items: center;
	justify-content: space-between;
}
#js-header .logo {
	width: 15%;
}
#js-header .logo a {
	display: block;
	width: 100%;
	max-width: 200px;
}
ul.headNav.flexBox {
	margin-left: 40px;
}
.headNav>li {
	margin-right: 40px;
}
.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);
	display: none;
}

.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;
	box-shadow: rgba(100, 100, 111, 0.1) 0px 3px 6px 0px;
}

/** 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%;
	width: clamp(960px, 84vw, 1300px);
	margin: 0 auto;
}
.fv>.flexBox {
	justify-content: space-between;
	/*align-items: center;*/
}

.fv_img {
	width: 48%;
}
.fv_txt {
	width: 48%;
	margin-top: 5px;
	text-align: center;
}
.fv_txt>p {
	font-size: 3.4rem;
	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%;
}

/** link_bnr
---------------------------------------------**/
.link_bnr {
	display: block;
	width: 90%;
	max-width: 960px;
	margin: 2% auto;
}
.link_bnr>a {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: 0.3s ease-in;
}

.link_bnr>a img {
	max-width: 100%;
}

.link_bnr>a:hover {
	opacity: 0.8;
	box-shadow: 3px 3px 4px rgba(105, 105, 105, 0.2);
}

/** 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: 4.5rem;
	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: 8rem;
	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: 1.6rem;
	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.6rem;
	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.5rem;
	padding: 8px 0;
	border: 1px solid #666;
	border-radius: 50px;
	color: #666;
}
/** sec05
---------------------------------------------**/
#sec05 {
	padding: 3rem 0 5rem;
}
#sec05 h2 {
	color: #f6faec;
}

/* case study*/
#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;
}

/* interview */
#sec05>.inner>h2.ttl.type02 {
	color: rgba(16, 121, 188, 0.07);
}
#sec05>.inner>.link_area {
	width: 100%;
	max-width: 960px;
	margin: 4em auto;

}
#sec05>.inner>.link_area>a {
	display: flex;
	flex-wrap: wrap;
	background-color: rgba(16, 121, 188, 0.15);
	padding: 0.5rem;
	border-radius: 10px;
}
#sec05>.inner>.link_area>a:hover {
	background-color: rgba(16, 121, 188, 0.2);
	box-shadow: 3px 3px 4px rgba(105, 105, 105, 0.15);
}
#sec05>.inner>.link_area>a>.txt_body {
	width: 68%;
}
#sec05>.inner>.link_area>a>.txt_body>.seal {
	width: 14rem;
	margin: 1rem 2rem;
	padding: 0.5rem 1rem;
	background-color: #fff;
}
#sec05>.inner>.link_area>a>.txt_body>.thema {
	margin: 3.5% 2.5rem;
	color: #292929;
	text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.5);
	font-size: clamp(1.5rem, 2.3vw, 3rem);
	font-weight: 600;
}
#sec05>.inner>.link_area>a>.txt_body>.thema>span {
	color: #535b71;
	font-size: 1.2em;
}
#sec05>.inner>.link_area>a>.photo {
	width: 28%;
	overflow: hidden;
	margin-left: auto;
	object-fit: cover;
	border-radius: 10px;
}


/** 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%;
	text-align: left;
}
#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;
}


/** PC
---------------------------------------------**/
@media (min-width: 1025px) {
	.fv {
		padding: 1.5% 0;
	}
	.fv>.inner {
		width: clamp(960px, 84vw, 1300px);
	}

	.fv_img {
		flex: 0 1 48%;
	}
	.fv_txt {
		flex: 1 0 48%;
	}
	.fv_txt>p {
		font-size: clamp(2rem, 3vw, 3.4rem);
	}
	.fv_txt>img {
		margin: 1.55vw 0;
	}
}
/** TAB
---------------------------------------------**/
@media (max-width: 1024px) and (min-width: 800px) {
	#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
	--------------------------------------------------**/
	/* .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: 800px) {
	/** common
	--------------------------------------------------**/
	#wrapper {
		width: 100%;
		height: auto;
		margin: 0 auto;
		overflow: hidden;
	}
	.inner {
		max-width: 100%;
		min-width: 100%;
		width: 100%;
		margin: 0 auto;
	}
	h2.ttl {
		font-size: 17vw;
		line-height: 1.1;
		padding: 0 0 0 0;
		margin: 0 0 0;
	}
	h2.ttl>p {
		font-size: 5vw;
		margin-top: -20px;
	}


	/** header
	--------------------------------------------------**/
	#js-header {
		padding: 8px 0;
		padding-inline: 15px;
		margin-block: 80px 0;
	}
	#js-header.is-show {
		margin-block: 0 0;
	}
	#js-header>.flexBox {
		align-items: center;
		justify-content: space-between;
		flex-wrap: nowrap;
		gap: 10px;
	}
	#js-header .logo {
		width: 100%;
		max-width: 120px;
	}
	#js-header .logo a {
		min-width: 125px;
	}
	.headNav a {
		font-size: 13px;
		word-break: keep-all;
	}
	.headNav>li:last-child>a {
		padding: 7px 5px;
	}
	ul.headNav.flexBox {
		margin-left: 0;
		flex-wrap: nowrap;
		gap: 6px;
		position: relative;
		z-index: 1;
	}
	.headNav>li {
		margin-right: 0;
	}
	.headNav li:not(:last-child)>a::after {
		display: none;
	}
	/** 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>.inner {
		width: 100%;
	}
	.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;
	}

	/** link_bnr
---------------------------------------------**/
	.link_bnr {
		margin-top: 2em;
	}
	/** 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: 4.8vw;
		margin-bottom: 25px;
	}
	.btn_dl {
		font-size: 5vw;
		width: 96%;
		padding: 15px 0;
	}
	/** sec04
	---------------------------------------------**/
	#sec04 {
		padding: 4rem 0;
	}
	#sec04>.inner {
		min-width: 100%;
		width: 100%;
	}
	#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;
	}

	/* interview */
	#sec05>.inner>.link_area {
		margin: 2em auto 4rem;

	}
	#sec05>.inner>.link_area>a {
		flex-direction: column;
		border-radius: 10px;
	}
	#sec05>.inner>.link_area>a>.txt_body {
		width: 100%;
		margin: 0 auto 1rem;

	}
	#sec05>.inner>.link_area>a>.txt_body>.thema {
		width: 92%;
		margin: 0 auto;
		font-size: clamp(0.8rem, 4.2vw, 1.8rem);
	}
	#sec05>.inner>.link_area>a>.txt_body>.seal {
		width: 40%;
		margin: 4%;
	}

	#sec05>.inner>.link_area>a>.photo {
		width: 100%;
	}


	/** 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;
	}
}

/**--- 20251020 ---**/
.has-fixed #Kv {
	padding-top: var(--header-h, 0px);
}
#Kv {
	overflow: hidden;
}
.Product img {
	display: block;
}
.Product .Product_Inner {
	max-width: 1260px;
	margin-inline: auto;
	padding-inline: 30px;
	padding-block: 60px;
}
.Product .Product_List {
	display: flex;
	gap: 20px;
	justify-content: center;
}
.Product .Product_List_Box {
	width: calc(100% / 2);
}
.Product .Product_List_Box a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	max-width: 80%;
	height: 18px;
	margin-inline: auto;
	border-bottom-left-radius: 24px;
	border-bottom-right-radius: 24px;
}
.Product .Product_List_Box.Product01 a:after {
	background: #FF0303;
}
.Product .Product_List_Box.Product02 a:after {
	background: #F7931E;
}
.Product .Product_List_Box_Top_H {
	margin-block: 20px 20px;
}
.Product .Product_List_Box_Top_H img {
	max-height: 80px;
	max-width: fit-content;
	margin-inline: auto;
}
.Product .Product_List_Box_Top_T {
	text-align: center;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 1.6;
	margin-block: 0 30px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
}
.Product .Product_List_Box_Image {
	max-width: 460px;
	width: 83%;
	margin-inline: auto;
	margin-block: 0 60px;
}
.Product .Product_List_Box_Bottom {
	display: flex;
	flex-flow: column;
}
.Product .Product_List_Box_Bottom_Head {
	margin-block: auto;
}
.Product .Product_List_Box_Bottom_C_H {
	font-size: 2.5rem;
	text-align: center;
	font-weight: 800;
	letter-spacing: -0.06rem;
	margin-block: 30px;
	position: relative;
	z-index: 1;
}
.Product .Product_List_Box_Bottom_C_H:after {
	content: "";
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 83px;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 83px;
	height: 83px;
	margin: auto;
	z-index: -1;
}
.Product .Product_List_Box.Product01 .Product_List_Box_Bottom_C_H:after {
	background-image: url(../images/Product01_Icon.png);
}
.Product .Product_List_Box.Product02 .Product_List_Box_Bottom_C_H:after {
	background-image: url(../images/Product02_Icon.png);
}
.Product .Product_List_Box_Bottom_C_T {
	font-size: 1.8rem;
	line-height: 1.6;
	font-weight: 500;
	max-width: 390px;
	margin-inline: auto;
	padding-block: 0 15px;
}
.Product .Product_List_Box_Bottom_C:last-of-type .Product_List_Box_Bottom_C_T {
	padding-block: 0 0;
}
.Product .Product_List_Box_Bottom_C_T span.Note {
	display: block;
	text-align: right;
	font-size: 1.6rem;
	margin-block: 5px 0;
}
.Product .Product_List_Box_Bottom_C_Character {
	width: 160px;
	margin-inline: auto;
	transform: translate(25px, 30px);
}
.Product .Product_List_Box_Link {
	margin-block: auto 0;
	padding-block: 30px 20px;
}
.Product .Product_List_Box_Link .Product_List_Box_Link_Box {
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
	font-size: 2rem;
	max-width: 390px;
	margin-inline: auto;
	border-radius: 10px;
	font-weight: 800;
	padding-block: 14px;
}
.Product .Product_List_Box.Product01 .Product_List_Box_Link .Product_List_Box_Link_Box {
	background: #FF0303;
	box-shadow: rgb(164 60 23) 0 5px 1px 0;
}
.Product .Product_List_Box.Product02 .Product_List_Box_Link .Product_List_Box_Link_Box {
	background: #F7931E;
	box-shadow: rgb(164 60 23) 0 5px 1px 0;
}
.Product .Product_List_Box a {
	display: block;
	color: #292929;
	position: relative;
	opacity: 1;
	background: #F7F7F7;
	border-radius: 24px;
	padding-inline: 40px;
	padding-block: 30px;
	box-shadow: rgba(100, 100, 111, 0.35) 0px 1px 7px 0px;
}
.Product .Product_List_Box.Product01 a {
	position: relative;
	display: block;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.Product .Product_List_Box.Product01 a:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 3px solid #FF0303;
	opacity: 0;
	transition: opacity .22s ease;
	pointer-events: none;
	z-index: 2;
}
@keyframes product01-red-glow {
	0%,
	100% {
		box-shadow:
			0 18px 32px rgba(0, 0, 0, .22),
			0 6px 14px rgba(0, 0, 0, .18),
			0 0 0 rgba(255, 3, 3, 0);
	}
	50% {
		box-shadow:
			0 20px 38px rgba(0, 0, 0, .24),
			0 8px 16px rgba(0, 0, 0, .16),
			0 0 26px rgba(255, 3, 3, .45);
	}
}
.Product .Product_List_Box.Product01 a:hover {
	transform: translateY(4px) scale(1.07);
	box-shadow: 0 18px 32px rgba(0, 0, 0, .22), 0 6px 14px rgba(0, 0, 0, .18);
	filter: saturate(1.02);
	z-index: 1;
	border-radius: 6px;
	animation: product01-red-glow 1s ease-in-out .22s infinite alternate;
}
.Product .Product_List_Box.Product01 a:hover:before {
	opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
	.Product .Product_List_Box.Product01 a:hover {
		animation: none !important;
	}
}
.Product .Product_List_Box.Product02 a {
	position: relative;
	display: block;
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.Product .Product_List_Box.Product02 a:hover {
	transform: translateY(4px) scale(1.01);
	box-shadow: 0 18px 32px rgba(0, 0, 0, .22), 0 6px 14px rgba(0, 0, 0, .18);
	filter: saturate(1.02);
	z-index: 1;
	border-radius: 6px;
}
.Product .Product_List_Box.Product02 a:before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	border: 2px solid #F7931E;
	opacity: 0;
	transition: opacity .22s ease;
	pointer-events: none;
	z-index: 2;
}
.Product .Product_List_Box.Product02 a:hover:before {
	opacity: 1;
}

.LmsgContainer {
	box-sizing: border-box;
	width: 100%;
	margin-inline: auto;
	background: #fff;
	color: #222;
	margin-block: 50px 0;
	border: solid 1px #efefef;
	border-radius: 20px;
	padding-block: 40px;
	padding-inline: 40px;
}
.LmsgContainer :where(h1, h2, h3, p, ul, ol, dl, table, form) {
	margin-block: 0;
	font-size: 1.6rem;
}
.LmsgContainer :where(h1, h2, h3, p, ul, ol, dl, table, form)+ :where(*) {
	margin-block-start: 24px;
	text-align: center;
	font-size: 1.6rem;
}
.LmsgContainer :where(h1) {
	font-size: clamp(1.4rem, 2vw + 1rem, 1.8rem);
	font-weight: 700;
}
.LmsgContainer :where(h2) {
	font-size: clamp(1.2rem, 1.6vw + 1rem, 1.5rem);
	font-weight: 700;
}
.LmsgContainer :where(h3) {
	font-size: clamp(1.1rem, 1.2vw + 1rem, 1.3rem);
	font-weight: 600;
}
.LmsgContainer :where(ul, ol) {
	padding-left: 1.25em;
}
.LmsgContainer li+li {
	margin-top: 0;
}
.LmsgContainer table {
	width: 100%;
	border-collapse: collapse;
}
.LmsgContainer th,
.LmsgContainer td {
	padding: 8px 10px;
	vertical-align: top;
}
.LmsgContainer label {
	display: inline-block;
	margin-bottom: 6px;
	color: #222;
}
.LmsgContainer input,
.LmsgContainer select,
.LmsgContainer textarea {
	font: inherit;
	color: inherit;
}
.LmsgContainer img,
.LmsgContainer video,
.LmsgContainer iframe {
	max-width: 100%;
	height: auto;
	display: block;
}
.LmsgContainer .is-muted {
	color: #666;
	font-size: 0.95em;
}
.LmsgContainer .u-mt0 {
	margin-top: 0;
}
.LmsgContainer .u-mt8 {
	margin-top: 8px;
}
.LmsgContainer .u-mt16 {
	margin-top: 16px;
}
.LmsgContainer .u-mt24 {
	margin-top: 24px;
}
.LmsgContainer .u-mt32 {
	margin-top: 32px;
}
.message {
	display: block;
	padding: 12px 14px;
	border-radius: 8px;
	line-height: 1.6;
	border: 1px solid transparent;
	background: #f6f7f9;
	color: #ff0000;
}
.LmsgContainer #flow {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.LmsgContainer #flow li {
	width: calc(100% / 3);
	font-size: 1.7rem;
	background: #cbcbcb;
	text-align: center;
	padding-block: 10px;
	padding-inline: 10px;
	position: relative;
	color: #fff;
	font-weight: 800;
	z-index: 0;
	margin-inline: 0 -0.85%;
	clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
}
.LmsgContainer #flow li span {
	font-weight: 800;
	margin-inline: 0 10px;
}
.LmsgContainer #flow li#active {
	background: #0370be;
}
.LmsgContainer table td.label {
	text-align: left;
	font-weight: 700;
	width: 100%;
	color: #025b9b;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}
.LmsgContainer table td {
	display: block;
	width: 100%;
	text-align: left;
}
.LmsgContainer table td span.label_name {
	margin-inline: 0 10px;
}
.LmsgContainer input[type=email],
.LmsgContainer input[type=tel],
.LmsgContainer input[type=text] {
	width: 100%;
	background-color: #f2f8ff;
	outline: none;
	-moz-appearance: none;
	text-indent: .01px;
	text-overflow: '';
	vertical-align: middle;
	height: 48px;
	padding: 8px 12px;
	color: #242424;
	font-weight: 500;
	-webkit-appearance: none;
	border-radius: 3px;
	font-size: 1.6rem;
	border: solid 1px #ededed;
}
.LmsgContainer input[type="text"][name="person_name_last"],
.LmsgContainer input[type="text"][name="person_name_first"] {
	width: auto;
	min-width: 220px;
}
.LmsgContainer input[type="text"][name="person_name_last"] {
	margin-inline: 0 20px;
}
.LmsgContainer textarea {
	width: 100%;
	background-color: #f2f8ff;
	outline: none;
	-moz-appearance: none;
	text-indent: .01px;
	text-overflow: '';
	vertical-align: middle;
	padding: 8px 12px;
	font-weight: 500;
	-webkit-appearance: none;
	border-radius: 3px;
	color: #242424;
	font-size: 1.6rem;
	border: solid 1px #ededed;
	margin-block: 10px 0;
}
.LmsgContainer textarea::placeholder {
	font-size: 1.1rem;
	color: #9aa0a6;
	line-height: 1.6;
}
.LmsgContainer table td.comment {
	font-size: 1.4rem;
	color: #a9a9a9;
}
.LmsgContainer .required:after {
	content: "※必須";
	color: #e60000;
	font-size: 0.8em;
	margin-left: 4px;
	vertical-align: middle;
}
.LmsgContainer input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-inline: 0 10px;
	margin-block: 5px 7px;
	cursor: pointer;
}
.LmsgContainer .privacy_policy {
	margin: 30px;
	font-size: 1.5rem;
	letter-spacing: 0;
	max-width: 560px;
	margin-inline: auto;
	line-height: 1.6;
	margin-block: 30px 10px;
}
.LmsgContainer .privacy_policy a {
	color: #242424;
	text-decoration: underline;
}
.LmsgContainer .button_area {
	padding-block: 30px 10px;
}
.LmsgContainer .button_area input[type="button"] {
	text-align: center;
	background: #1188e6;
	color: #fff;
	font-size: 2.0rem;
	letter-spacing: 0;
	font-weight: 600;
	padding-block: 18px;
	padding-inline: 24px;
	border-radius: 6px;
	margin-inline: auto;
	display: block;
	min-width: 300px;
	cursor: pointer;
}
.LmsgContainer .button_area input[type="button"]#button_confirm_back {
	background: #ababab;
	margin-block: 0 20px;
}
.LmsgContainer div.container,
.LmsgContainer div.wrapper,
.LmsgContainer div#error_screen .error_area,
.LmsgContainer p.error_msg {
	width: 100% !important;
	box-sizing: border-box;
	max-width: 900px;
}
.LmsgContainer div.container,
#smc_form div.button_area input[type=button] {
	margin-inline: auto !important;
}
#smc_form {
	border: none !important;
}
.header-spacer {
	height: 0;
}
@media screen and (max-width: 1021px) {
	.Product .Product_List_Box a {
		padding-inline: 20px;
	}
}
@media screen and (max-width: 800px) {
	main {
		padding: 0 !important;
	}
	.Product .Product_List {
		flex-flow: column;
	}
	.Product .Product_List_Box {
		width: 100%;
	}
	.Product .Product_List_Box_Top_T br.Sp_None {
		display: none;
	}
	.Product .Product_List_Box_Top_H img {
		max-height: 70px;
	}
	.Product .Product_List_Box_Top_T {
		font-size: 2.3rem;
	}
	.Product .Product_List_Box_Image {
		margin-block: 0 30px;
	}
	.Product .Product_List_Box_Bottom_C_H {
		font-size: 2.1rem;
	}
	.Product .Product_List_Box_Bottom_C_H:after {
		background-size: 73px;
		width: 73px;
		height: 73px;
	}
	.Product .Product_List_Box_Bottom_C_T {
		font-size: 1.6rem;
	}
	.Product .Product_List_Box_Bottom_C_T span.Note {
		font-size: 1.4rem;
	}
	.Product .Product_List_Box_Bottom_C.Sp_None {
		display: none;
	}
	.LmsgContainer {
		border: solid 0px #efefef;
		border-radius: 0;
		padding-block: 0;
		padding-inline: 0;
	}
	#smc_form {
		padding: 0 !important;
	}
}
@media print {
	#header {
		display: none !important;
	}
}
