/* ====================
  Reset
==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

button {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: inherit;
  cursor: pointer;
}

/* ====================
  Base
==================== */
:root {
  --base-width: 1440;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1;
}

a:hover {
  opacity: 0.85;
  transition: opacity 0.3s;
}

a:focus-visible {
  opacity: 0.85;
}

@media screen and (max-width: 600px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 601px) {
  .sp-only {
    display: none;
  }
}

.-purple {
  color: #815fd9;
}

section {
  scroll-margin-top: 80px;
}
@media screen and (max-width: 1009px) {
  section {
    scroll-margin-top: 60px;
  }
}

/* ====================
  Header
==================== */
.l-header {
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #00000033;

  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
}

.l-header__logo {
  padding: 21px 48px;
  z-index: 1001;
}
@media screen and (max-width: 1009px) {
  .l-header__logo {
    padding: 20px 24px;
  }
}

.l-header__logo img {
  display: block;
  width: 174.45px;
  height: 38px;
}
@media screen and (max-width: 1009px) {
  .l-header__logo img {
    width: 92px;
    height: 20px;
  }
}

.l-header__hamburger {
  display: none;
  position: relative;
  z-index: 1001;
  width: 60px;
  height: 60px;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 1009px) {
  .l-header__hamburger {
    display: block;
    background-color: #f2a90b;
  }
}

.l-header__hamburger span {
  position: absolute;
  left: 50%;
  width: 38px;
  height: 3px;
  border-radius: 10px;
  background-color: #fff;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.l-header__hamburger span:nth-child(1) {
  top: 30%;
}
.l-header__hamburger span:nth-child(2) {
  top: 50%;
}
.l-header__hamburger span:nth-child(3) {
  top: 70%;
}

.l-header.is-open .l-header__hamburger span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}
.l-header.is-open .l-header__hamburger span:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .l-header__hamburger span:nth-child(3) {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

.l-header__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: "M PLUS 1p";
  font-weight: 800;
  font-size: 15px;
}

.l-header__link .-try a {
  display: block;
  padding: 10px 94.5px 10px 51.5px;
  font-size: 20px;
  color: #fff;
  background-color: #f2a90b;
  line-height: 1.5;
  position: relative;
}
.l-header__link .-try a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 175.5px;
  width: 33px;
  height: 33px;
  transform: translateY(-50%);
  background-image: url(../img/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- SPメニューの展開スタイル --- */
@media screen and (max-width: 1009px) {
  .l-header__link {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;

    /* 画面全体を覆うスタイル */
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 461px;
    background-color: #fff;
    padding-top: 76px;
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
  }

  .l-header.is-open .l-header__link {
    right: 0;
  }

  .l-header__link li {
    width: 100%;
    max-width: 414px;
  }

  .l-header__link li a {
    display: block;
    padding: 16px 24px;
  }

  .l-header__link .-try {
    text-align: center;
    padding: 0 16px;
  }
  .l-header__link .-try a {
    width: 100%;
    max-width: 382px;
    margin: 0 auto;
    padding: 18px 0;
    padding-right: 35px;
    font-size: 16px;
    border-radius: 12px;
    box-shadow: 0px 6px 0px 0px #a87608;
  }
  .l-header__link .-try a::after {
    left: calc(50% + 75px);
    width: 25px;
    height: 25px;
  }
  .header-pc-only {
    display: none;
  }
}

/* ====================
  CTA
==================== */
.p-cta {
  background-image: url("../img/bg-cta.webp");
  background-position: top center;
  background-size: cover;
  display: flex;
  justify-content: center;
  gap: 12px;
  color: #fff;
  font-family: "M PLUS 1p";
  font-weight: 800;
  line-height: 1.5;
  padding: 90px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta {
    gap: calc((12 / var(--base-width)) * 100vw);
    padding: calc((90 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-cta {
    flex-direction: column;
    gap: 30px;
    padding: 40px 16px;
  }
}

.p-cta__txt {
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta__txt {
    font-size: calc((16 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-cta__txt {
    font-size: 14px;
  }
}

.p-cta__btn {
  display: block;
  border-radius: 12px;
  font-size: 28px;
  padding: 29px 0;
  text-align: center;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta__btn {
    font-size: calc((28 / var(--base-width)) * 100vw);
    padding: calc((29 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-cta__btn {
    font-size: 20px;
    padding: 20px 0;
  }
}

.p-cta__btn span {
  position: relative;
  display: inline-block;
  padding-right: 43px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta__btn span {
    padding-right: calc((43 / var(--base-width)) * 100vw);
  }
}

.p-cta__btn span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 33px;
  height: 33px;
  transform: translateY(-50%);
  background-image: url(../img/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta__btn span::after {
    width: calc((33 / var(--base-width)) * 100vw);
    height: calc((33 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-cta__btn span::after {
    width: 24px;
    height: 24px;
  }
}

.p-cta__try .p-cta__btn {
  background-color: #f2a90b;
  box-shadow: 0px 6px 0px 0px #a87608;
  width: 648px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta__try .p-cta__btn {
    width: calc((648 / var(--base-width)) * 100vw);
  }
}

.p-cta__contact .p-cta__btn {
  background-color: #967fd1;
  box-shadow: 0px 6px 0px 0px #808080;
  width: 340px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-cta__contact .p-cta__btn {
    width: calc((340 / var(--base-width)) * 100vw);
  }
}

@media screen and (max-width: 600px) {
  .p-cta__try .p-cta__btn,
  .p-cta__contact .p-cta__btn {
    width: 100%;
  }
}

/* ====================
  KV
==================== */
.p-kv {
  position: relative;
  background-image: url("../img/bg.webp");
  background-position: top center;
  background-size: cover;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0 60px 0 100px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv {
    gap: calc((20 / var(--base-width)) * 100vw);
    padding: 0 calc((60 / var(--base-width)) * 100vw) 0
      calc((100 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv {
    flex-direction: column;
    padding: 40px 16px;
    gap: 30px;
  }
}

.p-kv__txt {
  margin-top: 88px;
  color: #fff;
  font-family: "M PLUS 1p";
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv__txt {
    margin-top: calc((88 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv__txt {
    margin-top: 0;
  }
}

.p-kv__txt h1 {
  font-weight: 800;
  font-size: 57px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv__txt h1 {
    font-size: calc((57 / var(--base-width)) * 100vw);
    margin-bottom: calc((16 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv__txt h1 {
    font-size: 30px;
  }
}

.p-kv__txt h1 span {
  display: block;
  font-size: 20px;
  color: #fff940;
  margin-bottom: 12px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv__txt h1 span {
    font-size: calc((20 / var(--base-width)) * 100vw);
    margin-bottom: calc((12 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv__txt h1 span {
    font-size: 14px;
  }
}

.p-kv__txt p {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.6;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv__txt p {
    font-size: calc((22 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv__txt p {
    font-size: 16px;
  }
}

.p-kv__img {
  padding: 104.5px 10px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv__img {
    padding: calc((104.5 / var(--base-width)) * 100vw)
      calc((10 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv__img {
    padding: 0;
  }
}

.p-kv__img img {
  width: 620px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv__img img {
    width: calc((620 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv__img img {
    width: 100%;
  }
}

.p-kv .p-cta {
  background: none;
  padding: 0;
  position: absolute;
  left: calc(50% - 618px);
  bottom: 74px;
  gap: 8px;
}
.p-kv .p-cta__try .p-cta__btn {
  width: 400px;
}
.p-kv .p-cta__contact .p-cta__btn {
  width: 212px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-kv .p-cta {
    left: calc(50% - calc((618 / var(--base-width)) * 100vw));
    bottom: calc((74 / var(--base-width)) * 100vw);
    gap: calc((8 / var(--base-width)) * 100vw);
  }
  .p-kv .p-cta__try .p-cta__btn {
    width: calc((400 / var(--base-width)) * 100vw);
  }
  .p-kv .p-cta__contact .p-cta__btn {
    width: calc((212 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-kv .p-cta {
    position: initial;
    gap: 30px;
  }
  .p-kv .p-cta__try .p-cta__btn {
    width: 100%;
  }
  .p-kv .p-cta__contact .p-cta__btn {
    width: 100%;
  }
}

/* ====================
  こんなお悩みありませんか？
==================== */
.p-issue {
  background-color: #faf5ed;
  padding: 100px 0;
  text-align: center;
  font-family: "M PLUS 1p";
  font-weight: 800;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-issue {
    padding: calc((100 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-issue {
    padding: 40px 16px;
  }
}

.p-issue__title {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 0 67px;
  margin-bottom: 60px;
  position: relative;
}
.p-issue__title::before,
.p-issue__title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 36px;
  height: 36px;
  background-image: url("../img/icon-droplets.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-issue__title::before {
  left: 0;
  transform: scale(-1, 1);
}
.p-issue__title::after {
  right: 0;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-issue__title {
    font-size: calc((32 / var(--base-width)) * 100vw);
    padding: 0 calc((67 / var(--base-width)) * 100vw);
    margin-bottom: calc((60 / var(--base-width)) * 100vw);
  }
  .p-issue__title::before,
  .p-issue__title::after {
    width: calc((36 / var(--base-width)) * 100vw);
    height: calc((36 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-issue__title {
    font-size: 20px;
    padding: 0 28px;
    margin-bottom: 32px;
  }
  .p-issue__title::before,
  .p-issue__title::after {
    width: 22px;
    height: 22px;
  }
}

.p-issue__items {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-issue__items {
    gap: calc((20 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-issue__items {
    flex-wrap: wrap;
    gap: 12px;
  }
}

.p-issue__item {
  border-radius: 16px;
  background-color: #fff;
  width: 285px;
  height: 387px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-issue__item {
    border-radius: calc((16 / var(--base-width)) * 100vw);
    width: calc((285 / var(--base-width)) * 100vw);
    height: calc((387 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-issue__item {
    width: calc(50% - 6px);
    height: initial;
  }
}

.p-issue__item img {
  display: inline-block;
  margin-top: 40px;
  width: 200px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-issue__item img {
    margin-top: calc((40 / var(--base-width)) * 100vw);
    width: calc((200 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-issue__item img {
    width: 80%;
    margin-top: 32px;
  }
}

.p-issue__item p {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.4;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-issue__item p {
    margin-top: calc((32 / var(--base-width)) * 100vw);
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-issue__item p {
    margin: 24px auto 32px;
    font-size: 16px;
    width: 84%;
  }
}

/* ====================
  「これなんぼ？」を導入する3つのメリット
==================== */
.p-merit {
  padding: 100px 0;
  text-align: center;
  font-family: "M PLUS 1p";
  font-weight: 800;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit {
    padding: calc((100 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-merit {
    padding: 60px 16px;
  }
}

.p-merit__title {
  font-size: 32px;
  line-height: 1.14305;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
  display: inline-block;
  padding: 0 40px;
  position: relative;
}
.p-merit__title::before,
.p-merit__title::after {
  content: "";
  position: absolute;
  top: 0;
  width: 40px;
  height: 96px;
  background-image: url("../img/icon-line.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-merit__title::before {
  left: 0;
  transform: scale(-1, 1);
}
.p-merit__title::after {
  right: 0;
}
.p-merit__title .-purple {
  font-size: 38px;
}
.p-merit__title .-big {
  font-size: 52px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__title {
    font-size: calc((32 / var(--base-width)) * 100vw);
    margin-bottom: calc((60 / var(--base-width)) * 100vw);
    padding: 0 calc((40 / var(--base-width)) * 100vw);
  }
  .p-merit__title::before,
  .p-merit__title::after {
    width: calc((40 / var(--base-width)) * 100vw);
    height: calc((96 / var(--base-width)) * 100vw);
  }
  .p-merit__title .-purple {
    font-size: calc((38 / var(--base-width)) * 100vw);
  }
  .p-merit__title .-big {
    font-size: calc((52 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__title {
    font-size: 20px;
    margin-bottom: 32px;
    padding: 0 28px;
  }
  .p-merit__title::before,
  .p-merit__title::after {
    width: 30px;
    height: 72px;
  }
  .p-merit__title .-purple {
    font-size: 26px;
  }
  .p-merit__title .-big {
    font-size: 42px;
  }
}

.p-merit__items {
  width: 1200px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__items {
    width: calc((1200 / var(--base-width)) * 100vw);
    margin: 0 auto calc((60 / var(--base-width)) * 100vw);
    gap: calc((20 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__items {
    width: 100%;
    flex-direction: column;
    margin: 0 auto 40px;
    gap: 40px;
  }
}

.p-merit__item {
  flex: 1;
}

.p-merit__item img {
  display: inline-block;
  width: 360px;
  margin-bottom: 16px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__item img {
    width: calc((360 / var(--base-width)) * 100vw);
    margin-bottom: calc((16 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__item img {
    width: 100%;
  }
}

.p-merit__item h3 {
  position: relative;
  font-size: 28px;
  line-height: 1.35;
  padding-top: 76px;
}
.p-merit__item h3::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  width: 56px;
  height: 56px;
  background-image: url("../img/icon-check.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__item h3 {
    font-size: calc((28 / var(--base-width)) * 100vw);
    padding-top: calc((76 / var(--base-width)) * 100vw);
  }
  .p-merit__item h3::before {
    width: calc((56 / var(--base-width)) * 100vw);
    height: calc((56 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__item h3 {
    font-size: 24px;
    padding-top: 50px;
  }
  .p-merit__item h3::before {
    width: 40px;
    height: 40px;
  }
}

.p-merit__item p {
  margin: 12px 16px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.35;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__item p {
    margin: calc((12 / var(--base-width)) * 100vw)
      calc((16 / var(--base-width)) * 100vw) 0;
    font-size: calc((16 / var(--base-width)) * 100vw);
  }
}

.p-merit__colorbox {
  width: 1100px;
  margin: 0 auto;
  padding: 60px 50px;
  background-color: #faf5ed;
  border-radius: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__colorbox {
    width: calc((1100 / var(--base-width)) * 100vw);
    padding: calc((60 / var(--base-width)) * 100vw)
      calc((50 / var(--base-width)) * 100vw);
    border-radius: calc((16 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__colorbox {
    width: 100%;
    padding: 30px 20px;
  }
}

.p-merit__colorbox-title {
  font-size: 24px;
  line-height: 1.2085;
  margin-bottom: 65px;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.p-merit__colorbox-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 295px;
  height: 32px;
  background-color: #815fd9;
  z-index: -1;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__colorbox-title {
    font-size: calc((24 / var(--base-width)) * 100vw);
    margin-bottom: calc((65 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-title::before {
    width: calc((295 / var(--base-width)) * 100vw);
    height: calc((32 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__colorbox-title {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.5;
  }
  .p-merit__colorbox-title::before {
    width: 260px;
    left: 50%;
    transform: translateX(-50%);
    height: 32px;
  }
}

.p-merit__colorbox-title span {
  display: inline-block;
  color: #fff940;
}

.p-merit__colorbox-items {
  display: flex;
  justify-content: center;
  gap: 24px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__colorbox-items {
    gap: calc((24 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__colorbox-items {
    flex-direction: column;
    gap: 40px;
  }
}

.p-merit__colorbox-item {
  position: relative;
  flex: 1;
  border-radius: 8px;
  background-color: #fff;
  padding: 48px 0 40px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__colorbox-item {
    border-radius: calc((8 / var(--base-width)) * 100vw);
    padding: calc((48 / var(--base-width)) * 100vw) 0
      calc((40 / var(--base-width)) * 100vw);
  }
}

.p-merit__colorbox-speech-bubble {
  position: absolute;
  display: inline-block;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 15px;
  padding: 6px 40px;
  border: 2px solid #967fd1;
  border-radius: 80px;
  background-color: #ffffff;
  font-size: 18px;
  color: #967fd1;
  white-space: nowrap;
}
.p-merit__colorbox-speech-bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 7.5px 0 7.5px;
  border-color: #967fd1 transparent transparent;
  translate: -50% 100%;
}
.p-merit__colorbox-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 10.5px 5.3px 0 5.3px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__colorbox-speech-bubble {
    top: calc((-16 / var(--base-width)) * 100vw);
    margin-bottom: calc((15 / var(--base-width)) * 100vw);
    padding: calc((6 / var(--base-width)) * 100vw)
      calc((40 / var(--base-width)) * 100vw);
    border-radius: calc((80 / var(--base-width)) * 100vw);
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-speech-bubble::before {
    border-width: calc((15 / var(--base-width)) * 100vw)
      calc((7.5 / var(--base-width)) * 100vw) 0
      calc((7.5 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-speech-bubble::after {
    border-width: calc((10.5 / var(--base-width)) * 100vw)
      calc((5.3 / var(--base-width)) * 100vw) 0
      calc((5.3 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__colorbox-speech-bubble {
    top: -14px;
    font-size: 16px;
  }
}

.p-merit__colorbox-txt {
  position: relative;
  display: inline-block;
  font-size: 24px;
}
.p-merit__colorbox-txt .-big {
  font-size: 32px;
}
.p-merit__colorbox-item.-down .p-merit__colorbox-txt {
  padding: 0 34px;
}
.p-merit__colorbox-item.-up .p-merit__colorbox-txt {
  padding-right: 32px;
}
.p-merit__colorbox-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-triangle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.p-merit__colorbox-item.-up .p-merit__colorbox-txt::after {
  transform: translateY(-50%) scale(1, -1);
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-merit__colorbox-txt {
    font-size: calc((24 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-txt .-big {
    font-size: calc((32 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-item.-down .p-merit__colorbox-txt {
    padding: 0 calc((34 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-item.-up .p-merit__colorbox-txt {
    padding-right: calc((32 / var(--base-width)) * 100vw);
  }
  .p-merit__colorbox-txt::after {
    width: calc((24 / var(--base-width)) * 100vw);
    height: calc((24 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-merit__colorbox-txt {
    font-size: 20px;
    line-height: 1.4;
  }
  .p-merit__colorbox-txt .-big {
    font-size: 28px;
  }
  .p-merit__colorbox-item.-down .p-merit__colorbox-txt {
    padding: 0 28px 0 0;
  }
  .p-merit__colorbox-item.-up .p-merit__colorbox-txt {
    padding-right: 28px;
  }
  .p-merit__colorbox-txt::after {
    width: 20px;
    height: 20px;
  }
}

/* ====================
  驚くほどシンプル。 現場目線の4つの機能
==================== */
.p-feature {
  padding: 100px 0;
  background-color: #f6f2ff;
  font-family: "M PLUS 1p";
  font-weight: 800;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature {
    padding: calc((100 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-feature {
    padding: 60px 16px;
  }
}

.p-feature__title {
  text-align: center;
  font-size: 32px;
  line-height: 1.14305;
  letter-spacing: 0.04em;
  margin-bottom: 60px;
}
.p-feature__title .-purple {
  font-size: 38px;
}
.p-feature__title .-big {
  font-size: 52px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__title {
    font-size: calc((32 / var(--base-width)) * 100vw);
    margin-bottom: calc((60 / var(--base-width)) * 100vw);
  }
  .p-feature__title .-purple {
    font-size: calc((38 / var(--base-width)) * 100vw);
  }
  .p-feature__title .-big {
    font-size: calc((52 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .p-feature__title .-purple {
    font-size: 26px;
  }
  .p-feature__title .-big {
    font-size: 42px;
  }
}

.p-feature__items {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__items {
    max-width: calc((1100 / var(--base-width)) * 100vw);
    gap: calc((12 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__items {
    max-width: 100%;
    gap: 56px;
  }
}

.p-feature__item {
  display: flex;
  justify-content: center;
  gap: 40px;
  align-items: center;
}
@media screen and (min-width: 601px) {
  .p-feature__item:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__item {
    gap: calc((40 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__item {
    flex-direction: column;
    gap: 12px;
  }
}

.p-feature__txt-area {
  flex: 1;
}
@media screen and (max-width: 600px) {
  .p-feature__txt-area {
    text-align: center;
  }
}

.p-feature__num {
  display: block;
  font-weight: 900;
  font-size: 48px;
  line-height: 1.4;
  color: #967fd1;
  margin-bottom: 4px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__num {
    font-size: calc((48 / var(--base-width)) * 100vw);
    margin-bottom: calc((4 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__num {
    margin-bottom: 0;
    margin-right: 12px;
    font-size: 48px;
  }
}

.p-feature__head {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__head {
    font-size: calc((32 / var(--base-width)) * 100vw);
    margin-bottom: calc((8 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__head {
    margin-bottom: 0;
    font-size: 26px;
    text-align: left;
    display: flex;
    align-items: center;
  }
}

.p-feature__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__desc {
    font-size: calc((15 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__desc {
    text-align: left;
  }
}

.p-feature__img-area {
  width: 480px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-feature__img-area {
    width: calc((480 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-feature__img-area {
    width: 100%;
  }
}

.p-feature__img-area img {
  max-width: 100%;
}
@media screen and (max-width: 600px) {
  .p-feature__img-area img {
    width: 100%;
  }
}

/* ====================
  料金プラン
==================== */
.p-price {
  padding: 100px 0;
  font-family: "M PLUS 1p";
  font-weight: 800;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price {
    padding: calc((100 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-price {
    padding: 60px 16px;
  }
}

.p-price__title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__title {
    font-size: calc((38 / var(--base-width)) * 100vw);
    margin-bottom: calc((60 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__title {
    font-size: 26px;
    margin-bottom: 40px;
  }
}

.p-price__items {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__items {
    max-width: calc((1200 / var(--base-width)) * 100vw);
    gap: calc((20 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__items {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.p-price__item {
  flex: 1;
  border: 2px solid #967fd1;
  border-top: 12px solid #967fd1;
  border-radius: 16px;
  padding: 32px 0 40px;
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__item {
    border-radius: calc((16 / var(--base-width)) * 100vw);
    padding: calc((32 / var(--base-width)) * 100vw) 0
      calc((40 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__item {
    flex: initial;
    width: calc(50% - 4px);
    padding: 24px 0 24px;
  }
}

.p-price__name {
  font-size: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__name {
    font-size: calc((24 / var(--base-width)) * 100vw);
    padding-bottom: calc((32 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__name {
    font-size: calc((20 / 446) * 100vw);
    padding-bottom: 24px;
  }
}

.p-price__cost {
  margin: 32px 0;
  line-height: 1.2;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__cost {
    margin-bottom: calc((32 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__cost {
    margin: 20px 0;
  }
}

.p-price__yen {
  font-size: 32px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__yen {
    font-size: calc((32 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__yen {
    font-size: calc((24 / 446) * 100vw);
  }
}

.p-price__amount {
  font-size: 40px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__amount {
    font-size: calc((40 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__amount {
    font-size: calc((30 / 446) * 100vw);
  }
}

.p-price__unit {
  font-size: 20px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__unit {
    font-size: calc((20 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__unit {
    font-size: calc((15 / 446) * 100vw);
  }
}

.p-price__specs {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 0 16px;
  padding: 40px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__specs {
    gap: calc((18 / var(--base-width)) * 100vw);
    margin: 0 calc((16 / var(--base-width)) * 100vw);
    padding: calc((40 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-price__specs {
    padding: 20px 0;
    margin: 0 calc((16 / 446) * 100vw);
  }
}

.p-price__spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 1.2;
  margin: 0 16px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__spec {
    font-size: calc((16 / var(--base-width)) * 100vw);
    margin: 0 calc((16 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-price__spec {
    font-size: calc((15 / 446) * 100vw);
    margin: 0 calc((16 / 446) * 100vw);
  }
}

.p-price__spec dt {
  font-weight: 500;
}

.p-price__spec dd {
  color: #815fd9;
}

.p-price__desc {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  margin: 32px 16px 0;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-price__desc {
    font-size: calc((16 / var(--base-width)) * 100vw);
    margin: calc((32 / var(--base-width)) * 100vw)
      calc((16 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-price__desc {
    font-size: calc((16 / 446) * 100vw);
  }
}

.p-benefits {
  padding-top: 100px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits {
    padding-top: calc((100 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-benefits {
    padding-top: 60px;
  }
}

.p-benefits__inner {
  max-width: 1116px;
  margin: 0 auto;
  background-color: #faf5ed;
  border-radius: 16px;
  padding: 60px 48px;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__inner {
    max-width: calc((1116 / var(--base-width)) * 100vw);
    border-radius: calc((16 / var(--base-width)) * 100vw);
    padding: calc((60 / var(--base-width)) * 100vw)
      calc((48 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-benefits__inner {
    padding: 40px 20px;
  }
}

.p-benefits__inner::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 28px 40px 28px;
  border-color: transparent transparent #faf5ed transparent;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__inner::before {
    top: calc((-40 / var(--base-width)) * 100vw);
    border-width: 0 calc((28 / var(--base-width)) * 100vw)
      calc((40 / var(--base-width)) * 100vw)
      calc((28 / var(--base-width)) * 100vw);
  }
}

.p-benefits__sub-title {
  color: #967fd1;
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 400;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__sub-title {
    font-size: calc((21 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-benefits__sub-title {
    font-size: 16px;
  }
}
.p-benefits__sub-title span {
  font-weight: 800;
}

.p-benefits__title {
  font-size: 28px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__title {
    font-size: calc((28 / var(--base-width)) * 100vw);
    margin-bottom: calc((36 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-benefits__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.p-benefits__title .-marker {
  background: linear-gradient(transparent 75%, #fff940 75%);
}

.p-benefits__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__items {
    gap: calc((20 / var(--base-width)) * 100vw);
  }
}

.p-benefits__item {
  width: calc(33.333% - 13.33px);
  background: #fff;
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__item {
    width: calc(33.333% - calc((13.33 / var(--base-width)) * 100vw));
    border-radius: calc((16 / var(--base-width)) * 100vw);
    padding: calc((40 / var(--base-width)) * 100vw)
      calc((32 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-benefits__item {
    width: 100%;
  }
}

.p-benefits__icon {
  width: 140px;
  height: 140px;
  margin-bottom: 24px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__icon {
    width: calc((140 / var(--base-width)) * 100vw);
    height: calc((140 / var(--base-width)) * 100vw);
    margin-bottom: calc((24 / var(--base-width)) * 100vw);
  }
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__icon {
    width: 120px;
    height: 120px;
  }
}

.p-benefits__head {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__head {
    font-size: calc((20 / var(--base-width)) * 100vw);
    margin-bottom: calc((10 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-benefits__head {
    font-size: 18px;
  }
}

.p-benefits__text {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-benefits__text {
    font-size: calc((16 / var(--base-width)) * 100vw);
  }
}

/* ====================
  導入までの 簡単3ステップ
==================== */
.p-flow {
  padding: 100px 0;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow {
    padding: calc((100 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-flow {
    padding: 60px 16px;
  }
}

.p-flow__inner {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__inner {
    max-width: calc((800 / var(--base-width)) * 100vw);
  }
}

.p-flow__title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 60px;
  line-height: 1.1336;
  letter-spacing: 0.04em;
}
.p-flow__title .-big {
  font-size: 52px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__title {
    font-size: calc((38 / var(--base-width)) * 100vw);
    margin-bottom: calc((60 / var(--base-width)) * 100vw);
  }
  .p-flow__title .-big {
    font-size: calc((52 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-flow__title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .p-flow__title .-big {
    font-size: 42px;
  }
}

.p-flow__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-flow__item {
  display: flex;
  position: relative;
  padding-bottom: 48px;
}
.p-flow__item:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__item {
    padding-bottom: calc((48 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-flow__item {
    padding-bottom: 32px;
  }
}

.p-flow__step-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  flex-shrink: 0;
  margin-top: 3px;
  margin-right: 24px;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__step-area {
    width: calc((100 / var(--base-width)) * 100vw);
    margin-top: calc((3 / var(--base-width)) * 100vw);
    margin-right: calc((24 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-flow__step-area {
    margin-top: 0;
    margin-right: 16px;
  }
}

.p-flow__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50px;
  width: 2px;
  height: 40px;
  border-left: 2px dotted #4d4d4d80;
  transform: translateX(-50%);
  z-index: 0;
}
.p-flow__item:last-child::before {
  display: none;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__item::before {
    left: calc((50 / var(--base-width)) * 100vw);
    height: calc((40 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-flow__item::before {
    height: calc(100% - 128px);
  }
}

.p-flow__step-label {
  font-size: 14px;
  line-height: 1.4;
  color: #815fd9;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__step-label {
    font-size: calc((14 / var(--base-width)) * 100vw);
  }
}

.p-flow__icon {
  width: 100px;
  height: 100px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__icon {
    width: calc((100 / var(--base-width)) * 100vw);
    height: calc((100 / var(--base-width)) * 100vw);
  }
}

.p-flow__icon img {
  width: 100%;
}

.p-flow__content {
  flex: 1;
}

.p-flow__head {
  font-size: 24px;
  line-height: 1.4;
  color: #815fd9;
  margin-bottom: 8px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__head {
    font-size: calc((24 / var(--base-width)) * 100vw);
    margin-bottom: calc((8 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-flow__head {
    font-size: 20px;
  }
}

.p-flow__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-flow__text {
    font-size: calc((15 / var(--base-width)) * 100vw);
  }
}

/* ====================
  よくある質問
==================== */
.p-faq {
  padding: 80px 0;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq {
    padding: calc((80 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-faq {
    padding: 40px 16px;
  }
}

.p-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  background-color: #f6f2ff;
  border-radius: 12px;
  padding: 60px 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__inner {
    max-width: calc((1200 / var(--base-width)) * 100vw);
    border-radius: calc((12 / var(--base-width)) * 100vw);
    padding: calc((60 / var(--base-width)) * 100vw)
      calc((50 / var(--base-width)) * 100vw);
    gap: calc((60 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__inner {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }
}

.p-faq__title {
  font-size: 38px;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__title {
    font-size: calc((38 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__title {
    font-size: 24px;
    width: 100%;
    text-align: center;
  }
}

.p-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  font-family: "Inter", sans-serif;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__list {
    gap: calc((12 / var(--base-width)) * 100vw);
  }
}

.p-faq__item {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__item {
    border-radius: calc((8 / var(--base-width)) * 100vw);
  }
}

.p-faq__q {
  padding: 24px 32px;
  padding-right: 72px;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  position: relative;
}
.p-faq__q:hover {
  opacity: 0.85;
  transition: opacity 0.3s;
}

@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__q {
    padding: calc((24 / var(--base-width)) * 100vw)
      calc((32 / var(--base-width)) * 100vw);
    padding-right: calc((72 / var(--base-width)) * 100vw);
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__q {
    padding: 20px;
    padding-right: 50px;
    font-size: 15px;
    line-height: 1.5;
    align-items: flex-start;
  }
}

.p-faq__q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/icon-plus.svg");
}

@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__q::after {
    right: calc((24 / var(--base-width)) * 100vw);
    width: calc((24 / var(--base-width)) * 100vw);
    height: calc((24 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__q::after {
    right: 20px;
    width: 20px;
    height: 20px;
  }
}

.p-faq__q-mark {
  color: #815fd9;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__q-mark {
    font-size: calc((24 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__q-mark {
    font-size: 21px;
  }
}

.p-faq__item.is-open .p-faq__q::after {
  background-image: url("../img/icon-minus.svg");
}

.p-faq__a {
  display: none;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__a {
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__a {
    font-size: 15px;
  }
}

.p-faq__a-inner {
  padding: 0 72px 24px 32px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__a-inner {
    padding: 0 calc((72 / var(--base-width)) * 100vw)
      calc((24 / var(--base-width)) * 100vw)
      calc((32 / var(--base-width)) * 100vw);
    gap: calc((8 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__a-inner {
    padding: 0 20px 20px 20px;
  }
}

.p-faq__a-mark {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-faq__a-mark {
    font-size: calc((18 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-faq__a-mark {
    font-size: 15px;
  }
}

/* ====================
  お問い合せ
==================== */
.p-contact {
  background-color: #341c70e5;
  padding: 100px 0;
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact {
    padding: calc((100 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-contact {
    padding: 40px 16px;
  }
}

.p-contact__title {
  text-align: center;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 60px;
  line-height: 1.1;
}
.p-contact__title .-slash {
  font-weight: 400;
  font-size: 52px;
}
.p-contact__title .-big {
  font-size: 52px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__title {
    font-size: calc((38 / var(--base-width)) * 100vw);
    margin-bottom: calc((60 / var(--base-width)) * 100vw);
  }
  .p-contact__title .-slash,
  .p-contact__title .-big {
    font-size: calc((52 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-contact__title {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .p-contact__title .-slash,
  .p-contact__title .-big {
    font-size: 30px;
  }
}

.p-contact__inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #faf5ed;
  border-radius: 8px;
  padding: 60px 50px;
  color: #333333;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__inner {
    max-width: calc((1000 / var(--base-width)) * 100vw);
    padding: calc((60 / var(--base-width)) * 100vw)
      calc((50 / var(--base-width)) * 100vw);
    border-radius: calc((8 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-contact__inner {
    padding: 40px 20px;
  }
}

.p-contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__list {
    gap: calc((24 / var(--base-width)) * 100vw);
    margin-bottom: calc((24 / var(--base-width)) * 100vw);
  }
}

.p-contact__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__item {
    gap: calc((10 / var(--base-width)) * 100vw);
  }
}

.p-contact__item dt label {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  margin-left: 12px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__item dt label {
    font-size: calc((16 / var(--base-width)) * 100vw);
    margin-left: calc((12 / var(--base-width)) * 100vw);
  }
}

.p-contact__item dd input,
.p-contact__item dd textarea {
  width: 100%;
  border: none;
  background-color: #fff;
  border-radius: 8px;
  padding: 12px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.p-contact__item dd input:focus,
.p-contact__item dd textarea:focus {
  outline: 2px solid #504586;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__item dd input,
  .p-contact__item dd textarea {
    border-radius: calc((8 / var(--base-width)) * 100vw);
    padding: calc((12 / var(--base-width)) * 100vw);
    font-size: calc((16 / var(--base-width)) * 100vw);
  }
}

.p-contact__item dd textarea {
  height: 252px;
  resize: vertical;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__item dd textarea {
    height: calc((252 / var(--base-width)) * 100vw);
  }
}

.p-contact__privacy {
  text-align: center;
  margin-bottom: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__privacy {
    margin-bottom: calc((16 / var(--base-width)) * 100vw);
  }
}

.p-contact__privacy-label {
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__privacy-label {
    font-size: calc((16 / var(--base-width)) * 100vw);
  }
}

.p-contact__privacy-txt a {
  color: #815fd9;
  text-decoration: underline;
}

.p-contact__note {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 40px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__note {
    font-size: calc((14 / var(--base-width)) * 100vw);
    margin-top: calc((40 / var(--base-width)) * 100vw);
  }
}

.p-contact__submit {
  text-align: center;
}
.p-contact__btn {
  background-color: #f2a90b;
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 20px;
  padding: 17px 100px;
  border-radius: 80px;
  transition: opacity 0.3s;
}
.p-contact__btn:hover {
  opacity: 0.9;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-contact__btn {
    font-size: calc((20 / var(--base-width)) * 100vw);
    padding: calc((17 / var(--base-width)) * 100vw)
      calc((100 / var(--base-width)) * 100vw);
  }
}

/* ====================
  フッター
==================== */
.l-footer {
  background-color: #967fd1;
  padding: 24px 48px;
  color: #fff;
  font-family: "M PLUS 1p", sans-serif;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .l-footer {
    padding: calc((24 / var(--base-width)) * 100vw)
      calc((48 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .l-footer {
    padding: 24px;
  }
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .l-footer__inner {
    margin-bottom: calc((8 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .l-footer__inner {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

.l-footer__logo img {
  width: 174.45px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .l-footer__logo img {
    width: calc((174.45 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .l-footer__logo img {
    width: 220px;
  }
}

.l-footer__nav {
  display: flex;
  gap: 30px;
  font-weight: 500;
  font-size: 15px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .l-footer__nav {
    gap: calc((30 / var(--base-width)) * 100vw);
    font-size: calc((15 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .l-footer__nav {
    flex-direction: column;
    gap: 12px;
  }
}

.l-footer__copy {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

/* ====================
  下層ページ共通
==================== */
.l-sub-main {
  background-color: #f6f2ff;
  padding-bottom: 100px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .l-sub-main {
    padding-bottom: calc((100 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .l-sub-main {
    padding-bottom: 50px;
  }
}

.p-sub-fv {
  background-image: url("../img/bg.webp");
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 70px 0;
  color: #fff;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-fv {
    padding: calc((70 / var(--base-width)) * 100vw) 0;
  }
}
@media screen and (max-width: 600px) {
  .p-sub-fv {
    padding: 40px 0;
  }
}

.p-sub-fv__title {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.8;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-fv__title {
    font-size: calc((48 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-sub-fv__title {
    font-size: 32px;
  }
}

.p-sub-container {
  max-width: 1100px;
  margin: 100px auto 0;
  background-color: #fff;
  border-radius: 8px;
  padding: 60px 100px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-container {
    max-width: calc((1100 / var(--base-width)) * 100vw);
    margin: calc((100 / var(--base-width)) * 100vw) auto 0;
    padding: calc((60 / var(--base-width)) * 100vw)
      calc((100 / var(--base-width)) * 100vw);
  }
}
@media screen and (max-width: 600px) {
  .p-sub-container {
    margin: 50px 16px 0;
    padding: 20px;
  }
}

/* ====================
  会社概要
==================== */
.p-company-list {
  display: flex;
  flex-direction: column;
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}

.p-company-row {
  display: flex;
  border-bottom: 1px solid #cccccc;
  padding: 24px 40px;
}
@media screen and (max-width: 600px) {
  .p-company-row {
    flex-direction: column;
    padding: 24px;
  }
}

.p-company-dt {
  color: #815fd9;
  width: 76px;
}
@media screen and (max-width: 600px) {
  .p-company-dt {
    width: 100%;
    margin-bottom: 16px;
  }
}

.p-company-dd {
  flex: 1;
}

/* ====================
  下層ページ（文章系）
==================== */
.p-document {
  padding: 24px 40px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 600px) {
  .p-document {
    padding: 24px 0;
  }
}

.p-document h2 {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .p-document h2 {
    line-height: 1.5;
  }
}

.p-document p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.p-sub-container.-terms .p-document p,
.p-document li {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.p-document h3 {
  color: #967fd1;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  margin: 20px 0 8px;
}

.p-document ol {
  list-style-type: decimal;
  padding-left: 21px;
}

.p-document ul {
  list-style: disc;
  padding-left: 26px;
}

.p-terms__date {
  margin-top: 24px;
  text-align: right;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}

/* ====================
  お問い合せ（下層ページ）
==================== */
.p-sub-container .p-contact__item {
  margin-bottom: 24px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-container .p-contact__item {
    margin-bottom: calc((24 / var(--base-width)) * 100vw);
  }
}

.p-sub-container .p-contact__item dd input,
.p-sub-container .p-contact__item dd textarea {
  background-color: #fcfcfc;
}

.p-sub-check-list {
  display: flex;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-check-list {
    gap: calc((8 / var(--base-width)) * 100vw);
    margin-left: calc((12 / var(--base-width)) * 100vw);
  }
}

.p-sub-check-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-left: 12px;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}
.p-sub-check-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #815fd9;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-check-item {
    gap: calc((8 / var(--base-width)) * 100vw);
    margin-left: calc((12 / var(--base-width)) * 100vw);
    font-size: calc((16 / var(--base-width)) * 100vw);
  }
  .p-sub-check-item input[type="checkbox"] {
    width: calc((24 / var(--base-width)) * 100vw);
    height: calc((24 / var(--base-width)) * 100vw);
  }
}

.p-sub-check-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (min-width: 601px) and (max-width: 1440px) {
  .p-sub-check-item label {
    gap: calc((10 / var(--base-width)) * 100vw);
  }
}
