/* ---------- all ---------- */

.pc_hide_992, .pc_hide_480 {
	display: none;
}

.sp_hide_992, .sp_hide_480 {
	display: block;
}


/* ---------- Header Styles ---------- */

.header {
	position: relative;
	padding: 15px 0 0 0;
	border-radius: 12px;
	max-width: 1200px;
	margin: 0 auto 20px;
	width: calc(100% - 30px);
	z-index: 1;
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

h1.header__left {
	display: flex;
	align-items: center;
	gap: 15px;
	flex-wrap: wrap;
}

.header__logos {
	display: flex;
}

.header__logos img {
	height: 60px;
	margin-right: 5px;
}

.header_tx_right {
	display: flex;
	flex-direction: column;
}

.header__title {
	display: flex;
	flex-direction: column;
}

.header__sub-title {
	font-size: 20px;
	font-weight: bold;
	line-height: 1;
}

/* 電話番号 */
.header__right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.header__contact {
	display: flex;
	align-items: center;
	gap: 16px;
	font-size: 12px;
	flex-wrap: wrap;
	font-weight: bold;
}

.header__hours {
	font-size: 10px;
}

.header__tel {
	display: flex;
	align-items: center;
	font-family: 'Gill Sans MT', sans-serif;
	gap: 6px;
	font-size: 24px;
	font-weight: bold;
}

/* ハンバーガー */
.menu-wrapper {
	position: relative;
}

.menu-icon {
	width: 40px;
	height: 30px;
	position: fixed;
	/* ← fixedにして常に左上固定 */
	top: 20px;
	right: 20px;
	cursor: pointer;
	z-index: 5;
	display: inline-block;
}

.menu-icon span {
	display: block;
	height: 4px;
	margin: 6px 0;
	background: #333;
	border-radius: 2px;
	transition: 0.4s;
}

#menu-toggle:checked+.menu-icon span:nth-child(1) {
	/* バツ印の回転中心を線の中心にする */
	transform-origin: center;
	/* 2番目の線の位置に移動させて、45度回転 */
	transform: translateY(10px) rotate(45deg);
}

#menu-toggle:checked+.menu-icon span:nth-child(2) {
	opacity: 0;
}

#menu-toggle:checked+.menu-icon span:nth-child(3) {
	/* バツ印の回転中心を線の中心にする */
	transform-origin: center;
	/* 2番目の線の位置に移動させて、-45度回転 */
	transform: translateY(-10px) rotate(-45deg);
}

/* オーバーレイ背景 */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: 0.4s;
	z-index: 3;
}

#menu-toggle:checked~.overlay {
	opacity: 1;
	pointer-events: auto;
}

/* メニュー本体（左から出す） */
.menu {
	position: fixed;
	top: 0;
	right: -250px;
	/* ← 初期位置を左へ */
	width: 250px;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
	transition: right 0.4s ease;
	z-index: 4;
}

#menu-toggle:checked~.menu {
	right: 0;
	/* ← 開いたときは左0へ */
}

.menu ul {
	list-style: none;
	padding: 60px 20px;
}

.menu li {
	margin: 20px 0;
}

.menu a {
	text-decoration: none;
	color: #333;
	font-size: 1.2rem;
	transition: color 0.3s;
}

.menu a:hover {
	color: #007bff;
}

/* ナビゲーション */
.header__nav {
	margin-top: 13px;
	text-align: center;
}

.header__nav ul {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
}

.header__nav a {
	font-weight: bold;
	font-size: 16px;
	color: #222;
	text-decoration: none;
}

.header__nav a:hover {
	opacity: 0.7;
}


/* ---------- Main Visual ---------- */
main {
	position: relative;
	z-index: 0;
}

.mv {
	position: relative;
	height: 720px;
	background-image: url('../img/bg_mv.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
	border-radius: 24px;
	margin: -60px 3.125% 50px 3.125%;
	
}

.mv__inner {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	height: 100%;
}

.mv__image {
	width: 100%;
	max-width: 634px;
	margin-bottom: -50px;
}

.mv__text-content {
	width: 100%;
	max-width: 600px;
	padding: 0 0 47px 0;
	margin: 0 10px 0 0;
	display: flex;
	flex-direction: column;
}

.mv__badge {
	display: inline-block;
	position: relative;
	color: var(--color-primary);
	font-size: 32px;
	font-weight: 500;
	margin: 0 auto 25px;
}

.mv__badge::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 100%;
	height: 0.4em;
	background-image: url("../img/underline.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	pointer-events: none;
}

.mv__text-content h2 {
	font-size: clamp(49px, 4vw, 64px);
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 20px;
	letter-spacing: 0.03em;
}

.mv__text-content h2 span {
	color: #c30108;
	background-color: #fff;
	padding: 0 10px 5px 10px;
	margin-right: 10px;
}

.mv__text-content h2 span.mv__h2 {
	color: #333;
	background-color:transparent;
	padding: 0 0 0 8%;
}

.mv__sub-title {
	font-size: clamp(23px, calc(0.0322 * 100vw - 10.02px), 30px);
	font-weight: bold;
	margin-bottom: 32px;
}

.mv__highlight {
	position: relative;
	display: inline-block;
	background: top left / 1em .5em repeat-x radial-gradient(circle, #c30108 0.12em, rgba(0,0,0,0) 0.12em);
	padding-top: 0.3em;
}


.mv__description {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 38px;
}

.tx_top_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 20px;
	font-weight: 600;
	color: #c30108;
	margin: 0 0 8px 0;
}

.tx_top_btn::before, .tx_top_btn::after {
	content: "";
	width: 2px;
	height: 14.5px;
	background-color: #c30108;
}

.tx_top_btn::before {
	transform: rotate(-35deg);
	margin-right: 20px;
}

.tx_top_btn::after {
	transform: rotate(35deg);
	margin-left: 20px;
}

.mv__button {
	position: relative;
	width: 100%;
	max-width: 475px;
	height: 70px;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg, #063362 0%, #27B799 100%);
	color: #fff;
	padding: 18px 36px;
	font-size: 18px;
	font-weight: 600;
	border-radius: 40px;
	transition: background 0.3s;
	margin: 0 auto;
	justify-content: center;
	z-index: 2;
}

.mv__button:hover, .request__button:hover, .footer__button:hover, .request-button:hover {
	background: linear-gradient(90deg, #055 0%, #1ca);
}

.mv__button span {
	display: contents;
}

.bg_mv {
	position: relative;
}

/* ---------- 帯 ---------- */
.banner {
	background-color: #003264;
	padding: 20px;
	text-align: center;
	color: #fff;
}

.banner__inner {
	display: flex;
	width: 100%;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.banner__title {
	position: relative;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding-right: 20px;
}

.banner__text {
	width: 407px;
	padding-left: 20px;
	padding-right: 30px;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: 0.05em;
	font-weight: 500;
	border-left: 3px solid #fff;
	text-align: start;
}

.banner__contact {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.banner__tel {
	display: flex;
	align-items: center;
	font-family: 'Gill Sans MT', sans-serif;
	font-size: 40px;
	font-weight: bold;
}

.banner__tel span {
	padding-left: 15px;
	text-decoration: none;
}

.banner__time {
	font-size: 12px;
	font-weight: bold;
	text-align: start;
	padding-left: 20px;
}


/* ---------- 選ばれる理由 ---------- */
.reason {
	position: relative;
	padding: 80px 20px;
}

.reason_bg {
	position: absolute;
	top: -217px;
	left: 0;
	width: 100%;
	height: 113%;
	background: linear-gradient(to right, rgba(149, 219, 149, 0.2), rgba(229, 225, 78, 0.2));
	clip-path: polygon(100% 40%, 100% 100%, 0 100%, 0 33%);
	z-index: -1;
}

.reason__inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.reason__problem {
	width: 100%;
	max-width: 1000px;
	position: relative;
	text-align: center;
	background-color: #003264;
	border-radius: 20px;
	margin: 0 auto 40px;
	padding: 60px 0 35px;
}

.reason__problem p {
	font-size: 40px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 16px;
}

.reason__problem ul {
	display: inline-block;
	text-align: left;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
	padding: 20px 30px;
	color: #fff;
}

.reason__problem ul li {
	background-image: repeating-linear-gradient(90deg, #ffffff, #ffffff 3px, transparent 3px, transparent 7px);
	background-position: left bottom;
	background-repeat: repeat-x;
	background-size: 100% 2px;
	padding: 0 20px 15px;
	margin-bottom: 15px;
}

.reason__problem ul li span {
	background-color: #E5E14E;
	color: var(--color-primary);
}

.reason__problem ul li::before {
	content: '';
	display: inline-block;
	width: 48px;
	height: 48px;
	background-image: url(../img/icn_check.png);
	background-size: contain;
	vertical-align: middle;
	margin-right: 20px;
}

.reason_img {
	display: flex;
	justify-content: center;
	align-items: center;
}

.reason-problem__w {
	position: absolute;
	bottom: 0;
	left: -5.89%;
}

.reason-problem__m {
	position: absolute;
	bottom: 0;
	right: -5.89%;
}

.reason__solution {
	text-align: center;
	font-size: 48px;
	font-weight: 700;
	margin-bottom: 60px;
	letter-spacing: 0.05em;
}

.inline-logo {
	display: inline-block;
	vertical-align: bottom;
	margin-right: 0.2em;
}

.f-s {
	font-size: 40px;
}

.c1 {
	color: var(--color-primary);
}

.c2 {
	color: #c30108;
}

/* Reason Points (cards) */
.reason__points {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.reason-card {
	flex: 1 1 calc(33.333% - 20px);
	padding: 0 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.reason-card__header {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 5px;
	margin-bottom: 16px;
}

.reason-card__point {
	font: bold 32px/1 Gill Sans MT, sans-serif;
	color: var(--color-primary);
}

.reason-card__number {
	position: relative;
	font: bold 40px/1 Gill Sans MT, sans-serif;
	color: var(--color-primary);
}

.reason-card__number::after {
	position: absolute;
	content: '';
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background-color: #E5E14E;
	top: -0.3em;
	right: -0.3em;
	transform: rotate(45deg);
	z-index: -1;
}

.reason-card__image {
	width: 100%;
	margin-bottom: 20px;
}

.reason-card__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 12px;
}

.reason-card__text {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	line-height: 1.7;
}

/* ---------- 私たちについて ---------- */
.about {
	background-color: #003264;
	padding: 100px 0;
}

.about__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.about__text-content {
	text-align: center;
	margin-bottom: 60px;
}

.about__text-content h3 {
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 20px;
	line-height: 1.7;
	letter-spacing: 0.05em;
}

.about_logo {
	display: inline-block;
	vertical-align: bottom;
}

.about__text-content p {
	width: calc(100% - 30px);
	margin: 0 auto;
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	line-height: 1.7;
}

.about__text-content span {
	background-color: var(--color-accent);
}

/* 実績エリア */
.about__stats {
	display: flex;
	justify-content: space-around;
}

.about__stats-header {
	text-align: center;
	margin-bottom: 40px;
}

.about_achievements .about__ttl-achievements {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 40px;
	text-align: center;
	background: var(--color-bg);
	border-radius: 10px;
}

.about__stats-note {
	font-size: 14px;
	color: #999;
	margin-left: 4px;
}

.about__sales .about__ttl-sales {
	font-size: 32px;
	color: var(--color-primary);
	font-weight: 600;
	background: var(--color-bg);
	border-radius: 10px;
	padding: 0 40px;
	margin-bottom: 40px;
}

.about__sales-amount {
	margin: 10px 0;
}


/* 実績グリッド */
.about__stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-bottom: 20px;
}

.stat-item {
	display: flex;
	text-align: center;
	align-items: center;
	gap: 16px;
}

.stat-item__icon {
	width: 66px;
	height: 66px;
	flex-shrink: 0;
}

.stat-item__text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: var(--color-bg);
	align-items: flex-start;
}

.stat-item__label {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 12px;
}

.stat-item__value {
	font-family: 'Gill Sans MT', sans-serif;
	font-size: 30px;
	font-weight: 800;
}

.stat-item__unit {
	font-size: 16px;
	font-weight: 500;
	margin-left: 4px;
}

.stat-item__note {
	font-size: 16px;
	color: var(--color-bg);
}

/* 備考 */
.about__stats-footer {
	font-size: 14px;
	color: var(--color-bg);
	text-align: right;
	line-height: 1.6;
}

.about__stats-footer a {
	text-decoration: underline;
}

/* ---------- 強み ---------- */
.strengths {
	padding: 100px 20px;
}

.strengths__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 80px auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.strengths__text-content {
	flex: 0 0 423px;
}

.strengths__text-content h3 {
	font-size: 40px;
	font-weight: bold;
	color: var(--color-text);
	line-height: 1.8;
	margin-bottom: 30px;
}

.strengths__text-content p {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.7;
	color: var(--color-text);
	padding-right: 150px;
}

.strengths__image-content {
	padding-top: 90px;
	margin-left: -110px;
}

.strengths__image-content img {
	width: 100%;
}

/* Support Service Section */
.strengths__support {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	background: #E1EDEF;
	border-radius: 20px;
	padding: 30px 55px;
	text-align: center;
}

.strengths__support h3 {
	font-size: 32px;
	font-weight: bold;
	color: var(--color-primary);
	margin-bottom: 20px;
	margin-top: -55px;
}

.strength_tx {
	width: 100%;
	display: flex;
}

.strength_tx p {
	font-weight: bold;
	line-height: 1.7;
	text-align: left;
	margin-bottom: 30px;
	padding-left: 70px;
}

.strengths__logos {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	padding-left: 50px;
}

.strengths__logos-row {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.strengths__logos img {
	height: 70px;
	object-fit: contain;
}

/* ---------- サポートメンバー ---------- */
.members {
	position: relative;
	z-index: 1;
	padding: 100px 20px;
}

.members__inner {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

.members::before {
	content: '';
	position: absolute;
	top: 0;
	left: 200px;
	width: calc(100% - 200px);
	height: 100%;
	background: linear-gradient(to right, rgba(149, 219, 149, 0.2), rgba(229, 225, 78, 0.2));
	border-top-left-radius: 20px;
	border-bottom-left-radius: 20px;
	z-index: -1;
}

.members__grid {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.member-card {
	background: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
	width: 370px;
	transition: transform 0.3s ease;
}

.member-card:hover {
	transform: translateY(-5px);
}

.member-card img {
	width: 100%;
	object-fit: cover;
	display: block;
	padding: 10px;
}

.member-card__body {
	text-align: left;
	padding: 20px 15px;
}

.member-card__name-ja {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	margin-bottom: 5px;
}

.member-card__name-en {
	font-size: 14px;
	color: #333;
	font-weight: 500;
}

/* ---------- お問い合わせ---------- */
.request {
	background: #fff;
	color: #333;
	text-align: center;
	padding: 100px 20px;
}

.request__inner {
	max-width: 800px;
	margin: 0 auto;
}

.request__button {
	width: 100%;
	max-width: 600px;
	height: 65px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	background: linear-gradient(90deg, #063362 0%, #27B799 100%);
	color: #fff;
	padding: 10px 90px;
	font-size: 20px;
	font-weight: 700;
	border-radius: 40px;
	transition: background 0.3s ease, color 0.3s ease;
}

.request__button:hover {
	background-color: #003264;
	color: #fff;
}

.request__button img {
	width: 8px;
	height: auto;
}

/* Floating Buttons */
.floating-buttons {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 999;
}

.floating-button, .request-button {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
}

/* ---------- 会社概要 ---------- */
.company {
	background-color: #E1EDEF;
	padding: 60px 20px;
	color: #333;
}

.company__inner {
	display: flex;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	justify-content: space-evenly;
}

.company__title {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	text-align: center;
	line-height: 1.2;
}

.company__info {
	display: grid;
	grid-template-columns: 90px 1fr;
	row-gap: 24px;
	column-gap: 20px;
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
}

.company__info dt {
	font-weight: bold;
	color: #333;
}

.company__info dd {
	margin: 0;
}
.company__info dd a {
	color: #333;
}

/* ---------- MEGroupについてー---------- */
.group_wrap {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 15px;
	text-align: center;
}

.group_wrap .inner>p {
	text-align: center;
}

.group_lead {
	font-size: 28px;
}

.group_list {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin: 30px 0;
}

.group_list li {
	width: calc((100% - 20%)/8);
}

.group_tx {
	font-weight: bold;
	padding-bottom: 20px;
}

.group_wrap a.request__button img {
	width: 20px;
}
/* ---------- フッター---------- */
.footer {
	background-color: #333;
	color: #fff;
	padding: 50px 20px;
	font-size: 16px;
}

.footer__inner {
	max-width: 1200px;
	margin: 0 auto;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 30px;
}

.footer__logo img {
	height: 50px;
}

.footer__contact {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 34px;
}

.footer__tel {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
	font-weight: bold;
}

.footer__contact p {
	font-size: 12px;
}

.footer__button {
	width: 100%;
	max-width: 430px;
	height: 55px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background: linear-gradient(90deg, #063362 0%, #27B799 100%);
	color: #fff;
	padding: 12px 70px;
	border-radius: 30px;
	font-weight: bold;
	font-size: 16px;
}

.footer__button img {
	width: 8px;
	height: auto;
}

/* ナビゲーション */
.footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}

.footer__nav ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.footer__nav a {
	color: #fff;
	font-weight: 600;
	transition: opacity 0.3s ease;
}

.footer__nav a:hover {
	opacity: 0.7;
}

.footer__nav li {
	position: relative;
	padding-right: 15px;
}

.footer__nav li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 1em;
	border-right: 1px solid #fff;
}

/* SNS */
.footer__sns {
	display: flex;
	align-items: flex-end;
	gap: 20px;
}

.footer__sns p {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	white-space: nowrap;
}

/* Copyright */
.footer__copyright {
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	color: #333;
	padding: 20px 0;
}

.request-button {
	background: linear-gradient(180deg, #26B498 0%, #073764 100%);
}

.floating-button {
	background-color: #E1EDEF;
	color: #333;
}
.request-button img {
	margin-bottom: 5px;
}
.floating-button img {
	margin-bottom: 5px;
}

@media screen and (max-width: 1200px) {
	.header__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.mv {
		height: 656px;
	}

	.banner__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.banner__title,
	.banner__text {
		width: 100%;
		text-align: center;
		padding: 0;
	}

	.banner__text {
		border-left: none;
		margin: 10px 0 0 0;
	}

	.banner__contact {
		margin: 5px 0 0 0;
	}

	.reason-problem__m {
		right: 0;
		width: 15%;
	}

	.reason-problem__w {
		left: 0;
		width: 13%;
	}

	.stat-item {
		padding: 0 0 0 20%;
	}

	.about__stats {
		flex-direction: column;
	}

	.about__stats-grid {
		grid-template-columns: repeat(2, 1fr);
		width: 65%;
		margin: 0 auto 20px;
	}

	.about__sales .about__ttl-sales, .about_achievements .about__ttl-achievements {
		width: 65%;
		margin: 0 auto 35px;
	}

	.about__stats-footer {
		text-align: center;
	}

}


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

	.members__inner {
		width: 100%;
	}

	.strengths__image-content {
		flex: 0 0 685px;
	}

	.company__inner {
		width: 100%;
		flex-direction: column;
	}

	.company__info {
		margin: 0 auto;
	}

	.company__title {
		margin: 0 0 25px 0;
	}

	/* ---------- フッター ---------- */
	.footer__top {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer__contact {
		text-align: center;
		margin-top: 20px;
		flex-direction: column;
		gap: 30px;
	}

	.footer__tel {
		justify-content: center;
	}

	.footer__nav ul {
		justify-content: center;
		gap: 10px 20px;
		margin-top: 20px;
	}

	.footer__bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
}


@media screen and (max-width: 992px) {
	.pc_hide_992 {
		display: block;
	}

	.sp_hide_992 {
		display: none;
	}

	.mv {
		height: 625px;
	}

	.mv__text-content {
		padding: 0 0 5% 0;
	}

	.mv__text-content h2 {
		font-size: clamp(37px, 4.8vw, 48px);
	}

	.mv__sub-title {
		font-size: clamp(18px, calc(0.0225 * 100vw + 0.65px), 23px);
	}

	.mv__badge {
		font-size: clamp(23px, calc(0.0305 * 100vw + 0.65px), 30px);
	}

	.reason_bg {
		top: -1178px;
		height: 140%;
		clip-path: polygon(100% 36%, 100% 100%, 0 100%, 0 33%);
	}

	.reason__solution {
		font-size: 40px;
	}

	.reason__problem ul li {
		text-indent: -2.8em;
		padding-left: 2.8em;
	}

	.reason__points {
		flex-direction: column;
		gap: 40px;
	}

	.reason-card {
		max-width: 100%;
	}

	.about__sales-amount span {
		font-size: 48px;
	}

	.about__sales-amount {
		font-size: 32px;
	}

	.about__stats-grid {
		width: 80%;
	}

	/* ---------- 強み ---------- */
	.strengths__text-content, .strengths__image-content {
		flex: auto;
	}

	.strengths__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.strengths__image-content {
		width: 100%;
		margin: 0;
		padding: 50px 0 0 0;
	}

	.strength_tx p {
		width: 95%;
	}

	.strengths__support h3 {
		font-size: clamp(28px, calc(0.0909 * 100vw - 42.06px), 32px);
	}

}

@media screen and (max-width: 768px) {
	.pc_hide {
		display: block;
	}

	.section-title {
		display: block;
		margin-bottom: 30px;
	}

	.header__nav.open {
		max-height: 100vh;
		overflow-y: auto;
		transition: max-height 0.6s cubic-bezier(0.8, 0, 0.2, 1);
		top: 0;
	}

	.header__nav {
		overflow: hidden;
		max-height: 0;
		transition: max-height 0.4s ease;
		background-color: white;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		margin-top: 0;
		box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
		z-index: 1000;
		transition: max-height 0.4s ease, padding 0.4s ease;

	}

	.header__nav ul {
		flex-direction: column;
		gap: 20px;
	}

	.hamburger__info {
		margin: 30px 0 0 0;
	}

	.hamburger__info_tel {
		flex-wrap: wrap;
		justify-content: center;
		font-size: 30px;
		margin: 0 0 30px 0;
	}

	.hamburger__info_tel span {
		font-size: 20px;
		text-decoration: none;
	}

	.hamburger__info_tel img {
		width: 25px;
	}

	.hamburger__info_hours {
		width: 100%;
		font-size: 14px;
	}

	.hamburger__info a.mv__button {
		width: 80%;
		height: 55px;
		color: #ffffff;
	}

	.hamburger {
		display: flex;
	}

	.hamburger__logos {
		display: flex;
		justify-content: center;
		margin: 0 0 30px 0;
		padding: 90px 0 0 0;
	}

	.hamburger__logos img {
		height: 60px;
		margin-right: 5px;
	}

	.header__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.header_tx_right {
		width: 100%;
	}

	.header__inner {
		justify-content: center;
	}

	.header__contact {
		display: none;
	}

	.mv {
		height: auto;
		padding: 60px 0;
		margin: 0;
	}

	.mv__highlight::before {
		letter-spacing: 2em;
	}

	.mv__inner {
		flex-direction: column;
		align-items: center;
		text-align: center;
		padding: 0;

	}

	.mv__image {
		width: 60%;
	}

	.mv__text-content {
		width: calc(100% - 30px);
		margin: 0;
		padding: 30px 15px;
		background-color: rgba(255, 255, 255, 0.95);
		border-radius: 12px;
	}

	.mv__text-content h2 {
		font-size: 36px;
	}

	.mv__text-content h2 span {
		padding: 0;
		margin: 0;
	}

	.mv__text-content h2 span.mv__h2 {
		padding: 0;
	}

	.mv__sub-title {
		font-size: 18px;
		margin-bottom: 20px;
	}


	.mv__description {
		margin-bottom: 20px;
	}

	.mv__button {
		font-size: 16px;
		padding: 14px 28px;
	}

	.banner__inner {
		flex-direction: column;
	}

	.banner__title {
		font-size: 22px;
	}

	.banner__text {
		font-size: 16px;
	}

	.section-title__ja {
		font-size: 25px;
	}

	.reason {
		padding: 60px 20px;
	}

	.reason_bg {
		top: -1000px;
		height: 145%;
	}

	.reason__problem {
		width: 100%;
	}

	.reason__problem ul li::before {
		width: 30px;
		height: 30px;
	}

	.reason__problem p {
		font-size: 20px;
	}

	.f-s, .reason__solution {
		font-size: 35px;
		margin-bottom: 40px;
	}

	.inline-logo {
		width: 50%;
	}

	.reason-problem__w {
		left: 0;
		width: 15%;
	}

	.reason-problem__m {
		right: 0;
		width: 16%;
	}

	.reason-card__title {
		font-size: 18px;
	}

	.reason-card__text {
		font-size: 14px;
	}

	.reason__problem ul li {
		text-indent: -2em;
		padding-left: 2em;
		line-height: 1.7;
	}

	.about__text-content h3 {
		font-size: 22px;
	}

	.about_logo {
		width: 45%;
		height: auto;
	}

	.about__text-content p {
		font-size: 14px;
		padding: 0 10px;
	}

	.about__stats {
		flex-direction: column;
	}

	.about__sales {
		padding: 0 15px;
	}

	.about__sales_logo {
		width: 30%;
	}

	.about_achievements {
		padding: 0 15px;
	}

	.about__stats-grid {
		width: 90%;
		gap: 20px;
		grid-template-columns: repeat(2, 1fr);
	}

	.about__sales-amount span {
		font-size: 36px;
	}

	.about__sales-amount {
		font-size: 24px;
	}

	.stat-item {
		padding: 0 0 0 10%;
	}

	.strengths {
		padding: 60px 15px;
	}

	.strength_tx {
		flex-direction: column;
	}

	.strengths__text-content h3 {
		text-align: center;
		font-size: 37px;
		line-height: 1.6;
	}

	.strengths__text-content p {
		font-size: 16px;
		padding-right: 0;
	}

	.strengths__image-content {
		flex: 0 0 0;
		margin-left: 0;
	}

	.strengths__support {
		padding: 30px;
	}

	.strengths__support h3 {
		font-size: 30px;
	}

	.strengths__support p {
		width: 100%;
		font-size: 14px;
		padding-left: 0;
		margin-bottom: 0;
	}

	.strengths__logos {
		padding-left: 0;
		margin: 0 0 20px 0;
	}

	.strengths__logos img {
		height: 80px;
	}

	/* ---------- サポートメンバー ---------- */
	.members {
		padding: 60px 15px;
	}

	.members__inner {
		width: 100%;
	}

	.section-title__en {
		font-size: 85px;
	}

	.member-card {
		width: 100%;
		max-width: 320px;
		margin: 0 auto;
	}

	.members__grid {
		gap: 30px;
		flex-direction: column;
	}

	/* ---------- お問い合わせ ---------- */
	.request {
		padding: 60px 15px;
	}

	.request .section-title__ja {
		font-size: 22px;
		margin-bottom: 30px;
	}

	.request__button, .footer__button {
		font-size: 16px;
		padding: 14px 28px;
	}

	/* ---------- 会社概要 ---------- */
	.company__title {
		font-size: 22px;
		margin-bottom: 30px;
	}

	.company__info {
		grid-template-columns: 1fr;
		row-gap: 0px;
	}

	.company__info dt {
		margin-top: 20px;
	}

}

@media screen and (max-width: 480px) {
	.sp_hide_480 {
		display: none;
	}

	.pc_hide_480 {
		display: block;
	}

	.mv__button span {
		display: none
	}

	.banner__contact {
		justify-content: center;
	}

	.banner__tel {
		font-size: 35px;
	}

	.banner__text {
		font-size: 14px;
	}

	.banner__time {
		padding-left: 0;
	}

	.reason__problem ul {
		font-size: 18px;
		padding: 20px;
	}

	.reason__problem ul li {
		padding: 0 0 15px 2em;
	}

	.reason__problem ul li::before {
		margin-right: 10px;
	}

	.reason-problem__w {
		width: 23%;
	}

	.reason-problem__m {
		width: 26%;
	}

	.f-s, .reason__solution {
		font-size: 25px;
	}

	.reason-card {
		padding: 0;
	}

	.about_logo {
		width: 90%;
	}

	.about__sales .about__ttl-sales, .about_achievements .about__ttl-achievements {
		width: 100%;
		font-size: 25px;
	}

	.about__sales_logo {
		width: 55%;
	}

	.about__stats-grid {
		margin: 0;
	}

	.stat-item {
		flex-direction: column;
		justify-content: center;
		gap: 10px;
		padding: 0;
	}

	.stat-item__value {
		font-size: 25px;
	}

	.stat-item__text {
		align-items: center;
	}

	.about__stats-grid {
		width: 100%;
	}

	.strengths__text-content h3 {
		font-size: 30px;
	}

	.strengths_logo {
		width: 60%;
	}

	.strengths__support {
		padding: 30px 25px;
	}

	.strengths__support h3 {
		font-size: 25px;
	}

	.section-title__en {
		font-size: 60px;
	}

	.section-title__ja {
		top: 80%;
		line-height: 1.2;
	}
		
	/* ---------- MEGroupについて ---------- */
	.group_list {
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
		margin: 20px 0;
		gap: 8px;
	}
	.group_list li {
		width: calc((100% - 30px) / 3);
	}
	.group_list li img {
		width: 90%;
		text-align: center;
		margin: 0 auto;
	}
}