@charset "utf-8";
:root {
	--c-primary: #349cf2;
	--c-l-gray: #ccc;
	--c-bk: #333;
	--c-white: #fff;
	--c-text: #333;
	--c-bg: #f3f6fa;
	--c-gradient: linear-gradient(90deg, rgba(81, 197, 223, 1), rgba(52, 156, 242, 1) 50%, rgba(202, 235, 230, 1));
	--fw-reg: 400;
	--fw-medium: 500;
	--fw-semibold: 600;
	--fw-bold: 700;
	--font-base: "Noto Sans JP", sans-serif;
	--font-poppins: "Poppins", sans-serif;
	--font-all: "Poppins", "Noto Sans JP", sans-serif;
	--transition-base: all ease-in-out 0.33s;
	--transition-img: all ease-in-out 0.4s;
}
/* --- reset --- */
*,
::before,
::after {
	box-sizing: border-box;
	border-width: 0;
	border-style: solid;
}
html {
	font-size: 16px;
	line-height: 1.5;
	tab-size: 4;
	color: var(--c-text);
	font-family: var(--font-base);
	font-feature-settings: normal;
	font-variation-settings: normal;
	letter-spacing: 0;
	font-weight: var(--fw-medium);
	scroll-behavior: smooth;
	background-color: var(--c-bg);
}

body {
	margin: 0;
	line-height: inherit;
}

hr {
	height: 0;
	color: inherit;
	border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	font-weight: inherit;
}

a {
	color: inherit;
	text-decoration: inherit;
	user-select: none;
}
label {
	user-select: none;
}

b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

table {
	text-indent: 0;
	border-color: inherit;
	border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
	padding: 0;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	background-color: transparent;
	background-image: none;
}

:-moz-focusring {
	outline: auto;
}

:-moz-ui-invalid {
	box-shadow: none;
}

th,
td {
	width: 41%;
	text-align: left;
	font-weight: inherit;
}
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
	margin: 0;
}
h3{
	color: #349CF2;
	font-size: 24px;
	font-weight: 600;
}

fieldset {
	margin: 0;
	padding: 0;
}

legend {
	padding: 0;
}

ol,
ul,
menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

textarea {
	resize: vertical;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
	opacity: 1;
	color: var(--c-dark);
}

input::placeholder,
textarea::placeholder {
	opacity: 1;
	color: var(--c-dark);
}

button,
[role="button"] {
	cursor: pointer;
}

:disabled {
	cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display: block;
	vertical-align: middle;
}

img,
video {
	max-width: 100%;
	height: auto;
}
[x-cloak] {
	display: none !important;
}
.not-scroll {
	touch-action: none;
	overflow: hidden;
}
.no-scroll-bar::-webkit-scrollbar {
	display: none;
}
::-webkit-scrollbar {
	width: 5px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: rgba(197, 197, 197, 0.55);
	border-radius: 5px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

::-webkit-scrollbar-track {
	border-radius: 10px;
	box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
}

br.sp {
	display: none;
}
@media screen and (max-width: 768px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------------------------------------------------------------
common layout
---------------------------------------------------------------*/
main {
	padding-top: 110px;
	margin-bottom: 140px;
}
#front_page main {
	margin-bottom: 0px;
}
@media screen and (max-width: 999px) {
	main {
		padding-top: 80px;
		margin-bottom: 145px;
	}
}

.sec-inner {
	width: 100%;
	max-width: 1780px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

.sec-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 30px;
}

.sec-cont-flex {
	width: 100%;
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.btn-box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}
.btn-box-right {
	width: 100%;
	display: flex;
	justify-content: flex-end;
}
.btn-box-between {
	width: 100%;
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 999px) {
	.sec-cont-flex {
		flex-flow: column;
		gap: 20px;
	}
}

/* ------------------------------------------------------------
title heading
---------------------------------------------------------------*/
.ttb-flex {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.ttl-box {
	display: flex;
	gap: 16px;
	position: relative;
}
.ttl-box.ttb-column {
	flex-flow: column;
}
.ttl-box.ttb-center {
	align-items: center;
}
.ttl-box.ttb-baseline {
	align-items: baseline;
}
.ttl-box.ttb-primary {
	color: var(--c-primary);
}
.ttl-box.ttb-white {
	color: var(--c-white);
}

.ttl-box.ttb-underline {
	padding-bottom: 30px;
}
.ttl-box.ttb-underline::after {
	content: "";
	width: 30px;
	height: 2px;
	background: var(--c-primary);
	position: absolute;
	bottom: 0;
	left: 0;
}

.ttl-box > .--en {
	font-family: var(--font-poppins);
	letter-spacing: -0.05em;
}

.ttl-box h2 {
	font-size: 40px;
	line-height: 1.8;
}
.ttl-box h2.--en {
	font-size: 60px;
	line-height: 1;
	font-weight: var(--fw-reg);
}

.ttl-box h3 {
	font-size: 30px;
}

.ttl-box h4 {
	font-size: 24px;
}
.ttl-box h5 {
	font-size: 18px;
}
.ttl-box h6 {
	font-size: 16px;
}
.ttl-box > span {
	font-size: 16px;
	line-height: 1;
}
.sec-lower-heading .ttl-box > span {
	color: var(--c-text);
}

.txt-underline {
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media screen and (max-width: 1300px) {
	.ttl-box h2.--en {
		font-size: 40px;
	}
}

@media screen and (max-width: 999px) {
	.ttl-box h2 {
		font-size: 30px;
	}
	#front_page .ttl-box h2.--en {
		font-size: 30px;
	}
	.ttl-box.ttb-underline {
		padding-bottom: 20px;
	}
}

/* ------------------------------------------------------------
Text
---------------------------------------------------------------*/
.c-txt {
	font-size: 16px;
	line-height: 1.8;
	font-weight: var(--fw-reg);
}
/* ------------------------------------------------------------
link
---------------------------------------------------------------*/
.arrow-link {
	color: var(--c-primary);
	transition: all ease 0.33s;
	display: flex;
	align-items: center;
	padding-bottom: 8px;
	border-bottom: 1px solid var(--c-primary);
	font-size: 13px;
	gap: 10px;
	line-height: 1;
}
.arrow-link::after {
	content: "";
	position: relative;
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-up-right-bl.svg");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
}
.arrow-link:hover {
	opacity: 0.6;
}
/* ------------------------------------------------------------
Button
---------------------------------------------------------------*/
/* more button */
.btn-more {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 60px;
	background: transparent;
	border: 1px solid var(--c-primary);
	border-radius: 999px;
	padding: 20px;
	overflow: hidden;
	position: relative;
	transition: var(--transition-base);
}

.btn-more.btn-more-white {
	border: 1px solid var(--c-white);
}
.btn-more:hover {
	border: 1px solid var(--c-primary);
	background: var(--c-primary);
}
.btn-more .btn-txt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 13px;
	color: var(--c-primary);
	position: relative;
	z-index: 10;
}
.btn-more.btn-more-white .btn-txt {
	color: var(--c-white);
}
.btn-more:hover .btn-txt {
	color: var(--c-white);
}
.btn-more .btn-txt::after {
	content: "";
	position: relative;
	width: 10px;
	height: auto;
	display: flex;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-up-right-bl.svg");
	background-size: contain;
	background-repeat: no-repeat;
	z-index: 10;
}
.btn-more.btn-more-white .btn-txt::after {
	background-image: url("../images/common/icon-arrow-up-right-wh.svg");
}
.btn-more:hover .btn-txt::after {
	background-image: url("../images/common/icon-arrow-up-right-wh.svg");
}

/* top button */
.btn-to-top {
	position: fixed;
	bottom: 13px;
	right: 10px;
	width: 56px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-primary);
	border: 1px solid var(--c-primary);
	color: var(--c-white);
	cursor: pointer;
	border-radius: 5px;
	z-index: 9998;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap: 5px;
	font-size: 12px;
	transition: var(--transition-base);
	opacity: 0;
	pointer-events: none;
}
.btn-to-top.active {
	opacity: 1;
	pointer-events: all;
}

.btn-to-top .icon-arrow-wrapper {
	width: 24px;
	height: auto;
	aspect-ratio: 24 / 14;
	overflow: hidden;
}

.btn-to-top .icon-arrow {
	display: flex;
	width: 24px;
	height: auto;
	aspect-ratio: 24 / 14;
	background-image: url("../images/common/icon-chevron-up-wh-xl.svg");
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 1;
	transition: var(--transition-base);
}
.btn-to-top:hover {
	background: var(--c-white);
	color: var(--c-primary);
}
.btn-to-top:hover .icon-arrow {
	background-image: url("../images/common/icon-chevron-up-bl-xl.svg");
}

.btn-to-top.is-not-fixed {
	position: absolute !important;
	bottom: auto;
	top: -30px;
}

@media screen and (max-width: 999px) {
	.btn-to-top {
		display: none;
	}
}

/* ------------------------------------------------------------
Table
---------------------------------------------------------------*/
.tbl-container {
	width: 100%;
	position: relative;
	overflow: hidden;
	background: var(--c-bg);
	padding: 30px 50px;
	border-radius: 10px;
}
.c-table {
	width: 100%;
}
.c-table th,
.c-table td {
	font-size: 16px;
	font-weight: var(--fw-reg);
	padding: 20px;
	border-bottom: 1px solid var(--c-l-gray);
}
.c-table tr:last-of-type th,
.c-table tr:last-of-type td {
	border-bottom: none;
}

/* ------------------------------------------------------------
Accordion
---------------------------------------------------------------*/

.c-acc-list {
	width: 100%;
	position: relative;
	display: flex;
	flex-flow: column;
	gap: 15px;
}

.c-acc-box {
	width: 100%;
	position: relative;
	border: 1px solid var(--c-l-gray);
	background: var(--c-white);
	border-radius: 5px;
	overflow: hidden;
}

.c-acc-box .acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	padding: 20px;
	padding-right: 70px;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	color: #113692;
}
.c-acc-box.c-acc-faq .acc-btn {
	padding: 15px 65px;
	font-size: 17px;
}

.c-acc-box .acc-btn::after {
	content: "";
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	position: absolute;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-plus-circle.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
}
.c-acc-box.is-open .acc-btn::after {
	background-image: url(../images/common/icon-minus-circle.svg);
}

.c-acc-box.c-acc-faq .acc-btn::before {
	content: "";
	width: 27px;
	height: auto;
	aspect-ratio: 27 / 24;
	position: absolute;
	left: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-q.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
}

.c-acc-box .acc-panel-inner {
	width: 100%;
	padding: 20px;
	padding-top: 0;
}
.c-acc-box.c-acc-faq .acc-panel-inner {
	padding-top: 20px;
	padding-left: 65px;
	background-image: linear-gradient(to right, var(--c-l-gray) 5px, transparent 5px);
	background-size: 10px 1px;
	background-repeat: repeat-x;
	background-position: left top;
	position: relative;
}
.c-acc-box.c-acc-faq .acc-panel-inner::before {
	content: "";
	width: 27px;
	height: auto;
	aspect-ratio: 27 / 22;
	position: absolute;
	left: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-a.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
}

@media screen and (max-width: 999px) {
	.c-acc-list {
		gap: 10px;
	}

	.c-acc-box .acc-btn {
		padding: 15px;
		font-size: 16px;
		padding-right: 55px;
	}
	.c-acc-box.c-acc-faq .acc-btn {
		padding: 15px 55px;
		font-size: 16px;
	}

	.c-acc-box .acc-btn::after {
		width: 30px;
		right: 15px;
	}

	.c-acc-box.c-acc-faq .acc-btn::before {
		width: 22px;
		aspect-ratio: 22 / 19;
		left: 15px;
		top: 20px;
	}

	.c-acc-box .acc-panel-inner {
		padding: 15px;
	}
	.c-acc-box.c-acc-faq .acc-panel-inner {
		padding-top: 15px;
		padding-left: 55px;
	}
	.c-acc-box.c-acc-faq .acc-panel-inner::before {
		width: 22px;
		aspect-ratio: 22 / 18;
		top: 20px;
		left: 15px;
	}
}
/* ------------------------------------------------------------
Slider common
---------------------------------------------------------------*/
.c-slider {
	width: 100%;
	height: auto;
}

.slide-media img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide-media {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.slide-btn-rect {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--c-white);
	border-radius: 3px;
	width: 30px;
	height: auto;
	aspect-ratio: 3 / 8;
	z-index: 20;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all ease-in-out 0.4s;
}

.slide-btn-rect .icon-chevron {
	display: flex;
	width: 7px;
	height: auto;
	aspect-ratio: 7 / 12;
	background-size: contain;
	background-repeat: no-repeat;
	transform: translateX(0);
	opacity: 1;
	transition: all ease 0.5s 0.05s;
	position: absolute;
	z-index: 30;
}

.slide-btn-prev {
	left: -10px;
}
.slide-btn-rect.slide-btn-prev .icon-chevron {
	background-image: url("../images/common/icon-chevron-right-bl.svg");
	transform: rotate(180deg);
}
.slide-btn-next {
	right: -10px;
}
.slide-btn-rect.slide-btn-next .icon-chevron {
	background-image: url("../images/common/icon-chevron-right-bl.svg");
}

.slide-btn-rect:hover {
	background: var(--c-primary);
}
.slide-btn-rect.slide-btn-prev:hover .icon-chevron {
	background-image: url("../images/common/icon-chevron-right-wh.svg");
}
.slide-btn-rect.slide-btn-next:hover .icon-chevron {
	background-image: url("../images/common/icon-chevron-right-wh.svg");
}

@media screen and (max-width: 999px) {
	.slide-media img {
		height: initial;
		border-radius: 5px;
	}
	.slide-btn-rect {
		width: 30px;
		border-radius: 3px;
	}
	.slide-btn-rect .icon-chevron {
		width: 5px;
	}
	.slide-btn-prev {
		left: -5px;
	}
	.slide-btn-next {
		right: -5px;
	}
}

.slide-pagination {
	display: flex;
	gap: 15px;
	align-items: center;
	overflow: hidden;
	justify-content: center;
}
.slide-pagination > span {
	display: block;
	width: 15px;
	height: auto;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	border-radius: 999px;
	background: var(--c-white);
	cursor: pointer;
	transition: all ease-in-out 0.4s;
	opacity: 1 !important;
}
.slide-pagination > span.swiper-pagination-bullet-active {
	background: var(--c-primary);
}

@media screen and (max-width: 768px) {
	.slide-pagination {
		gap: 10px;
	}
	.slide-pagination > span {
		width: 10px;
	}
}

/* ------------------------------------------------------------
list
---------------------------------------------------------------*/

ul.list {
	display: flex;
	flex-flow: column;
	gap: 10px;
}
ul.list > li {
	font-size: 14px;
	line-height: 1.8;
	position: relative;
	padding-left: 13px;
}
ul.list > li::before {
	content: "";
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-color: var(--c-primary);
	border-radius: 999px;
	position: absolute;
	top: 9px;
	left: 0;
}

/* ------------------------------------------------------------
card
---------------------------------------------------------------*/

/* card-news-list-row */
.news-list-row {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-start;
	position: relative;
}
.card-news-list-row {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 30px;
	padding: 20px;
	transition: all ease-in-out 0.33s;
	border-bottom: 1px solid var(--c-l-gray);
	overflow: hidden;
	position: relative;
}

.card-news-list-row:first-of-type {
	border-top: 1px solid var(--c-l-gray);
}
.card-news-list-row > div {
	display: flex;
	gap: 30px;
	align-items: center;
	flex-shrink: 0;
	position: relative;
	z-index: 10;
}
.card-news-list-row > h3 {
	font-size: 16px;
	line-height: 1.8;
	width: 100%;
	z-index: 10;
	font-weight: var(--fw-semibold);
	transition: var(--transition-base);
}
.card-news-list-row:hover > h3 {
	color: var(--c-primary);
}
.news-date {
	font-size: 16px;
	color: var(--c-primary);
	font-weight: var(--fw-semibold);
}
.post-cat {
	font-size: 16px;
	color: var(--c-primary);
	position: relative;
	padding-left: 13px;
}
.post-cat::before {
	content: "";
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-color: var(--c-primary);
	border-radius: 999px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
}

@media screen and (max-width: 999px) {
	.card-news-list-row {
		gap: 5px;
		padding: 20px 10px;
		flex-flow: column;
		align-items: flex-start;
	}
	.card-news-list-row > div {
		gap: 15px;
	}
}

/* card support menu */
.support-menu-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.card-support-menu {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: center;
	background: var(--c-white);
	border: 1px solid var(--c-white);
	border-radius: 5px;
	padding: 10px;
	padding-right: 40px;
	overflow: hidden;
	gap: 15px;
	position: relative;
	transition: var(--transition-base);
}
.card-support-menu:hover {
	border: 1px solid var(--c-primary);
}
.support-menu-grid .card-support-menu {
	background: var(--c-bg);
}
.card-support-menu::after {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url(../images/common/icon-arrow-up-right-bl.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.card-support-menu > figure {
	width: 21%;
	max-width: 80px;
	min-width: 60px;
	background: var(--c-primary);
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
}
.support-menu-grid .card-support-menu > figure {
	width: 80px;
}
.card-support-menu > figure > img {
	width: 100%;
	height: 100%;
	max-width: 50%;
	max-height: 50%;
	object-fit: contain;
}
.card-support-menu > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 5px;
	transition: var(--transition-base);
}
.card-support-menu:hover > div {
	color: var(--c-primary);
}
.card-support-menu > div > h3 {
	width: 100%;
	font-size: 16px;
	font-weight: var(--fw-bold);
	line-height: 1;
	white-space: nowrap;
}
.card-support-menu > div > p {
	width: 100%;
	font-size: 13px;
	line-height: 1.5;
	white-space: nowrap;
}

@media screen and (max-width: 1300px) {
	.support-menu-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
}
@media screen and (max-width: 999px) {
	.support-menu-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}
/* ------------------------------------------------------------
lower common
---------------------------------------------------------------*/

/* lower heading */
.sec-lower-heading {
	width: 100%;
	margin: 0 auto;
	padding: 0 80px;
	padding-top: 30px;
	position: relative;
	margin-bottom: 50px;
}
.lower-heading-flex {
	width: 100%;
	padding: 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 0;
}

@media screen and (max-width: 999px) {
	.sec-lower-heading {
		padding: 0 40px;
		padding-top: 40px;
	}
	.lower-heading-flex {
		padding: 0;
		gap: 20px;
		flex-flow: column;
		align-items: stretch;
	}
}

/* ------------------------------------------------------------
breadcrumbs
---------------------------------------------------------------*/
.breadcrumbs-box {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 0 50px;
}
.breadcrumbs {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	position: relative;
	gap: 20px;
}
.breadcrumbs > * {
	font-size: 13px;
	color: var(--c-l-gray);
	padding-right: 23px;
	position: relative;
	font-weight: var(--fw-medium);
}
.breadcrumbs > *::after {
	content: "";
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-l-gray);
	border-radius: 999px;
	flex-shrink: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
}
.breadcrumbs > *:last-child {
	padding-right: 0;
	color: var(--c-primary);
}
.breadcrumbs > *:last-child::after {
	content: none;
}
@media screen and (max-width: 999px) {
	.breadcrumbs-box {
		padding: 0 20px;
	}
}

/* ------ Pagination ------ */

.pagination-box {
	width: 100%;
	display: flex;
	justify-content: center;
}
.pagination {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
}
.pagination .page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	background: transparent;
	width: 40px;
	height: auto;
	aspect-ratio: 1 /1;
	border-radius: 999px;
	color: var(--c-primary);
	background: var(--c-bg);
	transition: all ease 0.3s;
	line-height: 1;
	overflow: hidden;
	font-size: 16px;
	font-weight: var(--fw-medium);
	position: relative;
	font-family: var(--font-poppins);
}
.page-numbers.current,
.prev.page-numbers,
.next.page-numbers {
	color: var(--c-white);
	background: var(--c-primary);
}
.prev.page-numbers {
	margin-right: 10px;
}
.next.page-numbers {
	margin-left: 10px;
}

.prev.page-numbers::before,
.next.page-numbers::before {
	content: "";
	display: flex;
	width: 12px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-right-wh.svg");
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	transform: translateX(0);
	opacity: 1;
	transition: transform 0.5s ease, opacity 0.5s ease;
}
.prev.page-numbers::before {
	transform: rotate(180deg);
}
.page-numbers:hover {
	opacity: 0.6;
}

@media screen and (max-width: 999px) {
	.pagination .page-numbers {
		width: 40px;
		font-size: 14px;
	}
}

/* ------------------------------------------------------------
lower layout
---------------------------------------------------------------*/

.lower-contents-area {
	width: 100%;
	position: relative;
	margin: 0 auto;
	position: relative;
	padding: 0 20px;
}

.lower-contents-area-inner {
	width: 100%;
	max-width: 1780px;
	padding-top: 50px;
	padding-bottom: 80px;
	border-radius: 20px;
	background: var(--c-white);
	margin: 0 auto;
	display: flex;
	flex-flow: column;
	gap: 20px;
}

.lower-contents-flex {
	display: flex;
	z-index: 10;
	position: relative;
	width: 100%;
	gap: 50px;
	align-items: flex-start;
	padding: 0 50px;
}
.lower-contents-flex.lower-contents-1col {
	justify-content: center;
}

.lower-side-nav-container {
	position: sticky;
	top: 105px;
	width: 250px;
	flex-shrink: 0;
	display: flex;
	flex-flow: column;
	gap: 15px;
}
.lower-side-nav-inner {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 20px;
	height: auto;
	padding-left: 50px;
	position: relative;
}

.lower-side-nav {
	display: flex;
	flex-flow: column;
	gap: 20px;
	width: 100%;
	height: 100%;
	overflow-y: auto;
}
.lower-side-nav-item {
	color: var(--c-text);
	width: 100%;
	transition: all ease 0.33s;
	position: relative;
}
.lower-side-nav-item > a {
	width: 100%;
	position: relative;
	display: flex;
	align-items: baseline;
	font-size: 16px;
}
.lower-side-nav-item.active > a {
	color: var(--c-primary);
}
.lower-side-nav-item.current-active > a {
	color: var(--c-primary);
}

.lower-side-nav-children {
	width: 100%;
	display: flex;
	flex-flow: column;
	margin-top: 10px;
	gap: 10px;
}
.lower-side-nav-children-item {
	width: 100%;
}
.btn-lower-side-nav-children-item {
	width: 100%;
	position: relative;
	padding-left: 20px;
	font-size: 13px;
}
.btn-lower-side-nav-children-item::before {
	content: "";
	position: absolute;
	width: 6px;
	height: auto;
	aspect-ratio: 6 / 10;
	background-image: url("../images/common/icon-chevron-right-bl.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 5px;
	left: 7px;
}

.lower-sp-menu-container {
	display: none;
}
.lower-sp-menu-inner {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 16px;
	height: 0;
	background: var(--c-white);
	border-radius: 5px;
	padding: 0px;
	position: relative;
	filter: drop-shadow(0px 0px 10px rgb(0 0 0 / 5%));
	opacity: 0;
	transition: all ease 0.33s;
	pointer-events: none;
	overflow: hidden;
}
.lower-sp-menu-container.active .lower-sp-menu-inner {
	opacity: 1;
	pointer-events: all;
	height: auto;
	padding: 15px 20px;
}
.lower-sp-menu-container .lower-side-nav {
	padding-top: 15px;
	gap: 15px;
}
.lower-sp-menu-container .lower-side-nav-item > a {
	font-size: 14px;
	color: #212a37;
}
.lower-sp-menu-container .acc-btn {
	width: 100%;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 14px;
}
.lower-sp-menu-container .acc-btn::after {
	content: "";
	width: 20px;
	height: auto;
	aspect-ratio: 1/ 1;
	position: absolute;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-plus-bk.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
}
.lower-sp-menu-container .is-open .acc-btn::after {
	background-image: url(../images/common/icon-minus-bk.svg);
}

.lower-contents {
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
}

.lower-sec {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-bottom: 50px;
}
.lower-sec.ls-border {
	border-bottom: 1px solid var(--c-l-gray);
	padding-bottom: 50px;
}
.lower-contents > .lower-sec:last-of-type {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border: none;
}

@media screen and (max-width: 1300px) {
	.lower-contents-area {
		padding: 0 20px;
	}
	.lower-side-nav-inner {
		padding-left: 20px;
	}
}

@media screen and (max-width: 999px) {
	.lower-side-nav-container {
		display: none;
	}
	.lower-sp-menu-container {
		position: fixed;
		z-index: 9998;
		top: 80px;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 330px;
		display: flex;
	}
	.lower-contents-area-inner {
		padding-top: 30px;
		padding-bottom: 30px;
		border-radius: 5px;
	}
	.lower-contents-flex {
		padding: 0;
	}
	.lower-contents {
		padding-right: 20px;
		padding-left: 20px;
	}
}

/* -------------------
lower top main
---------------------*/
.sec-lower-top-main {
	width: 100%;
	padding: 0 50px;
	margin-bottom: 80px;
}
.lower-top-main-cont {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 30px;
	align-items: flex-start;
}
.img-lower-top-main {
	width: 43.2%;
	max-width: 580px;
	height: auto;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.img-lower-top-main img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.lower-top-main-ttl {
	width: 100%;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0.05em;
	color: #113692;
}
.lower-top-main-txt-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 15px;
	align-items: flex-start;
}
.lower-top-main-txt-box > p {
	width: 100%;
	font-size: 16px;
	line-height: 1.8;
}

@media screen and (max-width: 999px) {
	.sec-lower-top-main {
		padding: 0 20px;
		margin-bottom: 30px;
	}
	.lower-top-main-cont {
		gap: 20px;
	}
	.img-lower-top-main {
		width: 100%;
		margin: 0 auto;
	}
	.lower-top-main-ttl {
		font-size: 20px;
	}
}

/* ------------------------------------------------------------
header
---------------------------------------------------------------*/

header {
	width: 100%;
	position: fixed;
	top: 0px;
	z-index: 9999;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0 20px;
	padding-top: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all ease-out 0.4s;
}

header::after {
	content: "";
	width: 100%;
	height: 100vh;
	background: var(--c-bk);
	opacity: 0;
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	z-index: 0;
	pointer-events: none;
	transition: all ease-in-out 0.4s;
}
header.nav-is-open::after {
	opacity: 0.8;
}
header.nav-is-open {
	align-items: flex-start;
	height: 100vh;
	padding: 20px;
}
.header-contents-wrapper {
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	margin: 0 auto;
	background: var(--c-white);
	height: auto;
	border-radius: 5px;
	padding: 0 20px;
	padding-right: 5px;
	z-index: 10;
	transition: all ease-out 0.4s;
	filter: drop-shadow(0px 10px 15px rgb(0 0 0 / 5%));
}
.header-contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	height: 70px;
	z-index: 10;
	transition: all ease-out 0.4s;
}
header.nav-is-open .header-contents {
	flex-flow: column;
	height: auto;
	max-height: 100%;
	justify-content: flex-start;
}

.header-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: auto;
	max-width: 200px;
	aspect-ratio: 200 / 40;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.header-logo:hover {
	opacity: 0.6;
}
.header-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
header.nav-is-open .header-logo {
	display: none;
}

.header-nav-group {
	width: auto;
	display: flex;
	align-items: center;
	gap: 25px;
	justify-content: flex-end;
}
header.nav-is-open .header-nav-group {
	width: 100%;
	max-width: none;
	padding-top: 20px;
}

.header-logo-sp {
	display: none;
}

.header-nav-flex {
	display: flex;
	flex-flow: column;
	align-items: flex-end;
	gap: 6px;
	position: relative;
}
header.nav-is-open .header-nav-flex {
	display: none;
}

.header-nav-flex > nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	position: relative;
	z-index: 10;
}
.header-nav-flex > nav.header-nav-main {
	gap: 25px;
}

.header-nav-flex > nav > a {
	flex-shrink: 0;
	position: relative;
	line-height: 1;
}

.header-nav-flex > nav > a {
	transition: all ease 0.33s;
}
.header-nav-flex > nav.header-nav-main > a {
	font-size: 16px;
	font-weight: var(--fw-semibold);
}
.header-nav-flex > nav > a:hover {
	color: var(--c-primary);
}

.btn-header-contact {
	width: 170px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--c-primary);
	border: 1px solid var(--c-primary);
	border-radius: 3px;
	color: var(--c-white);
	gap: 8px;
	overflow: hidden;
	position: relative;
	transition: var(--transition-base);
}
.btn-header-contact:hover {
	background: var(--c-white);
	color: var(--c-primary) !important;
}
.btn-header-contact::after {
	content: "";
	width: 17px;
	height: auto;
	aspect-ratio: 17 / 14;
	background-image: url("../images/common/icon-email-wh.svg");
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	transition: var(--transition-base);
}
.btn-header-contact:hover::after {
	background-image: url("../images/common/icon-email-bl.svg");
}

.header-acc-btn {
	display: flex;
	align-items: center;
	gap: 8px;
}
.header-acc-btn::after {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 5 / 3;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../images/common/icon-chevron-down-bl.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all ease 0.33s;
	flex-shrink: 0;
}
.header-acc-btn.is-active::after {
	transform: scaleY(-1);
}

.header-acc-menu {
	width: 100%;
	padding: 15px 10px 20px;
	position: relative;
	overflow: hidden;
}
.products-grid {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.products-grid-item {
	width: 100%;
	height: 100px;
	display: flex;
	align-items: flex-end;
	background: var(--c-white);
	border: 1px solid var(--c-white);
	border-radius: 5px;
	padding: 10px;
	overflow: hidden;
	gap: 15px;
	position: relative;
	transition: var(--transition-base);
}
.header-acc-menu .products-grid-item {
	background: var(--c-bg);
	border: 1px solid var(--c-bg);
}
.header-acc-menu .products-grid-item {
	background: var(--c-bg);
	border: 1px solid var(--c-bg);
}
.products-grid-item:hover {
	border: 1px solid var(--c-primary);
}
.products-grid-item > figure {
	width: 80px;
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--c-bg);
}
.header-acc-menu .products-grid-item > figure {
	background: var(--c-white);
}
.header-acc-menu .category-name{
	font-size: 16px;
	padding: 30px 0 20px 20px;
}
.products-grid-item > figure > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
}
.products-grid-item:hover > figure > img {
	transform: scale(1.05);
}
.products-grid-item > div {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 5px;
	margin-bottom: 8px;
	transition: var(--transition-base);
}
.products-grid-item:hover > div {
	color: var(--c-primary);
}
.products-grid-item > div > h3 {
	width: 100%;
	font-size: 16px;
	font-weight: var(--fw-bold);
	line-height: 1;
	white-space: nowrap;
}
.products-grid-item > div > p {
	width: 100%;
	font-size: 13px;
	line-height: 1.5;
	white-space: nowrap;
}

/* scrolled header */
@media screen and (min-width: 1000px) {
	header.active {
		padding: 0px;
	}

	header.active .header-contents-wrapper {
		border-radius: 0;
	}
	header.active .header-contents {
		height: 60px;
		padding: 5px 20px;
		padding-right: 5px;
	}
	header.active.nav-is-open .header-contents {
		height: auto;
		max-height: 100%;
	}
	header.active .header-logo {
		max-width: 150px;
	}
	header.active .btn-header-contact {
		width: 150px;
		height: 50px;
	}
	header.active .btn-header-contact > span {
		font-size: 14px;
	}
}

/* ------------------------------------------------------------
header nav menu
---------------------------------------------------------------*/

.btn-menu {
	display: none;
	flex-shrink: 0;
	gap: 10px;
	justify-content: center;
	align-items: center;
	width: 120px;
	height: 50px;
	overflow: hidden;
	color: var(--c-white);
	background: var(--c-primary);
	border-radius: 3px;
	position: relative;
	cursor: pointer;
}
.swap-icon {
	display: flex;
	width: 25px;
	height: auto;
	aspect-ratio: 25 / 15;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	transition: all ease 0.33s;
}
.swap-icon > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sp-menu-wrapper {
	display: none;
}
@media screen and (max-width: 1300px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
}
@media screen and (max-width: 1200px) {
	.btn-header-contact {
		width: 150px;
	}
	.header-nav-flex > nav.header-nav-main {
		gap: 20px;
	}
	.header-nav-flex > nav.header-nav-main > a {
		font-size: 14px;
	}
}
@media screen and (max-width: 999px) {
	header {
		padding: 0 10px;
		padding-top: 10px;
	}
	.header-logo {
		max-width: 125px;
	}
	.btn-menu {
		display: flex;
	}

	header.nav-is-open .header-logo-sp {
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		width: auto;
		max-width: 125px;
		aspect-ratio: 125 / 25;
		flex-shrink: 0;
		transition: all ease 0.33s;
	}
	.header-contents-wrapper {
		padding-left: 15px;
	}
	.header-contents {
		height: 60px;
	}
	header.nav-is-open .header-contents-wrapper {
		min-height: 100%;
		gap: 50px;
		padding: 0;
		height: auto;
		max-height: 100%;
		border-radius: 5px;
		overflow: hidden;
	}
	header.nav-is-open .header-contents {
		min-height: 100%;
		padding-top: 5px;
		padding-right: 5px;
		padding-left: 15px;
		flex-shrink: 0;
	}
	header.nav-is-open .header-nav-group {
		padding-top: 0px;
		justify-content: space-between;
	}
	.header-nav-flex {
		display: none;
	}
	header.nav-is-open {
		padding: 10px;
	}

	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.sp-menu-wrapper {
		position: absolute;
		opacity: 0;
		height: 0;
		overflow: hidden;
		pointer-events: none;
		z-index: -1;
		transition: all ease-in-out 0.5s;
		display: flex;
	}
	header.nav-is-open .sp-menu-wrapper {
		position: relative;
		opacity: 1;
		pointer-events: all;
		z-index: 0;
		width: 100%;
		height: 100%;
		overflow-x: hidden;
		overflow-y: auto;
	}

	.sp-menu {
		width: 100%;
		display: flex;
		flex-flow: column;
		gap: 45px;
		opacity: 0;
		height: 0;
	}
	header.nav-is-open .sp-menu {
		opacity: 1;
		height: auto;
	}
	.sp-menu > nav {
		display: flex;
		flex-flow: column;
		width: 100%;
		padding: 0 20px;
	}
	.sp-menu > nav > *:first-child {
		border-top: 1px solid var(--c-l-gray);
	}
	.sp-menu > nav > a,
	.sp-menu .acc-box {
		width: 100%;
		position: relative;
		border-bottom: 1px solid var(--c-l-gray);
	}
	.sp-menu > nav > a {
		padding: 15px 10px;
		color: var(--c-primary);
	}

	.sp-menu .acc-btn {
		width: 100%;
		display: flex;
		align-items: center;
		padding: 15px 10px;
		padding-right: 20px;
		cursor: pointer;
		color: var(--c-primary);
	}
	.sp-menu .acc-panel-inner {
		width: 100%;
		padding: 15px;
		padding-top: 0;
	}
	.sp-menu .acc-btn::after {
		content: "";
		width: 10px;
		height: auto;
		aspect-ratio: 10 / 5;
		position: absolute;
		right: 10px;
		display: flex;
		justify-content: center;
		align-items: center;
		background-image: url(../images/common/icon-chevron-down-bl.svg);
		background-size: contain;
		background-position: center;
		background-repeat: no-repeat;
		transition: all ease 0.33s;
		flex-shrink: 0;
	}
	.sp-menu .is-open .acc-btn::after {
		transform: rotateX(180deg);
	}

	.sp-menu-links {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: flex-start;
		gap: 12px;
	}
	.sp-menu-links > a {
		width: 100%;
		position: relative;
		padding-left: 20px;
		font-size: 14px;
		transition: all ease-in-out 0.2s;
		color: var(--c-primary);
	}
	.sp-menu-links > a::before {
		content: "";
		position: absolute;
		width: 5px;
		height: auto;
		aspect-ratio: 5 / 8;
		background-image: url("../images/common/icon-chevron-right-bl-xs.svg");
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		top: 7px;
		left: 6px;
		flex-shrink: 0;
		transition: all ease-in-out 0.2s;
	}

	.sp-menu-address-area {
		width: 100%;
		flex-shrink: 0;
		padding: 35px 20px 30px;
		background: var(--c-primary);
		color: var(--c-white);
		display: flex;
		flex-flow: column;
		gap: 30px;
		align-items: center;
		position: relative;
		overflow: hidden;
	}
	.sp-menu-address-box {
		width: 100%;
		display: flex;
		flex-flow: column;
		gap: 9px;
		align-items: flex-start;
		position: relative;
	}
	.sp-menu-address {
		width: 100%;
		display: flex;
		flex-flow: column;
		gap: 9px;
		align-items: flex-start;
		position: relative;
		font-size: 14px;
	}
	.sp-menu-address-box > a {
		font-size: 14px;
	}
	.sp-menu-copy {
		font-size: 12px;
	}
	.sp-menu-address-map {
		white-space: nowrap;
	}
}

@media screen and (max-width: 640px) {
	.products-grid {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* ------------------------------------------------------------
footer
---------------------------------------------------------------*/
footer {
	width: 100%;
	height: auto;
	position: relative;
	padding: 0 50px;
	background: var(--c-primary);
	z-index: 10;
}
.footer-contact {
	position: absolute;
	top: -60px;
	background: var(--c-white);
	width: 86.11%;
	z-index: 20;
	border-radius: 10px;
	height: 120px;
	left: 0;
	right: 0;
	margin: 0 auto;
	max-width: 1780px;
	min-width: 1240px;
	padding: 23px 50px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 4%;
}

.footer-contact-ttl-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 15px;
}
.footer-contact-ttl-box {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
}
.footer-contact-ttl-box > h2 {
	font-size: 32px;
	color: var(--c-primary);
	font-family: var(--font-poppins);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.05em;
}
.footer-contact-ttl-box > span {
	font-size: 13px;
	line-height: 1;
}
.footer-contact-txt {
	font-size: 13px;
	line-height: 1.5;
}

.footer-contact-btn-area {
	width: auto;
	display: flex;
	flex-shrink: 0;
	align-items: center;
}
.btn-footer-contact {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 50px;
	gap: 13px;
	position: relative;
}
.btn-footer-contact::before {
	content: "";
	width: 1px;
	background: var(--c-l-gray);
	height: 60px;
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.btn-footer-contact > i {
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 999px;
	flex-shrink: 0;
	overflow: hidden;
	position: relative;
	padding: 10px;
	border: 1px solid var(--c-primary);
}
.btn-footer-contact > i::before {
	content: "";
	width: 20px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	position: relative;
	z-index: 10;
}
.btn-footer-contact.bfc-tel > i::before {
	background-image: url(../images/common/icon-tel-bl.svg);
}
.btn-footer-contact.bfc-form > i::before {
	background-image: url(../images/common/icon-email-bl-lg.svg);
}
.btn-footer-contact.bfc-tel:hover > i::before {
	background-image: url(../images/common/icon-tel-wh.svg);
}
.btn-footer-contact.bfc-form:hover > i::before {
	background-image: url(../images/common/icon-email-wh-lg.svg);
}

.btn-footer-contact > i::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 999px;
	z-index: 1;
	transform: scale(0);
	transition: all ease 0.4s;
	background: var(--c-primary);
}

.btn-footer-contact:hover > i::after {
	transform: scale(1.05);
}

.btn-footer-contact > div {
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 9px;
	width: 100%;
}
.btn-footer-contact > div > span {
	font-size: 13px;
	line-height: 1;
}

.btn-footer-contact > div > h3 {
	color: var(--c-primary);
	line-height: 1;
}
.btn-footer-contact.bfc-tel > div > h3 {
	font-family: var(--font-poppins);
	font-weight: 400;
	font-size: 24px;
}
.btn-footer-contact.bfc-form > div > h3 {
	font-size: 18px;
}

.footer-contents {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	padding: 110px 0 50px;
	gap: 73px;
	margin: 0 auto;
	max-width: 1780px;
	overflow: hidden;
}
.footer-flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: flex-start;
	gap: 5%;
	margin: 0 auto;
}

.footer-logo-group {
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	width: 100%;
	max-width: 350px;
	flex-shrink: 0;
	gap: 18px;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	width: auto;
	max-width: 261px;
	aspect-ratio: 261 / 52;
	flex-shrink: 0;
	transition: var(--transition-base);
}
.footer-logo:hover {
	opacity: 0.6;
}
.footer-logo > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.footer-address {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 8px;
	color: var(--c-white);
	font-size: 15px;
}
.footer-address-map {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer-address-map > span {
	flex-shrink: 0;
}
.footer-address-map > a {
	flex-shrink: 0;
}
.footer-logo-group > a {
	color: var(--c-white);
	font-size: 15px;
	transition: var(--transition-base);
}
.footer-logo-group > a:hover {
	opacity: 0.6;
}

.footer-nav-flex {
	width: 100%;
	color: var(--c-white);
	display: flex;
	flex-flow: column;
	align-items: flex-end;
}
.footer-nav-main {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 3.26%;
}
.footer-nav-main > div {
	position: relative;
	width: auto;
	max-width: 175px;
	flex-shrink: 0;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 10px;
}
.footer-nav-main > div:last-of-type {
	gap: 20px;
}
.footer-nav-main > div > a {
	width: 100%;
	font-size: 16px;
	transition: var(--transition-base);
}
.footer-nav-main > div > a:hover {
	opacity: 0.6;
}
.footer-nav-main-children {
	width: 100%;
	gap: 10px;
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: flex-start;
	align-items: flex-start;
}
.footer-nav-main-children > a {
	position: relative;
	padding-left: 20px;
	font-size: 14px;
	transition: all ease-in-out 0.2s;
}
.footer-nav-main-children > a::before {
	content: "";
	position: absolute;
	width: 5px;
	height: auto;
	aspect-ratio: 5 / 8;
	background-image: url("../images/common/icon-chevron-right-wh-xs.svg");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 7px;
	left: 6px;
	flex-shrink: 0;
	transition: all ease-in-out 0.2s;
}
.footer-nav-main-children > a:hover {
	opacity: 0.6;
}
.footer-nav-main-children > a:hover::before {
	left: 8px;
}

.footer-copy {
	width: 100%;
	text-align: center;
	font-size: 13px;
	color: var(--c-white);
}

.footer-sp-menu {
	display: none;
}

@media screen and (max-width: 1300px) {
	.footer-contact {
		min-width: 800px;
		gap: 30px;
		padding: 35px;
	}
	.btn-footer-contact {
		padding: 0 30px;
	}

	.footer-logo-group {
		max-width: 250px;
	}
	.footer-logo {
		max-width: 160px;
	}
	.footer-address-map > span {
		flex-shrink: initial;
	}
	.footer-address-map > span > br {
		display: inline;
	}
	.footer-nav-flex > nav {
		font-size: 14px;
		gap: 15px;
	}
	.footer-nav-main > div > a {
		font-size: 14px;
	}
	.footer-nav-main-children > a {
		font-size: 13px;
	}
}
@media screen and (max-width: 1200px) {
	.btn-footer-contact {
		padding: 0 20px;
	}
	.footer-nav-flex > nav {
		gap: 5px;
	}
	.footer-nav-main > div {
		max-width: 130px;
	}
}
@media screen and (max-width: 999px) {
	footer {
		padding: 0 20px;
	}
	.footer-contents {
		padding: 208px 0 30px;
		max-width: 500px;
		gap: 20px;
	}
	.footer-logo-group {
		margin: 0 auto;
	}
	.footer-logo {
		width: 100%;
		max-width: 200px;
		margin: 0 auto;
	}
	.footer-contact {
		min-width: 0;
		width: 89.7%;
		gap: 30px;
	}
	.footer-contact .icon-arrow-wrapper {
		width: 16px;
		right: 35px;
	}
	.footer-contact .icon-arrow {
		width: 16px;
	}
	.footer-contact > div > p {
		font-size: 13px;
		max-width: 350px;
	}
	.footer-contact > div > p br {
		display: none;
	}
	.footer-address {
		display: none;
	}
	.footer-nav-flex {
		display: none;
	}
	.footer-contact {
		max-width: 350px;
		gap: 20px;
		padding: 30px;
		flex-flow: column;
		height: 277px;
		top: -100px;
	}
	.footer-contact > div > p {
		max-width: 310px;
		color: #666;
	}
	.footer-contact-btn-area {
		flex-flow: column;
		width: 100%;
		gap: 20px;
	}
	.btn-footer-contact {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 0;
		gap: 13px;
		position: relative;
		max-width: 234px;
	}

	.btn-footer-contact::before {
		content: none;
	}
	.footer-logo-group > a:not(.footer-logo) {
		display: none;
	}
	.footer-copy {
		display: none;
	}
	.footer-sp-menu {
		width: 100%;
		position: relative;
		display: flex;
	}
	.footer-sp-menu > .sp-menu {
		opacity: 1;
		height: auto;
		gap: 30px;
	}

	.footer-sp-menu .sp-menu > nav {
		padding: 0;
	}
	.footer-sp-menu .sp-menu-address-area {
		padding: 0;
	}
	.footer-sp-menu > .sp-menu .acc-btn {
		color: var(--c-white);
	}
	.footer-sp-menu > .sp-menu > nav > a {
		color: var(--c-white);
	}
	.footer-sp-menu > .sp-menu .acc-btn::after {
		background-image: url(../images/common/icon-chevron-down-wh.svg);
	}
	.footer-sp-menu .sp-menu-links > a {
		color: var(--c-white);
	}
	.footer-sp-menu .sp-menu-links > a::before {
		background-image: url("../images/common/icon-chevron-right-wh-xs.svg");
	}
}
