@charset "UTF-8";

/* ==================================================
  Variables
================================================== */
:root {
  /* Colors */
  --color-red: #e60012;
  --color-blue: #005bac;
  --color-yellow: #ffde00;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-gray: #f0f0f0;

  /* Layout */
  --content-width: 1200px;

  /* Fonts */
  --font-base: "Noto Sans JP", sans-serif;
  --font-anton: "Anton", sans-serif;
}

/* ==================================================
  Base
================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.7;
  font-weight: 600;
  font-size: 16px;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

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

/* ==================================================
  Layout
================================================== */
.l-inner {
  width: 100%;
  max-width: var(--content-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

@media screen and (max-width: 768px) {
  .l-inner {
    padding-right: 16px;
    padding-left: 16px;
  }
}

/* ==================================================
  Utility
================================================== */

.c-btn-red {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-red);
  color: var(--color-white);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  border: 3px solid var(--color-black);
  border-radius: 0; /* 角丸なし */
  box-shadow: 3px 3px 0 var(--color-black);
  text-decoration: none;
  box-sizing: border-box;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
}

.c-btn-red:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--color-black);
  opacity: 1;
}

.c-btn-red--lg {
  width: 100%;
  max-width: 420px;
  height: 64px;
  font-size: 22px;
}

.u-sp-only {
  display: none !important;
}
.u-mt-16 {
  padding-top: 16px;
}

@media screen and (max-width: 768px) {
  .u-desktop-only {
    display: none !important;
  }
  .u-sp-only {
    display: block !important;
  }
}

/* ==================================================
  Header
================================================== */
.l-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: transparent;
  z-index: 100;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.l-header.is-scrolled {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.l-header__inner {
  max-width: var(--content-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.l-header__logo,
.l-header__logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

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

.l-header__btn {
  height: 46px;
  padding: 0 28px;
  font-size: 15px;
}

/* ==================================================
  FV
================================================== */
.p-fv {
  position: relative;
  background-color: var(--color-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  margin-top: -72px;
  padding-top: calc(32px + 72px);
  padding-bottom: 0;
  overflow: hidden;
  color: var(--color-white);
}

.p-fv__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.p-fv__content {
  flex: 1;
  max-width: 600px;
  padding-bottom: 48px;
}

.p-fv__copy img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.p-fv__text {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}

.p-fv__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.p-fv__badge {
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--color-black);
  border-radius: 0;
  box-shadow: none;
  display: inline-block;
}

.p-fv__badge--yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
  transform: rotate(-2.5deg);
}

.p-fv__badge--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
  transform: rotate(1deg);
}

.p-fv__badge--red {
  background-color: var(--color-red);
  color: var(--color-white);
  transform: rotate(-2.5deg);
}

.p-fv__btn-wrap {
  margin-top: 32px;
}

.p-fv__illust {
  flex: 1;
  max-width: 560px;
  display: flex;
  justify-content: flex-end;
}

.p-fv__illust img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==================================================
  Nav - PC
================================================== */
.p-nav-bar {
  position: sticky;
  top: 72px;
  z-index: 90;
  background-color: var(--color-yellow);
  border-top: 4px solid var(--color-black);
  border-bottom: 4px solid var(--color-black);
}

.p-nav-bar__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 8px 0;
}

.p-nav-bar__list li a {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  padding-left: 18px;
}

.p-nav-bar__list li a::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--color-blue);
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .l-header {
    height: 60px;
  }

  .l-header__inner {
    padding: 0 16px;
  }

  .l-header__logo img {
    height: 30px;
  }

  .l-header__hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .l-header__hamburger span {
    width: 100%;
    height: 4px;
    background-color: var(--color-yellow);
    transition:
      transform 0.3s ease,
      opacity 0.3s ease,
      background-color 0.3s ease;
  }

  .l-header.is-scrolled .l-header__hamburger span {
    background-color: var(--color-black);
  }

  .l-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .l-header__sp-nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--color-blue);
    padding: 32px 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }

  .l-header__sp-nav.is-active {
    transform: translateX(0);
  }

  .l-header__sp-nav-list li a:not(.c-btn-red) {
    display: block;
    padding: 14px 0;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .l-header__sp-nav-list li a.c-btn-red {
    height: 56px;
    width: calc(100% - 4px);
    margin-top: 40px;
    margin-right: 4px;
    margin-bottom: 4px;
  }

  .p-fv {
    margin-top: -60px;
    padding-top: calc(32px + 60px);
  }

  .p-fv__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .p-fv__content {
    width: 100%;
    max-width: 100%;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .p-fv__text {
    font-size: 15px;
  }

  .p-fv__badges {
    justify-content: center;
  }

  .p-fv__badge {
    font-size: 12px;
  }

  .p-fv__btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
  }

  .c-btn-red--lg {
    height: 56px;
    font-size: 18px;
  }

  .p-fv__illust {
    margin-top: 32px;
    width: 100%;
    max-width: 100%;
  }
}

/* ==================================================
  Common - Section Title
================================================== */
.c-section-header {
  position: relative;
  display: table;
  margin: 0 auto 64px;
  text-align: center;
}

.c-section-header__sub {
  position: absolute;
  top: -20px;
  left: -12px;
  z-index: 2;
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-family: "Anton", sans-serif;
  font-size: 26px;
  line-height: 1;
  padding: 6px 16px;
  border: 3px solid var(--color-black);
  box-shadow: 4px 4px 0 var(--color-black);
  transform: skewX(-10deg) rotate(-3deg);
}

.c-section-header__title {
  position: relative;
  z-index: 1;
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: 28px;
  font-weight: 700;
  font-style: italic;
  padding: 18px 36px 18px 48px;
  border: 4px solid var(--color-black);
  box-shadow: 6px 6px 0 var(--color-black);
  transform: skewX(-10deg) rotate(-1.5deg);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* color variations */
.c-section-header__sub--red {
  background-color: var(--color-red);
  color: var(--color-white);
}

.c-section-header__sub--white {
  box-shadow: 6px 6px 0 var(--color-white);
}

.c-section-header__title--yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.c-section-header__title--blue {
  background-color: var(--color-blue);
  color: var(--color-white);
  box-shadow: 6px 6px 0 var(--color-white);
}

/*  Bg  */
.c-section-header--white-shadow .c-section-header__sub {
  box-shadow: 4px 4px 0 var(--color-white);
}

.c-section-header--white-shadow .c-section-header__title {
  box-shadow: 6px 6px 0 var(--color-white);
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .c-section-header {
    margin-bottom: 36px;
    width: calc(100% - 32px);
  }

  .c-section-header__sub {
    font-size: 22px;
    top: -18px;
    left: -6px;
  }

  .c-section-header__title {
    font-size: 24px;
    line-height: 1.4;
    padding: 20px 16px 14px 24px;
    white-space: normal;
    text-align: center;
  }
}

/* ==================================================
  Common - Speech Box
================================================== */
.c-speech-box {
  position: relative;
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  box-shadow: 6px 6px 0 var(--color-black);
  padding: 24px 32px;
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
  box-sizing: border-box;
  transform: rotate(-1.8deg);
}

.c-speech-box__text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
}

.c-speech-box::before,
.c-speech-box::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
}

.c-speech-box::before {
  border-width: 22px 16px 0 16px;
  border-color: var(--color-black) transparent transparent transparent;
}

.c-speech-box::after {
  top: calc(100% - 5px);
  border-width: 17px 11px 0 11px;
  border-color: var(--color-white) transparent transparent transparent;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-solution {
    padding: 50px 0;
  }

  .c-speech-box {
    padding: 18px 20px;
    margin-bottom: 56px;
  }

  .c-speech-box__text {
    font-size: 15px;
  }
}

/* ==================================================
  Common - Yellow Badge
================================================== */
.c-card-badge {
  display: inline-block;
  background-color: var(--color-yellow);
  color: var(--color-black);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 24px;
  border: 3px solid var(--color-black);
  box-shadow: 4px 4px 0 var(--color-black);
  transform: rotate(-1.5deg);
  line-height: 1.3;
  margin-bottom: 24px;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .c-card-badge {
    font-size: 20px;
    text-align: center;
  }
}

/* ==================================================
  Common - CTA
================================================== */
.c-section-cta {
  text-align: center;
  margin-top: 64px;
}

.c-section-cta__catch {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Color variations */
.c-section-cta__catch--yellow {
  color: var(--color-yellow);
}

.c-section-cta__catch--red {
  color: var(--color-red);
}

.c-section-cta__catch--blue {
  color: var(--color-blue);
}

.c-section-cta__catch--black {
  color: var(--color-black);
}

.c-section-cta__lead {
  color: var(--color-white);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.c-section-cta__lead--black {
  color: var(--color-black);
}

/* ==================================================
  Common - Comic Btn
================================================== */
.c-btn {
  display: inline-block;
  width: 100%;
  max-width: 560px;
  padding: 20px 24px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 5px solid var(--color-black);
  box-sizing: border-box;
  transition:
    transform 0.15s ease,
    opacity 0.15s ease;
}

.c-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* Color variations */
.c-btn--red {
  background-color: var(--color-red);
  color: var(--color-white);
}

.c-btn--yellow {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .c-section-cta {
    margin-top: 40px;
  }

  .c-section-cta__catch {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .c-section-cta__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .c-btn {
    font-size: 18px;
    padding: 16px 12px;
    border-width: 4px;
  }
}

/* ==================================================
  Problem
================================================== */
.p-problem {
  position: relative;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  padding: 120px 0 100px;
  overflow: hidden;
}

.p-problem__bubbles {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin: 0 auto 40px;
}

.p-problem__bubble {
  position: relative;
  flex: 1;
  max-width: 270px;
  background-color: var(--color-yellow);
  border: none;
  padding: 18px 16px;
  box-sizing: border-box;
}

.p-problem__bubble p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
}

.p-problem__bubble::before {
  display: none;
}

.p-problem__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 16px 0 16px;
  border-color: var(--color-yellow) transparent transparent transparent;
}

.p-problem__bubble--2,
.p-problem__bubble--4 {
  margin-top: 36px;
}

.p-problem__illust {
  /* max-width: 960px; */
  margin: 0 auto 64px;
}

.p-problem__illust img {
  width: 100%;
  height: auto;
  display: block;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-problem {
    padding: 60px 0 40px;
  }

  .p-problem__bubbles {
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 520px;
    margin: 0 auto 32px;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .p-problem__bubble {
    max-width: 82%;
  }

  .p-problem__bubble--1,
  .p-problem__bubble--3 {
    align-self: flex-start;
    margin-top: 0;
  }

  .p-problem__bubble--2,
  .p-problem__bubble--4 {
    align-self: flex-end;
    margin-top: 0;
  }

  .p-problem__bubble p {
    font-size: 13px;
  }
}

.p-problem__card {
  position: relative;
  background-color: #eff6ff;
  border: 8px solid var(--color-blue);
  padding: 48px 32px 32px;
  margin-top: 48px;
  box-sizing: border-box;
}

.p-problem__card-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 32px;
  border: 3px solid var(--color-black);
  box-shadow: 4px 4px 0 var(--color-black);
  white-space: nowrap;
}

.p-problem__card-header {
  text-align: center;
  margin-bottom: 32px;
}

.p-problem__card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 8px;
}

.p-problem__card-lead {
  font-size: 15px;
  color: var(--color-black);
  margin: 0;
}

.p-problem__card-reasons {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}

.p-problem__reason-box {
  flex: 1;
  border: 4px solid var(--color-black);
  background-color: var(--color-white);
  box-sizing: border-box;
}

.p-problem__reason-head {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 12px 16px;
}

.p-problem__reason-box--red .p-problem__reason-head {
  background-color: var(--color-red);
}

.p-problem__reason-box--blue .p-problem__reason-head {
  background-color: var(--color-blue);
}

.p-problem__reason-list {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-problem__reason-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.p-problem__check-icon {
  width: 28px;
  height: auto;
  flex-shrink: 0;
  margin-top: 2px;
}

.p-problem__reason-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

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

.u-text-blue {
  color: var(--color-blue);
}

.p-problem__reason-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
}

.p-problem__card-point {
  background-color: var(--color-yellow);
  padding: 32px 32px 0;
  display: flex;
  justify-content: space-between;
  overflow: hidden;
}

.p-problem__point-body {
  flex: 1;
  padding-bottom: 32px;
  padding-right: 24px;
}

.p-problem__point-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.p-problem__point-tag {
  display: inline-block;
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: "Anton", sans-serif;
  font-size: 16px;
  line-height: 1;
  padding: 6px 12px;
  flex-shrink: 0;
}

.p-problem__point-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.p-problem__point-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
}

.p-problem__point-illust {
  width: 280px;
  flex-shrink: 0;
  line-height: 0;
  align-self: flex-end;
}

.p-problem__point-illust img {
  width: 100%;
  height: auto;
  display: block;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-problem__card {
    padding: 36px 16px 20px;
    margin-top: 36px;
    border-width: 6px;
  }

  .p-problem__card-badge {
    font-size: 15px;
    padding: 8px 18px;
  }

  .p-problem__card-title {
    font-size: 17px;
    text-align: left;
  }

  .p-problem__card-lead {
    font-size: 13px;
    text-align: left;
  }

  .p-problem__card-reasons {
    flex-direction: column;
    gap: 20px;
  }

  .p-problem__reason-head {
    font-size: 16px;
  }

  .p-problem__reason-list {
    padding: 16px 14px;
    gap: 16px;
  }

  .p-problem__check-icon {
    width: 24px;
  }

  .p-problem__reason-title {
    font-size: 15px;
  }

  .p-problem__card-point {
    padding: 20px 16px 0;
    flex-direction: column;
    align-items: center;
  }

  .p-problem__point-body {
    padding-bottom: 20px;
    padding-right: 0;
  }

  .p-problem__point-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .p-problem__point-title {
    font-size: 16px;
  }

  .p-problem__point-text {
    font-size: 13px;
  }

  .p-problem__point-illust {
    align-self: center;
    width: 100%;
    max-width: 260px;
  }
}

/* ==================================================
  Features
================================================== */
.p-features {
  position: relative;
  background-color: var(--color-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  border-top: 8px solid var(--color-black);
  padding: 120px 0 100px;
  overflow: hidden;
}

.p-features__card {
  position: relative;
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  padding: 36px 32px 32px;
  margin-top: 48px;
  box-sizing: border-box;
}

.p-features__card-catch {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 16px;
}

.p-features__card-lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 28px;
}

.p-features__icon-list {
  display: flex;
  gap: 16px;
}

.p-features__icon-item {
  flex: 1;
  background-color: var(--color-yellow);
  padding: 24px 16px;
  text-align: center;
  box-sizing: border-box;
}

.p-features__icon-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 16px;
}

.p-features__icon-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}

.p-features__icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-features__icon-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-black);
  margin: 0;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-features {
    padding: 80px 0 60px;
  }

  .p-features__card {
    padding: 24px 16px 20px;
    margin-top: 36px;
  }

  .p-features__card-catch {
    font-size: 18px;
  }

  .p-features__card-lead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .p-features__icon-list {
    flex-direction: column;
    gap: 12px;
  }

  .p-features__icon-item {
    padding: 20px;
  }
}

.p-features__step-flow {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8px;
}

.p-features__step-box {
  flex: 1;
  background-color: var(--color-yellow);
  padding: 20px 14px 14px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.p-features__step-head {
  background-color: var(--color-red);
  color: var(--color-white);
  font-family: "Anton", sans-serif;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  padding: 8px 12px;
  border: 2px solid var(--color-black);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.p-features__step-period {
  font-size: 13px;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 4px;
}

.p-features__step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
  margin-bottom: 20px;
}

.p-features__step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.p-features__step-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-black);
  line-height: 1.5;
}

.p-features__check-icon {
  width: 24px;
  height: auto;
  flex-shrink: 0;
  margin-top: 1px;
}

.p-features__step-goal {
  position: relative;
  background-color: var(--color-white);
  padding: 20px 8px 10px;
  text-align: center;
}

.p-features__goal-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border: 2px solid var(--color-black);
  white-space: nowrap;
}

.p-features__goal-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.p-features__step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  flex-shrink: 0;
}

.p-features__step-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 4px solid var(--color-black);
  border-right: 4px solid var(--color-black);
  transform: rotate(45deg);
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-features__step-flow {
    flex-direction: column;
    gap: 0;
  }

  .p-features__step-box {
    width: 100%;
    padding: 16px 12px 12px;
  }

  .p-features__step-title {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .p-features__step-arrow {
    width: 100%;
    height: 36px;
  }

  .p-features__step-arrow::after {
    transform: rotate(135deg);
  }
}

.p-features__graph {
  text-align: center;
  margin-bottom: 40px;
}

.p-features__graph img {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.p-features__graph-note {
  font-size: 11px;
  color: var(--color-black);
  font-weight: 400;
  text-align: right;
  max-width: 720px;
  margin: 0 auto;
}

/*  Responsive  */
@media screen and (max-width: 768px) {
  .p-features__graph {
    margin-bottom: 32px;
  }

  .p-features__graph-note {
    font-size: 10px;
    text-align: left;
  }
}

/* ==================================================
  Works
================================================== */
.p-works {
  position: relative;
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  border-top: 8px solid var(--color-black);
  padding: 120px 0 100px;
  overflow: hidden;
}

.p-works__cards {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.p-works__card {
  position: relative;
  flex: 1;
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  box-shadow: 6px 6px 0 var(--color-black);
  padding: 32px 24px;
  box-sizing: border-box;
}

.p-works__item {
  margin-bottom: 28px;
}

.p-works__item:last-child {
  margin-bottom: 0;
}

.p-works__item-head {
  background-color: var(--color-blue);
  color: var(--color-white);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 16px;
  margin-bottom: 14px;
}

.p-works__item-body p,
.p-works__item-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-black);
  margin: 0;
}

.p-works__item-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-works {
    padding: 80px 0 60px;
  }

  .p-works__cards {
    flex-direction: column;
    gap: 20px;
    background-color: var(--color-white);
    border: 4px solid var(--color-black);
    box-shadow: 6px 6px 0 var(--color-black);
    padding: 24px 16px;
    position: relative;
  }

  .p-works__card {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
  }

  .p-works__item {
    margin-bottom: 20px;
  }

  .p-works__item-head {
    font-size: 14px;
    padding: 8px 12px;
    margin-bottom: 10px;
  }

  .p-works__item-body p,
  .p-works__item-body li {
    font-size: 14px;
    line-height: 1.6;
  }
}

.p-works__content {
  margin-top: 64px;
}

.p-works__content-catch {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 24px;
}

.p-works__work-type {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.p-works__work-box {
  flex: 1;
  border: 4px solid var(--color-black);
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
}

.p-works__work-head {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  padding: 10px 16px;
  text-align: center;
  margin: 0;
}

.p-works__work-head--blue {
  background-color: var(--color-blue);
}

.p-works__work-head--red {
  background-color: var(--color-red);
}

.p-works__work-list {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
}

.p-works__work-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.p-works__check-icon {
  width: 28px;
  height: auto;
  flex-shrink: 0;
  margin-top: 1px;
}

.p-works__work-list strong {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.p-works__work-list span {
  display: block;
  font-weight: 500;
  margin-top: 2px;
}

.p-works__work-img {
  margin-top: auto;
  padding: 0 16px 16px;
  text-align: center;
}

.p-works__work-img img {
  width: 100%;
  max-width: 320px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-works__schedule-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 20px;
}

.p-works__schedule-img img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-works__content {
    margin-top: 40px;
  }

  .p-works__content-catch {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .p-works__work-type {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .p-works__work-head {
    font-size: 16px;
  }

  .p-works__work-list strong {
    font-size: 16px;
  }

  .p-works__work-list span {
    font-size: 13px;
  }

  .p-works__schedule-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.p-works__content {
  margin-top: 60px;
}

.p-works__content .c-card-badge {
  margin-bottom: 24px;
}

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

.p-works__target-card {
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  padding: 24px;
  box-sizing: border-box;
}

.p-works__target-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.p-works__target-icon {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

.p-works__target-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin: 0;
}

.p-works__target-text {
  color: var(--color-black);
  margin: 0;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-works__content {
    margin-top: 48px;
  }

  .p-works__content .c-card-badge {
    margin-bottom: 20px;
  }

  .p-works__target-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-works__target-card {
    padding: 20px 16px;
  }

  .p-works__target-title {
    font-size: 16px;
  }

  .p-works__target-text {
    font-size: 13px;
  }
}

/* ==================================================
  FAQ
================================================== */
.p-faq {
  background-color: var(--color-red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  border-top: 8px solid var(--color-black);
  padding: 120px 0 100px;
  overflow: hidden;
}

.p-faq__list {
  max-width: 900px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-faq__item {
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  box-shadow: 6px 6px 0 var(--color-black);
  box-sizing: border-box;
}

.p-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
  list-style: none;
}

.p-faq__q::-webkit-details-marker {
  display: none;
}

.p-faq__q-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.p-faq__icon {
  width: 36px;
  height: auto;
  flex-shrink: 0;
}

.p-faq__q-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.p-faq__toggle {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.p-faq__toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 3px;
  background-color: var(--color-black);
}

.p-faq__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3px;
  height: 16px;
  background-color: var(--color-black);
  transition: all 0.2s ease;
}

.p-faq__item[open] .p-faq__toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.p-faq__a {
  padding: 0 32px 32px;
}

.p-faq__a-inner {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px dashed var(--color-black);
}

.p-faq__a-text {
  font-size: 16px;
  margin: 0;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 80px 0 60px;
  }

  .p-faq__list {
    margin-top: 40px;
    gap: 16px;
  }

  .p-faq__q {
    padding: 16px;
  }

  .p-faq__q-inner {
    gap: 12px;
    padding-right: 12px;
  }

  .p-faq__icon {
    width: 28px;
    margin-top: 2px;
  }

  .p-faq__q-text {
    font-size: 15px;
  }

  .p-faq__toggle {
    margin-top: 4px;
  }

  .p-faq__a {
    padding: 0 16px 20px;
  }

  .p-faq__a-inner {
    gap: 12px;
    padding-top: 16px;
  }

  .p-faq__a-text {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ==================================================
  Flow
================================================== */
.p-flow {
  background-color: var(--color-blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  border-top: 8px solid var(--color-black);
  padding: 120px 0 100px;
  overflow: hidden;
}

.p-flow__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-flow__row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

.p-flow__item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  max-width: 320px;
}

.p-flow__card {
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  padding: 24px 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.p-flow__num {
  font-size: 32px;
  font-weight: 900;
  color: var(--color-red);
  font-family: "Anton", sans-serif;
  line-height: 1;
  display: block;
}

.p-flow__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
  margin-top: 6px;
  margin-bottom: 16px;
}

.p-flow__img {
  text-align: center;
  margin-bottom: 16px;
  margin-top: auto;
}

.p-flow__img img {
  width: 100%;
  max-width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.p-flow__text {
  font-size: 15px;
  margin: 0;
}

.p-flow__arrow {
  width: 20px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--color-yellow);
  clip-path: polygon(0 35%, 50% 35%, 50% 10%, 100% 50%, 50% 90%, 50% 65%, 0 65%);
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-flow {
    padding: 80px 0 60px;
  }

  .p-flow__list {
    margin-top: 40px;
    gap: 20px;
  }

  .p-flow__row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .p-flow__item {
    flex-direction: column;
    max-width: 100%;
    width: 100%;
    gap: 20px;
  }

  .p-flow__card {
    padding: 20px 16px;
  }

  .p-flow__num {
    font-size: 28px;
  }

  .p-flow__title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .p-flow__arrow {
    width: 24px;
    height: 20px;
    clip-path: polygon(35% 0, 65% 0, 65% 50%, 90% 50%, 50% 100%, 10% 50%, 35% 50%);
  }
}

/* ==================================================
  Company
================================================== */
.p-company {
  background-color: var(--color-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18'%3E%3Ccircle cx='9' cy='9' r='1.0' fill='rgba(0, 0, 0, 0.15)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  border-top: 8px solid var(--color-black);
  padding: 120px 0 100px;
  overflow: hidden;
}

.p-company__card {
  background-color: var(--color-white);
  border: 4px solid var(--color-black);
  padding: 40px;
  margin-top: 60px;
  box-sizing: border-box;
}

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

.p-company__info {
  flex: 1;
}

.p-company__logo {
  max-width: 280px;
  margin-bottom: 24px;
}

.p-company__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--color-black);
}

.p-company__item {
  display: flex;
}

.p-company__item dt {
  width: 90px;
  font-weight: 700;
  flex-shrink: 0;
}

.p-company__item dd {
  margin: 0;
  color: var(--color-black);
}

.p-company__text {
  margin-top: 20px;
  margin-bottom: 0;
}

.p-company__img {
  width: 320px;
  flex-shrink: 0;
}

.p-company__img img {
  width: 100%;
  height: auto;
  display: block;
  border: 3px solid var(--color-black);
  box-sizing: border-box;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .p-company {
    padding: 80px 0 60px;
  }

  .p-company__card {
    padding: 24px 16px;
    margin-top: 40px;
  }

  .p-company__body {
    flex-direction: column;
    gap: 24px;
  }

  .p-company__logo {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .p-company__item {
    font-size: 14px;
  }

  .p-company__item dt {
    width: 76px;
  }

  .p-company__text {
    font-size: 15px;
    margin-top: 16px;
  }

  .p-company__img {
    width: 100%;
  }
}

/* ==================================================
  Floating Btn
================================================== */

.c-fixed-contact {
  display: none;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .c-fixed-contact {
    display: block;
    padding: 32px 16px 40px;
    box-sizing: border-box;
  }

  .c-fixed-contact.is-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .c-fixed-contact__btn {
    display: block;
    width: 100%;
    background-color: var(--color-red);
    border: 4px solid var(--color-black);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 14px 0;
    box-sizing: border-box;
  }
}

/* ==================================================
  Footer
================================================== */
.l-footer {
  background-color: var(--color-gray);
  border-top: 8px solid var(--color-black);
  padding: 48px 0;
  text-align: center;
}

.l-footer__logo {
  max-width: 260px;
  margin: 0 auto 20px;
}

.l-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.l-footer__copyright {
  font-size: 14px;
  font-family: var(--font-anton);
  margin: 0;
}

/*  -- Responsive --  */
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 36px 0;
  }

  .l-footer__logo {
    max-width: 200px;
    margin-bottom: 16px;
  }

  .l-footer__copyright {
    font-size: 12px;
  }
}
