/* ===============================================================
IDÉE カラーテーマ
================================================================ */
:root {
  --color-cyan: #3CBABE;
  --color-magenta: #E5004E;
  --color-dark: #231815;
}

/* ===============================================================
IDÉE カスタムスタイル
================================================================ */
/* ヘッダー */
.header-nav__list-item a:hover { color: var(--color-magenta); }

/* Features */
.features__content-number { color: var(--color-dark); }
.features__content-title { color: var(--color-magenta); }

/* Voice */
.voice__content-name { color: var(--color-cyan); }

/* Plan */
.plan__content-price-number { color: var(--color-magenta); }
.plan__content:nth-child(2) .plan__content-price-number { color: var(--color-magenta); }
.plan__content-list-item--red { color: var(--color-magenta); }

/* Button - 144行目に統合 */

/* Flow */
.flow__step-number { background-color: var(--color-dark); }

/* MV */
.mv__text { color: var(--color-dark); text-shadow: none; }

/* リンク - 76行目に統合 */

/* ===============================================================
共通スタイル
================================================================ */
html {
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-dark);
}

main {
  display: block;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  outline: 0;
}

a {
  color: var(--color-dark);
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

iframe {
  width: 100%;
}

address {
  font-style: normal;
}

/* レスポンシブ表示切り替え */
.sp-only {
  display: block;
}

.pc-only {
  display: none;
}

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

/* コンテナ */
.container {
  display: flex;
}

/* ボタン01 */
.button01 {
  width: 100%;
  height: 48px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  letter-spacing: 0.025em;
  cursor: pointer;
  background-color: rgba(255, 244, 98, 1);
  color: var(--color-dark);
  border-radius: 11px;
}

@media (min-width: 1366px) {
  .button01 {
    font-size: calc(18 / 1366 * 100vw);
  }
}

.button01 a {
  display: block;
  background-color: var(--color-magenta);
}

/* ボタン02 */
.button02 {
  width: 100%;
  max-width: 184px;
  height: 48px;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 44px;
  color: #47bcc6;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  border: solid 3px #fff;
  border-radius: 32px;
  transition: 0.3s;
}

.button02:hover {
  color: #fff;
  background-color: #47bcc6;
  border: solid 3px #fff;
  transition: 0.3s;
}

@media (min-width: 1366px) {
  .button02 {
    max-width: calc(184 / 1366 * 100vw);
    height: calc(48 / 1366 * 100vw);
    font-size: calc(24 / 1366 * 100vw);
    line-height: calc(44 / 1366 * 100vw);
  }
}

.button02 a {
  display: block;
}

/* ダウンロードリンク（SP固定） */
.download-link {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  display: none;
  width: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.download-link__button {
  width: 100%;
  max-width: 255px;
  height: 48px;
  margin: 19px auto;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
  letter-spacing: 0.025em;
  background-color: #fff000;
  border-radius: 11px;
}

.download-link__button a {
  display: block;
}

/* フッター */
.footer {
  padding: 24px 0 16px;
  background-color: #fff;
}

@media (min-width: 1366px) {
  .footer {
    padding: calc(24 / 1366 * 100vw) 0 calc(16 / 1366 * 100vw);
  }
}

@media (max-width: 959px) {
  .footer {
    padding: 24px 0 100px;
  }
}

.footer__logo {
  width: 222px;
  height: fit-content;
  margin: 0 auto 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0px;
}

@media (min-width: 1366px) {
  .footer__logo {
    width: calc(222 / 1366 * 100vw);
    height: fit-content;
    margin: 0 auto calc(32 / 1366 * 100vw);
  }
}

.footer__logo a {
  display: block;
  width: 100%;
}

.footer__logo img {
  width: 100%;
}

.footer__links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 477px;
  margin: 0 auto 31px;
}

@media (min-width: 1366px) {
  .footer__links {
    max-width: calc(477 / 1366 * 100vw);
    margin: 0 auto calc(31 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .footer__links {
    display: none;
  }
}

.footer__link {
  font-size: 1.2rem;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .footer__link {
    font-size: calc(12 / 1366 * 100vw);
  }
}

.footer__copyright {
  display: block;
  margin: 0 auto;
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .footer__copyright {
    font-size: calc(10 / 1366 * 100vw);
  }
}

/* ハンバーガーボタン */
.hamburger-button {
  position: absolute;
  right: 24px;
  z-index: 1002;
  display: none;
  width: 24px;
  height: 20px;
  padding: 0;
  margin-top: 7px;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}

.hamburger-button span {
  position: relative;
  display: block;
  height: 2px;
  background: #707070;
}

.hamburger-button span::before,
.hamburger-button span::after {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  content: "";
  background: #707070;
  transition: transform 0.3s;
}

.hamburger-button span::before {
  top: -7px;
}

.hamburger-button span::after {
  bottom: -7px;
}

@media (max-width: 1365px) {
  .hamburger-button {
    display: block;
  }
}

.js-is-hamburger-active {
  overflow: hidden;
}

.js-is-hamburger-active .js-hamburger-button {
  background-color: #fff;
  transition: transform 0.3s;
}

.js-is-hamburger-active .js-hamburger-button span {
  background-color: transparent;
}

.js-is-hamburger-active .js-hamburger-button span::before {
  top: 0;
  background-color: #707070;
  transform: rotate(45deg);
}

.js-is-hamburger-active .js-hamburger-button span::after {
  top: 0;
  background-color: #707070;
  transform: rotate(-45deg);
}

.js-scroll-prevent {
  height: 100%;
  overflow: hidden;
}

/* ヘッダー */
.header {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 80px;
  background-color: #fff;
  transition: 0.3s;
}

@media (max-width: 1365px) {
  .header {
    height: 70px;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  padding: 18px 49px 0 24px;
  margin: 0 auto;
}

@media (max-width: 1365px) {
  .header__container {
    padding: 18px 24px 0;
    margin: 0 auto;
  }
}

.header__logo {
  width: 161px;
}

.header__logo img {
  width: 100%;
  height: auto;
}

@media (max-width: 1365px) {
  .header__logo {
    display: block;
    width: 120px;
  }
}

.header-nav {
  display: flex;
}

@media (max-width: 1365px) {
  .header-nav {
    display: none;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
}

@media (max-width: 1365px) {
  .header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.header-nav__list-item {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  transition: 0.3s;
}

.header-nav__list-item:hover {
  color: rgba(248, 19, 103, 1);
}

.header-nav__list-item:not(:first-of-type) {
  margin-left: 64px;
}

@media (max-width: 1365px) {
  .header-nav__list-item:not(:first-of-type) {
    margin-left: 0;
  }
}

@media (max-width: 1365px) {
  .header-nav__list-item a {
    display: block;
    padding: 24px 36px;
  }
}

@media (max-width: 1365px) {
  .header-nav__list-item {
    width: 100%;
    color: #fff;
  }
}

.header-nav__tel {
  margin-left: 139px;
}

@media (max-width: 1365px) {
  .header-nav__tel {
    display: none;
  }
}

.header-nav__tel-time {
  margin-bottom: 4px;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  text-align: right;
  letter-spacing: 0.05em;
}

.header-nav__tel-number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -2px;
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  letter-spacing: 0.05em;
}

.header-nav__tel-number img {
  margin-right: 8px;
}

/* SPヘッダー */
.header-sp__container {
  position: relative;
  top: -48.02px;
  z-index: 1001;
  display: none;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100 + 1px);
  overflow-y: auto;
  background-color: #fff;
  transition: transform 0.3s ease-in-out;
  transform: translateX(100%);
}

@media (max-width: 1365px) {
  .header-sp__container {
    display: block;
  }
}

.header-sp-nav__list-item {
  font-weight: 700;
  color: var(--color-dark);
}

.header-sp-nav__list-item a {
  display: block;
  padding: 20px 32px;
}

.header-sp__logo {
  padding: 18px 24px;
}

.header-sp__logo img {
  width: 120px;
}

.header-sp-nav {
  height: calc(100vh - 66.02px);
  height: calc(var(--vh, 1vh) * 100 - 66.02px);
  overflow-y: auto;
}

.header-sp-nav__list-item-tel a {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-start;
  padding: 18px 32px;
}

@media (max-width: 374px) {
  .header-sp-nav__list-item-tel a {
    flex-direction: column;
  }
}

.header-sp-nav__tel-time {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 374px) {
  .header-sp-nav__tel-time {
    margin-bottom: 4px;
  }
}

.header-sp-nav__tel-number {
  display: block;
  margin-right: 16px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 374px) {
  .header-sp-nav__tel-number {
    margin-right: 0;
  }
}

.header-sp-nav__tel-number img {
  margin-right: 8px;
}

.js-is-hamburger-active .header-sp__container {
  transform: translateX(0);
}

/* 見出し01 */
.heading01 {
  display: flex;
  align-items: center;
  justify-content: center; /* space-between -> center（左装飾削除のため） */
  width: 100%;
  max-width: 895px;
  margin: 0 auto;
}

@media (min-width: 1366px) {
  .heading01 {
    max-width: calc(895 / 1366 * 100vw);
  }
}


.heading01__container {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  white-space: nowrap;
}

@media (min-width: 1366px) {
  .heading01__container {
    margin-top: calc(32 / 1366 * 100vw);
  }
}

.heading01__english-title-container {
  padding: 15px 12px;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 1366px) {
  .heading01__english-title-container {
    padding: calc(15 / 1366 * 100vw) calc(12 / 1366 * 100vw);
  }
}

.heading01__english-title {
  width: 100%;
  font-family: "Quicksand", sans-serif;
  font-size: 4.4rem;
  font-style: italic;
  color: rgba(248, 19, 103, 1);
}

@media (min-width: 1366px) {
  .heading01__english-title {
    padding-top: calc(15 / 1366 * 100vw);
    font-size: calc(44 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .heading01__english-title {
    font-size: 3.2rem;
  }
}

.heading01__title {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .heading01__title {
    font-size: calc(16 / 1366 * 100vw);
  }
}

/* 見出しアニメーション */
.js-heading span {
  display: inline-block;
  padding-right: 10px;
  margin-right: -10px;
  transform: translateY(150px);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

@keyframes headingFadein {
  0% {
    transform: translateY(150px);
  }
  30% {
    transform: translateY(-15px);
  }
  45% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}

.js-heading-active span:nth-child(1) {
  animation: 1s headingFadein 0s 1 forwards;
}

.js-heading-active span:nth-child(2) {
  animation: 1s headingFadein 0.05s 1 forwards;
}

.js-heading-active span:nth-child(3) {
  animation: 1s headingFadein 0.1s 1 forwards;
}

.js-heading-active span:nth-child(4) {
  animation: 1s headingFadein 0.15s 1 forwards;
}

.js-heading-active span:nth-child(5) {
  animation: 1s headingFadein 0.2s 1 forwards;
}

.js-heading-active span:nth-child(6) {
  animation: 1s headingFadein 0.25s 1 forwards;
}

.js-heading-active span:nth-child(7) {
  animation: 1s headingFadein 0.3s 1 forwards;
}

.js-heading-active span:nth-child(8) {
  animation: 1s headingFadein 0.35s 1 forwards;
}

.js-heading-active span:nth-child(9) {
  animation: 1s headingFadein 0.4s 1 forwards;
}

.js-heading-active span:nth-child(10) {
  animation: 1s headingFadein 0.45s 1 forwards;
}

.js-heading-active span:nth-child(11) {
  animation: 1s headingFadein 0.5s 1 forwards;
}

/* 見出し02 */
.heading02 {
  width: 184px;
  height: 48px;
  margin: 0 auto 56px;
  font-size: 1.8rem;
  line-height: 48px;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
  background-color: #47bcc6;
  border-radius: 32px;
}

@media (min-width: 1366px) {
  .heading02 {
    width: calc(184 / 1366 * 100vw);
    height: calc(48 / 1366 * 100vw);
    margin: 0 auto calc(56 / 1366 * 100vw);
    font-size: calc(18 / 1366 * 100vw);
    line-height: calc(48 / 1366 * 100vw);
  }
}

/* ホバー効果 */
.hover {
  transition: 0.3s;
}

.hover--transparent:hover {
  opacity: 0.6;
  transition: 0.3s;
}

/* メインエリア */
.main {
  width: calc(100vw - 351px);
  padding-top: 80px;
  padding-bottom: 116px;
  background-color: #fff;
}

@media (min-width: 1366px) {
  .main {
    width: calc(100vw - calc(351 / 1366 * 100vw));
    padding-bottom: calc(116 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .main {
    padding: 70px 36px;
    background-image: none;
  }
}

@media (max-width: 959px) {
  .main {
    width: 100%;
  }
}

@media (max-width: 499px) {
  .main {
    padding: 70px 24px;
  }
}

/* サイドバー */
.sidebar {
  width: 351px;
  padding-top: 160px;
  padding-bottom: 32px;
  background-color: #f7f7f7;
}

@media (min-width: 1366px) {
  .sidebar {
    width: calc(351 / 1366 * 100vw);
    padding-bottom: calc(32 / 1366 * 100vw);
  }
}

@media (max-width: 959px) {
  .sidebar {
    display: none;
  }
}

.sidebar__container {
  position: sticky;
  top: 160px;
  margin-bottom: 100px;
}

.sidebar__heading {
  margin-bottom: 26px;
  text-align: center;
}

@media (min-width: 1366px) {
  .sidebar__heading {
    margin-bottom: calc(26 / 1366 * 100vw);
  }
}

.sidebar__heading-title {
  font-size: 2rem;
}

@media (min-width: 1366px) {
  .sidebar__heading-title {
    font-size: calc(20 / 1366 * 100vw);
  }
}

.sidebar-form {
  width: 100%;
  max-width: 287px;
  margin: 0 auto;
}

@media (min-width: 1366px) {
  .sidebar-form {
    max-width: calc(287 / 1366 * 100vw);
  }
}

.sidebar-form__container {
  margin-bottom: 24px;
  background-color: #fff;
  border: solid 1px #e2e2e2;
  border-radius: 10px;
}

@media (min-width: 1366px) {
  .sidebar-form__container {
    margin-bottom: calc(24 / 1366 * 100vw);
  }
}

.sidebar-form__text-box-container {
  display: flex;
  flex-direction: column;
  padding: 20px 16px 10px;
}

.sidebar-form__text-box-container:not(:last-of-type) {
  border-bottom: solid 1px #e2e2e2;
}

@media (min-width: 1366px) {
  .sidebar-form__text-box-container {
    padding: calc(20 / 1366 * 100vw) calc(16 / 1366 * 100vw) calc(10 / 1366 * 100vw);
  }
}

.sidebar-form__label {
  margin-bottom: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .sidebar-form__label {
    margin-bottom: calc(10 / 1366 * 100vw);
    font-size: calc(14 / 1366 * 100vw);
  }
}

.sidebar-form__text-box {
  font-size: 1.4rem;
  border: none;
  outline: none;
}

.sidebar-form__text-box::placeholder {
  color: #d6d6d6;
}

/* selectの未選択時（「選択してください」）の色 */
select.sidebar-form__text-box:invalid {
  color: #d6d6d6;
}

select.sidebar-form__text-box:valid {
  color: var(--color-dark);
}

@media (min-width: 1366px) {
  .sidebar-form__text-box {
    font-size: calc(14 / 1366 * 100vw);
  }
}

.sidebar-form__submit {
  display: block;
  max-width: 255px;
  height: 48px;
  margin: 0 auto;
  line-height: 48px;
  border: none;
}

@media (min-width: 1366px) {
  .sidebar-form__submit {
    max-width: calc(255 / 1366 * 100vw);
    height: calc(48 / 1366 * 100vw);
    line-height: calc(48 / 1366 * 100vw);
  }
}

.sidebar__note {
  position: sticky;
  top: 96vh;
  font-size: 1.2rem;
  line-height: calc(25 / 16);
  color: var(--color-dark);
  text-align: center;
  opacity: 0.5;
}

.sidebar__note a {
  text-decoration: underline;
}

/* テキストスタイル */
.text01 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: calc(25 / 16);
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .text01 {
    font-size: calc(16 / 1366 * 100vw);
  }
}

/* ===============================================================
トップページ用スタイル
================================================================ */

/* FAQ セクション */
.faq {
  background-color: #fff;
}

.faq__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .faq__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .faq__heading {
    margin-bottom: 32px;
  }
}

.faq__questions {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

@media (min-width: 1366px) {
  .faq__questions {
    max-width: calc(720 / 1366 * 100vw);
  }
}

.faq__question {
  position: relative;
  padding: 11px 33px 21px;
  margin-bottom: 32px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--color-dark);
}

@media (min-width: 1366px) {
  .faq__question {
    padding: calc(11 / 1366 * 100vw) calc(33 / 1366 * 100vw) calc(21 / 1366 * 100vw);
    margin-bottom: calc(32 / 1366 * 100vw);
  }
}

.faq__question-heading {
  padding-right: 50px;
  cursor: pointer;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media (max-width: 499px) {
  .faq__question-heading {
    padding-right: 24px;
  }
}

.faq__question-heading::after {
  position: absolute;
  top: 24px;
  right: 33px;
  width: 33px;
  height: 33px;
  content: "";
  background-image: url("../img/ico_arrow03.svg");
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (min-width: 1366px) {
  .faq__question-heading::after {
    top: calc(24 / 1366 * 100vw);
    right: calc(33 / 1366 * 100vw);
    width: calc(33 / 1366 * 100vw);
    height: calc(33 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .faq__question-heading::after {
    top: 22px;
    right: 32px;
    width: 24px;
    height: 24px;
  }
}

.faq__question-heading.js-accordion-open::after {
  transition: 0.3s;
  transform: rotate(180deg);
}

.faq__question-heading-title::before {
  display: inline-block;
  margin-right: 11px;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-magenta);
  content: "Q";
}

@media (min-width: 1366px) {
  .faq__question-heading-title::before {
    margin-right: calc(11 / 1366 * 100vw);
    font-size: calc(32 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .faq__question-heading-title::before {
    font-size: 2.4rem;
  }
}

.faq__question-answer {
  display: none;
  padding-bottom: 4px;
  margin-top: 9px;
  border-top: solid 1px #707070;
}

@media (min-width: 1366px) {
  .faq__question-answer {
    padding-bottom: calc(4 / 1366 * 100vw);
    margin-top: calc(9 / 1366 * 100vw);
  }
}

.faq__question-answer::before {
  display: inline-block;
  width: 25px;
  margin-right: 11px;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: calc(25 / 19);
  color: var(--color-magenta);
  text-align: center;
  content: "A";
}

@media (min-width: 1366px) {
  .faq__question-answer::before {
    width: calc(25 / 1366 * 100vw);
    margin-right: calc(11 / 1366 * 100vw);
    font-size: calc(32 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .faq__question-answer::before {
    margin-right: 4px;
    font-size: 2.4rem;
  }
}

/* Features セクション */
.features {
  padding-bottom: 77px;
  background-color: #fff;
}

@media (min-width: 1366px) {
  .features {
    padding-bottom: calc(77 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .features {
    padding-bottom: 16px;
  }
}

.features__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .features__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .features__heading {
    margin-bottom: 32px;
  }
}

.features__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 808px;
  margin: 0 auto;
}

@media (min-width: 1366px) {
  .features__container {
    max-width: calc(808 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .features__container {
    flex-direction: column;
    max-width: 100%;
  }
}

.features__content {
  width: 100%;
  max-width: 257px;
  padding: 39px 28px 59px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--color-dark);
}

@media (min-width: 1366px) {
  .features__content {
    max-width: calc(257 / 1366 * 100vw);
    padding: calc(39 / 1366 * 100vw) calc(28 / 1366 * 100vw) calc(59 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .features__content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .features__content {
    padding: 44px 32px;
  }
}

@media (max-width: 1365px) {
  .features__content:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.features__content-heading {
  padding-bottom: 24px;
  margin-bottom: 12px;
  border-bottom: solid 1px #707070;
}

@media (min-width: 1366px) {
  .features__content-heading {
    padding-bottom: calc(24 / 1366 * 100vw);
    margin-bottom: calc(12 / 1366 * 100vw);
  }
}

.features__content-number {
  margin-bottom: 18px;
  font-family: "Quicksand", sans-serif;
  font-size: 4.8rem;
  color: var(--color-dark);
  text-align: center;
}

@media (min-width: 1366px) {
  .features__content-number {
    margin-bottom: calc(18 / 1366 * 100vw);
    font-size: calc(48 / 1366 * 100vw);
  }
}

.features__content-title {
  font-size: 2.5rem;
  color: var(--color-magenta);
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .features__content-title {
    font-size: calc(25 / 1366 * 100vw);
  }
}

.features__content02-title {
  margin: 0 -10px;
}

@media (min-width: 1366px) {
  .features__content02-title {
    margin: 0 calc(-10 / 1366 * 100vw);
  }
}

.js-features-list-item {
  position: relative;
  top: 50px;
  opacity: 0;
}

/* Flow セクション */
.flow {
  padding-bottom: 80px;
  background-color: #fff;
}

@media (min-width: 1366px) {
  .flow {
    padding-bottom: calc(80 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .flow {
    padding-bottom: 16px;
  }
}

.flow__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .flow__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .flow__heading {
    margin-bottom: 32px;
  }
}

.flow__container {
  width: 100%;
  max-width: 807px;
  padding: 45px 47px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--color-dark);
}

@media (min-width: 1366px) {
  .flow__container {
    max-width: calc(807 / 1366 * 100vw);
    padding: calc(45 / 1366 * 100vw) calc(47 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .flow__container {
    padding: 38px 32px;
  }
}

.flow__steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
}

@media (min-width: 1366px) {
  .flow__steps {
    margin-bottom: calc(62 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .flow__steps {
    flex-direction: column;
  }
}

.flow__step {
  width: 100%;
  max-width: 136px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
}

@media (min-width: 1366px) {
  .flow__step {
    max-width: calc(136 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .flow__step {
    max-width: 100%;
  }
}

@media (max-width: 1365px) {
  .flow__step br {
    display: none;
  }
}

.flow__step:not(:last-child) {
  position: relative;
}

@media (max-width: 1365px) {
  .flow__step:not(:last-child) {
    padding-bottom: 120px;
  }
}

.flow__step:not(:last-child)::after {
  position: absolute;
  top: 120px;
  right: -43px;
  display: block;
  width: 30px;
  height: 30px;
  content: "";
  background-image: url("../img/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 1366px) {
  .flow__step:not(:last-child)::after {
    top: calc(120 / 1366 * 100vw);
    right: calc(-43 / 1366 * 100vw);
    width: calc(30 / 1366 * 100vw);
    height: calc(30 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .flow__step:not(:last-child)::after {
    top: 80%;
    right: 50%;
    transform: translate(50%, 0) rotate(90deg);
  }
}

.flow__step-heading {
  margin-bottom: 12px;
}

@media (min-width: 1366px) {
  .flow__step-heading {
    margin-bottom: calc(12 / 1366 * 100vw);
  }
}

.flow__step:not(:first-child) {
  position: relative;
}

.flow__step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  line-height: 56px;
  color: #fff;
  text-align: center;
  background-color: var(--color-dark);
  border-radius: 50%;
}

@media (min-width: 1366px) {
  .flow__step-number {
    width: calc(56 / 1366 * 100vw);
    height: calc(56 / 1366 * 100vw);
    margin: 0 auto calc(20 / 1366 * 100vw);
    font-size: calc(24 / 1366 * 100vw);
    line-height: calc(56 / 1366 * 100vw);
  }
}


.flow__step-image {
  margin-bottom: 12px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1366px) {
  .flow__step-image {
    margin-bottom: calc(12 / 1366 * 100vw);
    height: calc(108 / 1366 * 100vw);
  }
}

.flow__step-image img {
  width: 100px;
  height: auto;
  max-height: 108px;
  object-fit: contain;
}

@media (min-width: 1366px) {
  .flow__step-image img {
    width: calc(100 / 1366 * 100vw);
    max-height: calc(108 / 1366 * 100vw);
  }
}

.flow__step-heading-title {
  font-size: 1.6rem;
  line-height: calc(24 / 16);
  text-align: center;
  color: var(--color-magenta);
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1366px) {
  .flow__step-heading-title {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.flow__schedule {
  text-align: center;
}

.flow__schedule img {
  margin-top: 0;
  margin-bottom: 9px;
  height: 80px;
  width: auto;
}

@media (min-width: 1366px) {
  .flow__schedule img {
    margin-top: 0;
    margin-bottom: calc(9 / 1366 * 100vw);
    height: calc(80 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .flow__schedule img {
    display: none;
  }
}

.flow__schedule-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: calc(25 / 20);
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .flow__schedule-text {
    font-size: calc(20 / 1366 * 100vw);
  }
}

.flow__schedule-text-number {
  font-size: 2em;
  font-style: italic;
  margin-right: 0.1em;
}

@media (min-width: 1366px) {
  .flow__schedule-text-number {
    font-size: 2em;
  }
}

.js-flow-list {
  position: relative;
  top: 50px;
  opacity: 0;
}

/* MV（メインビジュアル）セクション */
.mv {
  position: relative; /* アニメーション要素の基準 */
  overflow: hidden; /* 枠外のアニメーション要素を隠す */
  display: flex;
  justify-content: center; /* space-between -> center 中央寄せ */
  gap: 60px; /* テキストと画像の間隔 */
  max-width: 1308px;
  padding-top: 60px; /* 93px -> 60px FV高さ縮小 */
  padding-right: 18px;
  padding-bottom: 50px; /* 80px -> 50px FV高さ縮小 */
  padding-left: 15px;
  margin: 0 auto 60px; /* 107px -> 60px FV高さ縮小 */
  background-color: #231815; /* 画像に合わせて少し濃い黒に変更 */
}

/* 背景のアニメーション線 */
.mv__decoration-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.mv__line {
  position: absolute;
  display: block;
  height: 24px; /* 線の太さ 12px -> 24px */
  border-radius: 12px; /* 角丸も調整 */
  opacity: 0;
  transform: translate(100px, -100px) rotate(-45deg); /* 初期位置：右上、角度修正 */
}

/* アニメーション定義 */
@keyframes slideInLine {
  0% {
    opacity: 0;
    transform: translate(200px, -200px) rotate(-45deg);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
  }
}

/* 各線の設定（位置・サイズ・色・遅延） - 画像に合わせて7本配置 */

/* 1. 左上（マゼンタ・短め） */
.mv__line--01 {
  top: 10px; /* さらに画面内へ */
  left: 10%;
  width: 250px; /* 長くする */
  background-color: #E5004E; /* 色変更 */
  animation: slideInLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

/* 2. 右上寄り（マゼンタ・短め）→ 中央寄りへ移動 */
.mv__line--02 {
  top: -10px; /* 下げる（画面内へ） */
  right: 0%; /* 右へ */
  width: 150px;
  background-color: #E5004E; /* 色変更 */
  animation: slideInLine 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
}

/* 3. 右上寄り（シアン・長め）→ 右端寄りへ移動 */
.mv__line--03 {
  top: -20px; /* 下げる（画面内へ） */
  right: -20%; /* さらに右端へ -> 丸が見えるように少し内側へ (5%->10%) */
  width: 400px;
  background-color: #3CBABE; /* 色変更 */
  animation: slideInLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

/* 4. 左側中央（シアン・中くらい） */
.mv__line--04 {
  top: 55%;
  left: -100px;
  width: 550px;
  background-color: #3CBABE; /* 色変更 */
  animation: slideInLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
}

/* 5. 下部左（マゼンタ・中くらい） */
.mv__line--05 {
  bottom: 10px; /* 画面内へ上げる */
  left: 100px; /* 右へ移動 */
  width: 360px;
  background-color: #E5004E; /* 色変更 */
  animation: slideInLine 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* 6. 右下（シアン・短め） */
.mv__line--06 {
  bottom: 20%;
  right: -50px;
  width: 150px;
  background-color: #3CBABE; /* 色変更 */
  animation: slideInLine 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.0s forwards;
}

/* 線の先端に丸を追加（指定の3本のみ） */
.mv__line--01::after,
.mv__line--03::after,
.mv__line--05::after {
  content: "";
  position: absolute;
  top: 0;
  right: -48px; /* 線から直径分(24px)離す設定 */
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: inherit; /* 親の背景色を継承 */
}

/* 01 と 03 は左端に丸をつける（overflow対策） */
.mv__line--01::after,
.mv__line--03::after {
  right: auto;
  left: -48px;
}

/* コンテンツを前面に出す */
.mv__img,
.mv__text-container {
  position: relative;
  z-index: 1;
}

@media (min-width: 1366px) {
  .mv {
    max-width: calc(1308 / 1366 * 100vw);
    padding-top: calc(60 / 1366 * 100vw); /* 93 -> 60 FV高さ縮小 */
    padding-right: calc(18 / 1366 * 100vw);
    padding-left: calc(15 / 1366 * 100vw);
    margin: 0 auto calc(60 / 1366 * 100vw); /* 107 -> 60 FV高さ縮小 */
  }
}

/* SP・タブレットでの線の調整 */
@media (max-width: 1039px) {
  /* 本数を減らす */
  .mv__line--02,
  .mv__line--06 {
    display: none;
  }
  
  /* 位置調整 */
  .mv__line--03 { /* メインのシアン */
    width: 250px;
    top: -20px;
    right: 5%; /* -10% -> 5% 画面内に入れる */
  }
  
  .mv__line--04 { /* 左側シアン */
    width: 180px;
    top: 40%;
    left: -10%;
  }
  
  .mv__line--05 { /* 下部マゼンタ */
    width: 150px;
    bottom: -20px;
    left: 10%;
  }
}

@media (max-width: 1365px) {
  .mv {
    max-width: none;
    flex-direction: column;
    align-items: center;
    padding-right: 36px;
    padding-left: 36px;
    padding-bottom: 130px;
    margin-left: -36px;
    margin-right: -36px;
    position: relative;
  }
  
  .mv__text-container {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .mv__img {
    order: 2;
    margin-bottom: 20px;
  }
  
  .mv__list {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 1039px) {
  .mv {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .mv {
    padding-top: 31px;
    margin-top: 0;
    margin-bottom: 60px;
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.mv__img {
  width: 100%;
  max-width: 320px; /* 520px -> 400px -> 320px FV高さ縮小 */
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  animation: float 3s ease-in-out infinite;
}

.mv__img img {
  width: 100%;
  height: auto;
}

@media (min-width: 1366px) {
  .mv__img {
    max-width: calc(320 / 1366 * 100vw); /* 520 -> 320 FV高さ縮小 */
    min-width: 250px;
    margin-top: calc(3 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__img {
    max-width: 280px;
  }
}

.mv__text-container {
  width: 100%;
  max-width: 420px;
}

@media (min-width: 1366px) {
  .mv__text-container {
    max-width: calc(420 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .mv__text-container {
    position: static;
  }
}

.mv__text {
  margin-bottom: 40px;
  font-style: italic;
  font-weight: 900;
  color: #fff;
}

@media (min-width: 1366px) {
  .mv__text {
    margin-bottom: calc(40 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .mv__text {
    text-align: center;
  }
}

.mv__text01 {
  display: inline-block; /* 下線の長さを文字に合わせるため */
  margin-bottom: 10px;
  margin-left: 17px;
  font-size: 2.4rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 1);
  border-bottom: 2px solid #fff; /* アンダーライン追加 */
  padding-bottom: 2px; /* 文字と線の間隔 */
}

@media (min-width: 1366px) {
  .mv__text01 {
    margin-bottom: calc(10 / 1366 * 100vw);
    margin-left: calc(17 / 1366 * 100vw);
    font-size: calc(24 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .mv__text01 {
    margin-left: 0;
  }
}

.mv__text02 {
  display: block;
  font-size: 4.0rem; /* 5.7rem -> 4.0rem */
  line-height: 1.15;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 1);
}

@media (min-width: 1366px) {
  .mv__text02 {
    margin-bottom: calc(21 / 1366 * 100vw);
    font-size: calc(40 / 1366 * 100vw); /* 57 -> 40 */
  }
}

@media (max-width: 767px) {
  .mv__text02 {
    font-size: 3.2rem; /* 4.8rem -> 3.2rem */
  }
}

@media (max-width: 499px) {
  .mv__text02 {
    font-size: 2.4rem; /* 3.6rem -> 2.4rem */
  }
}

.mv__text-big {
  display: inline-block;
  margin-bottom: 24px; /* 「ショート動画」と「はじめませんか？」の間隔 */
  font-size: 8.6rem; /* 7.2rem * 1.2 = 8.64rem */
  font-style: normal; /* イタリック解除 */
  text-shadow:
    2px 2px 0 var(--color-magenta),
    3px 2px 0 var(--color-magenta),
    2px 3px 0 var(--color-magenta),
    3px 3px 0 var(--color-magenta),
    4px 3px 0 var(--color-magenta),
    3px 4px 0 var(--color-magenta),
    4px 4px 0 var(--color-magenta);
}

@media (min-width: 1366px) {
  .mv__text-big {
    font-size: calc(86 / 1366 * 100vw); /* 72 -> 86 */
  }
}

@media (max-width: 767px) {
  .mv__text-big {
    font-size: 7.2rem; /* 6.0rem * 1.2 */
  }
}

@media (max-width: 499px) {
  .mv__text-big {
    font-size: 5.4rem; /* 4.5rem * 1.2 */
  }
}

.mv__text-ruby {
  display: inline-block;
  font-size: 0.15em; /* 0.2em -> 0.15em */
  font-weight: 100; /* 200 -> 100 */
  writing-mode: vertical-rl;
  text-orientation: upright;
  vertical-align: middle;
  font-style: normal;
  letter-spacing: 0.1em;
  -webkit-text-stroke: 0; /* ムービーにはアウトラインなし */
  text-shadow: none; /* ムービーには影なし */
  margin: 0 0.1em;
  line-height: 1;
}

.mv__title {
  margin-bottom: 12px; /* 21px -> 12px FV高さ縮小 */
  margin-left: 6px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.6;
}

@media (min-width: 1366px) {
  .mv__title {
    margin-bottom: calc(21 / 1366 * 100vw);
    font-size: calc(24 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .mv__title {
    margin-left: 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .mv__title {
    font-size: 1.8rem;
  }
}

@media (max-width: 374px) {
  .mv__title {
    margin: 0 -8px 18px;
  }
}

.mv__list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 380px;
  margin-left: 5px;
  padding-top: 24px; /* 64px -> 24px FV高さ縮小 */
  padding-bottom: 24px; /* 64px -> 24px FV高さ縮小 */
}

@media (min-width: 1366px) {
  .mv__list {
    max-width: calc(380 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .mv__list {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }
}

@media (max-width: 767px) {
  .mv {
    padding-bottom: 120px;
  }
  
  .mv__img {
    margin-bottom: 15px;
  }
  
  .mv__list {
    max-width: 286px;
  }
}

@media (max-width: 499px) {
  .mv {
    padding-left: 24px;
    padding-right: 24px;
    margin-left: -24px;
    margin-right: -24px;
  }
  
  .mv__list {
    max-width: 260px;
  }
}

.mv__list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 111px;
  height: 111px;
  line-height: calc(26 / 22);
  background-color: rgba(255, 244, 98, 1);
  color: rgba(35, 24, 21, 1);
  border: solid 3px #fff;
  border-radius: 50%;
  text-align: center;
}

@media (min-width: 1366px) {
  .mv__list-item {
    width: calc(111 / 1366 * 100vw);
    height: calc(111 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__list-item {
    width: 75px;
    height: 75px;
  }
}

.mv__list-item01 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .mv__list-item01 {
    font-size: calc(20 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__list-item01 {
    font-size: 1.4rem;
  }
}

.mv__list-item01-number {
  font-size: 3.2rem;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .mv__list-item01-number {
    font-size: calc(32 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__list-item01-number {
    font-size: 2.3rem;
  }
}

.mv__list-item01-yen {
  font-size: 1.8rem;
}

@media (min-width: 1366px) {
  .mv__list-item01-yen {
    font-size: calc(18 / 1366 * 100vw);
  }
}

.mv__list-item02 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  transition: 0.3s;
}

@media (min-width: 1366px) {
  .mv__list-item02 {
    font-size: calc(20 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__list-item02 {
    font-size: 1.4rem;
  }
}

.mv__list-item02 span {
  font-size: 2.9rem;
}

@media (min-width: 1366px) {
  .mv__list-item02 span {
    font-size: calc(29 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__list-item02 span {
    font-size: 2rem;
  }
}

.mv__list-item03 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .mv__list-item03 {
    font-size: calc(22 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .mv__list-item03 {
    font-size: 1.6rem;
  }
}

/* Plan セクション */
.plan {
  padding-bottom: 56px;
  background-color: #fff;
}

@media (min-width: 1366px) {
  .plan {
    padding-bottom: calc(56 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .plan {
    padding-bottom: 16px;
  }
}

.plan__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .plan__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .plan__heading {
    margin-bottom: 32px;
  }
}

.plan__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 807px;
  margin: 0 auto 20px;
}

@media (min-width: 1366px) {
  .plan__container {
    max-width: calc(807 / 1366 * 100vw);
    margin: 0 auto calc(20 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .plan__container {
    flex-direction: column;
    max-width: 100%;
  }
}

.plan__content {
  position: relative;
  width: 100%;
  max-width: 256px;
  padding: 34px 25px 38px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--color-dark);
}

@media (min-width: 1366px) {
  .plan__content {
    max-width: calc(256 / 1366 * 100vw);
    padding: calc(34 / 1366 * 100vw) calc(25 / 1366 * 100vw) calc(38 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .plan__content {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .plan__content {
    padding: 34px 32px;
  }
}

@media (max-width: 1365px) {
  .plan__content:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.plan__content-recommend {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 88px;
}

@media (min-width: 1366px) {
  .plan__content-recommend {
    top: calc(-14 / 1366 * 100vw);
    left: calc(24 / 1366 * 100vw);
    width: calc(88 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .plan__content-recommend {
    left: 34%;
  }
}

.plan__content-heading {
  padding-bottom: 18px;
  border-bottom: solid 1px #707070;
}

@media (min-width: 1366px) {
  .plan__content-heading {
    padding-bottom: calc(18 / 1366 * 100vw);
  }
}

.plan__content-title {
  margin-bottom: 7px;
  font-size: 2rem;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__content-title {
    margin-bottom: calc(7 / 1366 * 100vw);
    font-size: calc(20 / 1366 * 100vw);
  }
}

.plan__content-price {
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__content-price {
    margin-bottom: calc(8 / 1366 * 100vw);
    font-size: calc(16 / 1366 * 100vw);
  }
}

.plan__content-price-number {
  font-family: "Quicksand", sans-serif;
  font-size: 3.2rem;
  font-style: italic;
  margin-right: 0.15em; /* 数字と円の間を空ける */
}

@media (min-width: 1366px) {
  .plan__content-price-number {
    font-size: calc(32 / 1366 * 100vw);
  }
}

.plan__content-price-tax {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__content-price-tax {
    font-size: calc(12 / 1366 * 100vw);
  }
}

.plan__content-list {
  padding-top: 30px;
}

@media (min-width: 1366px) {
  .plan__content-list {
    padding-top: calc(30 / 1366 * 100vw);
  }
}

.plan__content-list-item {
  font-size: 1.4rem; /* 1.6rem -> 1.4rem 2行にならないように */
  line-height: calc(25 / 14);
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__content-list-item {
    font-size: calc(14 / 1366 * 100vw); /* 16 -> 14 */
  }
}

.plan__content-list-item--red {
  color: #d24657;
}

.plan__content-note {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__content-note {
    font-size: calc(12 / 1366 * 100vw);
  }
}

.plan__video-count {
  margin-top: 24px;
  font-size: 1.6rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__video-count {
    margin-top: calc(24 / 1366 * 100vw);
    font-size: calc(16 / 1366 * 100vw);
  }
}

.plan__video-count-number {
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-style: italic;
  color: var(--color-magenta);
  margin-right: 0.1em;
}

@media (min-width: 1366px) {
  .plan__video-count-number {
    font-size: calc(24 / 1366 * 100vw);
  }
}

.plan__notes {
  margin-bottom: 102px;
  margin-left: 104px;
}

@media (min-width: 1366px) {
  .plan__notes {
    margin-bottom: calc(102 / 1366 * 100vw);
    margin-left: calc(104 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .plan__notes {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .plan__notes {
    margin-bottom: 48px;
  }
}

.plan__note {
  font-size: 1.2rem;
  line-height: calc(19 / 12);
  color: var(--color-dark);
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__note {
    font-size: calc(12 / 1366 * 100vw);
  }
}

.plan__option {
  margin-bottom: 43px;
  text-align: center;
}

@media (min-width: 1366px) {
  .plan__option {
    margin-bottom: calc(43 / 1366 * 100vw);
  }
}

.plan__option img {
  margin-bottom: 17px;
}

@media (min-width: 1366px) {
  .plan__option img {
    margin-bottom: calc(17 / 1366 * 100vw);
  }
}

.plan__option-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__option-title {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.plan__option-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 632px;
  margin: 0 auto;
}

@media (min-width: 1366px) {
  .plan__option-list {
    max-width: calc(632 / 1366 * 100vw);
  }
}

@media (max-width: 1039px) {
  .plan__option-list {
    max-width: 360px;
  }
}

@media (max-width: 499px) {
  .plan__option-list {
    max-width: 272px;
  }
}

.plan__option-list-item {
  width: 168px;
  height: 168px;
  padding-top: 30px;
  margin-top: 0;
  margin-bottom: 25px;
  text-align: center;
  background-color: var(--color-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 0px;
}

@media (min-width: 1366px) {
  .plan__option-list-item {
    width: calc(168 / 1366 * 100vw);
    height: calc(168 / 1366 * 100vw);
    padding-top: calc(30 / 1366 * 100vw);
    margin-bottom: calc(24 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item {
    width: 124px;
    height: 124px;
    padding-top: 16px;
  }
}

.plan__option-list-item:nth-child(1) img {
  width: 64px;
  margin-bottom: 18px;
}

@media (min-width: 1366px) {
  .plan__option-list-item:nth-child(1) img {
    width: calc(64 / 1366 * 100vw);
    margin-bottom: calc(18 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item:nth-child(1) img {
    width: 40px;
    margin-bottom: 9px;
  }
}

.plan__option-list-item:nth-child(2) img {
  width: 64px;
  margin-bottom: 18px;
}

@media (min-width: 1366px) {
  .plan__option-list-item:nth-child(2) img {
    width: calc(64 / 1366 * 100vw);
    margin-bottom: calc(18 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item:nth-child(2) img {
    width: 40px;
    margin-bottom: 9px;
  }
}

.plan__option-list-item:nth-child(3) img {
  width: 64px;
  margin-bottom: 18px;
}

@media (min-width: 1366px) {
  .plan__option-list-item:nth-child(3) img {
    width: calc(64 / 1366 * 100vw);
    margin-bottom: calc(18 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item:nth-child(3) img {
    width: 40px;
    margin-bottom: 9px;
  }
}

.plan__option-list-item:nth-child(4) img {
  width: 64px;
  margin-bottom: 18px;
}

@media (min-width: 1366px) {
  .plan__option-list-item:nth-child(4) img {
    width: calc(64 / 1366 * 100vw);
    margin-bottom: calc(18 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item:nth-child(4) img {
    width: 40px;
    margin-bottom: 9px;
  }
}

.plan__option-list-item:nth-child(5) img {
  width: 64px;
  margin-bottom: 18px;
}

@media (min-width: 1366px) {
  .plan__option-list-item:nth-child(5) img {
    width: calc(64 / 1366 * 100vw);
    margin-bottom: calc(18 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item:nth-child(5) {
    padding-top: 16px;
  }
  .plan__option-list-item:nth-child(5) img {
    width: 40px;
    margin-bottom: 9px;
  }
}

.plan__option-list-item:nth-child(6) img {
  width: 64px;
  margin-bottom: 18px;
}

@media (min-width: 1366px) {
  .plan__option-list-item:nth-child(6) img {
    width: calc(64 / 1366 * 100vw);
    margin-bottom: calc(18 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item:nth-child(6) img {
    width: 40px;
    margin-bottom: 9px;
  }
}

.plan__option-list-item-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: calc(17 / 14);
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .plan__option-list-item-title {
    font-size: calc(14 / 1366 * 100vw);
  }
}

@media (max-width: 499px) {
  .plan__option-list-item-title {
    font-size: 1.2rem;
  }
}

.js-plan-list-item {
  position: relative;
  top: 50px;
  opacity: 0;
}

@keyframes recommendFadein {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.1);
  }
  45% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.js-plan-recommend {
  transition: 0.3s;
  transform: scale(0);
  transform-origin: 50% 100%;
}

.js-plan-recommend-active {
  animation: 1s recommendFadein 0s 1 forwards;
}

.js-plan-option-list-item {
  position: relative;
  top: 50px;
  opacity: 0;
}

/* Problem セクション */
.problem {
  padding-bottom: 78px;
  background-color: #fff;
}

@media (min-width: 1366px) {
  .problem {
    padding-bottom: calc(78 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .problem {
    padding-bottom: 16px;
  }
}

.problem__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .problem__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .problem__heading {
    margin-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .problem__heading::before {
    margin-right: -24px;
  }
}

@media (max-width: 767px) {
  .problem__heading::after {
    margin-left: -24px;
  }
}

.problem__container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 730px;
  padding: 0 24px;
  margin: 0 auto 23px;
}

@media (min-width: 1366px) {
  .problem__container {
    max-width: calc(730 / 1366 * 100vw);
    margin: 0 auto calc(23 / 1366 * 100vw);
  }
}

@media (max-width: 1199px) {
  .problem__container {
    flex-direction: column;
    align-items: center;
  }
}

.problem__content {
  width: 100%;
  max-width: 200px;
  margin-bottom: 40px;
}

@media (min-width: 1366px) {
  .problem__content {
    max-width: calc(200 / 1366 * 100vw);
    margin-bottom: calc(40 / 1366 * 100vw);
  }
}

.problem__balloon {
  position: relative;
  width: 100%;
  height: 90px;
  margin-bottom: 33px;
  background-image: url("../img/baloon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

@media (min-width: 1366px) {
  .problem__balloon {
    height: calc(90 / 1366 * 100vw);
    margin-bottom: calc(33 / 1366 * 100vw);
  }
}

@media (max-width: 1199px) {
  .problem__balloon {
    margin-bottom: 5px;
  }
}

.problem__balloon-text {
  position: absolute;
  top: 12px;
  width: 100%;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: calc(20 / 13);
  text-align: center;
  letter-spacing: 0.025em;
}

@media (min-width: 1366px) {
  .problem__balloon-text {
    top: calc(12 / 1366 * 100vw);
    font-size: calc(13 / 1366 * 100vw);
  }
}

.problem__person {
  width: 100%;
  max-width: 160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.problem__person img {
  width: 100%;
  height: auto;
}

@media (min-width: 1366px) {
  .problem__person {
    max-width: calc(160 / 1366 * 100vw);
  }
}

.problem__text {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .problem__text {
    font-size: calc(24 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .problem__text {
    line-height: 1.8;
  }
}

@media (max-width: 374px) {
  .problem__text {
    font-size: 1.8rem;
  }
}

@keyframes problemBalloonFadein {
  0% {
    transform: scale(0);
  }
  30% {
    transform: scale(1.1);
  }
  45% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.js-problem-list-item {
  transition: 0.3s;
  transform: scale(0);
  transform-origin: 50% 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}

.js-problem-list-item-active {
  animation: 1s problemBalloonFadein 0s 1 forwards;
}

/* Voice セクション */
.voice {
  padding-bottom: 87px;
}

@media (min-width: 1366px) {
  .voice {
    padding-bottom: calc(87 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .voice {
    padding-bottom: 16px;
  }
}

.voice__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .voice__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .voice__heading {
    margin-bottom: 32px;
  }
}

.voice__content {
  display: flex;
  width: 100%;
  max-width: 808px;
  padding: 20px 34px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 30px;
}

@media (min-width: 1366px) {
  .voice__content {
    max-width: calc(808 / 1366 * 100vw);
    padding: calc(20 / 1366 * 100vw) 0 calc(20 / 1366 * 100vw) calc(34 / 1366 * 100vw);
  }
}

@media (max-width: 1039px) {
  .voice__content {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 767px) {
  .voice__content {
    padding: 37px 32px;
  }
}

.voice__content:not(:last-of-type) {
  margin-bottom: 39px;
}

@media (min-width: 1366px) {
  .voice__content:not(:last-of-type) {
    margin-bottom: calc(39 / 1366 * 100vw);
  }
}

.voice__content:last-of-type {
  margin-bottom: 70px;
}

@media (min-width: 1366px) {
  .voice__content:last-of-type {
    margin-bottom: calc(70 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .voice__content:last-of-type {
    margin-bottom: 0;
  }
}

.voice__content-image {
  width: 100%;
  max-width: 128px;
  margin-right: 34px;
}

@media (min-width: 1366px) {
  .voice__content-image {
    max-width: calc(128 / 1366 * 100vw);
    margin-right: calc(34 / 1366 * 100vw);
  }
}

@media (max-width: 1039px) {
  .voice__content-image {
    margin-right: 0;
    margin-bottom: 17px;
  }
}

.voice__content-text-container {
  width: 100%;
  max-width: 480px;
  padding-top: 9px;
}

@media (min-width: 1366px) {
  .voice__content-text-container {
    max-width: calc(480 / 1366 * 100vw);
    padding-top: calc(9 / 1366 * 100vw);
  }
}

.voice__content-title {
  margin-bottom: 14px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .voice__content-title {
    margin-bottom: calc(14 / 1366 * 100vw);
    font-size: calc(18 / 1366 * 100vw);
  }
}

.voice__content-name {
  margin-bottom: 13px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #47bcc6;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .voice__content-name {
    margin-bottom: calc(13 / 1366 * 100vw);
    font-size: calc(16 / 1366 * 100vw);
  }
}

.voice__button {
  max-width: 420px;
  height: 48px;
  margin: 0 auto;
  line-height: 48px;
}

@media (min-width: 1366px) {
  .voice__button {
    max-width: calc(420 / 1366 * 100vw);
    height: calc(48 / 1366 * 100vw);
    line-height: calc(48 / 1366 * 100vw);
  }
}

@media (max-width: 959px) {
  .voice__button {
    display: none;
  }
}

.js-voice-list-item {
  position: relative;
  top: 50px;
  opacity: 0;
}

/* Works セクション */
.works {
  padding-bottom: 77px;
}

@media (min-width: 1366px) {
  .works {
    padding-bottom: calc(77 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .works {
    padding-bottom: 16px;
  }
}

.works__heading {
  margin-bottom: 60px;
}

@media (min-width: 1366px) {
  .works__heading {
    margin-bottom: calc(60 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .works__heading {
    margin-bottom: 32px;
  }
}

.works__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 806px;
  margin: 0 auto 12px;
}

@media (min-width: 1366px) {
  .works__list {
    max-width: calc(806 / 1366 * 100vw);
    margin: 0 auto calc(12 / 1366 * 100vw);
  }
}

@media (max-width: 1365px) {
  .works__list {
    flex-direction: column;
    align-items: center;
  }
}

.works__list-item {
  width: 100%;
  max-width: 384px;
  margin-bottom: 42px;
  border: solid 3px #fff;
  border-radius: 30px;
}

@media (min-width: 1366px) {
  .works__list-item {
    max-width: calc(384 / 1366 * 100vw);
    margin-bottom: calc(42 / 1366 * 100vw);
  }
}

.works__list-item a {
  display: block;
  padding: 39px 44px 28px;
  overflow: hidden;
}

@media (min-width: 1366px) {
  .works__list-item a {
    max-width: calc(648 / 1366 * 100vw);
    padding: calc(39 / 1366 * 100vw) calc(44 / 1366 * 100vw) calc(28 / 1366 * 100vw);
  }
}

.works__list-item-image {
  width: 100%;
  max-width: 295px;
  margin-bottom: 24px;
  overflow: hidden;
}

@media (min-width: 1366px) {
  .works__list-item-image {
    max-width: calc(295 / 1366 * 100vw);
    margin-bottom: calc(24 / 1366 * 100vw);
  }
}

.works__list-item-image img {
  transition: 0.3s;
}

.works__list-item:hover .works__list-item-image img {
  opacity: 0.6;
  transition: 0.3s;
  transform: scale(1.1);
}

@media (max-width: 1365px) {
  .works__list-item:nth-of-type(n+3) {
    display: none;
  }
}

.works__list-item-name {
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  letter-spacing: 0.05em;
}

@media (min-width: 1366px) {
  .works__list-item-name {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.works__button {
  margin: 0 auto;
}

.js-works-list-item {
  position: relative;
  top: 50px;
  opacity: 0;
}

/* ===============================================================
Contact Page
================================================================ */
.contact-page {
  padding: 120px 20px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-page__title {
  font-family: "Quicksand", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--color-magenta);
  margin-bottom: 16px;
}

@media (min-width: 1366px) {
  .contact-page__title {
    font-size: calc(44 / 1366 * 100vw);
  }
}

.contact-page__subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
}

@media (min-width: 1366px) {
  .contact-page__subtitle {
    font-size: calc(20 / 1366 * 100vw);
  }
}

.contact-form {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form__group {
  margin-bottom: 30px;
}

.contact-form__label {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

@media (min-width: 1366px) {
  .contact-form__label {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.contact-form__label span {
  display: inline-block;
  background: var(--color-magenta);
  color: #fff;
  font-size: 1.1rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

.contact-form__input,
.contact-form__textarea,
.contact-form__select {
  width: 100%;
  padding: 16px 20px;
  font-size: 1.6rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  background: #fafafa;
  transition: border-color 0.3s, background 0.3s;
}

@media (min-width: 1366px) {
  .contact-form__input,
  .contact-form__textarea,
  .contact-form__select {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.contact-form__input:focus,
.contact-form__textarea:focus,
.contact-form__select:focus {
  outline: none;
  border-color: var(--color-magenta);
  background: #fff;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aaa;
}

.contact-form__textarea {
  min-height: 200px;
  resize: vertical;
}

.contact-form__select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

/* selectの未選択時（「選択してください」）の色 */
.contact-form__select:invalid {
  color: #aaa;
}

.contact-form__select:valid {
  color: var(--color-dark);
}

.contact-form__submit {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 40px auto 0;
  padding: 20px 40px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-magenta);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
}

.contact-form__submit:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.contact-form__note {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-top: 20px;
}

.contact-form__note a {
  color: var(--color-magenta);
  text-decoration: underline;
}

.contact-info {
  margin-top: 60px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #f8f8f8 0%, #fff 100%);
  border-radius: 20px;
}

.contact-info__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.contact-info__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Quicksand", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.contact-info__tel img {
  width: 30px;
  height: auto;
}

.contact-info__time {
  font-size: 1.4rem;
  color: #666;
}

@media (max-width: 767px) {
  .contact-page {
    padding: 100px 16px 60px;
  }

  .contact-page__title {
    font-size: 3.2rem;
  }

  .contact-page__subtitle {
    font-size: 1.6rem;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .contact-info__tel {
    font-size: 2.4rem;
  }
}

/* ===============================================================
Thanks Page
================================================================ */
.thanks-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 120px 20px 80px;
  text-align: center;
}

.thanks-page__icon {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
  background: var(--color-magenta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-page__icon svg {
  width: 50px;
  height: 50px;
  fill: #fff;
}

.thanks-page__title {
  font-family: "Quicksand", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.thanks-page__subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 30px;
}

.thanks-page__message {
  font-size: 1.6rem;
  line-height: 2;
  color: #666;
  max-width: 600px;
  margin-bottom: 50px;
}

.thanks-page__button {
  display: inline-block;
  padding: 18px 50px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background: var(--color-magenta);
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
}

.thanks-page__button:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}

.thanks-page__contact {
  margin-top: 60px;
  padding: 30px 40px;
  background: #f8f8f8;
  border-radius: 15px;
}

.thanks-page__contact-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 15px;
}

.thanks-page__contact-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Quicksand", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
}

.thanks-page__contact-tel img {
  width: 24px;
  height: auto;
}

.thanks-page__contact-email {
  margin-top: 16px;
  margin-bottom: 8px;
}

.thanks-page__contact-email a {
  font-size: 1.6rem;
  color: var(--color-magenta);
  text-decoration: underline;
}

.thanks-page__contact-email a:hover {
  text-decoration: none;
}

.thanks-page__contact-time {
  font-size: 1.2rem;
  color: #888;
  margin-top: 8px;
}

/* 資料ダウンロードサンクスページ用 */
.thanks-page--download {
  text-align: left;
}

.thanks-page__title--center {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.thanks-page__body {
  max-width: 700px;
  margin: 0 auto 40px;
}

.thanks-page__message--left {
  text-align: left;
  margin-bottom: 24px;
}

.thanks-page__contact--left {
  text-align: left;
  background: none;
  padding: 0;
  border-radius: 0;
  margin-top: 32px;
}

.thanks-page__contact-item {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.thanks-page__contact-item a {
  color: var(--color-magenta);
}

.thanks-page--download .thanks-page__button {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .thanks-page {
    padding: 100px 16px 60px;
  }

  .thanks-page__title {
    font-size: 3rem;
  }

  .thanks-page__title--center {
    font-size: 2rem;
  }

  .thanks-page__subtitle {
    font-size: 1.6rem;
  }

  .thanks-page__message {
    font-size: 1.4rem;
  }

  .thanks-page__icon {
    width: 80px;
    height: 80px;
  }

  .thanks-page__icon svg {
    width: 40px;
    height: 40px;
  }
}

/* ========================================
   404 Error Page
======================================== */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: 120px 20px 80px;
  text-align: center;
}

.error-page__code {
  font-family: "Outfit", sans-serif;
  font-size: 14rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-magenta) 0%, var(--color-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.error-page__title {
  font-family: "Quicksand", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
}

.error-page__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 30px;
}

.error-page__message {
  font-size: 1.6rem;
  line-height: 2;
  color: #666;
  max-width: 600px;
  margin-bottom: 50px;
}

.error-page__buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.error-page__button {
  display: inline-block;
  padding: 18px 40px;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s, transform 0.3s;
}

.error-page__button--primary {
  color: #fff;
  background: var(--color-magenta);
}

.error-page__button--primary:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  color: #fff;
}

.error-page__button--secondary {
  color: var(--color-dark);
  background: #f0f0f0;
}

.error-page__button--secondary:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .error-page {
    padding: 100px 16px 60px;
  }

  .error-page__code {
    font-size: 10rem;
  }

  .error-page__title {
    font-size: 2.4rem;
  }

  .error-page__subtitle {
    font-size: 1.5rem;
  }

  .error-page__message {
    font-size: 1.4rem;
  }

  .error-page__buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }

  .error-page__button {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   Policy Page (個人情報保護方針)
======================================== */
.policy-page {
  padding: 120px 20px 80px;
}

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

.policy-page__header {
  text-align: center;
  margin-bottom: 50px;
}

.policy-page__title {
  font-family: "Quicksand", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--color-magenta);
  margin-bottom: 16px;
}

@media (min-width: 1366px) {
  .policy-page__title {
    font-size: calc(44 / 1366 * 100vw);
  }
}

.policy-page__subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
}

@media (min-width: 1366px) {
  .policy-page__subtitle {
    font-size: calc(20 / 1366 * 100vw);
  }
}

.policy-page__content {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.policy-page__intro {
  font-size: 1.6rem;
  line-height: 2;
  color: var(--color-dark);
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

@media (min-width: 1366px) {
  .policy-page__intro {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.policy-page__section {
  margin-bottom: 40px;
}

.policy-page__section:last-of-type {
  margin-bottom: 30px;
}

.policy-page__section-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--color-magenta);
}

@media (min-width: 1366px) {
  .policy-page__section-title {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.policy-page__text {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
}

@media (min-width: 1366px) {
  .policy-page__text {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.policy-page__list {
  margin-top: 16px;
  padding-left: 24px;
}

.policy-page__list li {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

@media (min-width: 1366px) {
  .policy-page__list li {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.policy-page__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.5em;
  height: 0.5em;
  background: var(--color-magenta);
  border-radius: 50%;
}

.policy-page__contact {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  margin-top: 16px;
}

@media (min-width: 1366px) {
  .policy-page__contact {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.policy-page__contact a {
  color: var(--color-magenta);
  text-decoration: underline;
}

.policy-page__contact a:hover {
  text-decoration: none;
}

.policy-page__date {
  font-size: 1.4rem;
  color: #888;
  text-align: right;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

@media (max-width: 767px) {
  .policy-page {
    padding: 100px 16px 60px;
  }

  .policy-page__title {
    font-size: 3.2rem;
  }

  .policy-page__subtitle {
    font-size: 1.6rem;
  }

  .policy-page__content {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .policy-page__intro {
    font-size: 1.4rem;
  }

  .policy-page__section-title,
  .policy-page__text,
  .policy-page__list li,
  .policy-page__contact {
    font-size: 1.4rem;
  }
}

/* ========================================
   Company Page (企業紹介)
======================================== */
.company-page.main {
  padding-top: 100px;
}

.company-page__header {
  text-align: center;
  padding: 40px 0;
}

.company-page__title {
  font-family: "Quicksand", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  color: var(--color-magenta);
  margin-bottom: 16px;
}

@media (min-width: 1366px) {
  .company-page__title {
    font-size: calc(44 / 1366 * 100vw);
  }
}

.company-page__subtitle {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
}

@media (min-width: 1366px) {
  .company-page__subtitle {
    font-size: calc(20 / 1366 * 100vw);
  }
}

/* Company Info */
.company-info {
  padding: 40px 0;
}

.company-info__container {
  max-width: 100%;
}

.company-info__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 40px;
}

.company-info__list {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 1050px;
  margin: 0 auto;
}

.company-info__item {
  display: flex;
  align-items: center; /* 垂直方向中央揃え */
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.company-info__item:last-child {
  border-bottom: none;
}

.company-info__item dt {
  width: 140px;
  flex-shrink: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
}

@media (min-width: 1366px) {
  .company-info__item dt {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.company-info__item dd {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.8;
}

@media (min-width: 1366px) {
  .company-info__item dd {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.company-info__item dd a {
  color: var(--color-magenta);
  text-decoration: underline;
}

.company-info__item dd a:hover {
  text-decoration: none;
}

/* Office Photo */
.company-office {
  padding: 0;
}

.company-office__image {
  max-width: 1020px; /* 画像の0.75倍 */
  margin: 0 auto; /* 中央揃え */
  overflow: hidden;
}

.company-office__image img {
  width: 100%;
  height: auto; /* アスペクト比を維持 */
  object-fit: cover;
}

.company-office__caption {
  text-align: center;
  font-size: 1.4rem;
  color: #888;
  padding: 20px;
  background: #f8f8f8;
}

/* CEO Message */
.company-ceo {
  padding: 80px 20px;
}

.company-ceo__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.company-ceo__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 40px;
}

.company-ceo__photo {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.company-ceo__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-ceo__name {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 30px;
}

.company-ceo__text {
  text-align: left;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.company-ceo__message {
  font-size: 1.6rem;
  line-height: 2;
  color: #555;
  margin-bottom: 30px;
}

@media (min-width: 1366px) {
  .company-ceo__message {
    font-size: calc(16 / 1366 * 100vw);
  }
}

.company-ceo__signature {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: right;
}

/* Staff */
.company-staff {
  background: #fff;
  padding: 80px 20px;
}

.company-staff__container {
  max-width: 900px;
  margin: 0 auto;
}

.company-staff__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-dark);
  text-align: center;
  margin-bottom: 50px;
}

.company-staff__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.company-staff__member {
  text-align: center;
}

.company-staff__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.company-staff__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-staff__role {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
}

@media (min-width: 1366px) {
  .company-staff__role {
    font-size: calc(16 / 1366 * 100vw);
  }
}

@media (max-width: 767px) {
  .company-page.main {
    padding-top: 80px;
  }

  .company-page__header {
    padding: 30px 0;
  }

  .company-page__title {
    font-size: 3.2rem;
  }

  .company-page__subtitle {
    font-size: 1.6rem;
  }

  .company-info {
    padding: 30px 0;
  }

  .company-info__title {
    font-size: 2rem;
  }

  .company-info__list {
    padding: 20px;
    border-radius: 15px;
    margin: 0; /* SP時は左揃え */
  }

  .company-info__item {
    flex-direction: column;
    align-items: flex-start; /* SP時は左揃え */
    gap: 8px;
    padding: 16px 0;
  }

  .company-info__item dt {
    width: 100%;
    font-size: 1.3rem;
    color: var(--color-dark); /* マゼンタ → ダークに統一 */
  }

  .company-info__item dd {
    font-size: 1.4rem;
  }

  .company-office__image img {
    height: 250px;
  }

  .company-ceo {
    padding: 50px 16px;
  }

  .company-ceo__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .company-ceo__photo {
    width: 150px;
    height: 150px;
  }

  .company-ceo__name {
    font-size: 1.8rem;
  }

  .company-ceo__text {
    padding: 30px 20px;
    border-radius: 15px;
  }

  .company-ceo__message {
    font-size: 1.4rem;
  }

  .company-ceo__signature {
    font-size: 1.5rem;
  }

  .company-staff {
    padding: 50px 16px;
  }

  .company-staff__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

  .company-staff__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .company-staff__role {
    font-size: 1.4rem;
  }
}
