@charset "UTF-8";

/* ==========================================================
   DAIDOKORO NAVIGATION
   PC / SP common navigation
   ========================================================== */

:root {
	--header-height-pc: 60px;
	--header-height-sp: 60px;
	--navigation-bg: rgba(0, 0, 0, .86);
	--navigation-text: #fff;
	--navigation-sub: rgba(255, 255, 255, .72);
	--navigation-line: rgba(255, 255, 255, .16);
}


/* ==========================================================
   HEADER
   ========================================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	width: 100%;
	height: var(--header-height-pc);
	background: var(--navigation-bg);
	box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

.site-header__inner {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}


/* ==========================================================
   LOGO
   ========================================================== */

.site-header__logo {
	flex: 0 0 160px;
	margin: 0 45px 0 0;
	padding: 0;
}

.site-header__logo a,
.site-header__logo img {
	display: block;
}

.site-header__logo img {
	width: 100%;
	height: auto;
}


/* ==========================================================
   GLOBAL NAVIGATION
   ========================================================== */

.global-navigation {
	flex: 1;
	height: 100%;
}

.global-navigation__panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
}

.global-navigation__list {
	display: flex;
	align-items: stretch;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.global-navigation__item {
	display: flex;
	position: relative;
	align-items: stretch;
	margin: 0;
	padding: 0;
}

.global-navigation__item > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 145px;
	height: 100%;
	padding: 0 22px;
	box-sizing: border-box;
	color: var(--navigation-text);
	text-decoration: none;
	transition:
		background-color .25s ease,
		color .25s ease;
}

.global-navigation__item > a:hover,
.global-navigation__item > a:focus-visible {
	background: #f3f2e8;
	color: #000;
}

.global-navigation__en {
	display: block;
	font-size: 18px;
	line-height: 1.2;
	letter-spacing: .04em;
}

.global-navigation__ja {
	display: block;
	margin-top: 2px;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.4;
}

.global-navigation__item::after {
	position: absolute;
	right: 22px;
	bottom: 0;
	left: 22px;
	height: 2px;
	background: #8e1b22;
	content: "";
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}

.global-navigation__item:hover::after,
.global-navigation__item:focus-within::after {
	transform: scaleX(1);
}


/* ==========================================================
   CONTACT CTA
   ========================================================== */

.global-navigation__sub {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
	padding-left: 24px;
}

.global-navigation__tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 170px;
	height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 999px;
	background: rgba(255, 255, 255, .06);
	color: #fff;
	box-sizing: border-box;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
	transition:
		background .25s ease,
		border-color .25s ease,
		color .25s ease;
}

.global-navigation__tel > span {
	margin-bottom: 2px;
	color: var(--navigation-sub);
	font-size: 9px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: .08em;
}

.global-navigation__tel strong {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .03em;
}

.global-navigation__tel:hover,
.global-navigation__tel:focus-visible {
	background: #fff;
	border-color: #fff;
	color: #000;
}

.global-navigation__tel:hover > span,
.global-navigation__tel:hover strong,
.global-navigation__tel:focus-visible > span,
.global-navigation__tel:focus-visible strong {
	color: #000;
}

.global-navigation__instagram {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, .45);
	border-radius: 50%;
	background: rgba(255, 255, 255, .06);
	box-sizing: border-box;
	transition:
		background .25s ease,
		border-color .25s ease;
}

.global-navigation__instagram:hover,
.global-navigation__instagram:focus-visible {
	background: #fff;
	border-color: #fff;
}

.global-navigation__instagram img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}


/* ==========================================================
   MENU BUTTON
   PCでは非表示
   ========================================================== */

.menu-toggle {
	display: none;
}


/* ==========================================================
   TABLET
   ========================================================== */

@media screen and (max-width: 1100px) and (min-width: 901px) {

	.site-header__inner {
		padding-right: 20px;
		padding-left: 20px;
	}

	.site-header__logo {
		flex-basis: 130px;
		margin-right: 20px;
	}

	.global-navigation__item > a {
		min-width: 120px;
		padding-right: 14px;
		padding-left: 14px;
	}

	.global-navigation__en {
		font-size: 16px;
	}

	.global-navigation__sub {
		gap: 10px;
		padding-left: 16px;
	}

	.global-navigation__tel {
		min-width: 150px;
		padding-right: 14px;
		padding-left: 14px;
	}

	.global-navigation__tel strong {
		font-size: 15px;
	}

	.global-navigation__instagram {
		width: 44px;
		height: 44px;
	}
}


/* ==========================================================
   MOBILE
   ========================================================== */

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

	.site-header {
		height: var(--header-height-sp);
	}

	.site-header__inner {
		justify-content: space-between;
		padding: 0 8px 0 18px;
	}

	.site-header__logo {
		flex: 0 0 125px;
		margin: 0;
	}

	.menu-toggle {
		display: flex;
		position: relative;
		z-index: 1002;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		width: 64px;
		height: var(--header-height-sp);
		margin: 0;
		padding: 0;
		border: 0;
		background: transparent;
		color: #fff;
		font: inherit;
		cursor: pointer;
	}

	.menu-toggle__lines {
		display: block;
		position: relative;
		width: 30px;
		height: 16px;
	}

	.menu-toggle__lines span {
		position: absolute;
		left: 0;
		width: 30px;
		height: 2px;
		background: currentColor;
		transition:
			top .3s ease,
			transform .3s ease,
			opacity .2s ease;
	}

	.menu-toggle__lines span:nth-child(1) {
		top: 0;
	}

	.menu-toggle__lines span:nth-child(2) {
		top: 7px;
	}

	.menu-toggle__lines span:nth-child(3) {
		top: 14px;
	}

	.menu-toggle__label {
		margin-top: 6px;
		font-size: 10px;
		font-weight: 400;
		line-height: 1;
	}

	.menu-toggle.is-open .menu-toggle__lines span:nth-child(1) {
		top: 7px;
		transform: rotate(45deg);
	}

	.menu-toggle.is-open .menu-toggle__lines span:nth-child(2) {
		opacity: 0;
	}

	.menu-toggle.is-open .menu-toggle__lines span:nth-child(3) {
		top: 7px;
		transform: rotate(-45deg);
	}

	.global-navigation {
		position: fixed;
		top: var(--header-height-sp);
		left: 0;
		z-index: 1001;
		width: 100%;
		height: calc(100dvh - var(--header-height-sp));
		background: rgba(0, 0, 0, .65);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			opacity .3s ease,
			visibility .3s ease;
	}

	.global-navigation.is-open {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.global-navigation__panel {
		display: block;
		width: 100%;
		height: auto;
		max-height: 100%;
		overflow-y: auto;
		background: rgba(0, 0, 0, .94);
		transform: translateY(-10px);
		transition: transform .3s ease;
		-webkit-overflow-scrolling: touch;
	}

	.global-navigation.is-open .global-navigation__panel {
		transform: translateY(0);
	}

	.global-navigation__list {
		display: block;
		height: auto;
	}

	.global-navigation__item {
		display: block;
		height: auto;
		border-bottom: 1px solid var(--navigation-line);
	}

	.global-navigation__item::after {
		display: none;
	}

	.global-navigation__item > a {
		display: block;
		position: relative;
		width: 100%;
		min-width: 0;
		height: auto;
		padding: 18px 55px 17px 20px;
		color: #fff;
		text-align: left;
	}

	.global-navigation__item > a::after {
		position: absolute;
		top: 50%;
		right: 22px;
		width: 8px;
		height: 8px;
		border-top: 1px solid rgba(255, 255, 255, .65);
		border-right: 1px solid rgba(255, 255, 255, .65);
		content: "";
		transform: translateY(-50%) rotate(45deg);
	}

	.global-navigation__item > a:hover,
	.global-navigation__item > a:focus-visible {
		background: rgba(255, 255, 255, .08);
		color: #fff;
	}

	.global-navigation__en {
		font-size: 20px;
		line-height: 1.2;
	}

	.global-navigation__ja {
		margin-top: 4px;
		font-size: 12px;
	}

	.global-navigation__sub {
		display: grid;
		grid-template-columns: 1fr;
		gap: 10px;
		margin: 0;
		padding: 20px;
	}

	.global-navigation__tel {
		width: 100%;
		min-width: 0;
		height: 60px;
		padding: 0 18px;
		border-color: rgba(255, 255, 255, .35);
		border-radius: 8px;
		background: rgba(255, 255, 255, .08);
		color: #fff;
	}

	.global-navigation__tel > span {
		color: rgba(255, 255, 255, .72);
		font-size: 10px;
	}

	.global-navigation__tel strong {
		color: #fff;
		font-size: 22px;
	}

	.global-navigation__instagram {
		width: 100%;
		height: 54px;
		padding: 12px;
		border-color: rgba(255, 255, 255, .35);
		border-radius: 8px;
		background: rgba(255, 255, 255, .08);
	}

	.global-navigation__instagram img {
		width: 28px;
		height: 28px;
	}

	html.is-menu-open,
	html.is-menu-open body {
		overflow: hidden;
	}
}


/* ==========================================================
   REDUCED MOTION
   ========================================================== */

@media (prefers-reduced-motion: reduce) {

	.global-navigation,
	.global-navigation__panel,
	.menu-toggle__lines span,
	.global-navigation__item > a,
	.global-navigation__item::after,
	.global-navigation__tel,
	.global-navigation__instagram {
		transition: none;
	}
}
