@charset "UTF-8";

/*---------------------------------

base

---------------------------------*/
:root {
  --layout-width: 1440px;
  --layout-width-inner-lg: 1258px;
  --layout-width-inner-md: 1130px;
  --layout-width-inner-sm: 954px;
  --color-base: #000;
  --color-white: #FFF;
  --color-primary: #7FBE26;
  --color-secondary: #3AAE36;
  --color-accent: #FF8900;
  --color-accent02: #FF5800;
  --bg-color-primary: rgb(127 190 38 / 0.1);
  --bg-color-gray: rgb(204 204 204 / 0.2);
  --bg-color-gray02: #F4F4F4;
  --bg-color-gray03: #CCC;
  --bg-color-gray04: #707070;
  --font-base: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --font-en: "Barlow Condensed", sans-serif;
  --font-num: "Oswald", serif;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: inherit;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption,
main {
  display: block;
}

body {
  color: var(--color-base);
  font-family: var(--font-base);
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

li,
dd {
  list-style-type: none;
}

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

@media (hover: hover) and (pointer: fine) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*---------------------------------

Layout

---------------------------------*/
/*
    l-wrapper
---------------------------------*/
.l-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Safari調整用 */
_::-webkit-full-page-media,
_:future,
:root .l-wrapper {
  margin-top: -5px;
}

@media (max-width: 767px) {

  _::-webkit-full-page-media,
  _:future,
  :root .l-wrapper {
    margin-top: 0;
  }
}

/*
    l-header
---------------------------------*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 1.125rem;
  z-index: 10;
}

.l-header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 0.5rem;
  z-index: 10;
  background: #fff;
  transform: translateY(-101%);
  transition: transform 0.3s ease-in-out;
}

.l-header__fixed.is-active {
  transform: translate(0);
}

.l-header__fixed .p-header__logo,
.l-header__fixed .p-header__cta {
  scale: 0.9;
}

.l-header__fixed .p-header__logo {
  transform-origin: left center;
}

.l-header__fixed .p-header__cta {
  transform-origin: right center;
}

.l-header__inner.l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1418px;
}

@media (max-width: 767px) {
  .l-header {
    position: static;
    padding-block: 0.9375rem;
    background-color: var(--color-white);
  }

  .l-header__fixed {
    display: none;
  }
}

/*
    l-main
---------------------------------*/
.l-main {
  flex: 1;
  position: relative;
}

.l-main .l-inner {
  padding-left: 40px;
}

@media (max-width: 1500px) {
  .l-main .l-inner {
    padding-left: 60px;
  }
}

@media (max-width: 1400px) {
  .l-main .l-inner {
    padding-left: 110px;
  }
}

@media (max-width: 1300px) {
  .l-main .l-inner {
    padding-left: 160px;
  }
}

@media (max-width: 1200px) {
  .l-main .l-inner {
    padding-left: 25px;
  }
}

/*
    l-section
---------------------------------*/
.l-section {
  position: relative;
  z-index: 1;
}

.l-section__inner {
  padding-block: 10rem;
}

@media (max-width: 767px) {
  .l-section__inner {
    padding-block: 3.5rem;
  }
}

/*
    l-inner
---------------------------------*/
.l-inner {
  max-width: var(--layout-width-inner-md);
  margin-inline: auto;
  padding-inline: 25px;
}

.l-inner.l-inner--lg {
  max-width: var(--layout-width-inner-lg);
}

.l-inner.l-inner--sm {
  max-width: var(--layout-width-inner-sm);
}

@media (max-width: 767px) {
  .l-inner {
    padding-inline: 16px;
  }
}

/*---------------------------------

Component

---------------------------------*/
/*  
    c-button
---------------------------------*/
.c-button {
  display: inline-block;
  min-width: 8.75rem;
  padding: 0.72em 1.4em;
  border-radius: 19px;
  color: var(--color-white);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.3s;
}

.c-button:focus-visible {
  opacity: 0.7;
}

.c-button.c-button--type01 {
  background-color: var(--color-accent);
}

.c-button.c-button--type02 {
  background-color: var(--color-accent02);
}

@media (hover: hover) and (pointer: fine) {
  .c-button:hover {
    opacity: 0.7;
  }
}

@media (max-width: 1000px) {
  .c-button {
    min-width: 7.5rem;
  }
}

/*
    c-arrow-button
---------------------------------*/
.c-arrow-button {
  display: inline-block;
  position: relative;
  min-width: 20rem;
  padding: 0.85em 2.5em;
  border-radius: 9999px;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  transition: opacity 0.3s;
}

.c-arrow-button::after {
  position: absolute;
  top: 50%;
  right: 30px;
  translate: 0 -50%;
  width: 0.67em;
  height: 0.67em;
  background-image: url(../images/icon_button-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.c-arrow-button:focus-visible {
  opacity: 0.7;
}

.c-arrow-button.c-arrow-button--type01 {
  background-color: var(--color-accent);
}

.c-arrow-button.c-arrow-button--type02 {
  background-color: var(--color-accent02);
}

@media (hover: hover) and (pointer: fine) {
  .c-arrow-button:hover {
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .c-arrow-button {
    min-width: 9.25rem;
    padding: 0.57em 1.5em;
    font-size: 0.9375rem;
  }

  .c-arrow-button::after {
    right: 10px;
    width: 0.55em;
    height: 0.55em;
    background-image: url(../images/icon_button-arrow_sp.svg);
  }
}

/*
    c-circle
---------------------------------*/
.c-circle {
  padding: 4px;
  border-radius: 50%;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  text-align: center;
}

.c-circle__inner {
  width: 16.875rem;
  height: 16.875rem;
  padding-top: 16px;
  border-radius: 50%;
  background-image: linear-gradient(0deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.c-circle__kome {
  font-size: 0.875rem;
  margin-top: 0.2rem;
}

.c-circle__text {
  margin-top: 0.75rem;
  font-size: 1.625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.c-circle__number {
  font-size: 1.375rem;
  font-weight: 600;
}

.c-circle__number span {
  font-family: var(--font-num);
  font-size: 1.5625rem;
  font-weight: 400;
}

.c-circle__number span span {
  font-size: 4.3125rem;
  letter-spacing: -0.04em;
}

.c-circle__number span span span {
  font-size: 3.125rem;
  letter-spacing: -0.01em;
}

.c-circle.c-circle--lg {
  padding: 5px;
}

.c-circle.c-circle--lg .c-circle__inner {
  width: 21.125rem;
  height: 21.125rem;
  padding-top: 20px;
}

.c-circle.c-circle--lg .c-circle__img img {
  width: auto;
  height: 6rem;
}

.c-circle.c-circle--lg .c-circle__text {
  margin-top: 0.875rem;
  font-size: 2rem;
}

.c-circle.c-circle--lg .c-circle__number {
  font-size: 1.8125rem;
}

.c-circle.c-circle--lg .c-circle__number span {
  font-size: 1.875rem;
}

.c-circle.c-circle--lg .c-circle__number span span {
  font-size: 6.5rem;
}

.c-circle.c-circle--lg .c-circle__number span span span {
  font-size: 3.75rem;
}

@media (max-width: 767px) {

  .c-circle,
  .c-circle.c-circle--lg {
    padding: 2px;
  }

  .c-circle__inner,
  .c-circle.c-circle--lg .c-circle__inner {
    width: 9.75rem;
    height: 9.75rem;
    padding-top: 9px;
  }

  .c-circle__img img,
  .c-circle.c-circle--lg .c-circle__img img {
    width: auto;
    height: 2.6875rem;
  }

  .c-circle__kome {
    font-size: 0.575rem;
    margin-top: 0.2rem;
  }

  .c-circle__text,
  .c-circle.c-circle--lg .c-circle__text {
    margin-top: 0.375rem;
    font-size: 0.875rem;
  }

  .c-circle__number,
  .c-circle.c-circle--lg .c-circle__number {
    margin-top: 0.25rem;
    font-size: 0.8125rem;
  }

  .c-circle__number span,
  .c-circle.c-circle--lg .c-circle__number span {
    font-size: 0.875rem;
  }

  .c-circle__number span span,
  .c-circle.c-circle--lg .c-circle__number span span {
    font-size: 2.7rem;
  }

  .c-circle__number span span span,
  .c-circle.c-circle--lg .c-circle__number span span span {
    font-size: 1.6875rem;
  }
}

/*
    c-border-title
---------------------------------*/
.c-border-title {
  position: relative;
  padding-bottom: 0.67em;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.c-border-title::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50%;
  width: 6.25rem;
  height: 0.5rem;
  content: "";
}

.c-border-title.c-border-title--type01::after {
  background-color: var(--color-primary);
}

.c-border-title.c-border-title--type02::after {
  background-color: var(--color-secondary);
}

.c-border-title span {
  display: inline-block;
}

@media (max-width: 767px) {
  .c-border-title {
    padding-bottom: 0.4em;
    font-size: 1.525rem;
  }

  .c-border-title::after {
    width: 3.125rem;
    height: 0.25rem;
  }
}

/*
    c-section-title
---------------------------------*/
.c-section-title {
  text-align: center;
}

.c-section-title__en {
  font-family: var(--font-en);
  font-size: 5.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.c-section-title__ja {
  margin-top: 0.75rem;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
}

.c-section-title.c-section-title--left {
  text-align: left;
}

.c-section-title.c-section-title--primary .c-section-title__ja {
  color: var(--color-primary);
}

.c-section-title.c-section-title--secondary .c-section-title__ja {
  color: var(--color-secondary);
}

.c-section-title.c-section-title--white .c-section-title__ja {
  color: var(--color-white);
}

@media (max-width: 767px) {
  .c-section-title__en {
    font-size: 3.125rem;
  }

  .c-section-title__ja {
    margin-top: 0.625rem;
    font-size: 0.9375rem;
  }
}

/*
    c-lead
---------------------------------*/
.c-lead {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.64;
  text-align: center;
}

.c-lead span {
  display: inline-block;
}

@media (max-width: 767px) {
  .c-lead {
    font-size: 0.9375rem;
    line-height: 1.67;
  }
}

/*
    c-text
---------------------------------*/
.c-text {
  font-size: 1rem;
  letter-spacing: 0.03em;
  line-height: 2;
}

@media (max-width: 767px) {
  .c-text {
    font-size: 0.75rem;
    letter-spacing: 0.02em;
  }
}

/*
    c-table
---------------------------------*/
.c-table {
  width: 100%;
  color: var(--color-white);
}

.c-table tr {
  border-top: 1px solid;
}

.c-table th,
.c-table td {
  padding-block: 1.875rem;
}

.c-table th {
  width: 244px;
  font-weight: 500;
}

.c-table td {
  padding-left: 42px;
}

.c-table dl {
  display: flex;
  flex-wrap: wrap;
}

.c-table dt {
  flex: 0 0 145px;
  padding-right: 1.5em;
  font-weight: 400;
}

.c-table dd {
  width: calc(100% - 145px);
}

.c-table dt:nth-of-type(n+2),
.c-table dd:nth-of-type(n+2) {
  margin-top: 1.5rem;
}

@media (max-width: 767px) {
  .c-table tr {
    display: flex;
    flex-direction: column;
  }

  .c-table th,
  .c-table td {
    padding-block: 1.25rem;
  }

  .c-table th {
    width: 100%;
  }

  .c-table td {
    padding-top: 0;
    padding-left: 0;
  }

  .c-table dl {
    display: block;
  }

  .c-table dt {
    padding-right: 0;
  }

  .c-table dd {
    width: 100%;
  }

  .c-table dd:nth-of-type(n+2) {
    margin-top: 0;
  }
}

/*
    c-fadein
---------------------------------*/
.c-fadein {
  opacity: 0;
  translate: 0 20px;
  transition: translate 0.5s, opacity 0.5s;
}

.c-fadein.is-show {
  opacity: 1;
  translate: 0 0;
}

/*---------------------------------

Project

---------------------------------*/
/*
    p-header
---------------------------------*/
.p-header__cta {
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

.p-header__tel-number {
  font-family: var(--font-num);
  font-size: 2rem;
  letter-spacing: 0.03em;
}

.p-header__tel-text {
  font-size: 0.625rem;
  letter-spacing: 0.02em;
}

.p-header__button-list {
  display: flex;
  -moz-column-gap: 8px;
  column-gap: 8px;
}

@media (max-width: 1000px) {
  .p-header__logo {
    width: 340px;
  }

  .p-header__cta {
    flex-direction: column;
    align-items: flex-end;
    row-gap: 8px;
  }
}

@media (max-width: 767px) {
  .p-header__logo {
    width: 210px;
  }
}

/*
    p-nav
---------------------------------*/
.p-nav {
  position: fixed;
  top: 160px;
  left: calc(50% - 710px);
  z-index: 10;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 40px 20px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.49);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.16);
  transition: top 0.5s, translate 0.5s;
}

.p-nav::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-image: linear-gradient(0deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  transition: opacity 0.3s;
  content: "";
}

.p-nav.scrolled {
  top: 50vh;
  translate: 0 -50%;
}

.p-nav.color-change::before {
  opacity: 0.79;
}

.p-nav.color-change02 {
  background-color: rgba(255, 255, 255, 0.8);
}

.p-nav.color-change02::before {
  opacity: 0;
}

.p-nav__list {
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.p-nav.color-change .p-nav__list {
  color: var(--color-white);
}

.p-nav.color-change02 .p-nav__list {
  color: var(--color-base);
}

.p-nav__item+.p-nav__item {
  margin-top: 1rem;
}

.p-nav__item a {
  display: inline-block;
  width: 100%;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.43;
}

.p-nav__item a:focus-visible {
  text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
  .p-nav__item a:hover {
    text-decoration: underline;
  }
}

@media (max-width: 1500px) {
  .p-nav {
    left: 10px;
  }
}

@media (max-width: 1200px) {
  .p-nav {
    display: none;
  }
}

/*
    p-footer
---------------------------------*/
.p-footer {
  position: relative;
  z-index: 1;
}

.p-footer__copy {
  padding-block: 7.375rem 2.5rem;
  text-align: center;
}

.p-footer__copy small {
  color: var(--color-white);
  font-size: 0.875rem;
  letter-spacing: 0.018em;
}

@media (max-width: 767px) {
  .p-footer__copy {
    padding-block: 3.75rem 1.25rem;
  }

  .p-footer__copy small {
    font-size: 0.75rem;
  }
}

/*
    p-parallax
---------------------------------*/
.p-parallax {
  overflow: hidden;
  height: 450px;
  margin-bottom: -320px;
}

.p-parallax.p-parallax--sm {
  display: none;
}

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

@media (max-width: 1500px) {
  .p-parallax {
    height: 296px;
    margin-bottom: -296px;
  }
}

@media (max-width: 1000px) {
  .p-parallax {
    height: 350px;
    margin-bottom: 0;
  }

  .p-parallax.p-parallax--lg {
    display: none;
  }

  .p-parallax.p-parallax--sm {
    display: block;
  }
}

@media (max-width: 767px) {
  .p-parallax {
    height: 200px;
  }
}

/*
    p-fv
---------------------------------*/
.p-fv {
  position: relative;
  z-index: 1;
  height: 50rem;
}

.p-fv__bg {
  position: absolute;
  inset: 0;
}

.p-fv__bg::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.7;
  background-image: linear-gradient(270deg, var(--color-white) 0%, transparent 100%);
  content: "";
}

.p-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-fv__contents {
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 7.625rem;
  margin-left: auto;
}

.p-fv__label {
  display: inline-flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  font-size: 1.75rem;
  font-weight: 600;
}

.p-fv__label::before,
.p-fv__label::after {
  display: inline-block;
  width: 0.3em;
  height: 1.1em;
  margin-inline: 0.05em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-fv__label::before {
  background-image: url(../images/bracket-left.svg);
}

.p-fv__label::after {
  background-image: url(../images/bracket-right.svg);
}

.p-fv__text {
  margin-top: 0.75rem;
  color: var(--color-secondary);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.42;
  text-shadow: 0 0 20px #fff;
}

.p-fv__title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.4;
  text-shadow: 0 0 20px #fff;

}

.p-fv__items {
  display: flex;
  -moz-column-gap: 42px;
  column-gap: 42px;
  margin-top: 1.25rem;
}

.p-fv__scroll {
  display: inline-flex;
  flex-direction: column;
  row-gap: 4px;
  position: absolute;
  right: calc(50% - 682px);
  bottom: 0;
  z-index: 1;
}

.p-fv__scroll span {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  writing-mode: vertical-rl;
}

.p-fv__scroll img {
  margin-left: 0.45em;
}

@media (max-width: 1500px) {
  .p-fv__scroll {
    right: 60px;
  }
}

@media (max-width: 1200px) {
  .p-fv__scroll {
    right: 30px;
  }
}

@media (max-width: 1000px) {
  .p-fv {
    z-index: 2;
  }

  .p-fv__contents {
    position: absolute;
    bottom: 0;
    left: 50%;
    translate: -50% 8.6875rem;
    text-align: center;
  }

  .p-fv__label {
    font-size: 1.5rem;
  }

  .p-fv__text {
    font-size: 2.125rem;
  }

  .p-fv__title {
    font-size: 3.3125rem;
  }

  .p-fv__items {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media (max-width: 767px) {
  .p-fv {
    height: 40.625rem;
  }

  .p-fv__bg::before {
    position: absolute;
    inset: 9.375rem 0 0 0;
    background-image: linear-gradient(0deg, var(--color-white) 0%, transparent 100%);
    content: "";
  }

  .p-fv__bg img {
    -o-object-position: top center;
    object-position: top center;
  }

  .p-fv__contents {
    translate: -50% 0.9rem;
  }

  .p-fv__label {
    font-size: 0.9375rem;
    line-height: 1.4;
  }

  .p-fv__label::before,
  .p-fv__label::after {
    width: 0.6em;
    height: 2.2em;
  }

  .p-fv__text {
    margin-top: 0.5rem;
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .p-fv__title {
    font-size: 1.875rem;
    white-space: nowrap;
  }

  .p-fv__items {
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 2rem;
  }
}

/*
    p-contact
---------------------------------*/
.p-contact__box {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
  column-gap: 30px;
  padding: 42px;
  border-radius: 65px 0 65px 0;
  background-color: var(--bg-color-primary);
}

.p-contact.p-contact--white .p-contact__box {
  background-color: var(--color-white);
}

.p-contact.p-contact--green .p-contact__box {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.p-contact__title-en {
  font-family: var(--font-en);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.p-contact__title-ja {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.44;
}

.p-contact__tel {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
}

.p-contact__tel-text {
  font-size: 1.125rem;
  font-weight: 600;
}

.p-contact__tel-text02 {
  font-feature-settings: "palt";
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.p-contact__tel-number {
  font-family: var(--font-num);
  font-size: 3.125rem;
  font-weight: 400;
}

.p-contact__button-list {
  display: flex;
  -moz-column-gap: 24px;
  column-gap: 24px;
  margin-top: 1.5rem;
}

@media (max-width: 1300px) {
  .p-contact__box {
    padding: 42px 20px;
  }
}

@media (max-width: 1200px) {
  .p-contact__button-list {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
}

@media (max-width: 1000px) {
  .p-contact__box {
    flex-direction: column;
    row-gap: 2rem;
  }

  .p-contact__title {
    text-align: center;
  }

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

  .p-contact__button-list {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .p-contact__box {
    row-gap: 1.5rem;
    padding: 16px;
    border-radius: 35px 0 35px 0;
  }

  .p-contact__title-en {
    font-size: 3rem;
  }

  .p-contact__title-ja {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

  .p-contact__tel {
    display: block;
    text-align: center;
  }

  .p-contact__tel-text {
    font-size: 0.875rem;
  }

  .p-contact__tel-text02 {
    margin-top: 0.5rem;
    font-size: 0.75rem;
  }

  .p-contact__tel-number {
    margin-top: 0.5rem;
    font-size: 1.6875rem;
  }

  .p-contact__button-list {
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
}

/*
    p-intro
---------------------------------*/
.p-intro__inner {
  background-image: url(../images/intro-bg_pc.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}

.p-intro__main {
  margin-top: 7.5rem;
}

.p-intro__reason {
  margin-top: 7.5rem;
}

.p-intro__reason-items {
  margin-top: 3.5rem;
  transition-delay: 0.3s;
}

@media (max-width: 1000px) {
  .p-intro__inner {
    padding-block: 16.25rem 10rem;
  }
}

@media (max-width: 767px) {
  .p-intro__inner {
    padding-block: 8.375rem 3.5rem;
    background-image: url(../images/intro-bg_sp.png);
  }

  .p-intro__main {
    margin-top: 3.5rem;
  }

  .p-intro__reason {
    margin-top: 3.5rem;
  }

  .p-intro__reason-items {
    margin-top: 2rem;
  }
}

/*
    p-check-list
---------------------------------*/
.p-check-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px 40px;
}

.p-check-list__item {
  width: calc(50% - 21px);
  height: -moz-fit-content;
  height: fit-content;
  padding: 5px 6px;
  border-radius: 9999px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
}

.p-check-list__item-text {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  min-height: 7.5rem;
  padding: 20px;
  border-radius: 9999px;
  background-image: linear-gradient(0deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  font-size: min(1.6875rem, 1.87vw);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.43;
}

.p-check-list__item-text::before {
  flex-shrink: 0;
  display: inline-block;
  width: 1.43em;
  height: 1.43em;
  background-image: url(../images/icon_check.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

@media (max-width: 1300px) {
  .p-check-list__item-text {
    font-size: 1.87vw;
  }
}

@media (max-width: 1200px) {
  .p-check-list__item-text {
    font-size: min(1.6875rem, 2.24vw);
  }
}

@media (max-width: 1000px) {
  .p-check-list {
    gap: 30px;
  }

  .p-check-list__item {
    width: calc(50% - 15px);
  }

  .p-check-list__item-text {
    min-height: 6.25rem;
  }
}

@media (max-width: 767px) {
  .p-check-list {
    flex-direction: column;
    gap: 24px;
  }

  .p-check-list__item {
    width: 100%;
    padding: 3px 4px;
  }

  .p-check-list__item-text {
    min-height: 5rem;
    padding: 14px;
    font-size: 1.125rem;
  }

  .p-check-list__item-text::before {
    width: 1.45em;
    height: 1.45em;
    background-image: url(../images/icon_check_sp.svg);
  }
}

/*
    p-about
---------------------------------*/
.p-about {
  position: relative;
  overflow: hidden;
}

.p-about::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 100%;
  min-width: var(--layout-width);
  height: 94px;
  background-color: var(--color-white);
  content: "";
}

.p-about__bg {
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% auto;
}

.p-about__text {
  margin-top: 3.5rem;
}

.p-about__items {
  display: flex;
  justify-content: center;
  -moz-column-gap: 42px;
  column-gap: 42px;
  margin-top: 3.5rem;
}

.p-about__example {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 7.5rem;
}

.p-about__annotation {
  margin-top: 1.75rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: right;
}

.p-about__contact {
  margin-top: 7.5rem;
}

@media (max-width: 1000px) {
  .p-about__items {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }

  .p-about__example {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .p-about::before {
    min-width: unset;
    height: 25px;
  }

  .p-about__text {
    margin-top: 2rem;
  }

  .p-about__items {
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 2rem;
  }

  .p-about__example {
    margin-top: 3rem;
  }

  .p-about__annotation {
    font-size: 0.75rem;
    line-height: 2;
    text-align: center;
  }

  .p-about__contact {
    margin-top: 3.5rem;
  }
}

/*
    p-example
---------------------------------*/
.p-example__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.p-example__box {
  padding: 0.43em 1em 0.6em;
  margin-top: 1.5rem;
  border: 1px solid;
  background-color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.p-example__box span {
  display: inline-block;
  translate: 0 5%;
  margin-inline: 0.1em;
  font-family: var(--font-num);
  font-size: 1.9375rem;
  font-weight: 400;
}

.p-example__box span:first-child {
  margin-inline: 0.3em 0.1em;
}

.p-example__detail {
  display: flex;
  align-items: center;
  -moz-column-gap: 14px;
  column-gap: 14px;
  margin-top: 1.5rem;
}

.p-example__detail-term {
  flex: 0 0 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 2px;
  translate: 0 8%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 5px 10px;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1.625rem;
  font-weight: 600;
  text-align: center;
}

.p-example__detail-term::before {
  display: inline-block;
  width: 3.75rem;
  height: 2.5rem;
  background-image: url(../images/icon_bill.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-example__detail-text {
  font-size: 1.5rem;
  font-weight: 600;
}

.p-example__detail-text+.p-example__detail-text {
  margin-top: 0.625rem;
}

.p-example__detail-text em {
  margin-left: 0.2em;
  color: var(--color-secondary);
  font-style: normal;
}

.p-example__detail-text span {
  margin-inline: 0.1em;
  font-family: var(--font-num);
  font-size: 2.5rem;
  font-weight: 400;
}

@media (max-width: 1400px) {
  .p-example__detail-text {
    font-size: 1.3125rem;
  }

  .p-example__detail-text span {
    font-size: 2.1875rem;
  }
}

@media (max-width: 1000px) {
  .p-example__detail {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .p-example__title {
    font-size: 1.25rem;
  }

  .p-example__box {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .p-example__box span {
    font-size: 1.5rem;
  }

  .p-example__detail {
    margin-top: 1rem;
  }

  .p-example__detail-term {
    flex: 0 0 5rem;
    font-size: 0.9375rem;
  }

  .p-example__detail-term::before {
    width: 2.5rem;
    height: 1.625rem;
  }

  .p-example__detail-text {
    font-size: 1rem;
  }

  .p-example__detail-text span {
    font-size: 1.75rem;
  }
}

/*
    p-features
---------------------------------*/
.p-features {
  padding-top: 18.5rem;
  overflow: hidden;
}

.p-features__inner {
  background-image: url(../images/feature-bg01.png), url(../images/feature-bg02.png);
  background-repeat: no-repeat;
  background-position: top center, bottom 2% center;
  background-size: 100% auto;
}

.p-features__intro02 {
  display: none;
}

.p-features__intro-contents {
  display: flex;
}

.p-features__intro-text {
  flex: 0 0 365px;
}

.p-features__text {
  margin-top: 2.5rem;
}

.p-features__intro-text .p-features__text {
  max-width: 332px;
}

.p-features__intro-circle {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 54px;
  position: relative;
  translate: 0 -20%;
}

.p-features__intro-circle-logo {
  width: 24.5%;
}

.p-features__intro-circle-name {
  width: 52.4%;
}

.p-features__intro-circle-main {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -58%;
  scale: 1.16;
  width: 100%;
}

.p-features__contents {
  overflow-x: hidden;
  margin-top: 11.0625rem;
}

.p-features__item {
  padding: 64px;
  border-radius: 128px 0 128px 0;
  background-color: var(--bg-color-primary);
}

.p-features__item+.p-features__item {
  margin-top: 4rem;
}

.p-features__item-top {
  display: flex;
  flex-direction: row-reverse;
  -moz-column-gap: 42px;
  column-gap: 42px;
}

.p-features__item-top.p-features__item-top--reverse {
  flex-direction: row;
}

.p-features__item-top-body {
  width: 48.15%;
}

.p-features__item-top-img {
  width: 48.15%;
}

.p-features__item-top-img.p-features__item-top-img--center {
  text-align: center;
}

.p-features__item-top-img-inner {
  margin-left: -180px;
}

.p-features__item-top-img-inner img {
  width: 100%;
  border-radius: 0 0 65px 0;
}

.p-features__item-top.p-features__item-top--reverse .p-features__item-top-img-inner {
  margin-right: -180px;
  margin-left: 0;
}

.p-features__item-top.p-features__item-top--reverse .p-features__item-top-img-inner img {
  border-radius: 65px 0 0 0;
}

.p-features__cards {
  margin-top: 4rem;
}

.p-features__gallery {
  margin-top: 4rem;
}

.p-features__gallery li {
  margin: 0 8px;
}

.p-features__merit {
  margin-top: 4rem;
}

.p-features__rank {
  display: flex;
  justify-content: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
  margin-top: 4rem;
}

.p-features__rank-item {
  position: relative;
  text-align: center;
}

.p-features__rank-item+.p-features__rank-item::before {
  position: absolute;
  top: 70px;
  left: -20px;
  translate: -50%;
  width: 50px;
  height: 20px;
  background-image: url(../images/icon_rank-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.p-features__rank-text {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-features__rank-text span {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.p-features__contact {
  margin-top: 7.5rem;
}

@media (max-width: 1500px) {
  .p-features__item-top-img-inner {
    margin-left: -215px;
  }
}

@media (max-width: 1400px) {
  .p-features__item-top-img-inner {
    margin-left: -240px;
  }
}

@media (max-width: 1200px) {
  .p-features__item-top-img-inner {
    margin-left: -180px;
  }
}

@media (max-width: 1000px) {
  .p-features {
    padding-top: 0;
  }

  .p-features__intro02 {
    display: block;
  }

  .p-features__intro02-inner {
    padding-block: 10rem 6.25rem;
  }

  .p-features__intro02 .c-section-title.c-section-title--left {
    text-align: center;
  }

  .p-features__intro-text .p-features__text {
    max-width: unset;
  }

  .p-features__intro .p-features__intro-text {
    display: none;
  }

  .p-features__intro-circle {
    translate: 0 31%;
  }

  .p-features__intro-circle-logo {
    width: 175px;
  }

  .p-features__intro-circle-name {
    width: 358px;
  }

  .p-features__intro-circle-main {
    width: 730px;
  }

  .p-features__contents {
    margin-top: 22.5rem;
  }

  .p-features__item {
    padding: 64px 40px;
  }
}

@media (max-width: 767px) {
  .p-features__intro02-inner {
    padding-block: 3.5rem 2.5rem;
  }

  .p-features__inner {
    background-image: none;
  }

  .p-features__intro-circle {
    row-gap: 18px;
    translate: 0 47%;
  }

  .p-features__intro-circle-logo {
    width: 85px;
  }

  .p-features__intro-circle-name {
    width: 178px;
  }

  .p-features__intro-circle-main {
    translate: -50% -56%;
    width: 343px;
  }

  .p-features__contents {
    margin-top: 12.5rem;
  }

  .p-features__item {
    padding: 32px 16px;
    border-radius: 35px 0 35px 0;
  }

  .p-features__item+.p-features__item {
    margin-top: 2.5rem;
  }

  .p-features__item-top {
    flex-direction: column;
    row-gap: 2rem;
  }

  .p-features__item-top.p-features__item-top--reverse {
    flex-direction: column;
  }

  .p-features__item-top-body {
    width: 100%;
  }

  .p-features__item-top-img {
    width: 100%;
  }

  .p-features__item-top-img-inner {
    margin-left: -42px;
  }

  .p-features__item-top.p-features__item-top--reverse .p-features__item-top-img-inner {
    margin-right: -32px;
  }

  .p-features__item-top-img-inner img {
    border-radius: 0 0 35px 0;
  }

  .p-features__item-top.p-features__item-top--reverse .p-features__item-top-img-inner img {
    border-radius: 35px 0 0 0;
  }

  .p-features__text {
    margin-top: 2rem;
  }

  .p-features__cards {
    margin-top: 2rem;
  }

  .p-features__cards--2col {
    flex-direction: inherit !important;
    gap: 10px !important;
    align-items: start !important;
  }

  .p-features__cards--2col .p-cards__item {
    width: 140px;
  }

  .p-features__gallery {
    margin-top: 2rem;
    margin-inline: auto;
    max-width: 250px;
  }

  .p-features__gallery li {
    margin: 0;
  }

  .p-features__merit {
    margin-top: 2.5rem;
  }

  .p-features__rank {
    flex-direction: column;
    align-items: center;
    row-gap: 3.75rem;
    margin-top: 2.5rem;
  }

  .p-features__rank-item {
    width: 200px;
  }

  .p-features__rank-item+.p-features__rank-item::before {
    top: -30px;
    left: 50%;
    rotate: 90deg;
    width: 30px;
    height: 13px;
  }

  .p-features__rank-text {
    font-size: 0.875rem;
  }

  .p-features__rank-text span {
    font-size: 0.75rem;
  }

  .p-features__contact {
    margin-top: 3.5rem;
  }
}

/*
    p-heading
---------------------------------*/
.p-heading {
  display: flex;
  align-items: center;
}

.p-heading__title {
  color: var(--color-secondary);
  font-family: var(--font-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
}

.p-heading__title span {
  font-family: var(--font-num);
  font-size: 5rem;
  letter-spacing: 0.03em;
  line-height: 1;
}

.p-heading__body {
  padding-left: 16px;
  margin-left: 16px;
  border-left: 1px solid var(--bg-color-gray04);
}

.p-heading__label {
  display: inline-block;
  padding: 0.33em 0.6em;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
}

.p-heading__text {
  margin-top: 1rem;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.46;
}

@media (max-width: 1000px) {
  .p-heading {
    display: block;
  }

  .p-heading__body {
    padding-left: 0;
    margin-top: 1.25rem;
    margin-left: 0;
    border-left: none;
  }

  .p-heading__label {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .p-heading__title {
    font-size: 0.875rem;
  }

  .p-heading__title span {
    font-size: 2.875rem;
  }

  .p-heading__body {
    margin-top: 1rem;
  }

  .p-heading__label {
    padding: 0.4em 0.77em;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
  }

  .p-heading__text {
    font-size: 1rem;
    line-height: 1.56;
    text-align: center;
  }
}

/*
    p-cards
---------------------------------*/
.p-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 16px;
}

.p-cards__item {
  width: calc(25% - 12px);
}

@media (max-width: 1000px) {
  .p-cards__item {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .p-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .p-cards__item {
    width: 200px;
  }
}

/*
    p-card
---------------------------------*/
.p-card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.p-card__body {
  padding-top: 1rem;
}

.p-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.p-card__title.p-card__title--grid {
  display: grid;
  place-items: center;
  min-height: 3.5rem;
}

.p-card__title span {
  display: inline-block;
}

.p-card__title-sub {
  font-size: 1rem;
  font-weight: 500;
}

.p-card__text {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.63;
}

.p-card__img img {
  width: 100%;
  aspect-ratio: 258/186;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .p-card__body {
    padding-top: 0.375rem;
  }

  .p-card__title {
    font-size: 0.875rem;
  }

  .p-card__title.p-card__title--grid {
    min-height: unset;
  }

  .p-card__title-sub {
    font-size: 0.75rem;
  }

  .p-card__text {
    margin-top: 0.375rem;
    font-size: 0.75rem;
  }
}

/*
    p-gallery
---------------------------------*/
.p-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.p-gallery__item {
  width: calc(33.33% - 10.6666666667px);
}

.p-gallery__item img {
  width: 100%;
  aspect-ratio: 349/246;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1000px) {
  .p-gallery__item {
    width: calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .p-gallery {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .p-gallery__item {
    width: 200px;
  }
}

/*
    p-merit
---------------------------------*/
.p-merit {
  padding: 42px;
  border-radius: 65px 0 65px 0;
  background-color: var(--color-white);
}

.p-merit__top {
  display: flex;
  -moz-column-gap: 37px;
  column-gap: 37px;
}

.p-merit__heading {
  flex-shrink: 0;
}

.p-merit__sub-title {
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-merit__title {
  margin-top: 1rem;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.46;
}

.p-merit__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 2.5rem;
}

.p-merit__item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.p-merit__item-text {
  flex: 1;
  display: grid;
  place-items: center;
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.63;
}

.p-merit__item-text-inner span {
  display: inline-block;
}

@media (max-width: 1000px) {
  .p-merit__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .p-merit {
    padding: 32px 16px;
    border-radius: 35px 0 35px 0;
  }

  .p-merit__top {
    flex-direction: column;
    row-gap: 1.25rem;
  }

  .p-merit__sub-title {
    font-size: 1rem;
  }

  .p-merit__title {
    margin-top: 0.625rem;
    font-size: 1.25rem;
  }

  .p-merit__items {
    /* grid-template-columns: 1fr; */
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .p-merit__item {
    width: 124px;
    margin-inline: auto;
  }

  .p-merit__item-text {
    font-size: 0.875rem;
  }
}

/*
    p-portfolio
---------------------------------*/
.p-portfolio {
  position: relative;
  overflow: hidden;
}

.p-portfolio::before {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 100%;
  min-width: var(--layout-width);
  height: 94px;
  background-color: var(--color-white);
  content: "";
}

.p-portfolio__contents {
  margin-top: 4rem;
}

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

.p-portfolio__item-title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.64;
  text-align: center;
}

.p-portfolio__item-access {
  margin-top: 1.5rem;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.p-portfolio__item-access span {
  display: inline-block;
}

.p-portfolio__item-gallery {
  display: grid;
  grid-template-rows: repeat(2, auto);
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 1.875rem;
}

.p-portfolio__item-gallery img:nth-child(1) {
  grid-row: 1/2;
  grid-column: 1/4;
}

.p-portfolio__item-gallery img:nth-child(2) {
  grid-row: 2/3;
  grid-column: 1/2;
}

.p-portfolio__item-gallery img:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}

.p-portfolio__item-gallery img:nth-child(4) {
  grid-row: 2/3;
  grid-column: 3/4;
}

.p-portfolio__item-option {
  margin-top: 1rem;
}

.p-portfolio__item-option-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(54px, 1fr));
  gap: 16px 8px;
}

@media (max-width: 767px) {
  .p-portfolio::before {
    min-width: unset;
    height: 25px;
  }

  .p-portfolio__contents {
    margin-top: 2.5rem;
  }

  .p-portfolio__items {
    grid-template-columns: 1fr;
  }

  .p-portfolio__item-title {
    font-size: 1.25rem;
  }

  .p-portfolio__item-access {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .p-portfolio__item-gallery {
    margin-top: 1.5rem;
  }

  .p-portfolio__item-option-list {
    grid-template-columns: repeat(auto-fit, minmax(45px, 1fr));
    gap: 12px 6px;
  }
}

/*
    p-bg-wrap
---------------------------------*/
.p-bg-wrap {
  position: relative;
  z-index: 1;
  background-image: url(../images/faq-bg.png);
  background-repeat: no-repeat;
  background-position: top 460px center;
  background-size: 100% auto;
}

@media (max-width: 767px) {
  .p-bg-wrap {
    background-image: none;
  }
}

/*
    p-flow
---------------------------------*/
.p-flow {
  z-index: 2;
}

.p-flow__inner {
  padding-bottom: 0;
}

.p-flow__contents {
  margin-top: 4rem;
}

.p-flow__item {
  display: flex;
  position: relative;
}

.p-flow__item+.p-flow__item {
  margin-top: 1.875rem;
}

.p-flow__item-number {
  flex: 0 0 9.125rem;
  display: grid;
  place-items: center;
  position: relative;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-num);
  font-size: 3.75rem;
}

.p-flow__item-number::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  translate: -50%;
  -webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  width: 2.375rem;
  height: 1.25rem;
  background-color: var(--color-primary);
  content: "";
}

.p-flow__item:last-child .p-flow__item-number::after {
  content: none;
}

.p-flow__item-body {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 7.5rem;
  padding: 24px 42px;
  background-color: var(--bg-color-gray02);
}

.p-flow__child-item {
  display: flex;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

.p-flow__child-item::before {
  flex-shrink: 0;
  margin-right: 0.15em;
  color: var(--color-primary);
  content: "●";
}

.p-flow__child-item+.p-flow__child-item {
  margin-top: 1rem;
}

.p-flow__sub-list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  translate: 0 -50%;
  padding: 24px;
  border: 4px solid var(--color-primary);
}

.p-flow__sub-list::before {
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
  translate: 0 -50%;
  width: 40px;
  height: 23.625rem;
  border: 4px solid var(--color-primary);
  border-left: none;
  content: "";
}

.p-flow__sub-list::after {
  position: absolute;
  top: 50%;
  right: 100%;
  translate: 0 -50%;
  width: 20px;
  height: 4px;
  background-color: var(--color-primary);
  content: "";
}

.p-flow__sub-item {
  display: inline-block;
  min-width: 15rem;
  padding: 0.58em 1em;
  border-radius: 9999px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
}

.p-flow__annotation {
  margin-top: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

@media (max-width: 1400px) {
  .p-flow__contents {
    margin-left: -30px;
  }

  .p-flow__item-body {
    padding: 24px;
  }

  .p-flow__sub-list {
    right: 20px;
    padding: 16px;
  }
}

@media (max-width: 1300px) {
  .p-flow__contents {
    margin-left: -70px;
  }
}

@media (max-width: 1200px) {
  .p-flow__contents {
    margin-left: 0;
  }

  .p-flow__item-body {
    padding: 24px 42px;
  }

  .p-flow__sub-list {
    right: 30px;
  }
}

@media (max-width: 1000px) {
  .p-flow__item-number {
    flex: 0 0 6.875rem;
    font-size: 3.375rem;
  }

  .p-flow__item-number::after {
    width: 2.1875rem;
    height: 1.125rem;
  }

  .p-flow__item-body {
    padding: 24px 30px;
  }

  .p-flow__child-item {
    font-size: 1.125rem;
  }

  .p-flow__sub-list {
    right: 10px;
    padding: 16px;
  }

  .p-flow__sub-item {
    min-width: 11.25rem;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .p-flow__contents {
    margin-top: 3.75rem;
  }

  .p-flow__item+.p-flow__item {
    margin-top: 2.1875rem;
  }

  .p-flow__item-number {
    flex: unset;
    position: absolute;
    top: 0;
    left: 16px;
    translate: 0 -50%;
    width: 4.375rem;
    padding: 0.1em;
    font-size: 1.75rem;
  }

  .p-flow__item-number::after {
    width: 0.6875rem;
    height: 0.4375rem;
  }

  .p-flow__item:last-child .p-flow__item-number::after {
    content: "";
  }

  .p-flow__item-body {
    min-height: unset;
    padding: 34px 16px 16px;
  }

  .p-flow__child-item {
    font-size: 0.875rem;
  }

  .p-flow__child-item+.p-flow__child-item {
    margin-top: 0.5rem;
  }

  .p-flow__sub-list {
    top: 38%;
    right: 12px;
    padding: 8px;
    border-width: 2px;
  }

  .p-flow__sub-list::before {
    right: calc(100% + 15px);
    width: 18px;
    height: 24.0625rem;
    border-width: 2px;
  }

  .p-flow__sub-list::after {
    width: 15px;
    height: 2px;
  }

  .p-flow__sub-item {
    min-width: 8.125rem;
    font-size: 0.875rem;
  }

  .p-flow__annotation {
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 2;
  }
}

/*
    p-faq
---------------------------------*/
.p-faq__contents {
  margin-top: 4rem;
}

.p-faq__item {
  border-top: 1px solid var(--bg-color-gray03);
}

.p-faq__item:last-child {
  border-bottom: 1px solid var(--bg-color-gray03);
}

.p-faq__summary {
  display: flex;
  width: 100%;
  padding-block: 1.5rem;
  transition: padding-block 0.3s;
}

.p-faq__summary.is-open {
  padding-block: 1.5rem 0.5rem;
}

.p-faq__alphabet {
  flex-shrink: 0;
  display: inline-block;
  translate: 0 -5%;
  color: var(--color-primary);
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 500;
}

.p-faq__alphabet abbr {
  text-decoration: none;
}

.p-faq__title {
  flex: 1;
  display: inline-block;
  margin-top: 0.2em;
  margin-left: 0.5em;
  font-weight: 500;
}

.p-faq__icon {
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  translate: 0 45%;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: 22px;
}

.p-faq__icon::before,
.p-faq__icon::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 100%;
  height: 0.25rem;
  background-color: var(--color-primary);
  transition: rotate 0.3s;
  content: "";
}

.p-faq__icon::after {
  rotate: 90deg;
}

.p-faq__summary.is-open .p-faq__icon::after {
  rotate: 0deg;
}

.p-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  padding-bottom: 0;
  transition: grid-template-rows 0.3s, padding-bottom 0.3s;
}

.p-faq__a.is-active {
  grid-template-rows: 1fr;
  padding-bottom: 1.5rem;
}

.p-faq__content {
  overflow: hidden;
}

.p-faq__content-inner {
  display: flex;
  padding: 32px 42px;
  background-color: var(--bg-color-primary);
}

.p-faq__content-body {
  margin-left: 0.5em;
}

@media (max-width: 767px) {
  .p-faq__contents {
    margin-top: 2.5rem;
  }

  .p-faq__summary {
    padding-block: 1rem;
  }

  .p-faq__summary.is-open {
    padding-block: 1rem 0.5rem;
  }

  .p-faq__alphabet {
    font-size: 1.5625rem;
  }

  .p-faq__a.is-active {
    padding-bottom: 1rem;
  }

  .p-faq__content-inner {
    padding: 20px;
  }

  .p-faq__icon::before,
  .p-faq__icon::after {
    height: 0.1875rem;
  }
}

/*
    p-summary
---------------------------------*/
.p-summary {
  position: static;
}

.p-summary__inner {
  padding-block: 10rem 0;
}

.p-summary__contents {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .p-summary__inner {
    padding-block: 3.5rem 0;
  }

  .p-summary__contents {
    margin-top: 2.5rem;
  }
}

/*---------------------------------

Utility

---------------------------------*/
@media (min-width: 768px) {
  .u-only-sp {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
}

/*
    スクリーンリーダー用
---------------------------------*/
.u-only-screen-reader {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
}

/*
    英語大文字対応
---------------------------------*/
.u-text-uppercase {
  text-transform: uppercase;
}

/*
    背景色
---------------------------------*/
.u-bg-primary {
  background-color: var(--bg-color-primary);
}

.u-bg-secondary {
  background-color: var(--color-primary);
  mix-blend-mode: multiply;
}

.u-bg-white {
  background-color: var(--color-white);
}

.u-bg-gray {
  background-color: var(--bg-color-gray);
}

.u-bg-gray02 {
  background-color: var(--bg-color-gray02);
}

.cv-float {
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 100;
  height: 4.25rem;
  transform: translateY(101%);
  transition: transform 0.3s ease-in-out;
  display: none;
}

@media (max-width: 767px) {
  .cv-float {
    display: flex;
  }
}

.cv-float.is-active {
  transform: translateY(0);
}

.cv-float .p-contact__button-list {
  margin: 0;
}

/* 矢印共通 */
.custom-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 20px;
  height: 36px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
}

/* 左矢印 */
.slick-prev.custom-arrow {
  left: -34px;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

/* 右矢印 */
.slick-next.custom-arrow {
  right: -34px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

/* Slickのデフォルトの文字を非表示にするため */
.slick-prev:before,
.slick-next:before {
  display: none;
}