@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@layer foundation, vendor, layout, component, project, page, utilities;
:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --serif: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  --en-sans: "", sans-serif;
  --en-serif: "Roboto", serif;
  --base: #fff;
  --main: #000;
  --primary-color: #1D2975;
  --container-w: 53.125rem;
  --container-space: 4.375rem;
  --fixed-nav-h: 6.25rem;
}
@media screen and (max-width: 767px) {
  :root {
    --container-w: 100%;
    --container-space: 10.6666666667vw;
    --fixed-nav-h: 30.3317535545vw;
  }
}

@layer foundation {
  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  dl,
  dt,
  dd,
  ol,
  ul,
  figure {
    all: unset;
    display: revert;
  }
  body {
    line-height: 1;
  }
  ol,
  ul {
    list-style: none;
  }
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  img {
    vertical-align: middle;
  }
}
@layer foundation {
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  body {
    text-size-adjust: 100%;
    font-family: var(--sans-serif);
    line-height: 1.8;
    min-width: 320px;
    color: var(--main);
    background: var(--base);
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  :focus-visible {
    outline: 2px solid blue;
  }
  img,
  svg,
  iframe,
  video,
  picture {
    max-width: 100%;
  }
  img {
    letter-spacing: 0;
    font-size: 12px;
    height: auto;
  }
  a {
    text-decoration: none;
    word-break: break-all;
  }
  @media screen and (min-width: 768px) {
    a[href^="tel:"] {
      display: inline-block;
      pointer-events: none;
    }
  }
  small {
    font-size: 80%;
  }
  button,
  input[type=button],
  input[type=submit] {
    cursor: pointer;
    font: inherit;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  label {
    cursor: pointer;
    display: inline-block;
  }
}
/*========================================
  コンテンツ（メインコンテンツとサイドバーのラッパー）
========================================*/
@layer layout {}
/*========================================
  サイト共通のフッター
========================================*/
@layer layout {
  .l-footer__inner {
    --container-w: 68.75rem;
    --container-space: 6.25rem;
    padding-block: 2.5rem calc(var(--fixed-nav-h) + 5%);
  }
  @media screen and (max-width: 767px) {
    .l-footer__inner {
      padding-block: 8vw calc(var(--fixed-nav-h) + 5%);
    }
  }
  .l-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2.5rem;
    padding-right: 4.6875rem;
  }
  @media screen and (max-width: 767px) {
    .l-footer__content {
      flex-direction: column;
      align-items: center;
      gap: 2.6666666667vw;
      padding-right: 0;
    }
  }
  .l-footer__copyright small {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .l-footer__copyright small {
      font-size: 2.6666666667vw;
    }
  }
}
/*========================================
  サイト共通のヘッダー
========================================*/
@layer layout {
  .l-header {
    background-color: #fff;
    height: 5.8125rem;
  }
  @media screen and (max-width: 767px) {
    .l-header {
      height: auto;
    }
  }
  .l-header__inner {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    height: inherit;
    padding: 0 4.625rem 0 3.125rem;
  }
  @media screen and (max-width: 767px) {
    .l-header__inner {
      padding: 2.2900763359vw 3.8167938931vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__logo {
      width: 70%;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__logo img {
      width: 100%;
    }
  }
  .l-header__contact {
    justify-self: end;
  }
  .l-header__contact-btn {
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    gap: 0.1875rem;
    border-radius: 100vmax;
    background-color: var(--primary-color);
    min-height: 2.8125rem;
    padding: 0.3125rem 0.9375rem;
    text-decoration: none;
    font-size: 1.1875rem;
    font-weight: 500;
    color: #fff;
  }
  .l-header__contact-btn-arrow {
    background-color: #fff;
    height: 1em;
  }
}
/*========================================
  メインコンテンツ
========================================*/
@layer layout {}
/*========================================
  ヘッダーのナビゲーション（グローバルナビ）
========================================*/
@layer layout {
  @media screen and (max-width: 767px) {
    .l-nav.is-expanded .l-nav__body {
      visibility: visible;
      right: 0;
    }
  }
  .l-nav__btn {
    position: relative;
    z-index: 100;
  }
  @media screen and (max-width: 767px) {
    .l-nav__btn {
      position: absolute;
      right: 0;
      top: 0;
    }
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-1 {
    transform: translate(-8px, 0) rotate(45deg);
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-2 {
    opacity: 0;
  }
  .l-nav__btn[aria-expanded=true] .l-nav__line.is-3 {
    transform: translate(-8px, 1px) rotate(-45deg);
  }
  .l-nav__line {
    transform-origin: left center;
    transition-property: opacity, transform;
    transition-duration: 0.25s;
  }
  @media screen and (max-width: 767px) {
    .l-nav__body {
      background: #fff;
      width: 100%;
      height: 100%;
      display: block;
      visibility: hidden;
      position: fixed;
      top: 0;
      right: -100%;
      overflow: auto;
      overscroll-behavior-y: contain;
      transition: 0.3s ease-in;
      z-index: 99;
    }
  }
}
/*========================================
  ページ全体のレイアウト
========================================*/
@layer layout {
  .l-page {
    display: grid;
    grid-template: "header" "main" 1fr "footer";
    min-height: 100vh;
  }
  .l-page__header {
    grid-area: header;
  }
  @media screen and (min-width: 768px) {
    .l-page__header {
      position: sticky;
      top: 0;
      z-index: 100;
    }
  }
  .l-page__main {
    position: relative;
    grid-area: main;
  }
  .l-page__footer {
    grid-area: footer;
  }
}
@layer component {
  .c-icon-arrow-r, .c-icon {
    position: relative;
    display: inline-block;
    font-style: normal;
    line-height: 1;
    vertical-align: top;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
  }
  .c-icon-arrow-r {
    aspect-ratio: 1;
    clip-path: polygon(25% 7%, 32% 0, 82% 50%, 32% 100%, 25% 93%, 68% 50%, 25% 7%);
  }
}
@layer component {
  .c-container {
    width: min(100% - var(--container-space), var(--container-w));
    margin-right: auto;
    margin-left: auto;
  }
}
@layer component {
  .c-icon-arrow-r, .c-icon {
    display: inline-block;
    position: relative;
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: top;
    line-height: 1;
    font-style: normal;
  }
  .c-icon-arrow-r {
    aspect-ratio: 1;
    clip-path: polygon(25% 7%, 32% 0, 82% 50%, 32% 100%, 25% 93%, 68% 50%, 25% 7%);
  }
}
@layer component {
  .c-txt-br {
    display: block;
  }
  @media screen and (min-width: 768px) {
    .c-txt-br-pc {
      display: block;
    }
  }
  @media screen and (max-width: 767px) {
    .c-text-br-sp {
      display: block;
    }
  }
}
@layer component {
  .c-circle-txt {
    display: grid;
    place-items: center;
    border-radius: 50%;
    aspect-ratio: 1;
  }
}
@layer project {
  .p-ttl {
    display: grid;
    text-align: center;
    letter-spacing: 0.05em;
    color: #1D2088;
  }
  .p-ttl__sub {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 12px;
    font-family: var(--en-serif);
    font-size: 1.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-ttl__sub {
      font-size: 5.3333333333vw;
    }
  }
  .p-ttl__main {
    font-size: 2.375rem;
    font-weight: 700;
  }
  @media screen and (max-width: 767px) {
    .p-ttl__main {
      font-size: 6.9333333333vw;
    }
  }
}
@layer project {
  .p-table {
    background-image: linear-gradient(to right, #DDD 50%, #C6C8E0 50%);
    padding-block: 1.5rem 2.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-table {
      padding-block: 2.5445292621vw 11.1959287532vw;
    }
  }
  .p-table__ttls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: end;
    text-align: center;
  }
  .p-table__ttls .main,
  .p-table__ttls .sub {
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 10px;
  }
  @media screen and (max-width: 767px) {
    .p-table__ttls .main,
    .p-table__ttls .sub {
      text-underline-offset: 2.0356234097vw;
    }
  }
  .p-table__ttls .main {
    font-size: 1.875rem;
    color: #1D2975;
  }
  @media screen and (max-width: 767px) {
    .p-table__ttls .main {
      font-size: 6.106870229vw;
      line-height: 1.6;
    }
  }
  .p-table__ttls .sub {
    font-size: 1.5rem;
    color: #707070;
  }
  @media screen and (max-width: 767px) {
    .p-table__ttls .sub {
      font-size: 5.3435114504vw;
      line-height: 1.8;
    }
  }
  .p-table__items {
    display: grid;
    gap: 2.1875rem;
    margin-top: 2.5rem;
    padding-inline: 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-table__items {
      gap: 7.1246819338vw;
      padding-inline: 2.0356234097vw;
      margin-top: 7.6335877863vw;
    }
  }
  .p-table__comparison {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }
  .p-table__circle-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: #EB2323;
    width: 4.875rem;
    height: 4.875rem;
    font-size: 1.3125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    line-height: 1.1;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-table__circle-txt {
      width: 15.2671755725vw;
      height: 15.2671755725vw;
      font-size: 4.3256997455vw;
    }
  }
  .p-table__comparison-txt {
    position: relative;
    display: grid;
    place-items: center;
    background-color: #fff;
    padding: 1.625rem 2.5rem;
    font-size: 1.3125rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-table__comparison-txt {
      min-height: 13.9949109415vw;
      padding: 3.8167938931vw 7.6335877863vw;
      font-size: 4.2666666667vw;
      letter-spacing: 0;
    }
  }
  .p-table__comparison-txt.no {
    background: #fff url(../img/comparison_no.svg) left 0.8125rem top 50%/1.125rem 1.1875rem no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-table__comparison-txt.no {
      background-position: left 2.5445292621vw top 50%;
      background-size: 4.834605598vw, 5.0890585242vw;
    }
  }
  .p-table__comparison-txt.yes {
    background: #fff url(../img/comparison_yes.svg) right 0.8125rem top 50%/1.5625rem no-repeat;
  }
  @media screen and (max-width: 767px) {
    .p-table__comparison-txt.yes {
      background-position: right 2.5445292621vw top 50%;
      background-size: 5.0890585242vw;
    }
  }
  .p-table__bubble {
    position: relative;
    background-color: #606584;
    width: 94%;
    margin-inline: auto;
    padding: 1.25rem 0.625rem;
    text-align: center;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    font-feature-settings: "palt" 1;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-table__bubble {
      width: 94%;
      padding: 3.8167938931vw 1.272264631vw;
      font-size: 3.8167938931vw;
      line-height: 1.4;
    }
  }
  .p-table__bubble::before {
    content: "";
    display: block;
    position: absolute;
    top: -0.9375rem;
    right: 20.5%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    aspect-ratio: 26/21;
    background-color: #5F6584;
    width: 1.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-table__bubble::before {
      top: -1.5267175573vw;
      right: 21.5%  ;
      aspect-ratio: 13/10;
      width: 3.3078880407vw;
    }
  }
}
@layer project {
  .p-mv {
    height: 36.75rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv {
      height: 53.4545454545vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv {
      height: auto;
      overflow-x: clip;
    }
  }
  .p-mv__inner {
    --container-w: 64.375rem;
    position: relative;
    height: 100%;
    padding: 2.6875rem 3.375rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__inner {
      padding: 3.9090909091vw 4.9090909091vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__inner {
      --container-space: 0;
      padding: 5.0890585242vw 2.5445292621vw 0;
    }
  }
  .p-mv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../img/mv_img.webp) center/cover no-repeat;
  }
  @media screen and (min-width: 768px) {
    .p-mv__bg {
      border-radius: 50px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__bg {
      background-image: url(../img/mv_img_sp.webp);
      background-position: left 0 bottom 0;
      background-size: cover;
      height: 155.2162849873vw;
    }
  }
  .p-mv__name {
    position: absolute;
    bottom: 2.8125rem;
    left: 5.625rem;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1;
    color: #fff;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__name {
      left: 8.1818181818vw;
      bottom: 4.0909090909vw;
      font-size: 1.6363636364vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__name {
      top: 91.6030534351vw;
      left: 2.5445292621vw;
      bottom: initial;
      font-size: 3.8167938931vw;
      font-weight: 100;
      line-height: 1.6;
    }
  }
  .p-mv__content {
    position: relative;
  }
  @media screen and (min-width: 768px) {
    .p-mv__content {
      margin-left: auto;
    }
  }
  @media screen and (min-width: 1101px) {
    .p-mv__content {
      max-width: 37.3125rem;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__content {
      max-width: 54.2727272727vw;
    }
  }
  .p-mv__targets {
    display: flex;
    justify-content: space-between;
    gap: 0.625rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__targets {
      gap: 0.9090909091vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__targets {
      gap: 4.3256997455vw;
      justify-content: center;
    }
  }
  .p-mv__target {
    background-color: var(--primary-color);
    padding: 0.9375rem 0.75rem;
    font-size: 1.5625rem;
    font-weight: 700;
    line-height: 1;
    color: #FFF100;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__target {
      padding: 1.3636363636vw 1.0909090909vw;
      font-size: 2.2727272727vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__target {
      border-radius: 15px;
      padding: 3.8167938931vw;
      text-align: center;
      font-size: 6.106870229vw;
      line-height: 1.2;
    }
  }
  .p-mv__ttl {
    position: relative;
    margin-top: 1.25rem;
    padding-bottom: 10.5rem;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    color: var(--primary-color);
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__ttl {
      margin-top: 1.8181818182vw;
      padding-bottom: 15.2727272727vw;
      font-size: 4.3636363636vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__ttl {
      margin-top: 4.2666666667vw;
      padding-bottom: 27.989821883vw;
      text-align: center;
      font-size: 6.8702290076vw;
    }
  }
  .p-mv__ttl .txt-1 {
    display: block;
    white-space: nowrap;
  }
  .p-mv__ttl .txt-2 {
    display: block;
    margin-top: 1.625rem;
    font-size: 2.375rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__ttl .txt-2 {
      margin-top: 2.3636363636vw;
      font-size: 3.4545454545vw;
    }
  }
  @media screen and (min-width: 768px) {
    .p-mv__ttl .txt-2 {
      white-space: nowrap;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__ttl .txt-2 {
      display: grid;
      gap: 0.7633587786vw;
      max-width: 44.5292620865vw;
      margin-top: 5.0890585242vw;
      margin-left: auto;
      padding-right: 2.5445292621vw;
    }
  }
  .p-mv__ttl .mark-1 {
    margin-left: -0.7em;
    margin-right: -0.15em;
  }
  .p-mv__ttl .mark-2 {
    margin-right: -0.3em;
  }
  .p-mv__ttl .bg-white {
    display: inline-block;
    background-color: #fff;
    font-size: 1.13em;
    padding-block: 0.6875rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__ttl .bg-white {
      padding-block: 1vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__ttl .bg-white {
      padding-block: 2.7989821883vw;
      font-size: 8.9058524173vw;
    }
  }
  @media screen and (min-width: 768px) {
    .p-mv__ttl .bg-white.bg-white--01 {
      padding-inline: 1.625rem;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1100px) {
    .p-mv__ttl .bg-white.bg-white--01 {
      padding-inline: 2.3636363636vw;
    }
  }
  @media screen and (min-width: 768px) {
    .p-mv__ttl .bg-white.bg-white--02 {
      padding-inline: 1.25rem;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1100px) {
    .p-mv__ttl .bg-white.bg-white--02 {
      padding-inline: 1.8181818182vw;
    }
  }
  @media screen and (min-width: 768px) {
    .p-mv__ttl .bg-white.bg-white--03 {
      padding-inline: 1.125rem;
    }
  }
  @media screen and (min-width: 769px) and (max-width: 1100px) {
    .p-mv__ttl .bg-white.bg-white--03 {
      padding-inline: 1.6363636364vw;
    }
  }
  .p-mv__ttl .txt-align-bottom {
    vertical-align: bottom;
    font-size: 2.375rem;
  }
  @media screen and (max-width: 767px) {
    .p-mv__ttl .txt-align-bottom {
      font-size: 9.6vw;
    }
  }
  .p-mv__ttl .catch {
    position: absolute;
    right: -4.375rem;
    bottom: 0;
    width: 45.1875rem;
    height: 10.625rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__ttl .catch {
      right: -6.3636363636vw;
      width: 65.7272727273vw;
      height: 15.4545454545vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__ttl .catch {
      left: 0;
      right: 0;
      width: auto;
      height: 26.2086513995vw;
      margin-inline: -2.5445292621vw;
    }
  }
  .p-mv__ttl .catch img {
    filter: drop-shadow(0 10px 7px rgba(0, 0, 0, 0.36));
  }
  @media screen and (max-width: 767px) {
    .p-mv__ttl .catch img {
      width: 100%;
    }
  }
  .p-mv__medals {
    position: relative;
    display: flex;
    justify-content: end;
    gap: 1.25rem;
    margin-top: -2.1875rem;
    margin-right: -0.5rem;
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__medals {
      gap: 1.8181818182vw;
      margin-top: -3.1818181818vw;
      margin-right: -0.7272727273vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__medals {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 4.5333333333vw;
      margin-top: 5.0890585242vw;
      margin-right: 0;
      padding-inline: 1.272264631vw;
    }
  }
  @media screen and (min-width: 768px) and (max-width: 1100px) {
    .p-mv__medal {
      width: 17.3636363636vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__medal {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__medal img {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__contact-btn-wrap {
      margin-top: 1.272264631vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__contact-btn {
      display: grid;
      grid-auto-flow: column;
      place-content: center;
      align-items: center;
      background-color: var(--primary-color);
      min-height: 17.8117048346vw;
      margin-inline: -2.5445292621vw;
      font-size: 7.6335877863vw;
      font-weight: 700;
      color: #fff;
    }
  }
  @media screen and (max-width: 767px) {
    .p-mv__contact-btn-arrow {
      background-color: #fff;
      height: 1em;
    }
  }
}
@layer project {
  .p-contact__ttl-wrap {
    position: relative;
    display: grid;
    place-items: center;
    height: 7.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-contact__ttl-wrap {
      height: 32vw;
    }
  }
  .p-contact__ttl-wrap::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -1.625rem;
    background-color: #fff;
    aspect-ratio: 60/27;
    height: 1.6875rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  @media screen and (max-width: 767px) {
    .p-contact__ttl-wrap::before {
      bottom: -4vw;
      height: 4.5333333333vw;
    }
  }
  .p-contact__ttl {
    text-align: center;
    font-size: 2.125rem;
    font-weight: 500;
    color: #1D2088;
  }
  @media screen and (max-width: 767px) {
    .p-contact__ttl {
      font-size: 7.4666666667vw;
    }
  }
  .p-contact__body {
    background-color: #1D2088;
  }
  .p-contact__inner {
    --container-w: 68.75rem;
    margin-inline: auto;
  }
  .p-contact__content {
    background-image: linear-gradient(to right, #1d2088 0%, #142e90 8%, #09409b 21%, #024ca1 35%, #0050a4 50%, #1d2088);
    padding-block: 3.75rem 3.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-contact__content {
      padding-block: 14.6666666667vw;
    }
  }
  .p-contact__btns {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .p-contact__btns {
      flex-direction: column;
      gap: 5.3333333333vw;
    }
  }
  .p-contact__btn {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 100vmax;
    background-color: #fff;
    width: min(100%, 21.875rem);
    min-height: 3.375rem;
    text-align: center;
    font-size: 1.5625rem;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-contact__btn {
      width: 100%;
      min-height: 14.4vw;
      font-size: 6.4vw;
    }
  }
  @media (any-hover: hover) {
    .p-contact__btn {
      transition: 0.3s ease;
      transition-property: background, color;
    }
    .p-contact__btn:hover {
      background-color: #F48300;
      color: #fff;
    }
  }
  .p-contact__btn-icon {
    position: absolute;
    inset-block: 0;
    left: 0.625rem;
    margin-block: auto;
  }
  @media screen and (max-width: 767px) {
    .p-contact__btn-icon {
      left: 2.6666666667vw;
      width: 9.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact__btn-icon img {
      width: 100%;
    }
  }
  .p-contact__tel {
    position: relative;
    margin-top: 1.375rem;
    margin-inline: auto;
    text-align: center;
    color: #fff;
  }
  @media screen and (min-width: 768px) {
    .p-contact__tel {
      max-width: 30.625rem;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact__tel {
      margin-top: 10.6666666667vw;
    }
  }
  .p-contact__tel::before {
    content: "";
    display: block;
    position: absolute;
    right: -8.125rem;
    bottom: 0;
    background: url(../img/chara_01.png) 50%/contain no-repeat;
    width: 8.5625rem;
    height: 7.75rem;
    z-index: 2;
  }
  @media screen and (max-width: 767px) {
    .p-contact__tel::before {
      display: none;
    }
  }
  .p-contact__tel-link {
    background: url(../img/icon_tel.svg) left/4.375rem 2.8125rem no-repeat;
    padding-left: 5.1875rem;
    font-family: var(--serif);
    font-size: 4.625rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: inherit;
  }
  @media screen and (max-width: 767px) {
    .p-contact__tel-link {
      background-size: 13.3333333333vw 6.6666666667vw;
      padding-left: 16vw;
      font-size: 12vw;
    }
  }
  .p-contact__tel-txt {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-contact__tel-txt {
      margin-top: 1.3333333333vw;
      font-size: 5.3333333333vw;
    }
  }
  .p-contact__tel-txt .dot {
    margin-inline: -0.2em;
  }
}
@layer project {
  .p-situation__inner {
    padding-block: 9.375rem 11.5625rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__inner {
      padding-block: 32vw 45.3333333333vw;
    }
  }
  .p-situation__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5rem 3.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__list {
      gap: 26.6666666667vw;
    }
  }
  .p-situation__item {
    position: relative;
    flex: 0 0 15.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__item {
      flex: 0 0 100%;
    }
  }
  .p-situation__head-bubble {
    position: absolute;
    top: -4.1875rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/bubble.svg) 50%/100% no-repeat;
    min-width: 12.0625rem;
    padding-block: 1.0625rem 1.4375rem;
    text-align: center;
    font-size: 1.3125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: #FFF100;
  }
  @media screen and (max-width: 767px) {
    .p-situation__head-bubble {
      top: -17.8666666667vw;
      min-width: 51.4666666667vw;
      padding-block: 4.5333333333vw 6.1333333333vw;
      font-size: 5.6vw;
    }
  }
  .p-situation__head-bubble::after {
    content: "";
    display: block;
    position: absolute;
    right: -0.25rem;
    bottom: -1.375rem;
    background: url(../img/bubble_dots.svg) 50%/contain no-repeat;
    width: 2.0625rem;
    height: 2.6875rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__head-bubble::after {
      right: -1.0666666667vw;
      bottom: -5.8666666667vw;
      width: 8.8vw;
      height: 11.4666666667vw;
    }
  }
  .p-situation__bottom-bubble-wrap {
    text-align: center;
  }
  .p-situation__bottom-bubble {
    position: relative;
    display: inline-block;
    border-radius: 18px;
    border: 3px solid #fff;
    background-color: var(--primary-color);
    margin-top: -1.25rem;
    min-width: 76%;
    min-height: 6.5625rem;
    margin-inline: auto;
    padding: 0.375rem 0.3125rem;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-situation__bottom-bubble {
      min-width: 70%;
      min-height: auto;
      padding: 1.6vw 1.3333333333vw;
      font-size: 4.8vw;
    }
  }
  .p-situation__bottom-bubble::before, .p-situation__bottom-bubble::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.75rem 1.25rem 0.75rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__bottom-bubble::before, .p-situation__bottom-bubble::after {
      border-width: 0 3.2vw 5.3333333333vw 3.2vw;
    }
  }
  .p-situation__bottom-bubble::before {
    top: -1.25rem;
    border-color: transparent transparent #fff transparent;
  }
  @media screen and (max-width: 767px) {
    .p-situation__bottom-bubble::before {
      top: -5.3333333333vw;
    }
  }
  .p-situation__bottom-bubble::after {
    top: -0.875rem;
    border-color: transparent transparent var(--primary-color) transparent;
  }
  @media screen and (max-width: 767px) {
    .p-situation__bottom-bubble::after {
      top: -3.7333333333vw;
    }
  }
  .p-situation__bottom-bubble .txt-lg {
    font-size: 1.6875rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__bottom-bubble .txt-lg {
      font-size: 7.2vw;
    }
  }
  .p-situation__bottom-bubble .txt-sm {
    font-size: 0.9375rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__bottom-bubble .txt-sm {
      font-size: 4vw;
    }
  }
  .p-situation__bottom-bubble .color-yellow {
    color: #FFF100;
  }
  .p-situation__img {
    overflow: hidden;
    border-radius: 25px;
    border: 7px solid #DCDCDC;
    width: 15.625rem;
    height: 12.1875rem;
  }
  @media screen and (max-width: 767px) {
    .p-situation__img {
      width: 100%;
      height: 52vw;
    }
  }
  .p-situation__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
@layer project {
  .p-about {
    position: relative;
  }
  .p-about__head {
    background-color: #DFE9E6;
    padding-block: 9.0625rem 3.75rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__head {
      padding-block: 32vw 13.3333333333vw;
    }
  }
  .p-about__ttl-wrap {
    position: absolute;
    top: -6.5625rem;
    inset-inline: 0;
    max-width: 36.25rem;
    margin-inline: auto;
  }
  @media screen and (max-width: 767px) {
    .p-about__ttl-wrap {
      top: -26.6666666667vw;
      max-width: 90%;
    }
  }
  .p-about__ttl-wrap::before, .p-about__ttl-wrap::after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
  }
  .p-about__ttl-wrap::before {
    top: 0.625rem;
    left: -0.625rem;
    background-color: var(--primary-color);
    width: calc(100% + 1.25rem);
    height: 100%;
  }
  .p-about__ttl-wrap::after {
    inset-inline: 0;
    bottom: -1.75rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    aspect-ratio: 60/24;
    background-color: var(--primary-color);
    height: 1.5rem;
    margin-inline: auto;
  }
  .p-about__ttl {
    position: relative;
    border: 3px solid var(--primary-color);
    background-color: #fff;
    text-align: center;
    padding: 1rem;
    line-height: 1.5;
  }
  @media screen and (max-width: 767px) {
    .p-about__ttl {
      padding: 4.2666666667vw 2.6666666667vw;
    }
  }
  .p-about__ttl::before {
    content: "";
    display: block;
    position: absolute;
    inset-inline: 0;
    bottom: -1.25rem;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    aspect-ratio: 60/24;
    background-color: #fff;
    height: 1.5rem;
    margin-inline: auto;
    z-index: 2;
  }
  .p-about__ttl .txt-1 {
    position: relative;
    display: block;
    font-size: 2rem;
    letter-spacing: 0.02em;
  }
  @media screen and (max-width: 767px) {
    .p-about__ttl .txt-1 {
      font-size: 6.4vw;
    }
  }
  .p-about__ttl .txt-1::after {
    content: "";
    display: block;
    position: absolute;
    top: -0.1875rem;
    right: -0.4375rem;
    background: url(../img/chara_02.png) 50%/contain no-repeat;
    width: 4.375rem;
    height: 3.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__ttl .txt-1::after {
      top: -13.3333333333vw;
      right: -5.3333333333vw;
      width: 18.6666666667vw;
      height: 15.4666666667vw;
    }
  }
  .p-about__ttl .txt-1 .bg-blue {
    background-color: var(--primary-color);
    padding: 0 0.625rem;
    font-size: 2.4375rem;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-about__ttl .txt-1 .bg-blue {
      padding: 0 2.6666666667vw;
      font-size: 6.9333333333vw;
    }
  }
  .p-about__ttl .txt-2 {
    display: block;
    font-size: 2.8125rem;
    letter-spacing: 0.05em;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-about__ttl .txt-2 {
      font-size: 8vw;
    }
  }
  .p-about__ttl .color-red {
    color: #EB2323;
  }
  .p-about__flow {
    --head-h: 6.875rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow {
      --head-h: 16vw;
      grid-template-columns: 1fr;
      gap: 13.3333333333vw;
    }
  }
  .p-about__flow-item {
    position: relative;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow-item {
      display: grid;
      grid-template-columns: 32vw 1fr;
      gap: 2.6666666667vw;
    }
  }
  .p-about__flow-item + .p-about__flow-item::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(var(--head-h) / 2 - 2.1875rem / 2);
    left: calc(-3.125rem / 2 - 1.125rem / 2);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    background-color: #5FA0AA;
    aspect-ratio: 18/35;
    height: 2.1875rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow-item + .p-about__flow-item::before {
      transform: rotate(90deg);
      top: -10.6666666667vw;
      left: 0;
      right: 0;
      height: 9.3333333333vw;
      margin-inline: auto;
    }
  }
  .p-about__flow-head {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    height: var(--head-h);
    text-align: center;
    line-height: 1;
  }
  .p-about__flow-circle-txt {
    position: absolute;
    top: -2.1875rem;
    left: -1.875rem;
    background-color: #EB2323;
    width: 4.4375rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow-circle-txt {
      top: -5.3333333333vw;
      left: -4vw;
      width: 10.6666666667vw;
      font-size: 3.7333333333vw;
    }
  }
  .p-about__flow-ttl, .p-about__flow-desc {
    display: grid;
    place-items: center;
  }
  .p-about__flow-ttl {
    align-self: center;
    background-color: #7ACCD8;
    height: 100%;
    font-size: 1.6875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow-ttl {
      font-size: 4.2666666667vw;
    }
  }
  .p-about__flow-desc {
    background-color: #fff;
    height: 100%;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow-desc {
      font-size: 4.2666666667vw;
    }
  }
  .p-about__flow-txt {
    margin-top: 1.25rem;
    text-align: justify;
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  @media screen and (max-width: 767px) {
    .p-about__flow-txt {
      margin-top: 0;
      font-size: 4vw;
    }
  }
  .p-about__delayed-area {
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__delayed-area {
      margin-top: 8vw;
    }
  }
  .p-about__sttl {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-about__sttl {
      font-size: 6.4vw;
    }
  }
  .p-about__check-area {
    position: relative;
    border-radius: 20px;
    background-color: #fff;
    margin-top: 1.875rem;
    padding: 1.125rem 2rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__check-area {
      margin-top: 8vw;
      padding: 5.3333333333vw 5.3333333333vw 16vw;
    }
  }
  .p-about__check-area::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: 1.125rem;
    background: url(../img/chara_03.png) 0/contain no-repeat;
    aspect-ratio: 127/146;
    width: 7.9375rem;
    height: 9.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__check-area::before {
      bottom: 5.3333333333vw;
      width: auto;
      height: 21.3333333333vw;
    }
  }
  .p-about__check-item {
    position: relative;
    background: url(../img/icon_check.svg) 0 0.8em/1.875rem no-repeat;
    padding-block: 0.8125rem 0.625rem;
    padding-inline: 3.125rem 6.25rem;
    font-size: 1.3125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-about__check-item {
      background-position: 0 1.2em;
      background-size: 4.2666666667vw;
      padding-block: 3.4666666667vw 2.6666666667vw;
      padding-inline: 5.3333333333vw 0;
      font-size: 4.2666666667vw;
    }
  }
  .p-about__check-item + .p-about__check-item::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/dots.svg) left 0 bottom 0/0.5rem 0.125rem repeat-x;
    width: 100%;
    height: 0.125rem;
  }
  .p-about__txt {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-about__txt {
      margin-top: 8vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-about__bg-txt {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-about__bg-txt {
      margin-top: 8vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-about__bg-txt p {
    display: inline-block;
    border-radius: 100vmax;
    background-color: #F48300;
    padding-inline: 2.1875rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__bg-txt p {
      padding: 1.3333333333vw 8vw;
    }
  }
  .p-about__strong-txt {
    margin-top: 1.875rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-about__strong-txt {
      margin-top: 8vw;
      font-size: 8vw;
      line-height: 1.5;
    }
  }
  .p-about__comparison {
    position: relative;
    padding-top: 10.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__comparison {
      padding-top: 34.6666666667vw;
    }
  }
  .p-about__comparison::before {
    content: "";
    display: block;
    position: absolute;
    top: 3.75rem;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    aspect-ratio: 160/56;
    background-color: #EB2323;
    width: 10rem;
    margin-inline: auto;
  }
  @media screen and (max-width: 767px) {
    .p-about__comparison::before {
      top: 12vw;
      width: 32vw;
      height: 11.4666666667vw;
    }
  }
  .p-about__comparison-inner {
    --container-w: 47.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-about__comparison-inner {
      --container-space: 0;
    }
  }
}
@layer project {
  .p-reason__inner {
    padding-block: 5rem;
  }
  @media screen and (max-width: 767px) {
    .p-reason__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-reason__content {
    margin-top: 3.75rem;
  }
  @media screen and (max-width: 767px) {
    .p-reason__content {
      margin-top: 10.6666666667vw;
    }
  }
  .p-reason__detail {
    position: relative;
    border-radius: 30px;
    background-color: #DEDFEA;
    padding: 2.5rem 2.5rem 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail {
      padding: 10.6666666667vw 5.3333333333vw;
    }
  }
  .p-reason__detail-ttl {
    position: absolute;
    top: -1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    border-radius: 100vmax;
    background-color: var(--primary-color);
    padding-inline: 1.5625rem;
    font-size: 1.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail-ttl {
      top: -5.3333333333vw;
      padding-inline: 5.3333333333vw;
      text-align: center;
      white-space: nowrap;
      font-size: 5.8666666667vw;
    }
  }
  .p-reason__detail-col {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 1.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail-col {
      grid-template-columns: 1fr;
      gap: 5.3333333333vw;
    }
  }
  .p-reason__detail-img {
    position: relative;
    text-align: center;
  }
  .p-reason__detail-img::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -0.8125rem;
    left: -4.6875rem;
    background: url(../img/chara_04.png) center/contain no-repeat;
    aspect-ratio: 132/138;
    width: 8.25rem;
    height: 8.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail-img::before {
      bottom: -5.3333333333vw;
      left: -13.3333333333vw;
      width: auto;
      height: 29.3333333333vw;
    }
  }
  .p-reason__detail-img img {
    filter: drop-shadow(4px 6px 6px rgba(0, 0, 0, 0.42));
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail-img img {
      width: 60%;
    }
  }
  .p-reason__detail-sttl {
    font-size: 2.375rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #EB2323;
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail-sttl {
      font-size: 6.9333333333vw;
    }
  }
  .p-reason__detail-txt {
    margin-top: 0.625rem;
    text-align: justify;
    font-size: 1.1875rem;
    line-height: 1.65;
  }
  @media screen and (max-width: 767px) {
    .p-reason__detail-txt {
      margin-top: 2.6666666667vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-reason__panels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem 3.125rem;
    margin-top: 4.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-reason__panels {
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 13.3333333333vw;
    }
  }
  .p-reason__panel {
    position: relative;
    display: grid;
    gap: 0;
    padding: 2.375rem 1.25rem 3.125rem;
  }
  @media screen and (min-width: 768px) {
    .p-reason__panel {
      grid-template-rows: subgrid;
      grid-row: span 3;
    }
  }
  @media screen and (max-width: 767px) {
    .p-reason__panel {
      padding: 8vw 0;
    }
  }
  @media screen and (min-width: 768px) {
    .p-reason__panel:nth-child(2n)::after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: calc(-3.125rem / 2);
      background-color: #707070;
      width: 1px;
      height: calc(100% - 1.25rem);
    }
  }
  @media screen and (min-width: 768px) {
    .p-reason__panel:nth-child(n+3)::before {
      content: "";
      display: block;
      position: absolute;
      top: -1.125rem;
      left: 0;
      background-color: #707070;
      width: 100%;
      height: 1px;
    }
  }
  @media screen and (max-width: 767px) {
    .p-reason__panel:nth-child(n+2) {
      border-top: 1px solid #707070;
    }
  }
  .p-reason__panel-icon {
    text-align: center;
  }
  .p-reason__panel-ttl {
    margin-top: 1.125rem;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.55;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-reason__panel-ttl {
      margin-top: 2.6666666667vw;
      font-size: 4.8vw;
    }
  }
  .p-reason__panel-txt {
    margin-top: 1.625rem;
    text-align: justify;
    font-size: 1.125rem;
    line-height: 1.7;
  }
  @media screen and (max-width: 767px) {
    .p-reason__panel-txt {
      margin-top: 5.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
}
@layer project {
  .p-lawyer__inner {
    padding-block: 1.875rem 10.9375rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__inner {
      --container-space: 5.3333333333vw;
      padding-block: 8vw 26.6666666667vw;
    }
  }
  .p-lawyer__slide {
    max-width: min(100vw - var(--scrollbar-width), 53.125rem);
    margin-inline: auto;
    overflow: clip;
  }
  .p-lawyer__panel {
    max-width: 82%;
    margin-inline: auto;
    padding-block: 3.125rem 2.9375rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__panel {
      max-width: 90%;
      padding-block: 13.3333333333vw;
    }
  }
  .p-lawyer__panel-head {
    display: grid;
    grid-template-columns: 9.0625rem auto;
    gap: 2.1875rem;
    position: relative;
    border-radius: 30px 30px 0 0;
    background-color: var(--primary-color);
    padding: 1.375rem 3.75rem 0.9375rem 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__panel-head {
      grid-template-columns: 1fr;
      padding: 5.3333333333vw;
    }
  }
  .p-lawyer__img {
    margin-top: -3.4375rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__img {
      margin-top: -13.3333333333vw;
      text-align: center;
    }
  }
  .p-lawyer__txt-area {
    color: #fff;
  }
  .p-lawyer__name-wrap {
    display: flex;
    align-items: end;
    gap: 0.9375rem;
    line-height: 1;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__name-wrap {
      gap: 2.6666666667vw;
    }
  }
  .p-lawyer__name {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__name {
      font-size: 5.8666666667vw;
    }
  }
  .p-lawyer__position {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__position {
      font-size: 4.8vw;
    }
  }
  .p-lawyer__comment {
    margin-top: 1.25rem;
    text-align: justify;
    font-size: 0.9375rem;
    font-weight: 300;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__comment {
      margin-top: 5.3333333333vw;
      font-size: 4vw;
    }
  }
  .p-lawyer__panel-body {
    border-radius: 0 0 30px 30px;
    background-color: #EFEFEF;
    padding: 1.875rem 2.8125rem 1.875rem 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__panel-body {
      padding: 5.3333333333vw;
    }
  }
  .p-lawyer__list {
    display: grid;
    gap: 0.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__list {
      gap: 5.3333333333vw;
    }
  }
  .p-lawyer__list div {
    display: grid;
    grid-template-columns: 8.25rem auto;
    gap: 0.625rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__list div {
      grid-template-columns: 1fr;
      gap: 1.3333333333vw;
    }
  }
  .p-lawyer__list div dt {
    display: grid;
    place-items: center;
    align-self: start;
    border-radius: 100vmax;
    background-color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__list div dt {
      font-size: 4vw;
      padding: 0.8vw;
    }
  }
  .p-lawyer__list div dd {
    text-align: justify;
    font-size: 1.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-lawyer__list div dd {
      font-size: 4vw;
    }
  }
}
.splide__arrow {
  top: calc(50% - 0.4375rem);
  border-radius: initial;
  background-color: var(--primary-color);
  width: 2.5rem;
  height: 2.5rem;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .splide__arrow {
    top: calc(50% - 1.8666666667vw);
    width: 8vw;
    height: 8vw;
  }
}
.splide__arrow svg {
  fill: #fff;
}

.splide__arrow--prev {
  left: 0;
}

.splide__arrow--next {
  right: 0;
}

.splide__pagination {
  bottom: 0;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .splide__pagination {
    gap: 2.6666666667vw;
  }
}

.splide__pagination__page {
  border: 1px solid var(--primary-color);
  background-color: #fff;
  width: 0.9375rem;
  height: 0.9375rem;
  margin: 0;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .splide__pagination__page {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
.splide__pagination__page.is-active {
  background-color: var(--primary-color);
  transform: scale(1);
}

@layer project {
  .p-case {
    background-color: #DEDFEA;
  }
  .p-case__inner {
    padding-block: 5.625rem 5.9375rem;
  }
  @media screen and (max-width: 767px) {
    .p-case__inner {
      padding-block: 13.3333333333vw 13.3333333333vw;
    }
  }
  .p-case__panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(16.875rem, 1fr));
    gap: 2.5rem 1.1875rem;
    margin-top: 3.4375rem;
  }
  @media screen and (max-width: 767px) {
    .p-case__panels {
      grid-template-columns: 1fr;
      gap: 10.6666666667vw;
      margin-top: 10.6666666667vw;
    }
  }
  .p-case__panel {
    display: grid;
    gap: 0;
    position: relative;
    background-color: #fff;
    padding: 0 1.125rem 1.5625rem;
    letter-spacing: 0.05em;
  }
  @media screen and (min-width: 768px) {
    .p-case__panel {
      grid-template-rows: subgrid;
      grid-row: span 4;
    }
  }
  @media screen and (max-width: 767px) {
    .p-case__panel {
      padding: 0 5.3333333333vw 5.3333333333vw;
    }
  }
  .p-case__stamp {
    position: absolute;
    top: -2.5rem;
    right: 0.4375rem;
  }
  @media screen and (max-width: 767px) {
    .p-case__stamp {
      top: -10.6666666667vw;
      right: 1.8666666667vw;
      width: 25.0666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-case__stamp img {
      width: 100%;
    }
  }
  .p-case__cat {
    display: inline-grid;
    place-items: center;
    background-color: #FC8724;
    width: 9.0625rem;
    padding: 0.125rem 0;
    font-size: 0.9375rem;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-case__cat {
      width: 38.6666666667vw;
      padding: 0.5333333333vw 0;
      font-size: 4vw;
    }
  }
  .p-case__ttl {
    margin-top: 1.25rem;
    font-size: 1.1875rem;
    font-weight: 700;
    line-height: 1.5;
    font-feature-settings: "palt" 1;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-case__ttl {
      margin-top: 5.3333333333vw;
      font-size: 4.8vw;
    }
  }
  .p-case__txt {
    margin-top: 0.9375rem;
    text-align: justify;
    font-size: 0.9375rem;
    line-height: 1.6;
    font-feature-settings: "palt" 1;
    letter-spacing: 0;
  }
  .p-case__btn-wrap {
    text-align: center;
  }
  .p-case__btn {
    position: relative;
    display: inline-grid;
    place-items: center;
    border-radius: 100vmax;
    background-color: var(--primary-color);
    min-width: 10rem;
    min-height: 2.0625rem;
    margin-top: 1.5625rem;
    font-size: 0.9375rem;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-case__btn {
      min-width: 100%;
      min-height: 16vw;
      font-size: 4vw;
    }
  }
  .p-case__btn::before {
    content: "";
    display: block;
    position: absolute;
    inset-block: 0;
    right: 1.125rem;
    background: url(../img/icon_arrow_r.svg) 50%/contain no-repeat;
    aspect-ratio: 11/4;
    width: 0.6875rem;
    height: 0.25rem;
    margin-block: auto;
  }
  @media screen and (max-width: 767px) {
    .p-case__btn::before {
      right: 4.8vw;
      width: auto;
      height: 2.1333333333vw;
    }
  }
  @media (any-hover: hover) {
    .p-case__btn {
      transition: 0.3s ease;
      transition-property: background;
    }
    .p-case__btn:hover {
      background-color: #F48300;
    }
  }
}
@layer project {
  .p-voice__inner {
    --container-w: 43.75rem;
    padding-block: 7.8125rem 3.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-voice__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-voice__panels {
    display: grid;
    gap: 2.75rem;
    margin-top: 2rem;
  }
  @media screen and (max-width: 767px) {
    .p-voice__panels {
      margin-top: 8vw;
    }
  }
  .p-voice__panel {
    background-color: #F2F2F0;
    padding: 2.25rem 1.5625rem;
  }
  @media screen and (max-width: 767px) {
    .p-voice__panel {
      padding: 5.3333333333vw;
    }
  }
  .p-voice__info-group {
    display: grid;
    grid-template-columns: 6.25rem auto 1fr;
    align-items: center;
    gap: 1.0625rem;
    border-radius: 20px;
    background-color: #fff;
    padding: 0.625rem 1.5625rem;
    box-shadow: 0px 3px 6px rgba(112, 112, 112, 0.69);
  }
  @media screen and (max-width: 767px) {
    .p-voice__info-group {
      grid-template-columns: 1fr auto;
      gap: 2.6666666667vw;
      padding: 5.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-voice__img {
      grid-row: 1;
      grid-column: span 2;
      width: 26.6666666667vw;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 767px) {
    .p-voice__img img {
      width: 100%;
    }
  }
  .p-voice__poster {
    align-self: start;
  }
  .p-voice__client {
    border-bottom: 1px solid #707070;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    color: #3246C3;
  }
  @media screen and (max-width: 767px) {
    .p-voice__client {
      font-size: 4vw;
    }
  }
  .p-voice__client span {
    display: inline-block;
    position: relative;
    padding-bottom: 0.4375rem;
  }
  @media screen and (max-width: 767px) {
    .p-voice__client span {
      padding-bottom: 1.8666666667vw;
    }
  }
  .p-voice__client span::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #3246C3;
    height: 4px;
    width: 100%;
  }
  .p-voice__ttl {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #707070;
  }
  @media screen and (max-width: 767px) {
    .p-voice__ttl {
      font-size: 5.3333333333vw;
      line-height: 1.5;
    }
  }
  .p-voice__rate {
    display: grid;
    place-content: center;
    justify-self: end;
  }
  .p-voice__rate-num {
    font-family: var(--en-serif);
    font-size: 3.5rem;
    font-weight: 500;
    line-height: 1;
    color: #5D5D5D;
  }
  @media screen and (max-width: 767px) {
    .p-voice__rate-num {
      text-align: center;
      font-size: 8vw;
    }
  }
  .p-voice__rate-star {
    position: relative;
    display: inline-block;
    width: 5em;
    height: 1.8em;
  }
  .p-voice__rate-star::before, .p-voice__rate-star::after {
    content: "★★★★★";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
    white-space: nowrap;
  }
  .p-voice__rate-star::before {
    color: #D4D5D5;
  }
  .p-voice__rate-star::after {
    width: var(--starWidth);
    color: #F0B117;
  }
  .p-voice__txt {
    padding: 1.75rem 1.5625rem;
    text-align: justify;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.67;
  }
  @media screen and (max-width: 767px) {
    .p-voice__txt {
      padding: 5.3333333333vw 2.6666666667vw 0;
      font-size: 4vw;
    }
  }
}
@layer project {
  .p-consult__inner {
    --container-w: 43.75rem;
    padding-block: 4.6875rem 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-consult__items {
    --num-w: 3.125rem;
    --gap: 3.125rem;
    display: grid;
    gap: var(--gap);
    margin-top: 4.0625rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__items {
      --num-w: 9.3333333333vw;
      --gap: 9.3333333333vw;
      margin-top: 10.6666666667vw;
    }
  }
  .p-consult__item {
    position: relative;
    display: grid;
    grid-template-columns: var(--num-w) 1fr 31.7%;
    gap: 0.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__item {
      grid-template-columns: var(--num-w) 1fr;
      gap: 5.3333333333vw;
    }
  }
  .p-consult__item:not(:last-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: calc(var(--num-w) / 2 - 1px);
    background: url(../img/dots_vertical.svg) 0/0.1875rem 0.625rem repeat-y;
    width: 3px;
    height: calc(100% + var(--gap));
  }
  .p-consult__num {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    aspect-ratio: 1;
    width: var(--num-w);
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-consult__num {
      font-size: 5.8666666667vw;
    }
  }
  .p-consult__txt-area {
    padding-right: 2.1875rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__txt-area {
      margin-top: -0.5333333333vw;
      padding-right: 0;
    }
  }
  .p-consult__ttl {
    font-size: 1.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-consult__ttl {
      font-size: 5.6vw;
    }
  }
  .p-consult__txt {
    margin-top: 0.625rem;
    text-align: justify;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.77;
  }
  @media screen and (max-width: 767px) {
    .p-consult__txt {
      margin-top: 1.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-consult__img {
    padding-top: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__img {
      grid-row: 2;
      grid-column: 2;
      padding-top: 0;
    }
  }
  .p-consult__img img {
    width: 100%;
  }
  .p-consult__fee {
    border-radius: 50px;
    background-color: #F2F2F0;
    margin-top: 5rem;
    padding: 0 4.6875rem 4.375rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee {
      border-radius: 25px;
      margin-top: 13.3333333333vw;
      padding: 0 5.3333333333vw 13.3333333333vw;
    }
  }
  .p-consult__fee-ttl {
    text-align: center;
  }
  .p-consult__fee-ttl span {
    display: inline-grid;
    place-items: center;
    background-color: var(--primary-color);
    padding: 0.125rem 3.75rem;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-ttl span {
      padding: 0.5333333333vw 8vw;
      font-size: 5.6vw;
    }
  }
  .p-consult__fee-lead {
    margin-top: 1.0625rem;
    text-align: center;
    font-size: 1.3125rem;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-lead {
      margin-top: 2.6666666667vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-consult__fee-unit {
    margin-top: 1.6875rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-unit {
      margin-top: 5.3333333333vw;
    }
  }
  .p-consult__fee-unit + .p-consult__fee-unit {
    margin-top: 2.8125rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-unit + .p-consult__fee-unit {
      margin-top: 10.6666666667vw;
    }
  }
  .p-consult__fee-sttl {
    border-top: 1px solid #707070;
    border-bottom: 1px solid #707070;
    padding: 0.3125rem;
    text-align: center;
    font-size: 1.3125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-sttl {
      padding: 1.3333333333vw;
      font-size: 4.8vw;
    }
  }
  .p-consult__fee-dl {
    display: grid;
    gap: 0.3125rem;
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-dl {
      gap: 5.3333333333vw;
      margin-top: 5.3333333333vw;
    }
  }
  .p-consult__fee-dl div {
    display: grid;
    grid-template-columns: 40% 1fr;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-dl div {
      grid-template-columns: 1fr;
      gap: 2.6666666667vw;
    }
  }
  .p-consult__fee-dl div dt,
  .p-consult__fee-dl div dd {
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
  }
  .p-consult__fee-dl div dt {
    background-color: #fff;
    padding: 0.625rem;
    font-size: 1.3125rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-dl div dt {
      padding: 2.6666666667vw;
      font-size: 4vw;
    }
  }
  .p-consult__fee-dl div dd {
    font-size: 1.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-dl div dd {
      font-size: 4vw;
    }
  }
  .p-consult__fee-dl div dd.pl-adjust {
    padding-left: 27%;
  }
  .p-consult__fee-dl div dd .txt-md {
    vertical-align: middle;
    font-size: 1.3125rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-dl div dd .txt-md {
      font-size: 4vw;
    }
  }
  .p-consult__fee-dl div dd .txt-sm {
    vertical-align: middle;
    font-size: 0.9375rem;
  }
  @media screen and (max-width: 767px) {
    .p-consult__fee-dl div dd .txt-sm {
      font-size: 3.2vw;
    }
  }
}
@layer project {
  .p-faq__inner {
    --container-w: 43.75rem;
    padding-block: 5.625rem 8.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-faq__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-faq__content {
    margin-top: 2rem;
  }
  @media screen and (max-width: 767px) {
    .p-faq__content {
      margin-top: 10.6666666667vw;
    }
  }
  .p-faq__acc[open] .p-faq__acc-q::after {
    transform: rotate(-180deg);
  }
  .p-faq__acc + .p-faq__acc {
    border-top: 2px solid #fff;
  }
  .p-faq__acc-q {
    position: relative;
    background-color: var(--primary-color);
    padding: 0.8125rem 4.0625rem;
    list-style: none;
    cursor: pointer;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: #fff;
  }
  @media screen and (max-width: 767px) {
    .p-faq__acc-q {
      padding: 3.4666666667vw 13.3333333333vw;
      font-size: 4.2666666667vw;
      line-height: 1.5;
    }
  }
  .p-faq__acc-q::-webkit-details-marker {
    display: none;
  }
  .p-faq__acc-q::before {
    content: "";
    display: grid;
    place-items: center;
    position: absolute;
    inset-block: 0;
    left: 1.5625rem;
    border-radius: 50%;
    background: #fff url(../img/faq_q.svg) 50%/0.875rem 0.9375rem no-repeat;
    width: 1.875rem;
    height: 1.875rem;
    margin-block: auto;
  }
  @media screen and (max-width: 767px) {
    .p-faq__acc-q::before {
      left: 2.6666666667vw;
      width: 8vw;
      height: 8vw;
    }
  }
  .p-faq__acc-q::after {
    content: "";
    display: block;
    position: absolute;
    inset-block: 0;
    right: 1.5625rem;
    background: #fff;
    clip-path: polygon(7% 25%, 0 32%, 50% 82%, 100% 32%, 93% 25%, 50% 68%, 7% 25%);
    aspect-ratio: 1;
    height: 0.9375rem;
    margin: auto;
    transition: transform 0.3s ease-in-out;
  }
  @media screen and (max-width: 767px) {
    .p-faq__acc-q::after {
      right: 5.3333333333vw;
      height: 4vw;
    }
  }
  .p-faq__acc-a {
    background-color: #EFEFEF;
    padding: 1.6875rem 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-faq__acc-a {
      padding: 5.3333333333vw;
    }
  }
  .p-faq__acc-txt {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
  @media screen and (max-width: 767px) {
    .p-faq__acc-txt {
      font-size: 4vw;
    }
  }
}
@layer project {
  .p-info__inner {
    padding-block: 5.625rem 8.125rem;
  }
  @media screen and (max-width: 767px) {
    .p-info__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-info__content {
    margin-top: 2rem;
  }
  @media screen and (max-width: 767px) {
    .p-info__content {
      margin-top: 10.6666666667vw;
    }
  }
  .p-info__items {
    display: grid;
    gap: 3rem;
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 767px) {
    .p-info__items {
      gap: 13.3333333333vw;
    }
  }
  .p-info__item {
    display: grid;
    grid-template-columns: 1fr 24.6875rem;
    gap: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-info__item {
      grid-template-columns: 1fr;
      gap: 8vw;
    }
  }
  .p-info__ttl {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-info__ttl {
      text-align: center;
      font-size: 5.3333333333vw;
    }
  }
  .p-info__dl {
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-info__dl {
      margin-top: 2.6666666667vw;
    }
  }
  .p-info__dl div {
    display: grid;
    grid-template-columns: 6.25rem 1fr;
    gap: 1.25rem;
    border-bottom: 1px solid #707070;
    padding-block: 0.625rem;
  }
  @media screen and (max-width: 767px) {
    .p-info__dl div {
      grid-template-columns: 26.6666666667vw 1fr;
      gap: 2.6666666667vw;
    }
  }
  .p-info__dl div dt, .p-info__dl div dd {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.6;
  }
  @media screen and (max-width: 767px) {
    .p-info__dl div dt, .p-info__dl div dd {
      font-size: 4vw;
    }
  }
  .p-info__map iframe {
    aspect-ratio: 395/280;
    width: 100%;
    height: 100%;
  }
}
@layer project {
  .p-form {
    background-color: rgba(29, 41, 117, 0.15);
  }
  .p-form__inner {
    --container-w: 43.75rem;
    padding-block: 5rem 5.3125rem;
  }
  @media screen and (max-width: 767px) {
    .p-form__inner {
      padding-block: 13.3333333333vw;
    }
  }
  .p-form__content {
    margin-top: 2.8125rem;
  }
  @media screen and (max-width: 767px) {
    .p-form__content {
      margin-top: 10.6666666667vw;
    }
  }
}
/*========================================
  page-top
========================================*/
@layer project {
  .p-page-top {
    height: 0;
    position: sticky;
    bottom: calc(var(--fixed-nav-h) + 2.5rem);
    padding-right: 1.25rem;
    text-align: right;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 98;
  }
  @media screen and (max-width: 767px) {
    .p-page-top {
      bottom: calc(var(--fixed-nav-h) + 10.6666666667vw);
      padding-right: 2.6666666667vw;
    }
  }
  .p-page-top.is-show {
    opacity: 1;
  }
  .p-page-top__btn {
    position: relative;
    top: -1.875rem;
    margin-bottom: -1.875rem;
    border: none;
    background-color: transparent;
    padding: 0;
  }
  @media screen and (max-width: 767px) {
    .p-page-top__btn {
      top: -6.6666666667vw;
      margin-bottom: -6.6666666667vw;
      width: 13.3333333333vw;
      height: 13.3333333333vw;
    }
  }
  @media (any-hover: hover) {
    .p-page-top__btn {
      transition: 0.3s;
      transition-property: transform;
    }
    .p-page-top__btn:hover {
      transform: scale(1.1);
    }
  }
}
@layer project {
  .p-fixed-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    height: var(--fixed-nav-h);
    z-index: 100;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .p-fixed-nav.is-show {
    opacity: 1;
  }
  .p-fixed-nav__inner {
    height: inherit;
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__inner {
      padding-block: 1.8957345972vw;
    }
  }
  .p-fixed-nav__items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    height: 100%;
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__items {
      flex-direction: column;
      justify-content: center;
      gap: 1.8957345972vw;
    }
  }
  .p-fixed-nav__btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__btns {
      gap: 1.6587677725vw;
    }
  }
  .p-fixed-nav__btn {
    position: relative;
    display: grid;
    place-items: center;
    border-radius: 100vmax;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    width: 15rem;
    min-height: 3.375rem;
    padding-left: 1.875rem;
    text-align: center;
    font-size: 1.25rem;
    color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__btn {
      width: 44.0758293839vw;
      min-height: 9.9526066351vw;
      font-size: 3.317535545vw;
    }
  }
  @media (any-hover: hover) {
    .p-fixed-nav__btn {
      transition: 0.3s ease;
      transition-property: background, color;
    }
    .p-fixed-nav__btn:hover {
      background-color: #F48300;
      color: #fff;
    }
  }
  .p-fixed-nav__btn-icon {
    display: grid;
    align-items: center;
    position: absolute;
    inset-block: 0;
    left: 0.625rem;
    margin-block: auto;
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__btn-icon {
      left: 2.3696682464vw;
      width: 6.63507109vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__btn-icon img {
      width: 100%;
    }
  }
  .p-fixed-nav__tel {
    position: relative;
    text-align: center;
    color: var(--primary-color);
  }
  .p-fixed-nav__tel-link {
    background: url(../img/icon_tel_blue.svg) left/3rem 1.9375rem no-repeat;
    padding-left: 3.4375rem;
    font-family: var(--serif);
    font-size: 2.9375rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: inherit;
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__tel-link {
      background-size: 9.0047393365vw 5.6872037915vw;
      padding-left: 11.8483412322vw;
      font-size: 8.2938388626vw;
    }
  }
  .p-fixed-nav__tel-txt {
    font-size: 0.875rem;
  }
  @media screen and (max-width: 767px) {
    .p-fixed-nav__tel-txt {
      font-size: 2.1327014218vw;
    }
  }
  .p-fixed-nav__tel-txt .dot {
    margin-inline: -0.2em;
  }
}
@layer utilities {
  @media screen and (max-width: 767px) {
    .u-hidden-ltSP {
      display: none;
    }
  }
  @media screen and (max-width: 991px) {
    .u-hidden-ltTAB {
      display: none;
    }
  }
  @media screen and (min-width: 768px) {
    .u-hidden-gtTAB {
      display: none;
    }
  }
  @media screen and (min-width: 992px) {
    .u-hidden-gtPC {
      display: none;
    }
  }
}
@layer utilities {
  .screen-reader-text,
  .u-screen-reader {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    word-wrap: normal;
  }
}
@layer utilities {
  .u-ta-left {
    text-align: left;
  }
  .u-ta-center {
    text-align: center;
  }
  .u-ta-right {
    text-align: right;
  }
  @media screen and (max-width: 767px) {
    .u-SP-ta-left {
      text-align: left;
    }
    .u-SP-ta-center {
      text-align: center;
    }
    .u-SP-ta-right {
      text-align: right;
    }
  }
}
@layer utilities {
  .u-ls-1 {
    letter-spacing: 0.1em;
  }
  .u-ls-1-5 {
    letter-spacing: 0.15em;
  }
}