@charset "UTF-8";
/* 見出しデザイン・テキスト装飾ボタン・フォーム・カードなど共通パーツ */

/******************/
/* 共通部分 *********/

.section-title {
	margin-bottom: 40px;
	text-align: center;
}

.en-title {
	font-family: var(--font-en);
	font-size: var(--fz-20);
	line-height: var(--lh-tight);
	margin-bottom: 20px;
}

.ja-title {
	font-family: var(--font-ja);
	font-size: var(--fz-40);
	line-height: var(--lh-tight);
}

.text {
	font-size: var(--fz-18);
	line-height: 2;
	overflow-wrap: break-word;
	word-wrap: break-word;
	white-space: normal;
	word-break: break-all;
}

.text .pc {
	display: block;
}

.text .sp {
	display: none;
}

/* PCで改行したい / SPでは1行 */
.br-pc {
	display: inline;
}
/* PCでは1行 / SPで読みやすく改行 */
.br-sp {
	display: none;
}

.sp-only {
	display: none;
}

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

	.br-sp {
		display: inline;
	}
}

@media screen and (max-width: 500px) {
	.text {
		font-size: 13px;
	}
	.section-title {
		font-size: 26px;
		margin-bottom: 40px;
	}
	.en-title {
		margin-bottom: 10px;
	}
	.text .pc {
		display: none;
	}
	.text .sp {
		display: block;
	}
	.en-title {
		font-size: 14px;
	}

	.ja-title {
		font-size: 24px;
	}
}

/******************/
/* btn**********/

.btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--akamaru-color-navy_main);
	color: var(--akamaru-color-white);
	background-color: var(--akamaru-color-navy_main);
	width: 285px;
	height: 60px;
	font-size: 1.4rem;
	text-decoration: none;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	transition: color 0.3s ease, background-color 0.3s ease;
}

.btn.btn-white {
	background-color: var(--akamaru-color-white);
	color: var(--akamaru-color-navy_main);
}

.btn::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: var(--akamaru-color-white);
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	z-index: -1;
}

.btn.btn-white::before {
	background-color: var(--akamaru-color-navy_main);
}

.btn:hover::before {
	transform: translateX(0);
}

.btn:hover {
	color: var(--akamaru-color-navy_main);
}
.btn.btn-white:hover {
	color: var(--akamaru-color-white);
}
.arrow {
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 14px;
	height: 1px;
	background-color: currentColor;
	transition: all 0.3s ease;
}
.arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 6px;
	height: 6px;
	border-top: 1px solid currentColor;
	border-right: 1px solid currentColor;
	transform: translateY(-50%) rotate(45deg);
	transition: all 0.3s ease;
}

.btn:hover .arrow {
	transform: translateY(-50%) translateX(5px);
}
.btn.btn-lg {
	width: 380px;
	height: 80px;
	font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
	.btn {
		width: 100%;
		max-width: 285px;
		height: 50px;
		font-size: 1.3rem;
	}

	.btn.btn-lg {
		max-width: 380px;
		width: 100%;
		height: 50px;
		font-size: 1.4rem;
	}

	.arrow {
		right: 18px;
		width: 12px;
	}

	.arrow::after {
		width: 5px;
		height: 5px;
	}
}

/* circle-btn */

.circle-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid #afafaf;
	background-color: transparent;
	cursor: pointer;
	overflow: hidden;
	transition: border-color 0.3s ease;
}

.circle-btn::before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23afafaf' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 1 L8 5 L2 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 1;
	transform: translateX(0);
	transition: opacity 0.25s ease, transform 0.35s ease;
}

.circle-btn:hover::before {
	opacity: 0;
	transform: translateX(15px);
}

.circle-btn::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23afafaf' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 1 L8 5 L2 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	opacity: 0;
	transform: translateX(-15px);
	transition: opacity 0.25s ease, transform 0.35s ease;
}

.circle-btn:hover::after {
	opacity: 1;
	transform: translateX(0);
}

.circle-btn:hover {
	background-color: transparent;
	border-color: #afafaf;
}
.circle-btn.is-filled {
	background-color: #fff;
	border-color: #fff;
}

.circle-btn.is-filled::before,
.circle-btn.is-filled::after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10' fill='none' stroke='%23000' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 1 L8 5 L2 9'/%3E%3C/svg%3E");
}

/* submit-btn */
/* submit-btn */

.submit-btn {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 285px !important;
	height: 60px;
	border: 1px solid var(--akamaru-color-navy_main) !important;
	background-color: var(--akamaru-color-navy_main) !important;
	color: var(--akamaru-color-white);
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
	margin: 0 auto !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.submit-btn:hover {
	transform: scale(1.04);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
	transform: scale(0.98);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

@media screen and (max-width: 768px) {
	.submit-btn {
		width: 100%;
		max-width: 285px;
		height: 50px;
		font-size: 1.3rem;
	}
}

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

.news-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(16px, 2vw, 30px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-card {
	width: 100%;
}
.news-link {
	display: block;
	background: var(--akamaru-color-white, #fff);
	overflow: clip;
	box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	transform: translateY(0);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
	text-decoration: none;
	color: inherit;
}
.news-link:hover,
.news-link:focus-visible {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-2px);
	outline: none;
}

.news-card .thumbnail {
	aspect-ratio: 16/9;
	background: #f2f4f7;
	overflow: hidden;
}
.news-card .thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1) translateZ(0);
	transition: transform 0.6s ease, filter 0.3s linear;
	will-change: transform;
}
.news-link:hover .thumbnail img,
.news-link:focus-visible .thumbnail img {
	transform: scale(1.05);
}

.news-content {
	padding: 16px 18px 20px;
}
.news-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 8px;
}
.news-date {
	font-size: var(--fz-14, 14px);
	letter-spacing: var(--ls-loose, 0.02em);
	color: var(--akamaru-color-gray_main, #666);
}
.news-tag {
	border-radius: 999px;
	border: 0.5px solid var(--akamaru-color-navy_main, #1e2a44);
	font-size: 10px;
	line-height: 1;
	padding: 4px 12px;
	color: var(--akamaru-color-white, #fff);
	background: var(--akamaru-color-navy_main, #1e2a44);
}

.news-title {
	font-size: clamp(14px, 1.6vw, 18px);
	line-height: 1.6;
	font-weight: 500;
	display: inline-block;
	position: relative;
}

.news-link:hover .thumbnail img,
.news-link:focus-visible .thumbnail img {
	filter: brightness(1.02);
}

@media (prefers-reduced-motion: reduce) {
	.news-link,
	.thumbnail img {
		transition: none;
	}
	.news-link:hover {
		transform: none;
		box-shadow: none;
	}
}

/* breadcrumb */

/* パンくずリスト */

.breadcrumb {
	width: 100%;
	padding: 20px 0;
}

.breadcrumb ul {
	width: 90%;
	margin: 0 auto;
}

.breadcrumb li {
	display: inline;
	font-size: clamp(10px, 0.8333vw, 12px);
}

.breadcrumb li a {
	color: inherit;
	text-decoration: none;
	color: #bc002d;
}

.breadcrumb li:first-child a {
	color: #9e9e9e;
}

.breadcrumb li + li:before {
	content: '/';
	margin: 0 0.5em;
	color: #333;
}

@media screen and (max-width: 900px) {
	.breadcrumb {
		flex-wrap: wrap;
	}
	.breadcrumb .text {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 500px) {
	.breadcrumb .text {
		font-size: 1.2rem;
	}
}

/******************/
/* cm-cv**********/

.cm-cv_container {
	position: relative;
}
.cm-cv_content {
	position: absolute;
	top: var(--space-lg);
	left: 50%;
	transform: translate(-50%, 0);
}

.cm-cv_bg {
	height: 100vh;
	object-fit: cover;
}

.cm-cv_logo {
	margin-bottom: var(--space-sm);
	margin-bottom: clamp(20px, 2.77vw, 40px);
}
.cm-cv_logo img {
	margin: 0 auto;
	display: block;
}

.cm-cv_text {
	text-align: center;
	font-size: var(--fz-28);
	line-height: var(--lh-loose);
	margin-bottom: clamp(20px, 2.77vw, 40px);
}

.cm-cv_btn {
	margin: 0 auto;
}

@media screen and (max-width: 1024px) {
	.cm-cv_content {
		top: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
		padding-inline: var(--space-md);
	}

	.cm-cv_text {
		font-size: clamp(18px, 2.5vw, 24px);
	}
}

@media screen and (max-width: 768px) {
	.cm-cv_container {
		position: relative;
		height: 50vh;
	}

	@media screen and (max-width: 500px) {
		.cm-cv_container {
			height: 90vh;
		}
	}

	.cm-cv_bg {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.cm-cv_content {
		position: absolute;
		inset: 0;
		top: 30%;
		left: 50%;
		transform: translate(-50%, -50%);
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;

		padding: clamp(16px, 4vw, 24px);
		text-align: center;
	}

	.cm-cv_logo img {
		width: min(60%, 220px);
	}

	.cm-cv_text {
		font-size: clamp(14px, 3.6vw, 16px);
		line-height: 1.7;
		margin-bottom: var(--space-sm);
	}

	.cm-cv_btn {
		margin-top: var(--space-xs);
	}
}

/******************/
/* cm-onlinestore**********/

.cm-onlinestore {
	position: relative;
	overflow: clip;
}
.cm-onlinestore .background,
.cm-onlinestore .background > img {
	display: block;
	width: 100%;
	height: auto;
}
.cm-onlinestore-container {
	position: relative;
	border-bottom: 10px solid var(--akamaru-color-navy_main);
}
.cm-onlinestore-container::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	pointer-events: none;
	transition: opacity 0.6s ease;
	opacity: 1;
	z-index: 1;
}
.cm-onlinestore .background img {
	filter: grayscale(15%) brightness(0.95);
	transition: filter 0.6s ease;
}
.cm-onlinestore-container .onlinestore-container {
	position: absolute;
	inset: 0;
	margin: auto;
	transform: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(80%, 1440px);
	z-index: 2;
}
.online-store-content-wrapper {
	color: var(--akamaru-color-white);
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.online-store-content-wrapper .title-wrapper {
	margin-bottom: var(--space-sm);
}
.online-store-content-wrapper .en-title {
	font-size: clamp(48px, 6.5vw, 90px);
	line-height: var(--lh-tight);
	letter-spacing: var(--ls-loose);
}
.online-store-content-wrapper .ja-title {
	font-size: clamp(18px, 3.2vw, var(--fz-36));
	line-height: var(--lh-tight);
}

.onlinestore-link-wrapper {
	color: var(--akamaru-color-white);
	text-align: center;
}
.onlinestore-link {
	position: relative;
	display: grid;
	place-items: center;
	width: clamp(200px, 28vw, 360px);
	aspect-ratio: 1/1;
	border-radius: 50%;
	text-decoration: none;
	isolation: isolate;
}

.onlinestore-link .progress {
	position: absolute;
	inset: 0;
}

.onlinestore-link .progress::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35) inset;
	transition: opacity 0.3s ease;
}

.onlinestore-link .progress::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid transparent;
	border-top-color: #fff;
	transform: rotate(0deg);
	opacity: 0;
	transition: opacity 0.3s ease, transform 2s ease-in-out;
	filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.7));
}

.onlinestore-link:hover .progress::after,
.onlinestore-link:focus-visible .progress::after {
	opacity: 1;
	transform: rotate(360deg);
}

.onlinestore-link .label {
	display: inline-block;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.04em;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
	font-size: clamp(16px, 2.2vw, 22px);
}

@media (prefers-reduced-motion: reduce) {
	.onlinestore-link .progress::after {
		animation: none;
	}
	.cm-onlinestore-container::after,
	.cm-onlinestore .background img {
		transition: none;
	}
}

@media screen and (min-width: 1620px) {
	.cm-onlinestore .background,
	.cm-onlinestore .background > img {
		height: 700px;
		object-fit: cover;
		object-position: top;
	}
}

@media screen and (max-width: 768px) {
	.cm-onlinestore {
		position: relative;
		overflow: hidden;
		height: 90vh;
	}

	.cm-onlinestore-container {
		position: relative;
		border-bottom: 10px solid var(--akamaru-color-navy_main);
		overflow: hidden;
		height: 100%;
	}

	.cm-onlinestore .background {
		position: absolute;
		inset: 0;
		z-index: 0;
	}

	.cm-onlinestore .background img {
		display: block;
		width: 100%;
		height: auto;
		min-height: 100%;
		max-height: none;
		object-position: center top;
		object-fit: cover;
	}

	.cm-onlinestore-container::after {
		content: '';
		position: absolute;
		inset: 0;
		background: rgba(0, 0, 0, 0.45);
		z-index: 1;
	}
	.cm-onlinestore-container .onlinestore-container {
		position: relative;
		z-index: 2;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 88%;
		margin: 0 auto;
		padding: 60px 20px;
		gap: 40px;
	}
	.online-store-content-wrapper {
		color: var(--akamaru-color-white);
		text-align: center;
		width: 100%;
		max-width: 480px;
		text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
	}
	.online-store-content-wrapper .text {
		font-size: clamp(13px, 2.8vw, 15px);
		line-height: 1.8;
		max-width: 95%;
		margin: 0 auto;
	}
	.onlinestore-link-wrapper {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.onlinestore-link {
		width: clamp(180px, 38vw, 260px);
		aspect-ratio: 1 / 1;
	}

	.onlinestore-link .label {
		font-size: clamp(14px, 3.5vw, 17px);
		line-height: 1.4;
	}
}

@media screen and (max-width: 500px) {
	.online-store-content-wrapper {
		text-align: left;
		padding-left: 8px;
	}
	.onlinestore-link-wrapper {
		justify-content: center;
	}
	.online-store-content-wrapper .title-wrapper {
		text-align: center;
	}
}

/******************/
/* cm-contact**********/

.conatct-container {
	position: relative;
}

.contact-content {
	background-color: var(--akamaru-color-white);
	position: absolute;
	top: 80%;
	right: 0;
	padding: 90px;
	width: 90%;
	border-bottom-left-radius: 150px;
}

.contact-content .flex-container {
	justify-content: center;
	gap: clamp(80px, 11.111vw, 160px);
	flex-wrap: nowrap;
}

.contact-content .section-title {
	margin-bottom: 60px;
	text-align: left;
}

.contact-content .ja-title {
	font-size: var(--fz-24);
}

.contact-content .en-title {
	font-size: clamp(48px, 6.5vw, 80px);
	line-height: var(--lh-tight);
	letter-spacing: var(--ls-loose);
}

.contact-content .cv-wrapper .tel {
	font-size: 50px;
	letter-spacing: 0.05em;
	font-family: var(--font-en);
}

.contact-content .cv-wrapper .tel span {
	font-size: 30px;
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.contact-container {
		position: relative;
		overflow: hidden;
	}

	.contact-container .thumbnail {
		width: 100%;
		position: relative;
		z-index: 0;
	}

	.contact-container .thumbnail img {
		display: block;
		width: 100%;
		height: auto;
		max-height: 380px;
		object-fit: cover;
		aspect-ratio: 4 / 3;
	}
	.contact-content {
		position: relative;
		top: 0;
		width: 100%;
		margin: 0 auto;
		background-color: var(--akamaru-color-white);
		padding: 48px 24px;
		border-radius: 0;
		z-index: 2;
		box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	}

	.contact-content .flex-container {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
		text-align: center;
	}
	.contact-content .section-title {
		margin-bottom: 24px;
		text-align: center;
	}

	.contact-content .en-title {
		font-size: clamp(36px, 7vw, 52px);
		line-height: 1.1;
		margin-bottom: 6px;
	}

	.contact-content .ja-title {
		font-size: clamp(18px, 4vw, 22px);
		margin-bottom: 16px;
	}

	.contact-content .text {
		font-size: clamp(14px, 3.5vw, 16px);
		line-height: 1.8;
		margin-bottom: 24px;
		text-align: left;
	}

	.contact-content .cv-wrapper {
		text-align: center;
		width: 80%;
	}

	.contact-content .cv-wrapper .tel {
		display: block;
		font-size: clamp(28px, 6vw, 36px);
		letter-spacing: 0.05em;
		font-family: var(--font-en);
		margin-bottom: 10px;
		color: var(--akamaru-color-navy_main);
		text-decoration: none;
	}

	.contact-content .cv-wrapper .tel span {
		font-size: clamp(18px, 3.5vw, 22px);
		margin-right: 6px;
	}
}

@media screen and (max-width: 500px) {
	.contact-container .thumbnail img {
		max-height: 200px;
	}
}

/******************/
/* footer**********/

.site-footer {
	position: relative;
	background-color: #fff;
	background-image: url('../images/footer_bg.jpg');
	background-size: contain;
	background-repeat: repeat;
	padding: 450px 0 40px;
	font-family: 'Yu Mincho', 'Hiragino Mincho ProN', serif;
	color: var(--akamaru-color-navy_main);
	z-index: -1;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	max-width: 1320px;
	width: 90%;
	margin: 0 auto;
	padding: 80px 0;
	border-top: 0.5px solid var(--akamaru-color-gray_main);
	border-bottom: 0.5px solid var(--akamaru-color-gray_main);
	position: relative;
}
.footer-info {
	flex-basis: 28%;
	padding-right: 40px;
	position: relative;
}
.footer-info::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 0.5px;
	height: 100%;
	background-color: var(--akamaru-color-gray_main);
}

.footer-logo img {
	display: block;
	margin-bottom: 35px;
	width: 160px;
	height: auto;
}

.footer-address {
	font-size: var(--fz-14);
	line-height: 1;
}

.footer-address .address {
	line-height: 1.4;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 0.5px solid var(--akamaru-color-gray_main);
	display: inline-block;
}

.footer-address .tel,
.footer-address .fax {
	margin-top: 4px;
}
.footer-nav {
	flex-basis: 68%;
	padding-left: 60px;
	position: relative;
}

.footer-menu {
	display: flex;
	justify-content: space-between;
	gap: 60px;
}

.menu-column {
	flex: 1;
}

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

.menu-item {
	margin-bottom: var(--space-xs);
}

.menu-title {
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	color: #000;
	padding-bottom: 4px;
	transition: all 0.3s ease;
	position: relative;
}

.menu-title::before {
	content: '';
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--akamaru-color-red_accent01);
	opacity: 0.6;
	position: absolute;
	top: -15px;
}
.menu-title::after {
	content: '';
	display: block;
	width: 100%;
	min-width: 125px;
	height: 1px;
	position: absolute;
	top: -15px;
	left: 0;
	z-index: -1;
	background-color: var(--akamaru-color-gray_main);
}

.menu-title:hover {
	color: #b51a1a;
}

.menu-child {
	margin-top: 8px;
	padding-left: 0;
}

.menu-child li {
	line-height: 1.9;
}

.menu-child a {
	font-size: 13px;
	color: #444;
	text-decoration: none;
	transition: color 0.3s ease;
}

.menu-child a:hover {
	color: #b51a1a;
}

.footer-submenu {
	max-width: 1320px;
	width: 90%;
	margin: 20px auto 0;
	padding-top: 20px;
	display: flex;
	justify-content: flex-start;
}

.footer-submenu ul {
	display: flex;
	gap: 32px;
	font-size: 12px;
}

.footer-submenu a {
	color: #444;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-submenu a:hover {
	color: #b51a1a;
}

.copyright {
	max-width: 1320px;
	width: 90%;
	margin: 20px auto 0;
	font-size: 12px;
	color: #666;
	text-align: left;
}

@media screen and (max-width: 980px) {
	.menu-title::after {
		min-width: 0;
	}
}

@media screen and (max-width: 768px) {
	.site-footer {
		background-size: cover;
		padding: 120px 0 30px;
	}

	.footer-inner {
		width: 90%;
		margin: 0 auto;
		padding: 0;
		border: none;
		flex-direction: column-reverse;
		gap: 40px;
	}

	.footer-info {
		text-align: center;
		margin-bottom: 0;
		padding: 0;
	}

	.footer-logo img {
		margin: 0 auto 20px;
	}

	.footer-address {
		font-size: 14px;
		line-height: 1.8;
	}

	.footer-nav {
		width: 100%;
		padding-left: 0;
	}

	.footer-menu {
		display: block;
		border-top: 1px solid rgba(0, 0, 0, 0.2);
	}

	.menu-column {
		padding: 0;
		border: none;
	}

	.menu-item {
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.2);
		position: relative;
	}

	.menu-title::before,
	.menu-title::after {
		display: none !important;
		content: none !important;
	}

	.menu-title {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		font-size: 15px;
		text-decoration: none;
		color: var(--akamaru-color-navy_main);
		padding: 14px 0;
		position: relative;
		cursor: pointer;
	}

	.menu-title .icon {
		font-size: 16px;
		line-height: 1;
		margin-left: 8px;
		color: var(--akamaru-color-navy_main);
		flex-shrink: 0;
		transition: transform 0.3s ease;
	}

	.menu-item.open .menu-title .icon {
		transform: rotate(180deg);
	}

	.menu-child {
		display: none;
		padding: 10px 0 12px 12px;
		background: rgba(255, 255, 255, 0.7);
	}

	.menu-item.open .menu-child {
		display: block;
	}

	.menu-child a {
		display: block;
		color: #444;
		font-size: 14px;
		padding: 8px 0;
		text-decoration: none;
		transition: color 0.3s ease;
	}

	.menu-child a:hover {
		color: var(--akamaru-color-red_accent01);
	}

	.footer-submenu {
		text-align: center;
		justify-content: center;
	}

	.footer-submenu ul {
		flex-direction: column;
		gap: 10px;
	}

	.footer-submenu a {
		font-size: 13px;
	}

	.copyright {
		text-align: center;
		margin-top: 30px;
		font-size: 12px;
	}

	.footer-info::after {
		display: none;
	}

	.footer-address .address {
		border-bottom: 0;
	}
}

@media screen and (max-width: 500px) {
	.site-footer {
		padding-top: var(--space-sm);
	}
}

/******************/
/* common-top**********/

.common-top {
	position: relative;
	/* height: clamp(260px, 48.6vw, 700px); */
}
.common-title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	writing-mode: vertical-lr;
	letter-spacing: 0.2em;
	padding: 1em;
	z-index: 2;
}

.common-title_white-bg:before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.45);
	backdrop-filter: blur(2px);
	z-index: -1;
	border-radius: 3px;
}

.common-title .en-title {
	font-size: var(--fz-18);
	color: var(--akamaru-color-navy_main);
}

.common-title .jp-title {
	font-size: var(--fz-36);
	line-height: 1.2;
	letter-spacing: 0.2em;
	white-space: nowrap;
}
@media screen and (min-width: 1620px) {
	.common-top img {
		height: 700px;
		object-fit: cover;
	}
}

.common-top .thumbnail img {
	object-position: center center;
}

@media screen and (max-width: 768px) {
	.common-top .thumbnail img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.common-title .jp-title {
		font-size: var(--fz-40);
	}
}

@media screen and (max-width: 500px) {
	.common-title .jp-title {
		font-size: 24px;
	}
}

/* lead-bg-slide */

.lead-bg-slide {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 60px;
	height: 211px;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
}

.lead-bg-slide .splide__slide {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}

.lead-bg-slide .splide__slide img {
	display: block;
	width: 100%;
	height: auto;
	mix-blend-mode: multiply;
	opacity: 0.2;
	object-fit: contain;
}

.lead-bg-slide .splide__list {
	will-change: transform;
}
.lead-bg-slide .splide__track {
	overflow: visible;
}

@media screen and (max-width: 500px) {
	.lead-bg-slide {
		bottom: 30px;
		height: 150px;
	}

	.lead-bg-slide .splide__slide img {
		width: 100vw;
		height: auto;
	}
}

/* map-link */
.maplink {
	position: relative;
	padding-right: 15px;
	padding-left: 10px;
	display: inline-block;
	text-decoration: underline;
}
.maplink::after {
	content: '\f08e';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 12px;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	pointer-events: none;
}

/* grecaptcha-badge */
.grecaptcha-badge {
	display: none;
}

.wpcf7-turnstile {
	text-align: center;
}
