@charset "utf-8";
:root {
	--c-primary: #634a40;
	--c-dark: #444444;
	--c-white: #fefefe;
	--c-light: #fbf7f5;
	--c-secondary: #f8f0e6;
	--c-green: #64b562;
	--c-blue: #60b8c6;
	--c-purple: #80579e;
	--c-orange: #f3803c;
	--c-turq: #39b9a4;
	--c-red: #d95f56;
	--c-text: #0a0a0a;
	--c-bg: #fefefe;
	--font-base: "Zen Kaku Gothic Antique", sans-serif;
	--font-mont: "Montserrat", sans-serif;
	--transition-base: all ease 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.025em;
	font-weight: 500;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	line-height: inherit;
	background: var(--c-bg);
}

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;
}

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: 999px) {
	br.pc {
		display: none;
	}
	br.sp {
		display: inline;
	}
}

/* ------------------------------------------------------------
common layout
---------------------------------------------------------------*/

.sec-inner {
	width: 100%;
	max-width: 1510px;
	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: 15px;
}
.page-lower .sec-cont {
	gap: 20px;
}

.main-container {
	position: relative;
	width: 100%;
	display: flex;
	align-items: stretch;
}

@media screen and (max-width: 999px) {
	.main-container {
		padding-top: 80px;
	}
}
.main-container main {
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 0;
}

/* ------------------------------------------------------------
title heading
---------------------------------------------------------------*/
.ttl-box {
	display: flex;
	gap: 15px;
}
.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-full {
	width: 100%;
	gap: 20px;
}
.ttl-box.ttb-between {
	justify-content: space-between;
}

.ttl-box h2 {
	font-size: 32px;
}
.ttl-box h3 {
	font-size: 24px;
}

.ttl-box > span {
	font-size: 14px;
	font-weight: 500;
	font-family: var(--font-mont);
}

@media screen and (max-width: 999px) {
	.ttl-box h3 {
		font-size: 20px;
	}
}

/* ------------------------------------------------------------
Text
---------------------------------------------------------------*/
.c-txt-group {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 20px;
}
.c-txt-group .c-txt {
	width: 100%;
}
.c-txt {
	font-size: 16px;
	line-height: 1.8;
}
/* ------------------------------------------------------------
link
---------------------------------------------------------------*/
a.link-txt-more {
	display: flex;
	align-items: center;
	gap: 15px;
	color: var(--c-primary);
	padding-bottom: 8px;
	line-height: 1;
	font-size: 14px;
	border-bottom: 1px solid var(--c-primary);
}
a.link-txt-more::after {
	content: "";
	position: relative;
	width: 8px;
	height: auto;
	display: flex;
	aspect-ratio: 1 / 1;
	flex-shrink: 0;
	background-image: url("../images/common/icon-arrow-up-right-br.svg");
	background-size: contain;
	background-repeat: no-repeat;
}
/* ------------------------------------------------------------
Button
---------------------------------------------------------------*/

/* ------------------------------------------------------------
Table
---------------------------------------------------------------*/
.tbl-container {
	width: 100%;
	position: relative;
	overflow: hidden;
}
.c-table {
	width: 100%;
}
.c-table th,
.c-table td {
	font-size: 16px;
	padding: 20px;
	border-bottom: 1px solid #ddd;
}
.c-table tr:first-of-type > th,
.c-table tr:first-of-type > td {
	border-top: 1px solid #ddd;
}

.address-flex {
	width: 100%;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 3px;
}
.address-flex > a {
	flex-shrink: 0;
}
@media screen and (max-width: 1100px) {
	.address-flex > *:first-child {
		width: 100%;
	}
}

/* ------------------------------------------------------------
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.has-caption::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 40%;
	background: linear-gradient(0deg, rgb(0 0 0 / 65%), transparent);
	z-index: 0;
}

.slide-img-caption-box {
	width: 100%;
	position: absolute;
	z-index: 20;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0 30px 30px;
	padding-right: 110px;
	display: flex;
	flex-flow: column;
	gap: 5px;
	align-items: flex-start;
	color: var(--c-white);
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0;
}

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

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

@media screen and (max-width: 999px) {
	.slide-img-caption-box {
		padding: 0 15px 15px;
		padding-right: 90px;
		font-size: 14px;
	}
}

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

ul.list {
	list-style-type: disc;
	margin-left: 20px;
	display: flex;
	flex-flow: column;
	gap: 10px;
}
ul.list > li {
	width: 100%;
}
ul.list > li::marker {
	color: var(--c-primary);
	font-size: 20px;
}

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

.card-contents-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
	align-items: center;
}
.card-contents {
	width: 100%;
	display: flex;
	position: relative;
	border-radius: 3px;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.card-contents::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg, rgb(0 0 0 / 65%), transparent);
	z-index: 0;
}

.card-contents-ov-txt {
	width: 100%;
	position: absolute;
	z-index: 20;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 0 16px 20px;
	padding-right: 33px;
	display: flex;
	flex-flow: column;
	gap: 5px;
	align-items: flex-start;
	color: var(--c-white);
}
.card-contents-ov-txt::after {
	content: "";
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url(../images/common/icon-arrow-up-right-wh.svg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 26px;
	right: 20px;
}
.card-contents-ov-txt > h3 {
	width: 100%;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0;
}
.card-contents > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
	z-index: 0;
}
.card-contents:hover > img {
	transform: scale(1.05);
}

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

/* Card business */
.card-business {
	width: 100%;
	height: auto;
	background: var(--c-white);
	padding: 30px 20px 60px;
	border-radius: 5px;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px;
	overflow: hidden;
	position: relative;
	height: auto;      /* 高さを自動 */
  min-height: 0;     /* Safariバグ回避用 */
  align-self: start; /* 子要素の伸び防止 */
}

.card-business.cb-row {
	padding: 25px 20px 30px 25px;
	flex-flow: row;
}

.card-business::after {
	content: "";
	width: 40px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url(../images/common/icon-arrow-up-right-wh.svg) no-repeat;
	background-size: 9.5px;
	background-position: center;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 10;
	background-color: transparent;
	border-radius: 5px 0 5px 0;
}
.card-business.cb-row::after {
	bottom: auto;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	border-radius: 5px;
}
.card-business.cb-green::after {
	background-color: var(--c-green);
}
.card-business.cb-blue::after {
	background-color: var(--c-blue);
}
.card-business.cb-purple::after {
	background-color: var(--c-purple);
}
.card-business.cb-orange::after {
	background-color: var(--c-orange);
}
.card-business.cb-turq::after {
	background-color: var(--c-turq);
}
.card-business.cb-red::after {
	background-color: var(--c-red);
}

.card-business-icon-box {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 10px;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.card-business.cb-row .card-business-icon-box {
	flex-flow: row;
	gap: 15px;
	padding-right: 80px;
}

.card-business-icon-box > figure {
	width: 58px;
	height: auto;
	aspect-ratio: 58 / 50;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
}
.card-business.cb-row .card-business-icon-box > figure {
	width: 35px;
	height: auto;
	aspect-ratio: 35 / 30;
}
.card-business-icon-box > figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.card-business-icon-box > h3 {
	width: 100%;
	text-align: center;
	font-size: 18px;
	font-weight: 600;
}
.card-business.cb-row .card-business-icon-box > h3 {
	text-align: left;
	flex-shrink: 0;
	letter-spacing: 0;
}

.card-business.cb-green .card-business-icon-box > h3 {
	color: var(--c-green);
}
.card-business.cb-blue .card-business-icon-box > h3 {
	color: var(--c-blue);
}
.card-business.cb-purple .card-business-icon-box > h3 {
	color: var(--c-purple);
}
.card-business.cb-orange .card-business-icon-box > h3 {
	color: var(--c-orange);
}
.card-business.cb-turq .card-business-icon-box > h3 {
	color: var(--c-turq);
}
.card-business.cb-red .card-business-icon-box > h3 {
	color: var(--c-red);
}

.card-business-body {
	width: 100%;
	position: relative;
	z-index: 0;
}
.card-business-body p {
	width: 100%;
	font-size: 14px;
}

@media screen and (max-width: 768px) {
	.card-business {
		padding: 20px 20px 60px;
	}
}
@media screen and (max-width: 700px) {
	.card-business {
		padding: 20px;
	}
	.card-business.cb-row {
		padding: 20px;
		padding-right: 64px;
	}
	.card-business::after {
		border-radius: 0 5px 0 5px;
		bottom: auto;
		top: 0;
	}
	.card-business.cb-row::after {
		bottom: auto;
		top: 0;
		right: 0;
		transform: none;
		border-radius: 0 5px 5px 0;
		height: 100%;
		aspect-ratio: auto;
	}
	.card-business-icon-box {
		padding-right: 52px;
		justify-content: flex-start;
		flex-flow: row;
		gap: 15px;
	}
	.card-business.cb-row .card-business-icon-box {
		padding-right: 0;
	}
	.card-business-icon-box > h3 {
		text-align: left;
		flex-shrink: 0;
	}
}

/* Card news */
.card-news {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	overflow: hidden;
}
.card-news-img {
	width: 100%;
	height: auto;
	aspect-ratio: 228 / 128;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	border-radius: 5px;
}
.card-news-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition-img);
	z-index: 0;
}
.card-news:hover .card-news-img img {
	transform: scale(1.05);
}

.card-news-body {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 10px;
}
.card-news-body > h3 {
	width: 100%;
}
.card-news-date {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 5px;
	line-height: 1;
	color: var(--c-primary);
	position: relative;
}
.card-news-date span {
	font-family: var(--font-mont);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1;
}
.card-news-date::before {
	content: "";
	width: 10px;
	height: auto;
	aspect-ratio: 1 / 1;
	background: var(--c-primary);
	border-radius: 999px;
}

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

header {
	display: none;
}

@media screen and (max-width: 999px) {
	header {
		width: 100%;
		position: fixed;
		top: 0px;
		z-index: 9999;
		left: 0;
		right: 0;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		align-items: center;
		transition: all ease-out 0.4s;
	}
	.header-contents {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		margin: 0 auto;
		background: var(--c-primary);
		height: 80px;
		padding: 20px;
		z-index: 10;
	}

	.header-logo {
		display: flex;
		justify-content: center;
		align-items: center;
		overflow: hidden;
		width: auto;
		max-width: 160px;
		aspect-ratio: 160 / 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;
	}
}

.btn-menu {
	display: flex;
	flex-shrink: 0;
	gap: 11px;
	flex-flow: column;
	justify-content: flex-start;
	align-items: center;
	width: 38px;
	height: auto;
	color: var(--c-white);
	position: relative;
	cursor: pointer;
	user-select: none;
}
.btn-menu > span {
	width: auto;
	flex-shrink: 0;
	font-family: var(--font-mont);
	color: var(--c-white);
	letter-spacing: 0;
	line-height: 1;
	font-weight: 600;
	text-align: center;
	font-size: 12px;
	white-space: nowrap;
}
.swap-icon {
	display: flex;
	width: auto;
	height: 19px;
	aspect-ratio: 30 / 19;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	flex-shrink: 0;
	transition: all ease 0.33s;
}
.swap-icon.is-active {
	width: auto;
	height: 19px;
	aspect-ratio: 1 / 1;
}
.swap-icon > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ------------------------------------------------------------
SP Nav
---------------------------------------------------------------*/

.sp-menu {
	display: none;
}

@media screen and (max-width: 999px) {
	.sp-menu {
		pointer-events: none;
		position: fixed;
		top: 80px;
		right: 0px;
		z-index: 60;
		display: flex;
		height: calc(100vh - 80px);
		width: 100%;
		justify-content: flex-end;
		overflow-x: hidden;
		opacity: 0;
		transition-property: all;
		transition-duration: 500ms;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	}

	.sp-menu.is-active {
		pointer-events: auto;
		opacity: 1;
	}

	.sp-menu::after {
		content: "";
		position: fixed;
		top: 80px;
		right: 0px;
		z-index: 0;
		height: calc(100vh - 80px);
		width: 100vw;
		background-color: rgb(0 0 0 / 0.5);
		opacity: 0;
		transition-property: all;
		transition-duration: 500ms;
		transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	}

	.sp-menu.is-active::after {
		opacity: 1;
	}

	.sp-menu-inner {
		width: 100%;
		max-width: 430px;
		display: flex;
		flex-flow: column;
		align-items: center;
		padding: 34px 40px;
		gap: 30px;
		position: relative;
		z-index: 10;
		overflow-y: auto;
		background: var(--c-primary);
		transition: var(--transition-base);
		transform: translateY(-100%);
	}
	.sp-menu-inner nav{
		display: flex;
		flex-flow: column;
		gap: 15px;
	}
	.sp-menu-inner nav a{
		color: #fff;
	}

	.sp-menu.is-active .sp-menu-inner {
		transform: translateY(0%);
	}
	.sp-nav-list-area {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 30px;
	}
	.sp-nav-list {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 20px;
	}
	.sp-nav-list > a {
		width: 100%;
		font-size: 16px;
		color: var(--c-white);
		transition: var(--transition-base);
		line-height: 1.5;
		position: relative;
		white-space: nowrap;
		padding: 0 14px;
		padding-bottom: 20px;
		border-bottom: 1px solid #ddd;
	}
	.sp-nav-list > div{
		padding: 2px 14px 20px;
		border-bottom: 1px solid #ddd;
		width: 100%;
		position: relative;
	}
	.btn-sp-nav-toggle {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.btn-sp-nav-toggle.is-active {
		border-bottom: none;
		padding-bottom: 0;
	}
	.btn-sp-nav-toggle::after {
		content: "";
		width: 12px;
		height: auto;
		aspect-ratio: 12 / 7;
		background-image: url("../images/common/icon-chevron-down-wh.svg");
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		right: 14px;
		top: 14px;
	}
	.btn-sp-nav-toggle.is-active::after {
		transform: scale(-1);
	}
	.sp-nav-toggle-menu {
		width: 100%;
	}
	.sp-toggle-menu-inner {
		width: 100%;
	}
	.sp-toggle-menu-list {
		width: 100%;
		display: flex;
		flex-flow: column;
		gap: 15px;
		align-items: flex-start;
		padding: 20px 30px 0;
		transition: var(--transition-base);
	}
	.sp-toggle-menu-list > a {
		width: 100%;
		font-size: 16px;
		color: var(--c-white);
		transition: var(--transition-base);
		line-height: 1.5;
		position: relative;
		white-space: nowrap;
	}

	.sp-nav-sub-links {
		width: 100%;
		display: flex;
		gap: 15px;
		align-items: center;
		justify-content: center;
		border-bottom: 1px solid var(--c-white);
		padding: 0 15px;
		padding-bottom: 30px;
		transition: var(--transition-base);
	}
	.sp-nav-sub-links > a {
		font-size: 14px;
		color: var(--c-white);
		transition: var(--transition-base);
		line-height: 1.5;
		position: relative;
		white-space: nowrap;
		flex-shrink: 0;
	}

	.sp-nav-sns-area {
		width: 100%;
		display: flex;
		flex-flow: column;
		align-items: center;
		gap: 15px;
	}
	.sp-nav-sns-area > p {
		width: 100%;
		font-size: 12px;
		font-family: var(--font-mont);
		font-weight: 600;
		color: var(--c-white);
		letter-spacing: 0.05em;
		text-align: center;
	}
	.sp-nav-sns {
		width: 100%;
		display: flex;
		justify-content: center;
		gap: 10px;
		align-items: center;
	}
	.sp-nav-sns > a {
		width: 18px;
		height: auto;
		aspect-ratio: 1 / 1;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.sp-menu-inner.no-scroll-bar{
		transform: translateY(0%);
	}
}

@media screen and (max-width: 500px){
	.sp-menu{
		width: 100%;
	}
}

/* ------------------------------------------------------------
Side Nav
---------------------------------------------------------------*/
.side-nav {
	width: 180px;
	position: relative;
	flex-shrink: 0;
	z-index: 10;
	background: var(--c-primary);
}
.side-nav-inner {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: var(--c-primary);
	max-height: 1080px;
	z-index: 10;
}
.side-nav-contents {
	width: 100%;
	height: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	padding: 30px 30px 20px;
	gap: 17px;
	overflow-y: auto;
}
@media screen and (min-width: 1000px) {
	.sh-800 .side-nav-contents {
		padding: 20px 30px 20px;
		gap: 12px;
	}
}

.side-nav-logo {
	width: 100%;
	height: auto;
	flex-shrink: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	aspect-ratio: 112 / 129;
	max-width: 112px;
	transition: var(--transition-base);
}
@media screen and (min-width: 1000px) {
	.sh-800 .side-nav-logo {
		max-width: 90px;
		margin: 0 auto;
	}
}
.side-nav-logo:hover {
	opacity: 0.6;
}
.side-nav-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.side-nav-list-area {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid var(--c-white);
	border-bottom: 1px solid var(--c-white);
}
.side-nav-list {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 15px;
}
.side-nav-list > a {
	width: 100%;
	font-size: 16px;
	color: var(--c-white);
	transition: var(--transition-base);
	line-height: 1.5;
	position: relative;
	white-space: nowrap;
}
.sub-links {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 10px;
}
.sub-links > a {
	width: 100%;
	font-size: 14px;
	color: var(--c-white);
	transition: var(--transition-base);
	line-height: 1.5;
	position: relative;
	white-space: nowrap;
}
.side-nav-list > a:not(.btn-side-nav-toggle):hover,
.sub-links > a:hover {
	opacity: 0.6;
}

.btn-side-nav-toggle > span {
	position: relative;
	z-index: 10;
}
.btn-side-nav-toggle > span::after {
	content: "";
	width: 7px;
	height: auto;
	aspect-ratio: 7 / 12;
	background-image: url("../images/common/icon-chevron-right-wh.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: -18px;
	top: calc(50% + 1px);
	transform: translateY(-50%);
}
.btn-side-nav-toggle.is-active {
	color: var(--c-primary);
}
.btn-side-nav-toggle.is-active > span::after {
	background-image: url("../images/common/icon-chevron-right-br.svg");
}
.btn-side-nav-toggle.is-active::before {
	content: "";
	background: var(--c-light);
	width: 180px;
	height: 44px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transition: var(--transition-base);
	transform: translate(-50%, -50%);
	z-index: 0;
}
.side-nav-collapse-menu {
	width: 230px;
	height: 100vh;
	background: var(--c-light);
	position: fixed;
	top: 0;
	left: 180px;
	z-index: 0;
	opacity: 0;
	transform: translateX(-100%);
	transition: var(--transition-base);
	pointer-events: none;
	border-right: 1px solid var(--c-primary);
}
.side-nav-collapse-menu.is-active {
	transform: translateX(0%);
	opacity: 1;
	pointer-events: all;
}
.sncm-inner {
	padding: 40px;
	padding-top: 238px;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 18px;
}
.sncm-inner > p {
	width: 100%;
	font-size: 20px;
	font-weight: bold;
	color: var(--c-primary);
}
.sncm-list {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 20px;
}
.sncm-list > a {
	width: 100%;
	display: flex;
	align-items: flex-start;
	color: var(--c-primary);
	position: relative;
	gap: 8px;
	transition: var(--transition-base);
}
.sncm-list > a::before {
	content: "";
	width: 8px;
	height: auto;
	aspect-ratio: 1 / 1;
	background-image: url("../images/common/icon-arrow-right-br.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: 9px;
}
.sncm-list > a:hover {
	opacity: 0.6;
}

.side-nav-sns-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 15px;
}
.side-nav-sns-area > p {
	width: 100%;
	font-size: 12px;
	font-family: var(--font-mont);
	font-weight: 600;
	color: var(--c-white);
	letter-spacing: 0.05em;
	text-align: center;
}
.side-nav-sns {
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 10px;
	align-items: center;
}
.side-nav-sns > a {
	width: 18px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.side-nav-mascot-area {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 12px;
	margin-top: 13px;
}
.side-nav-mascot-img {
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	max-width: 87px;
	margin: 0 auto;
	aspect-ratio: 87 / 60;
}
.side-nav-mascot-img > img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.side-nav-mascot-txt {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: center;
	gap: 3px;
	color: var(--c-white);
	line-height: 1;
}
.side-nav-mascot-txt > span {
	font-size: 10px;
}
.side-nav-mascot-txt > p {
	font-size: 13px;
	font-weight: bold;
}

@media screen and (max-width: 999px) {
	.side-nav {
		display: none;
	}
}

/* ------------------------------------------------------------
footer
---------------------------------------------------------------*/
footer {
	width: 100%;
	height: auto;
	position: relative;
	padding: 0 120px;
	background: var(--c-dark);
	z-index: 20;
}
.footer-contents {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column;
	padding: 50px 0 30px;
	margin: 0 auto;
	gap: 20px;
	overflow: hidden;
}
.footer-flex {
	display: flex;
	justify-content: space-between;
	width: 100%;
	align-items: flex-start;
	gap: 50px;
}

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

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

.footer-address {
	width: 100%;
	color: var(--c-white);
	font-size: 14px;
	letter-spacing: 0;
	font-weight: 400;
}

.footer-nav-area {
	width: 100%;
	display: flex;
	gap: 50px;
	justify-content: flex-end;
}
.footer-nav-group {
	width: auto;
	display: flex;
	flex-flow: column;
	gap: 15px;
	align-items: flex-start;
}
.footer-nav-list {
	width: 100%;
	display: flex;
	flex-flow: column;
	gap: 15px;
	justify-content: flex-start;
}

.footer-nav-list > a {
	width: 100%;
	font-size: 16px;
	color: var(--c-white);
	transition: var(--transition-base);
	line-height: 1.5;
	position: relative;
}
.footer-nav-child {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 15px;
}
.footer-nav-child > p {
	width: 100%;
	color: var(--c-white);
}
.footer-sub-links {
	width: 100%;
	display: flex;
	flex-flow: column;
	align-items: flex-start;
	gap: 10px;
}
.footer-nav-child .footer-sub-links {
	padding-left: 10px;
}
.footer-sub-links > a {
	width: 100%;
	font-size: 14px;
	color: var(--c-white);
	transition: var(--transition-base);
	line-height: 1.5;
	position: relative;
}
.footer-nav-list > a:not(.btn-side-nav-toggle):hover,
.footer-sub-links > a:hover {
	opacity: 0.6;
}

.footer-copy {
	width: 100%;
	font-size: 12px;
	font-family: var(--font-mont);
	font-weight: 600;
	color: var(--c-white);
}

@media screen and (max-width: 1200px) {
	footer {
		padding: 0 50px;
	}
}
@media screen and (max-width: 999px) {
	footer {
		padding: 0 30px;
	}
	.footer-flex {
		gap: 20px;
	}
	.footer-contents {
		padding: 30px 0 30px;
		gap: 50px;
	}
	.footer-logo-group {
		max-width: 350px;
	}
	.footer-nav-area {
		gap: 20px;
	}
	.footer-copy {
		text-align: center;
	}
}
@media screen and (max-width: 768px) {
	footer {
		padding: 0 20px;
	}
	.footer-flex {
		padding: 0 10px;
		gap: 50px;
		flex-flow: column;
		align-items: center;
		justify-content: flex-start;
	}
	.footer-nav-area {
		gap: 12%;
		justify-content: center;
	}
	.footer-copy {
		font-size: 10px;
		letter-spacing: 0;
		white-space: nowrap;
	}
}
