/* ============================================
   Reset & Base Styles (Foundation)
   ============================================ */
*,
::after,
::before {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.15;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

address,
blockquote,
body,
dl,
figure,
form,
iframe,
p,
pre,
table {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
dt {
  font-weight: 700;
}
dd {
  margin-left: 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  margin: 0;
  overflow: visible;
  clear: both;
  color: inherit;
  border-top-width: 1px;
}
pre {
  font-family: monospace, monospace;
  font-size: inherit;
}
address {
  font-style: inherit;
}
a {
  background-color: transparent;
}
abbr[title] {
  text-decoration: underline dotted;
}
b,
strong {
  font-weight: bolder;
}
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}
small {
  font-size: 80%;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
embed,
iframe,
img,
object,
svg {
  vertical-align: bottom;
}
button,
input,
optgroup,
select,
textarea {
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  background: transparent;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}
[type='button'],
[type='reset'],
[type='submit'],
button {
  cursor: pointer;
}
[type='button']:disabled,
[type='reset']:disabled,
[type='submit']:disabled,
button:disabled {
  cursor: default;
}
:-moz-focusring {
  outline: auto;
}
select:disabled {
  opacity: inherit;
}
fieldset,
option {
  padding: 0;
}
fieldset {
  min-width: 0;
  margin: 0;
}
legend {
  padding: 0;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}
[type='search'] {
  outline-offset: -2px;
}
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
label[for] {
  cursor: pointer;
}
details {
  display: block;
}
summary {
  display: list-item;
}
[contenteditable]:focus {
  outline: auto;
}
table {
  border-collapse: collapse;
  border-color: inherit;
}
caption {
  text-align: left;
}
td,
th {
  padding: 0;
  vertical-align: top;
}
th {
  font-weight: 700;
  text-align: left;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
	font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  color: var(--color-text);
  line-height: 1.7;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
main {
  display: block;
}
li {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}
address {
  font-style: normal;
}
sup {
  font-size: smaller;
  vertical-align: super;
}
form {
  accent-color: #014c86;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
}
textarea {
  resize: vertical;
}
[type='number'] {
  -moz-appearance: textfield;
}
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
[type='checkbox'],
[type='radio'] {
  cursor: pointer;
}
[type='reset'],
[type='submit'],
button {
  cursor: pointer;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
label {
  cursor: pointer;
}
[id] {
  scroll-margin-top: var(--anchor-offset);
}

/* ============================================
  カラー変数 (Foundation)
   ============================================ */
:root {
  --color-primary: #20C9D8;
  --color-purple: #C688FF;
  --color-orange: #FFA230;
  --color-text: #333333;
  --anchor-offset: 75px;
}

@media (min-width: 1025px) {
  :root {
    --anchor-offset: 72px;
  }
}

/* ============================================
  Layout - Container (l-)
   ============================================ */
@media (min-width: 768px) {
  .l-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .l-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
  }
}

/* ============================================
   Layout - Header (l-)
   ============================================ */
@media (min-width: 1025px) {
	.l-header {
		background-color: #fff;
		border-bottom: 1px solid #e0e0e0;
		position: sticky;
		top: 0;
    z-index: 9999;
	}

	.page .l-header {
		border-bottom: none;
	}

	.l-header__container {
		max-width: 100%;
		width: 100%;
		padding-left: 120px;
		padding-right: 120px;
	}

	.l-header__wrapper {
		background-color: #fff;
		position: relative;
		margin: 0 auto;
		padding: 11px 0;
		display: flex;
		align-items: center;
    gap: 8px 32px;
	}

  .page .l-header__wrapper {
    padding-block: 24px;
  }

	.l-header__content {
		display: flex;
		align-items: center;
		gap: 40px;
		margin-left: auto;
	}

	.l-header__logo {
		font-weight: 700;
		display: flex;
		align-items: center;
	}

	.l-header__logo>a {
		display: block;
	}

	.l-header__logo img {
		height: 20px;
		width: auto;
	}

	.l-header__navigation {
		flex: 1;
	}

	.l-header__menu {
		display: flex;
		list-style: none;
		gap: 32px;
	}

  .l-header__menu > li {
		font-weight: 700;
		color: #4F4F4F;
		font-size: 1rem;
	}

  .l-header__menu > li > a {
    transition: color 0.3s ease;
	}

	.l-header__drawer-button {
    display: none;
	}
}

@media (max-width: 1024px) {
	.l-header {
		background-color: #fff;
		border-bottom: 1px solid #e0e0e0;
		position: sticky;
		top: 0;
		z-index: 9999;
	}

	.page .l-header {
		border-bottom: none;
	}

	.l-header__container {
		max-width: 100%;
		width: 100%;
    padding-left: 24px;
    padding-right: 24px;
	}

	.l-header__content {
    display: none;
	}

	.l-header__logo {
		font-weight: 700;
		display: flex;
		align-items: center;
	}

	.l-header__logo > a {
		display: block;
	}

	.l-header__logo img {
		height: 20px;
		width: auto;
	}

	.l-header__navigation {
		flex: 1;
	}

	.l-header__menu {
		display: flex;
		list-style: none;
		gap: 32px;
	}

  .l-header__menu > li {
		font-weight: 700;
		color: #4F4F4F;
		font-size: 1rem;
	}

  .l-header__menu > li > a {
    transition: color 0.3s ease;
	}

	.l-header__drawer-button {
    display: block;
		position: fixed;
		right: 43px;
		top: 10px;
    z-index: 1100;
	}
}

@media (min-width: 1025px) and (max-width: 1450px) {
	.l-header__container {
    padding-left: 24px;
    padding-right: 24px;
	}

	.l-header__wrapper {
    flex-wrap: wrap;
		max-width: 1200px;
    padding: 12px 0;
	}
}

@media (max-width: 1024px) {
	.l-header__wrapper {
    position: relative;
    z-index: 10000;
		flex-wrap: wrap;
		padding: 23px 0 22px;
	}
  .l-header__logo img {
		height: 16px;
	}
  .l-header__drawer-button {
		right: 16px;
	}
}

@media (hover: hover) {
  .l-header__menu > li:hover > a {
    color: rgba( 79, 79, 79, 0.7);
  }
}

/* ============================================
   Component - Hamburger Menu (c-)
   ============================================ */

/* ハンバーガーメニュー */
@media (min-width: 1025px) {
	.c-hamburger {
		display: none;
	}
}

@media (max-width: 1024px) {
	.c-hamburger {
    display: flex;
		flex-direction: column;
		background: none;
		border: none;
		cursor: pointer;
		padding: 12px 9px;
		gap: 10px;
	}
  .c-hamburger__line {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--color-text);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .c-hamburger.is-active .c-hamburger__line:nth-child(1) {
    transform: translateY(12px) rotate(45deg);
  }

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

  .c-hamburger.is-active .c-hamburger__line:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
  }
}


/* ============================================
   Component - heading (c-)
   ============================================ */
@media (min-width: 768px) {
	.c-heading {
		font-size: 1.25rem;
		font-weight: 700;
		font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
		color: var(--color-primary);
	}
}
@media (max-width: 767px) {
	.c-heading {
		font-size: 1rem;
		text-align: center;
		font-weight: 700;
		font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
		color: var(--color-primary);
	}
}

/* ============================================
   Layout - Drawer Menu (l-)
   ============================================ */

@media (min-width: 1025px) {
	.l-drawer {
		display: none;
  }
}

@media (max-width: 1024px) {
	.l-drawer {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
    z-index: 9997;
		opacity: 0;
		visibility: hidden;
		transition: all .3s ease;
	}

	.l-drawer__navigation {
		position: fixed;
    z-index: 9998;
		top: 72px;
		right: 0;
		width: 100%;
		height: calc(100vh - 72px); /* ヘッダーの高さを引いた値 */
		background-color: #fff;
		padding: 80px 20px;
		overflow-y: auto;
		transform: translateY(-100%);
		transition: transform .3s ease;
	}

	.l-drawer__menu {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 40px;
		width: 100%;
		max-width: 350px;
		margin-inline: auto;
	}

  .l-drawer__menu > li > a {
    width: fit-content;
		font-size: 1.25rem;
		font-weight: 700;
		color: #333333;
		display: flex;
		align-items: center;
		gap: 16px;
    transition: color 0.3s ease;
	}

  .l-drawer__menu > li > a > .c-icon {
		width: 20px;
		height: 20px;
	}

  .l-drawer__menu > li._contact .c-btn--contact {
    width: 100%;
		font-size: 1.125rem;
		color: #fff;
		padding-block: 10px;
		display: flex;
		align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
	}

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

  .l-drawer.is-active .l-drawer__navigation {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .l-drawer__menu {
    gap: 32px;
  }

  .l-drawer__menu > li > a {
    font-size: 1.125rem;
    padding-block: 5px;
  }

  .l-drawer__menu > li > a > .c-icon {
    width: 18px;
    height: 18px;
  }
}

@media (hover: hover) {
  .l-drawer__menu > li > a:hover {
    color: rgba(79, 79, 79, 0.7);
  }
  .l-drawer__menu > li._contact .c-btn--contact:hover {
    color: #fff;
  }
}

/* ============================================
   Component - Button (c-)
   ============================================ */

@media (min-width: 768px) {
  .c-btn {
    font-weight: 700;
    display: inline-block;
    border-radius: 8px;
    padding: 15px 32px;
    background: linear-gradient(to bottom, #FFA230 0%, #FF8C00 100%);
    color: #fff;
    font-size: 1.125rem;
    border: 1px solid transparent;
    box-shadow: 0 0 10px rgba(0, 40, 49, 0.1);
    line-height: 1.7;
  }

  .c-btn:has(.c-icon) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .c-btn:has(.c-icon) .c-icon {
    background: #fff;
  }

  .c-btn--reverse {
    background: #fff;
    color: #FFA230;
    border: 1px solid currentColor;
  }

  .c-btn--reverse .c-icon {
    background: #fff;
  }

  .c-btn--contact {
    transition: background 0.3s ease;
    padding: 12px 40px;
    background: linear-gradient(to bottom, #20C9D8 0%, #00B6C7 100%);
    font-size: 1rem;
  }

  .c-btn--primary {
    border: 1px solid currentColor;
    background-image: none;
    color: var(--color-primary);
  }
}

@media (max-width: 767px) {
  .c-btn {
    font-weight: 700;
    display: inline-block;
    border-radius: 8px;
    padding: 16px 29px;
    background: linear-gradient(to bottom, #FFA230 0%, #FF8C00 100%);
    color: #fff;
    font-size: 1.125rem;
    border: 1px solid transparent;
    box-shadow: 0 0 10px rgba(0, 40, 49, 0.1);
    line-height: 1.7;
    gap: 5px;
  }

  .c-btn:has(.c-icon) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .c-btn:has(.c-icon) .c-icon {
    background: #fff;
    width: 25px;
    height: 25px;
  }

  .c-btn--reverse {
    background: #fff;
    color: #FFA230;
    border: 1px solid currentColor;
  }

  .c-btn--reverse .c-icon {
    background: #fff;
  }

  .c-btn--contact {
    transition: background 0.3s ease;
    background: linear-gradient(to bottom, #20C9D8 0%, #00B6C7 100%);
  }

  .c-btn--primary {
    border: 1px solid currentColor;
    background-image: none;
    color: var(--color-primary);
  }
}
@media (hover: hover) {
  .c-btn:not(.c-btn--contact):hover {
    background: linear-gradient(180deg, #FFC277 0%, #FFA12E 100%);
  }
  .c-btn--contact:hover {
    background: linear-gradient(180deg, #8BDEE5 0%, #3FC8D4 100%);
  }
  .c-btn--reverse:hover {
    background: #FFF8F0!important;
  }
  .c-btn--primary:hover {
    background: #E9FAFC!important;
  }
}

/* ============================================
   Component - icon (c-)
   ============================================ */
.c-icon {
	width: 20px;
  height: 20px;
  display: inline-block;
}
.c-icon--arrow {
  background-color: var(--color-primary);
  -webkit-mask: url('../img/_common/icon/arrow.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/arrow.svg') no-repeat center / contain;
}
.c-icon--no-mark {
  -webkit-mask: url('../img/_common/icon/no-mark.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/no-mark.svg') no-repeat center / contain;
}
.c-icon--smart-phone {
  -webkit-mask: url('../img/_common/icon/smart-phone.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/smart-phone.svg') no-repeat center / contain;
}
.c-icon--guard {
  -webkit-mask: url('../img/_common/icon/guard.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/guard.svg') no-repeat center / contain;
}
.c-icon--search {
  -webkit-mask: url('../img/_common/icon/search.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/search.svg') no-repeat center / contain;
}
.c-icon--download {
  -webkit-mask: url('../img/_common/icon/download.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/download.svg') no-repeat center / contain;
}
.c-icon--close {
  -webkit-mask: url('../img/_common/icon/close.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/close.svg') no-repeat center / contain;
}
.c-icon--check {
  -webkit-mask: url('../img/_common/icon/check.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/check.svg') no-repeat center / contain;
}
.c-icon--window {
  -webkit-mask: url('../img/_common/icon/window.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/window.svg') no-repeat center / contain;
}
.c-icon--triangle {
  -webkit-mask: url('../img/_common/icon/triangle.svg') no-repeat center / contain;
  mask: url('../img/_common/icon/triangle.svg') no-repeat center / contain;
}

/* ============================================
	Layout - Footer (l-)
   ============================================ */

@media (min-width: 768px) {
	.l-footer {
		position: relative;
		background-color: var(--color-text);
	}

	.l-footer__bg img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.l-footer__wrapper {
		position: relative;
		max-width: 1200px;
		margin: 0 auto;
    padding: 80px 16px 80px;
		width: 100%;
	}

	.l-footer__intro {
    margin-bottom: 32px;
		text-align: center;
		line-height: 1.7;
	}

	.l-footer__intro-title {
    margin-bottom: 32px;
		color: #fff;
		font-size: 2.5rem;
		font-weight: 700;
		letter-spacing: 0.025em;
	}

	.l-footer__intro-description {
    margin-bottom: 40px;
		color: #fff;
		font-size: 1.125rem;
		font-weight: 500;
	}

	.l-footer__content {
		display: flex;
		justify-content: center;
    gap: 80px;
		flex-wrap: wrap;
	}

	.l-footer__content-item {
		flex: 0 1 400px;
    padding: 40px 32px;
		border-radius: 8px;
		background-color: #fff;
		box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.20);
		text-align: center;
	}

	.l-footer__content-head {
		display: flex;
		flex-direction: column;
	}

	.l-footer__icon {
    margin-bottom: 24px;
	}

	.l-footer__icon img {
		width: 68px;
		height: 68px;
		margin: 0 auto;
	}

	.l-footer__content-title {
    font-weight: 700;
    margin-bottom: 20px;
		font-size: 1.75rem;
	}

	.l-footer__content-text {
    font-weight: 500;
		font-size: 0.875rem;
    margin-bottom: 20px;
		line-height: 1.6;
	}

	.l-footer__button>a {
		width: 100%;
	}

	.l-footer__copyright {
		position: relative;
    padding-top: 56px;
    padding-bottom: 16px;
		color: #fff;
		background-color: #252525;
		font-size: 1rem;
		font-weight: 500;
		line-height: 1.6;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.l-footer {
		position: relative;
		background-color: var(--color-text);
	}

	.s-lp + .l-footer {
    padding-top: 40px;
	}

  .s-lp:has(.p-floating-btn) + .l-footer {
    padding-bottom: 123px;
  }

	.l-footer__bg img {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		height: auto;
		object-fit: contain;
	}

	.l-footer__wrapper {
		position: relative;
		max-width: 1200px;
		margin: 0 auto;
    padding: 0 16px 40px;
		width: 100%;
	}

	.l-footer__intro {
    margin-bottom: 32px;
		text-align: center;
		line-height: 1.7;
	}

	.l-footer__intro-title {
    margin-bottom: 24px;
		color: #fff;
		font-size: 1.5rem;
		font-weight: 700;
		letter-spacing: 0.025em;
	}

	.l-footer__intro-description {
		color: #fff;
		font-size: 1rem;
		font-weight: 500;
		text-align: left;
	}

	.l-footer__content {
		display: flex;
		justify-content: center;
		gap: 24px;
		flex-wrap: wrap;
	}

	.l-footer__content-item {
		flex: 1 1 100%;
    padding: 24px 16px;
		border-radius: 8px;
		background-color: #fff;
		box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.20);
		text-align: center;
	}

	.l-footer__content-head {
		display: flex;
		gap: 4px;
		flex-direction: row;
		align-items: center;
    margin-bottom: 8px;
	}

	.l-footer__icon {
		margin-bottom: 0;
	}

	.l-footer__icon img {
		width: 40px;
		height: 40px;
		margin: 0 auto;
	}

	.l-footer__content-title {
    font-weight: 700;
		margin-bottom: 0;
		font-size: 1.5rem;
	}

	.l-footer__content-text {
    font-weight: 500;
		font-size: 0.875rem;
    margin-bottom: 24px;
		line-height: 1.6;
		text-align: left;
	}

	.l-footer__button>a {
		width: 100%;
	}

	.l-footer__copyright {
		position: relative;
    padding-top: 44px;
    padding-bottom: 8px;
		color: #fff;
		background-color: #252525;
		font-size: .75rem;
		font-weight: 500;
		line-height: 1.6;
		text-align: center;
	}
}

/* ============================================
   Utility Classes (u-)
   ============================================ */

.u-text-center {
	text-align: center;
}
.u-text-gradation {
  background: linear-gradient(90deg, #FF96FF 0%, #C688FF 30%, #20C9D8 70%, #88FFBF 99.99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.u-font-inter {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

@media (min-width: 768px) {
  .u-pc-only {
    display: block;
  }

  .u-sp-only {
    display: none;
  }
}

@media (max-width: 767px) {
  .u-pc-only {
    display: none;
  }

  .u-sp-only {
    display: block;
  }
}

/* アニメーション専用 */
.u-text-gradation-animation span{
  display: inline-block;
  /* 1. 背景サイズを「文字数分」の横幅にする */
  background-image: linear-gradient(90deg, #FF96FF 0%, #C688FF 30%, #20C9D8 70%, #88FFBF 100%);
  background-size: calc(100% * var(--total)) 100%;
  /* 2. 自分の順番に合わせて、背景を左にズラす */
  background-position: calc(100% / (var(--total) - 1) * var(--char-index)) 0%;
  /* 3. 切り抜き設定 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  /* アニメーションさせても背景は「文字の位置」に固定される */
  transition: transform 0.3s;
}
.u-animation-wave-text span.is-animated {
  animation: wave-text 0.3s ease-in-out;
  animation-delay: calc(0.1s * var(--char-index));
}
@keyframes wave-text {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.5em);
  }
  100% {
    transform: translateY(0);
  }
}

/* ============================================
   fv
   ============================================ */
@media (min-width: 768px) {
  .p-fv {
    position: relative;
    overflow: hidden;
    padding-block: 44px 52px;
    padding-inline: 16px;
  }

  .p-fv__container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
  }

  .p-fv__right-content {
    max-width: 43%;
    margin-top: 2%;
    margin-right: -40px;
  }

  .p-fv__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .p-fv__tag {
    width: fit-content;
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 20px;
    line-height: 1.4;
    border: 1px solid currentColor;
    padding: 6px 16px;
    margin-bottom: 16px;
  }

  .p-fv__title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 40px;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .p-fv__title > strong {
    font-size: 4.75rem;
  }

  .p-fv__title strong:nth-of-type(2) {
    display: inline-block;
    margin-left: -16px;
  }

  .p-fv__title strong:nth-of-type(3) {
    display: inline-block;
    margin-left: -32px;
    margin-right: -50px;
  }

  .p-fv__title ruby > rt {
    font-size: 1rem;
    letter-spacing: -1.1em;
  }

  .p-fv__description {
    max-width: 649px;
    font-size: 1.125rem;
    color: #6B6B6B;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 40px;
  }

  .p-fv__cta {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .p-fv__cta .c-btn .c-icon {
    width: 25px;
    height: 25px;
  }

  .p-fv__points-wrapper {
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 8px 10px;
    margin-bottom: 40px;
  }

  .p-fv__points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 8px;
  }

  .p-fv__points > li {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #6B6B6B;
    padding-inline: 6px 7px;
    list-style: none;
  }

  .p-fv__points > li > .c-icon {
    width: 16px;
    height: 16px;
  }

  .p-fv__points > li > .c-icon--no-mark {
    background-color: #FF96FF;
  }

  .p-fv__points > li > .c-icon--smart-phone {
    background-color: var(--color-primary);
  }

  .p-fv__points > li > .c-icon--guard {
    background-color: var(--color-purple);
  }

  .p-fv__points > li > .c-icon--search {
    background-color: #81EEB3;
  }

  .p-fv__image {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .p-fv__right-content {
    display: none;
  }

  .p-fv__image {
    display: block;
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .p-fv {
    position: relative;
    overflow: hidden;
    padding-block: 30px 40px;
    padding-inline: 16px;
  }

  .p-fv__container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin-inline: auto;
  }

  .p-fv__right-content {
    display: none;
  }

  .p-fv__background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .p-fv__tag {
    width: fit-content;
    color: var(--color-primary);
    font-weight: 700;
    border-radius: 20px;
    line-height: 1.4;
    border: 1px solid currentColor;
    margin-bottom: 12px;
    margin-inline: auto;
    padding: 3px 12px;
    font-size: .75rem;
  }

  .p-fv__title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-align: center;
    white-space: inherit;
    margin-left: -16px;
  }

  .p-fv__title > strong {
    font-size: 2.75rem;
  }

  .p-fv__title strong:nth-of-type(2) {
    display: inline-block;
    margin-left: -16px;
  }

  .p-fv__title strong:nth-of-type(3) {
    display: inline-block;
    margin-left: -24px;
    margin-right: -48px;
    line-height: 1;
    vertical-align: sub;
  }

  .p-fv__title ruby > rt {
    margin-bottom: -10px;
    font-size: .5rem;
    letter-spacing: -1.3em;
  }

  .p-fv__description {
    font-size: 0.875rem;
    color: #6B6B6B;
    line-height: 1.7;
    font-weight: 500;
    margin-top: -8px;
    margin-bottom: 0;
    padding-inline: 4px;
  }

  .p-fv__cta {
    display: none;
  }

  .p-fv__cta .c-btn .c-icon {
    width: 25px;
    height: 25px;
  }

  .p-fv__points-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    padding: 8px 10px;
    margin-bottom: 8px;
  }

  .p-fv__points {
    display: flex;
    flex-wrap: wrap;
    max-width: 290px;
    gap: 8px 0;
  }

  .p-fv__points > li {
    display: flex;
    align-items: center;
    gap: 3px;
    width: calc(100% / 2 - 4px);
    padding-inline: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6B6B6B;
    list-style: none;
  }

  .p-fv__points > li > .c-icon {
    width: 16px;
    height: 16px;
  }

  .p-fv__points > li > .c-icon--no-mark {
    background-color: #FF96FF;
  }

  .p-fv__points > li > .c-icon--smart-phone {
    background-color: var(--color-primary);
  }

  .p-fv__points > li > .c-icon--guard {
    background-color: var(--color-purple);
  }

  .p-fv__points > li > .c-icon--search {
    background-color: #81EEB3;
  }

  .p-fv__image {
    display: block;
    max-width: 500px;
    margin-inline: auto;
  }
}
/* ============================================
   p-achievement
   ============================================ */
@media (min-width: 768px) {
  .p-achievement {
    padding-block: 32px;
  }

  .p-achievement__title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-text);
  }

  .p-achievement__title::before,
  .p-achievement__title::after {
    content: '';
    flex: 1 1 120px;
    max-width: 32px;
    height: 2px;
    background-color: currentColor;
  }

  .p-achievement__items {
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 56px;
    margin-bottom: 16px;
  }

  .p-achievement__item--first {
    max-width: 330px;
  }

  .p-achievement__item--second {
    max-width: 337px;
  }

  .p-achievement__caption {
    font-size: .75rem;
    line-height: 1.6;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .p-achievement {
    padding-block: 40px 44px;
  }

  .p-achievement__title {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-inline: auto;
  }

  .p-achievement__title::before,
  .p-achievement__title::after {
    content: '';
    flex: 1 1 120px;
    max-width: 32px;
    height: 2px;
    background-color: currentColor;
  }

  .p-achievement__items {
    justify-content: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 16px;
    margin-inline: auto;
  }

  .p-achievement__item--first,
  .p-achievement__item--second {
    max-width: 300px;
  }

  .p-achievement__caption {
    max-width: 308px;
    margin-inline: auto;
    font-size: .625rem;
    line-height: 1.6;
    text-align: left;
  }
}

/* ============================================
   p-problem
   ============================================ */
@media (min-width: 768px) {
  .p-problem {
    color: var(--color-text);
    padding-block: 80px 40px;
    background: #FAFAFA;
  }

  .p-problem__heading-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-inline: auto;
    max-width: 765px;
    margin-bottom: 20px;
  }

  .p-problem__description {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text);
    font-weight: 500;
  }

  .p-problem__list {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .p-problem__list-group {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .p-problem__list-group--left,
  .p-problem__list-group--right {
    flex: 1;
    max-width: 453px;
  }

  .p-problem__list-group--left {
    margin-right: -146px;
  }

  .p-problem__list-group--center {
    flex-shrink: 0;
    max-width: 505px;
  }

  .p-problem__list-group--right {
    margin-left: -146px;
  }

  .p-problem__card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .p-problem__card .c-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-purple);
  }

  .p-problem__card-title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.375rem;
    font-weight: 700;
  }

  .p-problem__card-text {
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .p-problem {
    color: var(--color-text);
    padding-block: 40px;
    background: #FAFAFA;
    overflow: hidden;
  }

  .p-problem__heading-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-inline: auto;
    max-width: 765px;
    margin-bottom: 24px;
  }

  .p-problem__heading-title {
    max-width: 480px;
    margin-inline: auto;
  }

  .p-problem__description {
    text-align: left;
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
  }

  .p-problem__list {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .p-problem__list-group {
    display: contents;
  }

  .p-problem__list-group--left,
  .p-problem__list-group--right {
    flex: 1;
    max-width: 453px;
  }

  .p-problem__list-group--left {
    margin-right: -146px;
  }

  .p-problem__list-group--center {
    display: none;
    flex-shrink: 0;
    max-width: 505px;
  }

  .p-problem__list-group--right {
    margin-left: -146px;
  }

  .p-problem__card {
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  .p-problem__card .c-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--color-purple);
  }

  .p-problem__card-title {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
  }

  .p-problem__card-title .c-icon {
    width: 32px;
    height: 32px;
  }

  .p-problem__card-text {
    font-size: .875rem;
    line-height: 1.5;
  }

  .p-problem__card--first {
    order: 1;
  }

  .p-problem__card--second {
    order: 3;
  }

  .p-problem__card--third {
    order: 2;
  }

  .p-problem__card--fourth {
    order: 4;
  }
}

/* ============================================
   p-divider
   ============================================ */
@media (min-width: 768px) {
  .p-divider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4FCFD;
  }

  .p-divider__inner {
    padding-block: 30px 80px;
    width: 100%;
    text-align: center;
    /* グラデーション背景 */
    background: linear-gradient(117.96deg, rgba(255, 255, 255, 0.4) 32.66%, rgba(96, 226, 255, 0.4) 100%), linear-gradient(267.76deg, rgba(255, 255, 255, 0.2) 48.11%, rgba(129, 238, 179, 0.2) 100.01%);
    /* V字の切り抜き */
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% 66%,
      64.9% 66%,
      50% 100%,
      34.9% 66%,
      0% 66%
    );
  }

  .p-divider__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .p-divider__title-unit {
    line-height: 1;
    font-size: 2.5rem;
    letter-spacing: 0.06em;
  }

  .p-divider__title-unit--gray {
    color: #6B6B6B;
    padding-right: 8px;
  }

  .p-divider__title-unit--accent {
    color: var(--color-primary);
    padding-left: 10px;
    padding-right: 4px;
  }
}

@media (max-width: 767px) {
  .p-divider {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F4FCFD;
  }

  .p-divider__inner {
    padding-block: 16px 43px;
    width: 100%;
    text-align: center;
    /* グラデーション背景 */
    background: linear-gradient(117.96deg, rgba(255, 255, 255, 0.4) 32.66%, rgba(96, 226, 255, 0.4) 100%), linear-gradient(267.76deg, rgba(255, 255, 255, 0.2) 48.11%, rgba(129, 238, 179, 0.2) 100.01%);
    /* V字の切り抜き */
    clip-path: polygon(
      0% 0%,
      100% 0%,
      100% 80.76%,
      65.64% 80.76%,
      50% 100%,
      34.3% 80.76%,
      0% 80.76%
    );
  }

  .p-divider__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .p-divider__title-unit {
    line-height: 1;
    font-size: 2rem;
    letter-spacing: 0.06em;
  }

  .p-divider__title-unit--gray {
    color: #6B6B6B;
    padding-right: 4px;
  }

  .p-divider__title-unit--accent {
    color: var(--color-primary);
    padding-left: 0;
    padding-right: 2px;
  }
}

/* ============================================
   p-what-is-rcs
   ============================================ */
@media (min-width: 768px) {
  .p-what-is-rcs {
    padding-block: 80px 40px;
  }

  .p-what-is-rcs__content {
    display: flex;
    align-items: flex-end;
    gap: 118px;
  }

  .p-what-is-rcs__content-left {
    width: 88%;
  }

  .p-what-is-rcs__content-right {
    margin-bottom: -8px;
  }

  .p-what-is-rcs__heading-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .p-what-is-rcs__message {
    font-weight: 700;
    width: 100%;
    font-size: 2.5rem;
    line-height: 1.6;
  }

  .p-what-is-rcs__text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .p-what-is-rcs__message strong {
    font-size: 3.5rem;
    color: var(--color-primary);
  }

  .p-what-is-rcs__feature {
    width: 100%;
    border-radius: 8px;
    background: #F4FCFD;
    padding: 32px 24px;
  }

  .p-what-is-rcs__feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .p-what-is-rcs__feature-term {
    padding-left: 1.2em;
    line-height: 1.7;
    color: var(--color-text);
    font-size: 1.25rem;
    background: url('../../assets/img/_common/icon/arrow.svg') no-repeat left center / 20px 20px;
    margin-bottom: 4px;
  }

  .p-what-is-rcs__feature-desc{
    padding-left: 2em;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.7;
  }
}
@media (min-width: 961px) and (max-width: 1200px) {
  .p-what-is-rcs__content {
    align-items: flex-start;
    gap: 40px;
  }
  .p-what-is-rcs__content-right {
    width: 100%;
    margin-top: 34px;
  }
}
@media (min-width: 768px) and (max-width: 960px) {
  .p-what-is-rcs__content {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .p-what-is-rcs__content-left,
  .p-what-is-rcs__content-right {
    display: contents;
  }
}

@media (max-width: 767px) {
  .p-what-is-rcs {
    padding-block: 40px;
  }

  .p-what-is-rcs__heading-group {
    width: 100%;
  }

  .p-what-is-rcs__content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }

  .p-what-is-rcs__content-left {
    width: 88%;
    display: contents;
  }

  .p-what-is-rcs__content-right {
    display: contents;
  }

  .p-what-is-rcs__content-right > img {
    order: 3;
    margin-bottom: 16px;
  }

  .p-what-is-rcs__message {
    font-weight: 700;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 24px;
    order: 1;
    text-align: center;
  }

  .p-what-is-rcs__text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    margin-bottom: 24px;
    order: 2;
  }

  .p-what-is-rcs__message strong {
    font-size: 2.25rem;
    color: var(--color-primary);
  }

  .p-what-is-rcs__feature {
    width: 100%;
    border-radius: 8px;
    background: #F4FCFD;
    padding: 16px;
    order: 4;
  }

  .p-what-is-rcs__feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .p-what-is-rcs__feature-term {
    padding-left: 24px;
    line-height: 1.7;
    color: var(--color-text);
    font-size: 1.06rem;
    background: url('../../assets/img/_common/icon/arrow.svg') no-repeat left center / 20px 20px;
    margin-bottom: 4px;
  }

  .p-what-is-rcs__feature-desc{
    padding-left: 2em;
    font-size: 0.875rem;
    color: var(--color-text);
    line-height: 1.7;
  }
}

/* ============================================
   sms x rcs
   ============================================ */
@media (min-width: 768px) {
  .p-sms-rcs {
    padding-top: 60px;
    background: #F4FCFD;
  }

  .p-sms-rcs__heading-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-sms-rcs__title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
  }

  .p-sms-rcs__text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 40px;
  }

  .p-sms-rcs__image {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    max-width: 1440px;
  }
}

@media (max-width: 767px) {
  .p-sms-rcs {
    padding-top: 20px;
    background: #F4FCFD;
  }

  .p-sms-rcs__heading-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 24px;
    gap: 8px;
  }

  .p-sms-rcs__title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
  }

  .p-sms-rcs__text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    margin-bottom: 24px;
  }

  .p-sms-rcs__image {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    max-width: 1440px;
  }
}

@media (min-width: 1441px) {
  .p-sms-rcs__image {
    margin-left: -120px;
    margin-right: -120px;
    width: calc(100% + 240px);
  }
}

/* ============================================
   SMS 導入実績
   ============================================ */
@media (min-width: 768px) {
  .p-sms-achievement {
    padding-block: 40px;
    background: #FAFAFA;
  }

  .p-sms-achievement__title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
  }

  .p-sms-achievement__text {
    font-size: 1.125rem;
    margin-bottom: 60px;
    text-align: center;
  }

  .p-sms-achievement__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 40px;
  }

  .p-sms-achievement__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    position: relative;
    padding: 50px 20px 40px;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    color: var(--color-text);
    transition: opacity .3s ease;
    border-radius: 8px;
  }

  .p-sms-achievement__card-tag {
    position: absolute;
    display: flex;
    align-items: center;
    left: 10px;
    top: 0;
    translate: 0 -50%;
    border-radius: 8px;
    background: #0E8BD9;
    color: #fff;
    line-height: 1.7;
    font-weight: 700;
    padding: 5px 10px;
  }

  .p-sms-achievement__card-tag .c-icon {
    width: 30px;
    height: 30px;
    background: #fff;
  }

  .p-sms-achievement__card-logo {
    max-width: 252px;
    width: 100%;
    margin-bottom: 28px;
  }

  .p-sms-achievement__card-title {
    text-align: center;
    margin-bottom: 2px;
    line-height: 1.7;
    font-weight: 700;
  }

  .p-sms-achievement__card-text {
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
    font-size: 0.875rem;
  }

  .p-sms-achievement__link {
    display: flex;
    justify-content: flex-end;
  }

  .p-sms-achievement__link > a {
    padding-inline: 8px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0E8BD9;
    font-weight: 700;
    transition: opacity .3s ease;
  }

  .p-sms-achievement__link > a > .c-icon {
    width: 19px;
    height: 19px;
    background: #0E8BD9;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-sms-achievement__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .p-sms-achievement {
    padding-block: 40px;
    background: #FAFAFA;
  }

  .p-sms-achievement__title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
  }

  .p-sms-achievement__text {
    text-align: left;
    font-size: 0.875rem;
    margin-bottom: 64px;
  }

  .p-sms-achievement__cards {
    display: grid;
    max-width: 600px;
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .p-sms-achievement__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    position: relative;
    padding: 40px 16px 30px;
    box-shadow: 0 0 10px rgba(51, 51, 51, 0.1);
    color: var(--color-text);
    transition: opacity .3s ease;
    border-radius: 8px;
  }

  .p-sms-achievement__card-tag {
    position: absolute;
    display: flex;
    align-items: center;
    max-width: 340px;
    width: calc(100% - 20px);
    left: 50%;
    top: 0;
    translate: -50% -50%;
    justify-content: center;
    border-radius: 8px;
    background: #0E8BD9;
    color: #fff;
    line-height: 1.7;
    font-weight: 700;
    padding: 5px 10px;
  }

  .p-sms-achievement__card-tag .c-icon {
    width: 30px;
    height: 30px;
    background: #fff;
  }

  .p-sms-achievement__card-logo {
    max-width: 252px;
    width: 100%;
    margin-bottom: 28px;
  }

  .p-sms-achievement__card-title {
    text-align: center;
    margin-bottom: 2px;
    line-height: 1.7;
    font-weight: 700;
  }

  .p-sms-achievement__card-text {
    text-align: center;
    line-height: 1.7;
    font-weight: 500;
    font-size: 0.875rem;
  }

  .p-sms-achievement__link {
    display: flex;
    justify-content: flex-end;
  }

  .p-sms-achievement__link > a {
    padding-inline: 8px;
    line-height: 1.7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
    color: #0E8BD9;
    font-weight: 700;
    transition: opacity .3s ease;
  }

  .p-sms-achievement__link > a > .c-icon {
    width: 19px;
    height: 19px;
    background: #0E8BD9;
  }
}

@media (hover:hover) {
  .p-sms-achievement__card:hover {
    opacity: .7;
  }
}

@media (hover: hover) {
  .p-sms-achievement__link > a:hover {
    opacity: .7;
  }
}
/* ============================================
   CTA First
   ============================================ */
@media (min-width: 768px) {
  .p-cta-first {
    position: relative;
    padding-block: 40px 60px;
  }

  .p-cta-first__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .p-cta-first__title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .p-cta-first__title > strong {
    font-size: 2.5rem;
  }

  .p-cta-first__text {
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
    color: #fff;
    text-align: center;
  }

  .p-cta-first__link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .p-cta-first {
    position: relative;
    padding-block: 40px 60px;
  }

  .p-cta-first__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .p-cta-first__title {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .p-cta-first__title > strong {
    font-size: 1.875rem;
  }

  .p-cta-first__text {
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
    color: #fff;
    text-align: center;
    font-size: 0.875rem;
  }

  .p-cta-first__link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .p-cta-first__link .c-btn{
    white-space: nowrap;
  }
}

@media (max-width: 500px) {
  .p-cta-first__text {
    text-align: left;
  }
}

/* ============================================
   Use Cases
   ============================================ */
@media (min-width: 768px) {
  .p-use-cases {
    padding-block: 80px;
  }

  .p-use-cases__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-use-cases__title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.7;
  }

  .p-use-cases__text {
    font-size: 1.125rem;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
  }

  .p-use-cases__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .p-use-cases__card {
    border-radius: 8px;
    background: #FFFFFF;
    padding: 20px 15px 27px;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
  }

  .p-use-cases__card--gradation {
    border: none;
    background: linear-gradient(36.19deg, rgba(255, 150, 255, 0.8) 0%, rgba(198, 136, 255, 0.8) 30%, rgba(32, 201, 216, 0.8) 70%, rgba(136, 255, 191, 0.8) 99.99%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    color: #fff;
  }

  .p-use-cases__card-icon {
    width: 80px;
    height: 80px;
  }

  .p-use-cases__card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 14px;
  }

  .p-use-cases__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: center;
  }

  .p-use-cases__card-text {
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .p-use-cases__card--gradation .p-use-cases__card-text {
    margin-bottom: 24px;
  }

  .p-use-cases__card-info {
    display: flex;
    flex-direction: column;
  }

  .p-use-cases__card-caption {
    font-size: .75rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 4px;
  }

  .p-use-cases__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .p-use-cases__card-tags > li {
    background: #eee;
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.7;
    border-radius: 25px;
    padding: 2px 16px;
  }

  .p-use-cases__card-link {
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 6px 20px;
    background: #fff;
    gap: 6px;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: color .3s ease;
  }

  .p-use-cases__card-link .c-icon {
    width: 14px;
    height: 14px;
    background: var(--color-primary);
    transition: background .3s ease;
    margin-top: 3px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-use-cases__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .p-use-cases {
    padding-block: 40px;
  }

  .p-use-cases__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-use-cases__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.7;
  }

  .p-use-cases__text {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
  }

  .p-use-cases__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .p-use-cases__card {
    border-radius: 8px;
    background: #FFFFFF;
    padding: 15px;
    border: 2px solid var(--color-primary);
    color: var(--color-text);
  }

  .p-use-cases__card--gradation {
    border: none;
    background: linear-gradient(36.19deg, rgba(255, 150, 255, 0.8) 0%, rgba(198, 136, 255, 0.8) 30%, rgba(32, 201, 216, 0.8) 70%, rgba(136, 255, 191, 0.8) 99.99%), linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    color: #fff;
  }

  .p-use-cases__card-icon {
    width: 40px;
    height: 40px;
  }

  .p-use-cases__card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
  }

  .p-use-cases__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.7;
    text-align: left;
  }

  .p-use-cases__card-text {
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.875rem;
    text-align: left;
  }

  .p-use-cases__card--gradation .p-use-cases__card-text {
    margin-bottom: 22px;
  }

  .p-use-cases__card-info {
    display: flex;
    flex-direction: column;
  }

  .p-use-cases__card-caption {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.7;
    margin-bottom: 4px;
  }

  .p-use-cases__card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .p-use-cases__card-tags > li {
    background: #eee;
    color: var(--color-text);
    font-weight: 700;
    line-height: 1.7;
    border-radius: 25px;
    padding: 2px 16px;
    font-size: 0.875rem;
  }

  .p-use-cases__card-link {
    margin-inline: auto;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    padding: 4px 20px;
    background: #fff;
    gap: 6px;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  .p-use-cases__card-link .c-icon {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
  }
}

@media (max-width: 640px) {
  .p-use-cases__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .p-use-cases__text {
    text-align: left;
  }
}

@media (hover: hover) {
  .p-use-cases__card-link:hover {
    color: var(--color-purple);
  }
  .p-use-cases__card-link:hover .c-icon {
    background: var(--color-purple);
  }
}
/* ============================================
   Features
   ============================================ */
@media (min-width: 768px) {
  .p-features {
    background: #F4FCFD;
    padding-block: 80px;
  }

  .p-features__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 1.25rem;
    line-height: 1.7;
    gap: 8px;
  }

  .p-features__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 24px;
  }

  .p-features__text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 40px;
  }

  .p-features__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 60px;
  }

  .p-features__card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 118, 129, .1);
  }

  .p-features__card-image {
    aspect-ratio: 360 / 320;
    background: #F5F5F5;
  }

  .p-features__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p-features__card-content {
    flex: 1;
    background: #fff;
    padding: 20px;
  }

  .p-features__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
  }

  .p-features__card-text {
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 500;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-features__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
}

@media (max-width: 767px) {
  .p-features {
    background: #F4FCFD;
    padding-block: 40px;
  }

  .p-features__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: 1rem;
    line-height: 1.7;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-features__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.7;
    text-align: center;
  }

  .p-features__text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 24px;
    text-align: center;
  }

  .p-features__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }

  .p-features__card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 118, 129, .1);
  }

  .p-features__card-image {
    aspect-ratio: 360 / 320;
    background: #F5F5F5;
  }

  .p-features__card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .p-features__card-content {
    background: #fff;
    padding: 20px;
  }

  .p-features__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
  }

  .p-features__card-text {
    line-height: 1.7;
    color: var(--color-text);
    font-weight: 500;
  }
}

@media (max-width: 600px) {
  .p-features__cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 500px) {
  .p-features__text {
    text-align: left;
  }
}

/* ============================================
   CTA Second
   ============================================ */
@media (min-width: 768px) {
  .p-cta-second {
    position: relative;
    padding-block: 40px 60px;
  }

  .p-cta-second__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .p-cta-second__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-cta-second__title {
    letter-spacing: 0.01em;
    text-align: center;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .p-cta-second__title > strong {
    font-size: 2.5rem;
  }

  .p-cta-second__text {
    position: relative;
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
  }

  .p-cta-second__text::before,
  .p-cta-second__text::after {
    content: '';
    width: 2px;
    height: 25px;
    background: #fff;
    position: absolute;
  }

  .p-cta-second__text::before {
    left: -20px;
    top: 50%;
    translate: 0 -28%;
    rotate: -40deg;
  }

  .p-cta-second__text::after {
    right: -20px;
    top: 50%;
    translate: 0 -28%;
    rotate: 40deg;
  }

  .p-cta-second__text > strong {
    font-size: 1.75rem;
  }

  .p-cta-second__link {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .p-cta-second {
    position: relative;
    padding-block: 40px;
  }

  .p-cta-second__bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  .p-cta-second__body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-cta-second__title {
    letter-spacing: 0.01em;
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .p-cta-second__title > strong {
    font-size: 1.875rem;
  }

  .p-cta-second__text {
    position: relative;
    font-size: 1rem;
    line-height: 1.55;
    font-weight: 700;
    color: #fff;
    text-align: center;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
  }

  .p-cta-second__text::before,
  .p-cta-second__text::after {
    content: '';
    width: 2px;
    height: 25px;
    background: #fff;
    position: absolute;
  }

  .p-cta-second__text::before {
    left: -12px;
    top: 60%;
    translate: 0 0;
    rotate: -40deg;
  }

  .p-cta-second__text::after {
    right: -12px;
    top: 60%;
    translate: 0 0;
    rotate: 40deg;
  }

  .p-cta-second__text > strong {
    font-size: 1.5rem;
  }

  .p-cta-second__link {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p-cta-second__link > .c-btn {
    white-space: nowrap;
  }
}

/* ============================================
   Preview
   ============================================ */
@media (min-width: 768px) {
  .p-preview {
    padding-block: 80px;
    background: #FAFAFA;
  }

  .p-preview__title {
    font-size: 2rem;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }

  .p-preview__text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 40px;
  }

  .p-preview__image {
    padding-inline: 20px;
  }

  .p-preview__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .p-preview__image-title {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 700;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .p-preview {
    padding-block: 40px;
    background: #FAFAFA;
  }

  .p-preview__title {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
  }

  .p-preview__text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 24px;
  }

  .p-preview__image {
    padding-inline: 0;
  }

  .p-preview__images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-preview__image-title {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 700;
    text-align: center;
    margin-bottom: 5px;
  }
}

@media (max-width: 500px) {
  .p-preview__text {
    text-align: left;
  }
}

/* ============================================
   Flow
   ============================================ */
@media (min-width: 768px) {
  .p-flow {
    padding-block: 80px;
  }

  .p-flow__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-flow__title {
    font-size: 2.5rem;
    line-height: 1.7;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
  }

  .p-flow__text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 40px;
  }

  .p-flow__contents {
    display: flex;
    align-items: center;
    overflow: scroll;
  }

  .p-flow__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 0 16px 54px;
    width: 230px;
    flex-shrink: 0;
  }

  .p-flow__content::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -35px;
    translate: 0 -50%;
    width: 36px;
    height: 100%;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: inherit;
  }

  .p-flow__content--first {
    background: #E6FCF0;
    padding: 16px 0 16px 30px;
    width: 220px;
  }

  .p-flow__content--second {
    background: #CDF8E1;
    z-index: -1;
  }

  .p-flow__content--third {
    background: #B3F5D1;
    z-index: -2;
  }

  .p-flow__content--fourth {
    background: #9AF1C2;
    z-index: -3;
  }

  .p-flow__content--fifth {
    background: #81EEB3;
    z-index: -4;
  }

  .p-flow__content > div:first-child {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
  }

  .p-flow__content--first > div:first-child {
    color: #A0E6C0;
  }

  .p-flow__content--second > div:first-child {
    color: #98DAB6;
  }

  .p-flow__content--third > div:first-child {
    color: #67C893;
  }

  .p-flow__content--fourth > div:first-child {
    color: #5BAD80;
  }

  .p-flow__content--fifth > div:first-child {
    color: #4DA876;
  }

  .p-flow__content > h3 {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .p-flow__content > p {
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 500;
    align-self: flex-start;
  }
}

@media (max-width: 767px) {
  .p-flow {
    padding-block: 40px 80px;
  }

  .p-flow__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-flow__title {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
  }

  .p-flow__text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    color: var(--color-text);
    text-align: left;
    margin-bottom: 24px;
  }

  .p-flow__contents {
    display: flex;
    align-items: center;
    margin-inline: auto;
    max-width: 500px;
    overflow: visible;
    flex-direction: column;
  }

  .p-flow__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 60px 16px 12px 16px;
    flex-shrink: 0;
  }

  .p-flow__content::after {
    content: '';
    position: absolute;
    top: auto;
    bottom: -39px;
    right: auto;
    left: 50%;
    translate: -50% 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    height: 40px;
    width: 100%;
    background: inherit;
  }

  .p-flow__content--first {
    background: #E6FCF0;
    width: 100%;
    padding: 15px 16px 0 16px;
  }

  .p-flow__content--second {
    background: #CDF8E1;
    z-index: -1;
  }

  .p-flow__content--third {
    background: #B3F5D1;
    z-index: -2;
  }

  .p-flow__content--fourth {
    background: #9AF1C2;
    z-index: -3;
  }

  .p-flow__content--fifth {
    background: #81EEB3;
    z-index: -4;
  }

  .p-flow__content > div:first-child {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
  }

  .p-flow__content--first > div:first-child {
    color: #A0E6C0;
  }

  .p-flow__content--second > div:first-child {
    color: #98DAB6;
  }

  .p-flow__content--third > div:first-child {
    color: #67C893;
  }

  .p-flow__content--fourth > div:first-child {
    color: #5BAD80;
  }

  .p-flow__content--fifth > div:first-child {
    color: #4DA876;
  }

  .p-flow__content > h3 {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .p-flow__content > p {
    font-size: 0.875rem;
    line-height: 1.7;
    font-weight: 500;
    align-self: center;
    text-align: center;
  }
}
/* Flow アニメーション用 */
.p-flow__content.is-flow-animate-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.p-flow__content.is-flow-animate-ready > div:first-child {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.p-flow__content.is-flow-visible {
  opacity: 1;
  transform: translateY(0);
}

.p-flow__content.is-flow-visible > div:first-child {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

/* ============================================
  FAQ
  ============================================ */
@media (min-width: 768px) {
  .p-faq {
    padding-block: 80px;
    background: #F4FCFD;
  }

  .p-faq__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-faq__title {
    font-size: 2.5rem;
    line-height: 1.7;
    font-weight: 700;
    text-align: center;
  }

  .p-faq__text {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
  }

  .p-faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
  }

  .p-faq__item {
    border-radius: 8px;
    background: #fff;
  }

  .p-faq__question {
    padding: 0;
    margin: 0;
  }

  .p-faq__summary {
    position: relative;
    display: block;
    width: 100%;
    padding: 20px 80px 20px 40px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
  }

  .p-faq__item.is-open .p-faq__summary {
    padding: 20px 80px 16px 40px;
  }

  .p-faq__item > dt > .p-faq__summary > div {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .p-faq__summary::before,
  .p-faq__summary::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 60px;
    width: 18px;
    height: 2px;
    background: #6B6B6B;
    translate: 0 -50%;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .p-faq__summary::after {
    transform: rotate(90deg);
  }

  .p-faq__item.is-open .p-faq__summary::after {
    transform: rotate(0deg);
    opacity: 0;
  }

  .p-faq__answer {
    position: relative;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .p-faq__item.is-open .p-faq__answer::before {
    content: '';
    position: absolute;
    width: calc(100% - 80px);
    top: 0;
    left: 50%;
    translate: -50% 0;
    height: 1px;
    background: #D9D9D9;
  }

  .p-faq__answer > div {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 1.7;
    gap: 16px;
    padding: 16px 40px 20px;
    color: #6B6B6B;
  }

  .p-faq__item > dt > .p-faq__summary > div > span {
    line-height: 1.7;
    letter-spacing: 0.01em;
  }

  .p-faq__answer > div > span {
    letter-spacing: 0.01em;
  }

  .p-faq__item > dt > .p-faq__summary > div > div {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.7;
    letter-spacing: 0.05em;
    color: #C688FF;
  }

  .p-faq__answer > div > div {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #20C9D8;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 767px) {
  .p-faq {
    padding-block: 40px;
    background: #F4FCFD;
  }

  .p-faq__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .p-faq__title {
    font-size: 1.5rem;
    line-height: 1.7;
    font-weight: 700;
    text-align: center;
  }

  .p-faq__text {
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
  }

  .p-faq__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
  }

  .p-faq__item {
    border-radius: 8px;
    background: #fff;
  }

  .p-faq__question {
    padding: 0;
    margin: 0;
  }

  .p-faq__summary {
    position: relative;
    display: block;
    width: 100%;
    font-size: 1.5rem;
    padding: 10px 40px 10px 16px;
    background: none;
    border: none;
    text-align: left;
    font-weight: 700;
    color: var(--color-text);
    cursor: pointer;
  }

  .p-faq__item.is-open .p-faq__summary {
    padding: 10px 40px 10px 16px;
  }

  .p-faq__item > dt > .p-faq__summary > div {
    display: flex;
    gap: 8px;
    align-items: flex-start;
  }

  .p-faq__summary::before,
  .p-faq__summary::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 18px;
    height: 2px;
    background: #6B6B6B;
    translate: 0 -50%;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .p-faq__summary::after {
    transform: rotate(90deg);
  }

  .p-faq__item.is-open .p-faq__summary::after {
    transform: rotate(0deg);
    opacity: 0;
  }

  .p-faq__answer {
    position: relative;
    margin: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
  }

  .p-faq__item.is-open .p-faq__answer::before {
    content: '';
    position: absolute;
    width: calc(100% - 32px);
    top: 0;
    left: 50%;
    translate: -50% 0;
    height: 1px;
    background: #D9D9D9;
  }

  .p-faq__answer > div {
    position: relative;
    min-height: 54px;
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    line-height: 1.7;
    padding: 10px 16px 16px 16px;
    gap: 8px;
    color: #6B6B6B;
  }

  .p-faq__answer > div > span {
    margin-top: 5px;
    letter-spacing: 0.01em;
  }

  .p-faq__item > dt > .p-faq__summary > div > span {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin-top: 6px;
  }

  .p-faq__item > dt > .p-faq__summary > div > div,
  .p-faq__answer > div > div {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }

  .p-faq__item > dt > .p-faq__summary > div > div {
    color: #C688FF;
  }

  .p-faq__answer > div > div {
    color: #20C9D8;
  }
}
@media (max-width: 500px) {
  .p-faq__text {
    text-align: left;
  }
}

/* ============================================
  固定ページ
  ============================================ */
@media (min-width: 768px) {
  .s-form {
    background: #FAFAFA;
    padding-bottom: 48px;
  }

  .s-form__inner {
    max-width: calc(1200px + 32px);
    margin-inline: auto;
    padding: 80px 16px 0;
  }

  .s-form__title {
    margin-bottom: 24px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.7;
  }

  .s-form__description {
    margin-bottom: 40px;
    text-align: center;
    font-size: 0.875em;
    font-weight: 500;
    line-height: 1.7;
  }

  .s-form__description > p + p {
    margin-top: 16px;
  }

  .s-form__form iframe {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .s-form {
    background: #FAFAFA;
    padding-bottom: 40px;
  }

  .s-form__inner {
    max-width: calc(1200px + 32px);
    margin-inline: auto;
    padding: 40px 16px 0;
  }

  .s-form__title {
    margin-bottom: 24px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.7;
  }

  .s-form__description {
    margin-bottom: 40px;
    text-align: left;
    font-size: 0.875em;
    font-weight: 500;
    line-height: 1.7;
  }

  .s-form__description > p + p {
    margin-top: 0;
  }

  .s-form__form iframe {
    max-width: 100%;
  }
}

/* ============================================
  フローティングボタン
  ============================================ */
@media (min-width: 481px) {
  .p-floating-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .p-floating-btn__text {
    display: none;
  }
}

@media (max-width: 480px) {
  .p-floating-btn {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #fff;
    padding: 8px 14px 16px;
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .p-floating-btn .c-btn {
    white-space: nowrap;
  }

  .p-floating-btn__text {
    font-size: 0.875rem;
    width: fit-content;
    text-align: center;
    position: relative;
    display: inline-block;
    font-weight: 700;
    line-height: 1.7;
    color: var(--color-text);
    letter-spacing: 0.01em;
  }

  .p-floating-btn__text::before,
  .p-floating-btn__text::after {
    content: '';
    width: 2px;
    height: 16px;
    background: currentColor;
    position: absolute;
  }

  .p-floating-btn__text::before {
    left: -12px;
    top: 50%;
    translate: 0 -28%;
    rotate: -40deg;
  }

  .p-floating-btn__text::after {
    right: -12px;
    top: 50%;
    translate: 0 -28%;
    rotate: 40deg;
  }

  .p-floating-btn__text span {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-orange);
  }

  .p-floating-btn__text strong {
    font-size: 1.25rem;
  }
}

.p-floating-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.p-floating-btn.is-hidden {
  opacity: 0;
  pointer-events: none;
}
