/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */

* {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

/* =============================================================
common - 全体に共通するスタイル
============================================================= */

html {
	font-size: 62.5%;
}

body {
	color: "Open Sans", "Noto Sans JP", "Sans-Serif";
	font-family: "Open Sans", "Noto Sans JP", "Sans-Serif";
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.4375;
}

img {
	width: 100%;
}

.inner {
	box-sizing: content-box;
	margin: 0 auto;
	padding: 0 40px;
}

/*==========================================================================
セクションタイトル
========================================================================== */

.section__title {
	text-align: center;
}

.section__title_big {
	font-size: 4rem;
	font-weight: 700;
}

.section__title_small {
	color: #666;
	font-size: 1.4rem;
	margin-top: 0.8rem;
}

/*==========================================================================
境界線（丸点）
========================================================================== */

.rounds {
	padding: 4.8rem 0 2rem;
}

.round {
	background: #f2f2f2;
	border-radius: 50%;
	margin: 0 auto;
}

.round + .round {
	margin-top: 1.5rem;
}

.round:nth-child(1) {
	height: 62px;
	width: 62px;
}

.round:nth-child(2) {
	height: 41px;
	width: 41px;
}

.round:nth-child(3) {
	height: 26px;
	width: 26px;
}

/*==========================================================================
境界線（下矢印）
========================================================================== */

.arrow {
	border-color: #1D60CC transparent transparent transparent;
	border-style: solid;
	border-width: 18px 22px 0 22px;
	height: 0;
	margin: 0 auto;
	width: 0;
}

.arrow + .arrow {
	margin-top: 1.3rem;
}

.footer__bg {
	overflow: hidden;
	text-align: center;
}

.footer {
	background: #1D60CC;
	padding: 5.5rem 0 9rem;
}

.content03 {
	height: auto;
	margin-left: calc(-53vw + 50%);
	max-width: none;
	width: 106vw;
}

.footer__inner {
	margin: 0 auto;
	max-width: 1140px;
	width: 100%;
}

.footer__container {
	border-bottom: 1px solid #f2f2f2;
	padding-bottom: 8.8rem;
}

.footer__container_flex {
	display: flex;
	gap: 5%;
	justify-content: space-between;
}

/*==========================================================================
フッターの左部分
========================================================================== */

.footer__left {
	color: #fff;
	width: 40%;
}

.footer__title {
	font-size: 1.5rem;
	font-weight: 400;
}

.footer__title-accent {
	font-size: 1.8rem;
	font-weight: 700;
}

.footer__logo {
	display: block;
	margin-top: 0.4rem;
	width: 84px;
}

/*==========================================================================
フッターの真ん中部分
========================================================================== */

.footer__item + .footer__item {
	margin-top: 1.8rem;
}

.footer__item-link {
	color: #fff;
	display: inline-block;
	padding-left: 16px;
	position: relative;
	transition: all 0.3s ease 0s;
}

.footer__item-link:hover::before {
	background: #FFD60A;
	border-radius: 50%;
	content: "";
	height: 7px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
}

/*==========================================================================
フッターの右部分
========================================================================== */

.footer__right {
	margin-left: auto;
	text-align: right;
}

.footer__buttons {
	display: flex;
	gap: 1.4rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer__button + .footer__button {
	margin-top: 0;
}

.footer__button-link {
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	font-size: 1.5rem;
	height: 50px;
	line-height: 50px;
	text-align: center;
	width: 165px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer__button-link:hover {
	transform: translateY(-2px);
}

.footer__button-link.is-pink:hover {
	box-shadow: 0 8px 20px rgba(245, 91, 121, 0.45);
}

.footer__button-link.is-line:hover {
	box-shadow: 0 8px 20px rgba(17, 167, 59, 0.4);
}

.footer__button-link.is-black:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.is-black {
	background: #000;
}

.is-pink {
	background: #F55B79;
}

.is-line {
	background: #11A73B;
}

.footer__totop {
	display: inline-block;
	margin-top: 5.1rem;
	text-align: right;
	transition: transform 0.25s ease;
}

.footer__totop:hover {
	transform: translateY(-3px);
}

.footer__totop:hover .footer__totop_icon {
	box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
}

.footer__totop_left {
	margin-top: 0 !important;
}

.footer__totop_icon {
	background: #fff;
	border-radius: 50%;
	height: 45px;
	margin: 0 auto;
	position: relative;
	width: 45px;
	transition: box-shadow 0.25s ease;
}

.footer__totop_icon::after {
	background: url(../../img/totop-icon.png) no-repeat center center/contain;
	content: "";
	height: 29px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 29px;
}

.footer__totop_text {
	color: #fff;
	font-size: 1.2rem;
	font-weight: 400;
}

/*==========================================================================
フッターの最下部
========================================================================== */

.footer__below_position {
	margin-top: 5rem;
}

.footer__below {
	color: "Open Sans", "Noto Sans JP", "Sans-Serif";
	display: flex;
	font-size: 1.3rem;
}

.footer__below-item:nth-child(n+2):hover {
	opacity: 0.8;
}

.footer__below-item + .footer__below-item {
	margin-left: 3.3rem;
}

.footer__below-item:last-child {
	margin-left: auto;
}

.footer__copyright,
.footer__privacy-policy,
.footer__member {
	color: #fff;
}

.header {
	background: transparent;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s ease 0s;
	z-index: 100;
}

.header.is-active {
	background: #fff;
}

.header.is-active .campaign {
	display: none;
}

.header.is-active .header__mini-title span {
	color: #000;
}

.header.is-active .header__link {
	color: #000;
}

.header.is-active .header__link:hover {
	color: #FFD60A;
	transform: translateY(-2px);
}

.header.is-active .header__logo-white {
	display: none;
}

.header.is-active .header__logo-black {
	display: block;
}

.header__download {
	position: relative;
}

.header__download .header__mini-title span {
	color: #000;
}

.header__download .header__link {
	color: #000;
}

.header__download .header__link:hover {
	color: #FFD60A;
	transform: translateY(-2px);
}

.header__download .header__logo-white {
	display: none;
}

.header__download .header__logo-black {
	display: block;
}

.header__container {
	padding: 1.2rem 0;
}

.header__flex {
	align-items: center;
	display: flex;
}

.header__right {
	align-items: center;
	display: flex;
	margin-left: auto;
}

/*==========================================================================
ヘッダータイトル
========================================================================== */

.header__mini-title-link {
	color: inherit;
	display: inline-block;
	text-decoration: none;
	transition: opacity 0.3s ease 0s;
}

.header__mini-title-link:hover {
	opacity: 0.7;
}

.header__mini-title span {
	color: #000;
	display: block;
	font-size: 1.5rem;
}

.header__mini-title .header__mini-title-accent,
.header.is-active .header__mini-title .header__mini-title-accent,
.header__download .header__mini-title .header__mini-title-accent {
	display: inline;
	color: #007AFF;
	font-size: 1.8rem;
	font-weight: 700;
}

.header__logo {
	display: block;
	margin-top: 0.4rem;
	width: 84px;
}

.header__logo-black {
	display: none;
}

/*==========================================================================
ヘッダーメニュー
========================================================================== */

.header__menu {
	display: flex;
}

.header__item + .header__item {
	margin-left: 2.8rem;
}

.header__link {
	color: #000;
	display: inline-block;
	transition: all 0.3s ease 0s;
}

.header__link:hover {
	color: #FFD60A;
	transform: translateY(-2px);
}

/*==========================================================================
ヘッダーボタン
========================================================================== */

.header__buttons {
	display: flex;
	margin-left: 2.1rem;
}

.header__button + .header__button {
	margin-left: 0.7rem;
}

.header__button-link {
	align-items: center;
	border-radius: 30px;
	color: #fff;
	display: flex;
	font-size: 1.4rem;
	gap: 0.6rem;
	height: 50px;
	justify-content: center;
	text-align: center;
	transition: all 0.3s ease 0s;
	width: 180px;
}

.header__button-link:hover {
	transform: translateY(-2px);
}

.header__button-link.is-pink:hover {
	box-shadow: 0 8px 20px rgba(245, 91, 121, 0.45);
}

.header__button-link.is-black:hover {
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.header__button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	flex-shrink: 0;
	transition: transform 0.3s ease 0s;
}

.header__button-link.is-black:hover .header__button-icon {
	transform: translateY(2px);
}

.header__button-link.is-pink:hover .header__button-icon {
	transform: scale(1.15);
}

.header__button-icon svg {
	width: 100%;
	height: 100%;
}

.header__button-link.is-black .header__button-icon {
	width: 1.8rem;
	height: 1.8rem;
}

/*==========================================================================
キャンペーン
========================================================================== */

.campaign {
	background: #FFD60A;
	padding: 0.7rem 0;
}

.campaign__container-flex {
	align-items: center;
	display: flex;
	gap: 1.4rem;
	justify-content: center;
}

.campaign__number {
	background: linear-gradient(to bottom, #1D60CC, rgba(35, 149, 255, 0.91));
	border-radius: 500px;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 700;
	padding: 0.1rem 1rem;
}

.campaign__number span {
	font-size: 1.8rem;
}

.campaign__text-intro {
	font-size: 1.2rem;
}

.campaign__money {
	font-size: 2.7rem;
	font-weight: 700;
	line-height: 1;
	padding-bottom: 0.4rem;
}

.campaign__money span {
	display: inline-block;
	font-size: 1.6rem;
	margin-right: 0.2rem;
}

.campaign__text-end {
	font-size: 1.5rem;
}

/*==========================================================================
ドロワーメニュー
========================================================================== */

/*========================================
ハンバーガーメニュー
======================================= */

.drawer-icon {
	background: linear-gradient(45deg, #2395FF, #1D60CC);
	border-radius: 50%;
	cursor: pointer;
	height: 52px;
	margin-left: auto;
	position: relative;
	transition: all 0.3s ease 0s;
	width: 52px;
	z-index: 500;
}

.drawer-icon.is-active .drawer-icon__bar1 {
	top: 7.5px;
	transform: rotate(-45deg);
}

.drawer-icon.is-active .drawer-icon__bar2 {
	display: none;
}

.drawer-icon.is-active .drawer-icon__bar3 {
	top: 7.5px;
	transform: rotate(45deg);
}

.drawer-icon__container {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.drawer-icon__bars {
	display: block;
	height: 19px;
	margin: 0 auto;
	position: relative;
	width: 28px;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
	background: #fff;
	border-radius: 5px;
	height: 3px;
	left: 0;
	position: absolute;
	top: 0;
	transition: all 0.3s ease 0s;
	width: 28px;
}

.drawer-icon__bar1 {
	top: 0;
}

.drawer-icon__bar2 {
	top: 8px;
}

.drawer-icon__bar3 {
	top: 16px;
}

.drawer-icon__text {
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
	margin-top: 0.5rem;
	text-align: center;
}

/*========================================
ドロワーコンテンツ
======================================= */

body.is-drawer-open {
	overflow: hidden;
}

body.is-drawer-open .header {
	background: #fff;
}

body.is-drawer-open .header__logo-white {
	display: none;
}

body.is-drawer-open .header__logo-black {
	display: block;
}

body.is-drawer-open .campaign {
	display: none;
}

body.is-drawer-open .line__sp_position,
body.is-drawer-open .line__position {
	display: none;
}

body.is-drawer-open .sp-fixed-cta {
	display: none;
}

.drawer-overlay {
	background: rgba(0, 0, 0, 0.4);
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
	width: 100%;
	z-index: 40;
}

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

.drawer-content {
	-webkit-overflow-scrolling: touch;
	background: #fff;
	box-shadow: -4px 0 16px rgba(0, 0, 0, 0.12);
	height: 100%;
	max-width: 320px;
	overflow-y: auto;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(105%);
	transition: transform 0.3s ease 0s;
	width: 70%;
	z-index: 50;
}

.drawer-content.is-active {
	transform: translateX(0);
}

.drawer__container {
	box-sizing: border-box;
	padding: 13rem 2.4rem 4rem;
	width: 100%;
}

.drawer-content__items {
	text-align: center;
}

.drawer-content__item + .drawer-content__item {
	margin-top: 2.8rem;
}

.drawer-content__item__link {
	color: #000;
	font-size: 2rem;
	line-height: 16/14;
}

.drawer-content__buttons {
	margin: 4rem auto 0;
	text-align: center;
}

.drawer__button {
	margin-top: 1.5rem;
}

.drawer-content_button {
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	margin: 0 auto;
	padding: 1.3rem;
	text-align: center;
	width: 220px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.drawer-content_button:hover {
	transform: translateY(-2px);
}

.drawer-content_button.is-pink:hover {
	box-shadow: 0 8px 20px rgba(245, 91, 121, 0.45);
}

.drawer-content_button.is-line:hover {
	box-shadow: 0 8px 20px rgba(17, 167, 59, 0.4);
}

.drawer-content_button + .drawer-content_button {
	margin-top: 1.1rem;
}

.is-line {
	background: #11A73B;
}

.voice {
	background: #fff;
	overflow: hidden;
	padding: 10.7rem 0;
	position: relative;
}

.voice::before {
	background: #f2f2f2;
	border-radius: 0 0 100px 0;
	content: '';
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 85%;
	z-index: 0;
}

.voice__layout {
	position: relative;
	z-index: 1;
}

.voice__left {
	width: 85%;
	margin-left: auto;
	margin-bottom: 4rem;
}

.voice__section-title {
	display: inline-block;
	position: relative;
}

.voice__section-title_en {
	color: #fff;
	display: inherit;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
}

.voice__section-title_jp_position {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(10%, -50%);
}

.voice__section-title_jp {
	font-size: 4rem;
	font-weight: 700;
}

.voice__heading {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.4;
}

.voice__desc {
	color: #666;
	font-size: 1.4rem;
	line-height: 1.8;
	margin-top: 1.6rem;
}

.voice__nav {
	display: flex;
	gap: 1.2rem;
	width: 85%;
	margin-left: auto;
	margin-top: -2rem;
	margin-bottom: 2.4rem;
	justify-content: flex-end;
	padding-right: 3rem;
}

.voice__slider {
	width: 85%;
	margin-left: auto;
	min-width: 0;
	overflow: hidden;
	position: relative;
}

.voice__track {
	display: flex;
	gap: 24px;
	padding: 10px 0;
	transition: transform 0.4s ease;
}

.voice__slide {
	flex-shrink: 0;
}

.voice__card {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	border: 2px solid #000;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voice__card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.voice__img img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	width: 100%;
}

.voice__arrow {
	align-items: center;
	background: #000;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 44px;
	justify-content: center;
	position: static;
	transform: none;
	width: 44px;
}

.voice__arrow img {
	filter: brightness(0) invert(1);
}

.voice__arrow--prev img {
	width: 12px;
}

.voice__arrow--next img {
	transform: rotate(180deg);
	width: 12px;
}

.voice__details {
	flex-grow: 1;
	padding: 2rem 2rem 0 2rem;
}

.voice__tag {
	background: #1D60CC;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	font-size: 1.4rem;
	padding: 0.4rem 1.3rem;
}

.voice__title,
.voice__company {
	margin-top: 1.4rem;
}

.voice__title {
	color: #000;
}

.voice__end {
	margin-top: auto;
}

.voice__company {
	color: #666;
	font-size: 1.4rem;
	padding: 0 2rem 2rem 2rem;
}

@media screen and (max-width: 599px) {
	.voice__details {
		padding: 2rem 12px 0 12px;
	}
	.voice__tag {
		font-size: 12px;
	}
	.voice__title {
		font-size: 15px;
	}
	.voice__company {
		font-size: 12px;
		padding: 0 12px 2rem 12px;
	}
}

.prev2 {
	background: #fff;
	border-radius: 50%;
	height: 37px;
	left: 10px;
	width: 37px;
}

.prev2 img {
	margin: 0 auto;
	width: 12px;
}

.prev2::after {
	display: none;
}

.next2 {
	background: #fff;
	border-radius: 50%;
	height: 37px;
	right: 10px;
	width: 37px;
}

.next2 img {
	margin: 0 auto;
	transform: rotate(180deg);
	width: 12px;
}

.next2::after {
	display: none;
}

.faq {
	background: #f2f2f2;
}

.faq__bg {
	background: #fff;
	border-radius: 0 0 0 150px;
	padding: 8rem 0 12rem;
}

.faq__inner {
	margin: 0 auto;
	max-width: 885px;
	width: 100%;
}

.faq__items {
	margin-top: 5.3rem;
}

.faq__item {
	border: 2px solid #000;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.faq__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 8px;
	background: transparent;
	transition: background 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
	z-index: 1;
}

.faq__item + .faq__item {
	margin-top: 1.8rem;
}

.faq__q {
	background: #f2f2f2;
	padding: 2.2rem 3.6rem;
	cursor: pointer;
	transition: background 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.faq__item:hover::before {
	background: #1d60cc;
}

.faq__item:hover .faq__q {
	background: #ebf2ff;
}

.faq__item.is-open {
	border-color: #1d60cc;
}

.faq__item.is-open::before {
	background: #1d60cc;
}

.faq__item.is-open .faq__q {
	background: #ebf2ff;
}

.faq__item.is-open .faq__a {
	background: #fff;
}

.faq__flex {
	display: flex;
}

.faq__icon,
.faq__text {
	font-size: 1.8rem;
	font-weight: 600;
}

.faq__text {
	font-weight: 700;
	margin-left: 1.3rem;
	margin-right: 1.3rem;
}

.faq__img {
	flex-shrink: 0;
	height: 26px;
	margin-left: auto;
	transition: all 0.3s ease 0s;
	width: 26px;
}

.faq__img.is-active {
	transform: rotate(180deg);
}

.faq__a {
	background: #FFFFFF;
	display: none;
	padding: 2.2rem 7.6rem 2.2rem 3.6rem;
}

.faq__text_a {
	font-size: 1.6rem;
	font-weight: 500;
}

.youtube {
	background-image: url(../../img/youtube-bg.webp);
	background-size: cover;
	display: none;
	padding: 8rem 0;
	position: relative;
	z-index: 20;
}

.youtube__inner {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.youtube__texts {
	text-align: center;
}

.youtube__strong {
	font-size: 4rem;
	font-weight: 700;
}

.youtube__text,
.youtube__detail {
	margin-top: 2.5rem;
}

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

.youtube__text h2 {
	width: 116px;
}

.youtube__text span {
	font-size: 2.4rem;
}

.youtube__movie {
	margin: 0 auto;
	min-width: 526px;
	width: 43.8333333333%;
}

.iframe__wraper {
	margin: 4rem auto 0;
	padding-top: 56.2737642586%;
	position: relative;
	text-align: center; /* = height ÷ width × 100 */
}

.iframe__wraper iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.iframe__icon {
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 110px;
}

.prepare {
	padding: 8rem 0 5rem;
}

.prepare__inner {
	margin: 0 auto;
	max-width: 1140px;
	width: 100%;
}

.prepare__items_position {
	margin-top: 10rem;
}

.prepare__items {
	display: flex;
	gap: 6.4035087719%;
	justify-content: space-between;
}

.prepare__item {
	background: #f2f2f2;
	border-radius: 20px;
	padding: 4.2rem 1.9rem 6.8rem;
	position: relative;
	width: 33.3333333333%;
}

.prepare__number {
	align-items: center;
	background: #1D60CC;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	display: flex;
	font-size: 2.4rem;
	font-weight: 700;
	height: 60px;
	justify-content: center;
	width: 60px;
}

.prepare__number_position {
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
}

.prepare__img {
	margin: 0 auto;
	width: 46.0784313725%;
}

.prepare__texts {
	margin-top: 1rem;
}

.prepare__title {
	color: #1D60CC;
	font-size: 2.2rem;
	text-align: center;
}

.prepare__detail {
	margin-top: 1.7rem;
}

.flow {
	padding: 8.4rem 0 12rem;
}

.flow__inner {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.flow__title {
	display: inline-block;
	position: relative;
}

.flow__title_en {
	color: #f2f2f2;
	display: inherit;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
}

.flow__title_jp_position {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(10%, -50%);
}

.flow__title_jp {
	font-size: 4rem;
	font-weight: 700;
}

.flow__items {
	display: flex;
	overflow: scroll visible;
	padding-bottom: 5rem;
}

.flow__items_position {
	padding-top: 10rem;
}

.flow__item {
	background: #1D60CC;
	border-radius: 20px;
	flex-grow: 1;
	flex-shrink: 0;
	padding: 2.1rem 1.5rem 4.4rem;
	position: relative;
	width: 240px;
}

.flow__item-number {
	color: #1D60CC;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 1.375;
}

.flow__item-number_position {
	left: 50%;
	position: absolute;
	top: -4.4rem;
	transform: translateX(-50%);
}

.flow__item-img {
	margin: 0 auto;
	width: 111px;
}

.flow__item-texts {
	color: #fff;
}

.flow__item-title {
	font-size: 2rem;
	font-weight: 700;
	margin-top: 1.2rem;
	text-align: center;
}

.flow__item-detail {
	font-size: 1.5rem;
	font-weight: 400;
	margin-top: 1.2rem;
}

.flow__item-arrow {
	flex-shrink: 0;
	position: relative;
	width: 50px;
}

.flow__item-arrow::before {
	border-color: transparent transparent transparent #FFD60A;
	border-style: solid;
	border-width: 10px 0 10px 14px;
	content: "";
	height: 0;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 0;
}

.flow__items::-webkit-scrollbar {
	background: #f2f2f2;
	border-radius: 10px;
	height: 11px;
}

.flow__items::-webkit-scrollbar-thumb {
	background-color: #1D60CC;
	border-radius: 10px;
}

.contact {
	background: #f2f2f2;
	overflow: hidden;
	padding: 8rem 0 12rem;
	position: relative;
	z-index: 5;
}

.contact::before {
	display: none;
}

/*==========================================================================
タイトル
========================================================================== */

.contact__title {
	position: relative;
	text-align: center;
}

.contact__title_en {
	color: #fff;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
}

.contact__title_jp {
	font-size: 4rem;
	font-weight: 700;
}

.contact__title_jp_position {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -40%);
}

/*==========================================================================
コンタクトフォーム（全体）
========================================================================== */

.contact__container {
	background: #fff;
	border: 3px solid #333;
	border-radius: 20px;
	margin: 0 auto;
	max-width: 960px;
	padding: 5.5rem 3.9rem;
	width: 100%;
}

.contact__container_flex {
	align-items: center;
	display: flex;
	gap: 10.5017502917%;
}

.contact__container_position {
	margin-top: 6rem;
}

/*==========================================================================
コンタクトフォーム（左側）
========================================================================== */

.contact__left {
	flex-shrink: 0;
	width: 38.0952380952%;
}

.contact__form__title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 4rem;
}

.contact__form_text {
	color: #666666;
	font-size: 1.4rem;
	margin-top: 3.7rem;
}

.contact__img {
	margin: 0 auto;
	width: 70%;
}

/*==========================================================================
コンタクトフォーム（右側）
========================================================================== */

.contact__right {
	width: 100%;
}

.contact-form {
	background: #fff;
	margin: 0 auto;
	width: 100%;
}

.contact-form__row {
	padding-bottom: 3.3rem;
}

.contact-form__label {
	font-weight: 700;
	margin: 0;
	padding: 5px 0 0;
	width: 100%;
}

.contact-form__label label {
	font-weight: 700;
}

.contact-form__label label.is-required {
	display: inline-block;
	position: relative;
}

.contact-form__label label.is-required::after {
	background: #F55B79;
	border-radius: 10px;
	color: #fff;
	content: "必須";
	font-size: 13px;
	font-weight: 700;
	padding: 3px 13px;
	position: absolute;
	right: -60px;
	text-align: center;
	top: 50%;
	transform: translateY(-50%);
}

.contact-form__input {
	margin: 0;
	margin-top: 1rem;
	padding: 0;
	width: 100%;
}

.contact-form__input [type=email],
.contact-form__input [type=tel],
.contact-form__input [type=text] {
	background: #fff;
	border: 1px solid #666;
	border-radius: 10px;
	font-size: 13px;
	padding: 16px 20px;
	width: 100%;
}

.contact-form__input textarea {
	background: #fff;
	border: 1px solid #666;
	height: 186px;
	padding: 16px 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 10px;
	font-size: 13px;
	resize: none;
	width: 100%;
}

.contact-form__radio {
	margin-top: 1rem;
	width: 100%;
}

.contact-form__radio [type=radio] {
	display: none;
}

.contact-form__radio span {
	display: inline-block;
	font-weight: 400;
	margin-right: 36px;
	padding-left: 26px;
	position: relative;
}

.contact-form__radio span::before {
	background: #fff;
	border: 1px solid #000;
	border-radius: 50%;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.contact-form__radio span::after {
	background: #000;
	border-radius: 50%;
	content: "";
	display: none;
	height: 13px;
	left: 4.5px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 13px;
}

.contact-form__radio [type=radio]:checked + span::after {
	display: inline-block;
}

.contact-form__button {
	margin-top: 2.2rem;
	text-align: center;
}

.contact-form__button [type=submit] {
	background-color: #fff;
	border: 2px solid #000;
	border-radius: 28px;
	color: #000;
	display: inline-block;
	padding: 12px;
	width: 220px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.3s ease 0s;
}

.contact-form__button [type=submit]:hover {
	background: #000;
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.contact__end-text {
	font-weight: 400;
	margin-top: 2.2rem;
}

.contact-privacy {
	display: inline-block;
}

.contact-privacy [type=checkbox] {
	display: none;
}

.contact-privacyLabel {
	cursor: pointer;
	display: block;
	font-size: 1.6rem;
	padding-left: 30px;
	position: relative;
	text-align: center;
}

.contact-privacyLabel:before {
	background: #fff;
	border: solid 1px #3e3e3e;
	content: "";
	display: block;
	height: 18px;
	left: 0;
	position: absolute;
	top: 2px;
	transition: 0.2s;
	width: 18px;
}

.contact-privacyLabel:after {
	border-bottom: solid 2px #000;
	border-left: solid 2px #000;
	content: "";
	display: block;
	height: 6px;
	left: 3px;
	opacity: 0;
	position: absolute;
	top: 6px;
	transform: rotate(-45deg);
	transition: 0.2s;
	width: 12px;
}

input[type=checkbox]:checked + .contact-privacyLabel:after {
	opacity: 1;
}

.info {
	padding-top: 8rem;
}

.info__details {
	margin: 9rem auto 0;
	max-width: 100%;
	width: 960px;
}

.store__item-detail {
	border-collapse: collapse;
	border-spacing: 0;
	width: 100%;
}

.store__item-detail div {
	border-bottom: 1px solid #000;
	display: flex;
	width: 100%;
}

.store__item-detail div:nth-child(n+2) dt,
.store__item-detail div:nth-child(n+2) dd {
	padding: 3.2rem 0;
}

.store__item-detail dt,
.store__item-detail dd {
	padding-bottom: 3.2rem;
	text-align: left;
}

.store__item-detail dt {
	font-weight: 700;
	white-space: nowrap;
	width: 270px;
}

.store__item-detail dd {
	width: calc(100% - 270px);
}

.member {
	padding: 14rem 0 12rem;
}

.member__title {
	margin: 0 auto;
	max-width: 1140px;
	width: 100%;
}

.member__title_en {
	color: #f2f2f2;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
}

.member__title_jp {
	font-size: 4rem;
	font-weight: 700;
}

.member__title_jp_position {
	margin-right: 9rem;
	margin-top: -9rem;
	text-align: right;
}

.member__title_jp_position span {
	display: inline-block;
	text-align: left !important;
}

/*==========================================================================
メンバーセクション
========================================================================== */

.member__container_position {
	margin: 7rem auto 0;
}

.member__container {
	overflow-x: scroll;
	padding-bottom: 4rem;
}

.member__container::-webkit-scrollbar {
	background: #f2f2f2;
	border-radius: 10px;
	height: 11px;
}

.member__container::-webkit-scrollbar-thumb {
	background-color: #1D60CC;
	border-radius: 10px;
}

.member__img {
	margin: 0 auto;
	width: 1200px;
}

.member__items {
	display: flex;
	gap: 56px;
	justify-content: center;
	margin: 1rem auto 0;
	width: 1200px;
}

.member__item {
	width: 330px;
}

.member__img_sp {
	display: none;
}

.member__name {
	font-size: 2.4rem;
}

.member__position {
	font-size: 14px;
	color: #666;
}

.member__detail {
	margin-top: 2rem;
}

.sns__items {
	display: flex;
	margin-top: 1.6rem;
}

.sns__item:hover {
	opacity: 0.5;
}

.sns__item + .sns__item {
	margin-left: 1.1rem;
}

.sns__link {
	display: block;
	width: 30px;
}

.closing {
	padding: 6rem 0 8.4rem;
}

.closing__container {
	background: url(../../img/closing-bg2.webp) no-repeat center center/cover;
	border-radius: 20px;
	margin: 0 auto;
	max-width: 1140px;
	padding: 2.1rem 6rem 3.7rem;
	width: 100%;
}

.closing__texts {
	text-align: center;
}

.closing__intro {
	color: #FFD60A;
	font-size: 1.8rem;
	font-weight: 700;
}

.closing__maintext {
	color: #FFD60A;
	display: inline-block;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 1.2rem;
	position: relative;
	text-shadow: 3px 3px #1D60CC;
	z-index: 10;
}

.closing__maintext::after {
	background: #1D60CC;
	bottom: -5px;
	content: "";
	height: 11px;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.closing__note {
	color: #fff;
	margin-top: 1.4rem;
}

/*==========================================================================
白ボックスの中
========================================================================== */

.closing__box {
	background: #fff;
	border-radius: 20px;
	padding: 3rem;
	width: 100%;
}

.closing__box_flex {
	align-items: center;
	display: flex;
	gap: 2rem;
	justify-content: center;
}

.closing__box_position {
	margin-top: 3.8rem;
}

/*==========================================================================
白ボックス（左側）
========================================================================== */

.closing__price {
	text-align: center;
}

.closing__price-intro {
	font-size: 2rem;
	font-weight: 700;
}

.closing__price-maintext {
	width: 340px;
}

.closing__price-note {
	color: #666;
	font-weight: 400;
}

/*==========================================================================
白ボックス（真ん中側）
========================================================================== */

.closing__arrows {
	align-items: center;
	display: flex;
	gap: 0.8rem;
}

.closing__arrow {
	border-color: transparent transparent transparent #1D60CC;
	border-style: solid;
	border-width: 7px 0 7px 11px;
	height: 0;
	width: 0;
}

/*==========================================================================
白ボックス（右側）
========================================================================== */

.closing__contact {
	text-align: center;
}

.closing__contact-button {
	background: #F55B79;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	margin-top: 0.3rem;
	padding: 1.6rem 2.8rem;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.closing__contact-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(245, 91, 121, 0.45);
}

.closing__contact-note {
	color: #666;
	font-weight: 400;
	margin-top: 0.3rem;
}

.solution {
	background: #fff;
	padding: 8rem 0 12rem;
	position: relative;
	z-index: 20;
}

.solution__title {
	margin: 0 auto;
	width: 100%;
	text-align: center;
	position: relative;
}

.solution__title_en {
	color: #f2f2f2;
	font-size: 20rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	display: block;
	text-align: center;
}

.solution__title_jp {
	font-size: 4rem;
	font-weight: 700;
	text-align: center !important;
}

.solution__title_jp img {
	margin-right: auto;
	width: 116px;
}

.solution__title_jp_position {
	display: inline-block;
	margin-top: 0;
}

.solution__title_jp_position span {
	display: inline-block;
	text-align: center !important;
}

.solution__position {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	padding-left: 0;
}

/*==========================================================================
個別アイテム
========================================================================== */

.solution__items {
	margin: 5.8rem auto 0;
	max-width: 1190px;
	width: 100%;
	position: relative;
}

/* ベースライン（グレー） */
.solution__items::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	background: #ddd;
	z-index: 0;
}

/* スクロール進行ライン（青） */
.solution__progress {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 4px;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.solution__progress-bar {
	width: 100%;
	height: 0%;
	background: #1D60CC;
	transition: height 0.1s linear;
}

.solution__item {
	padding: 4rem;
	border: 3px solid #000;
	border-radius: 30px;
	position: relative;
	z-index: 1;
	background: #fff;
	transition: none;
	overflow: hidden;
}

.solution__item::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 2;
}

.solution__item.is-faded {
	border-color: #ddd;
}

.solution__item.is-faded::after {
	opacity: 0.85;
	z-index: 20;
}

.solution__item:nth-child(2n) {
	border-radius: 30px;
}

.solution__item + .solution__item {
	margin-top: 9rem;
}

.solution__item_flex {
	align-items: center;
	display: flex;
	gap: 5.0420168067%;
}

.solution__item_flex:nth-child(2n) {
	flex-direction: row-reverse;
}

.solution__img {
	flex-shrink: 0;
	max-width: 540px;
	position: relative;
	width: 45.3781512605%;
}

.solution__seo {
	bottom: 0;
	position: absolute;
	right: 0;
	transform: translate(5%, 10%);
	width: 46.1111111111%;
}

.solution__number {
	color: #1D60CC;
	font-size: 3.6rem;
	font-weight: 700;
}

.solution__head {
	font-size: 3rem;
	font-weight: 700;
	margin-top: 1.5rem;
}

.solution__head span {
	color: #1D60CC;
}

/* solution__head span::after（黄色線）を削除 */

.solution__detail {
	line-height: 1.8;
	margin-top: 2.8rem;
}

.solution__detail span {
	color: inherit;
}

/* =============================================================
Achievement
============================================================= */

.achievement {
	background: #fff;
	overflow: hidden;
	padding: 8rem 0 5rem;
	position: relative;
}

.achievement-container {
	position: relative;
	overflow: hidden;
	padding: 0;
}

.achievement-items {
	display: flex;
	gap: 4rem;
	margin-top: 5rem;
	padding: 5rem 0;
}

.achievement-item {
	position: relative;
	width: calc((100% - 8rem) / 3);
	flex-shrink: 0;
	transition: transform 0.5s ease, opacity 0.5s ease;
	opacity: 0.5;
	transform: scale(0.85);
	transform-origin: center center;
}

.achievement-item.is-center {
	transform: scale(1.2);
	opacity: 1;
	z-index: 2;
}

.achievement-item:hover {
	cursor: pointer;
	opacity: 0.8;
}

.achievement-item figure {
	margin: 0;
	border-radius: 8px;
}

.achievement-item figure img {
	display: block;
	height: auto;
	width: 100%;
}

.achievement-item__link {
	display: block;
	text-decoration: none;
	color: inherit;
}

.achievement-item__info {
	padding: 2rem 0.4rem 0;
	width: 90%;
	margin: 0 auto;
}

.achievement-item__title {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
	color: #333;
}

.achievement-item__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.2rem;
}

.achievement-item__tag {
	font-size: 1rem;
	color: #555;
	background: #f0f0f0;
	border-radius: 50px;
	padding: 0.2rem 1rem;
	line-height: 1.5;
	white-space: nowrap;
}

.achievement-pagination {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 4rem;
}

.achievement-pagination__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: none;
	background: #ccc;
	cursor: pointer;
	padding: 0;
	transition: all 0.3s ease;
}

.achievement-pagination__dot.is-active {
	background: #4A90D9;
}

.achievement-button {
	margin-top: 8rem;
	text-align: center;
}

.achievement-button__link {
	background: #000;
	border: 1px solid #000;
	border-radius: 50px;
	color: #fff;
	display: inline-block;
	padding: 1.6rem 2.8rem;
	width: 335px;
	transition: transform 0.25s ease;
}

.achievement-button__link:hover {
	transform: translateY(-2px);
}

.achievement-button__link span {
	padding-right: 3.2rem;
	position: relative;
}

.achievement-button__link span::after {
	background: url(../../img/link-external.png) no-repeat center center/contain;
	content: "";
	height: 22px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 22px;
}

.compare {
	padding-bottom: 5rem;
}

.compare__texts {
	margin-top: 5rem;
	text-align: center;
}

.compare__subtitle {
	background: #FFD60A;
	border-radius: 10px;
	display: inline-block;
	font-size: 1.8rem;
	padding: 0.7rem 1.4rem;
}

.compare__maintitle {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 0.9rem;
}

.compare__detail {
	margin-top: 3rem;
}

/*==========================================================================
テーブル
========================================================================== */

.compare__table_box {
	margin: 5rem auto 0;
	padding-bottom: 4rem;
}

.compare__table_container {
	background: #FFD60A;
	margin: 0 auto;
	padding: 4.5rem 5.4rem;
	width: 1140px;
}

.compare__img {
	overflow: visible;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-20%);
	width: 189px;
	z-index: 200;
}

.compare__table {
	background: #f2f2f2;
	padding: 4.2rem 2rem;
	width: 100%;
}

.compare__table_box::-webkit-scrollbar {
	background: #f2f2f2;
	border-radius: 10px;
	height: 11px;
}

.compare__table_box::-webkit-scrollbar-thumb {
	background-color: #1D60CC;
	border-radius: 10px;
}

.value {
	padding-top: 4rem;
}

.inner__value {
	padding: 0 !important;
}

.value__container {
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
	width: 100%;
}

.value__bg {
	background: #f2f2f2;
	border-radius: 20px;
	height: 89%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.value__inner {
	border-radius: 20px;
	margin: 0 auto;
	padding: 3rem 3rem 0 3rem;
}

.value__title {
	margin: 0 auto;
	max-width: 1140px;
	width: 100%;
}

.value__title_en {
	color: #fff;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
}

.value__title_jp {
	font-size: 4rem;
	font-weight: 700;
}

.value__title_jp_position {
	margin-right: 19rem;
	margin-top: -9rem;
	text-align: right;
}

.value__title_jp_position span {
	display: inline-block;
	text-align: left !important;
}

.value__img {
	margin: 6rem auto 0;
	max-width: 880px;
	width: 75.8620689655%;
}

.value__items_container {
	display: none;
}

.value__items_position {
	margin-top: 4rem;
}

.value__item {
	background: linear-gradient(to right, #1D60CC, #6BB7FF);
	border-radius: 120px;
	padding: 3.2rem 3rem;
	width: calc(50% - 6px);
}

.value__item-title,
.value__item-detail {
	color: #fff;
}

.value__item-title {
	font-size: 1.5rem;
	padding-bottom: 1.2rem;
	position: relative;
}

.value__item-title::after {
	background: #fff;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 100%;
}

.value__item-detail {
	font-size: 1.2rem;
	margin-top: 1rem;
}

.value__items_container::-webkit-scrollbar {
	background: #fff;
	border-radius: 10px;
	height: 11px;
}

.value__items_container::-webkit-scrollbar-thumb {
	background-color: #1D60CC;
	border-radius: 10px;
}

.problem {
	background: #f2f2f2;
	overflow: hidden;
	padding-top: 6.4rem;
	position: relative;
	z-index: 10;
}

.problem::before {
	display: none;
}

.problem::after {
	display: none;
}

.problem__question {
	color: #fff;
	font-size: 43rem;
	font-weight: 700;
	left: 60px;
	line-height: 1;
	position: absolute;
	top: -10px;
	transform: rotate(-7deg);
	z-index: -10;
}

.problem__question--right {
	bottom: -40px;
	left: auto;
	right: 60px;
	top: auto;
	transform: rotate(7deg);
}

.problem__inner {
	margin: 0 auto;
	max-width: 1140px;
	width: 100%;
}

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

.problem__intro-text {
	font-size: 4rem;
	font-weight: 700;
	line-height: 2;
	margin-top: 6rem;
	text-align: center;
}

.problem__highlight {
	color: #F55B79;
}

/*==========================================================================
問題点カード
========================================================================== */

.problem-items {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 8rem auto 0;
	position: relative;
	width: 100%;
}

.problem-items::after {
	background: url(../../img/haru-posing.webp) no-repeat center center/contain;
	content: "";
	height: 262px;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-100%);
	width: 154px;
}

.problem-item {
	background: #fff;
	border: 2px solid #000;
	border-radius: 16px;
	box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.12);
	padding: 48px 28px 36px;
	position: relative;
	text-align: center;
}

.problem-item-number {
	align-items: center;
	background: #F55B79;
	border-radius: 50%;
	color: #fff;
	display: flex;
	font-size: 1.6rem;
	font-weight: 700;
	height: 36px;
	justify-content: center;
	left: 16px;
	position: absolute;
	top: 16px;
	width: 36px;
}

.problem-item-icon {
	margin: 0 auto 20px;
	width: 100px;
}

.problem-item-icon img {
	height: auto;
	width: 100%;
}

.problem-item-title {
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 16px;
}

.problem-item-title span {
	color: #1D60CC;
}

.problem-item-desc {
	color: #555;
	font-size: 1.6rem;
	line-height: 1.8;
	text-align: left;
}

/*==========================================================================
境界線（下矢印）
========================================================================== */

.problem__arrows {
	margin: 5.2rem auto 0;
}

/*==========================================================================
エンディング
========================================================================== */

.problem__end_position {
	margin-top: 2rem;
	position: relative;
}

.problem__end {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: center;
	gap: 2rem;
}

.problem__end-text {
	font-size: 3.8rem;
	font-weight: 700;
}

.problem__end-img {
	width: 207px;
	overflow: hidden;
}

.problem__end-img img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	object-position: top;
}

.plan {
	background: #f2f2f2;
	border-radius: 0 0 0 150px;
	padding: 7rem 0 12rem;
}

.plan__inner {
	margin: 0 auto;
	max-width: 1200px;
	width: 100%;
}

.plan__title {
	display: inline-block;
	position: relative;
}

.plan__title_en {
	color: #fff;
	display: inherit;
	font-size: 20rem;
	font-weight: 700;
	line-height: 1;
}

.plan__title_jp_position {
	position: absolute;
	right: 0;
	top: 50%;
	transform: translate(10%, -50%);
}

.plan__title_jp {
	font-size: 4rem;
	font-weight: 700;
}

/*==========================================================================
プランカード
========================================================================== */

.plan-cards {
	display: flex;
	justify-content: space-between;
	margin-top: 7rem;
}

.plan-card {
	background: #fff;
	border: 2px solid #000;
	border-radius: 10px;
	padding: 3.6rem 0;
	position: relative;
	width: calc(33.3% - 10px);
}

.plan-card:nth-child(2n-1)::before {
	background: #1D60CC;
	content: "";
	height: 15px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
	width: 200px;
}

.recommend__plan {
	left: 0;
	position: absolute;
	top: 0;
	transform: translate(-40%, -40%);
	width: 140px;
}

.plan-card__attention {
	left: 50%;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
	width: 200px;
}

.plan-card-basic-inner {
	padding: 0 30px;
}

.plan-card-prices {
	text-align: center;
}

.plan-card-price {
	font-family: "Noto Sans JP", "Sans-Serif";
	font-weight: 900;
	line-height: 1.2;
	margin-top: 12px;
	font-size: 1.6rem;
	color: #444;
}

.plan-card-price span {
	font-size: 52px;
	font-weight: 900;
	background: linear-gradient(135deg, #1D60CC 0%, #4A90E2 50%, #1D60CC 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	padding: 0 4px;
	letter-spacing: -1px;
}

.plan-card-initial-cost {
	font-size: 14px;
}

.plan-card-details {
	margin-top: 2.7rem;
}

.plan-card-detail {
	text-align: center;
}

.plan-card-detail li {
	font-size: 1.8rem;
	font-weight: 700;
}

.plan-card-detail-button {
	background: #fff;
	border: 1px solid #1D60CC;
	border-radius: 30px;
	color: #1D60CC;
	display: block;
	font-weight: 500;
	margin: 2.7rem auto 0;
	padding: 12px 0;
	text-align: center;
	transition: all 0.3s ease 0s;
	width: 90%;
}

.plan-card-detail-button:hover {
	opacity: 0.8;
}

.plan-card-description {
	line-height: 1.5714285714;
	margin-top: 2.7rem;
}

.plan-card-desc {
	color: #555;
	font-size: 1.4rem;
	line-height: 1.6;
	margin-top: 1.6rem;
	text-align: center;
}

.plan-card-includes {
	border-top: 1px solid #e0e0e0;
	margin-top: 2rem;
	padding-top: 2rem;
}

.plan-card-checklist {
	list-style: none;
	padding: 0;
}

.plan-card-checklist li {
	align-items: flex-start;
	display: flex;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	padding: 0.5rem 0;
}

.plan-card-checklist li::before {
	color: #1D60CC;
	content: "\2713";
	flex-shrink: 0;
	font-weight: 700;
	margin-right: 0.8rem;
}

.plan-card-checklist li small {
	color: #888;
	font-size: 1.2rem;
}

.plan-card-seo-level {
	background: #e8e8e8;
	border-radius: 4px;
	color: #555;
	font-size: 1.3rem;
	font-weight: 700;
	margin-left: 0.4rem;
	padding: 0.2rem 0.8rem;
}

.plan-card-seo-level.is-standard {
	background: #dbeafe;
	color: #1D60CC;
}

.plan-card-seo-level.is-pro {
	background: #1D60CC;
	color: #fff;
}

.plan-card__notion {
	color: #666;
	font-weight: 400;
	margin-top: 2rem;
	text-align: center;
}

/*==========================================================================
のろし
========================================================================== */

.plan-card-basic {
	background: #1D60CC;
	color: #fff;
	padding: 12px 0;
	text-align: center;
}

.plan-card-basic-text {
	font-size: 1.6rem;
}

.plan-card-basic-title {
	font-size: 2.4rem;
	font-weight: 700;
	margin-top: 0.5rem;
}

/*==========================================================================
共通サービス
========================================================================== */

.plan-service {
	background: #fff;
	border-radius: 10px;
	margin: 0 auto;
	margin-top: 8rem;
	max-width: 910px;
	padding: 53px 33px 40px;
	position: relative;
	width: 100%;
}

.plan-service-sign {
	background: #1D60CC;
	color: #fff;
	display: inline-block;
	font-size: 1.8rem;
	left: 50%;
	padding: 0.4rem 4.4rem;
	position: absolute;
	top: 0;
	transform: translate(-50%, -50%);
}

.plan-service-items {
	display: flex;
	flex-wrap: wrap;
}

.plan-service-item {
	width: 33.3333333333%;
}

.plan-service-item:nth-child(n+4) {
	margin-top: 2rem;
}

/*==========================================================================
維持費用
========================================================================== */

.maintain {
	margin-top: 10rem;
}

.maintain__texts {
	text-align: center;
}

.maintain__intro {
	background: #FFD60A;
	border-radius: 10px;
	display: inline-block;
	font-size: 1.8rem;
	padding: 0.7rem 1.4rem;
}

.maintain__title {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.2;
	margin-top: 0.9rem;
}

.maintain__detail {
	margin-top: 3rem;
}

.maintain__table_box {
	overflow: scroll;
}

.maintain__table_container {
	background: linear-gradient(180deg, #f2f2f2 0%, #f2f2f2 10%, #fff 10%, #fff 100%);
	margin-top: 5.4rem;
	padding: 2rem 3rem;
}

.maintain__table {
	margin: 0 auto;
	max-width: 1017px;
	position: relative;
	width: 94.1666666667%;
}

.popular__plan {
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(33%, -50%);
	width: 100px;
}

.maintain__end {
	margin-top: 2.5rem;
	text-align: center;
}

.maintain__end-text {
	font-weight: 400;
}

/*==========================================================================
維持費用（スマホ版）
========================================================================== */

.maintain__card {
	background: #fff;
	border-radius: 20px;
	margin: auto;
	max-width: 500px;
	overflow: hidden;
	position: relative;
}

.maintain__card + .maintain__card {
	margin-top: 5rem;
}

.maintain__card_blue-popular {
	height: 66px;
	margin-left: auto;
	margin-top: -2rem;
	position: relative;
	transform: translate(25%, 60%);
	width: 66px;
	z-index: 10;
}

.maintain__header {
	color: #fff;
	padding: 1.5rem 1rem 1rem;
	text-align: center;
}

.maintain__header p {
	font-size: 1.6rem;
}

.maintain__header h2 {
	font-size: 2rem;
	font-weight: 700;
	margin: 0.2rem 0 0;
}

.maintain__card_yellow {
	border: 4px solid #E9C10C;
}

.maintain__header_yellow {
	background: #E9C10C;
}

.maintain__card_blue {
	border: 4px solid #1D60CC;
}

.maintain__header_blue {
	background: #1D60CC;
}

.maintain__table-sp {
	border: 3px solid #f2f2f2;
	border-collapse: collapse;
	overflow: hidden;
	width: 100%;
}

.maintain__table-sp th,
.maintain__table-sp td {
	border: 3px solid #f2f2f2;
	padding: 2.4rem 1rem;
	text-align: center;
}

.maintain__table-sp th {
	background: #f9f9f9;
	font-size: 1.3rem;
	vertical-align: middle;
	width: 100px;
}

.maintain__table-sp td {
	font-size: 1.2rem;
}

.detail-cell {
	align-items: center;
	display: flex;
	min-height: 150px;
	text-align: left;
}

.detail-cell li {
	padding-left: 1rem;
	position: relative;
}

.detail-cell li::before {
	background: #000;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: 7.9px;
	transform: translateY(-50%);
	width: 2px;
}

.top {
	background: url(../../img/top-bg.webp) no-repeat center center/cover;
	overflow: hidden;
	padding-bottom: 3rem;
	padding-top: 17rem;
}

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

.top-left {
	width: 546px;
}

.top-sub-title {
	background: #FFD60A;
	border-radius: 10px;
	color: "Open Sans", "Noto Sans JP", "Sans-Serif";
	display: inline-block;
	font-size: 1.8rem;
	padding: 8px 20px;
}

.top-main-title {
	color: #fff;
	font-size: 4.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	margin-top: 1.8rem;
}

.top-main-title span {
	display: inline-block;
	font-size: 6.4rem;
	margin-bottom: 1rem;
}

.top-right {
	width: calc(100% - 546px);
}

.top-img {
	margin-left: auto;
	width: 100%;
}

.line__position {
	bottom: 4rem;
	position: fixed;
	right: 0;
	z-index: 300;
}

.line__position:hover {
	opacity: 0.8;
}

.line {
	display: none;
}

.line.is-active {
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn;
	display: inline-block;
}

.line__square {
	background: #fff;
	border-bottom: 3px solid #11A73B;
	border-left: 3px solid #11A73B;
	border-radius: 20px 0 0 20px;
	border-top: 3px solid #11A73B;
	padding: 1.2rem 1.2rem 5rem 1.2rem;
}

.line__icon {
	margin: 0 auto;
	width: 43px;
}

.line__title {
	color: #000;
	font-size: 1.8rem;
	font-weight: 700;
}

.line__title span {
	color: #11A73B;
}

.line__round {
	margin-left: auto;
	margin-top: -4rem;
	width: 110px;
}

/*==========================================================================
スマホ版
========================================================================== */

.line__sp_position {
	bottom: 10px;
	position: fixed;
	right: 10px;
	z-index: 300;
}

.line__sp {
	background: linear-gradient(135deg, #16B242 50%, #11A73B 50%);
	border-radius: 50%;
	display: none;
	height: 80px;
	position: relative;
	width: 80px;
}

.line__sp.is-active {
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn;
	display: block;
}

.line__content {
	left: 50%;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -50%);
}

.line__sp-img {
	height: 30px;
	margin: 0 auto;
	width: 30px;
}

.line__sp-text {
	color: #fff;
	font-size: 1.2rem;
	line-height: 1.3;
	margin-top: -0.3rem;
	text-align: center;
	white-space: nowrap;
}

.after {
	background: url(../../img/top-bg.webp) no-repeat center center/cover;
	bottom: 0;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
}

.after__content {
	left: 50%;
	max-width: 700px;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
}

.after__img {
	margin: 0 auto;
	width: 205px;
}

.after__title,
.after__details,
.after__button_position {
	margin-top: 4rem;
}

.after__title {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
}

.after__details {
	color: #fff;
	margin: 4rem auto 0;
	text-align: left;
	width: 530px;
}

.after__button_position {
	text-align: center;
}

.after__button {
	background: #F55B79;
	border-radius: 30px;
	color: #fff;
	display: inline-block;
	font-weight: 700;
	padding: 1.4rem;
	width: 240px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.after__button:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(245, 91, 121, 0.45);
}

.download__title_jp_position {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -20%);
	white-space: nowrap;
}

@media screen {

.closing__arrow + .closing__arrow {
	margin-top: 0.5rem;
}

}

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

.is-sp {
	display: none;
}

.maintain__card {
	display: none;
}

.maintain__card_blue-popular {
	display: none;
}

}

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

.no-tb {
	display: none;
}

}

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

.is-tb {
	display: none;
}

.drawer-icon,
.drawer-content,
.drawer-overlay {
	display: none;
}

.drawer-icon {
	display: none;
}

.drawer-content {
	display: none;
}

}

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

.solution__title_en {
	font-size: 16rem;
}

}

@media screen and (min-width: 1025px) and (max-width: 1400px) {
.voice__slider {
	width: 88%;
}
}

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

.is-pc {
	display: none;
}

.inner {
	padding: 0 28px;
}

.section__title_big {
	font-size: 3.2rem;
}

.section__title_small {
	font-size: 1.3rem;
}

.rounds {
	padding: 2.4rem 0 2rem;
}

.round + .round {
	margin-top: 1.1rem;
}

.round:nth-child(1) {
	height: 46px;
	width: 46px;
}

.round:nth-child(2) {
	height: 30.5px;
	width: 30.5px;
}

.round:nth-child(3) {
	height: 19px;
	width: 19px;
}

.arrow {
	border-width: 18px 19px 0 19px;
}

.footer {
	padding: 4.4rem 0 6.4rem;
}

.footer__container {
	padding-bottom: 6.4rem;
}

.footer__left {
	width: 35%;
}

.footer__title {
	font-size: 1.25rem;
}

.footer__logo {
	width: 76px;
}

.footer__item-link {
	font-size: 1.5rem;
}

.footer__button-link {
	font-size: 1.4rem;
	height: 45px;
	letter-spacing: 0.04em;
	line-height: 45px;
	width: 150px;
}

.footer__totop {
	margin-top: 4rem;
}

.footer__totop_icon {
	height: 38px;
	width: 38px;
}

.footer__totop_icon::after {
	height: 25px;
	width: 25px;
}

.footer__totop_text {
	font-size: 1.1rem;
}

.footer__below_position {
	margin-top: 3.6rem;
}

.header__right {
	display: none;
}

.header__mini-title span {
	font-size: 1.25rem;
}

.header__logo {
	width: 76px;
}

.campaign {
	padding: 0.6rem 0;
}

.campaign__container-flex {
	gap: 1.2rem;
}

.voice {
	border-radius: 0 0 50px 0;
	padding: 6rem 0;
}



.voice__left {
	width: 95%;
}

.voice__slider {
	width: 95%;
}

.voice__section-title_en {
	font-size: 10rem;
}

.voice__section-title_jp_position {
	transform: translate(30%, -50%);
}

.voice__section-title_jp {
	font-size: 3.2rem;
}

.voice__heading {
	font-size: 3.2rem;
}

.voice__cards_position {
	margin-top: 6rem;
}

.voice__cards {
	gap: 2.2rem;
}

.faq__bg {
	border-radius: 0 0 0 50px;
	padding: 6rem 0;
}

.faq__item {
	border-radius: 15px;
}

.faq__item + .faq__item {
	margin-top: 1.4rem;
}

.faq__q {
	padding: 2rem 2.5rem;
}

.faq__icon,
.faq__text {
	font-size: 1.6rem;
}

.faq__text {
	margin-left: 1.1rem;
	margin-right: 1.1rem;
}

.faq__img {
	height: 22.5px;
	width: 22.5px;
}

.faq__a {
	padding: 2rem 5.85rem 2rem 2.5rem;
}

.youtube {
	padding: 6.5rem 0;
}

.youtube__strong {
	font-size: 3.2rem;
}

.youtube__text,
.youtube__detail {
	margin-top: 2rem;
}

.youtube__text h2 {
	margin-right: 0.4rem;
	width: 105px;
}

.youtube__text span {
	font-size: 2.2rem;
}

.youtube__detail {
	font-size: 1.5rem;
}

.prepare {
	padding: 6rem 0;
}

.prepare__items_position {
	margin-top: 8rem;
}

.prepare__items {
	gap: 1.6rem;
}

.prepare__item {
	padding: 3.8rem 1.5rem;
}

.prepare__number {
	font-size: 2rem;
	height: 52px;
	width: 52px;
}

.prepare__title {
	font-size: 1.7rem;
}

.prepare__detail {
	font-size: 1.5rem;
}

.flow {
	padding: 6rem 0;
}

.flow__title_en {
	font-size: 10rem;
}

.flow__title_jp_position {
	transform: translate(30%, -50%);
}

.flow__title_jp {
	font-size: 3.2rem;
}

.flow__items {
	padding-bottom: 4rem;
}

.flow__items_position {
	padding-top: 9rem;
}

.flow__item {
	width: 220px;
}

.flow__item-number {
	font-size: 2.1rem;
}

.flow__item-number_position {
	top: -3.8rem;
}

.flow__item-title {
	font-size: 1.7rem;
}

.flow__item-detail {
	font-size: 1.5rem;
}

.flow__item-arrow {
	width: 44px;
}

.contact {
	padding: 6rem 0;
}

.contact__title_en {
	font-size: 10rem;
}

.contact__title_jp {
	font-size: 3.2rem;
}

.contact__container {
	padding: 4.6rem 2.8rem;
}

.contact__container_position {
	margin-top: 5rem;
}

.contact__form__title {
	font-size: 1.7rem;
	margin-top: 3.2rem;
}

.contact__form_text {
	font-size: 1.4rem;
	margin-top: 2.8rem;
}

.contact-form__row {
	padding-bottom: 2rem;
}

.contact-form__label {
	font-size: 1.5rem;
}

.contact-form__radio span {
	font-size: 1.5rem;
}

.contact-form__radio label {
	display: block;
	margin-bottom: 1.2rem;
}

.contact-form__radio label:last-child {
	margin-bottom: 0;
}

.contact__end-text {
	font-size: 1.5rem;
}

.contact-privacyLabel {
	font-size: 1.5rem;
}

.info {
	padding-top: 6.5rem;
}

.info__details {
	margin: 7rem auto 0;
}

.store__item-detail div:nth-child(n+2) dt,
.store__item-detail div:nth-child(n+2) dd {
	padding: 3rem 0;
}

.store__item-detail dt {
	width: 220px;
}

.store__item-detail dd {
	width: calc(100% - 220px);
}

.member {
	padding: 10rem 0 4rem;
}

.member__title {
	white-space: nowrap;
}

.member__title_en {
	display: inline-block;
	font-size: 10rem;
}

.member__title_jp {
	display: inline-block;
	font-size: 2.4rem;
}

.member__title_jp_position {
	margin-right: auto;
	margin-top: auto;
	transform: translate(-4rem, 5rem);
}

.member__container_position {
	margin: 10rem auto 0;
}

.member__img {
	width: 1000px;
}

.member__items {
	gap: 46.6px;
	width: 1000px;
}

.member__item {
	width: 275px;
}

.member__name {
	font-size: 2.2rem;
}

.member__position {
	font-size: 14px;
	color: #666;
}

.member__detail {
	margin-top: 1.8rem;
}

.closing {
	padding: 4.5rem 0 6.4rem;
}

.closing__container {
	background: url(../../img/closing-tb.webp) no-repeat center center/cover;
	padding: 2.1rem 3.6rem 3.7rem;
}

.closing__intro {
	font-size: 1.7rem;
}

.closing__maintext {
	font-size: 3.2rem;
}

.closing__note {
	font-size: 1.4rem;
	line-height: 1.5714285714;
	margin-top: 2rem;
}

.closing__box {
	padding: 3rem 2.4rem;
}

.closing__box_flex {
	display: block;
}

.closing__box_position {
	margin-top: 3.3rem;
}

.closing__price-intro {
	font-size: 1.9rem;
}

.closing__price-maintext {
	margin: 0 auto;
	width: 300px;
}

.closing__price-note {
	font-size: 1.5rem;
}

.closing__arrows {
	display: block;
	padding: 1.6rem 0;
}

.closing__arrow {
	margin: 0 auto;
	transform: rotate(90deg);
}

.closing__arrow + .closing__arrow {
	margin-top: 0.6rem;
}

.closing__contact-intro {
	font-size: 1.5rem;
}

.closing__contact-note {
	font-size: 1.5rem;
}

.solution__title_en {
	font-size: 10rem;
}

.solution__title_jp img {
	width: 92px;
}

.solution__title_jp_position {
	margin-top: -5rem;
	transform: none;
}

.solution__items {
	margin: 4.4rem auto 0;
}

.solution__item + .solution__item {
	margin-top: 5rem;
}

.solution__item_flex {
	gap: 3%;
}

.solution__number {
	font-size: 3.4rem;
}

.solution__head {
	font-size: 2.4rem;
	margin-top: 1.1rem;
}

.solution__detail {
	font-size: 1.4rem;
	margin-top: 2rem;
}

.achievement {
	padding: 6rem 0 4.5rem;
}

.achievement-items {
	margin-top: 3rem;
}

.achievement-item__title {
	font-size: 1.5rem;
}

.achievement-item__tag {
	font-size: 1rem;
}

.compare__texts {
	margin-top: 4.2rem;
}

.compare__subtitle {
	font-size: 1.7rem;
}

.compare__maintitle {
	font-size: 3.2rem;
	line-height: 1.5;
}

.compare__table_container {
	padding: 3.8rem 4.4rem;
	width: 100%;
}

.value__title {
	padding: 0 2rem;
	white-space: nowrap;
}

.value__title_en {
	display: inline-block;
	font-size: 10rem;
}

.value__title_jp {
	display: inline-block;
	font-size: 2.4rem;
}

.value__title_jp_position {
	margin-right: auto;
	margin-top: auto;
	transform: translate(-3rem, 2rem);
}

.value__img {
	margin: 5.5rem auto 0;
	min-width: 500px;
	width: 90%;
}

.problem {
	padding-top: 5.2rem;
}

.problem__question {
	font-size: 34rem;
}

.problem__intro-text {
	font-size: 2.9rem;
}

.problem-items {
	margin: 7rem auto 0;
	gap: 20px;
}

.problem-items::after {
	height: 228px;
	width: 134px;
}

.problem-item {
	padding: 40px 20px 28px;
}

.problem-item-title {
	font-size: 1.7rem;
}

.problem-item-desc {
	font-size: 1.4rem;
}

.problem-item-icon {
	width: 80px;
}

.problem__arrows {
	margin-top: 3.6rem;
}

.problem__end_position {
	margin-top: 1.6rem;
}

.problem__end {
	gap: 4rem;
	justify-content: center;
}

.problem__end-text {
	font-size: 3.2rem;
}

.plan {
	border-radius: 0 0 0 50px;
}

.plan__title_en {
	font-size: 10rem;
}

.plan__title_jp_position {
	transform: translate(30%, -50%);
}

.plan__title_jp {
	font-size: 3.2rem;
}

.plan-cards {
	margin-top: 6rem;
}

.recommend__plan {
	opacity: 0;
}

.plan-card__attention {
	width: 170px;
}

.plan-card-basic-inner {
	padding: 0 30px;
}

.plan-card-price {
	font-size: 1.4rem;
	line-height: 1.2;
}

.plan-card-price span {
	font-size: 40px;
}

.plan-card-details {
	margin-top: 1.5rem;
}

.plan-card-detail li {
	font-size: 1.5rem;
}

.plan-card-detail-button {
	font-size: 1.5rem;
}

.plan-card-description {
	font-size: 1.5rem;
	margin-top: 2rem;
}

.plan-card__notion {
	font-size: 1.4rem;
}

.plan-card-basic-text {
	font-size: 1.4rem;
}

.plan-card-basic-title {
	font-size: 2.2rem;
}

.plan-service {
	margin-top: 7.4rem;
	padding: 46px 26px 35px;
}

.plan-service-sign {
	font-size: 1.7rem;
	padding: 0.3rem 3.8rem;
}

.plan-service-item {
	font-size: 1.5rem;
}

.maintain {
	margin-top: 8rem;
}

.maintain__intro {
	font-size: 1.7rem;
}

.maintain__title {
	font-size: 3.2rem;
	line-height: 1.5;
}

.maintain__table_container {
	margin-top: 4.2rem;
	padding: 2rem;
}

.maintain__table {
	width: 100%;
}

.popular__plan {
	width: 80px;
}

.maintain__end {
	margin-top: 2rem;
}

.maintain__end-text {
	font-size: 1.4rem;
}

.top {
	padding-top: 14rem;
}

.top-inner {
	flex-direction: column;
}

.top-left {
	text-align: center;
	width: 100%;
}

.top-sub-title {
	font-size: 1.5rem;
}

.top-main-title {
	font-size: 3.3rem;
	margin-top: 1.2rem;
}

.top-main-title span {
	font-size: 4.4rem;
	margin-bottom: 0.6rem;
}

.top-right {
	margin: 0 auto;
	margin-top: 1.4rem;
	max-width: 540px;
	width: 80%;
}

.line__square {
	padding: 1.2rem 0.8rem 4.5rem 0.8rem;
}

.line__title {
	font-size: 1.5rem;
}

.line__round {
	width: 80px;
}

.download__title_jp_position {
	transform: translate(-50%, -30%);
}

}

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

.solution__title_jp {
	font-size: 3rem;
}

}

@media (max-width: 768px) {

.contact-form__row {
	display: block;
}

.contact-form__button [type=submit] {
	width: 270px;
}

}

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

.no-sp {
	display: none;
}

.inner {
	padding: 0 16px;
}

.section__title_big {
	font-size: 2.8rem;
}

.section__title_small {
	font-size: 1.2rem;
}

.rounds {
	padding: 2.2rem 0 2rem;
}

.round + .round {
	margin-top: 0.7rem;
}

.round:nth-child(1) {
	height: 30px;
	width: 30px;
}

.round:nth-child(2) {
	height: 20px;
	width: 20px;
}

.round:nth-child(3) {
	height: 12.5px;
	width: 12.5px;
}

.arrow {
	border-width: 11px 7px 0 7px;
}

.arrow + .arrow {
	margin-top: 0.7rem;
}

.footer {
	padding: 3.2rem 0 2.4rem;
}

.footer .inner {
	padding: 0 20px;
}

.footer__container {
	padding-bottom: 3.6rem;
}

.footer__container_flex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas:
		"title  title"
		"menu   buttons";
	column-gap: 2rem;
	row-gap: 3rem;
}

.footer__left {
	display: flex;
	justify-content: space-between;
	width: 100%;
	grid-area: title;
}

.footer__title {
	font-size: 1.2rem;
}

.footer__title-accent {
	font-size: 1.4rem;
}

.footer__logo {
	width: 71px;
}

.footer__center {
	margin: 0;
	grid-area: menu;
}

.footer__menu {
	text-align: left;
}

.footer__item-link:hover::before {
	display: none;
}

.footer__item-link {
	font-size: 1.4rem;
	padding-left: 0;
}

.footer__right {
	margin: 0;
	grid-area: buttons;
	text-align: left;
}

.footer__buttons {
	flex-direction: column;
	gap: 1rem;
	justify-content: flex-start;
	align-items: flex-start;
}

.footer__button + .footer__button {
	margin-top: 0;
}

.footer__below_position {
	margin-top: 1.8rem;
}

.footer__below {
	display: block;
	font-size: 1.2rem;
}

.footer__below-item:last-child {
	text-align: right;
}

.footer__below-item + .footer__below-item {
	margin-left: 0;
	margin-top: 0.8rem;
}

.header__mini-title span {
	font-size: 1.2rem;
}

.header__mini-title .header__mini-title-accent,
.header.is-active .header__mini-title .header__mini-title-accent,
.header__download .header__mini-title .header__mini-title-accent {
	font-size: 1.4rem;
}

.header__logo {
	width: 71px;
}

.campaign__inner {
	padding: 0.6rem 1rem !important;
}

.campaign__container-flex {
	gap: 0.7rem;
}

.campaign__text-end {
	font-size: 1.45rem;
}

.drawer__container {
	padding: 12rem 2rem 3rem;
}

.drawer-content__item + .drawer-content__item {
	margin-top: 2.4rem;
}

.drawer-content__item__link {
	font-size: 1.6rem;
}

.drawer-content__buttons {
	margin: 3.2rem auto 0;
}

.drawer-content_button {
	font-size: 1.4rem;
	padding: 1.5rem;
	width: 180px;
}

.voice {
	border-radius: 0 0 15px 0;
	padding: 60px 0;
}

.voice::before {
	border-radius: 0 0 60px 0;
	width: 93.5%;
}

.voice__layout {
	padding: 0;
	display: flex;
	flex-direction: column;
}

.voice__left {
	margin-bottom: 2rem;
	width: 100%;
	padding: 0 2rem;
	order: 1;
}

.voice__section-title_en {
	font-size: 6rem;
}

.voice__section-title_jp_position {
	transform: translate(85%, -50%);
}

.voice__section-title_jp {
	font-size: 2.8rem;
}

.voice__heading {
	font-size: 2.2rem;
}

.voice__nav {
	width: 100%;
	margin-top: 24px;
	margin-bottom: 0;
	padding: 0 2rem;
	justify-content: flex-end;
	order: 3;
}

.voice__slider {
	margin-top: 2rem;
	width: 100%;
	margin-left: 0;
	order: 2;
}

.voice__track {
	gap: 24px;
}

.voice__card {
	display: block;
}

.voice__tag {
	font-size: 1.2rem;
	-webkit-text-size-adjust: 100%;
}

.voice__title {
	font-size: 1.5rem;
	-webkit-text-size-adjust: 100%;
}

.voice__company {
	font-size: 1.2rem;
	-webkit-text-size-adjust: 100%;
}

.faq__bg {
	border-radius: 0 0 0 30px;
	padding: 5rem 0;
}

.faq__items {
	margin-top: 5rem;
}

.faq__item {
	border-radius: 10px;
}

.faq__item::before {
	width: 5px;
}

.faq__item + .faq__item {
	margin-top: 1rem;
}

.faq__q {
	padding: 1.8rem 1.5rem;
}

.faq__icon,
.faq__text {
	font-size: 1.4rem;
}

.faq__text {
	margin-left: 0.8rem;
	margin-right: 0.8rem;
}

.faq__img {
	height: 19px;
	width: 19px;
}

.faq__a {
	padding: 1.8rem 4.2rem 1.8rem 1.5rem;
}

.youtube {
	margin-top: 5rem;
	padding: 5rem 0;
}

.youtube__strong {
	font-size: 2.8rem;
}

.youtube__text,
.youtube__detail {
	margin-top: 1.6rem;
}

.youtube__detail {
	font-size: 1.4rem;
}

.youtube__movie {
	min-width: auto;
	width: 100%;
}

.prepare {
	padding: 5rem 0 0;
}

.prepare__items_position {
	margin-top: 6rem;
}

.prepare__items {
	flex-direction: column;
}

.prepare__item {
	margin: 0 auto;
	max-width: 440px;
	padding: 4.2rem 1.9rem 3.2rem;
	width: 100%;
}

.prepare__item + .prepare__item {
	margin-top: 4rem;
}

.prepare__img {
	width: 141px;
}

.prepare__title {
	font-size: 1.8rem;
}

.prepare__detail {
	font-size: 1.4rem;
}

.flow {
	padding: 7rem 0 6rem;
}

.flow__title_en {
	font-size: 6rem;
}

.flow__title_jp_position {
	transform: translate(60%, -50%);
}

.flow__title_jp {
	font-size: 2.8rem;
}

.flow__items {
	padding-bottom: 3.3rem;
}

.flow__items_position {
	padding-top: 8rem;
}

.flow__item {
	width: 240px;
}

.flow__item-img {
	width: 100px;
}

.flow__item-title {
	font-size: 1.8rem;
}

.flow__item-detail {
	font-size: 1.4rem;
}

.flow__items::-webkit-scrollbar {
	height: 5px;
}

.contact {
	padding: 5rem 0;
}

.contact::before {
	height: 190px;
	width: 200px;
}

.contact__title_en {
	font-size: 6rem;
}

.contact__title_jp {
	font-size: 2.8rem;
	white-space: nowrap;
}

.contact__container {
	border-radius: 10px;
	padding: 3.4rem 1.6rem 4.6rem;
}

.contact__container_flex {
	display: block;
}

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

.contact__texts {
	order: 1;
}

.contact__form__title {
	font-size: 1.6rem;
	margin-top: 0;
}

.contact__form_text {
	font-size: 1.4rem;
	margin-top: 1.6rem;
}

.contact__img {
	margin: 2rem auto 0;
	order: 2;
	width: 180px;
}

.contact__right {
	margin-top: 4rem;
}

.contact-form__label {
	font-size: 1.4rem;
}

.contact-form__label label.is-required::after {
	font-size: 12px;
	right: -56px;
}

.contact-form__input [type=email],
.contact-form__input [type=tel],
.contact-form__input [type=text] {
	padding: 12px 20px;
}

.contact-form__input textarea {
	padding: 12px 20px;
}

.contact-form__radio span {
	font-size: 1.4rem;
	margin-right: 1rem;
}

.contact-form__button {
	margin-top: 1.8rem;
}

.contact-form__button [type=submit] {
	font-size: 1.4rem;
	width: 195px;
}

.contact__end-text {
	font-size: 1.4rem;
	margin-top: 1.8rem;
}

.contact-privacy {
	margin: 20px auto 0;
}

.contact-privacyLabel {
	font-size: 1.4rem;
	padding-left: 24px;
}

.info {
	padding-top: 5rem;
}

.info__details {
	margin: 5rem auto 0;
}

.store__item-detail div {
	display: block;
}

.store__item-detail div:nth-child(1) {
	padding-bottom: 2rem;
}

.store__item-detail div:nth-child(n+2) {
	padding: 2rem 0;
}

.store__item-detail div:nth-child(n+2) dt,
.store__item-detail div:nth-child(n+2) dd {
	padding: 0;
}

.store__item-detail dt,
.store__item-detail dd {
	display: block;
	font-size: 1.4rem;
	padding-bottom: 0;
	width: 100%;
}

.store__item-detail dd {
	margin-top: 1rem;
}

.member {
	padding: 5rem 0 4rem;
}

.member__title_en {
	font-size: 6rem;
}

.member__title_jp {
	display: block;
	font-size: 2.8rem;
}

.member__title_jp_position {
	margin-top: -3.5rem;
	transform: translate(0rem);
}

.member__container_position {
	margin: 4rem auto 0;
}

.member__container::-webkit-scrollbar {
	height: 5px;
}

.member__img {
	display: none;
}

.member__items {
	flex-direction: column;
	gap: 4.8rem;
	margin: 0 auto;
	max-width: 370px;
	width: 72.8%;
}

.member__item {
	width: 100%;
}

.member__img_sp {
	display: block;
	margin-bottom: 1.2rem;
}

.member__detail {
	font-size: 1.4rem;
}

.sns__item + .sns__item {
	margin-left: 0.8rem;
}

.sns__link {
	width: 24px;
}

.closing {
	padding: 3rem 0 0;
}

.closing__container {
	padding: 4.4rem 0;
}

.closing__intro {
	font-size: 1.6rem;
}

.closing__maintext span.no-sp {
	display: none;
}

.closing__maintext {
	font-size: 2.8rem;
}

.closing__note {
	margin-top: 1.8rem;
}

.closing__box {
	margin: 0 auto;
	padding: 3.3rem 2rem;
	width: 91.8367346939%;
}

.closing__box_position {
	margin-top: 2.8rem;
}

.closing__price-intro {
	font-size: 1.8rem;
}

.closing__price-maintext {
	max-width: 315px;
	width: 100%;
}

.closing__price-note {
	font-size: 1.4rem;
}

.closing__contact-intro {
	font-size: 1.4rem;
}

.closing__contact-button {
	display: block;
	font-size: 1.6rem;
	margin: 0.5rem auto 0;
	max-width: 315px;
	padding: 1.3rem;
}

.closing__contact-note {
	font-size: 1.4rem;
	margin-top: 0.5rem;
}

.solution {
	padding: 5rem 0;
}

.solution__inner {
	padding: 0 16px;
}

.solution__title {
	padding: 0 2rem;
}

.solution__title_en {
	font-size: 6rem;
}

.solution__title_jp img {
	width: 71px;
}

.solution__title_jp {
	font-size: 2.8rem;
	margin-top: 0.3rem;
}

.solution__title_jp_position {
	margin-top: -4rem;
	transform: translateX(0);
}

.solution__items::before {
	display: none;
}

.solution__progress {
	display: none;
}

.solution__item {
	padding: 2.6rem 1.6rem;
	background: #fff;
}

.solution__item + .solution__item {
	margin-top: 4rem;
}

.solution__item_flex {
	display: block;
}

.solution__item_flex:nth-child(odd),
.solution__item_flex:nth-child(2n) {
	transform: none;
}

.solution__img {
	width: 100%;
}

.solution__texts {
	margin-top: 1rem;
}

.solution__number {
	font-size: 3.2rem;
}

.solution__head {
	font-size: 2.4rem;
	margin-top: 0.8rem;
}

.solution__detail {
	font-size: 1.4rem;
}

.achievement {
	padding: 6rem 0 3rem;
}

.inner__achievement {
	padding: 0;
}

.achievement-items {
	margin-top: 1rem;
	gap: 0;
	padding-bottom: 0;
}

.achievement-item {
	width: 100%;
	opacity: 1;
	transform: none;
}

.achievement-item.is-center {
	transform: none;
}

.achievement-item:hover {
	opacity: 1;
}

.achievement-item__title {
	font-size: 1.4rem;
}

.achievement-item__tag {
	font-size: 1rem;
}

.achievement-pagination {
	margin-top: 3rem;
}

.achievement-button {
	margin-top: 5rem;
	padding: 0 1.6rem;
}

.achievement-button__link {
	font-size: 1.4rem;
	max-width: 270px;
	padding: 1.3rem;
	width: 100%;
}

.achievement-button__link span {
	padding-right: 2.8rem;
}

.achievement-button__link span::after {
	height: 19px;
	width: 19px;
}

.compare {
	padding-bottom: 4rem;
}

.compare__texts {
	margin-top: 3.2rem;
}

.compare__subtitle {
	font-size: 1.5rem;
	padding: 0.7rem;
}

.compare__maintitle {
	font-size: 2.6rem;
}

.compare__detail {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-top: 1.8rem;
}

.compare__table_box {
	padding-bottom: 3.2rem;
}

.compare__table_container {
	padding: 2.3rem 1.1rem;
	width: 640px;
}

.compare__table {
	padding: 2.3rem 1.1rem;
}

.compare__table_box::-webkit-scrollbar {
	height: 5px;
}

.value__bg {
	height: 100%;
}

.value__inner {
	padding: 4rem 0;
}

.value__title_en {
	font-size: 6rem;
}

.value__title_jp {
	display: block;
}

.value__title_jp_position span {
	display: block;
}

.value__title_jp_position {
	margin-left: 3.2rem;
	margin-top: -2.8rem;
	transform: translate(0, 0);
}

.value__img {
	display: none;
}

.value__items_container {
	display: block;
	padding-bottom: 1.6rem;
}

.value__items {
	display: flex;
	flex-wrap: wrap;
}

.value__item {
	aspect-ratio: 1/1;
	border-radius: 50%;
	box-sizing: border-box;
	padding: 3.2rem 2.5rem;
	width: 52.5%;
}

.value__item:nth-child(2n) {
	margin-left: -5%;
}

.value__item article {
	margin-top: 15%;
}

.value__item-title {
	font-size: 1.4rem;
}

.value__items_container::-webkit-scrollbar {
	height: 5px;
}

.problem {
	margin-top: 5rem;
}

.problem__question {
	font-size: 20rem;
	left: 5px;
	top: -20px;
}

.problem__question--right {
	display: none;
}

.problem__intro-text {
	font-size: 2rem;
	line-height: 1.8;
	margin-top: 0;
	position: relative;
	text-align: left;
	z-index: 10;
}

.problem__highlight {
	font-size: 2.4rem;
}

.problem-items {
	grid-template-columns: 1fr;
	gap: 16px;
	margin: 5rem auto 0;
}

.problem-items::after {
	height: 149px;
	width: 88px;
}

.problem-item {
	padding: 36px 16px 24px;
}

.problem-item-number {
	font-size: 1.4rem;
	height: 30px;
	width: 30px;
}

.problem-item-icon {
	width: 70px;
	margin-bottom: 12px;
}

.problem-item-title {
	font-size: 1.7rem;
	margin-bottom: 10px;
}

.problem-item-desc {
	font-size: 1.4rem;
}

.problem__arrows {
	margin-top: 2.4rem;
}

.problem__end_position {
	margin-top: 2rem;
}

.problem__end {
	align-items: center;
	flex-direction: column;
	gap: 0;
}

.problem__end-text {
	font-size: 2.4rem;
	margin-bottom: 0;
	margin-top: 0;
	position: relative;
	z-index: 10;
}

.problem__end-img {
	margin-left: auto;
	width: 140px;
}

.problem__end-img img {
	height: 160px;
}

.plan {
	border-radius: 0 0 0 30px;
	padding: 5rem 0;
}

.plan__title_en {
	font-size: 6rem;
}

.plan__title_jp_position {
	transform: translate(85%, -50%);
}

.plan__title_jp {
	font-size: 2.8rem;
}

.plan-cards {
	display: block;
	margin-top: 7rem;
}

.plan-card {
	margin: 0 auto;
	width: 100%;
}

.plan-card + .plan-card {
	margin-top: 4rem;
}

.recommend__plan {
	opacity: 1;
	transform: translate(-25%, -10%);
	width: 90px;
}

.plan-card-price {
	font-size: 1.4rem;
	line-height: 1.2;
}

.plan-card-price span {
	font-size: 44px;
}

.plan-card-details {
	margin-top: 1rem;
}

.plan-card-detail li {
	font-size: 1.6rem;
}

.plan-card-detail-button {
	font-size: 1.4rem;
	margin: 1.5rem auto 0;
	max-width: 244px;
}

.plan-card-description {
	font-size: 1.4rem;
	margin-top: 1.5rem;
}

.plan-card__notion {
	font-size: 0.8rem;
}

.plan-service {
	margin-top: 6.4rem;
	text-align: center;
}

.plan-service-sign {
	font-size: 1.6rem;
	line-height: 34px;
	white-space: nowrap;
}

.plan-service-items {
	display: inline-block;
	text-align: left !important;
}

.plan-service-item:nth-child(n+4) {
	margin-top: 0;
}

.plan-service-item {
	font-size: 1.4rem;
	width: 100%;
}

.plan-service-item + .plan-service-item {
	margin-top: 1rem;
}

.maintain {
	margin-top: 6.4rem;
}

.maintain__intro {
	font-size: 1.6rem;
}

.maintain__title {
	font-size: 2.8rem;
	margin-top: 1.8rem;
}

.maintain__detail {
	font-size: 1.4rem;
	margin-top: 1.8rem;
}

.maintain__table_box {
	overflow: visible;
}

.maintain__table_container {
	background: linear-gradient(180deg, #f2f2f2 0%, #f2f2f2 7%, #fff 7%, #fff 100%);
	padding: 1.7rem 1.7rem 3.6rem;
	width: 100%;
}

.maintain__table {
	display: none;
}

.maintain__end-text {
	font-size: 1.2rem;
}

.top {
	background: url(../../img/top-bg-sp.webp) no-repeat center center/cover;
	padding-bottom: 20px;
	padding-top: 16rem;
}

.top-inner {
	display: block;
}

.top-left {
	text-align: left;
}

.top-sub-title {
	font-size: 1.2rem;
}

.top-main-title {
	font-size: 3rem;
}

.top-main-title span {
	font-size: 4rem;
	margin-bottom: 1.6rem;
}

.top-right {
	width: 100%;
}

.line__position {
	display: none;
}

.after__img {
	width: 120px;
}

.after__title,
.after__details,
.after__button_position {
	margin-top: 2.4rem;
}

.after__title {
	font-size: 1.6rem;
}

.after__details {
	font-size: 1.4rem;
	width: 100%;
}

.after__button {
	font-size: 1.4rem;
	padding: 1.2rem;
	width: 200px;
}

.download__title_jp_position {
	font-size: 2rem;
}

}

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

.solution {
	overflow: hidden;
}

.solution__title_en {
	font-size: 5.2rem;
}

}

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

.solution__title_en {
	font-size: 4.2rem;
}

}

/* slide-flow削除 — 制作実績はステップスライダーに変更 */

@keyframes fadeIn {

0% {
	opacity: 0;
}

100% {
	opacity: 1;
}

}

/* ==========================================================================
   料金計算式
   ========================================================================== */

.plan-formula {
	margin-top: 4rem;
	text-align: center;
}

.plan-formula__text {
	display: inline-block;
	background: #fff;
	padding: 1.4rem 4rem;
	border-radius: 100px;
	font-size: 2.8rem;
	font-weight: 700;
	color: #333;
	letter-spacing: 0.05em;
	box-shadow: 0 2px 12px rgba(29, 96, 204, 0.1);
}

.plan-formula__text span {
	color: #1D60CC;
}

/* ==========================================================================
   価格サブテキスト
   ========================================================================== */

.plan-card-price-sub {
	font-size: 1.3rem;
	color: #666;
	margin-top: 4px;
	text-align: center;
}

/* ==========================================================================
   制作オプション
   ========================================================================== */

.plan-options {
	margin-top: 6rem;
	max-width: 910px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.plan-options__title,
.plan-examples__title,
.plan-seo__title {
	font-size: 2.4rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 2rem;
}

.plan-options__table_box {
	border-radius: 10px;
	overflow: hidden;
}

.plan-options__table {
	width: 100%;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 2px solid #000;
	border-radius: 10px;
	overflow: hidden;
}

.plan-options__table th,
.plan-options__table td {
	padding: 1.4rem 2rem;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	text-align: left;
	font-size: 1.6rem;
}

.plan-options__table th:last-child,
.plan-options__table td:last-child {
	border-right: none;
	text-align: center;
	white-space: nowrap;
	width: 20rem;
}

.plan-options__table tr:last-child td {
	border-bottom: none;
}

.plan-options__table th {
	background: #1D60CC;
	color: #fff;
	font-weight: 700;
	border-bottom: 1px solid #ddd;
}

.plan-options__table td strong {
	color: #1D60CC;
	font-size: 1.8rem;
}

.plan-options__note {
	margin-top: 1.2rem;
	font-size: 1.3rem;
	color: #666;
	text-align: left;
}

/* ==========================================================================
   代表的な料金例
   ========================================================================== */

.plan-examples {
	margin-top: 6rem;
	max-width: 910px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.plan-examples__table_box {
	overflow-x: auto;
}

.plan-examples__table {
	width: 100%;
	min-width: 600px;
	border-collapse: collapse;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.plan-examples__table th,
.plan-examples__table td {
	padding: 1.2rem 1.5rem;
	border: 1px solid #ddd;
	text-align: center;
	font-size: 1.5rem;
}

.plan-examples__table th {
	background: #1D60CC;
	color: #fff;
	font-weight: 700;
}

.plan-examples__table td strong {
	color: #1D60CC;
}

.plan-examples__highlight {
	background: #EBF2FF;
}

.plan-examples__highlight td {
	font-weight: 700;
}

.plan-examples__star {
	display: inline-block;
	background: #FFD60A;
	color: #000;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 0.2rem 0.6rem;
	border-radius: 4px;
	margin-left: 0.4rem;
}

/* ==========================================================================
   SEO施策 × プラン対応表
   ========================================================================== */

.plan-seo {
	margin-top: 6rem;
}

.plan-seo__table_box {
	border-radius: 10px;
	overflow: hidden;
}

.plan-seo__table {
	width: 100%;
	min-width: 700px;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border: 2px solid #000;
	border-radius: 10px;
	overflow: hidden;
}

.plan-seo__table th,
.plan-seo__table td {
	padding: 1.8rem 1.5rem;
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	text-align: center;
	font-size: 1.6rem;
}

.plan-seo__table th:last-child,
.plan-seo__table td:last-child {
	border-right: none;
}

.plan-seo__table tr:last-child td {
	border-bottom: none;
}

.plan-seo__table th {
	background: #1D60CC;
	color: #fff;
	font-weight: 700;
}

.plan-seo__table td:first-child {
	text-align: left;
	font-weight: 500;
	min-width: 200px;
}

.plan-seo__table small {
	display: block;
	font-size: 1.1rem;
	color: #666;
	margin-top: 2px;
}

.plan-seo__ok {
	color: #1D60CC;
	font-weight: 700;
	font-size: 1.8rem !important;
}

.plan-seo__ng {
	color: #ccc;
	font-size: 1.8rem !important;
}

.plan-seo__note {
	margin-top: 1.2rem;
	font-size: 1.3rem;
	color: #666;
	text-align: center;
}

/* レスポンシブ - 新セクション */
@media screen and (max-width: 1024px) {
	.plan-formula__text {
		font-size: 2.2rem;
		padding: 1.2rem 3rem;
	}
	.plan-options__title,
	.plan-examples__title,
	.plan-seo__title {
		font-size: 2rem;
	}
	.plan-options__table th,
	.plan-options__table td {
		font-size: 1.4rem;
		padding: 1.2rem 1.5rem;
	}
	.plan-options__table td strong {
		font-size: 1.6rem;
	}
	.plan-examples__table th,
	.plan-examples__table td {
		font-size: 1.4rem;
		padding: 1rem 1.2rem;
	}
	.plan-seo__table th,
	.plan-seo__table td {
		font-size: 1.3rem;
		padding: 1rem 1.2rem;
	}
	.plan-card-price-sub {
		font-size: 1.2rem;
	}
}

@media screen and (max-width: 599px) {
	.plan-formula {
		margin-top: 3rem;
	}
	.plan-formula__text {
		font-size: 1.6rem;
		padding: 1rem 2rem;
	}
	.plan-options {
		margin-top: 4rem;
	}
	.plan-options__title,
	.plan-examples__title,
	.plan-seo__title {
		font-size: 1.8rem;
		margin-bottom: 1.5rem;
	}
	.plan-options__table th,
	.plan-options__table td {
		font-size: 1.4rem;
		padding: 1.2rem 1rem;
	}
	.plan-options__table th:last-child,
	.plan-options__table td:last-child {
		width: 9rem;
	}
	.plan-options__table td strong {
		font-size: 1.4rem;
	}
	.plan-options__note {
		font-size: 1.1rem;
		text-align: left;
	}
	.plan-examples {
		margin-top: 4rem;
	}
	.plan-examples__table th,
	.plan-examples__table td {
		font-size: 1.3rem;
		padding: 0.8rem;
	}
	.plan-examples__star {
		font-size: 1rem;
	}
	.plan-seo {
		margin-top: 4rem;
	}
	.plan-seo__table th,
	.plan-seo__table td {
		font-size: 1.4rem;
		padding: 1.2rem 0.6rem;
	}
	.plan-seo__note {
		font-size: 1.1rem;
	}
	.plan-card-price-sub {
		font-size: 1.2rem;
	}
}

/* ==========================================================================
   制作の流れ（タイムライン）
   ========================================================================== */

.flow__head {
	text-align: left;
	margin-bottom: 4rem;
}

.flow__lede {
	font-size: 1.6rem;
	color: #555;
	line-height: 2;
	margin-top: 2rem;
}

/* タイムライン全体 */
.flow-tl {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 0 0 60px;
}

/* 縦ライン */
.flow-tl__rail {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 20px;
	width: 5px;
	background: #dce4f0;
	border-radius: 3px;
}

.flow-tl__fill {
	display: block;
	width: 100%;
	height: var(--progress, 0%);
	background: #1D60CC;
	border-radius: 3px;
	transition: height 0.15s ease-out;
}

/* ステップ */
.flow-tl__step {
	position: relative;
	padding-top: 56px;
	padding-bottom: 56px;
	border-bottom: 2px dashed #333;
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

.flow-tl__step:last-child {
	border-bottom: none;
}

.flow-tl__step.is-in {
	opacity: 1;
	transform: translateY(0);
}

/* ドット */
.flow-tl__dot {
	position: absolute;
	left: -48px;
	top: 50px;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: #dce4f0;
	border: 4px solid #fff;
	box-shadow: 0 0 0 3px #dce4f0;
	transition: background 0.3s, box-shadow 0.3s;
	z-index: 1;
}

.flow-tl__step.is-active .flow-tl__dot {
	background: #1D60CC;
	box-shadow: 0 0 0 4px rgba(29, 96, 204, 0.3);
}

/* 見出し行 */
.flow-tl__heading-row {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	margin-bottom: 0.8rem;
}

.flow-tl__num {
	font-size: 1.6rem;
	font-weight: 700;
	color: #1D60CC;
	min-width: 3.2rem;
}

.flow-tl__num b {
	font-size: 3.2rem;
}

.flow-tl__h {
	font-size: 2.6rem;
	font-weight: 700;
	color: #222;
}

/* 説明文 */
.flow-tl__desc {
	font-size: 1.7rem;
	color: #555;
	line-height: 1.8;
	margin-bottom: 1.2rem;
}

/* 役割ラベル */
.flow-tl__roles {
	display: flex;
	flex-direction: row;
	gap: 1.2rem;
	margin-top: 38px;
}

.flow-tl__role {
	flex: 1;
	position: relative;
	display: block;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #444;
	padding: 2.4rem 1.6rem 1.6rem;
	border-radius: 8px;
	background: #f7f9fc;
}

.flow-tl__role--customer {
	background: #ebf2ff;
}

.flow-tl__role--us {
	background: #f2f2f2;
}

.flow-tl__role-label {
	position: absolute;
	top: -0.9rem;
	left: 1.2rem;
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	background: #999;
	padding: 0.2rem 1rem;
	border-radius: 4px;
	white-space: nowrap;
}

.flow-tl__role--customer .flow-tl__role-label {
	background: #1D60CC;
}

.flow-tl__role--us .flow-tl__role-label {
	background: #888;
}

/* ==========================================================================
   料金イメージ（タブ型）- モダンデザイン
   ========================================================================== */

.plan-examples__tabs {
	display: flex;
	justify-content: center;
	gap: 1.6rem;
	margin-bottom: 3.2rem;
	flex-wrap: wrap;
}

.plan-examples__tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.4rem;
	padding: 1.6rem 2.8rem;
	border: 2px solid #000;
	border-radius: 12px;
	background: #fff;
	color: #333;
	font-size: 1.4rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.25s;
	position: relative;
	letter-spacing: 0.02em;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	min-width: 160px;
}

.plan-examples__tab-label {
	font-size: 1.5rem;
	font-weight: 700;
}

.plan-examples__tab-sub {
	font-size: 1.2rem;
	font-weight: 400;
	opacity: 0.7;
}

.plan-examples__tab.is-active {
	background: #1D60CC;
	color: #fff;
	border-color: #1D60CC;
	box-shadow: 0 4px 16px rgba(29, 96, 204, 0.35);
}

.plan-examples__tab.is-active .plan-examples__tab-sub {
	opacity: 0.85;
}

.plan-examples__tab:hover {
	border-color: #1D60CC;
	box-shadow: 0 4px 16px rgba(29, 96, 204, 0.15);
}

.plan-examples__tab.is-active:hover {
	background: #1D60CC;
	color: #fff;
	box-shadow: 0 4px 16px rgba(29, 96, 204, 0.35);
}

/* パネル */
.plan-examples__panels {
	position: relative;
}

.plan-examples__panel {
	display: none;
}

.plan-examples__panel.is-active {
	display: block;
}

.plan-examples__panel-header {
	background: #fff;
	border: 2px solid #111;
	border-radius: 10px;
	padding: 2.4rem 2.8rem;
	margin-bottom: 2rem;
}

.plan-examples__panel-name {
	font-size: 2rem;
	font-weight: 800;
	color: #222;
	margin-bottom: 1.6rem;
	letter-spacing: 0.02em;
}

.plan-examples__panel-spec {
	display: flex;
	gap: 1.6rem;
	flex-wrap: wrap;
}

.plan-examples__panel-spec div {
	display: flex;
	align-items: center;
	gap: 0.8rem;
	background: #f7f7f7;
	padding: 0.5rem 1.2rem;
	border-radius: 6px;
}

.plan-examples__panel-spec dt {
	font-size: 1.2rem;
	font-weight: 700;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.plan-examples__panel-spec dd {
	font-size: 1.5rem;
	font-weight: 800;
	color: #222;
}

.plan-examples__panel-spec dd.is-inactive {
	color: #bbb;
}

.plan-examples__panel-spec dd.is-active {
	color: #000;
}

/* コンテンツ（サイトマップ＋計算） */
.plan-examples__panel-content {
	display: flex;
	gap: 2rem;
	align-items: stretch;
}

.plan-examples__panel-sitemap {
	flex: 1;
	min-width: 0;
}

.plan-examples__panel-calc {
	flex: 1;
	min-width: 0;
}

/* サイトマップツリー */
.sitemap {
	background: #fafafa;
	border: 2px solid #111;
	border-radius: 10px;
	padding: 2.4rem;
	height: 100%;
	box-sizing: border-box;
}

.sitemap__node {
	font-size: 1.4rem;
	font-weight: 700;
	color: #333;
	padding: 0.8rem 1.2rem;
	border-radius: 6px;
	background: #f0f0f0;
	text-align: center;
	margin-bottom: 1.2rem;
}

.sitemap__node--top {
	background: #E8F0FE;
	color: #1D60CC;
	border: 1px solid #1D60CC;
}

.sitemap__group-label {
	font-size: 1.7rem;
	font-weight: 800;
	color: #555;
	margin-top: 1.4rem;
	margin-bottom: 0.6rem;
	padding-left: 0.4rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sitemap__group-label--free {
	color: #999;
}

.sitemap__group-label--main {
	color: #1D60CC;
}

.sitemap__group-label--blog {
	color: #E8A735;
}

.sitemap__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-left: 1.2rem;
	border-left: 2px solid #1D60CC;
}

.sitemap__list--free {
	border-left-color: #ccc;
}

.sitemap__list--blog {
	border-left-color: #E8A735;
}

.sitemap__item {
	font-size: 1.4rem;
	font-weight: 700;
	color: #1D60CC;
	padding: 0.8rem 1.2rem;
	background: #E8F0FE;
	border-radius: 6px;
	border: 1px solid #1D60CC;
	text-align: center;
}

.sitemap__item span {
	display: block;
}

.sitemap__item--free {
	background: #f0f0f0;
	color: #999;
	border-color: #ccc;
}

.sitemap__item--blog {
	background: #FFF5E0;
	color: #E8A735;
	border-color: #E8A735;
}

/* 料金計算カード */
.plan-examples__card-calc {
	background: #fff;
	border: 2px solid #111;
	border-radius: 10px;
	padding: 2.4rem;
	height: 100%;
	box-sizing: border-box;
}

.plan-examples__card-calc-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.2rem 0;
	border-bottom: 1px solid #e0e0e0;
	font-size: 1.6rem;
	color: #333;
}

.plan-examples__card-calc-row:has(+ .plan-examples__card-calc-total) {
	border-bottom: none;
}

.plan-examples__card-calc-row span:last-child {
	font-weight: 700;
	color: #222;
	font-variant-numeric: tabular-nums;
}

.plan-examples__card-calc-total {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.6rem 0 0;
	font-size: 1.6rem;
	font-weight: 700;
	color: #222;
	border-top: 2px dashed #333;
	margin-top: 0.4rem;
}

.plan-examples__card-calc-total strong {
	font-size: 2.6rem;
	color: #1D60CC;
	letter-spacing: -0.02em;
	display: inline-block;
}

/* スロットアニメーション */
.slot-container {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.slot-digit-wrapper {
	display: inline-block;
	height: 1em;
	overflow: hidden;
	line-height: 1;
}

.slot-digit-inner {
	display: flex;
	flex-direction: column;
}

.slot-digit-inner span {
	display: block;
	height: 1em;
	line-height: 1;
	text-align: center;
}

.slot-suffix {
	line-height: 1;
}

/* ==========================================================================
   レスポンシブ - タイムライン & 料金イメージ
   ========================================================================== */

@media screen and (max-width: 1024px) {
	.flow-tl__num b {
		font-size: 2.6rem;
	}
	.flow-tl__h {
		font-size: 2.2rem;
	}
	.flow-tl__desc {
		font-size: 1.6rem;
	}
	.flow-tl__roles {
		font-size: 1.3rem;
		margin-top: 32px;
	}
	.flow-tl__role {
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 599px) {
	.flow__lede {
		font-size: 1.4rem;
	}
	.flow-tl {
		padding-left: 36px;
	}
	.flow-tl__rail {
		left: 12px;
		width: 4px;
	}
	.flow-tl__dot {
		left: -30px;
		top: 30px;
		width: 16px;
		height: 16px;
		border-width: 3px;
	}
	.flow-tl__heading-row {
		flex-wrap: wrap;
		gap: 0.6rem;
		margin-bottom: 1.2rem;
	}
	.flow-tl__num b {
		font-size: 2.4rem;
	}
	.flow-tl__h {
		font-size: 2.0rem;
	}
	.flow-tl__desc {
		font-size: 1.4rem;
	}
	.flow-tl__roles {
		flex-direction: column;
		gap: 1.6rem;
		margin-top: 32px;
	}
	.flow-tl__role {
		font-size: 1.3rem;
		padding: 2rem 1rem 1.2rem;
	}
	.flow-tl__step {
		padding-top: 48px;
		padding-bottom: 48px;
	}

}

@media screen and (max-width: 768px) {
	.flow-tl__step {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	/* 料金イメージ */
	.plan-examples__tabs {
		gap: 0.8rem;
	}
	.plan-examples__tab {
		padding: 1.2rem 1.4rem;
		min-width: 0;
		flex: 1;
		border-radius: 10px;
	}
	.plan-examples__tab-label {
		font-size: 1.3rem;
	}
	.plan-examples__tab-sub {
		font-size: 1.1rem;
	}
	.plan-examples__panel-header {
		padding: 1.6rem;
	}
	.plan-examples__panel-name {
		font-size: 1.7rem;
		margin-bottom: 1.2rem;
	}
	.plan-examples__panel-spec {
		gap: 0.8rem;
	}
	.plan-examples__panel-spec div {
		padding: 0.4rem 0.8rem;
	}
	.plan-examples__panel-content {
		flex-direction: column;
	}
	.sitemap {
		padding: 1.6rem;
	}
	.plan-examples__card-calc {
		padding: 1.6rem;
	}
	.plan-examples__card-calc-row {
		font-size: 1.3rem;
	}
	.plan-examples__card-calc-total {
		font-size: 1.4rem;
	}
	.plan-examples__card-calc-total strong {
		font-size: 2rem;
	}
}

/* === 新FV（Pattern A） === */
.fv-new {
	background: url(../../img/fv-bg.png) no-repeat center center/cover;
	min-height: calc(100vw * 9 / 16);
	padding: 18rem 0 10rem;
	overflow: hidden;
	display: flex;
	align-items: center;
	position: relative;
}
.fv-new::before {
	content: "";
	position: absolute;
	bottom: 4rem;
	left: -10rem;
	width: 26rem;
	height: 26rem;
	background-image: radial-gradient(circle, #5BAEFF 2.2px, transparent 2.4px);
	background-size: 18px 18px;
	-webkit-mask-image: radial-gradient(circle at center, #000 45%, transparent 75%);
	mask-image: radial-gradient(circle at center, #000 45%, transparent 75%);
	opacity: 0.35;
	pointer-events: none;
	z-index: 0;
}
.fv-new .inner {
	box-sizing: border-box;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 8rem;
	width: 100%;
	position: relative;
	z-index: 1;
}
.fv-new__grid {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 4rem;
	align-items: center;
}
.fv-new__text {
	align-self: start;
}
.fv-new__sub {
	display: inline-block;
	background: #FFD60A;
	color: #000000;
	border-radius: 999px;
	padding: 8px 20px;
	font-size: 1.4rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 2rem;
}
.fv-new__title {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.25;
	letter-spacing: 0.02em;
	margin-bottom: 2.4rem;
}
.fv-new__title-line1,
.fv-new__title-line2 {
	display: block;
}
.fv-new__title-line1 {
	color: #000000;
	font-size: 8rem;
	font-weight: 700;
}
.fv-new__title-img {
	display: block;
	width: 52rem;
	max-width: 100%;
	height: auto;
}
.fv-new__title-line2 {
	color: #007AFF;
	font-size: 5rem;
	font-weight: 500;
	margin-top: -1rem;
}
.fv-new__lead {
	color: #000000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.6;
	margin: 0 0 2.8rem;
}
.fv-new__lead-accent {
	color: #007AFF;
}
.fv-new__benefits {
	display: flex;
	align-items: center;
	margin: 0 0 3rem;
	list-style: none;
	padding: 0;
}
.fv-new__benefits li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 0 2.4rem;
}
.fv-new__benefits li:first-child {
	padding-left: 0;
}
.fv-new__benefits li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 4rem;
	background: #D5DDE8;
}
.fv-new__benefit-icon {
	flex-shrink: 0;
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #FFFFFF 0%, #EFF5FB 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 122, 255, 0.18);
	color: #007AFF;
}
.fv-new__benefit-icon svg {
	width: 2.4rem;
	height: 2.4rem;
}
.fv-new__benefit-text {
	color: #000000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.5;
}
.fv-new__cta {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	gap: 1.2rem;
}
.fv-new__cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1.6rem;
	height: 76px;
	background: #F55B79;
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 2.2rem;
	font-weight: 600;
	text-decoration: none;
	padding: 0.8rem 4rem 0.8rem 2rem;
	border-radius: 999px;
	box-shadow: 0 8px 20px rgba(245, 91, 121, 0.45);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
	min-width: 36rem;
}
.fv-new__cta-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 26px rgba(245, 91, 121, 0.55);
}
.fv-new__cta-icon {
	width: 5rem;
	height: 5rem;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.fv-new__cta-icon svg {
	width: 2.6rem;
	height: 2.6rem;
}
.fv-new__cta-label {
	letter-spacing: 0.08em;
	text-align: center;
}
.fv-new__cta-chevron {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.fv-new__cta-chevron svg {
	width: 1.6rem;
	height: 1.6rem;
}
.fv-new__cta-note {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.4rem;
}
.fv-new__cta-note::before,
.fv-new__cta-note::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 1.6rem;
	background: #000;
}
.fv-new__cta-note::before {
	transform: rotate(-20deg);
}
.fv-new__cta-note::after {
	transform: rotate(20deg);
}
.fv-new__visual {
	position: relative;
	text-align: center;
	max-width: 560px;
	margin: 0 auto;
}
.fv-new__visual img {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
	filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.25));
}
.fv-new__search-card {
	position: absolute;
	left: -88px;
	bottom: 24px;
	background: #fff;
	border-radius: 12px;
	padding: 12px 14px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	width: fit-content;
	max-width: 280px;
	text-align: left;
	z-index: 3;
	animation: fvFloatY 4s ease-in-out infinite;
}
.fv-new__search-card__head {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 8px;
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}
.fv-new__search-card__google {
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: 0;
}
.fv-new__search-card__google span:nth-child(1) { color: #4285F4; }
.fv-new__search-card__google span:nth-child(2) { color: #EA4335; }
.fv-new__search-card__google span:nth-child(3) { color: #FBBC05; }
.fv-new__search-card__google span:nth-child(4) { color: #4285F4; }
.fv-new__search-card__google span:nth-child(5) { color: #34A853; }
.fv-new__search-card__google span:nth-child(6) { color: #EA4335; }
.fv-new__search-card__keyword {
	font-size: 1.2rem;
	color: #555;
	background: #f3f3f3;
	border-radius: 999px;
	padding: 3px 10px;
}
.fv-new__search-card__rank {
	display: flex;
	align-items: baseline;
	gap: 6px;
}
.fv-new__search-card__rank-num {
	font-family: "Open Sans", sans-serif;
	font-weight: 800;
	font-size: 3.2rem;
	line-height: 1;
	color: #E94E77;
}
.fv-new__search-card__rank-label {
	font-size: 1.3rem;
	font-weight: 700;
	color: #111;
}
.fv-new__search-card__note {
	font-size: 1.1rem;
	color: #666;
	margin-top: 4px;
}
@keyframes fvFloatY {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-6px); }
}
.fv-new__graph-card {
	position: absolute;
	right: -8px;
	top: 16px;
	background: #fff;
	border-radius: 12px;
	padding: 10px 12px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
	width: 184px;
	z-index: 3;
	animation: fvFloatY 4s ease-in-out infinite reverse;
}
.fv-new__graph-card__label {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: #FFF1F4;
	color: #E94E77;
	font-size: 0.95rem;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 999px;
	margin-bottom: 6px;
}
.fv-new__graph-card__label::before {
	content: "📈";
	font-size: 1rem;
}
.fv-new__graph-card__num {
	display: flex;
	align-items: baseline;
	gap: 3px;
	line-height: 1;
	margin-bottom: 4px;
}
.fv-new__graph-card__num-arrow {
	font-size: 3.2rem;
	font-weight: 900;
	color: #E94E77;
	line-height: 1;
	margin-right: -2px;
	align-self: center;
	text-shadow: 0 2px 6px rgba(233, 78, 119, 0.35);
}
.fv-new__graph-card__note strong {
	color: #E94E77;
	font-weight: 800;
	font-size: 1.1rem;
}
.fv-new__graph-card__num-main {
	font-family: "Open Sans", sans-serif;
	font-weight: 900;
	font-size: 5.6rem;
	background: linear-gradient(135deg, #E94E77 0%, #F55B79 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.03em;
}
.fv-new__graph-card__num-unit {
	font-size: 1.6rem;
	font-weight: 800;
	color: #E94E77;
}
.fv-new__graph-card__num-suffix {
	margin-left: auto;
	font-size: 0.95rem;
	font-weight: 700;
	color: #E94E77;
	background: #FFF1F4;
	padding: 3px 6px;
	border-radius: 5px;
}
.fv-new__graph svg {
	width: 100%;
	height: 32px;
	display: block;
}
.fv-new__graph-card__note {
	font-size: 0.95rem;
	color: #666;
	margin-top: 4px;
}

@media screen and (max-width: 1024px) {
	.fv-new {
		padding: 15rem 0 8rem;
	}
	.fv-new__grid {
		grid-template-columns: 1fr;
		gap: 3rem;
		justify-items: center;
		text-align: center;
	}
	.fv-new__title-line1 {
		font-size: 5.6rem;
	}
	.fv-new__title-line2 {
		font-size: 4.4rem;
	}
	.fv-new__benefits,
	.fv-new__cta {
		justify-content: center;
	}
	.fv-new__visual {
		margin: 0 auto;
		max-width: 480px;
	}
}

.sp-fixed-cta {
	display: none;
}

@media screen and (max-width: 768px) {
	.fv-new {
		padding: 14.5rem 0 5rem;
		background: url(../../img/fv-bg-sp.png?v=2) no-repeat center top/cover;
	}
	.fv-new::before {
		width: 12rem;
		height: 12rem;
		left: -4rem;
		bottom: 2rem;
	}
	.fv-new .inner {
		padding: 0 2.4rem;
	}
	.fv-new__grid {
		gap: 1.5rem;
		justify-items: start;
		text-align: left;
	}
	.fv-new__cta {
		justify-content: flex-start;
		align-self: stretch;
	}
	.fv-new__cta-btn {
		align-self: flex-start;
	}
	.fv-new__sub {
		font-size: 1.4rem;
		padding: 7px 18px;
	}
	.fv-new__title-img {
		width: 32rem;
	}
	.fv-new__title-line2 {
		font-size: 3rem;
		margin-top: -0.4rem;
	}
	.fv-new__lead {
		font-size: 1.5rem;
		line-height: 1.7;
		margin-bottom: 2.4rem;
	}
	.fv-new__cta-btn {
		font-size: 1.7rem;
		padding: 1rem 1.4rem 1rem 1.6rem;
		min-width: 0;
		width: 100%;
		max-width: 280px;
		height: 60px;
		justify-content: space-between;
	}
	.fv-new__cta-icon {
		width: 4rem;
		height: 4rem;
	}
	.fv-new__cta-icon svg {
		width: 2.2rem;
		height: 2.2rem;
	}
	.fv-new__visual {
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"img img"
			"graph search";
		column-gap: 0.8rem;
		row-gap: 1.4rem;
		max-width: 100%;
	}
	.fv-new__visual img {
		grid-area: img;
	}
	.fv-new__graph-card {
		grid-area: graph;
		position: static;
		width: 100%;
		padding: 10px;
		animation: none;
	}
	.fv-new__graph-card__label {
		font-size: 0.9rem;
		padding: 2px 6px;
	}
	.fv-new__graph-card__num-main {
		font-size: 2.8rem;
	}
	.fv-new__graph-card__num-arrow {
		font-size: 1.8rem;
	}
	.fv-new__graph-card__num-unit {
		font-size: 1.2rem;
	}
	.fv-new__graph-card__num-suffix {
		display: none;
	}
	.fv-new__graph-card__note {
		font-size: 0.85rem;
		line-height: 1.45;
	}
	.fv-new__graph-card__note strong {
		font-size: 1rem;
	}
	.fv-new__search-card {
		grid-area: search;
		position: static;
		width: 100%;
		max-width: none;
		padding: 10px;
		animation: none;
	}
	.fv-new__search-card__head {
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;
		padding-bottom: 6px;
		margin-bottom: 8px;
	}
	.fv-new__search-card__google {
		font-size: 1.1rem;
	}
	.fv-new__search-card__keyword {
		font-size: 1rem;
		padding: 2px 8px;
		max-width: 100%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	.fv-new__search-card__rank-num {
		font-size: 2.6rem;
	}
	.fv-new__search-card__rank-label {
		font-size: 1.1rem;
	}
	.fv-new__search-card__note {
		font-size: 0.85rem;
	}
	.fv-new__cta {
		display: none;
	}
	.line__sp_position {
		display: none !important;
	}
	body {
		padding-bottom: 64px;
	}
	.sp-fixed-cta {
		display: flex;
		gap: 8px;
		padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 300;
		background: rgba(255, 255, 255, 0.82);
		box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
		backdrop-filter: blur(10px);
		-webkit-backdrop-filter: blur(10px);
	}
	.sp-fixed-cta__btn {
		flex: 1;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		height: 48px;
		border-radius: 999px;
		color: #fff;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		font-size: 1.3rem;
		line-height: 1.25;
		text-decoration: none;
		text-align: left;
		box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
		transition: transform 0.15s ease;
	}
	.sp-fixed-cta__btn:active {
		transform: scale(0.98);
	}
	.sp-fixed-cta__btn--contact {
		background: #F55B79;
	}
	.sp-fixed-cta__btn--line {
		background: #11A73B;
	}
	.sp-fixed-cta__icon {
		width: 22px;
		height: 22px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	.sp-fixed-cta__icon svg,
	.sp-fixed-cta__icon img {
		width: 100%;
		height: 100%;
	}
}

