@charset "UTF-8";
/*マップの設定*/
/*mixin設定*/
/* ===========================
   CSS RESET & ROOT VARIABLES
   =========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a,
abbr,
address,
article,
aside,
audio,
b,
blockquote,
body,
button,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
input,
ins,
kbd,
label,
legend,
li,
main,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
select,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
textarea,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  color: #000000;
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none;
  line-height: 1;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

:root {
  --color-primary: #003087;
  --color-secondary: #ffd200;
  --color-red: #e8515e;
  --color-yellow-light: #ffe87f;
  --color-yellow-bg: #fff5b7;
  --color-orange-mid: #ee7951;
  --color-blue-light: #ebf3ff;
  --color-blue-mid: #1a8dff;
  --color-blue-dull: #3e62ad;
  --color-blue-icon: #1ea5db;
  --color-pink: #f08e89;
  --color-pink-light: #f7c2bb;
  --color-pink-bg: #f8cace;
  --color-green: #56b879;
  --color-green-light: #96cea1;
  --color-green-bg: #f2f9f3;
  --color-lavender: #e3e2f0;
  --color-lavender-dull: #eae8f3;
  --color-white: #ffffff;
  --color-dark: #1a1a2e;
  --color-gray: #4d5357;
  --color-gray-light: #f5f5f5;
  --color-bluegray-light: #eff0f1;
  --color-border: #adadad;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Barlow", sans-serif;
  --font-en-cond: "Barlow Condensed", sans-serif;
  --max-width: 1100px;
  --max-width-board: 900px;
  --nav-height: 89px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  color: var(--color-dark);
  background: var(--color-white);
  overflow-x: hidden;
  line-height: 1.7;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.align-left {
  text-align: left !important;
}

.align-right {
  text-align: right !important;
}

.align-center {
  text-align: center !important;
}

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

@media screen and (max-width: 768px) {
  .hide-max-md {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .hide-max-sm {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hide-min-md {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  .hide-min-sm {
    display: none;
  }
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  background-color: var(--color-white);
}

.nav__inner {
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 3.8%;
}
@media screen and (min-width: 1440px) {
  .nav__inner {
    margin-left: calc((100% - 1440px) / 2);
    width: calc(100% - (100% - 1440px) / 2);
    padding-left: 57px;
  }
}
.nav__inner {
  margin-right: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav__links li {
  width: 11em;
  width: clamp(8em, 10vw, 11em);
  min-width: 0;
  height: 100%;
}

.nav__links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  font-size: clamp(11px, 0.9vw, 12px);
  font-weight: bold;
  padding: 6px 0;
  transition: background 0.2s;
  white-space: nowrap;
  border: 2px solid var(--color-primary);
  border-right: none;
}
.nav__links a.active-menu {
  color: var(--color-white);
  background-color: var(--color-primary);
}

.nav__links a:hover {
  color: var(--color-white);
  background-color: var(--color-primary);
  background-color: color-mix(in srgb, var(--color-primary), white 10%);
}

.nav__links .nav__cta {
  background: var(--color-secondary) !important;
  color: var(--color-primary) !important;
  font-weight: 700 !important;
  padding: 8px 14px !important;
  border: none !important;
  border-left: 2px solid var(--color-primary) !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__links .nav__cta img {
  position: relative;
  filter: invert(15%) sepia(86%) saturate(2915%) hue-rotate(214deg) brightness(79%) contrast(105%);
  width: 1em;
  height: 1em;
}

.nav__cta:hover {
  background: #e6c200 !important;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 16px 0 24px;
  z-index: 999;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.nav__mobile-menu.is-open {
  display: block;
}

.nav__mobile-menu ul {
  list-style: none;
}
.nav__mobile-menu ul li {
  width: 100%;
}

.nav__mobile-menu ul li a {
  display: block;
  color: var(--color-white);
  font-size: 15px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s;
}

.nav__mobile-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav__mobile-menu .nav__mobile-cta {
  margin: 16px 24px 0;
  background: var(--color-secondary);
  color: var(--color-primary) !important;
  font-weight: 700;
  border-radius: 8px;
  text-align: center;
  padding: 14px 24px !important;
  border-bottom: none !important;
  display: flex;
  justify-content: center;
  gap: 2em;
}
.nav__mobile-menu .nav__mobile-cta img {
  position: relative;
  filter: invert(15%) sepia(86%) saturate(2915%) hue-rotate(214deg) brightness(79%) contrast(105%);
  width: 1em;
  height: 1em;
}
.nav__mobile-menu .nav__mobile-cta:hover {
  background: #e6c200 !important;
}

/* ===========================
   SECTION 1: HERO
   =========================== */
.hero {
  background: url(images/hero-bg.png) no-repeat;
  background-size: cover;
  padding: clamp(40px, 6vw, 80px) 24px clamp(30px, 5vw, 60px);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__inner .hero__title-area {
  grid-column: 1/3;
  grid-row: 1/2;
  margin: 0 auto;
}
.hero__inner .hero__btns {
  grid-column: 1/2;
  grid-row: 2/3;
}
.hero__inner .hero__image {
  grid-column: 2/3;
  grid-row: 2/3;
}

.hero__tag {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: clamp(11px, 0.9vw, 13px);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.hero__title-area {
  max-width: 987px;
}

.hero__subtitle {
  margin-bottom: 8px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 1vw;
  border-bottom: 4px solid var(--color-primary);
  gap: 0.8em;
}
.hero__subtitle img {
  width: auto;
}
.hero__subtitle img:nth-child(1) {
  width: clamp(60px, 28vw, 280px);
}
.hero__subtitle img:nth-child(2) {
  width: clamp(60px, 30vw, 301px);
  margin-left: 1em;
}
.hero__subtitle img:nth-child(3) {
  width: clamp(60px, 33vw, 335px);
}
@media screen and (max-width: 768px) {
  .hero__subtitle {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero__subtitle img:nth-child(1) {
    margin: 0 30%;
  }
  .hero__subtitle img:nth-child(2) {
    width: clamp(100px, 48%, 301px);
    margin-left: 0;
  }
  .hero__subtitle img:nth-child(3) {
    width: clamp(100px, 48%, 335px);
  }
}

.hero__title {
  margin-bottom: 4px;
}

.hero__btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  max-width: 292px;
  max-height: 102px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-jp);
  font-weight: 700;
  border-radius: 18px;
  cursor: pointer;
  transition: all 0.2s;
  border: 4px solid var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  width: 20em;
}

.hero__btns .btn {
  gap: 0.5em;
  font-size: clamp(13px, 1.2vw, 18px);
  padding: clamp(12px, 1.7vw, 22px) clamp(20px, 2.5vw, 32px) clamp(10px, 1.7vw, 14px);
  letter-spacing: 0.2em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__btns .btn::after {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
  margin-top: 5px;
  border-radius: 1px;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  background: #002060;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn--secondary:hover {
  background: #e6c200;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn--primary::before,
.btn--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.3);
  clip-path: ellipse(62% 48% at 50% 10%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.btn--primary,
.btn--secondary {
  position: relative;
  overflow: hidden;
}

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

.hero__image img {
  width: 100%;
  max-width: 745px;
}

.hero__float-badge {
  position: fixed;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  font-size: clamp(10px, 1.5vw, 26px);
  font-weight: 700;
  padding: 1em 1em 1.2em;
  border-top-left-radius: 8px;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  writing-mode: vertical-rl;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
  animation: pulse 2s infinite;
  z-index: 999;
}
.hero__float-badge span {
  color: var(--color-white);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* ===========================
   SECTION 2: PROBLEM
   =========================== */
.problem {
  padding: clamp(50px, 7vw, 90px) 24px;
  background: url(images/bg-problem.png) no-repeat;
  background-size: cover;
}

.problem__inner {
  max-width: var(--max-width-board);
  border: 4px solid var(--color-primary);
  background: var(--color-white);
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  padding: clamp(12px, 3vw, 40px) clamp(12px, 3vw, 30px);
}

.problem__img01 {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-10%) translateY(-10%);
}
@media screen and (max-width: 992px) {
  .problem__img01 {
    width: 30%;
  }
}

.problem__heading {
  font-size: clamp(19px, 2.5vw, 33px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-primary);
  margin-bottom: 1.4em;
  margin-left: 30%;
}

.problem__heading em {
  color: var(--color-blue-mid);
  font-size: clamp(20px, 4.5vw, 57px);
  line-height: 1.5;
  font-style: normal;
  font-weight: 700;
  font-feature-settings: "palt";
}

.horizontal-line {
  width: 100%;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 2.5px;
  border: none;
}

.vertical-line {
  width: 4px;
  height: 320px;
  background-color: var(--color-primary);
  margin: clamp(20px, 2.5vw, 60px) clamp(20px, 2.5vw, 30px) 0;
  border-radius: 2.5px;
  border: none;
}

.problem__cards {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 576px) {
  .problem__cards {
    flex-wrap: wrap;
  }
  .problem__cards .vertical-line {
    display: none;
  }
}

.problem-card {
  border-radius: 12px;
  padding: clamp(20px, 2.5vw, 50px) 0 10px;
  width: 30%;
  text-align: center;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.problem-card:nth-child(1) {
  padding-left: 0;
}
.problem-card:nth-child(5) {
  padding-right: 0;
}
@media screen and (max-width: 576px) {
  .problem-card {
    width: 100%;
  }
}

.problem-card__icon {
  width: clamp(120px, 17vw, 156px);
  aspect-ratio: 156/212;
  margin: 0 auto 16px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.problem-card__icon img {
  width: 100%;
}

.problem-card__text {
  background: var(--color-blue-light);
  border: 4px solid var(--color-primary);
  border-radius: 40px;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--color-dark);
  line-height: 1.2;
  min-height: 6em;
  padding: 0.8em 0.5em;
  color: var(--color-primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   SECTION 3: SOLUTION
   =========================== */
.solution {
  background: var(--color-yellow-light);
  background-image: url(images/bg-solution.webp);
  background-size: 100%;
  padding: clamp(50px, 7vw, 90px) 24px;
  position: relative;
  overflow: hidden;
}

.solution__inner {
  max-width: var(--max-width-board);
  border: 4px solid var(--color-primary);
  background-color: var(--color-white);
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  padding: clamp(12px, 3vw, 40px) clamp(12px, 3vw, 30px);
}

.solution__heading {
  font-size: clamp(24px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
}

.solution__heading__text01 {
  display: block;
  text-align: center;
  width: 100%;
  color: var(--color-primary);
  font-size: clamp(30px, 3.5vw, 60px);
  font-weight: bold;
  background: url(images/bubble.svg) no-repeat center;
  background-size: contain;
  padding: 0.5em 0 1em;
  margin-bottom: 0.5em;
}

.solution__heading .brand {
  text-align: left;
  position: relative;
  margin-bottom: 1em;
}
.solution__heading .brand .brand-logo {
  width: 70%;
}
.solution__heading .brand .solution-person {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(20%);
  width: 38%;
}

.solution__heading .resolve {
  color: var(--color-primary);
  font-size: clamp(30px, 4.2vw, 73px);
  display: block;
  letter-spacing: 0.1em;
}
.solution__heading .resolve span {
  font-size: clamp(18px, 2.5vw, 50px);
  color: currentColor;
}

.solution__features {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 576px) {
  .solution__features {
    flex-wrap: wrap;
  }
  .solution__features .vertical-line {
    display: none;
  }
}

.solution-feat {
  border-radius: 12px;
  padding-bottom: 10px;
  width: 45%;
  text-align: center;
  border: 2px solid transparent;
}
@media screen and (max-width: 576px) {
  .solution-feat {
    width: 100%;
  }
}

.solution-feat__img {
  width: 100%;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--color-white);
  display: flex;
  align-items: end;
  justify-content: center;
}

.solution-feat__img .person06 {
  width: 53%;
  max-width: 200px;
}
.solution-feat__img .person07 {
  width: 70%;
  max-width: 200px;
}

.solution-feat__text {
  background: var(--color-yellow-bg);
  border: 4px solid var(--color-primary);
  border-radius: 40px;
  font-size: clamp(12px, 1vw, 14px);
  color: var(--color-dark);
  line-height: 1.2;
  min-height: 6em;
  padding: 0.8em 0.5em;
  color: var(--color-primary);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===========================
   SECTION 4: POINTS INTRO
   =========================== */
.points-intro {
  background: var(--color-red);
  background-image: url(images/bg-points-header.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding: clamp(30px, 4vw, 50px) 24px;
  position: relative;
  scroll-margin-top: 100px;
}

.points-intro__inner {
  max-width: var(--max-width-board);
  position: relative;
  margin: 0 auto;
}

.points-intro__label {
  display: inline-block;
  font-size: clamp(20px, 5vw, 50px);
  font-weight: bold;
  padding: 0.1em 0.6em 0.2em;
  line-height: 1;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
  color: var(--color-red);
  background-color: var(--color-secondary);
  border-radius: 40px;
}

.points-intro__title {
  font-size: clamp(50px, 13vw, 146px);
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.points-intro__illust {
  position: absolute;
  width: 31%;
  right: 0;
  top: 0;
  transform: translateY(-20%);
}

/* ===========================
   SECTION 5: POINT DETAILS
   =========================== */
.points {
  background: url(images/bg-points-body.webp);
  background-color: var(--color-pink-bg);
  background-size: 100%;
  padding: clamp(50px, 7vw, 80px) 24px;
}

.points__inner {
  max-width: var(--max-width-board);
  border: 4px solid var(--color-primary);
  background-color: var(--color-white);
  border-radius: 30px;
  margin: 0 auto;
  position: relative;
  padding: clamp(12px, 3vw, 40px) clamp(12px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 60px);
}

.point-item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
  padding-bottom: clamp(10px, 5vw, 60px);
}

.point-item:first-child {
  padding-top: clamp(40px, 5vw, 60px);
}

.point-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.point-item__header {
  position: relative;
  width: 86%;
}

.point-item:nth-child(2n) {
  margin-left: 6%;
}

.point-item:nth-child(2n-1) {
  margin-right: 6%;
}

@media screen and (max-width: 576px) {
  .point-item:nth-child(2n) {
    margin-left: unset;
  }
  .point-item:nth-child(2n-1) {
    margin-right: unset;
  }
}
.point-item__num {
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-50%) translateY(-50%);
}

.point-item__badge {
  position: relative;
  width: clamp(56px, 8vw, 121px);
  height: clamp(56px, 8vw, 125px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.point-item__badge .point-label {
  position: absolute;
  z-index: 0;
}

.point-item__badge .point-num {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.point-item__badge .point-num img {
  width: 70%;
}

.point-item__content {
  padding-left: 12%;
  padding-right: 12%;
}
@media screen and (max-width: 576px) {
  .point-item__content {
    padding-left: 8%;
    padding-right: 10%;
  }
}

.point-item__icon-row {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateX(50%) translateY(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  width: 22%;
}

.point-item__icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 4px solid var(--color-primary);
  background-color: var(--color-white);
  padding: 10%;
}

.point-item__title {
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 900;
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 40px;
  padding: 1em 2em 1em 3.5em;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 576px) {
  .point-item__title {
    padding: 1em 2em;
  }
}

.point-item__desc {
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: bold;
  color: var(--color-dark);
  line-height: 1.9;
}
.point-item__desc span {
  color: inherit;
  line-height: 1.9;
}

/* ===========================
   SECTION 6: FEATURES LIST
   =========================== */
.features {
  background: url(images/bg-function.webp) var(--color-lavender) no-repeat;
  background-size: 100%;
  padding: clamp(50px, 10vw, 173px) 24px;
  position: relative;
}
.features::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url(images/bg-function-bottom.webp) var(--color-lavender);
  background-size: 100%;
  width: 100%;
  height: 1372px;
  z-index: 0;
}

.features__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-heading {
  font-size: clamp(22px, 4vw, 50px);
  font-weight: 700;
  color: var(--color-primary);
  background-color: var(--color-secondary);
  border: 4px solid var(--color-primary);
  border-radius: 25px;
  text-align: center;
  margin-bottom: 0.8em;
  position: relative;
  padding: 1em;
  letter-spacing: 0.1em;
  position: relative;
}
.section-heading img {
  position: absolute;
  width: 25%;
  left: 0;
  top: 0;
  transform: translateX(6%) translateY(-21%);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-chip {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 4px solid var(--color-primary);
  border-top: none;
  transition: transform 0.2s, ease;
}
.feature-chip p {
  font-size: 11px;
  padding: 1em;
  line-height: 1.5;
  text-align: justify;
}

.feature-chip:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 48, 135, 0.1);
}

.feature-chip__icon {
  width: 167px;
  aspect-ratio: 167/127;
  margin: 0 auto 10px;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .feature-chip__icon {
    width: unset;
  }
}

.feature-chip__icon img {
  max-width: 80%;
  max-height: 90%;
}

.feature-chip__name {
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 700;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1em;
}

/* Feature detail items */
.feature-detail-area {
  border: 4px solid var(--color-primary);
  background: var(--color-white);
  border-radius: 30px;
}

.feature-detail {
  padding: clamp(12px, 3vw, 40px);
  margin-bottom: 24px;
}

.feature-detail__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 0.5em 1em;
  border: 4px solid var(--color-primary);
  border-radius: 20px;
}
.feature-detail__header .vertical-line {
  margin: 0;
  height: 65px;
}

.feature-detail__num {
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-cond);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
}

.feature-detail__icon {
  width: 64px;
  height: 64px;
  background: var(--color-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 5px;
}

.feature-detail__icon img {
  max-width: 90%;
  max-height: 80%;
}

.feature-detail__title {
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 900;
  color: var(--color-primary);
  display: block;
  text-align: center;
  flex-grow: 1;
}

.feature-detail__header:hover {
  background-color: var(--color-primary);
}
.feature-detail__header:hover .vertical-line {
  background-color: var(--color-white);
}
.feature-detail__header:hover .feature-detail__title {
  color: var(--color-white);
}

.feature-detail__body figcaption {
  font-size: 13px;
  margin-top: 1em;
  line-height: 1.5;
}
.feature-detail__body figcaption strong {
  color: var(--color-red);
}

.feature-detail__desc {
  font-size: clamp(14px, 1.2vw, 20px);
  color: var(--color-dark);
  line-height: 1.9;
  text-align: center;
  margin-top: 1em;
  margin-bottom: 2em;
}
.feature-detail__desc span {
  font-size: smaller;
}
.feature-detail__desc strong {
  font-weight: inherit;
  background: linear-gradient(transparent 60%, #ffe960 60%);
}

#func11 .feature-detail__desc {
  color: var(--color-blue-dull);
  text-align: left;
  font-weight: 700;
}

.feature-detail__img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-detail__img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Single column feature detail */
.feature-detail--full .feature-detail__body {
  grid-template-columns: 1fr;
}

.func-section__imgs--2col {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  .func-section__imgs--2col {
    flex-wrap: wrap;
    justify-content: center;
  }
}

#func01 .func-section__imgs--2col figure {
  flex-basis: 50%;
}
@media screen and (max-width: 768px) {
  #func01 .func-section__imgs--2col figure {
    flex-basis: unset;
  }
}
#func01 .func-section__imgs--2col figure img {
  margin: 0 auto;
}

.func-section__block-label {
  font-size: 15px;
  display: flex;
  margin-bottom: 1em;
}
.func-section__block-label::before {
  content: "";
  display: inline-block;
  width: clamp(16px, 2vw, 30px);
  height: clamp(16px, 2vw, 30px);
  background-image: url(images/icon-lens.svg);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 8px;
  filter: invert(37%) sepia(10%) saturate(3954%) hue-rotate(184deg) brightness(92%) contrast(83%);
}
.func-section__block-label strong {
  color: var(--color-blue-dull);
  border-bottom: 2px solid var(--color-blue-dull);
  font-size: clamp(16px, 1.3vw, 21px);
  white-space: nowrap;
  margin-right: 1em;
}
.func-section__block-label .func-section__block-sub {
  font-size: 14px;
  max-width: 40em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .func-section__block-label {
    flex-wrap: wrap;
  }
  .func-section__block-label .func-section__block-sub {
    flex-basis: 100%;
    margin-top: 0.5em;
  }
}

.func-section__block-label.orange::before {
  filter: invert(58%) sepia(59%) saturate(1060%) hue-rotate(326deg) brightness(97%) contrast(91%);
}
.func-section__block-label.orange strong {
  color: var(--color-orange-mid);
  border-bottom: 2px solid var(--color-orange-mid);
}

.func-section__list li {
  margin-bottom: 0.5em;
}

.func-section__list--sub li {
  font-size: 14px;
}

.func-section__list--bullet {
  margin-left: clamp(24px, 2.5vw, 38px);
}
.func-section__list--bullet li {
  position: relative;
  padding-left: 1.1em;
  line-height: 1.6;
  font-size: 15px;
}
.func-section__list--bullet li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background-color: #333;
  border-radius: 50%;
}

.ordered-list-title {
  background-color: var(--color-blue-dull);
  color: var(--color-white);
  padding: 0.5em 0.5em;
  font-size: 15px;
  margin-bottom: 0.5em;
}

.ordered-list {
  counter-reset: my-counter;
  list-style: none;
  padding-left: 0;
}

.ordered-list li {
  counter-increment: my-counter;
  position: relative;
  padding-left: 28px;
  margin-bottom: 0.5em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.ordered-list li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: var(--color-blue-dull);
  color: var(--color-white);
  font-weight: bold;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px; /* 角丸（4px〜8pxがおすすめ） */
}

.feature-detail__body__col2 {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
@media screen and (max-width: 576px) {
  .feature-detail__body__col2 {
    flex-wrap: wrap;
  }
}

#func06 .feature-detail__body__col2 {
  display: flex;
  flex-direction: row;
}
#func06 .feature-detail__body__col2 .func-section__block {
  order: 2;
}
#func06 .feature-detail__body__col2 .func-section__imgs {
  order: 1;
  flex-basis: 30%;
}

.func-section__imgs.func-section__imgs--2col.func07-01 figure:first-child {
  flex-basis: 30%;
}
.func-section__imgs.func-section__imgs--2col.func07-01 figure:last-child {
  flex-basis: 503px;
}

@media screen and (min-width: 768px) {
  .func-section__imgs.func-section__imgs--2col.func07-02 {
    justify-content: center;
    gap: 0;
  }
  .func-section__imgs.func-section__imgs--2col.func07-02 figure:first-child {
    background-image: radial-gradient(circle, #898888 2px, transparent 2px);
    background-size: 10px 10px;
    background-repeat: repeat-y;
    background-position: right;
    padding-right: 20px;
    margin-right: 10px;
  }
}

#func08 small {
  font-size: 12px;
  margin-bottom: 2em;
  display: inline-block;
}

.func-section__dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  flex: 1;
}
@media screen and (max-width: 576px) {
  .func-section__dl {
    flex-basis: 100%;
  }
}
.func-section__dl p {
  width: 100%;
}
.func-section__dl dt {
  flex-basis: 8.5em;
  margin-bottom: 0.5em;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  position: relative;
  padding-left: 1.1em;
  font-weight: 500;
  margin-right: 1em;
  line-height: 1;
}
.func-section__dl dt::before {
  content: "■";
  position: absolute;
  left: 0;
}
.func-section__dl dd {
  flex-basis: calc(100% - 10em);
  flex-grow: 1;
  margin-bottom: 0.5em;
}

.func-section__ma-banner-title {
  background-color: var(--color-orange-mid);
  color: var(--color-white);
  font-size: clamp(18px, 1vw, 20px);
  font-weight: 700;
  padding: 1em;
  text-align: center;
}

#func12 p {
  font-size: 17px;
  line-height: 1.5;
  max-width: 35em;
  margin: 1em auto 1em 2em;
}
@media screen and (max-width: 576px) {
  #func12 p {
    margin: 1em 1em 1em 1em;
  }
}
#func12 p small {
  display: block;
  line-height: 1.5;
  margin: 1em 0;
}

/* ===========================
   SECTION 7: SECURITY
   =========================== */
.security {
  padding: clamp(50px, 7vw, 80px) 0 0;
  color: var(--color-white);
  scroll-margin-top: 30px;
}

.security__body {
  padding: clamp(30px, 4vw, 50px) 24px clamp(30px, 4vw, 50px);
  background: url(images/bg-function.webp) var(--color-lavender) no-repeat;
  background-size: 100%;
}

.security__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
  border: 1px solid var(--color-gray);
  padding: 2px;
}

.security__heading {
  font-size: clamp(20px, 3.4vw, 43px);
  font-weight: 900;
  text-align: center;
  position: relative;
  background-color: var(--color-primary);
  border-top: 4px solid var(--color-dark);
  border-bottom: 4px solid var(--color-dark);
  padding: 1.5em 1em;
  color: var(--color-white);
}

.security__grid {
  background-image: url(images/bg-securiry-content.webp);
  background-size: cover;
  background-position: right;
  border: 2px solid var(--color-gray);
}

.security-block {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: clamp(20px, 2.5vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.security-block__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 700;
  color: var(--color-gray);
  margin-bottom: 16px;
}

.security-block__icon {
  font-size: 20px;
}

.security-block__list {
  list-style: none;
}

.security-block__list li {
  font-size: clamp(12px, 0.9vw, 14px);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  padding-left: 1em;
  color: var(--color-gray);
}

.security-block__list li::before {
  content: "";
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-gray);
  border-radius: 50%;
}

.security-block__list li:last-child {
  border-bottom: none;
}

.security-block--2col {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8%;
}
@media screen and (max-width: 768px) {
  .security-block--2col {
    flex-wrap: wrap;
  }
}

.security-block__desc {
  background: url(images/left-block.svg) no-repeat center;
  background-size: contain;
  width: 270px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 4em;
  min-height: 77px;
  color: var(--color-gray);
}
.security-block__desc h4 {
  color: inherit;
  font-size: 14px;
  margin-bottom: 0.7em;
}
.security-block__desc p,
.security-block__desc small {
  color: inherit;
}
.security-block__desc p {
  font-size: 14px;
}

/* ===========================
   SECTION 8: PRICING
   =========================== */
.pricing {
  background: var(--color-white);
  padding: 0;
  scroll-margin-top: 100px;
}

.pricing__body,
.schedule__body {
  background: url(images/bg-price.webp) no-repeat;
  background-position: left bottom;
  background-size: 100%;
  padding: clamp(30px, 4vw, 50px) 24px clamp(50px, 7vw, 80px);
}

.schedule__body {
  background: url(images/bg-schedule-body.webp) no-repeat;
  background-position: left top;
}

.pricing__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
}
.pricing__inner small {
  font-weight: 400;
  font-size: 0.6em;
  font-size: clamp(12px, 60%, 13.5px);
  color: var(--color-gray);
  margin-top: 4px;
  display: block;
  line-height: 1.5;
}

.pricing__heading,
.schedule__heading {
  font-size: clamp(20px, 3.4vw, 43px);
  font-weight: 900;
  text-align: center;
  position: relative;
  background-color: var(--color-blue-mid);
  border-top: 4px solid var(--color-dark);
  border-bottom: 4px solid var(--color-dark);
  padding: clamp(1em, 5vw, 1.5em) 1em;
  color: var(--color-white);
}

.pricing__hero {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
  background-color: var(--color-secondary);
  padding: 2.5vw 4%;
}

.pricing__price-tag {
  margin-bottom: 8px;
}

.pricing__note {
  font-size: clamp(11px, 0.8vw, 12px);
  color: var(--color-gray);
  margin-top: 0.5em;
  text-align: left;
}

.pricing__tables {
  display: flex;
  flex-direction: column;
  gap: 5em;
  margin-bottom: 32px;
}

.pricing-table,
.options-table {
  border: 4px solid var(--color-dark);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table__head,
.options-table__head {
  background: var(--color-pink);
  color: var(--color-dark);
  font-size: clamp(16px, 2.2vw, 32px);
  font-weight: 600;
  padding: 16px 20px;
  text-align: center;
  letter-spacing: 0.1em;
}

.pricing-table__row,
.options-table__row {
  display: grid;
  grid-template-columns: 62.5fr 37.5fr;
  border-bottom: 1px solid var(--color-dark);
}
.pricing-table__row.subcolor,
.options-table__row.subcolor {
  background-color: var(--color-pink-light);
  border-top: 2px solid var(--color-dark);
  border-bottom: 2px solid var(--color-dark);
}
.pricing-table__row.subcolor .pricing-table__label,
.pricing-table__row.subcolor .pricing-table__value,
.options-table__row.subcolor .pricing-table__label,
.options-table__row.subcolor .pricing-table__value {
  background-color: inherit;
  text-align: center;
  font-size: clamp(14px, 1.5vw, 26px);
}

.pricing-table__row:last-child {
  border-bottom: none;
}

.pricing-table__label,
.options-table__label {
  padding: 14px 2em;
  font-size: clamp(14px, 1.5vw, 26px);
  font-weight: 500;
  color: var(--color-dark);
  background: var(--color-gray-light);
  border-right: 1px solid var(--color-dark);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .pricing-table__label,
  .options-table__label {
    padding: 14px 1em;
  }
}

.pricing-table__value,
.options-table__value {
  padding: 14px 1em;
  font-size: clamp(12px, 1.5vw, 26px);
  font-weight: 500;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-table__value ul {
  list-style: none;
}

.pricing-table__value ul li {
  padding: 0.2em 0;
  font-size: clamp(12px, 1.5vw, 26px);
  font-weight: 500;
}

.pricing-table__value ul li::before {
  content: "・";
}

.price-highlight {
  color: var(--color-dark);
  font-weight: 700;
}

/* Options table */
.options-table {
  margin-bottom: 32px;
}

.options-table__head {
  background: var(--color-green-light);
  border-bottom: 1px solid var(--color-dark);
}

.options-table__row:last-child {
  border-bottom: none;
}

@media screen and (max-width: 576px) {
  .pricing__price-tag {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .pricing-table__row,
  .options-table__row {
    grid-template-columns: 1fr;
  }
  .pricing-table__label,
  .options-table__label {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
  .pricing-table__row.subcolor .pricing-table__label {
    border-bottom-color: var(--color-gray);
  }
}
/* ===========================
   SECTION 9: SCHEDULE
   =========================== */
.schedule {
  background: var(--color-green-bg);
  padding: 0 0 clamp(50px, 7vw, 80px);
}

.schedule__heading {
  background-color: var(--color-green);
}

.schedule__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
  border: 4px solid var(--color-primary);
  background-color: var(--color-white);
  border-radius: 30px;
  margin: 0 auto;
  padding: 40px 30px;
}

.schedule__steps {
  display: flex;
  gap: 0;
  margin: clamp(30px, 4vw, 50px) 0 24px;
  position: relative;
  display: flex;
  gap: 0;
  margin-bottom: 16px;
}

.schedule-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.schedule-step__bubble {
  width: clamp(56px, 6vw, 100px);
  height: clamp(56px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.schedule-step__content {
  border: 4px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .schedule-step__content {
    width: 170px;
  }
}

.schedule-step__icon {
  width: 80px;
  height: 80px;
  margin: 2em auto 2em;
}

.schedule-step__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.schedule-step__label {
  font-size: clamp(11px, 0.85vw, 13px);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.4;
  padding: 0.5em 0;
  text-align: center;
}

.schedule__note-area {
  text-align: center;
}

.schedule__note {
  font-size: clamp(12px, 1.5vw, 21px);
  display: inline-block;
  text-align: left;
  line-height: 2;
  font-weight: 700;
  margin: 2em 1em 4em 3em;
  margin: 2em auto 4em auto;
}

.schedule-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .schedule-arrow {
    transform: translateX(40px);
    margin: 0 auto;
  }
}

.schedule-arrow::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--color-blue-icon);
  position: absolute;
  bottom: 33.3333333333%; /* 高さの下から3分の1 */
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .schedule-arrow::before {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid var(--color-blue-icon);
    border-bottom: none;
  }
}

/* ===========================
   SECTION 10: FAQ
   =========================== */
.faq {
  background: var(--color-bluegray-light);
  padding: 0 0px clamp(50px, 7vw, 80px);
  scroll-margin-top: 100px;
}

.faq__body {
  padding: 0 24px;
}

.faq__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
}

.faq__header {
  text-align: center;
  margin-bottom: clamp(30px, 4vw, 50px);
  background: var(--color-lavender-dull);
  margin-bottom: clamp(30px, 4vw, 50px);
  position: relative;
  border-top: 4px solid var(--color-dark);
  border-bottom: 4px solid var(--color-dark);
  padding: clamp(20px, 6vw, 88px) 1em;
}

.faq__header__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
  font-size: clamp(18px, 2vw, 26px);
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 8px;
  position: relative;
}

.logo-qa {
  width: 68%;
}

.person12 {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(24%) translateY(-23%);
  width: 38%;
}
@media screen and (max-width: 768px) {
  .person12 {
    transform: translateX(0%) translateY(-23%);
    width: 30%;
  }
}

.faq__brand .qa {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.85em;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 5px solid var(--color-primary);
  overflow: hidden;
}

.faq-item {
  border-bottom: 5px solid var(--color-primary);
  min-height: 5em;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__q {
  display: flex;
  align-items: flex-start;
  align-items: stretch;
  gap: 16px;
  height: 5em;
  cursor: pointer;
  background: var(--color-white);
  transition: background 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.faq-item__a {
  display: none;
  background: var(--color-gray-light);
  border-top: 5px solid var(--color-primary);
  align-items: flex-start;
  align-items: stretch;
  gap: 16px;
}

@media screen and (max-width: 576px) {
  .faq-item__q,
  .faq-item__a {
    gap: 0;
  }
}

.faq-item__q:hover {
  background: var(--color-blue-light);
}

.faq-item__q-badge,
.faq-item__a-badge {
  width: auto;
  padding: 0.8em 0.5em 0.8em 0.8em;
  background: var(--color-blue-mid);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-cond);
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  align-self: stretch;
  border-right: 5px solid var(--color-primary);
}

.faq-item__a-badge {
  background: var(--color-red);
  align-items: flex-start;
}

.faq-item__q-text {
  padding: clamp(16px, 2vw, 24px);
  flex: 1;
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  display: flex;
  align-items: center;
  height: 100%;
}

.faq-item__a-text {
  padding: clamp(16px, 2vw, 24px);
  flex: 1;
  font-size: clamp(13px, 0.95vw, 17px);
  color: var(--color-dark);
  line-height: 1.9;
  font-weight: 700;
}

.faq-item.is-open .faq-item__a {
  display: block;
  display: flex;
}

.faq-item__q-arrow-area {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-shrink: 0;
  width: 56px;
}
@media screen and (max-width: 576px) {
  .faq-item__q-arrow-area {
    width: 40px;
  }
}

.faq-item__q-arrow {
  display: block;
  position: relative;
  width: 24px;
  height: 14px;
  flex-shrink: 0;
}

.faq-item__q-arrow::before,
.faq-item__q-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13.5px;
  height: 5px;
  background: var(--color-primary);
}

.faq-item__q-arrow::before {
  left: 0;
  transform-origin: right center;
  transform: translateY(0%) rotate(45deg);
}

.faq-item__q-arrow::after {
  right: 0;
  transform-origin: left center;
  transform: translateY(0%) rotate(-45deg);
}

.faq-item.is-open .faq-item__q-arrow::before {
  transform: translateY(-150%) rotate(-45deg);
}

.faq-item.is-open .faq-item__q-arrow::after {
  transform: translateY(-150%) rotate(45deg);
}

/* ===========================
   SECTION 11: CTA FOOTER
   =========================== */
.cta-section {
  background: url(images/bg-cta.webp) no-repeat;
  background-size: cover;
  padding: clamp(40px, 5vw, 64px) 24px;
  box-shadow: 0 8px 20px rgba(70, 87, 119, 0.4);
}

.cta-section__inner {
  max-width: var(--max-width-board);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
}

.cta-section__illust {
  position: absolute;
  right: 0;
  transform: translateX(23%);
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .cta-section__illust {
    transform: translateX(0%) translateY(-10%);
    width: clamp(100px, 40%, 210px);
  }
}

.cta-section__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--white {
  background: var(--color-white);
  color: var(--color-primary);
  font-size: clamp(13px, 1.5vw, 24px);
  padding: 3em 3em;
  max-width: 350px;
  max-height: 150px;
  border-radius: 25px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.2s;
  display: flex;
  letter-spacing: 0.1em;
  align-items: center;
  justify-content: center;
}

.btn--white:hover {
  transform: translateY(-2px);
  background: var(--color-orange-mid);
}

.btn--yellow {
  background: var(--color-secondary);
  color: var(--color-primary);
  font-size: clamp(13px, 1.5vw, 24px);
  padding: 3em 1.5em;
  max-width: 350px;
  max-height: 150px;
  border-radius: 25px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: all 0.2s;
}
.btn--yellow img {
  position: relative;
  filter: invert(15%) sepia(86%) saturate(2915%) hue-rotate(214deg) brightness(79%) contrast(105%);
  width: 1em;
  height: 1em;
}

.btn--yellow:hover {
  background: var(--color-orange-mid);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE: TABLET
   =========================== */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feature-detail__body {
    grid-template-columns: 1fr;
  }
}
/* ===========================
   RESPONSIVE: MOBILE (≤768px)
   =========================== */
@media screen and (max-width: 992px) {
  .nav__links {
    display: none;
  }
  .nav__hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .hero__image {
    order: -1;
  }
  .hero__float-badge {
    display: none;
  }
  .hero__btns {
    flex-direction: column;
  }
  .hero__btns .btn {
    width: 100%;
  }
  /* Solution */
  .solution__inner {
    grid-template-columns: 1fr;
  }
  /* Points intro */
  .points-intro__inner {
    flex-wrap: wrap;
  }
  /* Points */
  .point-item {
    grid-template-columns: 56px 1fr;
    gap: 16px;
  }
  /* Features */
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .feature-detail__body {
    grid-template-columns: 1fr;
  }
  /* Security */
  .security__grid {
    grid-template-columns: 1fr;
  }
  /* Schedule */
  .schedule__steps {
    flex-direction: column;
    gap: 24px;
  }
  .schedule__steps::before {
    top: 10%;
    bottom: 10%;
    left: 36px;
    right: auto;
    width: 2px;
    height: auto;
  }
  .schedule-step {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    justify-content: center;
  }
  .schedule-step__bubble {
    margin: 0;
    flex-shrink: 0;
    width: 70px;
  }
  /* CTA Footer */
  .cta-section__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-section__btns {
    width: 100%;
    flex-direction: column;
  }
  .cta-section__btns .btn--white,
  .cta-section__btns .btn--yellow {
    width: 60%;
    justify-content: center;
  }
}
/* ===========================
   UTILITY
   =========================== */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--color-primary);
}

.text-red {
  color: var(--color-red);
}

.mt-sm {
  margin-top: 12px;
}

.mt-md {
  margin-top: 24px;
}

.mt-lg {
  margin-top: 40px;
}

/* ===========================
   FOOTER
   =========================== */
footer#footer {
  padding-top: clamp(50px, 8vw, 128px);
  padding-bottom: clamp(50px, 8vw, 128px);
  background-color: #001933;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  position: relative;
  color: var(--color-white);
  text-align: center;
  font-size: clamp(12px, 0.8vw, 14px);
  font-family: var(--font-en);
  line-height: 2.2;
}

footer#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

footer#footer ul li {
  display: inline-block;
  padding: 0.3rem;
  line-height: 2.2;
}

footer#footer p {
  line-height: 2.2;
  margin-bottom: 1.5em;
  color: var(--color-white);
}

footer#footer a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 2.2;
}

footer#footer a:hover {
  color: var(--color-secondary);
}

@media screen and (max-width: 768px) {
  footer#footer {
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
  }
  
  footer#footer ul {
    flex-direction: column;
    gap: 4px;
  }
}

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