@font-face {
	font-family: "AvenirCustom"; /* 任意のフォント名を指定 (例: AvenirCustom) */
	font-style: normal; /* もし単一の TrueType であれば format('truetype') */
	font-weight: normal; /* 代表的なウェイトを指定。必要に応じて変更 */
	src: url("../fonts/Avenir-medium.ttf") format("truetype"); /* .ttc の場合 */
}

@font-face {
	font-family: "AvenirCustom"; /* 任意のフォント名を指定 (例: AvenirCustom) */
	font-style: italic; /* もし単一の TrueType であれば format('truetype') */
	font-weight: normal; /* 代表的なウェイトを指定。必要に応じて変更 */
	src: url("../fonts/Avenir-medium-oblique.ttf") format("truetype"); /* .ttc の場合 */
}

@font-face {
	font-family: "AvenirCustom"; /* 任意のフォント名を指定 (例: AvenirCustom) */
	font-style: normal; /* もし単一の TrueType であれば format('truetype') */
	font-weight: bold; /* 代表的なウェイトを指定。必要に応じて変更 */
	src: url("../fonts/Avenir-bold.ttf") format("truetype"); /* .ttc の場合 */
}

@font-face {
	font-family: "AvenirCustom"; /* 任意のフォント名を指定 (例: AvenirCustom) */
	font-style: italic; /* もし単一の TrueType であれば format('truetype') */
	font-weight: bold; /* 代表的なウェイトを指定。必要に応じて変更 */
	src: url("../fonts/Avenir-bold-oblique.ttf") format("truetype"); /* .ttc の場合 */
}

/* 日本語フォント (A-OTF-GothicMB101Pro - DeBold) の読み込み */

@font-face {
	font-family: "GothicMB101ProCustom"; /* 任意の共通フォント名を指定 */
	font-style: normal;
	font-weight: normal;
	src: url("../fonts/A-OTF-Gothic-medium.otf") format("opentype"); /* .otf の場合 */
}

/* 日本語フォント (A-OTF-GothicMB101Pro - DeBold) の読み込み */

@font-face {
	font-family: "GothicMB101ProCustom"; /* 任意の共通フォント名を指定 */
	font-style: normal;
	font-weight: bold;
	src: url("../fonts/A-OTF-Gothic-bold.otf") format("opentype"); /* .otf の場合 */
}

/* 日本語フォント (A-OTF-GothicMB101Pro - Bold) の読み込み */

body {
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
}

body.is-active {
	overflow: hidden;
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

/* フォーム以外のラジオボタンを非表示 */
input[type=radio]:not(#contactform input[type=radio]) {
	display: none;
}

/* フォーム以外のチェックボックスを非表示 */
input[type=checkbox]:not(#contactform input[type=checkbox]) {
	display: none;
}

/* フォーム内のチェックボックスを表示（グレー） */
#contactform input[type=checkbox] {
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
	padding: 0 !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	border: 2px solid #999 !important;
	border-radius: 3px !important;
	background-color: #fff !important;
	cursor: pointer !important;
	position: relative !important;
	vertical-align: middle !important;
	pointer-events: auto !important;
	z-index: auto !important;
}

#contactform input[type=checkbox]:checked {
	background-color: #666 !important;
	border-color: #666 !important;
}

#contactform input[type=checkbox]:checked::after {
	content: '' !important;
	position: absolute !important;
	left: 5px !important;
	top: 2px !important;
	width: 5px !important;
	height: 10px !important;
	border: solid white !important;
	border-width: 0 2px 2px 0 !important;
	transform: rotate(45deg) !important;
}

/* フォーム内のラジオボタンを非表示（ラベルをボタン風にスタイリングするため） */
#contactform input[type=radio],
#contactform .wpcf7-list-item input[type=radio],
#contactform .wpcf7-radio input[type=radio],
#contactform .wpcf7-list-item-label input[type=radio] {
	position: absolute !important;
	opacity: 0 !important;
	width: 100% !important;
	height: 100% !important;
	left: 0 !important;
	top: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	cursor: pointer !important;
	z-index: 2 !important;
}

/* ラジオボタンのリストアイテムを横並びに */
#contactform .wpcf7-radio .wpcf7-list-item,
#contactform .wpcf7-list-item:has(input[type="radio"]) {
	display: inline-flex !important;
	margin-right: 15px !important;
	margin-bottom: -5px !important;
	margin-top: 15px !important;
	position: relative !important;
}

/* ラジオボタンのlabelタグ全体をクリック可能にする（ラジオボタンのみ） */
#contactform .wpcf7-radio .wpcf7-list-item label,
#contactform .wpcf7-list-item:has(input[type="radio"]) label {
	position: relative !important;
	display: inline-block !important;
	cursor: pointer !important;
}

/* acceptanceチェックボックスは通常の動作を維持 */
#contactform .wpcf7-acceptance,
#contactform .wpcf7-acceptance label,
#contactform .wpcf7-acceptance input[type="checkbox"],
#contactform .wpcf7-acceptance .wpcf7-list-item,
#contactform .wpcf7-acceptance .wpcf7-list-item-label {
	position: relative !important;
	cursor: pointer !important;
	pointer-events: auto !important;
	z-index: auto !important;
	display: block !important;
}

/* acceptanceチェックボックスのinput要素を確実にクリック可能にする */
#contactform .wpcf7-acceptance input[type="checkbox"] {
	width: 18px !important;
	height: 18px !important;
	margin-right: 8px !important;
	vertical-align: middle !important;
}

/* ラジオボタンのラベルをボタン風にスタイリング（ラジオボタンのみに適用） */
#contactform .wpcf7-radio .wpcf7-list-item-label,
#contactform .wpcf7-list-item:has(input[type="radio"]) .wpcf7-list-item-label {
	display: inline-block !important;
	padding: 0.3rem 1.25rem !important;
	/* border: 2px solid #ccc !important; */
	border-radius: 5px !important;
	background-color: #fff !important;
	color: #333 !important;
	font-size: 1.4rem !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	text-align: center !important;
	min-width: 80px !important;
	user-select: none !important;
	position: relative !important;
	pointer-events: none !important;
	z-index: 1 !important;
}

/* チェックボックスのラベルは通常のスタイルに戻す */
#contactform .wpcf7-list-item:has(input[type="checkbox"]) .wpcf7-list-item-label,
#contactform .wpcf7-checkbox .wpcf7-list-item-label {
	display: inline !important;
	padding: 0 !important;
	border-radius: 0 !important;
	background-color: transparent !important;
	color: #000 !important;
	min-width: auto !important;
	text-align: left !important;
	pointer-events: auto !important;
}

/* 外側のlabelタグ内のチェックボックスがクリック可能になるように */
#contactform .contactform__inside--box label:has(input[type="checkbox"]),
#contactform .contactform__inside--box label:has(.wpcf7-list-item input[type="checkbox"]) {
	cursor: default !important;
}

#contactform .contactform__inside--box label:has(input[type="checkbox"]) input[type="checkbox"],
#contactform .contactform__inside--box label:has(.wpcf7-list-item) .wpcf7-list-item input[type="checkbox"],
#contactform .contactform__inside--box label:has(.wpcf7-list-item) input[type="checkbox"] {
	cursor: pointer !important;
	pointer-events: auto !important;
	position: relative !important;
	z-index: 10 !important;
}

/* ホバー時のスタイル（ラジオボタンのみ） */
#contactform .wpcf7-radio .wpcf7-list-item-label:hover,
#contactform .wpcf7-list-item:has(input[type="radio"]) .wpcf7-list-item-label:hover {
	border-color: #666 !important;
	background-color: #f5f5f5 !important;
}

/* 選択されたラジオボタンのラベルスタイル */
#contactform .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label,
#contactform .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label,
#contactform input[type=radio]:checked + .wpcf7-list-item-label,
#contactform .wpcf7-radio input[type=radio]:checked ~ .wpcf7-list-item-label,
#contactform .wpcf7-list-item input[type=radio]:checked ~ .wpcf7-list-item-label {
	background-color: #666 !important;
	color: #fff !important;
	border-color: #666 !important;
	font-weight: 600 !important;
}

input[type=button],
label,
button,
select {
	cursor: pointer;
}

/* 送信ボタンの基本スタイル */
input[type=submit] {
	background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%) !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	border: none !important;
	padding: 15px 50px !important;
	font-size: 1.6rem !important;
	font-weight: 600 !important;
	border-radius: 50px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	display: block !important;
	text-align: center !important;
	min-width: 200px !important;
	max-width: 400px !important;
	width: auto !important;
	height: auto !important;
	margin: 30px auto 0 auto !important;
}

input[type=submit]:hover {
	opacity: 0.9 !important;
	transform: translateY(-2px) !important;
	box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3) !important;
}

/* TikTok contactページの送信ボタンを上書き */
.tiktok-contact input[type=submit] {
	background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%) !important;
	border: none !important;
	border-radius: 50px !important;
	padding: 15px 50px !important;
	font-size: 1.6rem !important;
	font-weight: 600 !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	min-width: 200px !important;
	max-width: 400px !important;
	width: auto !important;
	height: auto !important;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.accordion {
	grid-gap: 2.75rem;
	display: grid;
	gap: 2.75rem;
	width: 100%;
}

.accordion__item {
	width: 100%;
}

.accordion__title {
	align-items: center;
	background-image: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%);
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1rem;
	font-weight: normal;
	gap: 0.625rem;
	padding: 0.625rem 3.4375rem 0.625rem 0.625rem;
	position: relative;
}

.accordion__label {
	flex-shrink: 0;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
}

.accordion__question {
	line-height: 1.6;
	word-break: break-word;
}

.accordion__title::after,
.accordion__title::before {
	background-color: #fff;
	content: "";
	display: block;
	height: 0.125rem;
	position: absolute;
	right: 11px;
	top: 50%;
	transform: translate(0, -50%);
	transition: 0.3s transform, 0.3s opacity;
	width: 1.1875rem;
}

.accordion__title.is-open::after {
	background-color: #fff;
	content: "";
	height: 0.125rem;
	position: absolute;
	right: 11px;
	top: 50%;
	transform: translate(0, -50%);
	width: 1.1875rem;
}

/* 初期状態: 「＋」アイコン */

.accordion__title::before,
.accordion__title::after {
	background-color: #fff;
	content: "";
	display: block;
	height: 0.125rem;
	position: absolute;
	right: 0.6875rem;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s, opacity 0.3s;
	width: 1.1875rem;
}

/* 初期状態：＋マーク（水平線と垂直線） */

.accordion__title::before {
	transform: translateY(-50%) rotate(0deg); /* 垂直線 */
}

.accordion__title::after {
	transform: translateY(-50%) rotate(90deg); /* 水平線 */
}

/* アコーディオンが開いたときのスタイル：－マーク（水平線のみ） */

.accordion__title.is-open::before {
	opacity: 0; /* 垂直線を消す */
}

.accordion__title.is-open::after {
	transform: translateY(-50%) rotate(0deg); /* 水平線に戻す */
}

.accordion__content {
	background-color: #fff;
	display: none;
	height: 10rem;
	padding: 1.25rem 1rem 1.25rem;
}

.accordion__text {
	font-size: 1rem;
	letter-spacing: normal;
}

/* MVアニメーション */

.announce__text {
	color: #fff;
	font-size: 1.64rem;
	text-align: center;
}

.announce {
	background-color: #000;
	background-image: url("../images/common/announce-bg2.png");
	background-position: center top;
	background-repeat: repeat;
	background-repeat: repeat-x;
	background-size: contain;
	padding: 3.75rem 0;
}

.contact-btn {
	-webkit-text-decoration: none;
	align-items: center;
	background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%, rgb(0, 242, 234) 0%, rgb(54, 15, 27) 50%, rgb(255, 0, 80) 100%);
	background-position: 100% 0%;
	border: 2px solid #fff;
	border-radius: 0.625rem;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 21.25rem;
	overflow: visible;
	padding: 1rem 1.875rem;
	position: relative;
	text-decoration: none;
	transition: background-position 0.4s ease-in-out, opacity 0.3s ease;
	z-index: 1500;
}

.contact-btn:hover {
	background: linear-gradient(90deg, rgb(0, 242, 234) 0%, rgb(54, 15, 27) 50%, rgb(255, 0, 80) 100%, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%);
	background-size: 200% 100%;
}

.contact-btn__text {
	color: #fff;
	flex: 1;
	font-size: 1.25rem;
}

.contact-btn__image {
	border-radius: 6px;
	position: absolute;
	right: 0.0625rem;
	top: -1.0625rem;
	width: 4.1875rem;
}

.contact {
	background: linear-gradient(90deg, rgb(0, 242, 234) 0%, rgb(54, 15, 27) 50%, rgb(255, 0, 80) 100%);
	padding: 3.4375rem 0.9375rem 4.6875rem 0.9375rem;
}

.contact__text {
	color: #fff;
	font-size: 1.375rem;
	text-align: center;
}

.contact__wrap {
	margin-top: 2.5rem;
}

.drawer-menu-btn {
	-webkit-text-decoration: none;
	align-items: center;
	background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%, rgb(0, 242, 234) 0%, rgb(54, 15, 27) 50%, rgb(255, 0, 80) 100%);
	background-position: 100% 0%;
	border: 2px solid #fff;
	border-radius: 0.625rem;
	box-sizing: border-box;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 21.25rem;
	overflow: visible;
	padding: 1rem 1.875rem;
	position: relative;
	text-decoration: none;
	transition: background-position 0.4s ease-in-out, opacity 0.3s ease;
	z-index: 1500;
}

.drawer-menu-btn:hover {
	background: linear-gradient(90deg, rgb(0, 242, 234) 0%, rgb(54, 15, 27) 50%, rgb(255, 0, 80) 100%, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%);
	background-size: 200% 100%;
}

.drawer-menu-btn__text {
	color: #fff;
	flex: 1;
	font-size: 1.25rem;
	text-align: center;
}

/* ドロワー */

.drawer-menu {
	background-color: #000;
	background-size: 4.9375rem;
	height: 100vh;
	left: 0;
	opacity: 0;
	overflow: hidden;
	position: fixed; /* ← important! */
	top: 0;
	transition: 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 5000;
}

.drawer-menu.is-active {
	opacity: 1;
	visibility: visible;
}

.drawer-menu__wrap {
	height: 100%;
	left: 50%;
	max-width: 19.375rem;
	overflow-y: auto;
	padding-top: 9.375rem;
	position: absolute;
	transform: translateX(-50%);
	width: 100%;
}

.drawer-menu__nav-list {
	color: #fff;
	padding-bottom: 6.25rem;
}

.drawer-menu__nav-item {
	padding: 0.625rem 0.625rem 2rem 0.625rem;
}

/****** フェード ******/

.js-fade {
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
}

.js-fade.is-active {
	opacity: 1;
}

.js-fade-load {
	filter: opacity(0);
	transition: filter 1.2s ease-in-out;
}

.js-fade-load.is-active {
	filter: opacity(1);
}

.js-fade-row > * {
	opacity: 0;
	transition: opacity 1.2s, transform 1.2s;
}

.js-fade-row.is-active > * {
	opacity: 1;
}

.js-fade-row.is-active > *:nth-child(1) {
	transition-delay: 0s;
}

.js-fade-row.is-active > *:nth-child(2) {
	transition-delay: 0.2s;
}

.js-fade-row.is-active > *:nth-child(3) {
	transition-delay: 0.4s;
}

.js-fade-row.is-active > *:nth-child(4) {
	transition-delay: 0.6s;
}

.js-fade-row.is-active > *:nth-child(5) {
	transition-delay: 0.8s;
}

.js-fade-row.is-active > *:nth-child(6) {
	transition-delay: 1s;
}

.js-fade-row.is-active > *:nth-child(7) {
	transition-delay: 1.2s;
}

.js-fade-row.is-active > *:nth-child(8) {
	transition-delay: 1.4s;
}

.js-fade-row.is-active > *:nth-child(9) {
	transition-delay: 1.6s;
}

.js-fade-row.is-active > *:nth-child(10) {
	transition-delay: 1.8s;
}

/****** フェードアップ ******/

.js-fadeUp {
	opacity: 0;
	transform: translateY(0.9375rem);
	transition: opacity 1.2s, transform 1.2s;
}

.js-fadeUp.is-active {
	opacity: 1;
	transform: translate(0);
}

.js-fadeUp-load {
	filter: opacity(0);
	transform: translateY(0.9375rem);
	transition: filter 1.2s, transform 1.2s;
}

.js-fadeUp-load.is-active {
	filter: opacity(1);
	transform: translate(0);
}

.js-fadeUp-row > * {
	opacity: 0;
	transform: translateY(0.9375rem);
	transition: opacity 1.2s, transform 1.2s;
}

.js-fadeUp-row.is-active > * {
	opacity: 1;
	transform: translate(0);
}

.js-fadeUp-row.is-active > *:nth-child(1) {
	transition-delay: 0s;
}

.js-fadeUp-row.is-active > *:nth-child(2) {
	transition-delay: 0.2s;
}

.js-fadeUp-row.is-active > *:nth-child(3) {
	transition-delay: 0.4s;
}

.js-fadeUp-row.is-active > *:nth-child(4) {
	transition-delay: 0.6s;
}

.js-fadeUp-row.is-active > *:nth-child(5) {
	transition-delay: 0.8s;
}

.js-fadeUp-row.is-active > *:nth-child(6) {
	transition-delay: 1s;
}

.js-fadeUp-row.is-active > *:nth-child(7) {
	transition-delay: 1.2s;
}

.js-fadeUp-row.is-active > *:nth-child(8) {
	transition-delay: 1.4s;
}

.js-fadeUp-row.is-active > *:nth-child(9) {
	transition-delay: 1.6s;
}

.js-fadeUp-row.is-active > *:nth-child(10) {
	transition-delay: 1.8s;
}

.faq {
	padding-top: 2.5rem;
}

.faq__inner {
	margin: 0 auto;
	max-width: 53rem;
}

.faq__accordion {
	margin-top: 2.5rem;
}

.flow {
	padding-top: 3.75rem;
}

.flow__content {
	margin: 0 auto;
	margin-top: 2.1875rem;
}

.footer__inner {
	background-color: #000;
	color: #D0D0D0;
	padding: 1.875rem 0.625rem;
}

.footer__company-info {
	padding: 1.25rem 0rem;
}

.footer__company-logo img {
	width: 6.25rem;
}

.footer__company-name {
	font-size: 0.9375rem;
	margin-top: 1.875rem;
}

.footer__company-add {
	font-size: 0.75rem;
	line-height: 1.8;
	margin-top: 0.3125rem;
}

.footer__company-mail {
	font-size: 0.8125rem;
	margin-top: 0.3125rem;
}

.footer__company-mail a {
	padding-left: 1.5625rem;
	position: relative;
}

.footer__company-mail a::after {
	background-image: url("../images/common/mail_icon.svg");
	background-size: 100%;
	content: "";
	height: 1.25rem;
	left: 0;
	position: absolute;
	top: 35%;
	transform: translateY(-50%);
	width: 1.25rem;
}

.footer__copyright {
	font-size: 0.625rem;
}

.footer__icon-wrap {
	display: flex;
	left: 50%;
	padding-top: 2.5rem;
	position: relative;
	transform: translateX(-50%);
}

.icon {
	border: 1px solid #d0d0d0;
	border-radius: 50%;
	bottom: 1.25rem;
	display: block;
	height: 1.875rem;
	position: absolute;
	width: 1.875rem;
}

.footer__ticktok-icon::after {
	background-image: url("../images/common/footer_tiktok_logo.svg");
	content: "";
	height: 70%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
}

.footer__youtube-icon {
	margin-left: 2.5rem;
}

.footer__youtube-icon::after {
	background-image: url("../images/common/footer_youtube_logo.svg");
	content: "";
	height: 70%;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 70%;
}

.hamburger {
	cursor: pointer;
	height: 1.5rem;
	position: fixed;
	right: 0.9375rem;
	top: 1.8125rem;
	width: 2.1875rem;
	z-index: 9999;
}

.hamburger.is-active {
	right: 0.9375rem;
	top: 0.9375rem;
}

.hamburger span {
	background-color: #fff;
	display: inline-block;
	height: 0.0625rem;
	left: 0;
	position: absolute;
	transition: 0.3s transform, 0.3s background-color;
	width: 100%;
}

.hamburger.is-active span {
	background-color: #fff;
}

.hamburger span:first-child {
	top: 0;
}

.hamburger span:nth-child(2) {
	top: 0.625rem;
	transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
	top: 1.25rem;
}

.hamburger.is-active span:first-child {
	transform: translateY(10px) rotate(35deg);
}

.hamburger.is-active span:nth-child(2) {
	opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
	transform: translateY(-10px) rotate(-35deg);
}

.no-scroll {
	height: 100%;
	left: 0;
	overflow: hidden;
	position: fixed;
	top: 0;
	width: 100%;
}

.header {
	background-color: #000;
	height: 3.4375rem;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 2000;
}

.header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding: 0rem 1.6875rem;
}

.header__logo {
	margin-left: -1.25rem;
	margin-top: -0.3125rem;
	width: 8.75rem;
}

/* ハンバーガー */

.header__hamburger {
	position: fixed; /* 追従 */
	right: 0.75rem;
	top: 0.9375rem;
	z-index: 9999;
}

.header__hamburger img {
	height: 4.3125rem;
	width: 4.3125rem;
}

.header__pc-nav {
	height: inherit;
}

.header__text {
	font-family: serif;
}

/* 全体背景と基本スタイル */

.hero {
	background-image: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(0, 0, 0) 50%, rgb(0, 242, 234) 100%);
	color: #fff;
	overflow: hidden;
	padding: 2rem 0.9375rem 5.625rem 0.9375rem;
	position: relative;
	text-align: center;
}

.hero::after {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 70%);
	bottom: 0;
	content: "";
	height: 181px;
	left: 0;
	pointer-events: none;
	position: absolute;
	width: 100%;
	z-index: 500;
}

.hero__content {
	margin: 0 auto;
	max-width: 106.25rem;
}

.hero__headline {
	color: #fff;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 2.5rem;
	font-weight: bold;
}

.hero__subtext {
	color: #fff;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 1rem;
}

.hero__main-copy {
	color: #fff;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 0.875rem;
	font-weight: bold;
	margin-top: 1.25rem;
}

.hero__main-copy2 {
	color: #fff;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 0.875rem;
	font-weight: bold;
	margin-top: 0.375rem;
}

.hero__main-wrap {
	align-items: end;
	display: flex;
	gap: 0rem;
	justify-content: center;
}

.hero__main-copy-pink,
.hero__main-copy-white,
.hero__main-copy-blue {
	width: -moz-fit-content;
	width: fit-content;
}

.hero__main-copy-pink {
	color: #ff0050;
	font-size: 2.25rem;
	font-weight: bold;
}

.hero__main-copy-white {
	font-size: 1.5625rem;
	font-weight: bold;
	margin: 0 0.3125rem 0.125rem;
}

.hero__main-copy-blue {
	color: #00f2ea;
	font-size: 2.25rem;
	font-weight: bold;
}

/* メッセージ部分（縦書き対応） */

.hero__message {
	align-items: flex-start;
	display: flex;
	gap: 0.625rem;
	margin-left: 0.9375rem;
	margin-top: 2.375rem;
	position: relative;
	z-index: 2;
}

.hero__message-top,
.hero__message-bottom {
	background-color: #fff;
	box-sizing: border-box;
	display: inline-block; /* ← 背景をテキスト分だけに */
	justify-content: center;
	padding: 1.25rem 0;
	text-orientation: mixed;
	writing-mode: vertical-rl;
}

.hero__message-top {
	color: #000;
	font-size: 2.421875rem;
	font-weight: bold;
}

.hero__message-bottom {
	color: #ff0050;
	font-size: 2.421875rem;
	font-weight: bold;
}

/* 人物と吹き出し */

.hero__image-wrapper {
	position: relative;
}

.hero__person {
	text-align: left;
}

.hero__image {
	-o-object-fit: cover;
	display: block;
	height: auto;
	left: 65%;
	object-fit: cover;
	position: absolute;
	top: -5%;
	transform: translateX(-50%);
	width: 18.75rem;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.label__title {
	font-family: "Archivo", sans-serif;
	font-size: 1.875rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 0rem;
	text-align: left;
}

.label__sub-title {
	color: #000;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 0.75rem;
	font-weight: bold;
	margin-top: 0.3125rem;
	text-align: left;
}

/* ループバナー */

.loop-banner {
	bottom: 25rem;
	left: 0;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.loop-banner__track {
	animation: scroll-loop 20s linear infinite;
	display: flex;
	margin-top: 3.125rem;
	width: 250%;
}

.loop-banner__item {
	flex: 0 0 50%;
	padding-right: 0.625rem;
	position: relative;
}

@media (max-width: 768px) {

	/* SPは帯全体に影を出す */
	.mv--renewal .loop-banner::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background: linear-gradient(
		to bottom,
		rgba(0,0,0,0.65),
		rgba(0,0,0,0.45),
		rgba(0,0,0,0.65)
	  );
	  z-index: 2;
	  pointer-events: none;
	}
  
	/* SPではスマホ単体の影を消す */
	.mv--renewal .loop-banner__item::before {
	  content: none;
	}
  
  }
  
  

.loop-banner__image {
	aspect-ratio: 457/99.99;
	display: block;
	height: auto;
	width: 100%;
}

/*―――――――――――――――――――――――――――――――――――――――――――――
  /* ピンクエリアあしらい
――――――――――――――――――――――――――――――――――――――――――――――*/

.message {
	background-color: #ff0050;
	position: relative;
	z-index: 1000;
}

.message__inner {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 1000px;
	padding: 0.3125rem 0;
	position: relative;
	z-index: 1000;
}

.message__text-block {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.6;
	padding: 0.9375rem 0;
	text-align: center;
	z-index: 2;
}

.message__text {
	font-size: 0.9375rem;
	margin-top: 0.3125rem;
}

.message__image {
	bottom: 0rem;
	height: max(155px, min(18vw, 309px));
	position: absolute;
	width: max(100px, min(18vw, 309px));
	z-index: 1;
}

.message__photo {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.message__image--left {
	left: 0;
	transform: translateX(-10%);
}

.message__image--right {
	right: 0;
	transform: translateX(10%);
}

.mv {
	background-color: #000;
	overflow: hidden;
	padding-bottom: 4.375rem;
	padding-top: 4.375rem;
	position: relative;
	z-index: 1;
}

.mv__logo img {
	display: block;
	margin: 0 auto;
	width: 14.0625rem;
}

.mv__inner {
	width: 100%;
}

.mv__image-wrapper {
	bottom: 0;
	left: 50%;
	pointer-events: none;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
	width: 100%;
	z-index: 0;
}

.mv__image-wrapper picture,
.mv__image-wrapper img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 67.5rem;
	width: 100%;
}

.mv__text-group {
	margin-top: 17.5rem;
}

.mv__sub-sp {
	color: #fff;
	display: block;
	font-size: 1.3125rem;
	line-height: 1.5;
	margin: 0 auto;
	text-align: center;
	z-index: 600;
}

.mv__catch-sp {
	color: #fff;
	font-size: 0.8125rem;
	margin-top: 2.5rem;
	position: relative;
	text-align: center;
	z-index: 10;
}

.mv-btn-wrap {
	margin-top: 1.25rem;
}

.mv__title {
	position: relative;
	text-align: center;
	z-index: 20;
}

.mv__title img {
	display: block;
	margin: 0 auto;
	max-width: 26.25rem;
}

.pc-nav__items {
	align-items: center;
	color: #fff;
	display: flex;
	gap: 3.75rem;
	height: inherit;
	justify-content: center;
	padding-right: 5.6875rem;
}

.pc-nav {
	display: none;
}

.pc-nav {
	display: none;
}

.pc-nav__items {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: center;
}

.problem {
	overflow: hidden;
}

.problem__inner {
	padding: 2.5rem 1.5625rem 5rem 1.5625rem;
}

.problem__head {
	text-align: left;
}

.problem__content {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.9375rem;
	margin-top: 1.875rem;
}

.problem__image-block {
	max-width: 16.9375rem;
	order: 2;
}

.problem__text-block {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: left;
}

.problem__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.8;
}

.problem__title-sub {
	align-items: baseline;
	color: #ff0050;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	justify-content: center;
	margin-top: 1.5rem;
}

.problem-title__image {
	height: 2.8125rem;
	width: 8.6875rem;
}

.problem__image {
	border-radius: 50%;
	display: block;
	height: auto;
	width: 100%;
}

.problem__list-block {
	flex-direction: column;
	order: 4;
}

.problem__list {
	color: #000;
	font-size: 0.875rem;
	line-height: 1.8;
	text-align: left;
}

.problem__item {
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 0.625rem;
}

.problem__item span {
	color: #ff0050;
}

.problem__conclusion {
	display: none;
}

.product {
	overflow: hidden;
	padding: 3.125rem 0.9375rem 0rem 0.9375rem;
}

.product__decoration {
	left: 0.125rem;
	position: absolute;
	top: 42.2%;
	transform: translateY(-50%) rotate(0deg);
	z-index: -10;
}

.product__decoration-image {
	width: 1.875rem;
	z-index: -10;
}

.product__company {
	font-size: 1rem;
	font-weight: 700;
	margin-top: 1.875rem;
	text-align: left;
}

.product__highlight--pink {
	color: #ff0050;
	font-weight: bold;
}

.product__name {
	font-size: 2.625rem;
	font-weight: bold;
	text-align: left;
}

.product__name-en {
	font-size: 1.875rem;
	font-weight: 500;
}

.product__description {
	font-size: 1rem;
	line-height: 1.8;
	margin-top: 1.5625rem;
	text-align: left;
}

.product__strong {
	font-size: 1.375rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 2.5rem;
	text-align: center;
}

.product__highlight--strong {
	color: #ff0050;
	display: inline-block;
	font-weight: bold;
}

.product__image {
	margin-top: 1.875rem;
	width: 100%;
}

.product__results {
	margin: 0 auto;
	max-width: 50rem;
	padding: 3.4375rem 0 0rem 0;
}

.product__results--2 {
	padding-top: 1.875rem;
}

.product__results--3 {
	padding-top: 1.25rem;
	position: relative;
}

.product__results--4 {
	padding-top: 1.25rem;
	position: relative;
}

.product__icon {
	position: absolute;
	right: -1.25rem;
	top: 2.5rem;
	width: 30%;
	z-index: -1;
}

.product__label {
	font-size: 1.375rem;
	font-weight: bold;
}

.product__title-wrap {
	display: inline-block;
	text-align: left;
	width: 21.5625rem;
}

.product__title {
	background-color: #000;
	color: #fff;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: normal;
	margin-top: 0.5rem;
	padding: 0.5rem 1.5625rem 0.5rem 0.625rem;
}

.product__title--2 {
	padding: 0.5rem 0.3125rem 0.5rem 0.625rem;
}

.product__title--3 {
	display: none;
}

.product__content {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: 1.875rem;
	margin-top: 1.5625rem;
}

.product__content--3 {
	display: block;
	margin-left: 0;
}

.product__content--4 {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 1.5625rem;
}

.product__image1 {
	width: 90%;
}

.product__image2 {
	width: 95%;
}

.product__image3 {
	width: 100%;
}

.product__image4 {
	margin: 0 auto;
	order: 3;
	width: 150%;
}

.product__text {
	margin-top: 0.9375rem;
	text-align: center;
}

.product__text2 {
	margin-top: 0.9375rem;
	text-align: center;
}

.product__text--2 {
	margin-left: 0.625rem;
}

.product__text--4 {
	line-height: 1;
	margin-top: 0rem;
	order: -1;
}

.product__desc {
	font-size: 1.178125rem;
	font-weight: bold;
	text-align: left;
}

.product__desc--2 {
	font-size: 0.896875rem;
}

.product__desc--3 {
	text-align: center;
}

.product__desc--4 {
	font-size: 0.94625rem;
	text-align: left;
}

.product__number {
	color: #ff0050;
	font-size: 1.356875rem;
	font-weight: bold;
}

.product__number .firstNum {
	margin-right: -7px;
}

.product__number--2 {
	font-size: 1.033125rem;
	text-align: left;
}

.product__nowrap {
	white-space: nowrap;
}

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

.product__number--highlight {
	color: #ff0050;
	font-size: 4.45rem;
	font-style: italic;
	font-weight: bold;
	line-height: 1;
	margin-right: 0.9375rem;
}

.product__number--highlight2 {
	color: #ff0050;
	font-size: 3.75rem;
	font-style: italic;
	font-weight: bold;
	line-height: 1;
	margin-right: 0.9375rem;
}

.product__number--highlight3 {
	color: #ff0050;
	font-size: 2.604375rem;
	font-style: italic;
	margin-left: 0.625rem;
}

.product__number--highlight4 {
	color: #ff0050;
	font-size: 3.305rem;
	font-style: italic;
	line-height: 1;
}

.product__btmTxt {
	font-size: 1.1875rem;
	font-weight: bold;
}

.section {
	text-align: center;
}

.section--product {
	padding-top: 0rem;
}

.section__sub-title {
	color: #fff;
	font-family: "Archivo", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	padding-top: 0.625rem;
}

.section__text {
	color: #fff;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	margin-top: 0.625rem;
}

.section__text--red {
	color: #ff0050;
}

.section__title {
	color: #fff;
	font-family: "AvenirCustom", "GothicMB101ProCustom", sans-serif;
	font-size: 2.25rem;
	font-weight: 500;
}

.service {
	background-image: url("../images/common/service-bg.jpg");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0rem 1.5625rem 2.5rem 1.5625rem;
}

.service__content {
	grid-row-gap: 2.5rem;
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 0.625rem;
	padding: 0.75rem;
	row-gap: 2.5rem;
}

.service__item {
	background-color: #fff;
	padding: 0.9375rem 1.25rem 1.5625rem 1.25rem;
	text-align: center;
}

.service__icon {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 0.625rem;
}

.service__icon img {
	width: 5.48rem;
}

.service__icon2 {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 0.9375rem;
}

.service__icon2 img {
	height: 4.6rem;
	width: 4.84rem;
}

.service__icon3 {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 0.625rem;
}

.service__icon3 img {
	width: 5.5rem;
}

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

.service__icon4 img {
	height: 5.04rem;
	width: auto;
}

.service__title {
	color: #000;
	font-size: 0.72rem;
	font-weight: bold;
	margin-top: 0.625rem;
}

.service__text {
	color: #000;
	font-size: 0.64rem;
	line-height: 1.6;
	margin-top: 0.3125rem;
	text-align: left;
}

.swiper__wrap {
	margin: 0 auto;
	max-width: 31.25rem;
}

.swiper__img {
	margin: 0 1.25rem -13.75rem auto;
	margin-top: 0.625rem;
	width: 47%;
}

/* 前へ次への矢印カスタマイズ */

.swiper-button-prev,
.swiper-button-next {
	box-sizing: border-box;
	color: transparent;
	content: "";
	cursor: pointer;
	height: 3.3125rem;
	position: absolute;
	top: 300%;
	transform: translateY(-300%);
	width: 3.3125rem;
	z-index: 10;
}

.works__content .swiper-button-next {
	right: 0.3125rem !important;
}

.works__content .swiper-button-prev {
	left: 0.3125rem !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	color: transparent;
	content: "";
	display: block;
	font-family: serif;
	font-family: initial;
	height: 100%;
	width: 100%;
}

/* 前の矢印画像  ←*/

.swiper-button-prev::after {
	background-image: url("../images/common/swiper-button-prev.png");
	color: transparent;
}

/* 次の矢印画像　→ */

.swiper-button-next::after {
	background-image: url("../images/common/swiper-button-next-after.png");
	color: transparent;
}

.swiper__container {
	color: #fff;
	padding: 2.5rem 2.1875rem 0.625rem 2.1875rem;
	position: relative;
	z-index: 2;
}

.swiper__name-wrap {
	margin-bottom: 0.9375rem;
}

.swiper__name {
	font-size: 0.8125rem;
	font-weight: normal;
	width: -moz-fit-content;
	width: fit-content;
}

.swiper__sub-name {
	font-size: 0.8125rem;
}

.swiper__section {
	margin-bottom: 1.25rem;
}

.swiper__title {
	background-color: #fff;
	color: #000;
	display: inline-block;
	font-size: 0.875rem;
	font-weight: normal;
	padding: 0.125rem 1rem;
	text-align: center;
	width: 6.0625rem;
}

.swiper__highlight {
	color: #fff;
	font-size: 0.875rem;
	margin-top: 0.625rem;
}

.swiper__description {
	font-size: 0.875rem;
	line-height: 1.8;
	margin-top: 0.75rem;
}

.works {
	background-image: url("../images/common/works-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
}

.works__inner {
	padding: 0rem 0rem 0.625rem 0rem;
}

@media screen and (min-width: 600px) {

.hero__message {
	margin-left: 3.125rem;
}

.product__decoration {
	left: 0.125rem;
	top: 40%;
}

}

@media (min-width: 768px) {

body.is-active {
	overflow: visible;
}

}

@media screen and (min-width: 768px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.2903225806vw;
}

.accordion {
	gap: 3.125rem;
}

.accordion__title {
	font-size: 1.25rem;
	padding: 0.625rem 2.5rem;
}

.accordion__title::after,
.accordion__title::before {
	right: 40px;
}

.accordion__title.is-open::after {
	right: 40px;
}

.accordion__title::before,
.accordion__title::after {
	right: 2.5rem;
}

.accordion__content {
	height: 9.99625rem;
	margin-top: 0rem;
	padding: 1.875rem 2.5rem;
}

.announce__text {
	font-size: 2.25rem;
}

.announce {
	margin-bottom: 0rem;
	padding: 4.375rem 0;
}

.contact-btn {
	max-width: 38.625rem;
	padding: 1rem 5.3125rem 1rem 2.8125rem;
}

.contact-btn__text {
	font-size: 2rem;
	text-align: center;
	width: 29.8125rem;
}

.contact-btn__image {
	top: -3.125rem;
	width: 6.9375rem;
}

.contact {
	padding: 2.5rem 0.9375rem 4.375rem 0.9375rem;
}

.contact__text {
	font-size: 2.25rem;
}

.contact__wrap {
	margin-top: 4.0625rem;
}

.drawer-menu {
	background-size: 7.1875rem;
}

.drawer-menu.is-active {
	opacity: 0;
	visibility: hidden;
}

.drawer-menu__wrap {
	max-width: none;
	width: -moz-fit-content;
	width: fit-content;
}

.drawer-menu__nav-list {
	padding-bottom: 0;
}

.faq {
	padding-top: 5.625rem;
}

.flow {
	padding-top: 3.4375rem;
}

.flow__content img {
	margin: 0 auto;
	width: 63rem;
}

.footer__inner {
	padding: 3.125rem 3.125rem;
}

.footer__company-logo img {
	width: 7.5rem;
}

.footer__company-name {
	font-size: 1.0625rem;
	margin-top: 0.9375rem;
}

.footer__company-add {
	font-size: 0.9375rem;
}

.footer__company-mail {
	font-size: 1.0625rem;
}

.footer__company-mail a::after {
	top: 50%;
}

.footer__copyright {
	font-size: 0.9375rem;
}

.footer__icon-wrap {
	padding-top: 3.75rem;
	text-align: left;
}

.icon {
	bottom: 1.875rem;
}

.header {
	height: 4.375rem;
}

.header__inner {
	flex-shrink: 0; /* ロゴは縮まないようにする */
	padding: 0rem 5.6875rem;
	position: relative;
}

.header__logo {
	margin-left: 0;
	width: 9.9375rem;
}

.header__pc-nav {
	display: block;
}

.hero {
	padding: 3.4375rem 1.5625rem 12.5rem 1.5625rem;
}

.hero__headline {
	font-size: 3.4375rem;
}

.hero__main-copy {
	font-size: 2.1875rem;
	margin-top: 1.875rem;
}

.hero__main-copy2 {
	font-size: 2.1875rem;
	margin-top: 1.25rem;
}

.hero__main-copy-pink {
	font-size: 5.9375rem;
}

.hero__main-copy-white {
	font-size: 4.375rem;
	margin: 0 0.625rem 0.625rem;
}

.hero__main-copy-blue {
	font-size: 5.9375rem;
}

.hero__message {
	flex-direction: column;
	gap: 1.875rem;
	margin-left: 0.625rem;
	margin-top: 6.25rem;
}

.hero__message-top,
.hero__message-bottom {
	padding: 0.3125rem 0.9375rem;
	writing-mode: horizontal-tb;
}

.hero__message-top {
	font-size: 2.8125rem;
}

.hero__message-bottom {
	font-size: 4.6875rem;
	line-height: 1.3;
	padding-bottom: 0rem;
}

.hero__image {
	left: 70%;
	top: -13%;
	width: 40.0625rem;
	z-index: 10;
}

.inner {
	max-width: 1290px;
	padding-left: 25px;
	padding-right: 25px;
}

.label__title {
	font-size: 3.4375rem;
}

.label__sub-title {
	font-size: 1rem;
	margin-top: 0rem;
}

.loop-banner {
	bottom: 6.25rem;
}

.loop-banner__track {
	animation: scroll-loop 30s linear infinite;
	margin-top: 6.875rem;
	width: 340%;
}

.loop-banner__item {
	padding-right: 3.125rem;
}

.loop-banner__image {
	width: 100%;
}

.message {
	padding: 0.3125rem 0;
}

.message__text {
	font-size: 2.8125rem;
	margin-top: 0.625rem;
}

.message__image {
	bottom: -0.3125rem;
	height: max(100px, min(20vw, 309px));
	width: max(100px, min(14vw, 230px));
}

.message__image--left {
	transform: translateX(-5%);
}

.message__image--right {
	transform: translateX(5%);
}

.mv {
	padding-bottom: 3.75rem;
}

.mv__logo img {
	margin-top: 3.125rem;
	width: 31.3125rem;
}

.mv__text-group {
	margin-top: 0rem;
}

.mv__catch-sp {
	font-size: 2rem;
	margin-top: 0rem;
}

.mv__sub-pc {
	color: #fff;
	font-size: 2rem;
	margin-top: -1.25rem;
	text-align: center;
}

.mv-btn-wrap {
	margin-top: 3.75rem;
}

.mv__title img {
	margin-top: -1.25rem;
	max-width: 62.5rem;
}

.pc-nav {
	display: block;
}

.pc-nav {
	display: block;
	height: auto;
}

.pc-nav__fixed {
	display: flex;
	gap: 1.25rem;
}

.problem__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	padding: 5rem 1.5625rem 5rem 1.5625rem;
	text-align: left;
	width: 100%;
}

.problem__head {
	margin-left: 1.25rem;
}

.problem__content {
	align-items: flex-start;
	flex-direction: row;
	gap: 3.125rem;
	justify-content: center;
	margin-top: 0;
}

.problem__image-block {
	flex-shrink: 0;
	margin-top: 5rem;
	max-width: 21.5625rem;
	order: 1;
}

.problem__text-block {
	align-items: flex-start;
	margin-top: 1.875rem;
	order: 2;
	text-align: left;
}

.problem__title {
	font-size: 2rem;
}

.problem__title-sub {
	font-size: 2.1875rem;
	margin-top: 0.625rem;
}

.problem-title__image {
	height: 3.75rem;
	transform: translateY(5px);
	width: 11.25rem;
}

.problem__list {
	font-size: 1rem;
	margin-top: 2.5rem;
}

.problem__item {
	font-size: 1.25rem;
	margin-bottom: 0.3125rem;
}

.problem__conclusion {
	color: #000;
	display: block;
	font-size: 3.25rem;
	font-weight: 700;
	margin-top: 4.6875rem;
	text-align: center;
}

.product {
	padding: 4.6875rem 1.5625rem 0rem 1.5625rem;
}

.product__head {
	margin-left: 13.125rem;
}

.product__decoration {
	left: 2rem;
	top: 54.6%;
}

.product__decoration-image {
	width: 3.75rem;
}

.product__wrap {
	padding-left: 8.125rem;
}

.product__wraps {
	display: flex;
	justify-content: center;
	margin-top: 5.3125rem;
	text-align: left;
}

.product__company {
	font-size: 1.5rem;
	margin-top: 0rem;
}

.product__name {
	font-size: 3.5rem;
	margin-top: 0.3125rem;
}

.product__description {
	margin-left: 5.625rem;
	margin-top: 0rem;
}

.product__strong {
	font-size: 2.625rem;
	margin-top: 5.3125rem;
}

.product__image {
	margin: 0 auto;
	padding-top: 3.75rem;
	width: 67%;
}

.product__results {
	max-width: 50rem;
	padding: 6.5625rem 0 2.5rem 0;
	padding-bottom: 0;
}

.product__results--2 {
	padding-top: 2.5rem;
}

.product__results--3 {
	padding-top: 3.125rem;
}

.product__results--4 {
	padding-top: 2.5rem;
}

.product__icon {
	right: -3.4375rem;
	top: -0.625rem;
	width: 14%;
}

.product__header {
	margin-left: 1.25rem;
}

.product__label {
	font-size: 1.5rem;
}

.product__title-wrap {
	width: 100%;
}

.product__title {
	font-size: 2rem;
	margin-top: 1.25rem;
	padding: 0.75rem 1.5625rem 0.75rem 1.5625rem;
}

.product__title--2 {
	font-size: 2rem;
	margin-top: 1.25rem;
	padding: 0.75rem 1.5625rem 0.75rem 1.5625rem;
}

.product__title--3 {
	display: inline-block;
}

.product__content {
	flex-wrap: nowrap;
	gap: 0rem;
	justify-content: center;
	margin-top: 1.5625rem;
}

.product__content--2 {
	justify-content: space-between;
	margin-top: 1.875rem;
}

.product__content--3 {
	display: flex;
	justify-content: space-evenly;
	margin-top: 1.5625rem;
}

.product__content--4 {
	flex-wrap: nowrap;
	gap: 0rem;
	justify-content: center;
	margin-top: 1.5625rem;
}

.product__image1 {
	width: 55%;
}

.product__image2 {
	width: 45%;
}

.product__image3 {
	width: 55%;
}

.product__image4 {
	margin-top: 6.875rem;
	order: 0;
	width: 100%;
}

.product__text {
	margin-top: 0rem;
}

.product__text2 {
	text-align: left;
}

.product__text--4 {
	order: 0;
}

.product__desc {
	font-size: 1.830625rem;
}

.product__desc--3 {
	margin-bottom: 0.75rem;
}

.product__desc--4 {
	font-size: 1.830625rem;
}

.product__number {
	font-size: 2.108125rem;
}

.product__number--highlight {
	font-size: 6.913125rem;
}

.product__number--highlight2 {
	font-size: 6.913125rem;
}

.product__number--highlight3 {
	font-size: 6.913125rem;
}

.product__number--highlight4 {
	font-size: 6.913125rem;
	white-space: nowrap;
}

.product__btmTxt {
	font-size: 1.75rem;
}

.section {
	margin-top: -6.25rem; /* heightと同じ分のネガティブマージン */
	padding-top: 4.375rem; /* 調整したい高さ（固定ヘッダーの高さ） */
}

.section--product {
	padding-top: 6.25rem;
}

.section__sub-title {
	font-size: 1rem;
}

.section__text {
	font-size: 1.625rem;
}

.section__title {
	font-size: 2.8125rem;
	margin-top: 0.625rem;
}

.bemgive-product-section {
	margin-top: 2.5rem;
	width: 1200px;
	margin: 0 auto;
}

.bemgive-product-image {
	text-align: center;
	margin-top: 3.125rem;
}

.bemgive-product-image__img {
	max-width: 100%;
	height: auto;
	width: 100%;
	border-radius: 1.25rem;
	box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.08);
}

.bemgive-product-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem;
	margin-top: 3.125rem;
}

.bemgive-card {
	background: #f7f7f7;
	border: 0.25rem solid #000;
	border-radius: 1.25rem;
	box-shadow: 0 0.3125rem 0.9375rem rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin-bottom: 2rem !important;
}

.bemgive-card__header {
	background: #000;
	color: #fff;
	padding: 1.5rem 2.5rem;
	text-align: center;
}

.bemgive-card__header h3 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1.3;
}

.bemgive-card__image,
.bemgive-card__phones,
.bemgive-card__content {
	padding: 1.75rem 1.75rem 0;
}

.bemgive-card__image {
	text-align: center;
}

.bemgive-card__image img {
	border-radius: 0.75rem;
	max-width: 21.75rem;
	width: 100%;
}

.bemgive-card__phones {
	display: flex !important;
	justify-content: space-between !important;
	gap: 0.75rem !important;
	padding-bottom: 0.5rem !important;
}

.bemgive-card__phone-item {
	flex: 0 0 4.5rem !important;
	width: 4.5rem !important;
	max-width: 4.5rem !important;
}

.bemgive-card__phone-item img {
	border-radius: 0.75rem !important;
	width: 100% !important;
	height: auto !important;
}



.bemgive-card__image + .bemgive-card__content {
	padding-top: 1.25rem;
}

.bemgive-card__content {
	padding: 0 2.25rem 2.25rem;
}

.bemgive-card__features {
	list-style: none;
	margin: 0;
	padding: 0;
}

.bemgive-card__features li {
	color: #000;
	font-size: 1.0625rem;
	font-weight: 600;
	letter-spacing: 0.01em;
	line-height: 1.75;
	margin-bottom: 0.5rem;
	text-align: left;
}

.bemgive-card__highlight {
	color: #ff0050;
}

.bemgive-card__highlight strong {
	font-weight: inherit;
}

/* PC用のbemgive-product-cards設定 */
.bemgive-product-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 2.5rem;
	margin-top: 3.125rem;
}

@media (max-width: 1024px) {
	.bemgive-product-cards {
		gap: 1.5rem;
	}

	.bemgive-card__header {
		padding: 1.125rem 1.75rem;
	}

	.bemgive-card__content {
		padding-left: 1.75rem;
		padding-right: 1.75rem;
	}
}

@media (max-width: 768px) {
	/* MVセクションのスマホ調整 */
	.mv {
		padding-bottom: 2rem;
	}

	.mv__text-group {
		margin-top: 8rem;
	}

	.mv__catch-sp {
		font-size: 1.5rem;
		margin-top: 1rem;
	}

	.mv__sub-sp {
		font-size: 1.125rem;
		line-height: 1.4;
	}

	.mv__title img {
		max-width: 20rem;
	}

	.mv-btn-wrap {
		margin-top: 2rem;
	}

	/* Heroセクションのスマホ調整 */
	.hero {
		padding: 2rem 1rem 6rem 1rem;
	}

	.hero__headline {
		font-size: 2rem;
	}

	.hero__subtext {
		font-size: 0.875rem;
	}

	.hero__main-copy {
		font-size: 1.5rem;
		margin-top: 1rem;
	}

	.hero__main-copy2 {
		font-size: 1.5rem;
		margin-top: 0.5rem;
	}

	.hero__main-copy-pink {
		font-size: 3rem;
	}

	.hero__main-copy-white {
		font-size: 2.5rem;
		margin: 0 0.5rem 0.25rem;
	}

	.hero__main-copy-blue {
		font-size: 3rem;
	}

	.hero__message {
		flex-direction: column;
		gap: 1rem;
		margin-left: 0.5rem;
		margin-top: 2rem;
	}

	.hero__message-top,
	.hero__message-bottom {
		padding: 0.5rem 0.75rem;
		writing-mode: horizontal-tb;
	}

	.hero__message-top {
		font-size: 1.5rem;
	}

	.hero__message-bottom {
		font-size: 2rem;
		line-height: 1.3;
	}

	.hero__image {
		left: 60%;
		top: -5%;
		width: 20rem;
		z-index: 10;
	}

	/* Productセクションのスマホ調整 */
	.product {
		padding: 2rem 1rem;
	}

	.product__inner {
		padding: 0;
	}

	.product__head {
		margin-bottom: 2rem;
	}

	.label__title {
		font-size: 2rem;
	}

	.label__sub-title {
		font-size: 1rem;
	}

	.product__company {
		font-size: 1rem;
		line-height: 1.4;
	}

	.product__name {
		font-size: 2.5rem;
		margin: 0.5rem 0;
	}

	.product__name-en {
		font-size: 1.5rem;
	}

	.product__description {
		font-size: 0.875rem;
		line-height: 1.6;
		margin: 1rem 0;
	}

	.product__results {
		max-width: 100%;
		padding: 2rem 1rem 0 1rem;
		margin: 0 auto;
	}

	.product__results--2 {
		padding-top: 1.5rem;
	}

	.product__results--3 {
		padding-top: 1rem;
	}

	.product__results--4 {
		padding-top: 1rem;
	}

	/* Figmaデザインに基づくProductセクションの修正 */
	.bemgive-product-section {
		width: 100%;
		padding: 0 1rem;
	}

	.bemgive-product-image {
		margin-top: 2rem;
	}

	.bemgive-product-image__img {
		border-radius: 0.75rem;
		z-index: -1;
		position: relative;
	}

	.product__decoration {
		z-index: 100;
	}

	.product__decoration-image {
		z-index: 100;
	}

	.bemgive-product-cards {
		display: grid !important;
		grid-template-columns: 1fr !important;
		gap: 2rem !important;
		margin-top: 2rem !important;
		padding: 0 1rem !important;
	}
}

/* Contact Form 7 スタイル */
#contactform {
	position: relative;
	z-index: 1;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	padding: 20px;
	font-size: 1.6rem;
	font-weight: 500;
	margin: 20px auto;
	padding-bottom: 40px;
}

#contactform h3 {
	position: relative;
	text-align: center;
	padding: 40px 0 0 0;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.2rem;
	color: #fff;
}

#contactform h3:before {
	display: inline-block;
	position: absolute;
	content: "";
	bottom: -10px;
	left: 50%;
	width: 60px;
	height: 3px;
	transform: translate(-50%);
	background-color: #3754A2;
}

#contactform p {
	margin: 0 auto;
}

#contactform input,
#contactform textarea {
	width: 100%;
	padding: 12px 16px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 1.6rem;
	background-color: #fff;
	color: #333;
}

#contactform input:focus,
#contactform textarea:focus {
	outline: none;
	border-color: #3754A2;
	box-shadow: 0 0 0 2px rgba(55, 84, 162, 0.2);
}

#contactform textarea {
	line-height: 2rem;
	padding: 10px;
	min-height: 120px;
	resize: vertical;
}

#contactform .wpcf7-list-item {
	display: flex !important;
	justify-content: left;
	margin-bottom: 15px;
}

/* ドロップダウン（select）のスタイル */
#contactform .wpcf7-form-control-wrap[name="market-research"] {
	position: relative !important;
	display: block !important;
	margin-top: 0.5em !important;
	padding: 0 !important;
}

#contactform select[name="market-research"] {
	width: 100% !important;
	margin: 0 !important;
	border: 1px solid #bbb !important;
	border-radius: 0.3em !important;
	outline: none !important;
	-webkit-box-sizing: border-box !important;
	-moz-box-sizing: border-box !important;
	box-sizing: border-box !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: window !important;
	font-size: 1.4rem !important;
	color: #444 !important;
	padding: 0.6em 1.9em 0.5em 0.8em !important;
	line-height: 1.3 !important;
	cursor: pointer !important;
	text-indent: 0.01px !important;
	text-overflow: "" !important;
	/* グラデーション背景 */
	background: #f3f3f3 !important;
	background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)) !important;
	background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%) !important;
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04) !important;
}

/* カスタム矢印アイコン */
#contactform .wpcf7-form-control-wrap[name="market-research"]::after {
	content: "" !important;
	position: absolute !important;
	width: 9px !important;
	height: 8px !important;
	top: 50% !important;
	right: 1em !important;
	margin-top: -4px !important;
	z-index: 2 !important;
	background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpolygon fill='rgb(102,102,102)' points='8,12 0,0 16,0'/%3E%3C/svg%3E") 0 0 no-repeat !important;
	pointer-events: none !important;
}

/* IE 10/11+ 対応 */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#contactform select[name="market-research"]::-ms-expand {
		display: none !important;
	}
	#contactform select[name="market-research"]:focus::-ms-value {
		background: transparent !important;
		color: #222 !important;
	}
}

/* Firefox >= 2 */
body:last-child #contactform .wpcf7-form-control-wrap[name="market-research"]::after, x:-moz-any-link {
	display: none !important;
}
body:last-child #contactform select[name="market-research"], x:-moz-any-link {
	padding-right: 0.8em !important;
}

/* Firefox 7+ */
_::-moz-progress-bar, body:last-child #contactform .wpcf7-form-control-wrap[name="market-research"] {
	overflow: hidden !important;
}
_::-moz-progress-bar, body:last-child #contactform .wpcf7-form-control-wrap[name="market-research"]::after {
	display: block !important;
}
_::-moz-progress-bar, body:last-child #contactform select[name="market-research"] {
	padding-right: 1.9em !important;
	-moz-appearance: window !important;
	text-indent: 0.01px !important;
	text-overflow: "" !important;
	width: 110% !important;
}

/* Firefox 7+ focus style */
_::-moz-progress-bar, body:last-child #contactform select[name="market-research"]:focus {
	outline: 2px solid rgba(180,222,250, .7) !important;
}

/* Opera */
x:-o-prefocus, #contactform .wpcf7-form-control-wrap[name="market-research"]::after {
	display: none !important;
}

/* Hover style */
#contactform .wpcf7-form-control-wrap[name="market-research"]:hover select[name="market-research"] {
	border: 1px solid #888 !important;
}

/* Focus style */
#contactform select[name="market-research"]:focus {
	outline: none !important;
	box-shadow: 0 0 1px 3px rgba(180,222,250, 1) !important;
	background: #f3f3f3 !important;
	background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)) !important;
	background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
	background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%) !important;
	color: #222 !important;
	border: 1px solid #aaa !important;
}

/* Firefox focus */
#contactform select[name="market-research"]:-moz-focusring {
	color: transparent !important;
	text-shadow: 0 0 0 #000 !important;
}

#contactform select[name="market-research"] option {
	font-weight: normal !important;
}

#contactform .wpcf7-list-item input[type="checkbox"] {
	width: auto;
	margin-right: 10px;
	margin-bottom: 0;
}

#contactform .wpcf7-list-item label {
	color: #fff;
	font-size: 1.4rem;
	margin-bottom: 0;
}

/* Contact Form 7のスクロールボックススタイル */
#contactform .scroll-box {
	width: 100%;
	height: 150px;
	padding: 10px;
	margin: 0 auto 20px auto;
	overflow-y: scroll;
	border: 0.5px solid #D0D0D0;
	background-color: white;
	color: #313131;
	font-size: 1.4rem;
	line-height: 1.6;
}

#contactform .scroll-box h4 {
	font-size: 1.4rem;
	font-weight: 600;
	margin: 10px 0 5px 0;
	color: #313131;
}

#contactform .scroll-box p {
	margin: 5px 0;
	color: #313131;
}

#contactform .scroll-box ul {
	margin: 5px 0 5px 20px;
	color: #313131;
}

#contactform .scroll-box li {
	margin: 2px 0;
	color: #313131;
}

/* チェックボックスとラベルのスタイル */
#contactform .contactform__inside--box {
	margin-bottom: 20px;
}

#contactform .wpcf7-list-item {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

#contactform .wpcf7-list-item input[type="checkbox"] {
	margin-right: 10px;
	width: auto;
}

#contactform .wpcf7-list-item-label {
	color: #000 !important;
	font-size: 1.4rem;
	margin-bottom: 0;
}

#contactform .wpcf7-list-item-label .red {
	color: #ff6b6b;
}

/* チェックボックスのスタイル */
#contactform .wpcf7-list-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

#contactform .wpcf7-list-item input[type="checkbox"],
#contactform input[type="checkbox"],
#contactform label input[type="checkbox"],
#contactform .contactform__inside--box input[type="checkbox"] {
	display: inline-block !important;
	width: 18px !important;
	height: 18px !important;
	margin-right: 10px !important;
	margin-top: 3px !important;
	margin-bottom: 0 !important;
	flex-shrink: 0 !important;
	cursor: pointer !important;
	appearance: none !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	border: 2px solid #999 !important;
	border-radius: 3px !important;
	background-color: #fff !important;
	position: relative !important;
	vertical-align: middle !important;
	pointer-events: auto !important;
	z-index: 100 !important;
	opacity: 1 !important;
}

#contactform input[type="checkbox"]:checked {
	background-color: #666;
	border-color: #666;
}

#contactform input[type="checkbox"]:checked::after {
	content: '';
	position: absolute;
	left: 5px;
	top: 2px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}

#contactform .wpcf7-list-item-label {
	color: #000;
	font-size: 1.4rem;
	margin-bottom: 0;
	line-height: 1.6;
	cursor: pointer;
}

/* 送信ボタンのスタイル */
#contactform .center.submit,
#contactform p.submit,
#contactform .wpcf7-form p:last-child {
	text-align: center !important;
	margin-top: 30px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	display: block !important;
	width: 100% !important;
	position: relative !important;
	z-index: 10 !important;
	pointer-events: auto !important;
}

#contactform .wpcf7-submit,
#contactform input[type="submit"],
#contactform .center.submit input[type="submit"],
#contactform p.submit input[type="submit"] {
	background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%) !important;
	color: #ffffff !important;
	-webkit-text-fill-color: #ffffff !important;
	border: none !important;
	padding: 15px 50px !important;
	font-size: 1.6rem !important;
	font-weight: 600 !important;
	border-radius: 50px !important;
	cursor: pointer !important;
	transition: all 0.3s ease !important;
	display: inline-block !important;
	text-align: center !important;
	min-width: 200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	pointer-events: auto !important;
	z-index: 10 !important;
	position: relative !important;
}

#contactform .wpcf7-submit:hover {
	opacity: 0.9;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3);
}

/* contactform__noteクラスのスタイル */
#contactform .contactform__note {
	text-align: left !important;
}

/* デスクトップ（768px以上）での送信ボタンのスタイル */
@media screen and (min-width: 768px) {
	#contactform .center.submit,
	#contactform p.submit,
	#contactform .wpcf7-form p:last-child {
		text-align: center !important;
		margin-top: 30px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		display: block !important;
		width: 100% !important;
	}

	#contactform .wpcf7-list-item {
		display: flex;
		/* align-items: flex-start; */
		margin-bottom: 0.5rem;
	}
}

/* Contact セクション専用スタイル - 高優先度 */
.contact {
	background: #fff !important;
	background-color: #fff !important;
}

.contact__text {
	color: #000 !important;
}

.contact h3 {
	color: #000 !important;
}

#contactform h3 {
	color: #000 !important;
}

/* Contact Form 7の要素も黒文字に */
.contact .wpcf7-list-item-label {
	color: #000 !important;
}

#contactform .wpcf7-validation-errors,
#contactform .wpcf7-acceptance-missing {
	background-color: #f8d7da;
	color: #721c24;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	border: 1px solid #f5c6cb;
}

#contactform .wpcf7-mail-sent-ok {
	background-color: #d4edda;
	color: #155724;
	padding: 10px;
	border-radius: 4px;
	margin-bottom: 20px;
	border: 1px solid #c3e6cb;
}

/* スマホ用のContact Form 7スタイル */
@media (max-width: 768px) {
	#contactform {
		padding-bottom: 30px;
	}

	#contactform h3 {
		font-size: 2.4rem;
	}

	#contactform input,
	#contactform textarea {
		font-size: 1.4rem;
	}

	#contactform .wpcf7-list-item {
		font-size: 1.4rem;
	}

	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	.contact__text {
		color: #000 !important;
	}

	.contact h3 {
		color: #000 !important;
	}

	#contactform h3 {
		color: #000 !important;
	}

	.contact p {
		color: #000 !important;
	}

	.contact label {
		color: #000 !important;
	}

	#contactform .wpcf7-list-item-label {
		color: #000 !important;
	}

	/* PCと同じ#contactformのスタイルをスマホに適用 */
	#contactform {
		position: relative !important;
		z-index: 1 !important;
		max-width: 800px !important;
		width: 100% !important;
		margin: 20px auto !important;
		background-color: #FFFFFF !important;
		box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.3019607843) !important;
		text-align: left !important;
		font-size: 1.6rem !important;
		font-weight: 500 !important;
		padding: 20px !important;
		padding-bottom: 40px !important;
	}

	/* フォーム見出しのスタイル */
	#contactform h3 {
		position: relative !important;
		/* text-align: center !important; */
		padding: 40px 0 0 0 !important;
		font-size: 2.4rem !important;
		font-weight: 500 !important;
		letter-spacing: 0.2rem !important;
		color: #000 !important;
		margin-bottom: 30px !important;
	}

	#contactform h3:before {
		display: inline-block !important;
		position: absolute !important;
		content: "" !important;
		bottom: -10px !important;
		left: 50% !important;
		width: 60px !important;
		height: 3px !important;
		transform: translate(-50%) !important;
		background-color: #3754A2 !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	/* Contact Form 7の入力フィールドスタイル */
	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	/* ドロップダウン（select）のスタイル（メディアクエリ内） */
	#contactform .wpcf7-form-control-wrap[name="market-research"] {
		position: relative !important;
		display: block !important;
		margin-top: 0.5em !important;
		padding: 0 !important;
	}

	#contactform select[name="market-research"] {
		width: 100% !important;
		margin: 0 !important;
		border: 1px solid #bbb !important;
		border-radius: 0.3em !important;
		outline: none !important;
		-webkit-box-sizing: border-box !important;
		-moz-box-sizing: border-box !important;
		box-sizing: border-box !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		-moz-appearance: window !important;
		font-size: 1rem !important;
		color: #444 !important;
		padding: 0.6em 1.9em 0.5em 0.8em !important;
		line-height: 1.3 !important;
		cursor: pointer !important;
		text-indent: 0.01px !important;
		text-overflow: "" !important;
		/* グラデーション背景 */
		background: #f3f3f3 !important;
		background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)) !important;
		background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%) !important;
		box-shadow: 0 1px 0 1px rgba(0,0,0,.04) !important;
	}

	/* カスタム矢印アイコン */
	#contactform .wpcf7-form-control-wrap[name="market-research"]::after {
		content: "" !important;
		position: absolute !important;
		width: 9px !important;
		height: 8px !important;
		top: 50% !important;
		right: 1em !important;
		margin-top: -4px !important;
		z-index: 2 !important;
		background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12'%3E%3Cpolygon fill='rgb(102,102,102)' points='8,12 0,0 16,0'/%3E%3C/svg%3E") 0 0 no-repeat !important;
		pointer-events: none !important;
	}

	/* IE 10/11+ 対応 */
	@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
		#contactform select[name="market-research"]::-ms-expand {
			display: none !important;
		}
		#contactform select[name="market-research"]:focus::-ms-value {
			background: transparent !important;
			color: #222 !important;
		}
	}

	/* Firefox >= 2 */
	body:last-child #contactform .wpcf7-form-control-wrap[name="market-research"]::after, x:-moz-any-link {
		display: none !important;
	}
	body:last-child #contactform select[name="market-research"], x:-moz-any-link {
		padding-right: 0.8em !important;
	}

	/* Firefox 7+ */
	_::-moz-progress-bar, body:last-child #contactform .wpcf7-form-control-wrap[name="market-research"] {
		overflow: hidden !important;
	}
	_::-moz-progress-bar, body:last-child #contactform .wpcf7-form-control-wrap[name="market-research"]::after {
		display: block !important;
	}
	_::-moz-progress-bar, body:last-child #contactform select[name="market-research"] {
		padding-right: 1.9em !important;
		-moz-appearance: window !important;
		text-indent: 0.01px !important;
		text-overflow: "" !important;
		width: 110% !important;
	}

	/* Firefox 7+ focus style */
	_::-moz-progress-bar, body:last-child #contactform select[name="market-research"]:focus {
		outline: 2px solid rgba(180,222,250, .7) !important;
	}

	/* Opera */
	x:-o-prefocus, #contactform .wpcf7-form-control-wrap[name="market-research"]::after {
		display: none !important;
	}

	/* Hover style */
	#contactform .wpcf7-form-control-wrap[name="market-research"]:hover select[name="market-research"] {
		border: 1px solid #888 !important;
	}

	/* Focus style */
	#contactform select[name="market-research"]:focus {
		outline: none !important;
		box-shadow: 0 0 1px 3px rgba(180,222,250, 1) !important;
		background: #f3f3f3 !important;
		background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)) !important;
		background: -webkit-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: -o-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: -ms-linear-gradient(top, #ffffff 0%, #e5e5e5 100%) !important;
		background: linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%) !important;
		color: #222 !important;
		border: 1px solid #aaa !important;
	}

	/* Firefox focus */
	#contactform select[name="market-research"]:-moz-focusring {
		color: transparent !important;
		text-shadow: 0 0 0 #000 !important;
	}

	#contactform select[name="market-research"] option {
		font-weight: normal !important;
	}

	#contactform input[type="text"]:focus,
	#contactform input[type="email"]:focus,
	#contactform input[type="tel"]:focus,
	#contactform textarea:focus {
		outline: none !important;
		border-color: #3754A2 !important;
		box-shadow: 0 0 0 2px rgba(55, 84, 162, 0.2) !important;
	}

	#contactform textarea {
		line-height: 1.5 !important;
		padding: 10px !important;
		min-height: 120px !important;
		resize: vertical !important;
	}

	/* フォームのラベルスタイル */
	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	/* 必須マークのスタイル */
	#contactform .wpcf7-form-control-wrap {
		display: block !important;
		position: relative !important;
	}

	/* プレースホルダーのスタイル */
	#contactform input::placeholder,
	#contactform textarea::placeholder {
		color: #999 !important;
		opacity: 1 !important;
	}

	/* チェックボックスのスタイル */
	#contactform .wpcf7-list-item {
		display: flex !important;
		align-items: flex-start !important;
		margin-bottom: 15px !important;
	}

	#contactform .wpcf7-list-item input[type="checkbox"],
	#contactform input[type="checkbox"] {
		display: inline-block !important;
		width: 18px !important;
		height: 18px !important;
		margin-right: 10px !important;
		margin-top: 3px !important;
		margin-bottom: 0 !important;
		flex-shrink: 0 !important;
		cursor: pointer !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		border: 2px solid #999 !important;
		border-radius: 3px !important;
		background-color: #fff !important;
		position: relative !important;
		vertical-align: middle !important;
	}

	#contactform input[type="checkbox"]:checked {
		background-color: #666 !important;
		border-color: #666 !important;
	}

	#contactform input[type="checkbox"]:checked::after {
		content: '' !important;
		position: absolute !important;
		left: 5px !important;
		top: 2px !important;
		width: 5px !important;
		height: 10px !important;
		border: solid white !important;
		border-width: 0 2px 2px 0 !important;
		transform: rotate(45deg) !important;
	}

	/* ラジオボタンのスタイル（メディアクエリ内）- ボタン風スタイル */
	#contactform .wpcf7-list-item input[type="radio"],
	#contactform input[type="radio"],
	#contactform .wpcf7-radio input[type="radio"],
	#contactform .wpcf7-list-item-label input[type="radio"] {
		position: absolute !important;
		opacity: 0 !important;
		width: 100% !important;
		height: 100% !important;
		left: 0 !important;
		top: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		cursor: pointer !important;
		z-index: 2 !important;
	}

	/* ラジオボタンのlabelタグ全体をクリック可能にする（メディアクエリ内、ラジオボタンのみ） */
	#contactform .wpcf7-radio .wpcf7-list-item label,
	#contactform .wpcf7-list-item:has(input[type="radio"]) label {
		position: relative !important;
		display: inline-block !important;
		cursor: pointer !important;
	}

	/* acceptanceチェックボックスは通常の動作を維持（メディアクエリ内） */
	#contactform .wpcf7-acceptance,
	#contactform .wpcf7-acceptance label,
	#contactform .wpcf7-acceptance input[type="checkbox"],
	#contactform .wpcf7-acceptance .wpcf7-list-item,
	#contactform .wpcf7-acceptance .wpcf7-list-item-label {
		position: relative !important;
		cursor: pointer !important;
		pointer-events: auto !important;
		z-index: auto !important;
		display: block !important;
	}

	/* acceptanceチェックボックスのinput要素を確実にクリック可能にする（メディアクエリ内） */
	#contactform .wpcf7-acceptance input[type="checkbox"] {
		width: 18px !important;
		height: 18px !important;
		margin-right: 8px !important;
		vertical-align: middle !important;
	}

	/* ラジオボタンのリストアイテムを横並びに */
	#contactform .wpcf7-radio .wpcf7-list-item,
	#contactform .wpcf7-list-item:has(input[type="radio"]) {
		display: inline-flex !important;
		margin-right: 15px !important;
		margin-bottom: 15px !important;
		position: relative !important;
	}

	/* ラジオボタンのラベルをボタン風にスタイリング（ラジオボタンのみ） */
	#contactform .wpcf7-radio .wpcf7-list-item-label,
	#contactform .wpcf7-list-item:has(input[type="radio"]) .wpcf7-list-item-label {
		display: inline-block !important;
		padding: 10px 20px !important;
		border: 2px solid #ccc !important;
		border-radius: 5px !important;
		background-color: #fff !important;
		color: #333 !important;
		position: relative !important;
		pointer-events: none !important;
		z-index: 1 !important;
		font-size: 1rem !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		/* text-align: center !important; */
		min-width: 70px !important;
		user-select: none !important;
	}

	/* チェックボックスのラベルは通常のスタイルに戻す（メディアクエリ内） */
	#contactform .wpcf7-list-item:has(input[type="checkbox"]) .wpcf7-list-item-label,
	#contactform .wpcf7-checkbox .wpcf7-list-item-label {
		display: inline !important;
		padding: 0 !important;
		border: none !important;
		border-radius: 0 !important;
		background-color: transparent !important;
		color: #000 !important;
		min-width: auto !important;
		text-align: left !important;
	}

	/* より確実な方法：ラジオボタンのラベル以外をリセット（メディアクエリ内） */
	#contactform .wpcf7-list-item-label:not(:has(input[type="radio"])) {
		padding: 0 !important;
		border: none !important;
		border-radius: 0 !important;
		background-color: transparent !important;
		min-width: auto !important;
		text-align: left !important;
	}

	/* ホバー時のスタイル（ラジオボタンのみ） */
	#contactform .wpcf7-radio .wpcf7-list-item-label:hover,
	#contactform .wpcf7-list-item:has(input[type="radio"]) .wpcf7-list-item-label:hover {
		border-color: #666 !important;
		background-color: #f5f5f5 !important;
	}

	/* 選択されたラジオボタンのラベルスタイル */
	#contactform .wpcf7-radio input[type="radio"]:checked + .wpcf7-list-item-label,
	#contactform .wpcf7-list-item input[type="radio"]:checked + .wpcf7-list-item-label,
	#contactform input[type="radio"]:checked + .wpcf7-list-item-label,
	#contactform .wpcf7-radio input[type="radio"]:checked ~ .wpcf7-list-item-label,
	#contactform .wpcf7-list-item input[type="radio"]:checked ~ .wpcf7-list-item-label {
		background-color: #666 !important;
		color: #fff !important;
		border-color: #666 !important;
		font-weight: 600 !important;
	}

	#contactform .wpcf7-list-item-label {
		color: #000 !important;
		font-size: 1rem !important;
		margin-bottom: 0 !important;
		line-height: 1.6 !important;
		cursor: pointer !important;
	}

	/* 送信ボタンのスタイル */
	input[type=submit],
	#contactform .wpcf7-submit,
	#contactform input[type="submit"],
	#contactform .center.submit input[type="submit"],
	#contactform p.submit input[type="submit"] {
		background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%) !important;
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
		border: none !important;
		padding: 15px 50px !important;
		font-size: 1rem !important;
		font-weight: 600 !important;
		border-radius: 50px !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		display: inline-block !important;
		text-align: left !important;
		min-width: 200px !important;
		max-width: 400px !important;
		width: auto !important;
		height: auto !important;
		margin-left: auto !important;
		margin-right: auto !important;
		pointer-events: auto !important;
		z-index: 10 !important;
		position: relative !important;
	}

	input[type=submit]:hover,
	#contactform .wpcf7-submit:hover {
		opacity: 0.9 !important;
		transform: translateY(-2px) !important;
		box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3) !important;
	}

	/* 送信ボタンを中央揃え */
	#contactform .center.submit,
	#contactform p.submit,
	#contactform .wpcf7-form p:last-child {
		text-align: center !important;
		margin-top: 30px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		display: block !important;
		width: 100% !important;
		position: relative !important;
		z-index: 10 !important;
		pointer-events: auto !important;
	}

	/* フォームのparagraphスタイル */
	#contactform p {
		margin: 0 auto !important;
		margin-bottom: 20px !important;
	}

	.bemgive-card {
		width: 18.0625rem; /* 289px */
		height: 18.625rem; /* 298px */
		background: #F7F7F7;
		border: 0.133125rem solid #000; /* 2.13px */
		border-radius: 0.664375rem; /* 10.63px */
		margin: 0 auto;
		overflow: hidden;
		position: relative;
		padding: 0;
	}

	.bemgive-card__header {
		width: 100%;
		height: 2.424375rem; /* 38.79px */
		background: #000;
		border-top-left-radius: 0.664375rem; /* 10.63px */
		border-top-right-radius: 0.664375rem; /* 10.63px */
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 0;
		left: 0;
	}

	.bemgive-card__header h3 {
		color: #fff;
		font-size: 0.75rem; /* 12px */
		font-family: 'A-OTF Gothic MB101 Pro', sans-serif;
		font-weight: 600;
		line-height: 0.99625rem; /* 15.94px */
		margin: 0;
		text-align: center;
	}

	.bemgive-card__image {
		position: absolute;
		left: 3.254375rem; /* 52.07px */
		top: 4.2175rem; /* 67.48px */
		width: 11.569375rem; /* 185.11px */
		height: 7.33125rem; /* 117.30px */
		padding: 0;
	}

	.bemgive-card__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		border-radius: 0;
		max-width: none;
	}

	.bemgive-card__phones {
		position: absolute;
		left: 1.660625rem; /* 26.57px */
		top: 4.315rem; /* 69.04px */
		width: 15.75rem; /* 252px */
		height: 6.895625rem; /* 110.33px */
		display: flex !important;
		justify-content: space-between !important;
		align-items: flex-start !important;
		gap: 0 !important;
		padding: 0 !important;
		margin: 0 !important;
	}

	.bemgive-card__phone-item {
		width: 3.386875rem !important; /* 54.19px */
		height: 6.895625rem !important; /* 110.33px */
		flex: none !important;
		max-width: none !important;
	}

	.bemgive-card__phone-item img {
		width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		border-radius: 0 !important;
	}

	.bemgive-card__content {
		position: absolute;
		left: 1.875rem; /* 30px */
		top: 12.885625rem; /* 206.17px */
		width: 15.3125rem; /* 245px */
		padding: 0;
	}

	.bemgive-card__features {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.bemgive-card__features li {
		color: #000;
		font-size: 0.625rem; /* 10px */
		font-family: 'A-OTF Gothic MB101 Pro', sans-serif;
		font-weight: 400;
		line-height: 1.2;
		margin-bottom: 0.25rem;
		text-align: left;
	}

	.bemgive-card__highlight {
		color: #FF0050;
		font-weight: 700;
	}

	.bemgive-card__highlight strong {
		font-weight: inherit;
	}

	/* Contactボタンのスマホ調整 */
	.contact-btn {
		max-width: 20rem;
		padding: 0.8rem 2rem;
		margin: 1rem auto;
	}

	.contact-btn__text {
		font-size: 1rem;
		text-align: center;
	}

	.contact-btn__image {
		top: -2rem;
		width: 4rem;
	}

	/* Problemセクションのスマホ調整 */
	.problem__inner {
		padding: 2rem 1rem;
	}

	.problem__content {
		flex-direction: column;
		gap: 1rem;
	}

	.problem__image-block {
		order: 1;
		max-width: 12rem;
		margin: 0 auto;
	}

	.problem__text-block {
		order: 2;
		text-align: center;
	}

	.problem__title {
		font-size: 1.125rem;
	}

	.problem__title-sub {
		font-size: 1.125rem;
		margin-top: 0.5rem;
	}

	.problem__list-block {
		order: 3;
		margin-top: 1rem;
	}

	.problem__list {
		font-size: 0.875rem;
	}

	.problem__item {
		font-size: 0.875rem;
		margin-bottom: 0.5rem;
	}

	.problem__conclusion {
		display: block;
		text-align: center;
		font-size: 1rem;
		margin-top: 1rem;
		color: #ff0050;
		font-weight: bold;
	}
}

@media (max-width: 480px) {
	/* より小さなスマホ画面用の調整 */
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	body .contact__text {
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
	}

	.contact h3 {
		color: #000 !important;
	}

	#contactform h3 {
		color: #000 !important;
	}

	.contact p {
		color: #000 !important;
	}

	.contact label {
		color: #000 !important;
	}

	#contactform .wpcf7-list-item-label {
		color: #000 !important;
	}

	/* フォームスタイルの追加 */
	#contactform {
		position: relative !important;
		z-index: 1 !important;
		max-width: 800px !important;
		width: 100% !important;
		margin: 20px auto !important;
		background-color: #FFFFFF !important;
		box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.3019607843) !important;
		text-align: left !important;
		font-size: 1.6rem !important;
		font-weight: 500 !important;
		padding: 20px !important;
		padding-bottom: 40px !important;
	}

	#contactform h3 {
		position: relative !important;
		text-align: center !important;
		padding: 40px 0 20px 0 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
		letter-spacing: 0.2rem !important;
		color: #000 !important;
		margin-bottom: 30px !important;
	}

	#contactform h3:before {
		display: inline-block !important;
		position: absolute !important;
		content: "" !important;
		bottom: 0 !important;
		left: 50% !important;
		width: 60px !important;
		height: 3px !important;
		transform: translate(-50%) !important;
		background-color: #3754A2 !important;
	}

	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	/* 送信ボタンのスタイル */
	#contactform .wpcf7-submit,
	#contactform input[type="submit"],
	#contactform .center.submit input[type="submit"],
	#contactform p.submit input[type="submit"] {
		background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%) !important;
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
		border: none !important;
		padding: 15px 50px !important;
		font-size: 1rem !important;
		font-weight: 600 !important;
		border-radius: 50px !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		display: inline-block !important;
		text-align: center !important;
		min-width: 200px !important;
		pointer-events: auto !important;
		z-index: 10 !important;
		position: relative !important;
	}

	#contactform .wpcf7-submit:hover {
		opacity: 0.9 !important;
		transform: translateY(-2px) !important;
		box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3) !important;
	}

	/* 送信ボタンを中央揃え */
	#contactform .center.submit,
	#contactform p.submit,
	#contactform .wpcf7-form p:last-child {
		text-align: center !important;
		margin-top: 30px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		display: block !important;
		width: 100% !important;
		position: relative !important;
		z-index: 10 !important;
		pointer-events: auto !important;
	}

	/* チェックボックスのスタイル */
	#contactform .wpcf7-list-item {
		display: flex !important;
		align-items: flex-start !important;
		margin-bottom: 15px !important;
	}

	#contactform .wpcf7-list-item input[type="checkbox"],
	#contactform input[type="checkbox"] {
		display: inline-block !important;
		width: 18px !important;
		height: 18px !important;
		margin-right: 10px !important;
		margin-top: 3px !important;
		margin-bottom: 0 !important;
		flex-shrink: 0 !important;
		cursor: pointer !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		border: 2px solid #999 !important;
		border-radius: 3px !important;
		background-color: #fff !important;
		position: relative !important;
		vertical-align: middle !important;
	}

	#contactform input[type="checkbox"]:checked {
		background-color: #666 !important;
		border-color: #666 !important;
	}

	#contactform input[type="checkbox"]:checked::after {
		content: '' !important;
		position: absolute !important;
		left: 5px !important;
		top: 2px !important;
		width: 5px !important;
		height: 10px !important;
		border: solid white !important;
		border-width: 0 2px 2px 0 !important;
		transform: rotate(45deg) !important;
	}

	#contactform .wpcf7-list-item-label {
		color: #000 !important;
		font-size: 1rem !important;
		margin-bottom: 0 !important;
		line-height: 1.6 !important;
		cursor: pointer !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	.mv__text-group {
		margin-top: 6rem;
	}

	.mv__catch-sp {
		font-size: 1.25rem;
	}

	.mv__sub-sp {
		font-size: 1rem;
	}

	.mv__title img {
		max-width: 18rem;
	}

	.hero__headline {
		font-size: 1.75rem;
	}

	.hero__main-copy-pink {
		font-size: 2.5rem;
	}

	.hero__main-copy-white {
		font-size: 2rem;
	}

	.hero__main-copy-blue {
		font-size: 2.5rem;
	}

	.hero__message-top {
		font-size: 1.25rem;
	}

	.hero__message-bottom {
		font-size: 1.75rem;
	}

	.product__name {
		font-size: 2rem;
	}

	.product__name-en {
		font-size: 1.25rem;
	}

	.product__results {
		padding: 1.5rem 0.5rem 0 0.5rem;
	}

	.product__results--2 {
		padding-top: 1rem;
	}

	.product__results--3 {
		padding-top: 0.75rem;
	}

	.product__results--4 {
		padding-top: 0.75rem;
	}

	/* より小さなスマホ画面用のProductセクション調整 */
	.bemgive-product-cards {
		display: grid !important;
		grid-template-columns: 1fr !important;
		padding: 0 0.5rem !important;
		gap: 1.5rem !important;
		margin-top: 2rem !important;
	}

	.bemgive-card {
		width: 16rem; /* より小さな画面に合わせて調整 */
		height: 16.5rem;
		padding: 0;
	}

	.bemgive-card__header h3 {
		font-size: 0.7rem; /* 11.2px */
	}

	.bemgive-card__image {
		left: 2.5rem;
		top: 3.5rem;
		width: 11rem;
		height: 7rem;
	}

	.bemgive-card__phones {
		left: 1.25rem;
		top: 3.75rem;
		width: 13.5rem;
		height: 6rem;
	}

	.bemgive-card__phone-item {
		width: 3rem !important; /* 48px */
		height: 6rem !important; /* 96px */
	}

	.bemgive-card__content {
		left: 1.5rem;
		top: 11.5rem;
		width: 13rem;
	}

	.bemgive-card__features li {
		font-size: 0.6rem; /* 9.6px */
		line-height: 1.1;
	}
}

.service {
	background-image: url("../images/common/service-pc-bg.jpg");
	margin-top: 0rem;
	padding: 5.3125rem 1.5625rem 8.6875rem 1.5625rem;
}

.service__content {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 4.375rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.125rem;
	max-width: 65rem;
	padding: 0rem;
	row-gap: 2.5rem;
	width: 100%;
}

.service__item {
	padding: 1.5625rem 2.5rem 1.5625rem 2.5rem;
}

.service__icon {
	margin-bottom: 0rem;
}

.service__icon img {
	width: 7.5625rem;
}

.service__icon2 img {
	height: 7.1875rem;
	width: 7.5625rem;
}

.service__icon3 img {
	height: 7.875rem;
	width: 9.0625rem;
}

.service__icon4 img {
	height: 7.875rem;
	width: 5rem;
}

.service__title {
	font-size: 1.125rem;
	margin-top: 1.25rem;
}

.service__text {
	font-size: 1rem;
	line-height: 1.8;
	margin-top: 0.9375rem;
}

.swiper__wrap {
	display: flex;
	gap: 4.25rem;
	margin: 0 auto;
	max-width: 75rem;
}

.swiper__img {
	margin: 0 auto;
	width: 36%;
}

.swiper-button-prev,
.swiper-button-next {
	top: 50%;
	transform: translateY(-50%);
}

.works__content .swiper-button-next {
	right: 0rem !important;
}

.works__content .swiper-button-prev {
	left: 0rem !important;
}

.swiper__container {
	max-width: 36.875rem;
	padding: 6.25rem 0rem 1rem 0rem;
}

.swiper__name-wrap {
	align-items: baseline;
	display: flex;
	margin-bottom: 0rem;
}

.swiper__name {
	background-color: transparent;
	font-size: 1.625rem;
	padding: 0;
}

.swiper__sub-name {
	font-size: 1rem;
	margin-left: 0.625rem;
}

.swiper__section {
	margin-bottom: 0rem;
	margin-top: 2.5rem;
}

.swiper__section--2 {
	margin-top: 1.5625rem;
}

.swiper__title {
	font-size: 1rem;
	margin-top: 0rem;
}

.swiper__highlight {
	font-size: 1.625rem;
	margin-top: 0.625rem;
}

.swiper__description {
	font-size: 1.1875rem;
	line-height: 1.5;
	margin-top: 1.125rem;
}

.works__inner {
	padding: 3.4375rem 1.5625rem;
}

}

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

.hero__message {
	flex-direction: column;
	gap: 1.875rem;
	margin-left: 2.5rem;
	margin-top: 6.25rem;
}

.loop-banner {
	bottom: 6.25rem;
}

.mv__logo img {
	width: 31.3125rem;
}

.product__decoration-image {
	width: 5rem;
}

.product__results {
	max-width: 56.25rem;
}

.product__image4 {
	margin-top: 2.8125rem;
	order: 0;
	width: 100%;
}

.swiper-button-prev,
.swiper-button-next {
	top: 130%;
	transform: translateY(-130%);
}

}

@media (min-width: 1200px) {

.message__image--left {
	transform: translateX(-90%);
}

.message__image--right {
	transform: translateX(90%);
}

}

@media (min-width: 1240px) {

html {
	font-size: 16px;
}

}

@media (min-width: 1350px) {

.problem__list {
	margin-right: -8.125rem;
}

}

@media screen and (min-width: 1445px) {

.hero__message {
	margin-left: 11.25rem;
	z-index: -1;
}

.loop-banner__track {
	width: 270%;
}

.product__decoration-image {
	width: 7.84375rem;
}

.product__results {
	max-width: 68.75rem;
}

}

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

.hero__image {
	z-index: 0;
}

}

@media screen and (max-width: 766px) {
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	/* フォームスタイル */
	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	#contactform h3 {
		color: #000 !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	/* contact__textのスマホ表示設定 */
	.contact__text {
		color: #000 !important;
		display: block !important;
		font-size: 1.375rem !important;
		/* text-align: center !important; */
		margin-bottom: 1.5rem !important;
	}

.product__icon {
	top: -0.625rem;
	width: 13%;
}

}

@media screen and (max-width: 750px) {
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	/* フォームスタイル */
	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	#contactform h3 {
		color: #000 !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	/* contact__textのスマホ表示設定 */
	.contact__text {
		color: #000 !important;
		display: block !important;
		font-size: 1.375rem !important;
		text-align: center !important;
		margin-bottom: 1.5rem !important;
	}

.product__icon {
	top: -0.625rem;
	width: 24%;
}

}

@media screen and (max-width: 500px) {
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	/* フォームスタイル */
	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	/* contact__textのスマホ表示設定 */
	.contact__text {
		color: #000 !important;
		display: block !important;
		font-size: 1.375rem !important;
		text-align: center !important;
		margin-bottom: 1.5rem !important;
	}

.mv__image-wrapper {
	bottom: 10.625rem;
}

}

@media screen and (max-width: 440px) {
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	/* フォームスタイル */
	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	/* contact__textのスマホ表示設定 */
	.contact__text {
		color: #000 !important;
		display: block !important;
		font-size: 1.375rem !important;
		text-align: center !important;
		margin-bottom: 1.5rem !important;
	}

.product__icon {
	width: 30%;
}

}

@media screen and (max-width: 400px) {
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	/* フォームスタイル */
	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	/* contact__textのスマホ表示設定 */
	.contact__text {
		color: #000 !important;
		display: block !important;
		font-size: 1.375rem !important;
		text-align: center !important;
		margin-bottom: 1.5rem !important;
	}

.mv__image-wrapper {
	bottom: 10rem;
}

}

@media (max-width: 375px) {
	/* スマホ用 Contact セクション専用スタイル - 最高優先度 */
	html,
	body {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}

	body .contact {
		background: #fff !important;
		background-color: #fff !important;
		background-image: none !important;
	}


	.contact__text {
		color: #000 !important;
		display: block !important;
		font-size: 1.375rem !important;
		text-align: center !important;
		margin-bottom: 1.5rem !important;
	}

	.contact h3 {
		color: #000 !important;
	}

	#contactform h3 {
		color: #000 !important;
	}

	.contact p {
		color: #000 !important;
		font-size: 1rem !important;
		padding-bottom: 0.1rem !important;
	}

	.contact label {
		color: #000 !important;
	}

	#contactform .wpcf7-list-item-label {
		color: #000 !important;
	}

	/* フォームスタイルの追加 */
	#contactform {
		position: relative !important;
		z-index: 1 !important;
		max-width: 800px !important;
		width: 100% !important;
		margin: 20px auto !important;
		background-color: #FFFFFF !important;
		box-shadow: 0px 0px 6px -2px rgba(0, 0, 0, 0.3019607843) !important;
		text-align: left !important;
		font-size: 1.6rem !important;
		font-weight: 500 !important;
		padding: 20px !important;
		padding-bottom: 40px !important;
	}

	#contactform h3 {
		position: relative !important;
		text-align: center !important;
		padding: 40px 0 0 0 !important;
		font-size: 2.4rem !important;
		font-weight: 500 !important;
		letter-spacing: 0.2rem !important;
		color: #000 !important;
		margin-bottom: 30px !important;
	}

	#contactform h3:before {
		display: inline-block !important;
		position: absolute !important;
		content: "" !important;
		bottom: -10px !important;
		left: 50% !important;
		width: 60px !important;
		height: 3px !important;
		transform: translate(-50%) !important;
		background-color: #3754A2 !important;
	}

	#contactform input[type="text"],
	#contactform input[type="email"],
	#contactform input[type="tel"],
	#contactform textarea {
		width: 100% !important;
		padding: 12px 16px !important;
		margin-bottom: 20px !important;
		border: 1px solid #ddd !important;
		border-radius: 4px !important;
		font-size: 1rem !important;
		background-color: #fff !important;
		color: #333 !important;
		display: block !important;
		box-sizing: border-box !important;
	}

	#contactform label {
		display: block !important;
		margin-bottom: 8px !important;
		color: #000 !important;
		font-size: 1rem !important;
		font-weight: 500 !important;
	}

	#contactform .wpcf7-submit {
		background: linear-gradient(90deg, rgb(255, 0, 80) 0%, rgb(54, 15, 27) 50%, rgb(0, 242, 234) 100%) !important;
		color: #ffffff !important;
		-webkit-text-fill-color: #ffffff !important;
		border: none !important;
		padding: 15px 50px !important;
		font-size: 1rem !important;
		font-weight: 600 !important;
		border-radius: 50px !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		display: inline-block !important;
		/* text-align: center !important; */
		min-width: 200px !important;
	}

	#contactform .wpcf7-submit:hover {
		opacity: 0.9 !important;
		transform: translateY(-2px) !important;
		box-shadow: 0 4px 12px rgba(255, 0, 80, 0.3) !important;
	}

	/* 送信ボタンを中央揃え */
	#contactform .center.submit,
	#contactform p.submit,
	#contactform .wpcf7-form p:last-child {
		text-align: center !important;
		margin-top: 30px !important;
		margin-left: auto !important;
		margin-right: auto !important;
		display: block !important;
		width: 100% !important;
		font-size: 1rem !important;
	}

	/* contactform__noteクラスの文字サイズを修正 */
	#contactform .contactform__note {
		font-size: 1rem !important;
		text-align: left !important;
	}

	/* チェックボックスのスタイル */
	#contactform .wpcf7-list-item {
		display: flex !important;
		align-items: flex-start !important;
		margin-bottom: 15px !important;
	}

	#contactform .wpcf7-list-item input[type="checkbox"],
	#contactform input[type="checkbox"] {
		display: inline-block !important;
		width: 18px !important;
		height: 18px !important;
		margin-right: 10px !important;
		margin-top: 3px !important;
		margin-bottom: 0 !important;
		flex-shrink: 0 !important;
		cursor: pointer !important;
		appearance: none !important;
		-webkit-appearance: none !important;
		-moz-appearance: none !important;
		border: 2px solid #999 !important;
		border-radius: 3px !important;
		background-color: #fff !important;
		position: relative !important;
		vertical-align: middle !important;
	}

	#contactform input[type="checkbox"]:checked {
		background-color: #666 !important;
		border-color: #666 !important;
	}

	#contactform input[type="checkbox"]:checked::after {
		content: '' !important;
		position: absolute !important;
		left: 5px !important;
		top: 2px !important;
		width: 5px !important;
		height: 10px !important;
		border: solid white !important;
		border-width: 0 2px 2px 0 !important;
		transform: rotate(45deg) !important;
	}

	#contactform .wpcf7-list-item-label {
		color: #000 !important;
		font-size: 1rem !important;
		margin-bottom: 0 !important;
		line-height: 1.6 !important;
		cursor: pointer !important;
	}

	/* scroll-boxのスタイル */
	#contactform .scroll-box {
		width: 100% !important;
		height: 150px !important;
		padding: 10px !important;
		margin: 0 auto 20px auto !important;
		overflow-y: scroll !important;
		border: 0.5px solid #D0D0D0 !important;
		background-color: white !important;
		color: #313131 !important;
		font-size: 1rem !important;
		line-height: 1.6 !important;
	}

	#contactform .scroll-box h4 {
		font-size: 1rem !important;
		font-weight: 600 !important;
		margin: 10px 0 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box p {
		margin: 5px 0 !important;
		color: #313131 !important;
	}

	#contactform .scroll-box ul {
		margin: 5px 0 5px 20px !important;
		color: #313131 !important;
	}

	#contactform .scroll-box li {
		margin: 2px 0 !important;
		color: #313131 !important;
	}

	html {
		font-size: 4.2666666667vw;
	}
}

@keyframes scroll-loop {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-50%);
	}
}

/* 追従ボタン */
.fixed-contact-btn {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	width: 90%;
	max-width: 600px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fixed-contact-btn.is-visible {
	opacity: 1;
	visibility: visible;
}

.fixed-contact-btn .contact-btn {
	width: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (min-width: 769px) {
	.fixed-contact-btn {
		bottom: 30px;
		max-width: 800px;
	}
}







/* =================================================
   FV Renewal FINAL CSS（CLEAN & STABLE）
   既存CSSは一切変更しない
================================================= */

/* =================================================
   1. FV 基本構造
================================================= */
.mv--renewal {
	position: relative;
	width: 100%;
	height: 900px;              /* PC基準 */
	background-color: #000;
	overflow: hidden;
  }
  
  @media (max-width: 768px) {
	.mv--renewal {
	  height: 630px;            /* SP基準 */
	}
  }
  
  .mv--renewal .mv__inner {
	position: relative;
	height: 100%;
  }
  
  /* =================================================
	 2. UIレイヤー（基準レイヤー）
	 ※ すべての配置基準はここ
  ================================================= */
  .mv--renewal .mv-ui {
	position: relative;
	z-index: 20;
	text-align: center;
  
	/* ナビ直下 */
	padding-top: 80px;
  
	/* FV内に収めるための最終スケール */
	transform: scale(0.93) translateY(-60px);
	transform-origin: top center;
  }
  
  /* =================================================
	 3. TikTok ロゴ
  ================================================= */
  .mv--renewal .mv__logo {
	display: flex;
	justify-content: center;
  }
  
  .mv--renewal .mv__logo img {
	width: 320px;
	max-width: 50vw;
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv__logo img {
	  width: 260px;
	}
  }
  
  /* =================================================
	 4. テキストブロック
  ================================================= */
  
  /* 解決します！ */
  .mv--renewal .mv-solution {
	margin-top: 60px;
	font-size: 32px;
	font-weight: 700;
	color: #fff;
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv-solution {
	  font-size: 20px;
	}
  }
  
  /* 金テキスト（主役） */
  .mv--renewal .mv-problem {
	margin-top: 20px;
  }
  
  .mv--renewal .mv-problem img {
	display: block;
	width: 980px;
	max-width: 95%;
	margin: 0 auto;
	filter: drop-shadow(0 0 14px rgba(255, 215, 100, 0.7));
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv-problem img {
	  width: 90%;
	}
  }
  
  /* サブコピー */
  .mv--renewal .mv-sub {
	margin-top: 14px;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv-sub {
	  font-size: 14px;
	}
  }
  
  /* =================================================
	 5. 実績（メダル）
  ================================================= */
  .mv--renewal .mv-achievements {
	margin-top: 26px;
  }
  
  .mv--renewal .mv-achievements__list {
	display: flex;
	justify-content: center;
	gap: 24px;
  }
  
  .mv--renewal .mv-achievements__list li img {
	width: 150px;
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv-achievements__list {
	  gap: 12px;
	}
  
	.mv--renewal .mv-achievements__list li img {
	  width: 110px;
	}
  }
  
  /* =================================================
	 6. CTA
  ================================================= */
  .mv--renewal .mv-btn-wrap {
	margin-top: 22px;
	position: relative;
	z-index: 30;   /* 最前面 */
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv-btn-wrap {
	  margin-top: 18px;
	}
  }
  
  /* =================================================
	 7. 人物レイヤー（UIより下）
  ================================================= */
  .mv--renewal .mv-people {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	z-index: 10;
	pointer-events: none;
  }
  
  .mv--renewal .mv-people__image {
	width: 1100px;
	max-width: 100%;
	margin: 0 auto;
	display: block;
	opacity: 0.9;
  }
  
  @media (max-width: 768px) {
	.mv--renewal .mv-people__image {
	  width: 680px;
	}
  }
  
  /* =================================================
	 8. 背景スライド（最奥）
  ================================================= */
  .mv--renewal .mv__image-wrapper,
  .mv--renewal .mv-bg {
	position: absolute;
	left: 50%;
	bottom: -80px;
	transform: translateX(-50%) scale(0.9);
	width: 100%;
	z-index: 1;
	pointer-events: none;
  }
  
  /* =================================================
	 9. 背景スライド：高さ制御（loop-banner）
	 ※ 既存CSSの本命上書き
  ================================================= */
  .mv--renewal .loop-banner {
	position: absolute;
	left: 0;
	bottom: 180px;
	width: 100%;
  
	height: 420px;          /* デザイン基準 */
	overflow: hidden;
  
	z-index: 0;
  }
  
  /* 背景スライド中身の縦ズレ修正 */
  .mv--renewal .loop-banner__track {
	margin-top: 0;          /* 既存 3.125rem を無効化 */
	align-items: flex-end;
  }
  


/* ==========================
   PC：超ワイド対応（安全版）
========================== */
@media (min-width: 1920px) {

	/* 背景スライダーは常に左基準 */
	.mv--renewal .loop-banner {
	  left: 0;
	  right: 0;
	  overflow: hidden;
	}
  
	/* trackはそのまま流す（中央寄せしない） */
	.mv--renewal .loop-banner__track {
	  width: 200%;          /* 今まで通り */
	  margin-left: 0;       /* 余計な補正をしない */
	}
  }

  
  
  
  
  /* ==========================
   PC：人物の透けを完全に解消
========================== */
@media (min-width: 769px) {

	/* 人物レイヤーは絶対に透けさせない */
	.mv--renewal .mv-people {
	  opacity: 1;
	}
  
	.mv--renewal .mv-people__image {
	  opacity: 1;
	}
  
  }
  
  /* ==========================
   PC：背景スマホの影を当初仕様に戻す
========================== */
@media (min-width: 769px) {

	/* スマホ1枚ごとの暗幕（当初の影）を復活 */
	.mv--renewal .loop-banner__item::before {
	  content: "";
	  position: absolute;
	  inset: 0;
	  background-color: rgba(0, 0, 0, 0.56); /* 当初の値 */
	  pointer-events: none;
	  z-index: 1;
	}
  
  }
  


  
  /* =========================================================
   FV FINAL OVERRIDE (PC + SP)
   - PCは現状OK前提で破壊しない
   - SPは「人物の位置とサイズ感を固定」
   - 背景スマホ帯と暗幕(影)のズレを解消
========================================================= */

/* =========================================================
   共通：FVの土台（.mv の既存paddingの影響を最小化）
========================================================= */
.mv--renewal {
	position: relative;
	overflow: hidden;
	background: #000;
  }
  
  /* =========================================================
	 PC：現状OK前提（最小限）
	 ※ここは「壊さない」ための保険だけ
  ========================================================= */
  @media (min-width: 769px) {
  
	/* 既存のmv余白を壊さない範囲でFV高さを維持 */
	.mv.mv--renewal {
	  height: 900px;
	}
  
	/* loop-banner（背景スマホ帯）を固定高で表示 */
	.mv--renewal .loop-banner {
	  position: absolute;
	  left: 0;
	  bottom: 180px;         /* CTA中心基準（確定済みのやつ） */
	  width: 100%;
	  height: 420px;
	  overflow: hidden;
	  z-index: 0;
	}
  
	.mv--renewal .loop-banner__track {
	  margin-top: 0;
	  align-items: flex-end;
	}
  
	/* 影（暗幕）がズレないように固定 */
	.mv--renewal .loop-banner__item::before {
	  inset: 0;
	  height: 100%;
	  top: 0;
	  bottom: 0;
	}
  }
  
  /* =========================================================
	 SP：デザイン用（人物は固定、残りを合わせる）
  ========================================================= */
  @media (max-width: 768px) {
  
	/* ---------- FV全体 ---------- */
	.mv.mv--renewal {
	  padding-top: 0;
	  padding-bottom: 0;
	  height: 630px;
	  overflow: hidden;
	}
  
	/* 既存PC用transform/scaleをSPで完全無効化 */
	.mv--renewal .mv-ui {
	  transform: none !important;
	  padding-top: 56px;
	  text-align: center;
	  position: relative;
	  z-index: 30;
	}
  
	/* ---------- ロゴ + 解決します ---------- */
	.mv--renewal .mv__logo img {
	  width: 220px;
	}
  
	.mv--renewal .mv-solution {
	  margin-top: 160px;
	  font-size: 18px;
	  color: #fff;
	}
  
	/* =========================================================
	   背景スマホ帯（上段）
	   ※「帯の位置」と「暗幕(影)のズレ」をここで完全固定
	========================================================= */
	.mv--renewal .loop-banner {
	  position: absolute;
	  top: 160px;
	  left: 0;
	  width: 100%;
	  height: 180px;
	  overflow: hidden;
	  opacity: 0.6;
	  z-index: 10;
	}
  
	.mv--renewal .loop-banner__track {
	  margin-top: 0;
	  align-items: center;
	}
  
	/* ★暗幕（背景の黒い影）がズレる原因を潰す */
	.mv--renewal .loop-banner__item::before {
	  inset: 0;
	  height: 100%;
	  top: 0;
	  bottom: 0;
	}
  
	@media (max-width: 768px) {

		.mv--renewal .loop-banner__image {
		  height: 160px;
		  width: auto;
		  transform: none;
		}
	  
		.mv--renewal .loop-banner__item {
		  flex: 0 0 auto;
		  padding-right: 8px;
		}
	  
	  }
	  
  
	/* =========================================================
	   人物（ここは固定：絶対に動かさない）
	   ※ユーザー指定：位置とサイズ感はこれで確定
	========================================================= */
	.mv--renewal .mv-people {
	  position: absolute;
	  top: 200px;
	  left: 50%;
	  transform: translateX(-50%);
	  z-index: 20;
	  pointer-events: none;
	}
  
	.mv--renewal .mv-people__image {
	  width: 90%;
	  max-width: 420px;
	  display: block;
	  margin: 0 auto;
	}
  
	/* =========================================================
	   人物に“被せる”情報（位置関係を人物に合わせる）
	   ※ズレやすいので absolute で統一
	========================================================= */
  
	/* バズらない〜（画像） */
	.mv--renewal .mv-problem {
	  position: absolute;
	  top: 330px;              /* 人物に被せる位置 */
	  left: 0;
	  width: 100vw;
	  z-index: 30;
	}
  
	.mv--renewal .mv-problem img {
	  width: 100vw;
	  max-width: none;
	  /* 光の中心がズレて見える問題を「下寄り影」で解消 */
	  filter: drop-shadow(0 8px 22px rgba(255, 215, 100, 0.85));
	}
  
	/* BEEMの〜（1行固定） */
	.mv--renewal .mv-sub {
	  position: absolute;
	  top: 410px;
	  left: 50%;
	  transform: translateX(-50%);
	  font-size: 15px;
	  font-weight: 700;
	  color: #fff;
	  white-space: nowrap;
	  z-index: 30;
	}
  
	/* メダル（横幅いっぱい＝4等分） */
	.mv--renewal .mv-achievements {
	  position: absolute;
	  top: 410px;
	  left: 0;
	  width: 100%;
	  z-index: 30;
	}
  
	.mv--renewal .mv-achievements__list {
	  display: grid;
	  grid-template-columns: repeat(4, 1fr);
	  gap: 4px;
	  justify-items: center;
	  align-items: center;
	}
  
	.mv--renewal .mv-achievements__list li img {
	  width: 108px;
	  max-width: 100%;
	}
  
	/* CTA（長方形・整形） */
	.mv--renewal .mv-btn-wrap {
	  position: absolute;
	  top: 520px;
	  left: 50%;
	  transform: translateX(-50%);
	  width: 90%;
	  z-index: 40;
	}
  
	/* CTAの“形”をSPで長方形に */
	.mv--renewal .mv-btn-wrap .contact-btn,
	.mv--renewal .mv-btn-wrap a.contact-btn {
	  width: 100%;
	  height: 56px;
	  border-radius: 12px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  padding: 0 16px;
	}
  
	.mv--renewal .mv-btn-wrap .contact-btn__text {
	  font-size: 16px;
	  line-height: 1;
	}
  
	.mv--renewal .mv-btn-wrap .contact-btn__image {
	  top: -10px; /* 既存の画像位置が変ならここで微調整 */
	}
  }
  

  /* ==========================
   PC：背景スマホ下切れ防止（追加のみ）
========================== */
@media (min-width: 769px) {

	/* 親の高さ固定を解除して、下切れを防ぐ */
	.mv--renewal .loop-banner {
	  height: auto;          /* ← 固定heightを無効化 */
	  min-height: 420px;     /* ← デザイン上の最低ライン */
	  overflow: visible;     /* ← 下を切らない */
	}
  
	/* スマホ画像を「下基準」で揃える */
	.mv--renewal .loop-banner__track {
	  align-items: flex-end;
	}
  
	/* スマホ画像自体に高さ制限があれば解除 */
	.mv--renewal .loop-banner__image {
	  max-height: none;
	  height: auto;
	}
  }
  
  
  
  
  
  



/*# sourceMappingURL=style.css.map */

