@charset "UTF-8";
/* =========================================
 * 2025年以降向け プロ仕様CSSリセット
 * Tailwind CSSやChakra UIのようなモダンフレームワーク向けに設計。
 * -----------------------------------------
 * 目的：
 * - ブラウザ間の差異を標準化する。
 * - アクセシビリティとユーザビリティを向上させる。
 * - モダンデザインシステムのための堅牢な基盤を提供する。
 * ========================================= */
/* =========================================
 * ボックスサイジングとルートスタイル
 * ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
.w_container {
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .w_container {
    max-width: 340px;
    margin: 0 auto;
  }
}
/* =========================================
 * Bodyと基本タイポグラフィ
 * ========================================= */
body {
  margin: 0;
  min-height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* =========================================
 * レイアウトとメディア
 * ========================================= */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* =========================================
 * タイポグラフィリセット
 * ========================================= */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP";
  color: #191919;
}

/* =========================================
 * リストリセット
 * ========================================= */
ul,
ol {
  padding: 0;
  list-style: none;
}

/* =========================================
 * リンクと水平線（hr）のリセット
 * ========================================= */
a {
  color: inherit;
  text-decoration: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* =========================================
 * フォーム要素のリセット
 * ========================================= */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

::placeholder {
  opacity: 1;
  color: #9ca3af;
}

.sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
/* =========================================
 * アクセシビリティとフォーカススタイル
 * ========================================= */
:focus-visible {
  outline: 2px solid var(--focus-color, #3b82f6);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

/* =========================================
 * ルートコンテキストとSVGカラー
 * ========================================= */
#root,
#__next {
  isolation: isolate;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

/* ここからヘッダー */
header {
  padding: 24px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
}
header .header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* 右側にロゴと同じ幅のダミー領域を追加 */
}
header .header_inner .logo a {
  transition: 0.3s all;
}
header .header_inner .logo a:hover {
  opacity: 0.6;
}
header .header_inner nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
header .header_inner nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 12px 40px;
  background: #fff;
  border-radius: 50px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 1px 1px 7.3px 1px rgba(173, 173, 173, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
header .header_inner nav ul li {
  list-style: none;
  text-align: center;
}
header .header_inner nav ul li a {
  font-family: "Poppins";
  font-size: 16px;
  color: #333;
  letter-spacing: 0.8px;
  transition: 0.3s all;
}
header .header_inner nav ul li a:hover {
  color: #AB79FF;
}
header .header_inner nav ul li a span {
  display: block;
  font-size: 11px;
  color: #666;
  letter-spacing: 0.88px;
}
header .header_inner .logo img {
  width: 172px;
  height: auto;
  flex-shrink: 0;
  flex: 0 0 auto;
}
header .header_inner .header-spacer {
  width: 172px;
  flex-shrink: 0;
}

/* ヘッダー */
.sp-header {
  padding: 16px 20px;
  background: #fff;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 20px;
  /* ガラス感 */
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}
.sp-header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sp-header .logo img {
  height: 32px;
}
.sp-header .hamburger {
  width: 56px;
  height: 40px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(135deg, #8f6bff, #b78cff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.sp-header .hamburger .material-symbols-outlined {
  font-size: 28px;
}

/* フルスクリーンメニュー */
.sp-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, #ede9ff, #ffe9e3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
  /* 閉じる */
  /* ナビ */
}
.sp-menu.active {
  opacity: 1;
  visibility: visible;
}
.sp-menu .menu-close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, #8f6bff, #b78cff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-menu .menu-close .material-symbols-outlined {
  font-size: 24px;
}
.sp-menu .menu-nav {
  margin-top: 120px;
  padding: 0 40px;
}
.sp-menu .menu-nav ul {
  list-style: none;
}
.sp-menu .menu-nav li {
  margin-bottom: 16px;
}
.sp-menu .menu-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
}
.sp-menu .menu-nav a .en {
  font-size: 24px;
  letter-spacing: 2.4px;
  font-weight: 500;
  font-family: Poppins;
}
.sp-menu .menu-nav a .jp {
  font-size: 13px;
  color: #777;
}

@media (max-width: 767px) {
  .FV {
    padding-top: 10%;
  }
}
.FV .FV_inner {
  background: linear-gradient(104deg, #FFF 1.97%, rgba(255, 255, 255, 0) 84.92%), url("../img/FV_bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
}
.FV .FV_inner .FV_title h1 {
  color: #000;
  font-size: clamp(1.5rem, 0.7399rem + 3.2432vw, 3.375rem);
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 5.4px;
  text-align: center;
  padding-top: 46px;
}
@media screen and (max-width: 768px) {
  .FV .FV_inner .FV_title h1 {
    letter-spacing: 2.4px;
    line-height: 150%; /* 36px */
  }
}
.FV .FV_inner .FV_title .fv-animate span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  -webkit-animation: fvText 0.8s ease forwards;
          animation: fvText 0.8s ease forwards;
}
@-webkit-keyframes fvText {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
@keyframes fvText {
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.FV .FV_inner .FV_title p {
  font-size: clamp(0.8125rem, 0.7365rem + 0.3243vw, 1rem);
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 1.6px;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .FV .FV_inner .FV_title p {
    letter-spacing: 1.3px;
    line-height: 160%; /* 20.8px */
  }
}
.FV .FV_inner .FV_btn {
  display: flex;
  justify-content: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .FV .FV_inner .FV_btn {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}
.FV .FV_inner .FV_btn .FV_btn_right a::before {
  -webkit-animation: shine 3s infinite;
          animation: shine 3s infinite;
}
@-webkit-keyframes shine {
  0% {
    left: -120%;
  }
  50% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
@keyframes shine {
  0% {
    left: -120%;
  }
  50% {
    left: 130%;
  }
  100% {
    left: 130%;
  }
}
.FV .FV_inner .FV_btn a {
  position: relative;
  overflow: hidden;
  background: #AB79FF;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 16px 32px;
  border-radius: 32px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* 光のライン */
}
.FV .FV_inner .FV_btn a span {
  transition: transform 0.25s ease;
}
.FV .FV_inner .FV_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.6s;
}
.FV .FV_inner .FV_btn a:hover {
  /* 少し浮く */
  transform: translateY(-4px);
  /* 紫の光シャドウ */
  box-shadow: 0 10px 30px rgba(171, 121, 255, 0.45), 0 0 20px rgba(214, 80, 243, 0.25);
}
.FV .FV_inner .FV_btn a:hover span {
  transform: translate(6px, -6px);
}
.FV .FV_inner .FV_btn a:hover::before {
  left: 130%;
}
.FV .FV_inner img {
  margin: 0 auto;
}

.About {
  margin: 72px 0 15% 0;
}
.About .About_inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .About .About_inner {
    flex-direction: column-reverse;
  }
}
.About .About_inner .About_right .About_title h2 {
  font-size: clamp(2rem, 1.7973rem + 0.8649vw, 2.5rem);
  font-weight: 900;
  line-height: 130%; /* 52px */
  letter-spacing: 3.2px;
  background: linear-gradient(100deg, #FFA97A 7.97%, #D247FF 96.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 22px;
}
.About .About_inner .About_right .About_title p {
  font-size: clamp(0.875rem, 0.8243rem + 0.2162vw, 1rem);
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.28px;
}
.About .About_inner .About_right .About_point {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.About .About_inner .About_right .About_point p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 180%; /* 36px */
  letter-spacing: 1.6px;
  background: linear-gradient(96deg, #FFA97A 2.59%, #D44CF8 95.72%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 768px) {
  .About .About_inner .About_right .About_point p {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .About .About_inner .About_right .About_point p img {
    width: 30px;
  }
}

.Question {
  padding-bottom: 152px;
}
.Question .Question_inner .Question_title {
  margin-bottom: 56px;
}
.Question .Question_inner .Question_title h2 {
  margin-bottom: 16px;
  text-align: center;
  font-size: clamp(1.3125rem, 1.0338rem + 1.1892vw, 2rem);
  line-height: 150%; /* 48px */
  letter-spacing: 2.56px;
}
@media screen and (max-width: 768px) {
  .Question .Question_inner .Question_title h2 {
    letter-spacing: 1.68px;
  }
}
.Question .Question_inner .Question_title h2 span {
  font-weight: 900;
  background: linear-gradient(90deg, #978DFF 0%, #D147FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Question .Question_inner .Question_title p {
  font-size: clamp(0.875rem, 0.8497rem + 0.1081vw, 0.9375rem);
  font-weight: 500;
  line-height: 170%; /* 25.5px */
  letter-spacing: 1.2px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .Question .Question_inner .Question_title p {
    letter-spacing: 0.7px;
  }
}
.Question .Question_inner .Question_title p span {
  color: #AB79FF;
  font-weight: 700;
}

.Point {
  background: #F9F6FF;
  padding: 15% 0;
}
.Point .Point_inner .Point_area {
  display: flex;
  flex-direction: column;
  gap: 200px;
}
@media screen and (max-width: 768px) {
  .Point .Point_inner .Point_area {
    gap: 64px;
  }
}
.Point .Point_inner .Point_area .Point_box {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .Point .Point_inner .Point_area .Point_box {
    flex-direction: column;
  }
}
.Point .Point_inner .Point_area .Point_box .Point_left {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .Point .Point_inner .Point_area .Point_box .Point_left {
    width: 100%;
  }
}
.Point .Point_inner .Point_area .Point_box .Point_left .Point_title span {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.28px;
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  background: linear-gradient(95deg, #FFA97A 7.16%, #DA64F5 91.7%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 19.5px;
  border: 2px solid #FFA97B;
  padding: 2px 18px 1px 18px;
}
.Point .Point_inner .Point_area .Point_box .Point_left .Point_title h3 {
  font-size: clamp(1.75rem, 1.6486rem + 0.4324vw, 2rem);
  font-weight: 900;
  line-height: 150%; /* 42px */
  letter-spacing: 2.24px;
  background: linear-gradient(100deg, #FFA97A 7.97%, #D247FF 96.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.Point .Point_inner .Point_area .Point_box .Point_left .Point_text {
  margin-top: 24px;
}
.Point .Point_inner .Point_area .Point_box .Point_left .Point_text p {
  font-size: clamp(0.875rem, 0.8497rem + 0.1081vw, 0.9375rem);
  font-weight: 500;
  line-height: 170%; /* 25.5px */
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}
.Point .Point_inner .Point_area .Point_box .Point_left .Point_point ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.Point .Point_inner .Point_area .Point_box .Point_left .Point_point ul li {
  font-size: clamp(0.9375rem, 0.9122rem + 0.1081vw, 1rem);
  font-weight: 600;
  line-height: 180%; /* 28.8px */
  letter-spacing: 1.28px;
}
.Point .Point_inner .Point_area .Point_box .Point_right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .Point .Point_inner .Point_area .Point_box .Point_right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .Point .Point_inner .Point_area .Point_box .Point_right img {
    margin-top: 40px;
  }
}
.Point .Point_inner .Point_area .Point_box02 {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .Point .Point_inner .Point_area .Point_box02 {
    flex-direction: column;
  }
}

.CTA {
  margin: 15% 0 10% 0;
}
.CTA .CTA_inner {
  border-radius: 35px;
  background: linear-gradient(rgba(171, 121, 255, 0.5), rgba(171, 121, 255, 0.5)), url(../img/CTA_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.CTA .CTA_inner .CTA_right h2 {
  font-size: clamp(1.875rem, 1.6976rem + 0.7568vw, 2.3125rem);
  color: #fff;
  font-weight: 700;
  line-height: 140%; /* 51.8px */
  letter-spacing: 2.96px;
}

.CTA.pc_only .CTA_inner {
  padding: 16px 32px 0 0;
  display: flex;
  align-items: center;
}
.CTA.pc_only .CTA_inner .CTA_right h2 {
  margin-bottom: 16px;
}
.CTA.pc_only .CTA_inner .CTA_right .CTA_btn a {
  display: inline-block;
  transition: transform 0.25s ease;
}
.CTA.pc_only .CTA_inner .CTA_right .CTA_btn a:hover {
  transform: scale(1.05);
}
.CTA.pc_only .CTA_inner .CTA_right .CTA_btn .CTA_btn_02 {
  display: flex;
  justify-content: space-between;
}

.CTA.sp_only .CTA_inner .CTA_right h2 {
  padding-left: 16px;
}
.CTA.sp_only .CTA_inner .CTA_right .CTA_btn {
  text-align: center;
  margin: 0 auto;
}
.CTA.sp_only .CTA_inner .CTA_right .CTA_btn img {
  margin: 0 auto;
}

.Title {
  text-align: center;
}
.Title p {
  font-size: clamp(1.25rem, 1.1486rem + 0.4324vw, 1.5rem);
  font-family: Montserrat;
  color: #838383;
  font-weight: 600;
  line-height: 170%; /* 40.8px */
  letter-spacing: 1.2px;
  margin-bottom: 8px;
}
.Title h3 {
  font-size: clamp(1.75rem, 1.4966rem + 1.0811vw, 2.375rem);
  font-weight: 700;
  line-height: 150%; /* 57px */
  letter-spacing: 3.04px;
  background: linear-gradient(100deg, #FFA97A 7.97%, #D247FF 96.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.Features .Features_inner .Title {
  margin-bottom: 96px;
}
.Features .Features_inner .Features_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 96px;
}
.Features .Features_inner .Features_area .Features_box {
  width: 28%;
  text-align: center;
  position: relative;
}
.Features .Features_inner .Features_area .Features_box .img_wrap {
  position: relative;
  display: inline-block;
}
.Features .Features_inner .Features_area .Features_box .img_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 200, 255, 0.6) 0%, rgba(255, 200, 255, 0.2) 60%, rgba(255, 200, 255, 0) 100%);
  filter: blur(30px);
  z-index: 1;
}
.Features .Features_inner .Features_area .Features_box .img_wrap img {
  position: relative;
  z-index: 2;
  display: block;
}
.Features .Features_inner .Features_area .Features_box h4 {
  font-size: 24px;
  color: #AB79FF;
  font-weight: 900;
  line-height: 150%; /* 36px */
  letter-spacing: 1.2px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.Features .Features_inner .Features_area .Features_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  letter-spacing: 0.8px;
  text-align: left;
}
.Features .Features_inner .Features_area .Features_box a {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #AB79FF;
  color: #fff;
  padding: 11px 32px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.Features .Features_inner .Features_area .Features_box a span {
  transition: transform 0.25s ease;
}
.Features .Features_inner .Features_area .Features_box a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(171, 121, 255, 0.35);
}
.Features .Features_inner .Features_area .Features_box a:hover span {
  transform: translateX(6px);
}
.Features .Features_inner .Features_area .Features_box_02, .Features .Features_inner .Features_area .Features_box_05, .Features .Features_inner .Features_area .Features_box_08 {
  margin-top: 40px;
}
.Features .Features_inner .Features_area .Features_box_03, .Features .Features_inner .Features_area .Features_box_06, .Features .Features_inner .Features_area .Features_box_09 {
  margin-top: 80px;
}

.Features {
  /* 選択されたタブ */
}
.Features .Features_inner .feature_tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
}
.Features .Features_inner .tab {
  position: relative;
  padding: 12px 28px;
  border-radius: 40px;
  border: 2px solid #F29B64;
  background: #fff;
  color: #F29B64;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  /* 吹き出し三角 */
}
.Features .Features_inner .tab::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid transparent;
  opacity: 0;
  transition: 0.3s;
}
.Features .Features_inner .feature_contents {
  margin-top: 64px;
}
.Features .Features_inner .feature_contents .content .Features_box {
  margin-bottom: 80px;
  width: 100%;
  text-align: center;
  position: relative;
}
.Features .Features_inner .feature_contents .content .Features_box .img_wrap {
  position: relative;
  display: inline-block;
}
.Features .Features_inner .feature_contents .content .Features_box .img_wrap::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 140%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 200, 255, 0.6) 0%, rgba(255, 200, 255, 0.2) 60%, rgba(255, 200, 255, 0) 100%);
  filter: blur(30px);
  z-index: 1;
}
.Features .Features_inner .feature_contents .content .Features_box .img_wrap img {
  position: relative;
  z-index: 2;
  display: block;
}
.Features .Features_inner .feature_contents .content .Features_box h4 {
  font-size: 24px;
  color: #AB79FF;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 1.2px;
  margin-top: 24px;
  margin-bottom: 16px;
}
.Features .Features_inner .feature_contents .content .Features_box p {
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.8px;
  text-align: left;
}
.Features .Features_inner .feature_contents .content .Features_box a {
  margin-top: 24px;
  display: inline-block;
  background-color: #AB79FF;
  color: #fff;
  align-items: center;
  padding: 11px 32px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.Features .tab.active {
  border: none;
  color: #fff;
  background: linear-gradient(90deg, #FFA96C, #C14CFF);
}
.Features .tab.active::after {
  opacity: 1;
  border-top: 10px solid #C14CFF;
}
.Features .feature_contents {
  margin-top: 30px;
}
.Features .content {
  display: none;
}
.Features .content.active {
  display: block;
}

.Merit {
  margin-top: 15%;
  padding: 10% 0 15% 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/Merit_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.Merit .Merit_inner .Merit_title {
  text-align: left;
  margin-bottom: 104px;
}
@media screen and (max-width: 768px) {
  .Merit .Merit_inner .Merit_title {
    margin-bottom: 16px;
  }
}
.Merit .Merit_inner .Merit_area {
  text-align: center;
}
.Merit .Merit_inner .Merit_area img {
  margin: 0 auto;
}
.Merit .Merit_inner .Merit_area img:nth-of-type(2) {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .Merit .Merit_inner .Merit_area img:nth-of-type(2) {
    margin-top: 8px;
  }
}
.Merit .Merit_inner .Merit_area p {
  text-align: left;
  width: 60%;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
  line-height: 170%; /* 25.5px */
  letter-spacing: 0.75px;
}
@media screen and (max-width: 768px) {
  .Merit .Merit_inner .Merit_area p {
    width: 90%;
    margin-bottom: 24px;
  }
}

.Plan .Plan_inner .Plan_area {
  margin-top: 112px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .Plan .Plan_inner .Plan_area {
    flex-direction: column;
    gap: 96px;
    margin-top: 80px;
  }
}
.Plan .Plan_inner .Plan_area .Plan_box {
  border-radius: 12px;
  box-shadow: 0 0 10px 5px rgba(174, 174, 174, 0.25);
  padding: 80px 24px 24px 24px;
  width: 30%;
  background: #F5F6FA;
  position: relative;
}
@media screen and (max-width: 768px) {
  .Plan .Plan_inner .Plan_area .Plan_box {
    width: 100%;
  }
}
.Plan .Plan_inner .Plan_area .Plan_box img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.Plan .Plan_inner .Plan_area .Plan_box h5 {
  font-size: 26px;
  font-weight: 700;
  line-height: 150%; /* 39px */
  letter-spacing: 1.3px;
  background-color: #fff;
  text-align: center;
  border-radius: 23.5px;
  padding: 5px 0;
  margin-bottom: 8px;
}
.Plan .Plan_inner .Plan_area .Plan_box .Plan_fee p {
  font-size: 48px;
  font-weight: 600;
  line-height: 150%; /* 72px */
  font-family: Roboto;
}
.Plan .Plan_inner .Plan_area .Plan_box .Plan_fee p span {
  font-size: 24px;
  font-weight: 600;
}
.Plan .Plan_inner .Plan_area .Plan_box .Plan_check {
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.Plan .Plan_inner .Plan_area .Plan_box .Plan_check h6 {
  color: #797979;
  font-size: 13px;
  font-weight: 500;
  line-height: 150%; /* 19.5px */
  letter-spacing: 0.65px;
  margin-bottom: 8px;
}
.Plan .Plan_inner .Plan_area .Plan_box .Plan_check ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.Plan .Plan_inner .Plan_area .Plan_box .Plan_check ul li {
  font-size: 16px;
  font-weight: 500;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
}
.Plan .Plan_inner .Plan_area .Plan_box_02 {
  background: #AB79FF;
}
.Plan .Plan_inner .Plan_area .Plan_box_02 h5 {
  color: #AB79FF;
}
.Plan .Plan_inner .Plan_area .Plan_box_02 .Plan_fee p {
  color: #fff;
}
.Plan .Plan_inner .Plan_text {
  text-align: right;
  margin-top: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%; /* 24px */
  letter-spacing: 0.8px;
}

/* ここから流れ */
.Flow {
  margin-top: 15%;
}
.Flow .Flow_inner .Flow_area {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 80px auto;
  max-width: 1000px;
}
.Flow .Flow_inner .Flow_area .flow-step {
  position: relative;
  width: 23%;
  text-align: center;
}
.Flow .Flow_inner .Flow_area .flow-step::after {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #9b7df6;
}
.Flow .Flow_inner .Flow_area .flow-step .flow-head .flow-num {
  font-family: Montserrat;
  font-size: 40px;
  font-weight: 400;
  line-height: 170%; /* 68px */
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 8px;
}
.Flow .Flow_inner .Flow_area .flow-step .flow-head .flow-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 170%; /* 40.8px */
  letter-spacing: 1.2px;
  color: #9b7df6;
  margin-top: 32px;
}
.Flow .Flow_inner .Flow_area .flow-step .flow-icon {
  margin-top: 32px;
}
.Flow .Flow_inner .Flow_area .flow-step .flow-icon img {
  width: 100%;
}
.Flow .Flow_inner .Flow_area .flow-step .flow-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 170%; /* 25.5px */
  letter-spacing: 0.75px;
  margin-top: 16px;
}
.Flow .Flow_inner .sp_only .Flow_box_area_sp {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.Flow .Flow_inner .sp_only .Flow_box_area_sp .Flow_box_sp {
  background: #F9F6FF;
  display: flex;
  align-items: center;
  padding: 8px 8px 16px 8px;
  border-radius: 12px;
  box-shadow: 1px 1px 9px 2px rgba(198, 198, 198, 0.25);
}
.Flow .Flow_inner .sp_only .Flow_box_area_sp .Flow_box_sp img {
  width: 100px;
}
.Flow .Flow_inner .sp_only .Flow_box_area_sp .Flow_box_sp .Flow_box_sp_right h2 {
  font-family: Montserrat;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1.6px;
}
.Flow .Flow_inner .sp_only .Flow_box_area_sp .Flow_box_sp .Flow_box_sp_right h3 {
  color: #AB79FF;
  font-size: 20px;
  font-weight: 700;
  line-height: 170%; /* 34px */
  letter-spacing: 1px;
}
.Flow .Flow_inner .sp_only .Flow_box_area_sp .Flow_box_sp .Flow_box_sp_right p {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.75px;
}

/* 横線 */
.flow::before {
  content: "";
  position: absolute;
  top: 87px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #9b7df6;
}

.flow-num {
  display: block;
  font-size: 22px;
  font-weight: bold;
}

.Download {
  padding: 56px 0;
}
@media (max-width: 767px) {
  .Download {
    padding: 10% 0;
  }
}
.Download .Download_inner .Download_text {
  margin-top: 6%;
}
.Download .Download_inner .Download_text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 170%; /* 25.5px */
  letter-spacing: 1.2px;
  text-align: center;
}
.Download .Download_inner .Download_text p span {
  color: #D650F3;
  font-weight: 700;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}
.Download .Download_inner .Download_area {
  max-width: 650px;
  margin: 8% auto;
}
.Download .Download_inner .Download_area .Download_area_inner .wpcf7-hidden,
.Download .Download_inner .Download_area .Download_area_inner .wpcf7 form .hidden-fields-container {
  display: none;
}
.Download .Download_inner .Download_area .Download_area_inner p {
  margin-bottom: 24px;
  width: 100%;
}
.Download .Download_inner .Download_area .Download_area_inner p label {
  font-size: 16px;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  letter-spacing: 0.64px;
  display: inline-block;
  margin-bottom: 8px;
}
.Download .Download_inner .Download_area .Download_area_inner p label .Hissu {
  color: #FF3F3F;
}
.Download .Download_inner .Download_area .Download_area_inner p input {
  border: 1px solid #191919;
  background: #FBFBFB;
  border-radius: 5px;
  height: 47px;
  padding: 0 12px;
}
.Download .Download_inner .Download_area .Download_area_inner p input:where(:focus-visible) {
  outline: 1px solid CanvasText #E75D01;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}
.Download .Download_inner .Download_area .Download_area_inner p select {
  border: 1px solid #191919;
  background: #FBFBFB;
  border-radius: 5px;
  height: 47px;
  padding: 0 12px;
  width: 100%;
}
.Download .Download_inner .Download_area .Download_area_inner p textarea {
  background: #F6F6F6;
  border-radius: 5px;
  border: none;
  height: 200px;
  width: 100%;
  padding: 12px 12px;
}
.Download .Download_inner .Download_area .Download_area_inner p .wpcf7-text {
  width: 100%;
}
.Download .Download_inner .Download_area .Download_area_inner p .Company {
  font-size: 13px;
  letter-spacing: 0.13px;
  font-weight: 500;
  line-height: 160%; /* 20.8px */
}
.Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item {
  width: 42%;
  margin-left: 0px;
}
@media (max-width: 767px) {
  .Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item {
    margin-right: 18px;
  }
}
.Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 24px;
}
@media (max-width: 767px) {
  .Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item label {
    width: 180px;
    gap: 4px;
  }
}
.Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item label .wpcf7-list-item-label {
  font-size: 16px;
}
@media (max-width: 767px) {
  .Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item label .wpcf7-list-item-label {
    font-size: 13px;
  }
}
.Download .Download_inner .Download_area .Download_area_inner p .wpcf7-list-item label span {
  vertical-align: middle;
  font-weight: 500;
  letter-spacing: 0.16px;
}
.Download .Download_inner .Download_area .Download_area_inner p .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
}

.Privacy {
  font-size: 12px;
  letter-spacing: 0.12px;
  line-height: 140%; /* 16.8px */
  font-weight: 500;
  margin-top: 10%;
  margin-bottom: 48px;
  text-align: center;
}
@media (max-width: 767px) {
  .Privacy {
    margin-bottom: 0;
  }
}
.Privacy a {
  color: #AB79FF;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  transition: 0.3s all;
}
.Privacy a:hover {
  opacity: 0.7;
}

.Download_form_btn {
  text-align: center;
}
.Download_form_btn input {
  border-radius: 33px !important;
  background: linear-gradient(92deg, #FFA97A 5.07%, #D650F3 95.99%) !important;
  box-shadow: 1px 1px 11.7px 1px rgba(131, 131, 131, 0.25);
  border: none !important;
  font-size: 16px;
  color: #FFF;
  letter-spacing: 0.8px;
  padding: 8px 72px 8px 72px !important;
  font-weight: 700;
  cursor: pointer;
  /* アニメーション */
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.Download_form_btn input:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(214, 80, 243, 0.35);
}
.Download_form_btn input:active {
  transform: scale(0.98);
}
.Download_form_btn .wpcf7-spinner {
  display: none;
}

.Contact_confirm {
  padding: 5% 15%;
}
@media (max-width: 767px) {
  .Contact_confirm {
    padding: 10% 0 15% 0;
  }
}
.Contact_confirm .Contact_confirm_inner {
  width: 600px;
}
.Contact_confirm .Contact_confirm_inner .Title {
  margin-bottom: 56px;
}
@media (max-width: 767px) {
  .Contact_confirm .Contact_confirm_inner .Title {
    margin-bottom: 32px;
  }
}
.Contact_confirm .Contact_confirm_inner .Download_text {
  margin-bottom: 56px;
  font-size: 15px;
  font-weight: 500;
  line-height: 170%; /* 25.5px */
  letter-spacing: 1.2px;
  text-align: center;
}
@media (max-width: 767px) {
  .Contact_confirm .Contact_confirm_inner .Download_text {
    font-size: 13px;
  }
}
.Contact_confirm .Contact_confirm_inner .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.Contact_confirm .Contact_confirm_inner .wpcf7-form p {
  font-size: 13px;
  letter-spacing: 0.65px;
  font-weight: 500;
}
.Contact_confirm .Contact_confirm_inner .wpcf7-form p label {
  color: #AB79FF;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 150%; /* 24px */
  display: inline-block;
  margin-bottom: 8px;
}
.Contact_confirm .Contact_confirm_inner .Download_form_btn p {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .Contact_confirm .Contact_confirm_inner .Download_form_btn p {
    flex-direction: column-reverse;
    gap: 0;
  }
}
.Contact_confirm .Contact_confirm_inner .Download_form_btn p .wpcf7-previous {
  background: linear-gradient(92deg, #F4F4F4 5.07%, #E5E5E5 95.99%);
  color: #555555;
}
.Contact_confirm .Contact_confirm_inner .Download_form_btn p .wpcf7-previous:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.Contact_thanks {
  padding: 8% 0;
}
.Contact_thanks .Contact_thanks_inner img {
  margin: 5% auto;
}
@media screen and (max-width: 768px) {
  .Contact_thanks .Contact_thanks_inner img {
    width: 50%;
  }
}
.Contact_thanks .Contact_thanks_inner .Download_text p {
  font-size: 16px;
  color: #191919;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 170%; /* 27.2px */
  letter-spacing: 1.28px;
}
.Contact_thanks .Contact_thanks_inner .Download_text p span {
  color: #AB79FF;
  font-weight: 900;
}
.Contact_thanks .Contact_thanks_inner .Download_thanks_btn {
  text-align: center;
  margin-top: 5%;
}
.Contact_thanks .Contact_thanks_inner .Download_thanks_btn a {
  display: inline-block;
  color: #fff;
  padding: 1.5% 8%;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 150%; /* 27px */
  border-radius: 35.5px;
  background: linear-gradient(92deg, #FFA97A 5.07%, #D650F3 95.99%);
  box-shadow: 1px 1px 11.7px 1px rgba(131, 131, 131, 0.25);
  transition: 0.3s all;
}
.Contact_thanks .Contact_thanks_inner .Download_thanks_btn a:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(214, 80, 243, 0.35);
}

footer {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(../img/Footer_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 112px 0 40px 0;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 64px 0 24px 0;
  }
}
footer .footer_inner .footer_menu {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_menu {
    flex-direction: column;
    gap: 40px;
  }
}
footer .footer_inner .footer_menu a {
  transition: 0.3s all;
}
footer .footer_inner .footer_menu a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_menu a img {
    width: 176px;
  }
}
footer .footer_inner .footer_menu .footer_menu_box {
  display: flex;
  gap: 160px;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_menu .footer_menu_box {
    justify-content: left;
    gap: 56px;
  }
}
footer .footer_inner .footer_menu .footer_menu_box ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .footer_inner .footer_menu .footer_menu_box ul li a {
  transition: 0.3s all;
  font-family: Poppins;
  font-size: clamp(1.125rem, 0.973rem + 0.6486vw, 1.5rem);
  font-weight: 400;
  line-height: 170%; /* 40.8px */
  letter-spacing: 1.2px;
}
footer .footer_inner .footer_menu .footer_menu_box ul li a:hover {
  background: linear-gradient(100deg, #FFA97A 7.97%, #D247FF 96.9%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Safari / Chrome 用 */
  background-clip: text;
  color: transparent;
}
footer .footer_inner .footer_menu img {
  width: 190px;
  max-width: 100%;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer_inner .footer_text {
  text-align: right;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .footer_inner .footer_text a {
  transition: 0.3s all;
}
footer .footer_inner .footer_text a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_text {
    text-align: left;
    margin-top: 40px;
  }
}
footer .footer_inner .footer_text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 170%; /* 23.8px */
  letter-spacing: 0.7px;
}
footer .footer_inner .footer_small {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .footer_inner .footer_small {
    flex-direction: column-reverse;
    gap: 24px;
    margin-top: 24px;
  }
}
footer .footer_inner .footer_small p {
  font-size: 12px;
}

.download-popup-all {
  z-index: 999;
  width: 150px;
  height: 150px;
  background: #ff4040;
  border-radius: 50%;
  position: fixed;
  right: -200px; /* 最初は画面外 */
  bottom: 40px;
  display: flex;
  justify-content: center;
  padding-top: 56px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1), transform 0.3s ease, box-shadow 0.3s ease;
  /* 閉じるボタン */
  /* リンク */
  /* 中身 */
}
.download-popup-all.is-show {
  right: 40px;
}
.download-popup-all:has(.popup-link:hover) {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}
.download-popup-all .popup-close {
  position: absolute;
  right: -4px;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}
.download-popup-all .popup-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.download-popup-all .popup-inner {
  text-align: center;
  color: #fff;
  position: relative;
  /* アイコン */
}
.download-popup-all .popup-inner h2 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.download-popup-all .popup-inner .popup-btn {
  display: inline-block;
  background: #fff;
  color: #ff4040;
  padding: 3px 11px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 11px;
}
.download-popup-all .popup-inner .popup-play {
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin: 0 auto;
}
.download-popup-all .popup-inner .popup-icon {
  width: 84px;
  margin-bottom: 10px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-40%, -60%);
}

.sp-menu .download-popup {
  z-index: 999;
  width: 150px;
  height: 150px;
  background: #ff4040;
  border-radius: 50%;
  position: fixed;
  right: 24px; /* 最初は画面外 */
  bottom: 32px;
  display: flex;
  justify-content: center;
  padding-top: 56px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform-origin: center;
  /* 閉じるボタン */
  /* リンク */
  /* 中身 */
}
.sp-menu .download-popup .popup-close {
  position: absolute;
  right: -4px;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #000;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}
.sp-menu .download-popup .popup-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.sp-menu .download-popup .popup-inner {
  text-align: center;
  color: #fff;
  position: relative;
  /* アイコン */
}
.sp-menu .download-popup .popup-inner h2 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #fff;
}
.sp-menu .download-popup .popup-inner .popup-btn {
  display: inline-block;
  background: #fff;
  color: #ff4040;
  padding: 3px 11px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  margin-bottom: 12px;
  font-size: 11px;
}
.sp-menu .download-popup .popup-inner .popup-play {
  width: 0;
  height: 0;
  border-left: 14px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin: 0 auto;
}
.sp-menu .download-popup .popup-inner .popup-icon {
  width: 84px;
  margin-bottom: 10px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-40%, -60%);
}

.modaal-container {
  position: relative;
  width: 784px !important;
  border-radius: 10px !important;
  z-index: 1;
}
.modaal-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  background: linear-gradient(107deg, rgba(255, 175, 135, 0.45) 0%, rgba(210, 110, 255, 0.45) 100%);
  filter: blur(130px);
  opacity: 0.95;
  z-index: -1;
}
@media (max-width: 768px) {
  .modaal-container {
    width: 100% !important;
  }
}

.modaal-content-container {
  padding: 0 !important;
}

.Top_modal_box {
  width: 784px !important;
  display: flex !important;
  background: #fff;
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .Top_modal_box {
    width: 100% !important;
    flex-direction: column;
  }
}
.Top_modal_box .Top_modal_left {
  padding: 24px 48px 24px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.Top_modal_box .Top_modal_left img {
  width: 176.502px;
  height: 351.37px;
}
@media (max-width: 768px) {
  .Top_modal_box .Top_modal_left {
    padding: 16px 0px;
  }
}
.Top_modal_box .Top_modal_right {
  width: 496px !important;
  padding: 64px 48px;
  border-radius: 0px 10px 10px 0px !important;
  background: #f7f5f4;
}
@media (max-width: 768px) {
  .Top_modal_box .Top_modal_right {
    width: 100% !important;
    padding: 24px;
    border-radius: 0px 0px 10px 10px;
  }
}
.Top_modal_box .Top_modal_right .Top_modal_title {
  margin-bottom: 24px;
}
.Top_modal_box .Top_modal_right .Top_modal_title h3 {
  font-size: clamp(1.375rem, 1.223rem + 0.6486vw, 1.75rem);
  margin-bottom: 16px;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.4px;
}
.Top_modal_box .Top_modal_right .Top_modal_title h4 {
  font-size: 16px;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 0.32px;
}
.Top_modal_box .Top_modal_right p {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.28px;
}

.modaal-close {
  position: absolute !important;
  z-index: 10;
  width: 32px !important;
  height: 32px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50%;
  background: linear-gradient(132deg, #ffa87a -24.62%, #d650f2 100%) !important;
  font-size: 0 !important;
  color: transparent !important;
  line-height: 0 !important;
  overflow: hidden;
  /* いったん完全リセット */
  /* 真ん中で交差 */
}
.modaal-close::before, .modaal-close::after {
  content: "";
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  width: 14px !important;
  height: 2px !important;
  margin: 0 !important;
  background: #fff !important;
  border: 0 !important;
  transform-origin: center center !important;
}
.modaal-close::before {
  transform: translate(-50%, -50%) rotate(45deg) !important;
}
.modaal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.Top_modal_left video {
  width: 176px;
  height: auto;
  display: block;
}

.Top_modal_left video {
  position: relative;
  z-index: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}
/*# sourceMappingURL=main.css.map */