@charset "UTF-8";
@layer reset {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}
@layer base {
  html {
    font-size: 62.5%;
  }
  @media (max-width: 768px) {
    html {
      font-size: 56.25%;
    }
  }
  body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #333333;
    background: #FFFDFD;
    height: auto;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  h2 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 52px;
    letter-spacing: 2px;
    text-align: center;
  }
  @media (max-width: 768px) {
    h2 {
      font-size: 3.2rem;
      line-height: 1.6em;
    }
  }
  h2 .header-block {
    display: inline-block;
    line-height: 1em;
    padding: 0.8rem 0.4rem 0.9rem 0.7rem;
    background-color: #F86C87;
    color: #FFF;
    margin: 0 0.1em;
  }
  h2.-sub {
    font-size: 2.7rem;
    font-weight: 800;
  }
  h3 {
    font-size: 3.2rem;
    font-weight: 800;
  }
  p.-big {
    font-size: 2rem;
    line-height: 3.4rem;
  }
  p.-small {
    font-size: 1.4rem;
  }
  @media (min-width: 769px) {
    section {
      scroll-margin-top: 7rem;
    }
  }
}
@layer layout {
  .l-header {
    position: relative;
    z-index: 100;
    transition: all 0.3s ease;
    /* 固定された状態 */
  }
  .l-header h1 {
    font-family: "Zen Old Mincho", serif;
    font-weight: 800;
    color: #333;
    font-size: 3.4rem;
  }
  @media (max-width: 768px) {
    .l-header h1 {
      font-size: 1rem;
      margin: 0 auto;
    }
  }
  @media (max-width: 768px) {
    .l-header h1 a {
      display: block;
      height: fit-content;
    }
  }
  .l-header h1 img {
    width: 37rem;
  }
  @media (max-width: 768px) {
    .l-header h1 img {
      max-width: 30rem;
    }
  }
  @media (min-width: 769px) {
    .l-header .c-btn {
      font-size: 2.4rem !important;
    }
  }
  @media (max-width: 768px) {
    .l-header .c-btn {
      display: inline-flex !important;
      flex-direction: column !important;
      font-size: 1.2rem !important;
      padding: 0.5rem 0.5rem !important;
      box-sizing: border-box !important;
      border: 3px solid #F86C87 !important;
    }
  }
  .l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFDFD;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }
  @media (max-width: 768px) {
    .l-header.is-fixed {
      position: relative;
    }
  }
  .l-header.is-fixed h1 {
    font-size: 3rem !important;
  }
  @media (max-width: 768px) {
    .l-header.is-fixed h1 {
      font-size: 1.6rem !important;
    }
  }
  @media (min-width: 769px) {
    .l-header.is-fixed .c-btn {
      padding: 1rem 1.8rem !important;
      font-size: 1.8rem !important;
    }
  }
  .l-header.is-fixed .c-btn img {
    width: 2.2rem !important;
    height: 2.2rem !important;
  }
  .l-header__inner {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2.5rem;
  }
  @media (max-width: 768px) {
    .l-header__inner {
      padding: 1rem 1.2rem;
    }
  }
  .l-header__actions {
    display: flex;
    align-items: center;
    gap: 1.8rem;
  }
  @media (max-width: 768px) {
    .l-header__actions {
      gap: 0.5rem;
    }
  }
}
@layer layout {
  .l-footer {
    background: #FFF6F6;
    color: #333333;
    padding-block: 2rem 8rem;
    text-align: center;
  }
}
@layer layout {
  .l-section {
    padding-block: 9rem;
  }
  @media (max-width: 768px) {
    .l-section {
      padding-block: 6rem;
      padding-inline: 1.2rem;
    }
  }
  .l-inner {
    max-width: 1000px;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .l-inner {
      max-width: 100%;
    }
  }
}
@layer components {
  .c-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 1.3rem 1.9rem;
    border-radius: 12px;
    font-size: 2.6rem;
    line-height: 1rem;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s;
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.1));
  }
  @media (max-width: 768px) {
    .c-btn {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      font-size: 2.85rem;
      padding-block: 1.2rem;
    }
  }
  .c-btn:hover {
    background: #33739f;
  }
  .c-btn img {
    width: 3rem;
    height: 3rem;
  }
  .c-btn.-pink {
    color: #fff;
    background: #F86C87;
  }
  .c-btn.-pink:hover {
    background: #f63b5f;
  }
  .c-btn.-pink_line {
    color: #F86C87;
    background: #fff;
    border: 3px solid #F86C87;
  }
  .c-btn.-pink_line:hover {
    background: #e6e6e6;
  }
  .c-btn.-green {
    color: #fff;
    background: #8CC66D;
  }
  .c-btn.-green:hover {
    background: #6fb848;
  }
  .c-btn.-green_line {
    color: #8CC66D;
    background: #fff;
    border: 3px solid #8CC66D;
  }
  .c-btn.-green_line:hover {
    background: #e6e6e6;
  }
  .c-btn--form {
    background: #4caf50;
  }
}
@layer components {
  .c-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 25px 20px;
  }
}
@layer components {
  .c-company-info {
    padding: 40px 0;
    font-size: 1.4rem;
    color: #333333;
  }
  .c-company-info__header {
    margin-bottom: 6rem;
  }
  @media (max-width: 768px) {
    .c-company-info__header {
      margin-bottom: 3rem;
    }
  }
  .c-company-info__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    margin: 0 auto;
  }
  @media (max-width: 768px) {
    .c-company-info__list {
      grid-template-columns: 1fr;
      gap: 0;
    }
  }
  .c-company-info__row {
    display: flex;
    border-top: 1px dotted #ccc;
    padding: 1.4rem 0;
    flex-direction: row;
    align-items: center;
  }
  .c-company-info__row:nth-last-child(2), .c-company-info__row:last-child {
    border-bottom: 1px dotted #ccc;
  }
  .c-company-info__term {
    width: 32%;
    min-width: 120px;
    font-weight: bold;
    font-size: 1.4rem;
    padding-right: 10px;
    line-height: 1.6;
  }
  .c-company-info__desc {
    width: 68%;
    font-size: 1.4rem;
    line-height: 1.7;
    word-break: break-word;
    text-align: left;
  }
  @media (max-width: 600px) {
    .c-company-info {
      padding: 24px 8px;
    }
    .c-company-info__list {
      max-width: 90%;
    }
    .c-company-info__row {
      padding: 10px 0;
    }
    .c-company-info__row:nth-last-child(2) {
      border-bottom: initial;
    }
    .c-company-info__term {
      width: 40%;
      font-size: 1.4rem;
      padding-right: 0;
    }
    .c-company-info__desc {
      width: 100%;
      font-size: 1.4rem;
      padding-right: 0;
    }
    .c-company-info__term {
      margin-bottom: 4px;
    }
  }
}
@layer components {
  .cta-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
  }
  .cta-fixed__inner {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  }
  .cta-fixed__item {
    flex: 1;
    text-align: center;
    padding: 10px 5px;
    color: #fff;
    font-weight: bold;
    font-size: 10.5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .cta-fixed__item a {
    display: flex;
    text-decoration: none;
    color: #fff;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  .cta-fixed__item a i {
    display: block;
    font-size: 14px;
  }
  .cta-fixed__item .cta-fixed__line,
  .cta-fixed__item .cta-fixed__mail {
    font-size: 13px;
    font-weight: 700;
    display: block;
    line-height: 1.2em;
  }
  .cta-fixed__item--tel {
    background-color: #438EC2;
  }
  .cta-fixed__item--tel .cta-fixed__number {
    font-size: 13px;
    font-weight: 700;
    display: block;
    line-height: 1em;
  }
  .cta-fixed__item--form {
    background-color: #F86C87;
  }
  .cta-fixed__item--line {
    background-color: #8CC66D;
  }
}
@layer components {
  .c-modal {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    inset: 0;
    display: none;
  }
  .c-modal.is-active {
    display: block;
  }
}
@layer components {
  .p-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .p-faq__item {
    border-bottom: 1px solid #f86c87;
    padding-block: 2rem;
  }
  .p-faq__item dt.question {
    position: relative;
    cursor: pointer;
    font-weight: bold;
    padding-left: 3.8em;
    padding-right: 4rem;
    font-size: 1.8rem;
    line-height: 4.7rem;
  }
  @media (max-width: 768px) {
    .p-faq__item dt.question {
      line-height: 2.7rem;
      min-height: 2.8em;
    }
  }
  .p-faq__item dt.question::before {
    font-family: "Zen Maru Gothic", sans-serif;
    content: "Q";
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: #F86C87;
    border-radius: 50%;
    width: 5rem;
    height: 5rem;
    text-align: center;
    line-height: 4.7rem;
    font-size: 2.4rem;
    font-weight: bold;
  }
  .p-faq__item dt.question::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #f86c87;
    font-size: 24px;
    transition: transform 0.3s ease;
  }
  .p-faq__item dt.question.active::after {
    content: "−";
    transform: rotate(0deg);
  }
  .p-faq__item dd.answer {
    margin-top: 1.2rem;
    padding-inline: 4.5em 1rem;
    font-size: 1.5rem;
    line-height: 1.5em;
    letter-spacing: 0.03em;
    display: none;
  }
  @media (max-width: 480px) {
    .p-faq__item dd.answer {
      font-size: 1.5rem;
    }
  }
}
@layer components {
  .p-order-form {
    max-width: 640px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    line-height: 1.6;
  }
  .p-order-form .p-form-group {
    margin-bottom: 30px;
  }
  .p-order-form .p-form-group.-error .-message {
    color: #e63946;
    font-weight: bold;
  }
  .p-order-form .p-form-group.-error input,
  .p-order-form .p-form-group.-error textarea {
    border-color: #e63946;
  }
  .p-order-form .p-form-group label.-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 6px;
  }
  .p-order-form .p-form-group label.-title .-required {
    margin-left: 8px;
    background: #f86c87;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .p-order-form .p-form-group label.-title .-any {
    margin-left: 8px;
    background: #ddd;
    color: #333;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
  }
  .p-order-form .p-form-group .p-form-group-box input[type=text],
  .p-order-form .p-form-group .p-form-group-box input[type=email],
  .p-order-form .p-form-group .p-form-group-box input[type=tel],
  .p-order-form .p-form-group .p-form-group-box textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: border 0.3s;
  }
  .p-order-form .p-form-group .p-form-group-box input[type=text]:focus,
  .p-order-form .p-form-group .p-form-group-box input[type=email]:focus,
  .p-order-form .p-form-group .p-form-group-box input[type=tel]:focus,
  .p-order-form .p-form-group .p-form-group-box textarea:focus {
    border-color: #f86c87;
    outline: none;
  }
  .p-order-form .p-form-group .p-form-group-box textarea {
    height: 150px;
    resize: vertical;
  }
  .p-order-form .p-form-group .p-form-group-box .-checkbox,
  .p-order-form .p-form-group .p-form-group-box .-label {
    display: inline-block;
    margin-right: 20px;
    font-size: 15px;
  }
  .p-order-form .p-form-group .p-form-group-box .-checkbox input,
  .p-order-form .p-form-group .p-form-group-box .-label input {
    margin-right: 6px;
  }
  .p-order-form .p-form-group .p-form-group-box .-comment {
    margin-top: 6px;
    font-size: 13px;
    color: #888;
  }
  .p-order-form .p-form-group .p-form-group-box .-message {
    margin-top: 4px;
    font-size: 13px;
  }
  .p-order-form .c-button {
    display: block;
    width: 160px;
    margin: 30px auto 0;
    background: #f86c87;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 0;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .p-order-form .c-button:hover {
    background: #e84d70;
  }
  .p-order-form .c-button span {
    display: block;
  }
  .p-article {
    margin-block: 6rem;
    text-align: center;
  }
  .p-article h2 {
    margin-bottom: 6rem;
  }
  .p-article .c-button {
    margin-top: 4rem;
    display: inline-block;
    background: #F86C87;
    color: white;
    line-height: 1em;
    padding: 1rem 2rem;
    border-radius: 9999px;
  }
  .c-privacy-scrollbox {
    max-width: 640px;
    margin: 3rem auto 0;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
    max-height: 240px;
    overflow: hidden;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  }
  @media (max-width: 768px) {
    .c-privacy-scrollbox {
      margin: 1.5rem auto 0;
    }
  }
  .c-privacy-scrollbox__inner {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 10px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #999;
  }
  .c-privacy-scrollbox__inner::-webkit-scrollbar {
    width: 6px;
  }
  .c-privacy-scrollbox__inner::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }
  .c-privacy-scrollbox__inner::-webkit-scrollbar-track {
    background: #f5f5f5;
  }
}
@layer components {
  .c-modal {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    inset: 0;
    display: none;
  }
  .c-modal.is-active {
    display: block;
  }
}
@layer components {
  .c-status {
    display: inline-block;
    padding: 1.6rem 2.5rem;
    border: 3px solid #8CC66D;
    border-radius: 4rem;
    color: #333;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: bold;
    background-color: #fff;
    font-size: 2.2rem;
    line-height: 1em;
  }
  @media (max-width: 768px) {
    .c-status {
      font-size: 1.8rem;
    }
  }
  .c-status .c-time {
    color: #8CC66D;
    margin-right: 0.2rem;
  }
}
@layer utilities {
  .js-fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .js-fade.is-show {
    opacity: 1;
    transform: translateY(0);
  }
}
.c-bg.-bg {
  background-color: #FFF9F6;
}
.c-bg.-bg-pink {
  background-color: #FFF6F6;
}
.c-bg.-bg-check {
  background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url("../images/bg_2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: normal;
}
@media (max-width: 768px) {
  .c-bg.-bg-check {
    background-image: linear-gradient(rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url("../images/bg_2-sp.png");
  }
}

@layer utilities {
  .c-text.-black {
    color: #333333;
  }
  .c-text.-white {
    color: #FFFDFD;
  }
  .c-text.-gray {
    color: #9B9B9B;
  }
  .c-text.-pink {
    color: #F86C87;
  }
  .c-text.-orange {
    color: #FF8A65;
  }
  .c-text.-blue {
    color: #438EC2;
  }
  .c-text.-green {
    color: #8CC66D;
  }
  .c-text.-yellow {
    color: #FFF78C;
  }
  .c-text.-bold600 {
    font-weight: 600;
  }
  .c-text.-bold800 {
    font-weight: 800;
  }
}
@layer utilities {
  @media (min-width: 768px) {
    .is-sp {
      display: none !important;
    }
  }
  @media (max-width: 767px) {
    .is-pc {
      display: none !important;
    }
  }
  .u-text-center {
    text-align: center;
  }
  .u-mt-4 {
    margin-top: 1rem;
  }
  .u-hidden {
    display: none !important;
  }
  .u-rounded {
    border-radius: 9999px;
  }
  .u-rounded-14 {
    border-radius: 14px;
  }
}
@layer page {
  .lp-main {
    background: #fff9f6;
  }
  .l-fv {
    position: relative;
  }
  .l-fv__timer {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    border-radius: 3px;
    background-color: #8CC66D !important;
    color: #FFFDFD !important;
  }
  @media (max-width: 768px) {
    .l-fv__timer {
      position: initial;
      width: 100%;
      border-radius: initial;
      border: initial;
      background-color: #8CC66D;
      color: #FFFDFD;
      text-align: center;
    }
  }
  .l-fv__timer .c-time {
    color: #FFFDFD !important;
    letter-spacing: 2px;
  }
  .l-fv__badge {
    position: absolute;
    bottom: -2.8rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 1.6rem;
  }
  .l-fv__badge img {
    width: 100%;
    width: 14.6rem;
    height: auto;
  }
  @media (max-width: 768px) {
    .l-fv__badge {
      display: none;
    }
  }
  .p-cta,
  .p-fvcta {
    padding: 6rem 1rem;
  }
  @media (max-width: 768px) {
    .p-cta,
    .p-fvcta {
      padding: 3rem 1.2rem;
    }
  }
  .p-cta__inner,
  .p-fvcta__inner {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 3rem;
  }
  @media (max-width: 768px) {
    .p-cta__inner,
    .p-fvcta__inner {
      flex-direction: column;
      gap: 1.6rem;
    }
  }
  .p-cta .c-btn,
  .p-fvcta .c-btn {
    line-height: 1em;
  }
  .p-cta .c-btn img,
  .p-fvcta .c-btn img {
    width: 4.2rem;
    height: 4.2rem;
  }
  .p-cta .p-offer,
  .p-fvcta .p-offer {
    padding-top: 1.6rem;
  }
  @media (min-width: 769px) {
    .p-cta .p-offer,
    .p-fvcta .p-offer {
      max-width: 97rem;
    }
  }
  .p-cta {
    color: #fff;
    text-align: center;
    padding-block: 8rem;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/bg-cta.jpg");
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
  }
  @media (max-width: 768px) {
    .p-cta {
      padding-block: 5rem;
    }
  }
  @media (max-width: 768px) {
    .p-cta {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/bg-cta-sp.jpg");
    }
  }
  .p-cta .c-status {
    border: 3px solid #F86C87 !important;
    margin-bottom: 3rem;
  }
  .p-cta .c-status .c-time {
    color: #F86C87 !important;
  }
  .p-worry {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6rem;
    padding: 9rem 0;
    text-align: center;
    background: url("../images/bg_1.jpg") no-repeat center/cover;
  }
  @media (max-width: 768px) {
    .p-worry {
      background: url("../images/bg_1-sp.jpg") no-repeat center/cover;
      gap: 5rem;
      padding-block: 5rem 6rem;
    }
  }
  .p-worry > h2 {
    font-family: "Zen Old Mincho", serif;
  }
  @media (max-width: 768px) {
    .p-worry > h2 {
      font-size: 3.8rem;
      line-height: 1.6em;
    }
  }
  .p-worry > h2 > span {
    position: relative;
    margin: 0 0.8rem;
    padding-bottom: 1.2rem;
  }
  .p-worry > h2 > span:after {
    content: "";
    display: inline-block;
    background: radial-gradient(circle farthest-side, #438EC2, #438EC2 50%, transparent 50%, transparent);
    background-size: 0.8rem;
    height: 0.8rem;
    width: 3em;
    position: absolute;
    left: 0;
    bottom: 1rem;
  }
  @media (max-width: 768px) {
    .p-worry > h2 > span:after {
      bottom: 0.5rem;
    }
  }
  .p-worry__text {
    font-size: 2.4rem;
    line-height: 4rem;
    letter-spacing: 0.12rem;
  }
  @media (max-width: 768px) {
    .p-worry__text {
      padding: 0 1.2rem;
      font-size: 2rem;
    }
  }
  .p-worry__card {
    font-size: 3.6rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 800;
    line-height: 5rem;
    letter-spacing: 1.8px;
  }
  @media (max-width: 768px) {
    .p-worry__card {
      margin: 0 1.2rem;
      font-size: 2.8rem;
      line-height: 1.6em;
    }
  }
  .p-about__intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
  }
  @media (max-width: 768px) {
    .p-about__intro {
      flex-direction: column;
    }
  }
  .p-about__heading {
    margin-bottom: 2rem;
  }
  @media (min-width: 769px) {
    .p-about__heading {
      text-align: left;
    }
  }
  .p-about__image {
    flex: 0 0 48%;
  }
  .p-about__image img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
  }
  .p-about__text {
    flex: 0 0 48%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .p-about__text .p-about__lead {
    font-size: 2.4rem;
    font-weight: 600;
  }
  @media (max-width: 768px) {
    .p-about__text .p-about__lead {
      text-align: center;
    }
  }
  .p-about__text .p-about__desc {
    font-size: 1.8rem;
    line-height: 32px;
    letter-spacing: 0.9px;
  }
  .p-about__services {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6rem;
    margin-top: 10rem;
    text-align: center;
  }
  .p-about__services-heading {
    line-height: 1.6;
    margin-bottom: 8px;
  }
  @media (max-width: 768px) {
    .p-about__services-heading {
      font-size: 2.8rem;
    }
  }
  .p-about__services-heading span {
    display: inline-block;
  }
  .p-about__services .p-about__license {
    font-size: 1.4rem;
    line-height: 1em;
    color: #9b9b9b;
    padding: 0.6rem;
    border: 1px solid #9b9b9b;
    width: fit-content;
    margin: 0 auto;
  }
  .p-about__services-list {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
  }
  .p-about__services-list .p-about__services-item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.8rem;
    flex: 0 1 226px;
    text-align: center;
    list-style: none;
  }
  @media (max-width: 768px) {
    .p-about__services-list .p-about__services-item {
      gap: 1.4rem;
      flex: 0 1 78vw;
    }
  }
  .p-about__services-list .p-about__services-item > img {
    width: 82px;
    height: 82px;
    margin-bottom: 12px;
  }
  .p-about__services-list .p-about__services-item .p-about__services-title {
    font-size: 2.7rem;
    line-height: 1em;
    font-weight: bold;
    margin-bottom: 8px;
  }
  .p-about__services-list .p-about__services-item p {
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: 0.09rem;
    text-align: left;
  }
  .p-about__services .p-about__notes {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 6rem 0 0;
    padding: 0;
    z-index: 1;
  }
  @media (max-width: 768px) {
    .p-about__services .p-about__notes {
      flex-direction: column;
    }
  }
  .p-about__services .p-about__notes:before {
    content: "";
    background: url(../images/and.png) no-repeat center/contain;
    width: 110px;
    height: 65px;
    position: absolute;
    top: -8rem;
  }
  @media (max-width: 768px) {
    .p-about__services .p-about__notes:before {
      top: -9.5rem;
    }
  }
  .p-about__services .p-about__notes .p-about__note {
    font-size: 1.8rem;
    text-align: left;
    background: #FFFDFD;
    border: 5px solid #f86c87;
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 0 8px 3px rgba(248, 108, 135, 0.4);
  }
  .p-about__services .p-about__quote {
    color: #333333;
    font-size: 2.7rem;
    line-height: 4.2rem;
    letter-spacing: 0.135rem;
  }
  @media (max-width: 768px) {
    .p-about__services .p-about__quote {
      font-size: 2rem;
    }
  }
  .p-about__services .p-about__quote span {
    font-weight: 600;
  }
  .p-point__header {
    text-align: center;
  }
  @media (max-width: 768px) {
    .p-point__header {
      margin-bottom: -3rem;
    }
  }
  .p-point__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8rem;
  }
  .p-point__block {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  @media (max-width: 768px) {
    .p-point__block {
      flex-direction: column;
      gap: 20px;
    }
  }
  .p-point__img {
    position: relative;
    width: 50%;
    max-width: 500px;
  }
  @media (min-width: 769px) {
    .p-point__img {
      padding-top: 1rem;
      padding-right: 3rem;
    }
  }
  .p-point__img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
  }
  @media (max-width: 768px) {
    .p-point__img {
      width: 100%;
      padding-right: 0;
    }
  }
  .p-point__badge {
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 7.2rem;
  }
  @media (max-width: 768px) {
    .p-point__badge {
      left: 0.5rem;
    }
  }
  .p-point__badge img {
    width: 100%;
    height: auto;
  }
  .p-point__content {
    width: 50%;
    padding-left: 20px;
  }
  @media (max-width: 768px) {
    .p-point__content {
      width: 100%;
      padding-left: 0;
    }
  }
  .p-point__title {
    font-weight: 600;
    margin-bottom: 3.6rem;
    position: relative;
    display: inline-block;
    border-bottom: 2px dashed #F86C87;
  }
  .p-point__price {
    font-size: 2.2rem;
    line-height: 1em;
    color: #F86C87;
    font-weight: bold;
    margin-bottom: 3rem;
  }
  .p-point__price small {
    font-size: 1.8rem;
  }
  .p-point__price .price-small {
    font-size: 1.4rem;
    font-weight: normal;
    color: #333333;
  }
  .p-point__label {
    display: inline-block;
    background: #F86C87;
    color: #FFFDFD;
    font-size: 1.6rem;
    line-height: 1em;
    font-weight: 600;
    padding: 0.8rem;
    margin-bottom: 0.8rem;
  }
  .p-point__text {
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.05rem;
  }
  .p-point__text:not(:last-child) {
    margin-bottom: 2rem;
  }
  .p-point__note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2.8rem 5rem 3.2rem;
    border-radius: 15px;
    border: solid 3px #f86c87;
    background-color: #fffdfd;
    color: #F86C87;
    margin-top: -3rem;
  }
  @media (max-width: 768px) {
    .p-point__note {
      padding: 2.2rem;
    }
  }
  .p-point__note .note-title {
    font-size: 2.2rem;
    line-height: 3.2rem;
    letter-spacing: 0.1rem;
    font-weight: 800;
  }
  @media (max-width: 768px) {
    .p-point__note .note-title {
      text-align: center;
    }
  }
  .p-point__note .note-text {
    font-size: 1.8rem;
    line-height: 3.2rem;
    letter-spacing: 0.09rem;
    text-align: center;
  }
  @media (max-width: 768px) {
    .p-point__note .note-text {
      text-align: left;
    }
  }
  .p-detectives__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 9rem;
  }
  @media (max-width: 768px) {
    .p-detectives__inner {
      gap: 6rem;
    }
  }
  .p-detectives__card {
    display: flex;
    flex-direction: column;
    gap: 9rem;
  }
  @media (max-width: 768px) {
    .p-detectives__card {
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 1.2rem;
      gap: 1.6rem;
    }
    .p-detectives__card::-webkit-scrollbar {
      display: none;
    }
  }
  .p-detectives__block {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
  }
  @media (max-width: 768px) {
    .p-detectives__block {
      flex: 0 0 auto;
      gap: 2rem;
      width: 90%;
      flex-direction: column;
      align-items: center;
      background-color: #fff;
      padding: 1.5rem 0.6rem;
      border-radius: 15px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }
  }
  .p-detectives__block.-reverse {
    flex-direction: row-reverse;
  }
  @media (max-width: 768px) {
    .p-detectives__block {
      flex-direction: column;
      align-items: center;
    }
    .p-detectives__block.-reverse {
      flex-direction: column;
    }
  }
  .p-detectives__img {
    flex: 1 1 32%;
    text-align: center;
  }
  @media (max-width: 768px) {
    .p-detectives__img {
      max-width: 230px;
      max-height: 257px;
    }
  }
  .p-detectives__img img {
    max-width: 100%;
    height: auto;
  }
  @media (max-width: 768px) {
    .p-detectives__img img {
      height: 100%;
    }
  }
  @media (min-width: 769px) {
    .p-detectives__img.-men img {
      max-width: 275px;
    }
  }
  .p-detectives__content {
    flex: 1 1 68%;
  }
  @media (max-width: 768px) {
    .p-detectives__content {
      padding-inline: 1rem;
    }
  }
  .p-detectives__title {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
    border-radius: 0.5rem;
    color: #FFFDFD;
    line-height: 1em;
    padding: 1rem 1rem 1rem 2rem;
  }
  @media (max-width: 768px) {
    .p-detectives__title {
      margin: 0 auto 0.6rem;
      font-size: 2.8rem;
    }
  }
  .p-detectives__title.-orange {
    background-color: #FF8A65;
  }
  .p-detectives__title.-blue {
    background-color: #438EC2;
  }
  .p-detectives__title > img {
    position: absolute;
    transform: scale(-1, 1);
    width: 4rem;
    height: 4rem;
    left: -1.6rem;
    bottom: -1.4rem;
  }
  .p-detectives__lead {
    font-weight: 700;
    margin-bottom: 5.6rem;
  }
  @media (max-width: 768px) {
    .p-detectives__lead {
      text-align: center;
      margin-bottom: 3.2rem;
    }
  }
  .p-detectives__text {
    line-height: 2.6rem;
  }
  .p-detectives__text:not(:last-child) {
    margin-bottom: 3.2rem;
  }
  .p-voice {
    background-color: #fff;
  }
  .p-voice__header {
    margin-bottom: 6rem;
  }
  @media (max-width: 768px) {
    .p-voice__header {
      margin-bottom: 4rem;
    }
  }
  .p-voice__list {
    display: flex;
    justify-content: space-between;
    gap: 3.2rem;
    flex-wrap: wrap;
  }
  @media (max-width: 768px) {
    .p-voice__list {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      padding-bottom: 1.2rem;
      gap: 1.6rem;
    }
    .p-voice__list::-webkit-scrollbar {
      display: none;
    }
  }
  .p-voice__item {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    scroll-snap-align: center;
  }
  .p-voice__item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  @media (max-width: 768px) {
    .p-voice__item {
      flex: 0 0 auto;
      width: 85%;
    }
  }
  .p-voice__head {
    display: flex;
    align-items: center;
    margin-bottom: 2.2rem;
  }
  .p-voice__icon {
    width: 13.6rem;
    height: 13.6rem;
    border-radius: 50%;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
  }
  .p-voice__icon img {
    width: auto;
    height: auto;
  }
  .p-voice__icon.-pink {
    background-color: #fce9ea;
  }
  .p-voice__icon.-blue {
    background-color: #e3f1fb;
  }
  .p-voice__icon.-orange {
    background-color: #fdf1e6;
  }
  .p-voice__info {
    font-size: 14px;
    color: #333;
  }
  .p-voice__age {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .p-voice__detail {
    line-height: 1.5;
    font-size: 14px;
    color: #555;
  }
  .p-voice__text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    margin-top: 8px;
  }
  @media (max-width: 768px) {
    .p-voice__text {
      font-size: 14px;
    }
  }
  .p-flow {
    background-color: #FFF9F6;
  }
  .p-flow__header {
    margin-bottom: 9rem;
  }
  @media (max-width: 768px) {
    .p-flow__header {
      margin-bottom: 6rem;
    }
  }
  .p-flow__list {
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .p-flow__item {
    display: flex;
    align-items: stretch;
    border: 2px solid #ffe6ea;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 12px rgba(248, 108, 135, 0.05);
    gap: 4.4rem;
  }
  @media (max-width: 768px) {
    .p-flow__item {
      gap: 0.4rem;
    }
  }
  @media (max-width: 768px) {
    .p-flow__item {
      flex-direction: column;
    }
  }
  .p-flow__img {
    width: 310px;
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .p-flow__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 12px 0 0 12px;
  }
  @media (max-width: 768px) {
    .p-flow__img img {
      border-radius: 12px 12px 0 0;
    }
  }
  @media (max-width: 768px) {
    .p-flow__img {
      width: 100%;
    }
  }
  .p-flow__body {
    flex: 1;
    padding: 2rem 3rem 2.5rem 0;
  }
  @media (max-width: 768px) {
    .p-flow__body {
      padding: 2rem 2.4rem 3rem;
    }
  }
  .p-flow__step {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    font-size: 3.2rem;
    font-weight: bold;
    color: #F86C87;
    padding-bottom: 1.8rem;
    margin-bottom: 1.8rem;
    border-bottom: 5px dotted #F86C87;
    width: 100%;
  }
  @media (max-width: 768px) {
    .p-flow__step {
      gap: 1rem;
      font-size: 3rem;
      line-height: 1em;
    }
  }
  .p-flow__step > img {
    width: 5.4rem;
    height: 5.4rem;
  }
  .p-flow__step > span > small {
    font-size: 0.65em;
  }
  .p-flow .step-num {
    display: inline-block;
    background-color: #fff0f0;
    border: 2px solid #f86c87;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 32px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #f86c87;
    margin-right: 10px;
  }
  .p-flow .note {
    font-size: 13px;
    font-weight: normal;
    color: #f86c87;
    margin-left: 8px;
  }
  .p-flow__text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
  }
  @media (max-width: 768px) {
    .p-flow__text {
      font-size: 14px;
    }
  }
  .p-faq {
    padding-top: 6rem;
    padding-bottom: 9rem;
  }
  @media (max-width: 768px) {
    .p-faq {
      padding-top: 4rem;
    }
  }
  .p-faq__credit {
    margin-bottom: 10rem;
  }
  @media (max-width: 768px) {
    .p-faq__credit {
      margin-bottom: 6rem;
    }
  }
  .p-faq__credit img {
    filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.15));
  }
  .p-faq__header {
    margin-bottom: 6rem;
  }
  @media (max-width: 768px) {
    .p-faq__header {
      margin-bottom: 3rem;
    }
  }
  .p-faq .p-offer {
    margin-block: -8.5rem 6rem;
  }
  @media (max-width: 768px) {
    .p-faq .p-offer {
      margin-block: -4.2rem 6rem;
    }
  }
  .p-timing {
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.45)), url("../images/timing-bg-pc.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: darken;
    color: #fff;
    text-align: center;
  }
  @media (max-width: 768px) {
    .p-timing {
      background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.45)), url("../images/timing-bg-sp.jpg");
    }
  }
  .p-timing__heading {
    font-family: "Zen Old Mincho", serif;
    margin-bottom: 9rem;
  }
  @media (max-width: 768px) {
    .p-timing__heading {
      margin-bottom: 3rem;
    }
  }
  .p-timing__content {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
  }
  .p-timing__text {
    font-size: 2rem;
    line-height: 3.4rem;
    letter-spacing: 0.1rem;
    margin-bottom: 6rem;
  }
  @media (max-width: 768px) {
    .p-timing__text {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 768px) {
    .p-timing__text {
      font-size: 1.8rem;
      line-height: 2.8rem;
      letter-spacing: 0.3px;
    }
  }
  .p-timing__text > p:not(:last-child) {
    margin-bottom: 4rem;
  }
  @media (max-width: 768px) {
    .p-timing__text > p:not(:last-child) {
      margin-bottom: 3rem;
    }
  }
  .p-timing__points {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1.6rem 1.8rem;
    width: fit-content;
    margin: 0 auto 6rem;
    background-color: rgba(18, 100, 157, 0.4);
  }
  @media (max-width: 768px) {
    .p-timing__points {
      gap: 1.6rem;
      margin-bottom: 4rem;
    }
  }
  .p-timing__points li {
    text-align: left;
    font-size: 2rem;
    list-style: none;
    line-height: 1em;
  }
  @media (max-width: 768px) {
    .p-timing__points li {
      display: inline-flex;
      font-size: 2rem;
    }
  }
  .p-timing__points li > i {
    margin-right: 1rem;
  }
  .p-timing__message {
    font-family: "Zen Old Mincho", serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 5.2rem;
    letter-spacing: 0.16rem;
    margin-top: 4.5rem;
  }
  @media (max-width: 768px) {
    .p-timing__message {
      font-size: 2.2rem;
      line-height: 5rem;
      letter-spacing: 0.5px;
    }
  }
  .p-form__header {
    margin-bottom: 6rem;
  }
  @media (max-width: 768px) {
    .p-form__header {
      margin-bottom: 4rem;
    }
  }
}