@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Jost:wght@100..900&family=Alexandria:wght@100..900&family=Onest:wght@100..900&family=Didact+Gothic&family=Nanum+Gothic+Coding:wght@400;700&family=Inter:wght@100..900&display=swap");
/*
    A (more) Modern CSS Reset
    https://piccalil.li/blog/a-more-modern-css-reset/
    @since 25/02/05
    @update t-ooishi / 25/02/26
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

ul {
  margin: unset;
  padding: unset;
}

body {
  line-height: 1.5;
  min-height: 100dvh;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 140%;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

a {
  word-break: break-all;
  text-decoration: none;
  color: inherit; /* 親要素の文字色を継承 */
}

img,
picture,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 2.5ex;
}

select:hover {
  background-color: unset;
}
select option:hover {
  background-color: unset;
}

:root {
  --base-font-family: Noto Sans JP, sans-serif; /* メインフォント */
  --header-height: 70px; /* ヘッダー - 高さ */
  --header-top: 0.9375rem; /* ヘッダー - 上余白 */
  --header-gutter: min(25px, var(--gutter, 0px)); /* ヘッダーガイド */
  --gutter: clamp(80px, 7.5vw, 120px); /* コンテンツガイド */
  --contents-spacer: 120px; /* コンテンツ間隔 */
  --page-title: 100px;
}
@media screen and (width <= 1024px) {
  :root {
    --header-height: 60px; /* ヘッダー - 高さ */
  }
}
@media screen and (width <= 768px) {
  :root {
    --gutter: clamp(10px, 5.3333333333vw, 80px); /* コンテンツガイド */
    --contents-spacer: 80px;
    --page-title: 50px;
    /* コンテンツ間隔 */
  }
}

@media screen and (width > 768px) {
  a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  a:hover {
    color: #8d8d8d;
  }
}

body {
  font-size: 1rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: #02060f;
  font-family: var(--base-font-family), sans-serif;
  min-height: 100dvh;
  background-color: #f2f4f5;
  line-height: 180%;
  -webkit-font-feature-settings: "palt" on;
          font-feature-settings: "palt" on;
}
@media screen and (width <= 768px) {
  body {
    font-size: 0.875rem;
    line-height: 185%;
  }
}

:where(.js-tab-container) {
  display: grid;
}
:where(.js-tab-container) .js-tab-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
:where(.js-tab-container) .js-tab-button {
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
}
:where(.js-tab-container) .js-tab-contents {
  position: relative;
  display: grid;
  grid-template-areas: "tab-content";
}
:where(.js-tab-container) .js-tab-content {
  z-index: 0;
  display: grid;
  visibility: hidden;
  grid-template-rows: 0fr;
  grid-area: tab-content;
  opacity: 0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: visibility, opacity, z-index, grid-template-rows;
  transition-property: visibility, opacity, z-index, grid-template-rows;
  transition-property: visibility, opacity, z-index, grid-template-rows, -ms-grid-rows;
}
:where(.js-tab-container) .js-tab-content.is-active {
  z-index: 1;
  visibility: visible;
  grid-template-rows: 1fr;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 1;
}
:where(.js-tab-container) .js-tab-content[aria-hidden=true] {
  display: none;
}
:where(.js-tab-container) .js-tab-content-inn {
  overflow: hidden;
}

.js-tab-container.tab-theme-default {
  gap: 8px;
}
.js-tab-container.tab-theme-default .js-tab-buttons {
  gap: 8px;
}
.js-tab-container.tab-theme-default .js-tab-button {
  font-size: 0.875rem;
  padding: 8px 16px;
  color: #333333;
  border-radius: 20px;
  background-color: #f0f0f0;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: background-color, color, opacity;
  transition-property: background-color, color, opacity;
}
.js-tab-container.tab-theme-default .js-tab-button:hover {
  opacity: 0.9;
}
.js-tab-container.tab-theme-default .js-tab-button.is-active {
  color: #ffffff;
  background-color: #004b8d;
}
.js-tab-container.tab-theme-default .js-tab-button:focus {
  outline: 2px solid rgba(0, 75, 141, 0.5);
  outline-offset: 2px;
}
.js-tab-container.tab-theme-default .js-tab-button:focus:not(:focus-visible) {
  outline: none;
}
.js-tab-container.tab-theme-default .js-tab-contents {
  padding: 8px;
}

.js-scroll-fade-up-trr {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}

.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  width: 100%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-breadcrumb__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-breadcrumb__item > a {
  color: #02060f;
}
.c-breadcrumb__item::after {
  content: "";
  width: 118px;
  height: 1px;
  background-color: #8d8d8d;
}
.c-breadcrumb__item:last-of-type {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-flex: unset;
  -webkit-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -webkit-box-orient: vertical;
  text-decoration: none;
  -webkit-line-clamp: 1;
  color: #02060f;
}
.c-breadcrumb__item:last-of-type::after {
  display: none;
}

.c-btn-black {
  background-color: #02060f;
  font-weight: 500;
  color: #ffffff;
  line-height: 100%;
  padding-block: 17px;
  padding-inline: 27px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 29px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  max-width: 202px;
  width: 100%;
  border: 1px solid #02060f;
}
@media screen and (width <= 36rem) {
  .c-btn-black {
    max-width: 171px;
    padding-block: 13px;
    padding-right: 20px;
  }
}
.c-btn-black::after {
  display: block;
  content: "";
  background-image: url("../images/icon_right_white.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 13px;
}
.c-btn-white {
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #02060f;
  font-weight: 500;
  color: #02060f;
  line-height: 100%;
  padding-block: 11px;
  padding-inline: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 29px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  max-width: 190px;
  width: 100%;
}
@media screen and (width > 963px) {
  .c-btn-white {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-btn-white:hover {
    background-color: #8d8d8d;
    color: #02060f;
  }
}
@media screen and (width <= 36rem) {
  .c-btn-white {
    max-width: 171px;
    padding-block: 13px;
    padding-right: 20px;
  }
}
.c-btn-white::after {
  display: block;
  content: "";
  background-image: url("../images/icon_right_black.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 25px;
  height: 13px;
}
.c-btn-white--contact {
  max-width: 202px;
  padding: 17px 27px 16px 15px;
  gap: 19px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: start;
  border-radius: 29px;
}
.c-btn-white--confirm {
  max-width: 180px;
  padding: 17px 27px 16px 29px;
  gap: 19px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  justify-items: start;
  border-radius: 29px;
}
.c-btn-white--reverse {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background-color: unset;
  border: unset;
  border-radius: unset;
  position: relative;
}
@media screen and (width > 963px) {
  .c-btn-white--reverse {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-btn-white--reverse:hover {
    background-color: unset;
    border: unset;
    color: #8d8d8d;
  }
}
.c-btn-white--reverse::before {
  content: "";
  position: absolute;
  width: 128px;
  bottom: 10px;
  border-bottom: 1px dashed #02060f;
}
.c-btn-white--reverse::after {
  rotate: 180deg;
}
.c-btn-link {
  display: grid;
  grid-template-columns: 1fr auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 27px;
  font-weight: 500;
  line-height: 100%;
}
@media screen and (width <= 768px) {
  .c-btn-link {
    font-size: 16px;
  }
}
@media screen and (width <= 36rem) {
  .c-btn-link {
    gap: 18px;
  }
}
@media screen and (width > 963px) {
  .c-btn-link {
    cursor: pointer;
  }
  .c-btn-link:hover span {
    background-color: #8d8d8d;
  }
}
.c-btn-link > span {
  border-radius: 50%;
  width: 67px;
  aspect-ratio: 1;
  border: 1px solid #02060f;
  position: relative;
  display: block;
  background-color: #ffffff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (width <= 36rem) {
  .c-btn-link > span {
    width: 53px;
  }
}
.c-btn-link > span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 25px;
  height: 13px;
  background-image: url("../images/icon_right_black.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (width <= 36rem) {
  .c-btn-link > span::before {
    width: 20px;
    height: 10px;
  }
}
.c-btn-personal {
  border-radius: 50%;
  width: 67px;
  aspect-ratio: 1;
  border: 1px solid #02060f;
  position: relative;
  display: block;
}
@media screen and (width <= 36rem) {
  .c-btn-personal {
    width: 54px;
  }
}
.c-btn-personal::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 25px;
  height: 13px;
  background-image: url("../images/icon_right_black.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (width <= 36rem) {
  .c-btn-personal::before {
    width: 20px;
    height: 10px;
  }
}

.c-pagination {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-pagination__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
     -moz-column-gap: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
          column-gap: clamp(0.875rem, 0.8367346939rem + 0.1632653061vw, 1rem);
}
.c-pagination__card {
  --pagination-card-width: clamp(30px, 26.9387755102px + 0.8163265306vw, 40px);
  --pagination-card-ratio: calc(4 / 4.5);
  font-size: clamp(12px, 10.7755102041px + 0.3265306122vw, 16px);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1em;
  color: #c02c6e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: var(--pagination-card-width);
  height: calc(var(--pagination-card-width) / var(--pagination-card-ratio));
  padding: 0.25em;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  text-decoration: none;
  border: 1px solid #c02c6e;
  border-radius: calc(var(--pagination-card-width) * 0.1);
  background-color: #ffffff;
}
.c-pagination__card:focus-visible {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  color: #ffffff;
  background-color: rgb(213.4237288136, 73.5762711864, 135.9406779661);
}
@media (any-hover: hover) {
  .c-pagination__card:hover {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    color: #ffffff;
    background-color: rgb(213.4237288136, 73.5762711864, 135.9406779661);
  }
}
.c-pagination__card.is-active {
  pointer-events: none;
  color: #ffffff;
  border-color: #c02c6e;
  background-color: #c02c6e;
}
.c-pagination__dot {
  font-size: 16px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  line-height: 1.75em;
  color: #c02c6e;
}
.c-pagination--inverted .c-pagination__card {
  color: #ffffff;
  border-color: #ffffff;
  background-color: #c02c6e;
}
.c-pagination--inverted .c-pagination__card:focus-visible {
  color: #c02c6e;
  background-color: rgb(229.5, 229.5, 229.5);
}
@media (any-hover: hover) {
  .c-pagination--inverted .c-pagination__card:hover {
    color: #c02c6e;
    background-color: rgb(229.5, 229.5, 229.5);
  }
}
.c-pagination--inverted .c-pagination__card.is-active {
  color: #c02c6e;
  border-color: #ffffff;
  background-color: #ffffff;
}
.c-pagination--inverted .c-pagination__dot {
  color: #ffffff;
}

.c-titles__wrap-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-titles__wrap-title > p {
  color: #b1b6bd;
  font-family: "Noto Sans JP";
  font-size: clamp(13px, 3.7037037037vw, 20px);
  font-style: normal;
  font-weight: 500;
  line-height: 142%; /* 28.4px */
}

.c-titles__wrap-title.center {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}

.c-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #02060f;
  font-family: "Onest", sans-serif;
  font-size: clamp(28px, 7.9365079365vw, 60px);
  font-style: normal;
  font-weight: 500;
  line-height: 127%; /* 76.2px */
  letter-spacing: -1.2px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.c-title::before {
  display: block;
  width: clamp(22px, 6.3492063492vw, 36px);
  height: clamp(18px, 5.291005291vw, 32px);
  content: "";
  background-image: url(../images/icon_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-title.is-white {
  color: #ffffff;
  font-family: "Onest", sans-serif;
  font-size: clamp(28px, 7.9365079365vw, 60px);
  font-style: normal;
  font-weight: 500;
  line-height: 127%; /* 76.2px */
  letter-spacing: -1.2px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.c-title.is-white::before {
  display: block;
  width: clamp(22px, 6.3492063492vw, 36px);
  height: clamp(18px, 5.291005291vw, 32px);
  content: "";
  background-image: url(../images/icon_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.c-title-little {
  color: #02060f;
  font-family: "Onest", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 127%; /* 27.94px */
  letter-spacing: -0.44px;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 3px;
}
.c-title-little::before {
  display: block;
  width: 18px;
  height: 16px;
  content: "";
  background-image: url(../images/icon_black.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-title-little--white {
  color: #ffffff;
}
.c-title-little--white::before {
  background-image: url(../images/icon_white.svg);
}

.c-title-dot {
  color: #02060f;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.3px;
}
.c-title-dot::before {
  display: block;
  width: 7.7px;
  height: 4px;
  content: "";
  background-image: url(../images/icon_black_small.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.l-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  background-color: #323232;
  z-index: 1000;
  height: var(--header-height);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 15px;
  padding-right: 17px;
}
@media screen and (width > 1024px) {
  .l-header {
    padding-inline: 20px;
  }
}
@media screen and (width > 1280px) {
  .l-header {
    padding-inline: clamp(20px, 2.5vw, 40px);
  }
}
.l-header__logo img {
  display: block;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  max-width: 178px;
  aspect-ratio: 178/37;
}
.l-header__main {
  display: none;
}
@media screen and (width > 1024px) {
  .l-header__main {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 50px;
  }
}
.l-header-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.l-header-nav__link {
  color: #ffffff;
  font-weight: 500;
  line-height: 100%;
  position: relative;
}
.l-header-nav__link.is-active::after {
  content: "";
  bottom: -14px;
  left: 0;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.l-header__sub {
  margin-right: 44px;
}
.l-header__sub p {
  font-family: "Jost", sans-serif;
  color: #c02c6e;
  font-size: 16px;
}
@media screen and (width > 1024px) {
  .l-header__sub {
    display: none;
  }
}
.l-header-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media screen and (width > 1024px) {
  .l-header-menu {
    gap: clamp(14px, 1.3671875vw, 30px);
  }
}
.l-header-menu li {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header-menu li:hover {
  color: #c02c6e;
}
.l-header-menu .sub-menu {
  display: none;
}
.l-header-content {
  padding: 14px;
  padding-inline: clamp(16px, 3vw, 48px);
}

.l-header-toggle {
  display: block;
  position: absolute;
  top: 7px;
  width: 46px;
  height: 46px;
  border-radius: 5px;
  right: 17px;
  background-color: #ffffff;
  cursor: pointer;
  aspect-ratio: 1/1;
}
@media screen and (width > 1024px) {
  .l-header-toggle {
    display: none;
  }
}
.l-header-toggle__top, .l-header-toggle__center, .l-header-toggle__bottom {
  display: block;
  width: 28px;
  height: 2px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='2' viewBox='0 0 28 2' fill='none'%3E%3Cpath d='M0 0.0757867L26.2899 -2.61884e-05L28 1.92419L1.71015 2L0 0.0757867Z' fill='%23262626'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 28px 2px;
  top: 50%;
  left: 50%;
}
.l-header-toggle__top {
  -webkit-transform: translate(-50%, calc(-50% - 8px));
          transform: translate(-50%, calc(-50% - 8px));
}
.l-header-toggle__center {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.l-header-toggle__bottom {
  -webkit-transform: translate(-50%, calc(-50% + 8px));
          transform: translate(-50%, calc(-50% + 8px));
}
.l-header-toggle.js-open .l-header-toggle__top {
  -webkit-animation: burger-top-open 0.5s ease forwards;
          animation: burger-top-open 0.5s ease forwards;
  opacity: 0;
}
.l-header-toggle.js-open .l-header-toggle__center {
  -webkit-animation: burger-center-open 0.5s ease forwards;
          animation: burger-center-open 0.5s ease forwards;
}
.l-header-toggle.js-open .l-header-toggle__bottom {
  -webkit-animation: burger-bottom-open 0.5s ease forwards;
          animation: burger-bottom-open 0.5s ease forwards;
  opacity: 0;
}
.l-header-toggle.js-close .l-header-toggle__top {
  -webkit-animation: burger-top-close 0.5s ease forwards;
          animation: burger-top-close 0.5s ease forwards;
}
.l-header-toggle.js-close .l-header-toggle__center {
  -webkit-animation: burger-center-close 0.5s ease forwards;
          animation: burger-center-close 0.5s ease forwards;
}
.l-header-toggle.js-close .l-header-toggle__bottom {
  -webkit-animation: burger-bottom-close 0.5s ease forwards;
          animation: burger-bottom-close 0.5s ease forwards;
}

@-webkit-keyframes burger-top-open {
  0% {
    -webkit-transform: translate(-50%, calc(-50% - 8px));
            transform: translate(-50%, calc(-50% - 8px));
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
}

@keyframes burger-top-open {
  0% {
    -webkit-transform: translate(-50%, calc(-50% - 8px));
            transform: translate(-50%, calc(-50% - 8px));
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
}
@-webkit-keyframes burger-top-close {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, calc(-50% - 8px));
            transform: translate(-50%, calc(-50% - 8px));
    opacity: 1;
  }
}
@keyframes burger-top-close {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, calc(-50% - 8px));
            transform: translate(-50%, calc(-50% - 8px));
    opacity: 1;
  }
}
@-webkit-keyframes burger-center-open {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
  55% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-53deg);
            transform: translate(-50%, -50%) rotate(-53deg);
    width: 30px;
  }
}
@keyframes burger-center-open {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
  55% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(-53deg);
            transform: translate(-50%, -50%) rotate(-53deg);
    width: 30px;
  }
}
@-webkit-keyframes burger-center-close {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-53deg);
            transform: translate(-50%, -50%) rotate(-53deg);
    width: 30px;
  }
  45% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
}
@keyframes burger-center-close {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(-53deg);
            transform: translate(-50%, -50%) rotate(-53deg);
    width: 30px;
  }
  45% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 28px;
  }
}
@-webkit-keyframes burger-bottom-open {
  0% {
    -webkit-transform: translate(-50%, calc(-50% + 8px));
            transform: translate(-50%, calc(-50% + 8px));
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
}
@keyframes burger-bottom-open {
  0% {
    -webkit-transform: translate(-50%, calc(-50% + 8px));
            transform: translate(-50%, calc(-50% + 8px));
    opacity: 1;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
}
@-webkit-keyframes burger-bottom-close {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, calc(-50% + 8px));
            transform: translate(-50%, calc(-50% + 8px));
    opacity: 1;
  }
}
@keyframes burger-bottom-close {
  0% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, calc(-50% + 8px));
            transform: translate(-50%, calc(-50% + 8px));
    opacity: 1;
  }
}
.js-image-slide {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-image-slide.is-visible {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.js-image-slide-over {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: -webkit-clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-clip-path 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-image-slide-over.is-visible {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.js-text-slide {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  /* transitionDurationはJSで上書きするのでここでは指定しない */
  -webkit-transition-property: -webkit-clip-path;
  transition-property: -webkit-clip-path;
  transition-property: clip-path;
  transition-property: clip-path, -webkit-clip-path;
  -webkit-transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
          transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.js-text-slide.is-visible {
  -webkit-clip-path: inset(0 0% 0 0);
          clip-path: inset(0 0% 0 0);
}

.l-footer {
  overflow: hidden;
  margin-top: 120px;
}
@media screen and (width <= 768px) {
  .l-footer {
    margin-top: 64px;
  }
}
.l-footer-main {
  position: relative;
}
.l-footer-main__inner {
  max-width: 1360px;
  width: 90%;
  margin-inline: auto;
}
.l-footer-main__upper {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: clamp(60px, 14.2857142857vw, 200px);
     -moz-column-gap: clamp(60px, 14.2857142857vw, 200px);
          column-gap: clamp(60px, 14.2857142857vw, 200px);
}
@media screen and (width > 1400px) {
  .l-footer-main__upper {
    -webkit-column-gap: clamp(60px, 18.75vw, 300px);
       -moz-column-gap: clamp(60px, 18.75vw, 300px);
            column-gap: clamp(60px, 18.75vw, 300px);
  }
}
@media screen and (width <= 1280px) {
  .l-footer-main__upper {
    grid-template-columns: 190px 1fr;
    -webkit-column-gap: clamp(20px, 9.375vw, 120px);
       -moz-column-gap: clamp(20px, 9.375vw, 120px);
            column-gap: clamp(20px, 9.375vw, 120px);
  }
}
@media screen and (width <= 768px) {
  .l-footer-main__upper {
    grid-template-columns: 1fr;
    row-gap: 46px;
  }
}
@media screen and (width <= 768px) {
  .l-footer-main__left {
    display: grid;
    grid-template-columns: auto 1fr;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
@media screen and (width <= 36rem) {
  .l-footer-main__left {
    grid-template-columns: 1fr;
    row-gap: 29px;
  }
}
.l-footer-main__link {
  display: grid;
  row-gap: 26px;
}
@media screen and (width <= 36rem) {
  .l-footer-main__link {
    row-gap: 7.55px;
  }
}
@media screen and (width <= 36rem) {
  .l-footer-main__link > img {
    max-width: 160px;
    width: 100%;
  }
}
.l-footer-main__link-text {
  font-weight: 500;
  color: #02060f;
  display: block;
  font-size: 20px;
  line-height: 142%;
}
@media screen and (width <= 36rem) {
  .l-footer-main__link-text {
    font-size: 16px;
  }
}
.l-footer-main__btn {
  margin-top: 53px;
}
@media screen and (width <= 768px) {
  .l-footer-main__btn {
    margin-top: unset;
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
}
@media screen and (width <= 36rem) {
  .l-footer-main__btn {
    -webkit-margin-start: unset;
            margin-inline-start: unset;
    -webkit-margin-end: auto;
            margin-inline-end: auto;
  }
}
.l-footer-main__img {
  max-width: 407px;
  width: 100%;
}
.l-footer-main__right {
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content max-content;
  -webkit-column-gap: clamp(20px, 5vw, 80px);
     -moz-column-gap: clamp(20px, 5vw, 80px);
          column-gap: clamp(20px, 5vw, 80px);
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media screen and (width <= 1280px) {
  .l-footer-main__right {
    grid-template-columns: 1fr 1fr 1fr;
    row-gap: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: clamp(20px, 2.734375vw, 35px);
       -moz-column-gap: clamp(20px, 2.734375vw, 35px);
            column-gap: clamp(20px, 2.734375vw, 35px);
  }
}
@media screen and (width <= 1100px) {
  .l-footer-main__right {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (width <= 963px) {
  .l-footer-main__right {
    grid-template-columns: 1fr;
    row-gap: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer-main__wrap {
  min-width: 200px;
}
@media screen and (width <= 36rem) {
  .l-footer-main__wrap {
    border-bottom: 1px dashed #b1b6bd;
    padding-bottom: 8px;
  }
}
@media screen and (width <= 36rem) {
  .l-footer-main__wrap-title {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title btn" "sub btn";
  }
}
.l-footer-main__wrap-title > .c-title-little {
  grid-area: title;
}
.l-footer-main__wrap-title > .text {
  color: #b1b6bd;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}
@media screen and (width <= 36rem) {
  .l-footer-main__wrap-title > .text {
    grid-area: sub;
  }
}
.l-footer-main__wrap-title > .btn {
  background-color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 51px;
  aspect-ratio: 1/1;
  border: 1px solid #02060f;
  grid-area: btn;
}
.l-footer-main__wrap-title > .btn svg {
  width: 6px;
  height: 16px;
}
@media screen and (width > 36rem) {
  .l-footer-main__wrap-title > .btn {
    display: none;
  }
}
.l-footer-main__wrap-sub {
  margin-top: 14px;
  display: grid;
  row-gap: 14px;
}
.l-footer-main__wrap-sub > a {
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 30.4px */
  border-bottom: 1px dashed #b1b6bd;
}
@media screen and (width <= 36rem) {
  .l-footer-main__wrap-sub {
    display: none;
  }
}
.l-footer-main-under {
  margin-top: 40px;
  margin-bottom: 24px;
}
.l-footer-main-under__contents {
  padding-top: 13px;
  border-top: 1px dashed #b1b6bd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (width <= 36rem) {
  .l-footer-main-under__contents {
    border-top: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
  }
}
.l-footer-main-under__copy {
  text-align: center;
  margin-top: 23px;
  color: #b1b6bd;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}
@media screen and (width <= 36rem) {
  .l-footer-main-under__copy {
    margin-top: 29px;
    font-size: 12px;
  }
}

.l-burger {
  background-color: #02060f;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-burger::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0px;
  width: 100%;
  aspect-ratio: 375/349;
  background-color: #3d3c3c;
  -webkit-clip-path: polygon(100% 0, 100% 20%, 0 100%, 0 80%);
          clip-path: polygon(100% 0, 100% 20%, 0 100%, 0 80%);
}
@media screen and (width > 1280px) {
  .l-burger {
    display: none;
  }
}
.l-burger__input {
  display: none;
}
.l-burger__input:checked + .l-burger {
  -webkit-transform: translate(-100%, 0);
          transform: translate(-100%, 0);
}
.l-burger__inner {
  padding: 155px 20px 80px;
  position: relative;
  max-width: 100%;
  margin: 0 0 0 auto;
  max-height: 100%;
  height: 100%;
  overflow: auto;
}
.l-burger-main__top {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-burger-main__wrap {
  min-width: 200px;
  border-bottom: 1px dashed #b1b6bd;
  padding-bottom: 8px;
}
.l-burger-main__wrap-title {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "title btn" "sub btn";
}
.l-burger-main__wrap-title > .c-title-little {
  grid-area: title;
}
.l-burger-main__wrap-title > .text {
  color: #b1b6bd;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  grid-area: sub;
}
.l-burger-main__wrap-title > .btn {
  background-color: #ffffff;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 51px;
  aspect-ratio: 1/1;
  border: 1px solid #02060f;
  grid-area: btn;
}
.l-burger-main__wrap-title > .btn svg {
  width: 6px;
  height: 16px;
}
.l-burger-main__wrap-sub {
  margin-top: 14px;
  display: grid;
  row-gap: 14px;
}
.l-burger-main__wrap-sub > a {
  font-style: normal;
  font-weight: 500;
  line-height: 190%; /* 30.4px */
  border-bottom: 1px dashed #b1b6bd;
}
@media screen and (width <= 36rem) {
  .l-burger-main__wrap-sub {
    display: none;
  }
}
.l-burger-main__contact {
  margin-top: 73px;
}
@media screen and (width <= 36rem) {
  .l-burger-main__contact {
    max-width: 173px;
  }
}
.l-burger-main-under__contents {
  margin-top: 70px;
  padding-top: 13px;
  border-top: 1px dashed #b1b6bd;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (width <= 36rem) {
  .l-burger-main-under__contents {
    border-top: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 12px;
  }
}
.l-burger-main-under__contents .c-title-dot {
  color: #ffffff;
}
.l-burger-main-under__contents .c-title-dot::before {
  background-image: url(../images/icon_white_small.svg);
}
.l-burger-main-under__copy {
  text-align: center;
  margin-top: 23px;
  color: #b1b6bd;
  font-style: normal;
  font-weight: 500;
  line-height: 190%;
}
@media screen and (width <= 36rem) {
  .l-burger-main-under__copy {
    margin-top: 29px;
    font-size: 12px;
  }
}

.l-main {
  position: relative;
  width: 100%;
}

.l-media {
  grid-area: media;
}
.l-media-action {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 400/315;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-media-action a {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.l-media-action a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-media-action--content1 {
  grid-area: media1;
}
.l-media-action--content2 {
  grid-area: media2;
}
.l-media-action--content3 {
  grid-area: media3;
}
.l-media-action--content4 {
  grid-area: media4;
}
@media screen and (width <= 963px) {
  .l-media-action {
    margin-inline: auto;
  }
}

.l-num-title {
  padding-block: 14.5px;
  border-block: 1px solid #c02c6e;
  display: grid;
  grid-template-columns: auto minmax(300px, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (width <= 768px) {
  .l-num-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-block: 10px;
  }
}
.l-num-title__left {
  padding: 22.5px 42px 22.5px 23px;
  border-right: 1px solid rgba(192, 44, 110, 0.3);
  color: #c02c6e;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}
@media screen and (width <= 768px) {
  .l-num-title__left {
    border-right: unset;
    padding: 12.5px 22px 12.5px 13px;
    gap: 20px;
  }
}
.l-num-title__left .num {
  font-size: 39px;
  font-family: "Jost", sans-serif;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media screen and (width <= 768px) {
  .l-num-title__left .num {
    font-size: 30px;
  }
}
.l-num-title__left .title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media screen and (width <= 768px) {
  .l-num-title__left .title {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
.l-num-title__right {
  line-height: 180%;
  letter-spacing: 1.44px;
  padding-inline: 42px;
}
@media screen and (width <= 768px) {
  .l-num-title__right {
    padding-inline: 22px;
    padding-top: 0px;
    padding-bottom: 10px;
  }
}

.l-page-head {
  padding-top: 56px;
  margin-bottom: 80px;
  position: relative;
  margin-inline: auto;
  overflow-x: clip;
  margin-inline: auto;
}
.l-page-head__back {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 599px;
  background: white;
  -webkit-clip-path: polygon(0 486px, 100% 0, 100% 113px, 0 599px);
          clip-path: polygon(0 486px, 100% 0, 100% 113px, 0 599px);
}
.l-page-head__inner {
  width: 90%;
  margin-inline: auto;
}
@media screen and (width > 963px) {
  .l-page-head__inner {
    margin-inline: auto;
    max-width: 1534px;
  }
}
.l-page-head__title {
  margin-bottom: 50px;
}
.l-page-head__title .en {
  margin-top: 32px;
  font-size: clamp(40px, 6.6666666667vw, 100px);
  font-weight: 500;
  line-height: 127%;
  letter-spacing: -2px;
}
.l-page-head__title .en::before {
  width: clamp(34px, 4.4270833333vw, 60px);
  height: clamp(30px, 3.90625vw, 54px);
}
@media screen and (width <= 768px) {
  .l-page-head__title .en {
    font-size: 40px;
  }
}
.l-page-head__title .ja {
  color: #8d8d8d;
  font-size: clamp(18px, 1.7333333333vw, 26px);
  font-style: normal;
  font-weight: 500;
  line-height: 142%; /* 36.92px */
}
@media screen and (width <= 768px) {
  .l-page-head__title .ja {
    font-size: 18px;
  }
}

.l-section {
  margin-inline: auto;
  margin-block: var(--contents-spacer);
}
.l-section__inner {
  max-width: 1360px;
  width: 90%;
  margin-inline: auto;
}
.l-section__wrap {
  display: grid;
  grid-template-areas: "contents media";
  grid-template-columns: 2fr 1fr;
  -webkit-column-gap: clamp(30px, 7.5vw, 120px);
     -moz-column-gap: clamp(30px, 7.5vw, 120px);
          column-gap: clamp(30px, 7.5vw, 120px);
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (width <= 963px) {
  .l-section__wrap {
    grid-template-areas: "contents " "media";
    grid-template-columns: unset;
    row-gap: 40px;
  }
}

.l-cta-link {
  margin-bottom: unset;
}
.l-cta-link-border::before {
  content: "";
  max-width: 1600px;
  display: block;
  margin-bottom: var(--contents-spacer);
  margin-inline: auto;
  width: 90%;
  height: 1px;
  background-color: #ddd;
}
.l-cta-link__wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: clamp(30px, 13.75vw, 220px);
     -moz-column-gap: clamp(30px, 13.75vw, 220px);
          column-gap: clamp(30px, 13.75vw, 220px);
  row-gap: 19px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 768px) {
  .l-cta-link__wrap {
    grid-template-columns: auto;
  }
}
.l-cta-link__title {
  font-size: 41px;
}
@media screen and (width <= 768px) {
  .l-cta-link__title {
    font-size: 31px;
  }
}
.l-cta-link__title::after {
  width: 5px;
}
@media screen and (width <= 768px) {
  .l-cta-link__title::after {
    width: 4px;
  }
}
.l-cta-link__title::before {
  width: 5px;
}
@media screen and (width <= 768px) {
  .l-cta-link__title::before {
    width: 4px;
  }
}
.l-cta-link__textarea p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 38px;
}
@media screen and (width <= 768px) {
  .l-cta-link__textarea p {
    margin-bottom: 24px;
  }
}
.l-cta-link__textarea a {
  font-size: 22.5px;
}
.l-cta-link__textarea a::after {
  height: 19px;
  width: 13.6px;
}
@media screen and (width <= 768px) {
  .l-cta-link__textarea a {
    font-size: 16.5px;
    margin-inline: auto;
  }
  .l-cta-link__textarea a::after {
    height: 11px;
    width: 5.6px;
  }
}

.l-career-transition {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(216px, 1fr));
  position: relative;
  grid-template-areas: "title" "line" "text";
}
@media screen and (width <= 963px) {
  .l-career-transition {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 30px;
  }
}
.l-career-transition::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(30.44%, #f5cfbd), color-stop(100.59%, #d16d3b));
  background: -webkit-linear-gradient(left, #f5cfbd 30.44%, #d16d3b 100.59%);
  background: linear-gradient(90deg, #f5cfbd 30.44%, #d16d3b 100.59%);
  top: 53px;
  left: 0;
}
@media screen and (width <= 963px) {
  .l-career-transition::before {
    display: none;
  }
}
.l-career-transition__period {
  text-align: center;
  padding-top: 12px;
  padding-bottom: 13px;
  border-right: 1px solid rgba(31, 10, 0, 0.3);
  font-size: 18px;
  letter-spacing: 1.62px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (width <= 963px) {
  .l-career-transition__period {
    border-right: unset;
    border-bottom: 1px solid transparent;
    -webkit-border-image: -webkit-gradient(linear, left top, right top, color-stop(30.44%, #f5cfbd), color-stop(100.59%, #c02c6e)) 1;
    -webkit-border-image: -webkit-linear-gradient(left, #f5cfbd 30.44%, #c02c6e 100.59%) 1;
         -o-border-image: linear-gradient(90deg, #f5cfbd 30.44%, #c02c6e 100.59%) 1;
            border-image: -webkit-gradient(linear, left top, right top, color-stop(30.44%, #f5cfbd), color-stop(100.59%, #c02c6e)) 1;
            border-image: linear-gradient(90deg, #f5cfbd 30.44%, #c02c6e 100.59%) 1;
    padding-bottom: 20px;
  }
}
.l-career-transition__box:last-child .l-career-transition__period {
  border-right: unset;
}
.l-career-transition__explain {
  margin-top: 38px;
  padding-inline: 17px;
}
@media screen and (width <= 963px) {
  .l-career-transition__explain {
    margin-top: 18px;
  }
}
.l-career-transition__text {
  line-height: 180%;
  letter-spacing: 1.44px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 5px;
  margin-bottom: 10px;
}
@media screen and (width <= 963px) {
  .l-career-transition__text {
    font-size: 14px;
  }
}
.l-career-transition__text::before {
  content: "";
  margin-top: 3px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: block;
  background-image: url(../images/icon/check-mark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (width <= 963px) {
  .l-career-transition__text::before {
    width: 20px;
    height: 20px;
  }
}
.l-career-transition__text:last-of-type {
  margin-bottom: 0;
}

.l-single__tags {
  font-size: clamp(0.625rem, 3.2vw, 0.75rem);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1;
  color: #02060f;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 5px 10px;
}
.l-single__categories {
  display: inline flex;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
}
.l-single__category {
  font-weight: 500;
  padding: 0.416em 1.33em;
  color: #ffffff;
  border-radius: 0.25em;
  background-color: #c02c6e;
}
@media screen and (width <= 768px) {
  .l-single__category {
    font-size: max(0.75rem, 0.75em);
  }
}
.l-single__title {
  font-size: clamp(1rem, 4.2666666667vw, 1.375rem);
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  color: #c02c6e;
  width: 100%;
  margin-top: 0.54em;
  padding-bottom: 0.54em;
  border-bottom: 2px solid #c02c6e;
}
.l-single__contents {
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin-top: 24px;
}
.l-single__contents :where(:not(html, iframe, canvas, img, svg, video, audio, input, textarea):not(svg *, symbol *)) {
  all: revert;
}
@media screen and (width <= 768px) {
  .l-single__contents {
    margin-top: 12px;
  }
}
.l-single__btn {
  margin-top: 80px;
  width: min(100%, 320px);
  margin-inline: auto;
}
@media screen and (width <= 768px) {
  .l-single__btn {
    margin-top: 40px;
  }
}

.l-faq__accordion {
  margin-top: 56px;
}
@media screen and (width <= 768px) {
  .l-faq__accordion {
    margin-top: 30px;
  }
}
.l-faq__item {
  padding-left: clamp(40px, 6.4375vw, 103px);
  padding-right: 40px;
  padding-bottom: 32px;
  padding-top: 37px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 8px 8px 0px 0px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eddeec;
}
@media screen and (width <= 768px) {
  .l-faq__item {
    padding-inline: 18px;
  }
}
.l-faq__item:last-of-type {
  margin-bottom: unset;
}
.l-faq__header {
  width: 100%;
  border: unset;
  position: relative;
  z-index: 1;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  border-radius: 6px;
  background: none;
  padding-inline: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  color: #02060f;
}
@media screen and (width > 768px) {
  .l-faq__header:hover {
    color: #c02c6e;
  }
}
.l-faq__icon {
  position: absolute;
  top: 50%;
  right: 0;
  width: 14.5px;
  height: 14.5px;
  margin-top: -10px;
  display: block;
  translate: 0 4px;
}
.l-faq__icon::before, .l-faq__icon::after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}
.l-faq__icon::before {
  border-top: 2px solid #c02c6e;
  width: 14.5px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.l-faq__icon::after {
  border-left: 2px solid #c02c6e;
  width: 0;
  height: 14.5px;
  top: 0;
  bottom: 0;
  right: 6px;
  -webkit-transition: height 0.25s, -webkit-transform 0.25s;
  transition: height 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, height 0.25s;
  transition: transform 0.25s, height 0.25s, -webkit-transform 0.25s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.l-faq__body {
  max-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: none;
  -webkit-transition: max-height 0.35s ease;
  transition: max-height 0.35s ease;
}
.l-faq__bodyinner {
  display: block;
  padding-top: 32px;
  padding-left: 35px;
  position: relative;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (width <= 768px) {
  .l-faq__bodyinner {
    max-width: 100%;
    padding-top: 10px;
    padding-left: 0px;
  }
}
.l-faq__headinner {
  display: block;
  padding-left: 35px;
  position: relative;
  max-width: calc(100% - 100px);
  width: 100%;
}
@media screen and (width <= 768px) {
  .l-faq__headinner {
    max-width: 100%;
  }
}
.l-faq__headinner::before {
  position: absolute;
  left: 0;
  content: "Q";
  color: #c02c6e;
  width: 23px;
  height: 28px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  top: 3px;
}
.l-faq__q-txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 180%; /* 18px */
  letter-spacing: 1.8px;
  padding-right: 20px;
}
@media screen and (width <= 768px) {
  .l-faq__q-txt {
    font-size: 16px;
  }
}
.l-faq__a-txt {
  line-height: 150%; /* 18px */
  letter-spacing: 1.8px;
}

.l-faq__item.secondary {
  background-color: #eddeec;
  border-radius: 8px;
}

.l-faq__header.open .l-faq__icon::after {
  height: 0;
}

.p-advertising__contents {
  grid-area: contents;
}
.p-advertising-box {
  margin-bottom: var(--contents-spacer);
}
.p-advertising-box:last-child {
  margin-bottom: 0;
}
.p-advertising-box__title {
  margin-bottom: 40px;
}
@media screen and (width <= 768px) {
  .p-advertising-box__title {
    margin-bottom: 30px;
  }
}
.p-advertising-box__text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (width <= 768px) {
  .p-advertising-box__text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.p-advertising-box__btn {
  margin-top: 30px;
  margin-inline: auto;
}
.p-advertising__example {
  font-size: 16px;
  font-weight: 500;
  line-height: 28.8px; /* 180% */
  margin-bottom: 5px;
  margin-left: 10px;
}
@media screen and (width <= 768px) {
  .p-advertising__example {
    font-size: 14px;
  }
}
.p-advertising-flow__box {
  display: grid;
  grid-template-areas: "num title" "line text";
  grid-template-columns: 40px 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  padding-bottom: 15px;
}
@media screen and (width <= 768px) {
  .p-advertising-flow__box {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    grid-template-columns: 35px 1fr;
  }
}
.p-advertising-flow__num {
  grid-area: num;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  background-color: #c02c6e;
  padding: 7px 6px 9px;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 768px) {
  .p-advertising-flow__num {
    font-size: 20px;
  }
}
.p-advertising-flow__title {
  grid-area: title;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (width <= 768px) {
  .p-advertising-flow__title {
    font-size: 18px;
  }
}
.p-advertising-flow__line {
  grid-area: line;
  width: 1px;
  height: 100%;
  background: #d9d9d9;
  margin-inline: auto;
  height: calc(100% - 15px);
  translate: 0 15px;
}
.p-advertising-flow .p-advertising-flow__box:last-child .p-advertising-flow__line {
  display: none;
}
.p-advertising-flow__text {
  grid-area: text;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28.8px; /* 180% */
  min-height: 47px;
}
@media screen and (width <= 768px) {
  .p-advertising-flow__text {
    font-size: 16px;
  }
}

.p-about-top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  line-height: 175%;
  text-align: center;
  margin-bottom: 80px;
  width: 90%;
}
@media screen and (width <= 768px) {
  .p-about-top {
    font-size: clamp(12px, 4.8vw, 24px);
  }
}
@media screen and (width <= 36rem) {
  .p-about-top {
    margin-bottom: 40px;
  }
}
@media screen and (width > 768px) {
  .p-about-top .rsm {
    display: none;
  }
}
.p-about-greeting__inner {
  background-color: #ffffff;
  border-radius: 21px;
  max-width: 1360px;
  margin-inline: auto;
}
.p-about-greeting__wrap {
  padding: 37px 60px 60px 60px;
  display: grid;
  grid-template-areas: "title image" "text image" "career career";
  grid-template-columns: 1fr auto;
  row-gap: 54px;
  -webkit-column-gap: clamp(30px, 6vw, 90px);
     -moz-column-gap: clamp(30px, 6vw, 90px);
          column-gap: clamp(30px, 6vw, 90px);
}
@media screen and (width <= 963px) {
  .p-about-greeting__wrap {
    grid-template-areas: "title " " image" " text" " career";
    grid-template-columns: unset;
  }
}
@media screen and (width <= 36rem) {
  .p-about-greeting__wrap {
    padding: 27px 20px 40px 20px;
    row-gap: 30px;
  }
}
.p-about-greeting .c-titles__wrap-title {
  grid-area: title;
}
.p-about-greeting__text {
  grid-area: text;
  line-height: 230%;
}
@media screen and (width <= 36rem) {
  .p-about-greeting__text {
    line-height: 200%;
  }
}
.p-about-greeting__career {
  grid-area: career;
  border-top: 1px dashed #8d8d8d;
  padding-top: 54px;
}
@media screen and (width <= 36rem) {
  .p-about-greeting__career {
    padding-top: 30px;
  }
}
.p-about-greeting__image {
  grid-area: image;
  max-width: 324px;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-inline: auto;
  aspect-ratio: 384/425;
}
.p-about-greeting__image img {
  border-bottom: 1px solid white;
  border-left: 1px solid white;
  border-radius: 13px;
}
@media screen and (width <= 963px) {
  .p-about-greeting__image {
    aspect-ratio: unset;
  }
}
@media screen and (width <= 768px) {
  .p-about-greeting__image {
    aspect-ratio: 1;
    -o-object-position: top;
       object-position: top;
  }
  .p-about-greeting__image img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 13px;
  }
}
.p-about-greeting-profile {
  position: absolute;
  background-color: #ffffff;
  border-radius: 0 10px 0 0;
  padding-top: 11px;
  padding-left: 8px;
  bottom: -1px;
  left: -1px;
  max-width: 230px;
  width: 100%;
}
.p-about-greeting-profile__title {
  font-weight: 500;
  line-height: 175%;
}
.p-about-greeting-profile__name {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 500;
  line-height: 175%;
}
.p-about-greeting-profile__en {
  font-family: "Onest", sans-serif;
  font-weight: 500;
  line-height: 142%;
  color: #8d8d8d;
}
.p-about-member__wrap {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 1fr;
  -webkit-column-gap: 29px;
     -moz-column-gap: 29px;
          column-gap: 29px;
  row-gap: 22px;
}
@media screen and (width <= 768px) {
  .p-about-member__wrap {
    justify-items: center;
  }
}
@media screen and (width <= 36rem) {
  .p-about-member__wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
.p-about-member__box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px 29px 22px;
  max-width: 366.8px;
}
@media screen and (width <= 36rem) {
  .p-about-member__box {
    max-width: unset;
    padding: 20px 20px 20px;
  }
}
.p-about-member__image {
  max-width: 375px;
  width: 100%;
  position: relative;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-inline: auto;
  aspect-ratio: 1;
  border-radius: 13px;
}
.p-about-member__image img {
  border-radius: 13px;
  border-bottom: 1px solid white;
  border-left: 1px solid white;
}
.p-about-member-profile {
  position: absolute;
  background-color: #ffffff;
  border-radius: 0 10px 0 0;
  padding-top: 11px;
  padding-left: 8px;
  bottom: -1px;
  left: 0;
  max-width: 230px;
  width: 100%;
}
@media screen and (width <= 36rem) {
  .p-about-member-profile {
    max-width: 175px;
  }
}
.p-about-member-profile__title {
  font-weight: 500;
  line-height: 142%;
}
.p-about-member-profile__name {
  margin-top: 5px;
  font-size: 24px;
  font-weight: 500;
  line-height: 142%;
  letter-spacing: 4.8px;
}
@media screen and (width <= 36rem) {
  .p-about-member-profile__name {
    font-size: 20px;
  }
}
.p-about-member-profile__en {
  font-family: "Onest", sans-serif;
  font-weight: 500;
  line-height: 142%;
  color: #8d8d8d;
}
.p-about-member__text {
  margin-top: 32px;
}
.p-about-member__text::before {
  content: "";
  margin-bottom: 29px;
  border-top: 1px dashed #8d8d8d;
  display: inline-block;
  width: 100%;
}
@media screen and (width <= 768px) {
  .p-about-member__text {
    margin-top: 20px;
  }
  .p-about-member__text::before {
    margin-bottom: 16px;
  }
}
.p-about-outline {
  position: relative;
  overflow-x: clip;
}
.p-about-outline::before {
  content: "";
  position: absolute;
  top: -140px;
  right: 0;
  background-image: url(../images/img_back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 2400/836;
  z-index: -1;
}
@media screen and (width <= 1280px) {
  .p-about-outline::before {
    top: -3em;
  }
}
.p-about-outline__wrap {
  margin-top: 108px;
}
@media screen and (width <= 768px) {
  .p-about-outline__wrap {
    margin-top: 50px;
  }
}
.p-about-outline dl {
  border-bottom: 1px solid #8d8d8d;
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-bottom: 40px;
}
.p-about-outline dl:last-of-type {
  margin-bottom: 0;
}
.p-about-outline dl::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 3px;
  width: 37px;
  background-color: #02060f;
}
@media screen and (width <= 768px) {
  .p-about-outline dl {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    grid-template-columns: 100px 1fr;
    margin-bottom: 30px;
  }
}
.p-about-outline dl dt {
  font-weight: 500;
  line-height: 142%;
}
.p-about-outline dl dd {
  margin-bottom: 15px;
}
.p-about-client__wrap {
  margin-top: 95px;
  background-color: #ffffff;
  border-radius: 11px;
  padding-block: 43px;
  padding-inline: clamp(20px, 6.6666666667vw, 100px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  row-gap: 40px;
  -webkit-column-gap: clamp(30px, 3vw, 45px);
     -moz-column-gap: clamp(30px, 3vw, 45px);
          column-gap: clamp(30px, 3vw, 45px);
  grid-auto-rows: 1fr;
  justify-items: center;
  overflow: hidden;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}
@media screen and (width <= 768px) {
  .p-about-client__wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (width <= 36rem) {
  .p-about-client__wrap {
    margin-top: 45px;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 20px;
    padding-block: 20px;
    padding-inline: 15px;
  }
}
.p-about-client__box {
  max-width: 320px;
  width: 100%;
  height: 110px;
  border-radius: 13px;
  background-color: #ffffff;
}
@media screen and (width <= 36rem) {
  .p-about-client__box {
    height: 60px;
  }
}
.p-about-client__box img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.p-about-client__box.is-hidden-sp {
  display: none;
  opacity: 0;
}
.p-about-client__box.is-show {
  display: block;
  -webkit-animation: fadeIn 0.5s ease 0.2s both;
          animation: fadeIn 0.5s ease 0.2s both;
}
.p-about-client__box.is-hiding {
  -webkit-animation: fadeOut 0.3s ease forwards;
          animation: fadeOut 0.3s ease forwards;
}
@media (min-width: 1242px) {
  .p-about-client__box.is-hidden-sp {
    display: block;
    opacity: 1;
  }
  .p-about-client__box.is-hidden-pc {
    display: none;
    opacity: 0;
  }
}
.p-about-client__more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin: 40px auto 0;
  padding: 14px 22.5px 14px 35px;
  border: 1.5px solid #02060f;
  border-radius: 100px;
  background-color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  max-width: 251px;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #02060f;
}
.p-about-client__more-label {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-about-client__more-label .label-open,
.p-about-client__more-label .label-close {
  font-size: 16px;
  font-weight: 500;
  color: #02060f;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.p-about-client__more-label .label-close {
  position: absolute;
  left: 0;
  opacity: 0;
}
.p-about-client__more.is-open .label-open {
  opacity: 0;
}
.p-about-client__more.is-open .label-close {
  opacity: 1;
}
.p-about-client__more.is-open .icon-open {
  opacity: 0;
}
.p-about-client__more.is-open .icon-close {
  opacity: 1;
}
.p-about-client__more-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1.2em;
  height: 1.2em;
}
.p-about-client__more-icon .icon-open,
.p-about-client__more-icon .icon-close {
  position: absolute;
  line-height: 1;
  font-size: 17px;
  font-weight: 100;
  color: #02060f;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media screen and (width > 963px) {
  .p-about-client__more-icon .icon-open,
  .p-about-client__more-icon .icon-close {
    font-size: 23px;
  }
}
.p-about-client__more-icon .icon-close {
  opacity: 0;
}
.p-about-client__more.is-open .icon-open {
  opacity: 0;
}
.p-about-client__more.is-open .icon-close {
  opacity: 1;
}
.p-about-client__more.is-hidden {
  display: none;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
.p-about-history__inner {
  max-width: 1480px;
  width: 95%;
  margin-inline: unset;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  overflow-x: clip;
}
@media screen and (width > 1600px) {
  .p-about-history__inner {
    max-width: 1650px;
  }
}
@media screen and (width > 1900px) {
  .p-about-history__inner {
    margin-inline: auto;
  }
}
.p-about-history__wrap {
  margin-top: 60px;
  position: relative;
}
.p-about-history__timeline {
  position: relative;
}
.p-about-history__line {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #02060f;
  z-index: 0;
  -webkit-clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(10px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-about-history__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  will-change: transform;
}
.p-about-history__item {
  padding-left: 20px;
  width: 33.3333333333%;
  padding-right: 40px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (width <= 768px) {
  .p-about-history__item {
    width: 50%;
  }
}
@media screen and (width <= 36rem) {
  .p-about-history__item {
    width: 100%;
  }
}
.p-about-history__dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #02060f;
  background-color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 73px;
  position: relative;
}
.p-about-history__dot::after {
  content: "";
  height: 100px;
  width: 1px;
  background-color: #02060f;
  position: absolute;
  bottom: -100px;
  z-index: -1;
  left: 50%;
  translate: -50% 0;
}
.p-about-history__content {
  padding-left: 30px;
}
.p-about-history__year {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
.p-about-history__year > span {
  font-size: 20px;
  font-weight: 500;
  margin-left: 5px;
}
@media screen and (width <= 1280px) {
  .p-about-history__year {
    font-size: 35px;
  }
  .p-about-history__year span {
    margin-left: 4px;
  }
}
@media screen and (width <= 768px) {
  .p-about-history__year {
    font-size: 30px;
  }
  .p-about-history__year span {
    margin-left: 3px;
  }
}
.p-about-history__text {
  font-size: 20px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
@media screen and (width <= 1280px) {
  .p-about-history__text {
    font-size: 18px;
  }
}
@media screen and (width <= 768px) {
  .p-about-history__text {
    font-size: 16px;
  }
}
.p-about-history__bottom-area {
  display: grid;
  grid-template-columns: 1fr auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 60px;
  -webkit-column-gap: 100px;
     -moz-column-gap: 100px;
          column-gap: 100px;
  max-width: 1360px;
  width: 90%;
}
.p-about-history__scrollbar {
  width: 100%;
  height: 1px;
  background-color: #8d8d8d;
  position: relative;
}
.p-about-history__scrollbar-thumb {
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  background-color: #02060f;
  -webkit-transition: width 0.4s ease, left 0.4s ease;
  transition: width 0.4s ease, left 0.4s ease;
}
.p-about-history__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.p-about-history__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #02060f;
  background: transparent;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 20px;
  padding: unset;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
@media screen and (width > 963px) {
  .p-about-history__btn:hover {
    background: #02060f;
    color: #ffffff;
  }
}
.p-about-history__btn:disabled {
  opacity: 0.3;
  cursor: default;
}
.p-about-history__btn:disabled:hover {
  background: transparent;
  color: #02060f;
}
.p-about-history__btn span {
  font-size: 35px;
  font-weight: 100;
  translate: 0 -4px;
  display: block;
  color: #02060f;
}

.p-service-top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  line-height: 175%;
  text-align: center;
  margin-bottom: 80px;
  width: 90%;
}
@media screen and (width <= 768px) {
  .p-service-top {
    font-size: clamp(12px, 4.8vw, 24px);
  }
}
@media screen and (width <= 36rem) {
  .p-service-top {
    margin-bottom: 40px;
  }
}
@media screen and (width > 768px) {
  .p-service-top .rsm {
    display: none;
  }
}
.p-service-variety {
  overflow-x: clip;
}
.p-service-variety__group {
  display: grid;
  row-gap: 80px;
}
@media screen and (width <= 36rem) {
  .p-service-variety__group {
    row-gap: 40px;
  }
}
.p-service-variety__content {
  display: grid;
  grid-template-areas: "img title-en" "img title" "img purpose" "img text";
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: clamp(20px, 3.8666666667vw, 58px);
     -moz-column-gap: clamp(20px, 3.8666666667vw, 58px);
          column-gap: clamp(20px, 3.8666666667vw, 58px);
  grid-template-columns: 50%;
  position: relative;
}
.p-service-variety__content:nth-child(even) {
  grid-template-areas: "title-en img" "title img" "purpose img" "text img";
}
@media screen and (width <= 963px) {
  .p-service-variety__content {
    grid-template-columns: unset;
    grid-template-areas: "title-en " "title" "img" "purpose" "text";
  }
  .p-service-variety__content:nth-child(even) {
    grid-template-areas: "title-en " "title" "img" "purpose" "text";
  }
}
.p-service-variety__pc-image {
  display: none;
}
@media screen and (width > 963px) {
  .p-service-variety__pc-image {
    display: block;
    grid-area: img;
    width: 100%;
    height: 100%;
  }
  .p-service-variety__pc-image img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    object-fit: cover;
    border-radius: 13px;
  }
}
.p-service-variety .p-service-variety__pc-image.even {
  display: none;
}
@media screen and (width > 963px) {
  .p-service-variety .p-service-variety__pc-image.even {
    display: block;
    grid-area: img;
    width: 100%;
    height: 100%;
  }
  .p-service-variety .p-service-variety__pc-image.even img {
    width: 100%;
    height: 100%;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
    object-fit: cover;
    border-radius: 13px;
  }
}
.p-service-variety .js-service-image-slide {
  opacity: 0;
  -webkit-transform: translateX(-40px);
          transform: translateX(-40px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}
.p-service-variety .js-service-image-slide.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-service-variety .p-service-variety__content:nth-child(even) .js-service-image-slide {
  -webkit-transform: translateX(40px);
          transform: translateX(40px);
}
.p-service-variety .p-service-variety__content:nth-child(even) .js-service-image-slide.is-visible {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.p-service-variety__image {
  grid-area: img;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: clip;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: -1;
}
@media screen and (width > 963px) {
  .p-service-variety__image {
    display: none;
  }
}
@media screen and (width <= 963px) {
  .p-service-variety__image {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-service-variety__image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  scale: 1.5;
  translate: -85px;
}
.p-service-variety__image .even {
  translate: 85px;
}
@media screen and (width <= 963px) {
  .p-service-variety__image img {
    translate: unset;
    scale: 1;
  }
  .p-service-variety__image .even {
    translate: unset;
  }
}
.p-service-variety__title-en {
  grid-area: title-en;
  color: #8d8d8d;
  font-family: "Didact Gothic", sans-serif;
  font-size: 20px;
  line-height: 127%; /* 25.4px */
  letter-spacing: -0.4px;
  margin-bottom: 5px;
}
@media screen and (width <= 36rem) {
  .p-service-variety__title-en {
    font-size: 16px;
  }
}
.p-service-variety__title {
  grid-area: title;
  font-size: 30px;
  font-weight: 500;
  line-height: 142%; /* 42.6px */
  margin-bottom: 12px;
}
@media screen and (width <= 36rem) {
  .p-service-variety__title {
    font-size: 24px;
  }
}
.p-service-variety__purpose {
  grid-area: purpose;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
}
@media screen and (width <= 963px) {
  .p-service-variety__purpose {
    margin-top: 30px;
  }
}
@media screen and (width <= 36rem) {
  .p-service-variety__purpose {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    margin-top: 20px;
  }
}
.p-service-variety__purpose .title {
  width: 100%;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
          clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
  background-color: #02060f;
  color: #ffffff;
  max-width: 77px;
  font-weight: 500;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 18px;
  translate: 0 4px;
}
.p-service-variety__purpose .text {
  font-weight: 400;
}
.p-service-variety__detail {
  grid-area: text;
  margin-top: 26px;
  background-color: #ffffff;
  padding: 24px 16px 24px 26px;
  border-radius: 7px;
  max-width: 675px;
  width: 100%;
}
@media screen and (width <= 963px) {
  .p-service-variety__detail {
    padding: 24px 16px;
    max-width: 100%;
  }
}
@media screen and (width <= 768px) {
  .p-service-variety__detail {
    padding: 20px 12px;
  }
}
.p-service-variety__detail li {
  line-height: 230%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
}
.p-service-variety__detail li::before {
  display: block;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 8px;
  height: 4px;
  content: "";
  -webkit-clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
          clip-path: polygon(25% 0, 100% 0, 75% 100%, 0 100%);
  background-color: #02060f;
  translate: 0 -3px;
}

.p-contact__inner {
  max-width: 1200px;
}
.p-contact__count {
  max-width: 663px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 60px;
}
.p-contact__text {
  text-align: center;
  line-height: 175%;
  margin-bottom: 72px;
}
.p-contact__contents {
  max-width: 792px;
  margin-inline: auto;
}
.p-contact .l-form__name {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-weight: 500;
}
.p-contact .l-form__name::before {
  font-size: 16px;
  line-height: normal;
  padding: 0px 9px 0px 9px;
  font-weight: 400;
  border-radius: 15.5px;
}
.p-contact .l-form__inputs {
  margin-top: 16px;
}
.p-contact .l-form__inputs input {
  border: 1px solid #ffffff;
}
.p-contact .l-form__inputs textarea {
  border: 1px solid #ffffff;
}
.p-contact .l-form__checkbox.casual-check {
  min-height: 20px;
  margin-top: -16px;
}
.p-contact .l-form__select {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.p-contact .l-form__select:hover {
  background-color: #8d8d8d;
}
.p-contact .l-form__select option:hover {
  background-color: #8d8d8d;
}
.p-contact .l-form__select-box {
  border-radius: 4px;
}
.p-contact .l-form__select-box::picker-icon {
  color: #8d8d8d;
}
.p-contact .l-form__select-box option:first-of-type {
  display: none;
}
.p-contact .l-form__textarea {
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.p-contact .l-form__textarea:hover {
  background-color: #8d8d8d;
}
.p-contact .l-form__radio {
  min-height: 20px;
}
.p-contact .l-form__submit {
  margin-top: 40px;
}
.p-contact .l-form__submit .c-btn-default {
  font-size: 15px;
  padding-inline: 20px;
  padding-top: 14px;
  padding-bottom: 15px;
  max-width: 384px;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-contact .l-form__checkbox-label::after {
  width: 0.5em;
  height: 0.22em;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border-left: 0.3em #ffffff solid;
  border-bottom: 0.3em #ffffff solid;
  -webkit-transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg);
          transform: translate(-50%, calc(-50% - 1px)) rotate(-45deg);
}
.p-contact .l-form__checkbox-label::before {
  width: 1em;
  aspect-ratio: 1/1;
  border: 1px #1f0a00 solid;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #ffffff;
}
.p-contact .l-form__accept-label a {
  text-decoration: underline;
}
.p-contact .l-form__accept .l-form__error {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-contact .l-form .l-form__radio-item:checked + .l-form__radio-label::after {
  width: 1.1em;
  height: 0.5em;
  background-color: transparent;
  border-left: 0.2em #b1b6bd solid;
  border-bottom: 0.2em #b1b6bd solid;
  -webkit-transform: translate(-36%, -100%) rotate(-45deg);
          transform: translate(-36%, -100%) rotate(-45deg);
  border-radius: unset;
}
.p-contact .l-form__radio {
  gap: 10em;
}
@media screen and (width <= 768px) {
  .p-contact .l-form__radio {
    gap: 1em;
  }
}
.p-contact .l-form__radio-label::before {
  content: "";
  border-radius: unset;
}
.p-contact .l-form__file-title {
  width: 100%;
  background: white;
  border-radius: 4px;
  text-overflow: ellipsis;
}
.p-contact .l-form__file-remove {
  border: unset;
  color: #ffffff;
  cursor: pointer;
  border-radius: 50%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: unset;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: unset;
  aspect-ratio: 1;
}
.p-contact .l-form__file-remove::before {
  content: "";
  background-image: url(../images/icon_back.png);
  width: 33px;
  height: 33px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 5px;
}
@media screen and (width <= 36rem) {
  .p-contact .l-form__file-remove::before {
    width: 26px;
    height: 26px;
  }
}
.p-contact .l-form__file-add {
  border: 1px #02060f solid;
  border-radius: 29px;
  width: 92px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #02060f;
  cursor: pointer;
  font-weight: 200;
  font-size: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
}
.p-contact .l-form__file-add span {
  height: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 33px;
  translate: 0 -1px;
}
@media screen and (width > 963px) {
  .p-contact .l-form__file-add {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-contact .l-form__file-add:hover {
    background-color: #8d8d8d;
  }
}
.p-contact .l-form__file-row {
  background-color: #ffffff;
  border-radius: 0 4px 4px 0;
}
.p-contact .l-form__file-label {
  display: inline-block;
  padding: 1em;
  color: #ffffff;
  background-color: #02060f;
  border: 1px #02060f solid;
  cursor: pointer;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-contact .l-form--upload .l-form__title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.p-contact .l-form--upload .l-form__title::after {
  content: "※２MB以上のファイルは添付できません。";
  color: #9f9f9f;
  font-weight: 500;
}
.p-contact .l-form__input[type=text],
.p-contact .l-form__input[type=number] {
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.p-contact .l-form__input[type=text]:hover,
.p-contact .l-form__input[type=number]:hover {
  background-color: #8d8d8d;
}
.p-contact-confirm__inner {
  max-width: 1200px;
}
.p-contact-confirm .l-form__title {
  color: #02060f;
  line-height: normal;
  margin-bottom: 16px;
}
.p-contact-confirm .l-form__label {
  line-height: normal;
  font-weight: 500;
}
@media screen and (width <= 36rem) {
  .p-contact-confirm .l-form__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-contact-confirm .l-form__wrap .c-btn-default {
  font-size: 15px;
  padding-inline: 20px;
  padding-top: 14px;
  padding-bottom: 15px;
  max-width: 384px;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-contact-confirm .l-form__wrap .c-btn-default--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.p-contact-confirm .l-form__wrap .c-btn-default--reverse span::after {
  background-image: url(../images/icon/arrow-white-reverse.svg);
}
.p-contact-confirm .l-form__wrap .c-btn-default--reverse:hover span::after {
  background-image: url(../images/icon/arrow-orange-reverse.svg);
}
.p-contact-complete__title {
  font-size: 40px;
  text-align: center;
  font-weight: 500;
  letter-spacing: 2.8px;
  margin-bottom: 80px;
}
@media screen and (width <= 768px) {
  .p-contact-complete__title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
.p-contact-complete__text {
  max-width: 460px;
  line-height: 180%;
  letter-spacing: 1.44px;
  margin-inline: auto;
}
.p-contact-complete-flow {
  margin-top: 80px;
}
@media screen and (width <= 768px) {
  .p-contact-complete-flow {
    margin-top: 40px;
  }
}
.p-contact-complete-flow__wrap {
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  position: relative;
  margin-top: 33px;
}
@media screen and (width <= 963px) {
  .p-contact-complete-flow__wrap {
    grid-template-columns: 1fr;
    position: relative;
    margin-top: 56px;
    justify-items: start;
    row-gap: 25px;
    padding-left: 30px;
  }
}
.p-contact-complete-flow__wrap::before {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(30.44%, #f5cfbd), color-stop(100.59%, #d16d3b));
  background: -webkit-linear-gradient(left, #f5cfbd 30.44%, #d16d3b 100.59%);
  background: linear-gradient(90deg, #f5cfbd 30.44%, #d16d3b 100.59%);
  top: 53px;
  left: 0;
}
@media screen and (width <= 963px) {
  .p-contact-complete-flow__wrap::before {
    position: absolute;
    top: -5px;
    left: 0;
    height: 235px;
    width: 5px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(30.44%, #f5cfbd), color-stop(100.59%, #d16d3b));
    background: -webkit-linear-gradient(top, #f5cfbd 30.44%, #d16d3b 100.59%);
    background: linear-gradient(180deg, #f5cfbd 30.44%, #d16d3b 100.59%);
  }
}
.p-contact-complete-flow__box {
  border-right: 1px solid rgba(31, 10, 0, 0.3);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 963px) {
  .p-contact-complete-flow__box {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-right: unset;
  }
}
.p-contact-complete-flow__box:last-of-type {
  border-right: unset;
}
.p-contact-complete-flow__period {
  font-size: 18px;
  letter-spacing: 1.62px;
  text-align: center;
}
@media screen and (width <= 963px) {
  .p-contact-complete-flow__period {
    text-align: left;
  }
}
.p-contact-complete-flow__period span {
  font-size: 12px;
  line-height: 180%;
  letter-spacing: 1.08px;
}
.p-contact-complete-flow-bottom {
  margin-top: 52px;
}
.p-contact-complete-flow-bottom__text {
  line-height: 180%;
  letter-spacing: 1.44px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.p-contact-complete__btn {
  margin-top: 50px;
  margin-inline: auto;
}

.p-front-fv {
  min-height: 550px;
  padding-top: 57px;
  height: calc(100vh - 105px);
  max-height: 1200px;
  position: relative;
  overflow-x: clip;
  margin-bottom: var(--contents-spacer);
}
@media screen and (width <= 1320px) {
  .p-front-fv {
    margin-bottom: calc(var(--contents-spacer) + 40px);
    min-height: 520px;
  }
}
@media screen and (width <= 36rem) {
  .p-front-fv {
    height: 100%;
    padding-top: 26px;
    margin-bottom: 0px;
  }
}
.p-front-fv__inner {
  max-width: 1600px;
  width: 100%;
  margin-inline: auto;
}
.p-front-fv__movie {
  background: transparent;
  mix-blend-mode: normal;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: -1;
}
@media screen and (width <= 425px) {
  .p-front-fv__movie {
    width: 155%;
    translate: -50% calc(-50% - 20px);
  }
}
.p-front-fv__movement {
  position: absolute;
  left: 50%;
  translate: -50%;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow-x: clip;
}
.p-front-fv__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.p-front-fv__logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 494px;
  height: 450px;
  opacity: 0;
}
.p-front-fv__logo-wrap svg {
  position: absolute;
  top: 0;
  left: 0;
}
.p-front-fv__logo-wrap--black {
  z-index: 1;
}
.p-front-fv__logo-wrap--white {
  z-index: 3;
}
.p-front-fv-textarea {
  padding-inline: 37px;
}
@media screen and (width <= 36rem) {
  .p-front-fv-textarea {
    padding-inline: 20px;
  }
}
.p-front-fv-textarea__title {
  color: #02060f;
  font-size: clamp(40px, 4.2666666667vw, 64px);
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 84px */
  letter-spacing: -2.8px;
  margin-bottom: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (width <= 1280px) {
  .p-front-fv-textarea__title {
    margin-bottom: 20px;
  }
}
@media screen and (width <= 768px) {
  .p-front-fv-textarea__title {
    font-size: clamp(28px, 8vw, 50px);
    line-height: 120%; /* 36px */
    letter-spacing: -1.2px;
    margin-bottom: 9px;
  }
}
.p-front-fv-textarea__title .line {
  display: block;
  overflow: hidden; /* はみ出た文字を隠す */
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-animation: clipReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: clipReveal 0.8s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.p-front-fv-textarea__title .char {
  display: inline-block;
}
.p-front-fv-textarea__title .line--1 {
  -webkit-animation-delay: 0.05s;
          animation-delay: 0.05s;
}
.p-front-fv-textarea__title .line--2 {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}
@-webkit-keyframes clipReveal {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
@keyframes clipReveal {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0% 0 0);
            clip-path: inset(0 0% 0 0);
  }
}
.p-front-fv-textarea__text {
  color: #b1b6bd;
  font-family: "Onest", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 161%; /* 32.2px */
  letter-spacing: -0.4px;
}
@media screen and (width <= 768px) {
  .p-front-fv-textarea__text {
    font-size: clamp(13px, 3.7333333333vw, 18px);
    line-height: 161%; /* 22.54px */
    letter-spacing: -0.28px;
  }
}
@media screen and (width > 1080px) {
  .p-front-fv-textarea__text .rsm {
    display: none;
  }
}
.p-front-fv-knows {
  max-width: 525px;
  width: 100%;
  padding: 19px 35px 19px 22px;
  border-radius: 13px;
  border: 1px solid #02060f;
  display: block;
  background: #ffffff;
  position: absolute;
  right: 35px;
  bottom: 0px;
  display: grid;
  grid-template-areas: "title btn" "text btn";
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 16px;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
}
@media screen and (width > 963px) {
  .p-front-fv-knows:hover {
    color: #02060f;
  }
}
@media screen and (width <= 1320px) {
  .p-front-fv-knows {
    max-width: 436px;
    width: 100%;
    padding: 14px 25px 14px 20px;
    right: 20px;
    row-gap: 10px;
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
    bottom: 0px;
  }
}
@media screen and (width <= 36rem) {
  .p-front-fv-knows {
    right: 50%;
    translate: 50%;
    width: clamp(200px, 89.3333333333vw, 400px);
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    row-gap: 7px;
    padding: 13px 12px 13px 14px;
    bottom: 50px;
  }
}
.p-front-fv-knows__title {
  grid-area: title;
  color: #02060f;
  font-size: 20px;
  font-weight: 700;
  line-height: 134%; /* 26.8px */
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (width <= 36rem) {
  .p-front-fv-knows__title {
    font-size: 16px;
  }
}
.p-front-fv-knows__title > span {
  background-color: #02060f;
  color: #ffffff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 斜めカット（四角形を台形に切り抜く）*/
  -webkit-clip-path: polygon(25% 0%, 100% 0, 75% 100%, 0 100%);
          clip-path: polygon(25% 0%, 100% 0, 75% 100%, 0 100%);
}
@media screen and (width <= 36rem) {
  .p-front-fv-knows__title > span {
    width: 40px;
    height: 20px;
  }
}
.p-front-fv-knows__text {
  grid-area: text;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 142%; /* 22.72px */
}
.p-front-fv-knows__btn {
  grid-area: btn;
  rotate: 90deg;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (width <= 36rem) {
  .p-front-fv-knows__btn {
    width: 44px;
    aspect-ratio: 1;
  }
}
@media screen and (width > 963px) {
  .p-front-fv-knows:hover .p-front-fv-knows__title {
    color: #02060f;
  }
  .p-front-fv-knows:hover .p-front-fv-knows__title > span {
    color: #ffffff;
  }
  .p-front-fv-knows:hover .p-front-fv-knows__text {
    color: #02060f;
  }
  .p-front-fv-knows:hover .p-front-fv-knows__btn {
    background-color: #8d8d8d;
  }
}

.p-front-message {
  background-color: #f2f4f5;
}
@media screen and (width <= 36rem) {
  .p-front-message {
    margin-top: 40px;
  }
}
.p-front-message__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "img head" "img title" "img text" "img btn";
  -webkit-column-gap: clamp(30px, 6.75vw, 108px);
     -moz-column-gap: clamp(30px, 6.75vw, 108px);
          column-gap: clamp(30px, 6.75vw, 108px);
}
@media screen and (width <= 963px) {
  .p-front-message__inner {
    grid-template-areas: "head" "title" "img" "text" "btn";
    grid-template-columns: 1fr;
  }
}
.p-front-message__img {
  grid-area: img;
}
.p-front-message__img img {
  border-radius: 13px;
}
@media screen and (width <= 963px) {
  .p-front-message__img img {
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    border-radius: 16px;
  }
}
.p-front-message > .c-title {
  grid-area: head;
}
.p-front-message__title {
  grid-area: title;
  font-size: clamp(20px, 2.6666666667vw, 40px);
  font-style: normal;
  font-weight: 700;
  line-height: 142%; /* 56.8px */
  margin-top: 40px;
  margin-bottom: 31px;
}
@media screen and (width <= 1280px) {
  .p-front-message__title {
    margin-top: 30px;
    margin-bottom: 26px;
  }
}
@media screen and (width <= 963px) {
  .p-front-message__title {
    margin-bottom: 35px;
  }
}
@media screen and (width <= 36rem) {
  .p-front-message__title {
    font-size: 20px;
  }
}
.p-front-message__text {
  grid-area: text;
  font-size: clamp(14px, 1.3333333333vw, 20px);
  line-height: 230%; /* 46px */
  margin-bottom: 47px;
}
@media screen and (width <= 1280px) {
  .p-front-message__text {
    margin-bottom: 26px;
  }
}
@media screen and (width <= 963px) {
  .p-front-message__text {
    margin-top: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (width <= 36rem) {
  .p-front-message__text {
    font-size: 14px;
    line-height: 258%;
  }
}
.p-front-message__link {
  grid-area: btn;
}
@media screen and (width <= 963px) {
  .p-front-message__link {
    margin-inline: auto;
  }
}

.p-front-approach {
  padding-top: 85px;
  padding-bottom: 95px;
  border-radius: 24px;
  background-color: #323232;
  position: relative;
  overflow: hidden;
}
.p-front-approach__bg-logo {
  position: fixed;
  top: 328px;
  right: 0;
  width: 452px;
  aspect-ratio: 452/480;
  background-image: url("../images/img_back_logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
@media screen and (width <= 768px) {
  .p-front-approach__bg-logo {
    width: 213px;
    aspect-ratio: 213/245;
    top: 162px;
  }
}
.p-front-approach__inner {
  position: relative;
}
.p-front-approach__top-text {
  margin-top: 36px;
  max-width: 676px;
  width: 100%;
  margin-inline: auto;
  color: #ffffff;
}
.p-front-approach__wrap {
  margin-top: 120px;
  display: grid;
  grid-auto-rows: 1fr;
  row-gap: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (width <= 768px) {
  .p-front-approach__wrap {
    grid-auto-rows: unset;
    row-gap: 20px;
    margin-top: 42px;
  }
}
.p-front-approach-box {
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
  display: grid;
  grid-template-columns: clamp(300px, 33.75vw, 540px) auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 14px;
  background: #444;
  padding-top: 17px;
  padding-bottom: 26px;
  padding-left: 55px;
  padding-right: 69px;
}
.p-front-approach-box:nth-child(odd) {
  -webkit-transform: translateX(-180px);
          transform: translateX(-180px);
}
.p-front-approach-box:nth-child(even) {
  -webkit-transform: translateX(180px);
          transform: translateX(180px);
}
@media screen and (width <= 768px) {
  .p-front-approach-box {
    grid-template-columns: 1fr;
    padding-block: 24px;
    padding-inline: 15px;
    row-gap: 29px;
  }
}
.p-front-approach-box__img {
  padding-right: clamp(30px, 4.375vw, 70px);
}
.p-front-approach-box__img img {
  margin-inline: auto;
  width: 100%;
}
.p-front-approach-box__img--01 img {
  max-width: 380px;
}
.p-front-approach-box__img--02 img {
  max-width: 290px;
}
.p-front-approach-box__img--03 img {
  max-width: 417px;
}
@media screen and (width <= 768px) {
  .p-front-approach-box__img {
    padding-right: unset;
  }
}
.p-front-approach-box-area {
  border-left: 1px dashed #767676;
  padding-left: clamp(30px, 5vw, 80px);
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (width <= 768px) {
  .p-front-approach-box-area {
    padding-left: unset;
    border-left: unset;
    border-top: 1px dashed #767676;
    padding-top: 29px;
  }
}
.p-front-approach-box-area__title-en {
  color: #b1b6bd;
  font-family: "Didact Gothic", sans-serif;
  font-size: clamp(16px, 1.3333333333vw, 20px);
  line-height: 127%; /* 25.4px */
  letter-spacing: -0.4px;
}
@media screen and (width <= 36rem) {
  .p-front-approach-box-area__title-en {
    font-size: 16px;
  }
}
.p-front-approach-box-area__title-jp {
  margin-top: 1px;
  color: #ffffff;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 500;
  line-height: 142%; /* 42.6px */
}
@media screen and (width <= 36rem) {
  .p-front-approach-box-area__title-jp {
    font-size: 20px;
    margin-top: 8px;
  }
}
.p-front-approach-box-area__text {
  color: #ffffff;
  margin-top: 25px;
}
@media screen and (width <= 36rem) {
  .p-front-approach-box-area__text {
    margin-top: 20px;
  }
}
.p-front-approach-box.is-visible {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

@media screen and (width <= 36rem) {
  .p-front-service .c-titles__wrap-title {
    margin-inline: unset;
  }
}
.p-front-service__wrap {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(410px, 1fr));
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
  row-gap: 60px;
  justify-items: center;
}
@media screen and (width <= 36rem) {
  .p-front-service__wrap {
    grid-template-columns: 1fr;
    margin-top: 40px;
    row-gap: 60px;
  }
}
.p-front-service-box {
  max-width: 640px;
  width: 100%;
}
.p-front-service-box__img {
  overflow: hidden;
  border-radius: 13px;
}
.p-front-service-box__img img {
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.p-front-service-box-area {
  margin-top: 22px;
  display: grid;
  grid-template-areas: "title btn" "text btn";
  grid-template-columns: 1fr auto;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (width <= 36rem) {
  .p-front-service-box-area {
    margin-top: 20px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-front-service-box-area__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 142%;
  grid-area: title;
}
@media screen and (width <= 36rem) {
  .p-front-service-box-area__title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.p-front-service-box-area__text {
  font-weight: 400;
  grid-area: text;
  font-size: 16px;
}
.p-front-service-box-area__btn {
  grid-area: btn;
}
.p-front-service-box-area__btn::after {
  content: "";
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
  background-image: url(../images/icon_btn_white.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 55px;
  aspect-ratio: 1;
}
@media screen and (width <= 36rem) {
  .p-front-service-box-area__btn {
    -webkit-margin-start: auto;
            margin-inline-start: auto;
  }
  .p-front-service-box-area__btn::after {
    width: 51px;
  }
}
@media screen and (width > 963px) {
  .p-front-service-box:hover .p-front-service-box__img img {
    scale: 1.2;
  }
  .p-front-service-box:hover .p-front-service-box-area__btn::after {
    content: "";
    display: block;
    background-image: url(../images/icon_btn_gray.png);
  }
}
.p-front-service__link {
  margin-inline: auto;
  margin-top: 60px;
}
@media screen and (width <= 36rem) {
  .p-front-service__link {
    margin-top: 57px;
  }
}

.p-forbidden__text {
  line-height: 180%;
  letter-spacing: 1.44px;
  max-width: 620px;
  margin-inline: auto;
}
.p-forbidden .c-btn-white {
  margin-inline: auto;
  margin-top: 60px;
  max-width: 230px;
}

.p-news-details {
  grid-area: detail;
}
.p-news-details__box {
  display: block;
  padding-block: 10px;
  border-bottom: 1px solid #ddd;
}
.p-news-details__box:first-child {
  border-top: 1px solid #ddd;
}
.p-news-details__option {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 10px;
}
.p-news-details__date {
  font-size: 14px;
  line-height: 225%;
  color: #999;
}
.p-news-details__category {
  color: #c02c6e;
  font-size: 13px;
  padding: 4px 10px;
  background-color: #eee;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-news-details__title {
  margin-top: 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 210%;
  padding-right: 57px;
  position: relative;
}
@media screen and (width <= 768px) {
  .p-news-details__title {
    font-size: 14px;
    padding-right: 50px;
  }
}
.p-news-details__new {
  font-size: 16px;
  line-height: 196%;
  color: #c02c6e;
  position: absolute;
  right: 13px;
  top: 0;
}
@media screen and (width <= 768px) {
  .p-news-details__new {
    font-size: 14px;
    right: 10px;
  }
}
.p-news-categories {
  margin-bottom: 50px;
}
@media screen and (width <= 768px) {
  .p-news-categories {
    margin-bottom: 35px;
  }
}
.p-news-categories__area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.p-news-categories__category {
  color: #c02c6e;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 25px;
  min-width: 120px;
  text-align: center;
}
.p-news-categories__category.is-active {
  background-color: #c02c6e;
  color: #ffffff;
}
@media screen and (width <= 768px) {
  .p-news-categories__category {
    font-size: 16px;
    padding: 6px 12px;
  }
}
@media screen and (width > 768px) {
  .p-news-categories__category {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-news-categories__category:hover {
    background-color: #c02c6e;
  }
  .p-news-categories__category:hover a {
    color: #ffffff;
  }
}
.p-news__contents {
  grid-area: contents;
}
.p-news-page {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}
.p-news-page .page-numbers {
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: normal;
  color: #c02c6e;
  border: 1px solid #c02c6e;
  padding: 10px 13px 12px;
}
.p-news-page .page-numbers.current {
  color: #ffffff;
  background-color: #c02c6e;
}
.p-news-page .page-numbers.dots {
  border: unset;
  color: #02060f;
  padding-inline: unset;
}

.p-overview__contents {
  grid-area: contents;
}
.p-overview-box {
  margin-bottom: var(--contents-spacer);
}
.p-overview-box:last-child {
  margin-bottom: 0;
}
.p-overview-box__title {
  margin-bottom: 40px;
}
@media screen and (width <= 768px) {
  .p-overview-box__title {
    margin-bottom: 30px;
  }
}
.p-overview-box__image img {
  max-width: 380px;
  width: 100%;
  aspect-ratio: 380/285;
  margin-inline: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-overview-box__text {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (width <= 768px) {
  .p-overview-box__text {
    font-size: 14px;
    margin-top: 20px;
  }
}
.p-overview-box__btn {
  margin-top: 30px;
  margin-inline: auto;
}
.p-overview-box__table {
  display: grid;
  grid-template-columns: 150px 1fr;
}
@media screen and (width <= 768px) {
  .p-overview-box__table {
    grid-template-columns: 80px 1fr;
  }
}
.p-overview-box__table dt {
  background-color: #c02c6e;
  color: #eee;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}
.p-overview-box__table dt:last-of-type {
  border-bottom: unset;
}
@media screen and (width <= 768px) {
  .p-overview-box__table dt {
    font-size: 14px;
    padding: 15px 10px;
  }
}
.p-overview-box__table dd {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%;
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
  background-color: #f9f8f8;
}
.p-overview-box__table dd:last-of-type {
  border-bottom: unset;
}
@media screen and (width <= 768px) {
  .p-overview-box__table dd {
    font-size: 14px;
    padding: 15px 10px;
  }
}
.p-overview-flow__box {
  display: grid;
  grid-template-areas: "num title" ". text";
  grid-template-columns: 40px 1fr;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  padding-bottom: 25px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 25px;
}
.p-overview-flow__box:last-of-type {
  padding-bottom: unset;
  margin-bottom: unset;
  border-bottom: unset;
}
@media screen and (width <= 768px) {
  .p-overview-flow__box {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    grid-template-columns: 35px 1fr;
  }
}
.p-overview-flow__num {
  grid-area: num;
  font-size: 24px;
  font-weight: 500;
  line-height: 100%;
  background-color: #c02c6e;
  padding: 7px 6px 9px;
  color: #ffffff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (width <= 768px) {
  .p-overview-flow__num {
    font-size: 20px;
  }
}
.p-overview-flow__title {
  grid-area: title;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (width <= 768px) {
  .p-overview-flow__title {
    font-size: 18px;
  }
}
.p-overview-flow__text {
  grid-area: text;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
}
@media screen and (width <= 768px) {
  .p-overview-flow__text {
    font-size: 16px;
  }
}

.p-privacy__btns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 26px;
  margin-bottom: 60px;
}
@media screen and (width <= 768px) {
  .p-privacy__btns {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    margin-bottom: 35px;
    row-gap: 20px;
  }
}
.p-privacy__btns a {
  cursor: pointer;
  background-color: #ffffff;
  border: 1px solid #02060f;
  font-weight: 500;
  color: #02060f;
  line-height: 100%;
  padding-top: 16px;
  padding-bottom: 15px;
  padding-left: 15px;
  padding-right: 19px;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 29px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  width: 100%;
}
@media screen and (width > 963px) {
  .p-privacy__btns a {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .p-privacy__btns a:hover {
    background-color: #8d8d8d;
    color: #02060f;
  }
}
@media screen and (width <= 36rem) {
  .p-privacy__btns a {
    padding-top: 12px;
    padding-bottom: 11px;
    padding-left: 12px;
    padding-right: 16px;
  }
}
.p-privacy__wrap {
  padding-inline: 107px;
  padding-block: 80px;
  border-radius: 8px;
  background-color: #ffffff;
  margin-bottom: 80px;
}
@media screen and (width <= 768px) {
  .p-privacy__wrap {
    padding-block: 40px;
    padding-inline: clamp(16px, 6.9333333333vw, 45px);
    margin-bottom: 40px;
  }
}
.p-privacy__section-title {
  font-size: clamp(28px, 3.0666666667vw, 46px);
  margin-bottom: 60px;
}
@media screen and (width <= 768px) {
  .p-privacy__section-title {
    margin-bottom: 35px;
  }
}
.p-privacy__section-title::before {
  width: clamp(22px, 2.1333333333vw, 32px);
  height: clamp(18px, 1.8666666667vw, 28px);
}
.p-privacy__top-text {
  margin-block: 60px;
}
@media screen and (width <= 768px) {
  .p-privacy__top-text {
    margin-block: 40px;
  }
}
.p-privacy__box {
  border-bottom: 1px solid #02060f;
  margin-bottom: 32px;
}
@media screen and (width <= 768px) {
  .p-privacy__box {
    margin-bottom: 20px;
  }
}
.p-privacy__box:last-of-type {
  margin-bottom: 0;
}
.p-privacy__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.p-privacy__text {
  line-height: 180%;
  letter-spacing: 1.44px;
  margin-bottom: 32px;
}
@media screen and (width <= 768px) {
  .p-privacy__text {
    margin-bottom: 20px;
  }
}
.p-privacy .c-btn-white {
  margin-inline: auto;
  max-width: 230px;
  padding-block: 20px;
}

.l-top-btn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #323232;
  color: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 100;
}
@media screen and (width <= 768px) {
  .l-top-btn {
    width: 74px;
    height: 74px;
    font-size: 14px;
  }
}

/* 表示状態 */
.l-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 矢印 */
.l-top-btn span::before {
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media screen and (width <= 768px) {
  .l-top-btn span::before {
    width: 10px;
    height: 10px;
  }
}

.p-single__contents {
  grid-area: contents;
}
.p-single-text {
  margin-top: 20px;
  margin-bottom: 60px;
  font-weight: 500;
}
.p-single-text:last-child {
  margin-bottom: 0;
}
.p-single__box {
  border-top: unset !important;
  padding-bottom: 30px;
  margin-bottom: 50px;
}
@media screen and (width <= 768px) {
  .p-single__box {
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.p-single__title {
  font-size: 20px;
  line-height: 180%;
}
@media screen and (width <= 768px) {
  .p-single__title {
    font-size: 18px;
  }
}
.p-single-back {
  margin-inline: auto;
  margin-top: 50px;
}

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

@media screen and (width > 36rem) {
  .u-dn-md-rsm {
    display: none;
  }
}

@media screen and (width <= 768px) {
  .u-dn-md-max {
    display: none;
  }
}

.u-cf::after {
  display: block;
  clear: both;
  content: "";
}/*# sourceMappingURL=style.css.map */