/* ----------------------------------------------------------
	レイアウト　モバイル用 (max-width: 768px)
---------------------------------------------------------- */
@media screen and (max-width: 768px) {
	.mobile-br {
		display: flex;
	}

/* =========================
	セクション
========================= */
	.section {
		padding: 60px 0;
	}

	.container {
		padding: 0 20px;
	}

	.section-title {
		font-size: var(--fs-lg);
		margin-bottom: 15px;
	}

	.section-subtitle {
		font-size: var(--fs-sub);
		margin-bottom: 40px;
	}

/* =========================
	ヘッダー
========================= */

	.header-inner {
		padding: 0 20px;
		height: 60px;
	}

	.logo img {
		height: 30px;
	}

/* =========================
	ナビゲーション
========================= */
	.hamburger-btn {
		display: block;
		background: none;
		border: none;
		z-index: 1100;
		color: var(--text-white);
	}
	.hamburger-btn .material-symbols-outlined {
		display: block;
		width: 24px;
		text-align: right;
	}

	.header-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 100%;
		height: 100dvh;
		background-color: var(--bg-dark);
		z-index: 200;
		transition: right 0.3s ease;


		overflow-y: auto;
		overflow-x: hidden;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 80px;
	}

	.header-nav.is-open {
		right: 0;
	}

	.header-nav,
	.header-nav * {
		box-sizing: border-box;
	}
	.header-nav-list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		margin: 0;
		padding: 0px 15px;
		padding-top: 80px;
	}

	.header-nav-list > li {
		display: block;
		width: 100%;
		height: auto;
		flex-direction: column;
		margin-bottom: 20px;
	}

	.header-nav-list > li > a {
		display: block;
		box-sizing: border-box;
		height: auto;
		width: 100%;
		font-size: var(--fs-sub);
		font-weight: 600;
		padding: 12px 20px;
		letter-spacing: 0.05em;
		border-left: 3px solid var(--primary-orange);
		max-width: 100%;
	}
	.header-nav-list > li + li.header-inquiry-btn,
	.header-nav-list > li + li.header-recruit-btn,
	.header-nav-list > li + li.header-en-btn {
		margin: 0px;
			margin-bottom: 20px;
	}

	.header-nav-list > li:hover .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: none;
	}

	.header-nav-list .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		pointer-events: auto;

		background-color: var(--bg-dark);
		box-shadow: none;
		border-radius: 0;
		padding: 0;
		width: 100%;

		margin-top: 8px;
		padding-left: 10px;
	}

	.header-nav-list .sub-menu li {
		border: none !important;
	}
	.header-nav-list .sub-menu li + li {
		border: none !important;
	}

	.header-nav-list .sub-menu li a {
		color: var(--bg-white);
		font-size: 14px;
		font-weight: 400;
		opacity: 0.85;
		padding: 8px 20px 8px 30px;
	}

	.header-nav-list a:active {
		opacity: 0.7;
	}

	.header-nav-list > .menu-item-has-children > a::after {
		display: none;
	}

	.header-nav-list > li.header-inquiry-btn,
	.header-nav-list > li.header-recruit-btn,
	.header-nav-list > li.header-en-btn {
		width: 100%;
		margin-left: 0;
	}

	.header-nav-list > li.header-inquiry-btn > a,
	.header-nav-list > li.header-recruit-btn > a {
		width: 100%;
	}

	.header-nav-list > li.header-en-btn > a {
		border-left: none;
		margin-bottom: 40px;
	}

	#js-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.5);
		z-index: 150;

		opacity: 0;
		visibility: hidden;
		transition: 0.3s;
	}

	#js-overlay.is-open {
		opacity: 1;
		visibility: visible;
	}

/* =========================
	フッター
========================= */


	footer {
		padding: 40px 0 20px;
	}

	.footer-top {
		flex-direction: column;
		gap: 24px;
	}

	.footer-list {
		grid-template-columns: 1fr;
		gap: 0px;
		width: 100%;
	}

	.footer-list > li.footer-col {
		gap: 8px;
	}

	.footer-list .sub-menu li {
		padding: 4px 0;
	}
	.footer-list .sub-menu a {
		padding: 6px 0;
	}

	.footer-list .footer-btn > a {
		margin: 12px 0;
	}

	.footer-list .footer-btn-en > a {
		justify-content: start;
	}

	.footer-logo-area {
		text-align: center;
	}

/* =========================
	ヒーローエリア
========================= */
	.page-hero {
		padding:68px 0 40px 0px
	}

	.btn-form {
		min-width: 100%;
		padding: 15px 20px;
	}

/* =========================
	ボタン
========================= */

	.btn-outline,
	.btn-inquiry-orange,
	.btn-form {
		min-width: 0 !important;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

}