/* リセットCSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
	--fsize-10: .625rem;
	--fsize-12: .75rem;
	--fsize-13: .8125rem;
	--fsize-14: .875rem;
	--fsize-15: .9375rem;
	--fsize-18: 1.125rem;
	--fsize-20: 1.25rem;
	--fsize-22: 1.375rem;
	--fsize-24: 1.5rem;
	--fsize-26: 1.625rem;
	--fsize-28: 1.75rem;
	--fsize-30: 1.875rem;
	--fsize-32: 2rem;
	--fsize-34: 2.0875rem;
	--fsize-36: 2.25rem;
	--fsize-40: 2.5rem;
	--fsize-42: 2.625rem;
	--fsize-44: 2.75rem;
	--fsize-45: 2.8125rem;
	--fsize-46: 2.875rem;
	--fsize-48: 3rem;
	--fsize-52: 3.25rem;
	--fsize-54: 3.375rem;
	--fsize-56: 3.5rem;
	--fsize-60: 3.75rem;
	--fsize-64: 4rem;
	--fsize-72: 4.5rem;
	--fsize-100: 6.25rem;
	--fsize-130: 8.125rem;
	--font-base: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	/* --font-header: "M PLUS 1 Code", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */
	--font-en: "Oswald", sans-serif;
	--font-YuGo: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	--color-blue: #2A4A9D;
}

a[href*="tel:"] {
	pointer-events: none;
}

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
}

button a {
	background: #fff;
	border: 2px solid #707070;
	padding: 1.2rem 1.7rem;
	border-radius: 50px;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-22);
	color: #333;
	width: 100%;
	display: block;
	font-weight: bold;
	transition: 0.2s ease;
}

body {
	line-height: 1.6;
	color: #333;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

.sp_only {
	display: none;
}

.pc_only {
	display: block;
}

body p {
	line-height: 1.8;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	text-decoration: none;
	color: inherit;
}

ul,
ol {
	list-style: none;
}
em {	
	font-style: normal;
}

input[type="text"] {
	padding: 5px;
	border: 1px solid #797979;
}

@media (hover: hover) {

	.language a:hover,
	.contact_form button a:hover {
		border: 1px solid var(--color-blue);
		color: var(--color-blue);
		background-color: #fff;
	}

	.vision button a:hover,
	.news button a:hover {
		background-color: #707070;
		color: #fff;
		border: 2px solid #707070;
	}
}

/****************************** header ******************************/
header {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 22px 3.125vw 25px ;
	z-index: 999;
	background: #fff;
	width: 100%;
	height: 125px;
	transition: 0.6s ease;
	/* max-width: 1920px; */
}

header .flex {
	width: 70%;
}

header .logo {
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 290px;
	width: 30%;
	margin: 0;
}
header .logo a {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

/* header .logo img {
	max-width: 290px;
} */

header.scroll {
	height: 96px;
	padding: 0 10px;
	/* padding: 10px; */
}


header.scroll nav a,
header.scroll .language a {
	font-size: var(--fsize-14)
}

header a {
	font-weight: 500;
}

.language {
	display: flex;
	align-items: center;
	justify-content: right;
	flex-wrap: wrap;
	gap: 1.25em;
	margin: 0 0 25px;
}

.language a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100px;
	height: 30px;
	line-height: 1;
	background: #EBEBEB;
	border-radius: 20px;
	text-align: center;
	border: 1px solid #EBEBEB;
	transition: 0.2s ease;
	font-family: var(--font-en);
	color: #333;
}

header .language_active {
	background-color: var(--color-blue);
	border: 1px solid var(--color-blue);
	color: #fff;
}

.scroll .language {
	margin: 0 auto 10px;
}

header nav ul {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 3.125vw;
	line-height: 1;
}

header nav a {
	font-size: var(--fsize-20);
	width: 100%;
	display: block;
}

header nav a:hover {
	color: var(--color-blue);
}
header nav .current a {
	color: var(--color-blue);
}
header .search_wrap {
	margin-left: 50px;
	position: relative;
}

header .search_wrap::before {
	content: '\f002';
	font-family: 'Font Awesome 6 Free';
	color: var(--color-blue);
	font-weight: bold;
	line-height: 0;
	position: absolute;
	top: 50%;
	left: -2em;
	line-height: 0;
	transform: translateY(-50%);
}

/* ハンバーガーメニューアイコン */
.menu-toggle {
	position: relative;
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 30px;
	cursor: pointer;
	z-index: 1001;
	position: absolute;
	top: 20px;
	right: 20px;
}

.menu-toggle span {
	position: absolute;
	display: block;
	height: 4px;
	background: var(--color-blue);
	border-radius: 2px;
}


/****************************** FV ******************************/

.fv_content {
	position: relative;
	margin-top: 125px;
	height: calc( 100dvh - 125px );
}

.fv_content .notice {
	position: absolute;
	bottom: 35px;
	left: 50px;
	color: #fff;
	font-weight: bold;
	font-family: var(--font-YuGo);
}

.fv_content .notice span {
	color: #333;
	font-size: var(--fsize-14);
	background: #fff;
	text-align: center;
	border-radius: 30px;
	padding: 4px 12px;
	border: 1px solid #707070;
}

.fv_content .notice div {
	display: flex;
	align-items: center;
	gap: 1.25em;
	margin-bottom: 10px;
}


/*************** slick関係 ***************/
.dots-2 {
	position: relative;
}

.slick-dots {
	position: absolute;
	bottom: 35px;
	right: 50px;
	display: inline-block;
	width: auto;
}

.dots-2 .slick-dots li {
	display: inline-block;
}

.slider-2 li img {
	width: 100%;
	/* height: auto; */
	height: 100%;
	object-fit: cover;
}

.dots-2 .slick-dots button {
	display: block;
	width: 20px;
	height: 20px;
	margin: 6px;
	font-size: 0;
	padding: 0;
	border: 0;
	outline: none;
	cursor: pointer;
	background: #fff;
	border-radius: 0;
}

.dots-2 .slick-dots .slick-active button {
	background: var(--color-blue);
}

.slick-dots li button:before,
.slick-dots li.slick-active button:before {
	content: none;
}

.slick-dotted.slick-slider {
	margin-bottom: 0px;
}

.slider-2 .slick-arrow {
	display: none !important;
}

.slider-2 .slick-slide {
	width: 1600px;
	max-width: 100%;
	/* height: auto; */
	height: calc( 100dvh - 125px );
	margin: 0;
	position: relative;
	overflow: hidden;
}

/* end slick関係 */

.slider-2 li::before,
.vision figure::before,
.years-100 picture::before,
.products .sticky::before,
footer::before {
	background-color: rgb(0 0 0 / 30%);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slider-2 li div {
	position: absolute;
	top: 50%;
	left: 50px;
	transform: translateY(-50%);
	z-index: 10;
}

.slider-2 li div span {
	color: #fff;
	display: block;
	font-size: var(--fsize-45);
	font-weight: bold;
}

.slider-2 li div span+span {
	font-size: var(--fsize-60);
}

.slider-2 li img::before {
	background-color: rgba(0, 0, 0, 0.85);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	content: ' ';
}


/******************************  vision ******************************/

.vision h2 {
	font-size: var(--fsize-40);
	margin-bottom: 50px;
}

.vision p {
	margin-bottom: 50px;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-22);
	font-weight: bold;
}

.vision button a {
	width: 270px;
}

.vision img {
	width: 50%;
}

.vision .flex,
.vision figure {
	display: flex;
	align-items: center;
	justify-content: center;
}

.vision .flex div {
	width: 50%;
	padding-left: 4em;
}

.vision .flex {
	gap: 40px;
}

.vision figure {
	position: relative;
	flex-wrap: wrap;
	width: 50%;
}

.vision figure::before {
	background-color: rgb(255 255 255 / 50%);
}

.vision figure::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url(../image/logo_icon.png) no-repeat center center;
	background-size: contain;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 10;
}

.vision figure img {
	width: 50%;
	position: relative;
	z-index: 0;
}


/****************************** products ******************************/
.products {
	display: flex;
}

.sticky {
	position: relative;
	width: 21%;
	color: #fff;
	background-repeat: no-repeat;
	background-size: cover;
}

.sticky_content {
	position: sticky;
	top: 0;
	padding: 8em 3em;
	border-radius: 10px;
	height: fit-content;
	z-index: 2;
}

.sticky_content h2 {
	margin-bottom: 40px;
	font-size: var(--fsize-40);
}

.sticky_content p {
	margin-bottom: 1em;
}

.sticky_content p:last-of-type {
	margin-bottom: 0;
}

.sticky_content button {
	margin-top: 40px;
	width: 100%;
}

.sticky_content a:hover {
	border: 2px solid #fff;
	color: #fff;
	background: none;
}

.products .sticky::before {
	background-color: rgb(0 0 0 / 60%);
}

.select_wrap {
	padding: 8em 5em;
	background: #F5F5F5;
	width: 79%;
}

.products .select_wrap span {
	font-weight: bold;
	color: #1a3e8a;
}

.accordion {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.accordion dt::before {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	color: #fff;
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: 15px;
	line-height: 0;
	transform: translateY(-50%);
}

.accordion dt.open::before {
	content: '\f068';
}

.accordion dt {
	cursor: pointer;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-20);
	padding: 0.7em 1.7em 0.7em 0.7em;
	background: var(--color-blue);
	color: #fff;
	position: relative;
	font-weight: bold;
	display: flex;
	flex-grow: 1;
	align-items: center;
	transition: 1s ease;
}

.accordion dl {
	width: calc(33.9% - 25px);
}

.accordion dl a {
	position: relative;
	padding-left: 1em;
	display: flex;
	align-items: baseline;
}

.accordion dl li a {
	border-bottom: 1px solid #434F6E;
}

.accordion li:last-child a {
	border-bottom: none;
}

.accordion dd a::before {
	content: '\f0da';
	font-family: 'Font Awesome 6 Free';
	color: #333;
	font-weight: bold;
	line-height: 0;
	margin-right: 5px;
}

.accordion dt.open {
	background: #434F6E;
}

.accordion dd {
	display: none;
	background: #fff;
	border: 1px solid #434F6E;
	margin: 0;
}

.accordion dl a {
	padding: 15px;
}


.select_wrap h2 {
	font-size: var(--fsize-34);
	margin-bottom: 40px;
	position: relative;
}

.products_info h2::before {
	content: "";
	width: 70px;
	height: 2px;
	background-color: var(--color-blue);
	position: absolute;
	top: 50%;
	left: -80px;
}

.select_wrap article {
	margin-bottom: 80px;
}

/****************************** castings ******************************/
.castings {
	position: relative;
	overflow: hidden;
	font-family: var(--font-YuGo);
}

.castings button a:hover {
	background-color: #fff;
	color: #333;
	border: 2px solid #707070;
}

/* --- 背景画像エリア --- */
.castings figure.flex {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
}

.castings picture {
	width: 33.3%;
	position: relative;
}

castings picture:nth-child(even) {
	border-right: 2px solid #fff;
	border-left: 2px solid #fff;
}

.castings figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.castings picture::before {
	background-color: rgb(0 0 0 / 57%);
}

/* --- テキストコンテンツ --- */
.castings>div {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 100%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	padding: 1.25em;
}

.castings h2 {
	font-size: var(--fsize-46);
	font-family: var(--font-en);
	font-weight: bold;
	margin-bottom: 1.25em;
}

.castings span {
	font-size: var(--fsize-28);
	font-weight: bold;
	display: block;
}

.castings p {
	font-size: var(--fsize-22);
	line-height: 1.6;
	margin: 1.8em auto
}

.castings button a {
	background: no-repeat;
	color: #fff;
	border: 2px solid #fff;
	font-weight: bold;
	max-width: 280px;
}

/****************************** news ******************************/
.news {
	max-width: 1200px;
	width: 80%;
	margin: 110px auto;
}

.news h2 {
	font-size: var(--fsize-40);
	border-right: 1px solid #000;
	padding-right: 40px;
}

#news .contents-wrap h2{
	margin-bottom:30px;
}

.news button a {
	font-size: var(--fsize-20);
}

.news .flex {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
	font-family: var(--font-YuGo);
}

.news button {
	display: block;
	margin-left: auto;
	width: 240px;
}

.news_content {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 100px;
	margin-top: 60px;
}

.news_content span {
	width: 120px;
	text-align: center;
	display: inline-block;
	border-radius: 30px;
	padding: 0.5em;
	font-size: 14px;
	line-height: 1;
	border: 1px solid #707070;
	background-color: #fff;
}

.news_content .news_imp span {
	background-color: #D83737;
	border: 1px solid #D83737;
	color: #fff;
}

.news_content a:hover {
	background-color: #F5F8FF;
	border: 1px solid var(--color-blue);
}

.news_content a:hover span {
	border: 1px solid var(--color-blue);
}

.news_content .news_imp a:hover span {
	border: 1px solid #D83737;
}

.news_content time {
	color: #666666;
	font-weight: bold;
	margin-right: 15px;
}

.news_content p {
	color: #333333;
	font-weight: bold;
	margin-top: 30px;
}

.news ul.flex li {
	font-weight: bold;
	font-size: var(--fsize-18);
	cursor: pointer;
}

.news .flex ul li.active_category {
	border-bottom: 2px solid var(--color-blue);
}

.news_content li a {
	display: block;
	border: 1px solid #707070;
	padding: 1.3em;
	width: 100%;
	transition: all .2s;
}

.news_content li {
	width: calc(50% - 50px);
	opacity: 1;
	visibility: visible;
	transition: opacity 0.2s ease;

}

.news_content li.hide {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	position: absolute;
}


/****************************** contact ******************************/
.contact {
	background-color: #F5F5F5;
	padding: 5em 12em;
}

.contact h2 {
	font-size: var(--fsize-34);
	text-align: center;
	line-height: 2;
	margin-bottom: 50px;
}

.contact ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1px;
	border: 1px solid #ccc;
	background-color: #ccc;

}

.contact li {
	background-color: #fff;
	padding: 1.25em;
	text-align: center;
}

.contact li div {
	font-weight: bold;
	font-size: var(--fsize-20);
}

.contact li span {
	font-size: var(--fsize-30);
}

.contact li p {
	font-size: var(--fsize-30);
	font-family: var(--font-en);
	font-weight: bold;
}

.contact li p a {
	color: #1a3b8b;
	font-size: var(--fsize-40);
	text-decoration: none;
}

.contact .contact_form {
	grid-column: 1 / -1;
	background-color: #fff;
	padding: 3em 5.5em;
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	gap: 3.5em;
}

.contact_form h3 {
	margin: 0 0 1.2rem;
	font-size: var(--fsize-34);
}

.contact .contact_form p {
	font-size: var(--fsize-20);
	font-family: var(--font-YuGo);
}

.contact_form button a {
	background-color: var(--color-blue);
	color: #fff;
	border: none;
	width: 360px;
}

/****************************** banner ******************************/
.banner {
	padding: 60px 0;
	max-width: 780px;
	width: 90%;
	margin: 0 auto;

}

.banner h2 {
	text-align: center;
	margin-bottom: 40px;
}

.banner .flex {
	display: flex;
	gap: 65px;
}

/****************************** footer ******************************/
footer {
	padding: 55px;
	background-image: url(../image/footer_bg.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	font-family: var(--font-YuGo);
	font-weight: 500;
}

footer::before {
	background-color: rgb(255 255 255 / 60%);
}

footer .flex {
	display: flex;
	/* align-items: center; */
	justify-content: space-between;
	gap: 8em;
	margin-bottom: 150px;
	z-index: 2;
	position: relative;
}

footer .footer_profile p {
	line-height: 1;
}

footer .footer_profile p,
.footer_links li {
	font-size: var(--fsize-18);
	margin-bottom: 1rem;
}

footer .logo {
	max-width: 350px;
	width: 100%;
	display: inline-block;
	margin-bottom: 30px;
}

/* footer .logo img {
	max-width: 310px;
	width: 100%;
} */

footer .iso {
	margin: 40px 0 0;
}

.footer_links {
	display: flex;
	justify-content: space-between;
	gap: 4em;
	width: 65%;
}

.footer_profile {
	width: 35%;
}

.footer_links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer_links ul:last-of-type {
	font-weight: bold;
	font-family: var(--font-base);
}

.footer_links li:first-child a {
	font-weight: bold;
	font-size: 1.1em;
	font-family: var(--font-base);
}

.footer_links a {
	color: #000;
	text-decoration: none;
	transition: 0.2s ease;
}

.footer_links a:hover {
	color: var(--color-blue);
}

footer small {
	font-size: 1rem;
	font-weight: bold;
	font-family: var(--font-en);
	position: relative;
	z-index: 2;
}

.page_top {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 60px;
	height: 60px;
	background-color: #000;
	z-index: 999;
	display: none;
}

.page_top::before {
	content: '\f077';
	font-family: 'Font Awesome 6 Free';
	color: #fff;
	font-weight: bold;
	position: absolute;
	top: 50%;
	right: 50%;
	line-height: 0;
	transform: translate(50%, 50%);
}

.page_top.visible {
	/* opacity: 1; */
	display: block;
	pointer-events: auto;
}

@media screen and (max-width: 1400px) {
	.vision {
		margin-bottom: 50px;
	}

	.vision h2 {
		margin: 50px auto;
	}

	.accordion dl {
		width: calc(50% - 13px);
	}
}

@media screen and (max-width: 1260px) {

	header nav a {
		font-size: 16px;
	}

	.vision .flex {
		align-items: flex-start;
	}

	.sticky {
		width: 30%;
	}

	.select_wrap {
		width: 70%;
	}

	.contact {
		background-color: #F5F5F5;
		padding: 4em 6em;
	}

	.contact li div {
		width: 100%;
		text-align: center;
	}

	.contact li span {
		display: block;
	}
}

@media screen and (max-width: 1100px) {
	.fv_content,
	.slider-2 .slick-slide {
		height: auto;
	}
	.years-100 picture:nth-child(even) {
		border-right: 2px solid #979797;
		border-left: 2px solid #979797;
	}

	.menu-toggle {
		display: flex;
	}
	.menu-toggle span {
		display: block;
		height: 4px;
		width: 100%;
		background: var(--color-blue);
		border-radius: 2px;
		transition: 0.4s ease;
		transform-origin: center;
	}
	.menu-toggle span:nth-of-type(1) {
		top: 4px;
	}
	.menu-toggle span:nth-of-type(2) {
		top: 13px;
	}
	.menu-toggle span:nth-of-type(3) {
		bottom: 4px;
	}
	.nav_active_body .menu-toggle span:nth-of-type(1) {
		transform: translateY(9px) rotate(45deg);
	}
	.nav_active_body .menu-toggle span:nth-of-type(2) {
		opacity: 0;
	}
	.nav_active_body .menu-toggle span:nth-of-type(3) {
		transform: translateY(-9px) rotate(-45deg);
	}
	.pc_only {
		display: none;
	}

	.sp_only {
		display: block;
	}



	/* header .flex {
		display: flex;
		flex-direction: column;
		width: 100%;
	} */
	header,
	header.scroll {
		height: 70px;
		padding: 0 1.25em;
	}

	header .logo {
		/* max-width: 160px; */
		width: 100%;
	}

	.scroll .language {
		margin: 0 auto;
	}

	header .flex {
		display: none;
	}

	header .flex.nav_active {
		position: absolute;
		left: 0;
		top: 70px;
		display: flex;
		flex-direction: column-reverse;
		justify-content: flex-end;
		gap: 20px;
		width: 100%;
		height: 100dvh;
		background: var(--color-blue);
		color: #fff;
		/* margin-top: 10px; */
		padding: 1em 0;
	}

	.language a {
		padding: 4px 16px;
	}

	header .nav_active ul {
		width: 100%;
		flex-wrap: wrap;
		gap: 10px;
	}

	header .language {
		width: 95%;
		margin: 0 auto;
		padding: 0 0 1em 0;
		z-index: 1000;
		border: none;
		justify-content: center;
		gap: 20px 10px;
	}

	header .language_active {
		background-color: var(--color-blue);
		border: 1px solid #ffffff;
		color: #fff;
	}

	header .nav_active .search_wrap::before {
		color: #fff;
	}

	header nav.nav_active,
	header .nav_active .search_wrap,
	header .language {
		display: flex;
		border: none;
	}

	header nav {
		width: 60%;
		margin: 0 auto;
	}

	header nav ul li {
		margin: 5px 0;
		width: 100%;
		border-bottom: 1px solid #fff;
	}

	.nav_active nav a {
		padding: 0.5em;
	}
	header nav .current a {
		color: #FFF;
	}

	/* end header */
	.nav_active_body,
	.nav_active_body body {
		overflow: hidden;
	}

	input[type="text"] {
		width: calc(100% - 50px);
	}

	.fv_content {
		margin-top: 70px;
	}

	/* クロス（×）状態 */
	body.nav_active_body .menu-toggle span:nth-child(1) {
		transform: rotate(45deg);
		position: absolute;
		top: 9px;
	}

	body.nav_active_body .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	body.nav_active_body .menu-toggle span:nth-child(3) {
		transform: rotate(-45deg);
		position: absolute;
		top: 9px;
	}

	.castings {
		height: 500px;
	}

	.castings h2 {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 960px) {
	footer {
		padding: 20px;
	}

	.dots-2 .slick-dots button {
		width: 10px;
		height: 10px;
		margin: 3px;
	}

	.slick-dots li {
		margin: 0 2px;
	}

	button a {
		font-size: var(--fsize-18);
		padding: 1em 1.2em;
	}


	.slider-2 li div {
		top: 30%;
		left: 30px;
	}

	.fv_content .notice {
		font-size: var(--fsize-14);
		bottom: 10px;
		width: 60%;
	}

	.fv_content .notice {
		font-size: var(--fsize-14);
		left: 30px;
	}

	.fv_content .notice div {
		gap: 10px;
	}

	.fv_content .notice p {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}

	.slick-dots {
		right: 10px;
		bottom: 10px;
	}

	.slider-2 li img {
		aspect-ratio: 16 / 9;
	}

	.vision {
		width: 90%;
		margin: 0 auto 30px;
	}

	.vision figure {
		width: 100%;
	}

	.vision .flex {
		flex-direction: column;
	}

	.vision .flex div {
		width: 100%;
		padding-left: 0;
	}

	.select_wrap h2 {
		font-size: var(--fsize-26);
	}

	.accordion dl {
		width: calc(50% - 25px);
	}

	.news {
		width: 90%;
	}

	.news_content {
		flex-direction: column;
	}

	.news h2 {
		border-right: none;
		padding-right: 0;
		width: 100%;
		text-align: center;
	}

	.news ul.flex li {
		width: calc(50% - 30px);
		text-align: center;
		border-bottom: 2px solid #6e6e6e;
	}

	.news_content li {
		width: 100%;
	}

	.news button {
		margin: 20px auto 0;
	}

	.news_content p {
		overflow: hidden;
		white-space: nowrap;
		text-overflow: ellipsis;
	}

	.contact .contact_form p {
		font-size: var(--fsize-18);
	}

	.contact .contact_form {
		padding: 3em;
	}

	.sticky {
		display: none;
	}


	.select_wrap {
		padding: 5em 2em;
		width: 100%;
	}

	.contact {
		padding: 5em 6em;
	}

	footer .flex {
		flex-direction: column;
		gap: 4em;
		margin-bottom: 2em;
	}

	footer small {
		display: block;
		text-align: center;
		font-size: 12px;
	}

	.years-100 p {
		margin: 1em auto;
		text-align: left;
	}

	.years-100 h2 {
		margin-bottom: 10px;
	}

	.news .flex {
		gap: 10px 30px;
		font-family: var(--font-YuGo);
		justify-content: center;
	}

	.footer_profile {
		width: 100%;
	}

	.footer_links {
		gap: 2em;
		width: 100%;
	}
}

@media screen and (max-width: 768px) {
	/* header .logo {
		max-width: 200px;
		width: 100%;
	} */
	/* header .logo img {
		max-width: 160px;
	} */

	.contact {
		padding: 1em;
	}

	.contact_form button a {
		width: 100%;
	}

	footer .flex {
		flex-direction: column;
	}

	.news_content p {
		text-overflow: ellipsis;
		white-space: nowrap;
		overflow: hidden;
	}

	.contact ul {
		grid-template-columns: repeat(1, 1fr);
	}

	.contact .contact_form {
		gap: 1em;
		padding: 1.25em 3em;
	}

	.contact h2 {
		margin-bottom: 30px;
		margin-top: 30px;
		text-align: left;
	}

	.accordion dl {
		width: 100%;
	}

	.years-100 p {
		font-size: 1em;
		text-align: left;
	}

	.years-100 span {
		font-size: var(--fsize-24);
	}

	.banner {
		gap: 20px;
		width: 95%;
	}
}

@media screen and (max-width: 480px) {
	header, 
	header.scroll {
		padding: 0 3%;
	}
	header .logo {
		max-width: unset;
		width: calc( 100% - ( 30px + 10% ) );
	}
	header nav {
		width: 80%;
	}

	.slider-2 li div span,
	.slider-2 li div span+span {
		font-size: var(--fsize-24);
	}

	.vision h2,
	.news h2 {
		font-size: var(--fsize-30);
	}
	.vision p {
		font-size: var(--fsize-20);
	}
	.accordion dt {
		font-size: var(--fsize-18);
	}
	.contact h2 {
		font-size: var(--fsize-26);
	}

	.footer_links {
		flex-direction: column;
	}
}

/* contents
-----------------------------------------------*/
main:not(#top) {
	margin-top: 125px;
}
@media screen and (max-width: 1100px) {
	main:not(#top) {
		margin-top: 70px;
	}
}

/* 100years
-----------------------------------------------*/

#years-100 .fv {
	position: relative;
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-block-end: 136px;
}
#years-100 .fv figure {
	position: relative;
	display: block;
	width: 50%;
	aspect-ratio: 800 / 724;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
#years-100 .fv figure:first-of-type::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0%;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.5);
}
#years-100 .fv h2 {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	text-align: center;
	width: 100%;
	margin: 0;
	font-size: var(--fsize-45);
	font-weight: 700;
	line-height: 1.65;
	color: #FFF;
	text-shadow: 0 3px 6px rgba(0,0,0,.6);
}
#years-100 .fv h2 em {
	display: block;
	font-family: var(--font-en);
	font-size: var(--fsize-60);
}
#years-100 section h3 {
	position: relative;
	font-weight: 700;
	font-size: var(--fsize-34);
	text-align: center;
	margin-block-end: 4vw;
	padding-block-end: .7em;
}
#years-100 section h3 span {
	display: inline-block;
	background: linear-gradient(to right, var(--color-blue) ,#4EB6C1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#years-100 section h3::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -5px;
	transform: translateX(-50%);
	display: block;
	width: 80px;
	height: 5px;
	background-color: var(--color-blue);
}
#years-100 .message {
	display: flex;
	justify-content: space-between;
	margin-block-end: 100px;
}
#years-100 .message figure {
	width: 18.75vw;
}
#years-100 .message figure img {
	display: block;
	aspect-ratio: 5 / 4;
	margin: 0;
}
#years-100 .message .txt-wrap {
	position: relative;
	padding: 1em 2.5vw 0;
	text-align: center;
}
#years-100 .message .txt-wrap::before {
	content: '';
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: -1;
	display: block;
	width: 90%;
	height: 90%;
	background: url(../company/100years/images/logomark-k.svg) no-repeat center center;
	background-size: contain;
	opacity: 5%;
}
#years-100 .message p {
	font-weight: 700;
	font-size: var(--fsize-24);
	line-height: 3;
	margin-block-end: 3em;
}

#years-100 .features {
	width: 75%;
	margin: 0 auto 80px;
}
.lead {
	position: relative;
	background-color: #F5F5F5;
	font-weight: 700;
	font-size: 1.625vw;
	text-align: center;
	padding: 1.2em 1.5em;
	margin-block-end: 110px;
}
.lead::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 4.1%;
	aspect-ratio: 1 / 1;
	border-left: 1px solid #000;
	border-top: 1px solid #000;
}
.lead::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	width: 4.1%;
	aspect-ratio: 1 / 1;
	border-right: 1px solid #000;
	border-bottom: 1px solid #000;
}
.contents-wrap .lead p {
	margin-block-end: 0;
}
#years-100 .features .list {
	counter-reset: num1;
	margin-bottom: 50px;
}
#years-100 .features .list li {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid #707070;
	padding: 55px 4.5% 55px 5.5%;
	margin-block-end: 120px;
}
#years-100 .features .list li::before {
	counter-increment: num1;
	content: counter(num1, decimal-leading-zero);
	position: absolute;
	left: 40px;
	top: calc( -1 * var(--fsize-34) );
	z-index: 1;
	display: block;
	width: 100px;
	background-color: #FFF;
	color: var(--color-blue);
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-60);
	line-height: 1;
	text-align: center;
}
#years-100 .features .list li:last-child {
	margin-block-end: 0;
}
#years-100 .features dl {
	width: 61%;
}
#years-100 .features .img-wrap {
	width: 32.4%;
	text-align: center;
}
#years-100 .features dt {
	font-weight: 700;
	font-size: var(--fsize-30);
	margin-bottom: .8em;
}
#years-100 .features dt em {
	display: block;
	font-family: var(--font-en);
	font-size: var(--fsize-20);
	color: #858585;
}
#years-100 .features dd {
	font-family: var(--font-YuGo);
	font-size: var(--fsize-20);
}
#years-100 .sdgs {
	display: flex;
	gap: 5%;
	margin-block-start: 1em;
}
#years-100 .poster {
	text-align: center;
}
.box {
	background-color: #F2F6FF;
}
#years-100 .box {
	padding: 1.5em 2em;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-22);
	line-height: 1.8;
}

#years-100 .history {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 4 / 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#years-100 .history::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}
#years-100 .history .btn {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 350px;
	height: 58px;
	padding-inline: 1.25em;
	border: 1px solid #FFF;
	border-radius: 30px;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-22);
	line-height: 1;
	color: #FFF;
}

#years-100 .history .btn.pdf::after {
	content: '\f1c1';
	font-family: 'Font Awesome 6 Free';
	margin-inline-start: 1em;
}

@media screen and (max-width: 1600px) {
	#years-100 .message p {
		font-size: 1.5vw;
	}
}
@media screen and (max-width: 1100px) {
	#years-100 .fv h2 {
		font-size: var(--fsize-36);
	}
	#years-100 .fv h2 em {
		font-size: var(--fsize-54);
	}
	#years-100 .message {
		flex-direction: column;
	}
	#years-100 .message figure {
		display: flex;
		justify-content: space-between;
		width: 100%;
	}
	#years-100 .message figure img {
		width: 25%;
	}
	#years-100 .message .txt-wrap {
		width: 90%;
		margin: 1.5em auto;
		padding-block-start: 2.5em;
	}
	#years-100 .message p {
		font-size: 2.2vw;
	}
	#years-100 .message .txt-wrap::before {
		width: 80%;
		height: 80%;
	}
	#years-100 .features {
		width: 90%;
	}
	#years-100 .features .lead {
		font-size: var(--fsize-20);
	}
	#years-100 .history {
		aspect-ratio: 2 / 1;
	}
}
@media screen and (max-width: 800px) {
	#years-100 .fv h2 {
		font-size: var(--fsize-28);
	}
	#years-100 .fv h2 em {
		font-size: var(--fsize-40);
	}
	#years-100 .message .txt-wrap {
		width: 94%;
	}
	#years-100 section h3 {
		font-size: var(--fsize-28);
	}
	#years-100 .message p {
		font-size: var(--fsize-20);
		line-height: 2;
	}
	#years-100 .features dl {
		width: 100%;
		margin-block-end: 40px;
	}
	#years-100 .features .img-wrap {
		width: 100%;
	}
	#years-100 .box {
		font-size: var(--fsize-20);
	}
}
@media screen and (max-width: 700px) {
	#years-100 .fv {
		flex-direction: column;
	}
	#years-100 .fv figure {
		width: 100%;
		aspect-ratio: 2 / 1;
	}
	#years-100 .fv h2 span {
		display: block;
	}
	#years-100 .fv h2 em {
		font-size: var(--fsize-30);
	}
	#years-100 .message figure {
		flex-wrap: wrap;
	}
	#years-100 .message figure img {
		width: 50%;
	}
	#years-100 .features .list li {
		margin-block-end: 100px;
	}
	#years-100 .features .list li::before {
		left: 20px;
		top: calc( -1 * var(--fsize-28) );
		width: 80px;
		font-size: var(--fsize-48);
	}
}
@media screen and (max-width: 480px) {
	#years-100 .fv figure {
		width: 100%;
		aspect-ratio: 4 / 3;
	}
	#years-100 .fv h2 {
		font-size: var(--fsize-26);
	}
	#years-100 .fv h2 em {
		font-size: var(--fsize-26);
	}
	#years-100 section h3 {
		font-size: var(--fsize-24);
	}
	#years-100 .message p {
		font-size: var(--fsize-18);
	}
	#years-100 .features .lead {
		font-size: var(--fsize-18);
	}
	#years-100 .features .list li {
		padding-block: 45px 40px;
		margin-block-end: 80px;
	}
	#years-100 .features dl {
		margin-block-end: 20px;
	}
	#years-100 .features dd {
		font-size: var(--fsize-18);
	}
	#years-100 .box {
		font-size: var(--fsize-18);
	}
	#years-100 .history {
		aspect-ratio: 3 / 2;
	}
	#years-100 .history .btn {
		min-width: unset;
		width: 94%;
		font-size: var(--fsize-20);
	}
}

/* page-title
-----------------------------------------------*/
#page-title {
	position: relative;
	display: flex;
	justify-content: flex-end;
	flex-direction: column;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	aspect-ratio: 4 / 1;
	color: #FFF;
}
#page-title::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}
#page-title h2 {
	position: absolute;
	left: 4.3vw;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	font-weight: 700;
	font-size: var(--fsize-60);
}
#page-title h2 em {
	display: block;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-26);
}
.breadcrumbs {
	position: relative;
	z-index: 1;
	margin-inline-start: 4.3vw;
	margin-block-end: .5em;
}
.breadcrumbs ul {
	display: flex;
	flex-wrap: wrap;
	gap: .5em 1em;
}
.breadcrumbs li {
	display: flex;
	align-items: center;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-18);
	line-height: 1;
}
.breadcrumbs li::after {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	margin-inline-start: 1em;
}
.breadcrumbs li:last-child:after {
	content: none;
}
.breadcrumbs a {
	position: relative;
	display: inline-block;
	color: #FFF;
	overflow: hidden;
}
.breadcrumbs a::before {
	content: '';
	position: absolute;
	left: -100%;
	bottom: -0;
	display: block;
	width: 100%;
	height: 1px;
	background-color: #FFF;
	transition: all .5s ease;
}
.breadcrumbs a:hover::before {
	left: 0;
}

@media screen and (max-width: 1400px) {
	#page-title h2 {
		left: 3.125vw;
	}
	.breadcrumbs {
		margin-inline-start: 3.125vw;
	}
}
@media screen and (max-width: 1100px) {
	#page-title {
		aspect-ratio: 3 / 1;
	}
	#page-title h2 {
		font-size: var(--fsize-48);
	}
	#page-title h2 em {
		font-size: var(--fsize-22);
	}
}
@media screen and (max-width: 800px) {
	#page-title h2 {
		font-size: var(--fsize-40);
	}
	#page-title h2 em {
		font-size: var(--fsize-20);
	}
	.breadcrumbs li {
		font-size: 1rem;
	}
}
@media screen and (max-width: 700px) {
	#page-title {
		aspect-ratio: 2 / 1;
	}
}
@media screen and (max-width: 480px) {
	#page-title {
		aspect-ratio: 3 / 2;
	}
	#page-title h2 {
		font-size: var(--fsize-36);
	}
	#page-title h2 em {
		font-size: 1rem;
	}
	.breadcrumbs ul {
		gap: .5em;
	}
	.breadcrumbs li {
		font-size: var(--fsize-15);
	}
	.breadcrumbs li::after {
		margin-inline-start: .5em;
	}
}
@media screen and (max-width: 400px) {
	#page-title h2 {
		font-size: var(--fsize-30);
	}
}

/* page-link
-----------------------------------------------*/
.page-link {
	background-color: #F2F6FF;
	padding: 1.25em 4.3vw;
}
.page-link .menu {
	display: none;
}
.page-link ul {
	display: flex;
	justify-content: center;
	gap: 1em 1.25vw;
}
.page-link a {
	display: inline-block;
	padding: .75em;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-18);
	line-height: 1;
	color: #333;
	background-color: #FFF;
}
.page-link a::before {
	content: '\f105';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	display: inline-block;
	color: var(--color-blue);
	margin-inline-end: .5em;
}
.page-link a:hover {
	color: var(--color-blue);
}
#company .page-link {
	margin-block-end: 100px;
}
.page-link .down a::before {
	transform: rotate(90deg);
}
@media screen and (max-width: 1400px) {
	.page-link {
		padding-inline: 3.125vw;
	}
	.page-link a {
		font-size: 1rem;
		padding: .75em .5em;
	}
}
@media screen and (max-width: 1100px) {
	.page-link {
		position: relative;
	}
	.page-link .menu {
		position: relative;
		display: inline-block;
		font-family: var(--font-en);
		font-weight: 700;
		font-size: var(--fsize-18);
		line-height: 1;
		color: var(--color-blue);
	}
	.page-link .menu::after {
		content: '\f107';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		display: inline-block;
		color: var(--color-blue);
		margin-inline-start: .5em;
		transition: all .5s ease;
	}
	.page-link.active .menu::after {
		transform-origin: center 40%;
		transform: rotate(-180deg);
	}
	.page-link ul {
		display: none;
		margin: 20px 0 0;
	}
	.page-link.active ul {
		display: grid;
		grid-template-columns: repeat( auto-fit, minmax(200px, 1fr) );
		gap: .5em 1.25vw;
	}
	.page-link a {
		display: block;
	}
	#company .page-link {
		margin-bottom: 80px;
	}
}
@media screen and (max-width: 700px) {
	#company .page-link {
		margin-bottom: 60px;
	}
}
@media screen and (max-width: 480px) {
	#company .page-link {
		margin-bottom: 50px;
	}
}

/* contents-wrap
-----------------------------------------------*/
.contents-wrap {
	width: 75vw;
	margin: 0 auto 80px;
	font-family: var(--font-YuGo);
	font-weight: 500;
	font-size: var(--fsize-18);
}
.contents-wrap h3 {
	position: relative;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-46);
	margin-block-end: 1em;
}
.contents-wrap h3::before {
	content: '';
	position: absolute;
	left: -12.5vw;
	top: 50%;
	display: block;
	width: 11vw;
	height: 2px;
	background-color: var(--color-blue);
}
.contents-wrap h4 {
	font-family: var(--font-base);
	font-weight: 500;
	font-size: var(--fsize-30);
	color: var(--color-blue);
	margin-block-end: 1em;
}
.contents-wrap h5 {
	font-family: var(--font-base);
	font-weight: 500;
	font-size: var(--fsize-24);
	border-bottom: 1px solid #2A4A9D;
	padding-block-end: .5em;
	margin-block-end: 1em;
}
.contents-wrap h6 {
	font-family: var(--font-base);
	font-weight: 500;
	font-size: var(--fsize-20);
	border-bottom: 1px solid #2A4A9D;
	padding-block-end: .5em;
	margin-block-end: 1em;
}
#company .contents-wrap h5,
#products .contents-wrap h5 {
	border-bottom: none;
	padding-block-end: 0;
}
.contents-wrap p {
	margin-block-end: 1.5em;
}
.contents-wrap table {
	width: 100%;
	border-collapse: collapse;
}
.contents-wrap th {
	text-align: left;
	padding: 2em 1em;
	border-bottom: 1px solid var(--color-blue);
	vertical-align: top;
}
.contents-wrap tr:first-child th {
	border-top: 1px solid var(--color-blue);
}
.contents-wrap td {
	padding: 2em 1em;
	border-bottom: 1px solid #888;
}
.contents-wrap tr:first-child td {
	border-top: 1px solid #888;
}
.contents-wrap ul {
	margin-inline-start: 1.25em;
	margin-block-end: 1.5em;
}
.contents-wrap table ul {
	margin-block-end: 0;
}
.contents-wrap ul li::marker {
	content: '■ ';
	color: var(--color-blue);
}
.contents-wrap ul.archive-lists {
	margin-inline-start: 0;
}
.contents-wrap ul.archive-lists li::marker {
	content: none;
}

/***--- style2 ---***/
.contents-wrap ul.style2{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.contents-wrap ul.style2 li{
	width:46.5%;
}

.contents-wrap ol {
	margin-inline-start: 1.25em;
	margin-block-end: 1.5em;
	li{
		list-style:decimal;
		padding:0 0 20px 10px;
		&:last-child{
			padding-bottom:0;
		}
	}
}

.contents-wrap .btn {
	max-width: 264px;
	width: 100%;
	height: 58px;
	margin: 50px auto 0;
}
.contents-wrap a {
	color: var(--color-blue);
}
.contents-wrap .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: var(--fsize-22);
	line-height: 1;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	color: #333;
	border: 1px solid #707070;
	transition: all .5s ease;
}
.contents-wrap .btn a:hover {
	background-color: var(--color-blue);
	color: #FFF;
	border: 1px solid var(--color-blue);
}
@media screen and (max-width: 1400px) {
	.js-scrollable {
		overflow: auto;
		margin-block-end: 1.5em;
		height:unset;
	}
	.js-scrollable table {
		width: 100%;
		border-collapse: collapse;
	}
	.js-scrollable th,
	.js-scrollable td {
		white-space: nowrap;
	}
	.js-scrollable img {
		display: block;
		max-width: unset;
		width: auto;
	}
}
@media screen and (max-width: 1100px) {
	.contents-wrap {
		width: 90%;
	}
	.contents-wrap h3 {
		font-size: var(--fsize-40);
	}
	.contents-wrap h4 {
		font-size: var(--fsize-26);
	}
	.contents-wrap h5 {
		font-size: var(--fsize-22);
	}
	.contents-wrap .btn a {
		font-size: var(--fsize-20);
	}
}
@media screen and (max-width: 700px) {
	.contents-wrap th,
	.contents-wrap td {
		display: block;
		width: 100%;
		padding-inline: .5em;
	}
	.contents-wrap th {
		border-bottom: none;
		padding-block-end: .5em;
	}
	.contents-wrap td {
		padding-block-start: .5em;
	}
	.contents-wrap tr:first-child th {
		border-top: 1px solid #888;
	}
	.contents-wrap tr:first-child td {
		border-top: none;
	}
	
	/***--- style2 ---***/
	.contents-wrap ul.style2{
		display:block;
	}
	.contents-wrap ul.style2 li{
		width:100%;
	}
}
@media screen and (max-width: 480px) {
	.contents-wrap {
		width: 94%;
	}
	.contents-wrap h3 {
		font-size: var(--fsize-36);
	}
	.contents-wrap h3::before {
		content: none;
	}
	.contents-wrap h4 {
		font-size: var(--fsize-24);
	}
	.contents-wrap h5 {
		font-size: var(--fsize-20);
	}
	.contents-wrap .btn a {
		font-size: var(--fsize-18);
	}
}

/* company-archive
-----------------------------------------------*/
#company .archive {
	font-size: var(--fsize-20);
	line-height: 2;
}
#company .archive-lists {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 40px 2.5%;
	margin-block-start: 60px;
}
#company .archive-lists a {
	display: block;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-20);
	color: #333;
	transition: all .5s ease;
}
#company .archive-lists figure {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
#company .archive-lists a figure img {
	transition: all .5s ease;
}
#company .archive-lists a:hover figure img {
	transform: scale(1.1);
}
#company .archive-lists a:hover {
	color: var(--color-blue);
}
#company .contents-wrap th {
	width: 22%;
}

@media screen and (max-width: 1100px) {
	#company .archive-lists {
		grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
		gap: 30px 2%;
	}
	#company .contents-wrap th {
		width: 30%;
	}
}

@media screen and (max-width: 700px) {
	#company .archive-lists {
		gap: 20px 2%;
	}
	#company .contents-wrap th {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#company .archive {
		font-size: var(--fsize-18);
	}
	#company .archive-lists a {
		font-size: var(--fsize-18);
	}
}

/* founder history greeting　overview factory
-----------------------------------------------*/
#founder .img-wrap {
	display: flex;
	justify-content: space-between;
	gap: 6%;
}

#greeting.contents-wrap {
	font-family: var(--font-YuGo);
	font-weight: 500;
	font-size: var(--fsize-20);
	line-height: 2;
}
#greeting .flex {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 6.625vw;
}
#greeting figcaption {
	font-weight: 700;
	text-align: right;
}
#family-history.contents-wrap {
	font-size: var(--fsize-20);
	line-height: 2;
}
#family-history figure {
	text-align: center;
}
.office {
	margin-bottom: 60px;
}
.gmap {
	width: 100%;
	margin-block-end: 50px;
}
.gmap iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 12 / 5;
}
#factory figure {
	text-align: center;
	margin-block-end: 60px;
}
.to-detail {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	aspect-ratio: 4 / 1;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #FFF;
	padding-inline: 3%;
}
.to-detail::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}
.to-detail .btn {
	max-width: 350px;
	width: 100%;
	height: 58px;
}
.to-detail .btn a {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-22);
	line-height: 1;
	color: #FFF;
	border: 1px solid #FFF;
	border-radius: 30px;
}
.group .flex {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 5%;
	margin-block-end: 50px;
}
.group figure {
	text-align: center;
}
@media screen and (max-width: 1100px) {
	.to-detail {
		aspect-ratio: 2 / 1;
	}
}
@media screen and (max-width: 700px) {
	#founder .img-wrap {
		display: block;
	}
	#greeting .flex {
		grid-template-columns: 1fr;
	}
	#greeting figure {
		text-align: center;
	}
	#greeting figure figcaption {
		text-align: center;
	}
	.gmap iframe {
		aspect-ratio: 4 / 3;
	}
	.group .flex {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 480px) {
	#greeting.contents-wrap,
	#family-history.contents-wrap {
		font-size: var(--fsize-18);
	}
	.gmap iframe {
		aspect-ratio: 1 / 1;
	}
	.to-detail .btn a {
		font-size: var(--fsize-20);
	}
}

/* castings
-----------------------------------------------*/
#castings .fv {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: calc( 100dvh - 125px );
	padding: 0 4.3vw;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#castings .fv h2 {
	font-size: var(--fsize-45);
	color: var(--color-blue);
	margin-block-end: 1em;
}
#castings .fv h2 em {
	display: block;
	font-family: var(--font-en);
	font-size: var(--fsize-60);
}
#castings .fv ul {
	max-width: 315px;
	width: 100%;
	background-color: #FFF;
}
#castings .fv li {
	width: 100%;
	padding: .5em 1em;
}
#castings .message {
	font-weight: 700;
	font-size: var(--fsize-28);
	line-height: 2.3;
	text-align: center;
	padding: 50px 4.3vw;
}
#castings .products-wrap,
#castings .others-wrap {
	width: 75vw;
	margin: 0 auto;
	font-family: var(--font-YuGo);
	font-weight: 500;
	font-size: var(--fsize-18);
}
#castings .products-wrap {
	margin-block-end: 50px;
}
#castings .others-wrap {
	margin-block: 120px 80px;
}
#castings .products-wrap {
	background-color: #F2F6FF;
	padding: 2vw 1.5vw;
}
#castings .products-wrap h3 {
	background-color: var(--color-blue);
	color: #FFF;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-26);
	line-height: 1;
	text-align: center;
	padding: 1em;
	margin-block-end: 1.5em;
}
#castings .products-wrap h4 {
	background-color: #4366C0;
	color: #FFF;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-24);
	line-height: 1;
	text-align: center;
	padding: 1em;
	margin-block-end: 1.5em;
}
#castings .products-wrap h5 {
	font-family: var(--font-YuGo);
	font-size: var(--fsize-22);
	line-height: 2;
	text-align: center;
	border-bottom: 5px solid #929397;
	margin-block: 2em 1em;
}
#castings .products-wrap .inner h5:first-of-type {
	margin-block-start: 1em;
}
#castings .products-wrap p {
	font-size: var(--fsize-20);
	text-align: center;
	margin-block-end: 1.5em;
}
#castings .products-wrap .list {
	display: grid;
	grid-template-columns: repeat( 4, 1fr );
	gap: 30px 2.5%;
}
#castings .products-wrap .list2 {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 30px 2.5%;
	margin-block-end: 1em;
}
#castings .products-wrap .list3 {
	display: grid;
	grid-template-columns: repeat( 5, 1fr );
	gap: 30px 2.5%;
	margin-block: 50px 0;
}
#castings .products-wrap figure {
	text-align: center;
}
#castings .products-wrap .inner {
	background-color: #F5F5F5;
	padding: 2vw 1.5vw;
	margin-block: 80px 0;
	box-shadow: inset 0 0 10px rgba(0,0,0,.25);
}
#castings .products-wrap .inner .list {
	margin-inline: 8.4%;
	margin-block-end: 60px;
}
#castings .products-wrap .inner .list:last-of-type {
	margin-block-end: 0;
}
#castings .others-wrap h3 {
	position: relative;
	font-size: var(--fsize-34);
	line-height: 1.6;
	text-align: center;
	padding-block-end: .5em;
	margin-block-end: 1.5em;
}
#castings .others-wrap h3 span {
	display: inline-block;
	background: linear-gradient(to right, #2A4A9D, #4EB6C1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
#castings .others-wrap h3::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	display: block;
	width: 80px;
	height: 5px;
	background-color: #2A4A9D;
}
#castings .others-wrap ol {
	counter-reset: num2;
}
#castings .others-wrap li {
	position: relative;
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 11%;
	padding-inline-start: calc( 80px + 1.8% );
	padding-block: 0 30px;
	border-left: 1px solid #707070;
	border-bottom: 1px solid #707070;
	--bg-color: #305BA3;
}
#castings .others-wrap li::before {
	counter-increment: num2;
	content: counter(num2, decimal-leading-zero );
	position: absolute;
	left: 0;
	top: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	aspect-ratio: 1 / 1;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-40);
	line-height: 1;
	color: #FFF;
	background-color: var(--bg-color);
}
#castings dt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 80px;
	font-family: var(--font-base);
	font-size: var(--fsize-30);
	line-height: 1.3;
	margin-bottom: 1em;
}
#castings dt em {
	display: block;
	font-family: var(--font-en);
	font-size: var(--fsize-20);
	color: #858585;
}
#castings dd {
	font-size: var(--fsize-20);
	line-height: 2;
}
#castings ol figure {
	text-align: center;
	margin-block-start: 50px;
}
#castings .others-wrap > figure {
	width: 100%;
	text-align: center;
}
#castings .others-wrap .btn {
	max-width: 264px;
	width: 100%;
	height: 58px;
	margin: 50px auto 0;
}
#castings .others-wrap .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 30px;
	font-weight: 700;
	font-size: var(--fsize-22);
	text-align: center;
	border: 1px solid #707070;
	transition: all .5s ease;
}
#castings .others-wrap .btn a:hover {
	border-color: var(--color-blue);
	background-color: var(--color-blue);
	color: #FFF;
}
@media screen and (max-width: 1100px) {
	#castings .fv {
		min-height: 50dvh;
		height: auto;
		padding-block: 2vh;
	}
	#castings .fv h2 {
		font-size: var(--fsize-40);
	}
	#castings .fv h2 em {
		font-size: var(--fsize-54);
	}
	#castings .message {
		font-size: var(--fsize-24);
	}
	#castings .products-wrap,
	#castings .others-wrap {
		width: 90%;
	}
	#castings .products-wrap .list {
		grid-template-columns: repeat( auto-fit, minmax(300px,1fr) );
	}
	#castings .products-wrap .list2 {
		grid-template-columns: repeat( auto-fit, minmax(260px,1fr) );
	}
	#castings .products-wrap .list3 {
		grid-template-columns: repeat( auto-fit, minmax(200px,1fr) );
	}
	#castings .products-wrap h3 {
		font-size: var(--fsize-24);
	}
	#castings .products-wrap h4 {
		font-size: var(--fsize-22);
	}
	#castings .products-wrap h5 {
		font-size: var(--fsize-20);
	}
	#castings .products-wrap p {
		font-size: var(--fsize-18);
	}
	#castings .others-wrap h3 {
		font-size: var(--fsize-28);
	}
}
@media screen and (max-width: 800px) {
	#castings .products-wrap .list {
		grid-template-columns: repeat( auto-fit, minmax(260px,1fr) );
	}
	#castings .others-wrap li {
		grid-template-columns: 1fr;
		gap: 30px 0;
		padding-inline-start: calc( 70px + 1.8% );
	}
	#castings dt {
		min-height: 70px;
		font-size: var(--fsize-26);
	}
	#castings dt em {
		font-size: var(--fsize-18);
	}
	#castings .others-wrap li::before {
		width: 70px;
		font-size: var(--fsize-34);
	}
	#castings ol figure {
		margin: 0;
	}
}
@media screen and (max-width: 700px) {
}
@media screen and (max-width: 480px) {
	#castings .fv {
		padding: 3vh 3%;
	}
	#castings .fv h2 {
		font-size: var(--fsize-34);
	}
	#castings .fv h2 em {
		font-size: var(--fsize-40);
	}
	#castings .fv ul {
		max-width: unset;
		width: 50vw;
	}
	#castings .message {
		font-size: var(--fsize-20);
	}
	#castings .products-wrap,
	#castings .others-wrap {
		width: 94%;
		font-size: 1rem;
	}
	#castings .products-wrap h3 {
		font-size: var(--fsize-22);
	}
	#castings .products-wrap h4 {
		font-size: var(--fsize-20);
	}
	#castings .products-wrap h5 {
		font-size: var(--fsize-18);
	}
	#castings .products-wrap p {
		font-size: 1rem;
	}
	#castings .others-wrap h3 {
		font-size: var(--fsize-24);
	}
	#castings .others-wrap li {
		padding-inline-start: 2%;
	}
	#castings .others-wrap li dt {
		padding-inline-start: calc( 70px );
	}
}

/* products
-----------------------------------------------*/
#products .archive > p {
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-28);
	line-height: 2.4;
	margin-block-end: 0;
}
#products .contents-wrap {
	margin-block-start: 80px;
}
.products-menu {
	width: 75vw;
	margin: 0 auto 80px;
	background-color: #F5F5F5;
	padding: 50px 4.5vw;
}
.products-menu h3 {
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-34);
	margin-block-start: 2em;
	margin-block-end: 1em;
}
.products-menu h3 span {
	color: var(--color-blue);
}
.products-menu h3:first-of-type {
	margin-block-start: 0;
}
#products .cateogory {
	font-size: var(--fsize-20);
	line-height: 2;
}
.gallery {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 30px 2.5%;
	margin-block-end: 80px;
	font-weight: 700;
}

.gallery.sec_column {
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	gap: 30px 2.5%;
	margin-block-end: 80px;
	font-weight: 700;
}

#products .archive-lists {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 30px 2.5%;
	margin-block: 80px;
	font-weight: 700;
}
#products .archive-lists li {
	width:100%;
	text-align:center;
}
#products .archive-lists a {
	color: #333;
	text-align:center;
}
#products .archive-lists a:hover {
	color: var(--color-blue);
}
#products .archive-lists a figure {
	overflow: hidden;
}
#products .archive-lists a figure img {
	transition: all .5s ease;
	height:300px;
	max-height:300px;
	margin-bottom:20px;
}
#products .archive-lists a:hover figure img {
	transform: all .5s ease;
}
#products #title h3 {
	margin-bottom: 0;
}
#products .cat {
	display: inline-block;
	margin: 1em 0 .5em;
	font-size: 1rem;
	line-height: 1;
}
#products .cat li {
	display: inline-block;
	background-color: var(--color-blue);
	color: #FFF;
	padding: .3em .5em;
	margin-inline-end: .5em;
	margin-block-end: .5em;
}
#products .cat li:last-child {
	margin-block-end: 0;
}
#products .cat li::marker {
	content: '';
} 
#products .model {
	font-size: var(--fsize-20);
}
#products .lead {
	font-size: var(--fsize-30);
	text-align: left;
	margin-block-start: 60px;
}
#features .flex {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px 6.6%;
}
#features .slidearea {
	width: 50%;
	text-align: center;
}
#features .txt-wrap {
	width: 43.4%;
}
.youtube iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}
#spec th {
	padding: .5em 1em;
	border: 1px solid #707070;
	background-color: #F2F6FF;
}
#spec td {
	padding: .5em 1em;
	border: 1px solid #707070;
}

@media screen and (max-width: 1100px) {
	#products .archive > p {
		font-size: var(--fsize-24);
	}
	#products .archive > p br {
		display: none;
	}
	.products-menu {
		width: 90%;
	}
	.products-menu h3 {
		font-size: var(--fsize-30);
	}
	.gallery,
	#products .archive-lists {
		grid-template-columns: repeat( auto-fit, minmax(260px, 1fr) );
	}
	#products .lead {
		font-size: var(--fsize-26);
	}
}
@media screen and (max-width: 800px) {
	#products .archive > p {
		font-size: var(--fsize-22);
	}
}
@media screen and (max-width: 700px) {
	.gallery,
	#products .archive-lists {
		gap: 20px 2.5%;
	}
	#features .flex {
		flex-direction: row;
	}
	#features .slidearea {
		width: 100%;
	}
	#features .txt-wrap {
		width: 100%;
	}
	#spec th,
	#spec td {
		display: table-cell;
		width: auto;
	}
}
@media screen and (max-width: 480px) {
	#products .archive > p {
		font-size: var(--fsize-20);
	}
	.products-menu {
		width: 94%;
		padding: 30px 4.5vw;
	}
	.products-menu h3 {
		font-size: var(--fsize-24);
	}
	#products .cateogory {
		font-size: var(--fsize-18);
	}
	.gallery {
		margin-block-end: 60px;
	}
	#products .archive-lists {
		margin-block: 60px;
	}
	#products .lead {
		font-size: var(--fsize-22);
	}
}

/* business-archive
-----------------------------------------------*/
#business .archive {
	font-size: var(--fsize-20);
	line-height: 2;
	margin-block-start: 80px;
}
#business .archive-lists {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 40px 2.5%;
	margin-block-start: 60px;
}
#business .archive-lists a {
	display: block;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-20);
	color: #333;
	transition: all .5s ease;
}
#business .archive-lists figure {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
#business .archive-lists a figure img {
	transition: all .5s ease;
}
#business .archive-lists a:hover figure img {
	transform: scale(1.1);
}
#business .archive-lists a:hover {
	color: var(--color-blue);
}
#business .contents-wrap th {
	width: 22%;
}

@media screen and (max-width: 1100px) {
	#business .archive-lists {
		grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
		gap: 30px 2%;
	}
	#business .contents-wrap th {
		width: 30%;
	}
}

@media screen and (max-width: 700px) {
	#business .archive-lists {
		gap: 20px 2%;
	}
	#business .contents-wrap th {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#business .archive {
		font-size: var(--fsize-18);
	}
	#business .archive-lists a {
		font-size: var(--fsize-18);
	}
}

/* business department
-----------------------------------------------*/
.department-wrap {
	color: #FFF;
	padding: 70px 0;
}
.department-wrap .inner {
	width: 75vw;
	margin: 0 auto;
	font-family: var(--font-YuGo);
	font-weight: 500;
	font-size: var(--fsize-20);
}
.department-wrap h3 {
	position: relative;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-46);
	margin-bottom: 1em;
}
.department-wrap h4 {
	font-size: var(--fsize-24);
	margin-bottom: 1.5em;
}
.department-wrap h3::before {
	content: '';
	position: absolute;
	left: -12.5vw;
	top: 50%;
	display: block;
	width: 11vw;
	height: 1px;
	background-color: #FFF;
}
.department-wrap .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.department-wrap .txt-wrap {
	width: 46.6%;
}
.department-wrap figure {
	width: 42%;
	text-align: center;
}
#business .detail-wrap {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 5;
	color: #FFF;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#business .detail-wrap::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.7);
}
#business .detail-wrap .btn {
	position: relative;
	z-index: 1;
	width: 350px;
	height: 58px;
}
#business .detail-wrap .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	color: #FFF;
	border: 1px solid #FFF;
	border-radius: 30px;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-22);
	line-height: 1;
	transition: all .5s ease;
}
#business .detail-wrap .btn a:hover {
	background-color: #FFF;
	color: #333;
}

#business #main-wrap {
	margin-block-start: 80px;
}
#business #main-wrap > figure {
	margin-block-end: 50px;
}
#business #main-wrap .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#business #main-wrap .txt-wrap {
	width: 53%;
}
#business #main-wrap .flex figure {
	width: 42%;
}
#business .contents-wrap.detail {
	font-size: var(--fsize-20);
	line-height: 2;
}
#business .contents-wrap.detail p {
	line-height: 2;
}

@media screen and (max-width: 1100px) {
	.department-wrap .inner {
		width: 90%;
	}
	.department-wrap h3 {
		font-size: var(--fsize-40);
	}
	.department-wrap h4 {
		font-size: var(--fsize-22);
	}
	.department-wrap .txt-wrap {
		width: 50%;
	}
}

@media screen and (max-width: 700px) {
	.department-wrap .txt-wrap,
	.department-wrap figure {
		width: 100%;
	}
	.department-wrap .txt-wrap {
		margin-block-end: 30px;
	}
	#business .detail-wrap {
		aspect-ratio: 2 / 1;
	}
	#business #main-wrap .txt-wrap {
		width: 100%;
	}
	#business #main-wrap .flex figure {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	.department-wrap {
		padding-block: 50px;
	}
	.department-wrap .inner {
		width: 94%;
	}
	.department-wrap h3 {
		font-size: var(--fsize-36);
	}
	.department-wrap h3::before {
		content: none;
	}
	.department-wrap h4 {
		font-size: var(--fsize-20);
	}
	.department-wrap .inner {
		font-size: var(--fsize-18);
	}
	#business .detail-wrap {
		aspect-ratio: 3 / 2;
	}
	#business .detail-wrap .btn a {
		font-size: var(--fsize-20);
	}
	#business .contents-wrap.detail {
		font-size: var(--fsize-18);
		line-height: 2;
	}
}

/* faq
--------------------------------------------------*/
#faq-wrap {
	display: flex;
	justify-content: space-between;
}
#faq-wrap nav {
	width: 25%;
	/* margin-block-start: calc( 80px + ( var(--fsize-34) / 2 ) ); */
	padding-block-start: calc( 80px + ( var(--fsize-34) / 2 ) );
}
#faq-wrap nav ul {
	position: -webkit-sticky;
	position: sticky;
	top: calc( 96px + ( var(--fsize-34) / 2 ) );
	border-top: 1px solid #707070;
}
#faq-wrap nav li {
	border-bottom: 1px solid #707070;
}
#faq-wrap nav li a {
	position: relative;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-22);
	line-height: 1;
	display: block;
	padding: 2em 1.5vw 2em 2.5vw;
}
#faq-wrap nav li a.is-active {
	background-color: #F2F7FD;
}
#faq-wrap nav li a.is-active::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 10px;
	height: 100%;
	background-color: var(--color-blue);
}
#faq article {
	width: 75%;
	padding: 80px 6.25vw 0;
	background-color: #F5F5F5;
}
#faq .cat-wrap {
	position: relative;
	padding-block-end: 80px;
}
#faq .cat-wrap h3 {
	position: relative;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-34);
	line-height: 1;
	margin-block-end: 1em;
	color: var(--color-blue);
}
#faq .cat-wrap h3::before {
	content: '';
	position: absolute;
	left: -6.25vw;
	top: 50%;
	display: block;
	width: 5.25vw;
	height: 2px;
	background-color: var(--color-blue);
}
#faq details {
	background-color: #FFF;
	padding: 2.5vw;
	font-weight: 700;
	font-size: var(--fsize-18);
	line-height: 1.8;
	margin-block-end: 50px;
}
#faq .cat-wrap details:last-of-type {
	margin-block-end: 0;
}
#faq summary {
	position: relative;
	padding-inline: 2em;
}
#faq summary::marker {
	content: none;
}
#faq summary::before {
	content: 'Q';
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-34);
	line-height: 1.3;
	position: absolute;
	left: 0;
	top: 0;
	color: var(--color-blue);
}
#faq summary::after {
	content: '\f107';
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: var(--fsize-18);
	color: var(--color-blue);
	position: absolute;
	right: 0;
	top: .3em;
	transition: all .5s ease;
}
#faq summary:hover {
	color: var(--color-blue);
	cursor: pointer;
}
#faq details[open] summary::after {
	transform: rotate(180deg);
}
#faq .answer {
	position: relative;
	width: calc( 100% - 4.5em );
	margin-block-start: 2.5em;
	margin-inline-start: 1.5em;
	padding: 2.5vw 2.5vw 2.5vw calc( 2.5vw + 2em );
	background-color: #F2F6FF;
}
#faq .answer::before {
	content: 'A';
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-34);
	line-height: 1.3;
	position: absolute;
	left: 2.5vw;
	top: 2.5vw;
	color: var(--color-blue);
}
@media screen and (max-width: 1100px) {
	#faq-wrap nav {
		padding-block-start: calc( 80px + ( var(--fsize-28) / 2 ) );
	}
	#faq-wrap nav ul {
		top: calc( 70px + ( var(--fsize-28) / 2 ) );
	}
	#faq-wrap nav li a {
		font-size: var(--fsize-20);
	}
	#faq-wrap nav li.active a::before {
		width: 8px;
	}
	#faq .cat-wrap h3 {
		font-size: var(--fsize-28);
	}
	#faq article {
		padding: 80px 3.125vw 0;
	}
	#faq .cat-wrap h3::before {
		left: -3.125vw;
		width: 2.625vw;
	}
	#faq .answer {
		width: calc( 100% - 3.5em );
	}
}
@media screen and (max-width: 800px) {
	#faq-wrap {
		flex-wrap: wrap;
	}
	#faq-wrap nav {
		position: static;
		width: 100%;
		padding: 0 3.125vw;
		background-color: #FFF;
	}
	#faq-wrap nav ul {
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		position: static;
		top: unset;
		border-top: unset;
		padding: 1em 0;
	}
	#faq-wrap nav li {
		display: inline-block;
		border-bottom: unset;
		width: 49%;
	}
	#faq-wrap nav li a {
		font-size: var(--fsize-18);
		padding: 1em 1.5vw 1em calc( 1.5vw + .5em );
	}
	#faq-wrap nav li a.is-active {
		background-color: unset;
	}
	#faq-wrap nav li a::before {
		content: '\f107';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		color: var(--color-blue);
		display: block;
		width: 1em;
		height: 1em;
		background-color: unset;
	}
	#faq-wrap nav li a.is-active::before {
		content: '\f107';
		font-family: 'Font Awesome 6 Free';
		font-weight: 900;
		position: absolute;
		left: 0;
		top: 50%;
		transform: translateY(-50%);
		color: var(--color-blue);
		display: block;
		width: 1em;
		height: 1em;
		background-color: unset;
	}
	#faq-wrap article {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#faq-wrap nav {
		padding-inline: 3%;
	}
	#faq-wrap nav li {
		width: 100%;
	}
	#faq-wrap nav li a {
		padding: .5em 0 .5em 1.2em;
	}
	#faq .cat-wrap h3::before {
		content: none;
	}
	#faq summary {
		padding-inline: 2em 1.5em;
	}
	#faq .answer {
		width: 100%;
		margin-inline-start: 0;
	}
}

/* recruit
----------------------------------------------*/
#recruit .fv {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: calc( 100dvh - 125px );
}
#recruit .fv .img-wrap {
	position: absolute;
	left: 0;
	top: 0;
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	width: 100%;
	height: 100%;
}
#recruit .fv .img-wrap::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}
#recruit .fv .img-wrap figure {
	height: calc( ( 100dvh - 125px ) / 2 );
}
#recruit .fv .img-wrap figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#recruit .fv h2 {
	position: relative;
	z-index: 1;
	font-family: "Rampart One", sans-serif;
	font-weight: 400;
	font-size: var(--fsize-100);
	color: #FFF;
	border: 1px solid #FFF;
	padding: .5em .75em;
}
#recruit .fv h2 span {
	display: block;
	padding-inline-start: 1em;
}
#recruit .contents-wrap h3 {
	margin-block-end: 1.75em;
}
#message.contents-wrap {
	width: 100%;
	padding-inline-start: 12.5vw;
	margin-block: 80px;
}
#message .flex {
	display: flex;
	justify-content: space-between;
}
#message .txt-wrap {
	width: 47%;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-24);
}
#message .txt-wrap p {
	line-height: 3.3;
}
#message figure {
	width: 50%;
}
#jobs .list {
	counter-reset: num1;
	margin: 0;
}
#jobs .list li {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border: 1px solid #707070;
	padding: 55px 4.5% 55px 5.5%;
	margin-block-end: 120px;
}
#jobs .list li::before {
	counter-increment: num1;
	content: counter(num1, decimal-leading-zero);
	position: absolute;
	left: 40px;
	top: calc( -1 * var(--fsize-34) );
	z-index: 1;
	display: block;
	width: 100px;
	background-color: #FFF;
	color: var(--color-blue);
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-60);
	line-height: 1;
	text-align: center;
}
#jobs .list li:last-child {
	margin-block-end: 0;
}
#jobs dl {
	margin-block-end: 1.5em;
}
#jobs dt {
	font-weight: 700;
	font-size: var(--fsize-30);
	margin-bottom: .5em;
}
#jobs dd {
	font-family: var(--font-YuGo);
	font-size: var(--fsize-20);
}
#jobs .gallery {
	margin-block-end: 0;
}
.rec-footer {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background: linear-gradient(to right, #2A4A9D 5%, #4EB6C1 100%);
}
.rec-footer section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	/*width: 50%;*/
	width: 100%;
	/*aspect-ratio: 2 / 1;*/
	color: #FFF;
	font-family: var(--font-base);
	font-weight: 700;
	font-size: var(--fsize-24);
	text-align: center;
	padding:80px 0 80px 0;
}
.rec-footer section:first-of-type {
	border-right: 1px solid #FFF;
}
.rec-footer .btn {
	margin-block-start: 30px;
	max-width: 300px;
	width: 100%;
	height: 60px;
}
.rec-footer .btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border: 1px solid #FFF;
	border-radius: 30px;
	color: #FFF;
	font-family: var(--font-YuGo);
	font-size: var(--fsize-22);
	transition: all .5s ease;
}
.rec-footer .btn a:hover {
	background-color: #FFF;
	color: #2A4A9D;
}
.rec-footer #entry .btn a:hover {
	background-color: #FFF;
	color: #4EB6C1;
}
@media screen and (max-width: 1400px) {
	.rec-footer section {
		/*aspect-ratio: 3 / 2;*/
		/*padding: 1em;*/
		padding:80px 1em 80px 1em;
		font-size: var(--fsize-22);
	}
}
@media screen and (max-width: 1100px) {
	#recruit .fv {
		height: calc( 100dvh - 70px );
	}
	#recruit .fv .img-wrap figure {
		height: calc( ( 100dvh - 70px ) / 2 );
	}
	#message.contents-wrap {
		padding-inline-start: 5%;
	}
	#message .txt-wrap {
		font-size: var(--fsize-22);
	}
	#message .txt-wrap p {
		line-height: 2.5;
	}
	#recruit .gallery {
		grid-template-columns: repeat( 3, 1fr );
	}
}
@media screen and (max-width: 800px) {
	#recruit .fv h2 {
		font-size: var(--fsize-72);
	}
	#message.contents-wrap {
		padding-inline: 5%;
	} 
	#message .flex {
		flex-wrap: wrap;
	}
	#message .txt-wrap {
		width: 100%;
		margin-block-end: 40px;
	}
	#message figure {
		width: 100%;
	}
	.rec-footer {
		flex-direction: column;
		background: linear-gradient(to bottom, #2A4A9D 5%, #4EB6C1 100%);
	}
	.rec-footer section {
		width: 100%;
		aspect-ratio: 2 / 1;
	}
	.rec-footer section:first-of-type {
		border-right: unset;
		border-bottom: 1px solid #FFF;
	}
}
@media screen and (max-width: 700px) {
	#recruit .fv {
		height: 50vh;
	}
	#recruit .fv .img-wrap figure {
		height: calc( 50vh / 2 );
	}
	#recruit .fv h2 {
		font-size: 10.5vw;
	}
	#jobs .list li {
		margin-block-end: 100px;
	}
	#jobs .list li::before {
		left: 20px;
		top: calc( -1 * var(--fsize-28) );
		width: 80px;
		font-size: var(--fsize-48);
	}
	#recruit .gallery {
		grid-template-columns: 1fr;
	}
}
@media screen and (max-width: 600px) {
	/* #recruit .fv h2 {
		font-size: var(--fsize-54);
	} */
}
@media screen and (max-width: 480px) {
	
	#message.contents-wrap {
		padding-inline: 3%;
	}
	#message .txt-wrap {
		font-size: var(--fsize-20);
	}
	#message .txt-wrap p {
		line-height: 2;
	}
	#jobs .list li {
		padding-block: 45px 40px;
		margin-block-end: 80px;
	}
	#jobs dl {
		margin-block-end: 20px;
	}
	#jobs dd {
		font-size: var(--fsize-18);
	}
	.rec-footer section {
		font-size: var(--fsize-18);
		aspect-ratio: 5 / 4;
		text-align:left;
	}
	.rec-footer .btn a {
		font-size: var(--fsize-20);
	}
}

/* support archive
----------------------------------------------*/
#support .archive {
	font-size: var(--fsize-20);
	line-height: 2;
	margin-block-start: 80px;
}
#support .archive-lists {
	display: grid;
	grid-template-columns: repeat( 3, 1fr );
	gap: 40px 2.5%;
	margin-block-start: 60px;
}
#support .archive-lists a {
	display: block;
	font-family: var(--font-YuGo);
	font-weight: 700;
	font-size: var(--fsize-20);
	color: #333;
	transition: all .5s ease;
}
#support .archive-lists figure {
	width: 100%;
	aspect-ratio: 3 / 2;
	overflow: hidden;
}
#support .archive-lists a figure img {
	transition: all .5s ease;
}
#support .archive-lists a:hover figure img {
	transform: scale(1.1);
}
#support .archive-lists a:hover {
	color: var(--color-blue);
}
#support .contents-wrap th {
	width: 22%;
}

@media screen and (max-width: 1100px) {
	#support .archive-lists {
		grid-template-columns: repeat( auto-fit, minmax(300px, 1fr) );
		gap: 30px 2%;
	}
	#support .contents-wrap th {
		width: 30%;
	}
}

@media screen and (max-width: 700px) {
	#support .archive-lists {
		gap: 20px 2%;
	}
	#support .contents-wrap th {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#support .archive {
		font-size: var(--fsize-18);
	}
	#support .archive-lists a {
		font-size: var(--fsize-18);
	}
}

/* support detail
----------------------------------------------*/
#support #main-wrap {
	margin-block-start: 80px;
}
#support #main-wrap > figure {
	margin-block-end: 50px;
}
#support #main-wrap .flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#support #main-wrap .txt-wrap {
	width: 53%;
}
#support #main-wrap .flex figure {
	width: 42%;
}
#support .contents-wrap.detail {
	font-size: var(--fsize-20);
	line-height: 2;
}
#support .contents-wrap.detail p {
	line-height: 2;
}

/* news
----------------------------------------------*/
#news #page-title {
	margin-block-end: 80px;
}
#news .archive ul {
	margin-inline-start: 0;
}
#news .archive ul li::marker {
	content: none;
}
#news #news_detail_body ul{
	margin-inline-start: 1.25em;
}
#news #news_detail_body ul li::marker {
	content: '■ ';
    color: var(--color-blue);
}

.news-links {
	margin-block-end: 70px;
}
.news-links li {
	display: inline-block;
	margin-inline-end: 2em;
}
.news-links li:last-child {
	margin-inline-end: 0;
}
.news-links a {
	position: relative;
	display: inline-block;
	font-weight: 700;
	color: #333;
}
.news-links .current a::after,
.news-links a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-blue);
	transition: all .5s ease;
}
.news-links a::after {
	opacity: 0;
}
.news-links .current a::after {
	opacity: 1;
}
.news-links a:hover::after {
	opacity: 1;
}
#news .news_content {
	margin-block-end: 60px;
}
#news .news_content li:not(.news_imp) a span {
	color: #333;
}
.pagination ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: .5em;
	font-family: var(--font-en);
	font-weight: 700;
	font-size: var(--fsize-20);
	line-height: 1;
}
.pagination li {
	width: 35px;
	height: 35px;
}
.pagination li .current {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: var(--color-blue);
	color: #FFF;
}
.pagination li a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background-color: #EFEFEF;
	color: var(--color-blue);
	transition: all .5s ease;
}
.pagination li a:hover {
	background-color: var(--color-blue);
	color: #FFF;
}
.pagination li.next a,
.pagination li.prev a {
	background-color: unset;
	font-family: 'Font Awesome 6 free';
	font-weight: 900;
}
.pagination li.next a:hover,
.pagination li.prev a:hover {
	opacity: .8;
	color: var(--color-blue);
}
@media screen and (max-width: 700px) {
	.news-links li {
		margin-inline-end: 1em;
		margin-block-end: 1em;
	}
}
.scroll-hint-icon-wrap{
	height:unset !important;
}
.is-right-scrollable .scroll-hint-icon-wrap{
	height:100% !important;
}