@charset "UTF-8";
/* CSS Document */
.nav2 {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
}

.nav2-list {
	display: flex;
	width: 100%;
}

.nav2-list__item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30%;
	font-size: 15px;
	font-weight: bold;
	color: #333;
	text-align: center;
	border-left: 1px solid #333;
}

@media screen and (max-width: 767px) {
	.nav2-list__item {
		padding-block: 2rem;
	}
}

@media screen and (min-width: 768px) {
	.nav2-list__item {
		height: 60px;
	}
}

.nav2-list__item:hover {
	opacity: 0.7;
}

.nav2-list__link {
	display: block;
}

.nav2-list__item::after {
	position: absolute;
	right: 0;
	bottom: 1rem;
	left: 0;
	width: 0.4em;
	height: 0.4em;
	margin: auto;
	content: "";
	border-right: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: rotate(45deg);
	transition: all 0.2s;
}

.nav2-list__item a {
	display: block;
}

@media screen and (max-width: 767px) {
	.nav2-list__item a {
		font-size: 14px;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.nav2-list__item a {
		font-size: 13px;
	}
}

.nav2-btn__item {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	justify-content: center;
	width: 20%;
	height: 60px;
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	background-color: #e3550d;
}

.nav2-btn__item:hover {
	opacity: 0.7;
}

.nav2-btn__img {
	height: 17px;
}

.nav2-btn__txt {
	margin-right: 10px;
}

.nav2-btn__link {
	display: flex;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.nav2 {
		flex-direction: column;
	}

	.nav2-btn__item {
		width: 70%;
		margin-top: 20px;
		border-radius: 30px;
	}

	.sp-none {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.pc-none {
		display: none !important;
	}
}

.cont01 {
	padding: 30px 40px;
	margin: 50px auto;
	background-color: #fef6f2;
}

@media screen and (max-width: 767px) {
	.cont01 {
		padding-inline: 1rem;
	}
}

.title {
	margin-top: 30px;
	text-align: center;
}

.title-sub {
	font-size: 1.5rem;
	font-weight: bold;
	color: #e3550d;
}

.title-txt {
	font-size: 3rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.title-txt {
		font-size: 2.4rem;
	}
}

.service {
	width: 100%;
	max-width: 1200px;
	margin: auto;
}

.service-title {
	width: 40%;
	margin: 20px 0;
	font-size: 1.5rem;
	font-weight: 500;
	border-bottom: 1.5px solid #e3550d;
}

.service-list__item {
	position: relative;
}

.service-list__link {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.service-list__link:hover {
	opacity: 0.7;
}

.service-list__label {
	flex: 1;
	padding: 1rem;
	background-color: #fff;
}

.service-list__img {
	height: auto;
}

.p-service-splide__arrows {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	display: none;
	width: 100%;
	margin-block: auto;
}

.p-service-splide__arrow::before {
	display: block;
}

.p-service-splide__arrow--prev::before {
	content: url("/assets/images/top/splide_arrow_left.png");
}

.p-service-splide__arrow--next::before {
	content: url("/assets/images/top/splide_arrow_right.png");
}

@media screen and (max-width: 767px) {
	.is-overflow .p-service-splide__arrows {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	.p-service-splide {
		padding-inline: 4rem;
	}

	.is-overflow .p-service-splide__arrows {
		display: flex;
		justify-content: space-between;
	}
}

@media screen and (max-width: 767px) {
	.cont01 {
		width: 100%;
	}

	.service-title {
		width: fit-content;
		padding-right: 2em;
	}
}

.cont02 {
	padding: 30px 0;
	margin: 50px auto;
}

.b-border {
	padding: 20px 0;
	margin-bottom: 50px;
	border-bottom: 2px solid #e3550d;
}

.title-txt__small {
	font-size: 2rem;
	letter-spacing: 0.3em;
}

.lr-border {
	display: flex; /* 文字と横線を横並び */
	align-items: center; /* 横線を上下中央 */
	justify-content: space-between; /* 文字を中央寄せ */
}

.lr-border::before,
.lr-border::after {
	width: 40%; /* 横線の長さ */
	height: 2px; /* 横線の高さ */
	content: "";
	background-color: #e3550d; /* 横線の色 */
}

.lr-border::before {
	margin-right: 15px; /* 文字との余白 */
}

.lr-border::after {
	margin-left: 15px; /* 文字との余白 */
}

@media screen and (max-width: 767px) {
	.cont02 {
		width: 97%;
	}

	.lr-border::before,
	.lr-border::after {
		width: 30%;
	}
}

.voice {
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
}

.voice-list {
	text-align: center;
}

.voice-list__item {
	--w: calc(100% - 20px);
	--g: #e3550d 20px, transparent 20px var(--w), #e3550d var(--w);

	padding: 30px 0;
	background: linear-gradient(90deg, var(--g)) 0 0 / 100% 3px, linear-gradient(90deg, var(--g)) 0 100% / 100% 3px, linear-gradient(0, var(--g)) 0 0 / 3px 100%, linear-gradient(0, var(--g)) 100% 0 / 3px 100% #fff;
	background-repeat: no-repeat;
}

.voice-list__label {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 600;
}

@media screen and (max-width: 767px) {
	.voice-list__label {
		font-size: 1.4rem;
	}
}

.voice-list__txt {
	margin: 15px 0;
	font-size: 1.3rem;
	font-weight: 600;
	line-height: 1.5;
}

.voice-list__name {
	font-size: 1.3rem;
	font-weight: 500;
	color: #666;
}

.voice-list__btn {
	display: block;
	width: 70%;
	padding: 10px 0;
	margin: 20px auto;
	font-size: 1.5rem;
	font-weight: bold;
	color: #fff;
	background-color: #e3550d;
	border-radius: 30px;
}

.voice-list__btn:hover {
	opacity: 0.7;
}

.p-voice-splide__arrow::before {
	display: block;
}

.p-voice-splide__arrow--prev::before {
	content: url("/assets/images/top/splide_arrow_left.png");
}

.p-voice-splide__arrow--next::before {
	content: url("/assets/images/top/splide_arrow_right.png");
}

@media screen and (min-width: 768px) {
	.p-voice-splide {
		padding-inline: 4rem;
	}
}

.cont03 {
	padding: 50px 0;
	background-color: #ecf5f8;
}

.theme {
	max-width: 1200px;
	margin: 50px auto;
}

.theme-list {
	display: grid;
}

.theme-list__item {
	position: relative;
	width: 100%;
	padding: 20px 10px;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
}

.theme-list__title {
	font-size: 1.5rem;
	font-weight: 500;
	color: #005893;
}

.theme-list__img {
	margin: 20px 0;
}

.theme-list__txt {
	width: 90%;
	margin: auto;
	font-size: 1.2rem;
}

.theme-list__button {
	display: block;
	width: 80%;
	margin: 2rem auto 0;
	font-size: 1.25rem;
	line-height: 2.5;
	color: #fff;
	text-align: center;
	background: #005893;
	border-radius: 2.5em;
	transition: all 0.4s ease;
}

@media (any-hover: hover) {
	.theme-list__button:hover {
		opacity: 0.7;
	}
}

@media screen and (max-width: 767px) {
	.theme {
		width: 90%;
	}

	.theme-list {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
	.theme-list {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem 2rem;
	}
}

@media screen and (min-width: 1024px) {
	.theme-list {
		grid-template-columns: repeat(4, 1fr);
		gap: 2rem;
	}
}

.cont04 {
	width: 100%;
	padding: 50px 0;
	background-image: url("/assets/images/top/cont4-01.jpg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.f-White {
	color: #fff;
}

.contact {
	margin: auto;
}

.contact-list {
	display: flex;
	justify-content: center;
}

.contact-list__item {
	padding: 30px 40px;
	margin: 30px 10px 0;
	text-align: center;
	background-color: #fff;
	border-radius: 10px;
	opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.contact-list__item {
		padding-inline: 1.5rem;
	}
}

.contact-list__title {
	display: inline-block;
	padding: 5px 10px;
	font-size: 1.5rem;
	font-weight: 600;
	color: #202d49;
	border: 1.5px solid #202d49;
}

.contact-list__txt {
	margin: 10px 0;
	font-size: 1.2rem;
}

.mail-flex {
	display: flex;
}

.mail-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin: 0 10px;
}

.mail-btn {
	display: block;
	padding: 10px 25px;
	font-size: 1.3rem;
	font-weight: 500;
	color: #fff;
	background-color: #e3550d;
	border-radius: 30px;
}

.mail-btn:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.contact {
		width: 100%;
	}

	.contact-list {
		flex-direction: column;
	}

	.mail-flex {
		display: block;
	}

	.contact-list__txt {
		margin: 30px 0 20px;
		font-size: 1.5rem;
	}
}

.fv_titleArea {
	flex-shrink: 0;
	padding: 0 16px;
	margin: 40px 0;
}

.fv_title_en {
	margin-bottom: 0.5em;
	font-family: Outfit, sans-serif;
	font-size: 16px;
	font-weight: 500;
}

.fv_title {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.25;
}

@media (min-width: 1024px) {
	.fv_title {
		font-size: 56px;
	}

	.fv_title_en {
		font-size: 24px;
	}
}

@media (max-width: 767px) {
	.fv_title {
		font-size: 2.7rem;
	}
}

.gradText.is-animated > * {
	opacity: 1;
}

.gradText .text-split span {
	color: #e3550d;
	opacity: 0;
	transform: translateX(30px);
}

.gradText.is-animated .text-split span {
	color: #333;
	opacity: 1;
	transform: translateX(0);
	transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), color 2s cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.gradText.is-animated .text-split:nth-child(1) span:nth-child(1) {
	transition-delay: 0s, 0s, 0.2s;
}

.fv-flex {
	display: flex;
	align-items: center;
	max-width: 1240px;
	margin: auto;
}

.fv-sub__pc {
	margin-left: 30px;
	font-size: 20px;
}

@media (min-width: 768px) {
	.fv-sub__pc {
		display: block;
	}

	.fv-sub__sp {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.fv-sub__sp {
		display: block;
		margin: 20px 0;
		font-size: 13px;
		text-align: center;
	}

	.fv-sub__pc {
		display: none;
	}
}

@keyframes scroll-loop-front {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}

@keyframes scroll-loop-back {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-200%);
	}
}

.fv-scroll {
	display: flex;
	flex-wrap: nowrap;
	overflow: hidden;
}

.fv-scroll__img {
	max-inline-size: none;
	width: auto;
	height: 300px;
}

.fv-scroll__img:first-child {
	animation: scroll-loop-front 200s -100s linear infinite;
}

.fv-scroll__img:last-child {
	animation: scroll-loop-back 200s linear infinite;
}

@media screen and (max-width: 767px) {
	.fv-scroll__img {
		height: 150px;
	}
}

.p-top-banner {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.5s ease, visibility 0.5s ease;
}

.p-top-banner.is-visible {
	visibility: visible;
	opacity: 1;
}
