@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Red+Rose:wght@300..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap";
@layer foundation, vendor, layout, component, project, page, utilities;
:root {
  --sans-serif: "Zen Kaku Gothic New", "ヒラギノ角ゴシック", "Hiragino Sans",
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  --en-serif: "Red Rose", serif;
  --base: #fff5e4;
  --main: #2c2c2c;
  --header-h: 8.125rem;
  --container-w: 77.5rem;
  --container-space: 5rem;
  --color-orange: #ec6d54;
  --color-green: #00934c;
  --color-blue: #3896ce;
  --color-yellow: #eec22c;
}
@media screen and (max-width: 1365px) and (min-width: 768px) {
  :root {
    --header-h: 9.5168374817vw;
    --container-w: 90.775988287vw;
    --container-space: 5.8565153734vw;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --header-h: 26.6666666667vw;
    --container-w: 100%;
    --container-space: 5.3333333333vw;
  }
}

@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;
    scroll-padding-top: var(--header-h);
  }
  body {
    min-width: 320px;
    font-family: var(--sans-serif);
    line-height: 1.8;
    color: var(--main);
    background: var(--base);
    text-size-adjust: 100%;
  }
  body.is-main-nav-expanded {
    overflow: hidden;
  }
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  :focus-visible {
    outline: 2px solid blue;
  }
  img,
  svg,
  iframe,
  video,
  picture {
    max-width: 100%;
  }
  img {
    height: auto;
    font-size: 12px;
    letter-spacing: 0;
  }
  a {
    color: inherit;
    word-break: break-all;
    text-decoration: none;
  }
  @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] {
    font: inherit;
    cursor: pointer;
  }
  button,
  input,
  select,
  textarea {
    font: inherit;
    color: inherit;
  }
  label {
    display: inline-block;
    cursor: pointer;
  }
}
@layer foundation {
  @keyframes fadeInBounce {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: scale(0.9);
    }
    20% {
      visibility: visible;
      opacity: 1;
    }
    40% {
      opacity: 1;
      transform: scale(1.02);
    }
    100% {
      visibility: visible;
      opacity: 1;
      transform: scale(1);
    }
  }
  .js-bounce-in {
    visibility: hidden;
    opacity: 0;
  }
  .js-bounce-in.is-active {
    animation: fadeInBounce 0.7s ease-out 0.1s forwards;
  }
  .js-fade-in {
    filter: opacity(0);
    transform: matrix(1, 0, 0, 1, 0, -60);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
  }
  .js-fade-in.is-active {
    filter: opacity(1);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}
/*========================================
  コンテンツ（メインコンテンツとサイドバーのラッパー）
========================================*/
@layer layout {
  .l-content.-journal {
    display: grid;
    grid-template-columns: auto 49.0625rem;
    gap: 0.625rem;
    margin-top: calc(var(--header-h) * -1);
    padding-top: calc(var(--header-h) + 0.4375rem);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-content.-journal {
      grid-template-columns: auto 57.467057101vw;
      gap: 0.7320644217vw;
      padding-top: calc(var(--header-h) + 0.5124450952vw);
    }
  }
  @media screen and (max-width: 767px) {
    .l-content.-journal {
      grid-template-columns: 1fr;
      gap: 8vw;
      padding-top: calc(var(--header-h) + 5.3333333333vw);
    }
  }
  .l-content__header.-journal {
    padding-block: 7.8125rem 9.375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-content__header.-journal {
      padding-block: 9.1508052709vw 10.980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-content__header.-journal {
      padding-block: 0;
    }
  }
}
/* ========================================
  サイト共通のフッター
======================================== */
@layer layout {
  .l-footer {
    border-top: 2px solid var(--main);
  }
  @media screen and (max-width: 767px) {
    .l-footer {
      --container-space: 13.3333333333vw;
    }
  }
  .l-footer__inner {
    padding-block: 5.3125rem 5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__inner {
      padding-block: 6.2225475842vw 5.8565153734vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__inner {
      padding-block: 13.3333333333vw 18.6666666667vw;
    }
  }
  .l-footer__main {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__main {
      gap: 5.8565153734vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__main {
      grid-template-columns: 1fr;
      gap: 8vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__logo {
      text-align: center;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__logo img {
      width: 24.1581259151vw;
      height: 8.1259150805vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__logo img {
      width: 71.6vw;
      height: 24.1333333333vw;
    }
  }
  .l-footer__nav {
    display: grid;
    grid-template-columns: auto repeat(2, 1fr);
    gap: 3.125rem;
    margin-top: -0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__nav {
      gap: 3.6603221083vw;
      margin-top: -0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__nav {
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 0;
    }
  }
  @media screen and (min-width: 768px) {
    .l-footer__menu > li + li {
      margin-top: 1lh;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__menu li {
      border-top: 1px solid var(--main);
    }
  }
  .l-footer__menu li.-mt-sm {
    margin-top: 0.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__menu li.-mt-sm {
      margin-top: 0.3660322108vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__menu li.-btn-wrap {
      margin-top: 8vw;
      border-top: none;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__menu li.-border-bottom-sp {
      border-bottom: 1px solid var(--main);
    }
  }
  .l-footer__link {
    position: relative;
    display: block;
    font-size: 1rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__link {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__link {
      display: grid;
      align-items: center;
      min-height: 15.0666666667vw;
      font-size: 4.2666666667vw;
    }
  }
  .l-footer__link[target=_blank] .l-footer__link-icon {
    display: inline-block;
    width: 0.8125rem;
    height: 0.6875rem;
    margin-left: 1.0625rem;
    content: "";
    background: url("../img/common/icon/icon_blank_black.svg") center/contain no-repeat;
    border-radius: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__link[target=_blank] .l-footer__link-icon {
      width: 0.9516837482vw;
      height: 0.8052708638vw;
      margin-left: 1.2445095168vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__link[target=_blank] .l-footer__link-icon {
      position: absolute;
      inset-block: 0;
      right: 0;
      display: block;
      width: 3.7333333333vw;
      height: 2.9333333333vw;
      margin-block: auto;
    }
  }
  .l-footer__link[target=_blank] .l-footer__link-icon::before, .l-footer__link[target=_blank] .l-footer__link-icon::after {
    display: none;
  }
  @media (any-hover: hover) {
    .l-footer__link .l-footer__link-txt {
      position: relative;
      background: linear-gradient(var(--main), var(--main)) 100% 100%/0 1px no-repeat;
      transition: background-size 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .l-footer__link:hover .l-footer__link-txt {
      background-position: 0 100%;
      background-size: 100% 1px;
    }
  }
  .l-footer__link-txt {
    position: relative;
    display: inline-block;
    width: fit-content;
  }
  @media screen and (max-width: 767px) {
    .l-footer__link-icon {
      position: absolute;
      inset-block: 0;
      right: 0;
      display: block;
      width: 3.7333333333vw;
      height: 1px;
      margin-block: auto;
      background-color: var(--main);
      border-radius: 100vmax;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__link-icon::before, .l-footer__link-icon::after {
      position: absolute;
      right: 0;
      display: block;
      width: 1.6vw;
      height: 1px;
      content: "";
      background-color: var(--main);
      border-radius: 100vmax;
      transform-origin: right;
    }
  }
  .l-footer__link-icon::before {
    transform: rotate(45deg);
    bottom: 0;
  }
  .l-footer__link-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .l-footer__acc summary {
    position: relative;
    cursor: pointer;
    list-style: none;
  }
  .l-footer__acc summary::-webkit-details-marker {
    display: none;
  }
  @media screen and (min-width: 768px) {
    .l-footer__acc summary {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      word-wrap: normal;
      clip: rect(1px, 1px, 1px, 1px);
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc summary {
      display: grid;
      align-items: center;
      min-height: 15.0666666667vw;
      font-size: 4.2666666667vw;
      font-weight: 500;
    }
  }
  .l-footer__acc.is-pc > summary {
    cursor: default;
  }
  .l-footer__acc.is-pc .l-footer__acc-icon {
    display: none;
  }
  .l-footer__acc[open] .l-footer__acc-icon::after {
    transform: rotate(0);
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-list {
      padding-bottom: 3.7333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-list > li {
      border-top: none;
    }
  }
  .l-footer__acc-list > li + li {
    margin-top: 0.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__acc-list > li + li {
      margin-top: 0.3660322108vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-list > li + li {
      margin-top: 2.4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-list .l-footer__link {
      min-height: auto;
      font-size: 3.7333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-list .l-footer__link::after {
      display: none;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-icon {
      position: absolute;
      inset-block: 0;
      right: 0;
      display: block;
      width: 3.7333333333vw;
      height: 3.7333333333vw;
      margin-block: auto;
      transition: transform 0.3s ease;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-icon::before, .l-footer__acc-icon::after {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 1px;
      margin: auto;
      content: "";
      background: var(--main);
      transition: transform 0.3s ease;
      border-radius: 100vmax;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__acc-icon::after {
      transform: rotate(-90deg);
    }
  }
  .l-footer__contact-btn {
    display: grid;
    place-items: center;
    width: 14.375rem;
    height: 4.375rem;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--base);
    border: 1px solid #2c2c2c;
    border-radius: 5px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__contact-btn {
      width: 16.8374816984vw;
      height: 5.1244509517vw;
      font-size: 1.1713030747vw;
      border-radius: 0.3660322108vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__contact-btn {
      width: 100%;
      height: 18.6666666667vw;
      font-size: 4.2666666667vw;
      border-radius: 1.3333333333vw;
    }
  }
  @media (hover: hover) {
    .l-footer__contact-btn {
      transition: 0.3s;
      transition-property: background-color, color;
    }
    .l-footer__contact-btn:hover {
      color: var(--base);
      background-color: var(--main);
    }
  }
  .l-footer__sub-content {
    padding-block: 1.25rem;
    background-color: #373532;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__sub-content {
      padding-block: 1.4641288433vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__sub-content {
      padding-block: 6.6666666667vw;
    }
  }
  .l-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__legal-links {
      gap: 2.7086383602vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__legal-links {
      gap: 2.6666666667vw 0;
    }
  }
  .l-footer__legal-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--base);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__legal-link {
      font-size: 1.0248901903vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-footer__legal-link {
      flex: 1 1 50%;
      font-size: 3.2vw;
    }
  }
  .l-footer__legal-link.-blank span::after {
    display: inline-block;
    width: 0.8125rem;
    height: 0.6875rem;
    margin-left: 0.625rem;
    content: "";
    background: url("../img/common/icon/icon_blank_beige.svg") center/contain no-repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-footer__legal-link.-blank span::after {
      width: 0.9516837482vw;
      height: 0.8052708638vw;
      margin-left: 0.7320644217vw;
    }
  }
  @media (any-hover: hover) {
    .l-footer__legal-link span {
      position: relative;
      background: linear-gradient(var(--base), var(--base)) 100% 100%/0 1px no-repeat;
      transition: background-size 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .l-footer__legal-link:hover span {
      background-position: 0 100%;
      background-size: 100% 1px;
    }
  }
}
/* ========================================
  サイト共通のヘッダー
======================================== */
@layer layout {
  .l-header {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-h);
    transition: transform 0.3s ease;
  }
  .l-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, #fff5e4 80%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  .l-header.is-fixed::before {
    opacity: 1;
  }
  .l-header.is-ready {
    transform: translateY(-100%);
  }
  .l-header.is-ready::before {
    opacity: 1;
  }
  .l-header.is-stuck {
    transform: translateY(0);
  }
  .l-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    padding-block: 0.625rem 1.25rem;
    padding-inline: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__inner {
      padding-block: 0.7320644217vw 1.4641288433vw;
      padding-inline: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__inner {
      padding-block: 1.3333333333vw 5.3333333333vw;
      padding-inline: 2.6666666667vw;
    }
  }
  .l-header__logo {
    margin: 0;
  }
  .l-header__logo a {
    display: grid;
    text-decoration: none;
  }
  .l-header__main-logo-img {
    display: block;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__main-logo-img img {
      width: 22.1083455344vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__main-logo-img img {
      width: 58.1333333333vw;
    }
  }
  .l-header__rohto-logo-img {
    display: block;
    margin-top: 0.125rem;
    line-height: 1px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__rohto-logo-img {
      margin-top: 0.1464128843vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__rohto-logo-img {
      margin-top: 0;
    }
  }
  .l-header__rohto-logo-img img {
    aspect-ratio: 150/19;
    width: 10.75rem;
    height: 1.375rem;
    vertical-align: bottom;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__rohto-logo-img img {
      width: 12.5915080527vw;
      height: 1.6105417277vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__rohto-logo-img img {
      width: 32vw;
      height: 4vw;
    }
  }
  .l-header__nav-btns {
    display: flex;
    gap: 1.125rem;
    align-items: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__nav-btns {
      gap: 1.317715959vw;
    }
  }
  .l-header__btn {
    display: inline-grid;
    place-items: center;
    min-width: 12.5rem;
    min-height: 3.125rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--main);
    background: var(--base);
    border: 1px solid var(--main);
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__btn {
      min-width: 10.980966325vw;
      min-height: 3.6603221083vw;
      padding: 0.7320644217vw 1.4641288433vw;
      font-size: 1.0248901903vw;
    }
  }
  @media (hover: hover) {
    .l-header__btn {
      transition: 0.3s;
      transition-property: color, background;
    }
    .l-header__btn:hover {
      color: var(--base);
      background: var(--main);
    }
  }
  .l-header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 3.125rem;
    cursor: pointer;
    background: var(--main);
    border: 1px solid var(--main);
    border-radius: 100vmax;
    transition: background 0.3s ease;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__menu-btn {
      width: 5.8565153734vw;
      height: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__menu-btn {
      width: 18.6666666667vw;
      height: 12vw;
    }
  }
  @media (hover: hover) {
    .l-header__menu-btn {
      transition: 0.3s;
      transition-property: background;
    }
    .l-header__menu-btn .l-header__menu-dot {
      transition: 0.3s;
      transition-property: background;
    }
    .l-header__menu-btn:hover {
      background: var(--base);
    }
    .l-header__menu-btn:hover .l-header__menu-dot {
      background: var(--main);
    }
  }
  .l-header__menu-dots {
    display: flex;
    gap: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__menu-dots {
      gap: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__menu-dots {
      gap: 2vw;
    }
  }
  .l-header__menu-dot {
    width: 0.3125rem;
    height: 0.3125rem;
    background-color: var(--base);
    border-radius: 50%;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-header__menu-dot {
      width: 0.3660322108vw;
      height: 0.3660322108vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-header__menu-dot {
      width: 1.0666666667vw;
      height: 1.0666666667vw;
    }
  }
}
/*========================================
  メインコンテンツ
========================================*/
@layer layout {}
/* ========================================
  ヘッダーのナビゲーション（グローバルナビ）
======================================== */
@layer layout {
  .l-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    visibility: hidden;
    height: 100svh;
    height: 100vh;
    overflow: auto;
    overscroll-behavior-y: contain;
    background: var(--main);
    opacity: 0;
    transition: all 0.3s ease;
  }
  .l-nav.is-expanded {
    visibility: visible;
    opacity: 1;
  }
  .l-nav__inner {
    --container-w: 72.5rem;
    position: relative;
    padding-block: 4.375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__inner {
      --container-w: 84.9194729136vw;
      padding-block: 5.1244509517vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__inner {
      padding-block: 12.8vw;
    }
  }
  .l-nav__eye {
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__eye img {
      width: 14.125rem;
      height: 2.125rem;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__eye img {
      width: 42.4vw;
      height: 6.4vw;
    }
  }
  .l-nav__close-btn {
    position: fixed;
    top: 2.5rem;
    left: calc(50% + 37.5rem);
    z-index: 2;
    width: 5.625rem;
    height: 3.75rem;
    cursor: pointer;
    background-color: var(--base);
    border: none;
    border-radius: 100vmax;
    transform: translateX(-50%);
    transition: all 0.3s ease;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__close-btn {
      top: 2.9282576867vw;
      left: calc(50% + 43.9238653001vw);
      width: 6.588579795vw;
      height: 4.39238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__close-btn {
      top: 4vw;
      right: 2.6666666667vw;
      left: initial;
      width: 18.6666666667vw;
      height: 12vw;
      transform: none;
    }
  }
  .l-nav__close-btn::before, .l-nav__close-btn::after {
    position: absolute;
    inset: 0;
    display: block;
    width: 1.5625rem;
    height: 2px;
    margin: auto;
    content: "";
    background-color: var(--main);
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__close-btn::before, .l-nav__close-btn::after {
      width: 1.8301610542vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__close-btn::before, .l-nav__close-btn::after {
      width: 6.6666666667vw;
    }
  }
  .l-nav__close-btn::before {
    transform: rotate(135deg);
  }
  .l-nav__close-btn::after {
    transform: rotate(-135deg);
  }
  .l-nav__wrap {
    padding: 2.5rem 6.875rem;
    margin-top: 2.5rem;
    background-color: #e4b206;
    border-radius: 50px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__wrap {
      padding: 3.074670571vw 8.0527086384vw;
      margin-top: 2.9282576867vw;
      border-radius: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__wrap {
      padding: 13.3333333333vw 4vw;
      margin-top: 6.6666666667vw;
      border-radius: 6.6666666667vw;
    }
  }
  .l-nav__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  @media screen and (max-width: 767px) {
    .l-nav__header {
      flex-direction: column;
      gap: 6.6666666667vw;
      align-items: center;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__logo img {
      width: 15.3733528551vw;
      height: 5.1244509517vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__logo img {
      width: 81.3333333333vw;
      height: 13.7333333333vw;
    }
  }
  .l-nav__header-btns {
    display: flex;
    gap: 0.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__header-btns {
      gap: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__header-btns {
      gap: 4vw;
    }
  }
  .l-nav__header-btn {
    display: grid;
    place-items: center;
    width: 12.5rem;
    height: 3.125rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--main);
    background-color: var(--base);
    border: 1px solid var(--main);
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__header-btn {
      width: 14.6412884334vw;
      height: 3.6603221083vw;
      font-size: 1.0248901903vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__header-btn {
      width: 53.3333333333vw;
      height: 13.3333333333vw;
      font-size: 3.7333333333vw;
    }
  }
  @media (hover: hover) {
    .l-nav__header-btn {
      transition: 0.3s;
      transition-property: background-color, color;
    }
    .l-nav__header-btn:hover {
      color: var(--base);
      background-color: var(--main);
    }
  }
  .l-nav__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.625rem;
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__content {
      gap: 3.074670571vw;
      margin-top: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__content {
      grid-template-columns: 1fr;
      gap: 0;
      margin-top: 5.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__column:last-child {
      border-bottom: 1px solid var(--main);
    }
  }
  .l-nav__item {
    border-top: 1px solid var(--main);
  }
  @media screen and (min-width: 768px) {
    .l-nav__item:last-child {
      border-bottom: 1px solid var(--main);
    }
  }
  .l-nav__link {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 4.375rem;
    font-size: 1.125rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__link {
      min-height: 5.1244509517vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__link {
      min-height: 14.6666666667vw;
      font-size: 4.2666666667vw;
    }
  }
  .l-nav__link[target=_blank] .l-nav__link-icon {
    width: 0.8125rem;
    height: 0.6875rem;
    background: url("../img/common/icon/icon_blank_black.svg") center/contain no-repeat;
    border-radius: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__link[target=_blank] .l-nav__link-icon {
      width: 0.9516837482vw;
      height: 0.8052708638vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__link[target=_blank] .l-nav__link-icon {
      width: 3.7333333333vw;
      height: 2.9333333333vw;
    }
  }
  .l-nav__link[target=_blank] .l-nav__link-icon::before, .l-nav__link[target=_blank] .l-nav__link-icon::after {
    display: none;
  }
  @media (any-hover: hover) {
    .l-nav__link .l-nav__link-txt {
      position: relative;
      display: inline;
      background: linear-gradient(var(--main), var(--main)) 100% 100%/0 1px no-repeat;
      transition: background-size 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    .l-nav__link:hover .l-nav__link-txt {
      background-position: 0 100%;
      background-size: 100% 1px;
    }
  }
  .l-nav__link-txt {
    position: relative;
    display: inline-block;
    width: fit-content;
  }
  .l-nav__link-icon {
    position: absolute;
    inset-block: 0;
    right: 0;
    display: block;
    width: 0.875rem;
    height: 1px;
    margin-block: auto;
    background-color: var(--main);
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__link-icon {
      width: 1.0248901903vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__link-icon {
      width: 3.7333333333vw;
    }
  }
  .l-nav__link-icon::before, .l-nav__link-icon::after {
    position: absolute;
    right: 0;
    display: block;
    width: 0.375rem;
    height: 1px;
    content: "";
    background-color: var(--main);
    border-radius: 100vmax;
    transform-origin: right;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__link-icon::before, .l-nav__link-icon::after {
      width: 0.439238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__link-icon::before, .l-nav__link-icon::after {
      width: 1.6vw;
    }
  }
  .l-nav__link-icon::before {
    transform: rotate(45deg);
    bottom: 0;
  }
  .l-nav__link-icon::after {
    transform: rotate(-45deg);
    top: 0;
  }
  .l-nav__acc > summary {
    position: relative;
    display: grid;
    align-items: center;
    min-height: 4.375rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    list-style: none;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__acc > summary {
      min-height: 5.1244509517vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__acc > summary {
      min-height: 14.6666666667vw;
      font-size: 4.2666666667vw;
    }
  }
  .l-nav__acc > summary::-webkit-details-marker {
    display: none;
  }
  .l-nav__acc[open] .l-nav__acc-icon::after {
    transform: rotate(0);
  }
  .l-nav__acc-list {
    padding-bottom: 0.9375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__acc-list {
      padding-bottom: 1.0980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__acc-list {
      padding-bottom: 4vw;
    }
  }
  .l-nav__acc-list li + li {
    margin-top: 0.4375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__acc-list li + li {
      margin-top: 0.5124450952vw;
    }
  }
  .l-nav__acc-list li .l-nav__link {
    min-height: auto;
    font-size: 1rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__acc-list li .l-nav__link {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__acc-list li .l-nav__link {
      font-size: 3.7333333333vw;
    }
  }
  .l-nav__acc-list li .l-nav__link::after {
    display: none;
  }
  .l-nav__acc-icon {
    position: absolute;
    inset-block: 0;
    right: 0;
    display: block;
    width: 0.875rem;
    height: 0.875rem;
    margin-block: auto;
    transition: transform 0.3s ease;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .l-nav__acc-icon {
      width: 1.0248901903vw;
      height: 1.0248901903vw;
    }
  }
  @media screen and (max-width: 767px) {
    .l-nav__acc-icon {
      width: 3.7333333333vw;
      height: 3.7333333333vw;
    }
  }
  .l-nav__acc-icon::before, .l-nav__acc-icon::after {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 1px;
    margin: auto;
    content: "";
    background: var(--main);
    transition: transform 0.3s ease;
    border-radius: 100vmax;
  }
  .l-nav__acc-icon::after {
    transform: rotate(-90deg);
  }
}
/* ========================================
  ページ全体のレイアウト
======================================== */
@layer layout {
  .l-page {
    display: grid;
    grid-template: "header" "main" 1fr "footer"/100%;
    min-height: 100vh;
    min-height: 100svh;
    overflow-x: clip;
  }
  .l-page__header {
    grid-area: header;
  }
  .l-page__main {
    grid-area: main;
  }
  .l-page__footer {
    grid-area: footer;
  }
}
@layer component {
  .c-btn, .c-btn-outline-white, .c-btn-white, .c-btn-outline-main, .c-btn-main {
    --btn-w: auto;
    --btn-h: auto;
    --btn-padding-x: 1rem;
    --btn-padding-y: 0.5rem;
    --btn-border-width: 1px;
    --btn-border-color: transparent;
    --btn-bg-color: transparent;
    --btn-color: var(--main);
    --btn-hover-border-color: var(--main);
    --btn-hover-bg: var(--main);
    --btn-hover-color: #fff;
    --btn-border-radius: 100vmax;
    --btn-focus-ring-color: rgb(var(--primary-color-rgb), 0.25);
    --btn-focus-ring-width: 0.25rem;
    position: relative;
    display: inline-grid;
    grid-auto-flow: column;
    gap: 0.5em;
    place-content: center;
    align-items: center;
    width: min(100%, var(--btn-w));
    height: var(--btn-h);
    padding-block: var(--btn-padding-y);
    padding-inline: var(--btn-padding-x);
    font-weight: 500;
    line-height: 1.1;
    color: var(--btn-color);
    text-decoration: none;
    cursor: pointer;
    user-select: none;
    background-color: var(--btn-bg-color);
    border: var(--btn-border-width) solid var(--btn-border-color);
    border-radius: var(--btn-border-radius);
  }
  .-place-start.c-btn, .-place-start.c-btn-outline-white, .-place-start.c-btn-white, .-place-start.c-btn-outline-main, .-place-start.c-btn-main {
    place-content: center start;
  }
  @media (any-hover: hover) {
    .c-btn, .c-btn-outline-white, .c-btn-white, .c-btn-outline-main, .c-btn-main {
      transition: border 0.3s, background-color 0.3s, color 0.3s, filter 0.3s;
    }
    .c-btn:hover, .c-btn-outline-white:hover, .c-btn-white:hover, .c-btn-outline-main:hover, .c-btn-main:hover {
      --btn-border-color: var(--btn-hover-border-color);
      --btn-bg-color: var(--btn-hover-bg);
      --btn-color: var(--btn-hover-color);
    }
  }
  .c-btn:active, .c-btn-outline-white:active, .c-btn-white:active, .c-btn-outline-main:active, .c-btn-main:active {
    transform: translateY(1px);
  }
  .c-btn:disabled, .c-btn-outline-white:disabled, .c-btn-white:disabled, .c-btn-outline-main:disabled, .c-btn-main:disabled, .c-btn[aria-disabled=true], [aria-disabled=true].c-btn-outline-white, [aria-disabled=true].c-btn-white, [aria-disabled=true].c-btn-outline-main, [aria-disabled=true].c-btn-main {
    pointer-events: none;
    opacity: 0.65;
  }
  .c-btn-main {
    --btn-border-color: var(--main);
    --btn-bg-color: var(--main);
    --btn-color: var(--base);
  }
  @media (any-hover: hover) {
    .c-btn-main {
      --btn-hover-border-color: var(--main);
      --btn-hover-bg: var(--base);
      --btn-hover-color: var(--main);
    }
  }
  .c-btn-outline-main {
    --btn-border-color: var(--main);
    --btn-bg-color: var(--base);
    --btn-color: var(--main);
  }
  @media (any-hover: hover) {
    .c-btn-outline-main {
      --btn-hover-border-color: var(--main);
      --btn-hover-bg: var(--main);
      --btn-hover-color: var(--base);
    }
  }
  .c-btn-white {
    --btn-border-color: var(--main);
    --btn-bg-color: var(--base);
    --btn-color: var(--main);
  }
  @media (any-hover: hover) {
    .c-btn-white {
      --btn-hover-border-color: var(--main);
      --btn-hover-bg: var(--main);
      --btn-hover-color: var(--base);
    }
  }
  .c-btn-outline-white {
    --btn-border-color: var(--base);
    --btn-bg-color: #fff;
    --btn-color: var(--base);
  }
  @media (any-hover: hover) {
    .c-btn-outline-white {
      --btn-hover-border-color: ;
      --btn-hover-bg: ;
      --btn-hover-color: ;
    }
  }
  .c-btn-size-default {
    --btn-w: 15.625rem;
    --btn-h: 2.8125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-btn-size-default {
      --btn-w: 18.3016105417vw;
      --btn-h: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-btn-size-default {
      --btn-w: 66.6666666667vw;
      --btn-h: 9.3333333333vw;
    }
  }
  .c-btn-size-lg {
    --btn-w: 24.375rem;
    --btn-h: 5.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-btn-size-lg {
      --btn-w: 28.5505124451vw;
      --btn-h: 6.588579795vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-btn-size-lg {
      --btn-w: 81.3333333333vw;
      --btn-h: 16vw;
    }
  }
  .c-btn-w-full {
    --btn-w: 100%;
  }
  @media screen and (max-width: 767px) {
    .c-btn-w-full {
      --btn-w: 100%;
    }
  }
}
@layer component {
  .c-container {
    width: min(100% - var(--container-space), var(--container-w));
    margin-inline: auto;
  }
  .c-container-md {
    --container-w: 65rem;
    width: min(100% - var(--container-space), var(--container-w));
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-container-md {
      --container-w: 76.1346998536vw;
    }
  }
  .c-container-s {
    --container-w: 49.0625rem;
    width: min(100% - var(--container-space), var(--container-w));
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-container-s {
      --container-w: 57.467057101vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-container-s {
      --container-space: 13.3333333333vw;
    }
  }
}
@layer component {
  .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-circle-arrow {
    display: grid;
    place-content: center;
    aspect-ratio: 9/5;
    background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/0.875rem 0.625rem no-repeat;
    border: 1px solid var(--main);
    border-radius: 100vmax;
  }
  .c-icon-circle-arrow.-color-beige {
    background-color: var(--base);
    background-image: url("../img/common/icon/icon_right_solid_black.svg");
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-icon-circle-arrow {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-icon-circle-arrow {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  .c-icon-solid-arrow {
    width: 0.875rem;
    height: 0.625rem;
    background-image: url("../img/common/icon/icon_right_solid_black.svg");
  }
  .c-icon-solid-arrow.-color-beige {
    background-image: url("../img/common/icon/icon_right_solid_beige.svg");
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-icon-solid-arrow {
      width: 1.0248901903vw;
      height: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-icon-solid-arrow {
      width: 3.7333333333vw;
      height: 2.6666666667vw;
    }
  }
  .c-icon-blank {
    width: 0.8125rem;
    height: 0.6875rem;
    background-image: url("../img/common/icon/icon_blank_black.svg");
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-icon-blank {
      width: 0.9516837482vw;
      height: 0.8052708638vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-icon-blank {
      width: 1.7333333333vw;
      height: 1.4666666667vw;
    }
  }
}
@layer component {
  .c-bg-noise-yellow {
    background: url("../img/common/bg_yellow.jpg") 0/3.125rem repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-bg-noise-yellow {
      background-size: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-bg-noise-yellow {
      background-size: 6.6666666667vw;
    }
  }
  .c-bg-noise-beige {
    background: url("../img/common/bg_beige.jpg") 0/3.125rem repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-bg-noise-beige {
      background-size: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-bg-noise-beige {
      background-size: 6.6666666667vw;
    }
  }
  .c-bg-noise-beige-square {
    background: linear-gradient(0deg, transparent calc(100% - 1px), rgba(201, 192, 177, 0.3) calc(100% - 1px)) center/1.875rem 1.875rem repeat, linear-gradient(90deg, transparent calc(100% - 1px), rgba(201, 192, 177, 0.3) calc(100% - 1px)) center/1.875rem 1.875rem repeat;
    background-color: #fff;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-bg-noise-beige-square {
      background-size: 2.196193265vw 2.196193265vw, 2.196193265vw 2.196193265vw, 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-bg-noise-beige-square {
      background-size: 4vw 4vw, 4vw 4vw, 6.6666666667vw;
    }
  }
  .c-bg-deco-group-beige {
    background: url(../img/common/bg_deco_group_beige.webp) -20.8125rem 15.875rem/59.6875rem 30.625rem repeat-x;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-bg-deco-group-beige {
      background-position: -24.3777452416vw 18.5944363104vw;
      background-size: 69.9121522694vw 35.8711566618vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-bg-deco-group-beige {
      background-image: url(../img/common/bg_deco_group_beige_sp.webp);
      background-position: 0 87.2vw;
      background-size: 100vw 67.8666666667vw;
    }
  }
  .c-bg-yellow {
    background-color: var(--color-yellow);
  }
  .c-bg-beige {
    background-color: #fff5e4;
  }
}
@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-txt-br-sp {
      display: block;
    }
  }
}
@layer component {
  .c-morph {
    position: relative;
    width: 100%;
    aspect-ratio: 398/403;
    background: transparent;
  }
  .c-morph svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  .c-morph .spin {
    transform-origin: 50% 50%;
    will-change: transform;
  }
}
@layer component {
  .c-txt-uppercase {
    text-transform: uppercase;
  }
  .c-txt-notes.-notes-01 {
    display: grid;
    grid-template-columns: 1.5rem auto;
    font-size: 0.75rem;
    gap: 0.875rem 0.3125rem;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-txt-notes.-notes-01 {
      font-size: 0.878477306vw;
      gap: 1.0248901903vw 0.3660322108vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-txt-notes.-notes-01 {
      display: inline-block;
      font-size: 3.2vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-txt-notes.-notes-01 .notes-icon {
      margin-right: 4vw;
    }
  }
  .c-txt-notes.-notes-02 {
    display: grid;
    grid-template-columns: auto 1fr;
    font-size: 0.75rem;
    gap: 0.875rem 0.3125rem;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-txt-notes.-notes-02 {
      font-size: 0.878477306vw;
      gap: 1.0248901903vw 0.3660322108vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-txt-notes.-notes-02 {
      display: inline-block;
      font-size: 3.2vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-txt-notes.-notes-02 .notes-icon {
      margin-right: 4vw;
    }
  }
  .c-txt-description {
    font-size: 0.75rem;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .c-txt-description {
      font-size: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .c-txt-description {
      font-size: 3.2vw;
    }
  }
}
@layer component {
  .c-list-disc > li {
    position: relative;
    padding-left: 1em;
  }
  .c-list-disc > li::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(0.5lh - 0.175em);
    left: 0;
    width: 0.35em;
    height: 0.35em;
    background-color: var(--color-green);
    border-radius: 50%;
  }
}
@layer component {
  .c-link-arrow-left {
    position: relative;
    padding-left: 2em;
  }
  .c-link-arrow-left::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.1em;
    left: 0;
    width: 1.38em;
    height: 1.38em;
    background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/45% no-repeat;
    border-radius: 50%;
  }
  @media (hover: hover) {
    .c-link-arrow-left:hover {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }
  }
  .c-link-underline {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
  @media screen and (max-width: 767px) {
    .c-link-underline {
      text-underline-offset: 2px;
    }
  }
  @media (hover: hover) {
    .c-link-underline:hover {
      text-decoration: none;
    }
  }
}
@layer project {
  .p-form {
    margin-top: 4.6875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form {
      margin-top: 5.4904831625vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form {
      margin-top: 10.6666666667vw;
    }
  }
  fieldset {
    padding: 0;
    border: none;
  }
  .p-form__row {
    display: grid;
    grid-template-columns: 15.625rem 1fr;
    gap: 0 3.75rem;
    align-items: start;
    width: 100%;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__row {
      grid-template-columns: 18.3016105417vw 1fr;
      gap: 0 4.39238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__row {
      grid-template-columns: 1fr;
      gap: 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__row.-fieldset {
      gap: 6.1333333333vw;
    }
  }
  .p-form__row.-fieldset fieldset {
    display: contents;
  }
  .p-form__row.-fieldset .p-form__label {
    padding-top: 0;
  }
  .p-form__row.-fieldset + .p-form__row {
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__row.-fieldset + .p-form__row {
      margin-top: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__row.-fieldset + .p-form__row {
      margin-top: 6.6666666667vw;
    }
  }
  .p-form__row + .p-form__row {
    margin-top: 1.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__row + .p-form__row {
      margin-top: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__row + .p-form__row {
      margin-top: 3.6vw;
    }
  }
  .p-form__label {
    display: grid;
    grid-auto-flow: column;
    gap: 0.625rem;
    align-items: center;
    justify-content: start;
    padding-top: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__label {
      gap: 0.7320644217vw;
      padding-top: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__label {
      gap: 2.6666666667vw;
      padding-top: 0;
    }
  }
  .p-form__label-text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__label-text {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__label-text {
      font-size: 4.2666666667vw;
    }
  }
  .p-form__required,
  .p-form__any {
    display: grid;
    place-items: center;
    width: 4.6875rem;
    height: 1.5625rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.3;
    color: #fff;
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__required,
    .p-form__any {
      width: 5.4904831625vw;
      height: 1.8301610542vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__required,
    .p-form__any {
      width: 18vw;
      height: 6.6666666667vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-form__required {
    background-color: var(--color-orange);
  }
  .p-form__any {
    background-color: #67635d;
  }
  .p-form__input {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__input {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__input {
      font-size: 4.2666666667vw;
    }
  }
  .p-form__input input[type=text],
  .p-form__input input[type=email],
  .p-form__input input[type=tel],
  .p-form__input input[type=password] {
    width: 100%;
    height: 2.875rem;
    padding: 0.2em 1em;
    background-color: #fff;
    border: 1px solid #f5f1e2;
    border-radius: 10px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__input input[type=text],
    .p-form__input input[type=email],
    .p-form__input input[type=tel],
    .p-form__input input[type=password] {
      height: 3.3674963397vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__input input[type=text],
    .p-form__input input[type=email],
    .p-form__input input[type=tel],
    .p-form__input input[type=password] {
      height: 10.6666666667vw;
    }
  }
  .p-form__input textarea {
    width: 100%;
    height: 13.75rem;
    padding: 0.5em 1em;
    resize: vertical;
    background-color: #fff;
    border: 1px solid #f5f1e2;
    border-radius: 10px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__input textarea {
      height: 16.1054172767vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__input textarea {
      height: 48.5333333333vw;
    }
  }
  .p-form__input textarea::placeholder {
    color: #989798;
  }
  .p-form__input input[type=checkbox],
  .p-form__input input[type=radio] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }
  .p-form__input input[type=checkbox] + label,
  .p-form__input input[type=radio] + label {
    cursor: pointer;
  }
  .p-form__input input[type=checkbox]:focus + label,
  .p-form__input input[type=radio]:focus + label {
    text-decoration: underline;
  }
  .p-form__input input[type=checkbox]:disabled + label,
  .p-form__input input[type=radio]:disabled + label {
    color: #ccc;
    cursor: not-allowed;
  }
  .p-form__note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.1875rem;
    padding-left: 3.375rem;
    margin-top: 0.125rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.5;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__note {
      gap: 0.2196193265vw;
      padding-left: 3.953147877vw;
      margin-top: 0.1464128843vw;
      font-size: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__note {
      gap: 0.4vw;
      padding-left: 11.2vw;
      margin-top: -0.2666666667vw;
      font-size: 3.2vw;
      letter-spacing: -0.065em;
    }
  }
  .p-form__note::before {
    content: "※";
  }
  .p-form__privacy {
    background-color: #efdbc0;
    padding: 2rem 2.5rem 2.1875rem;
    margin-top: 3rem;
    border-radius: 10px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__privacy {
      padding: 2.3426061493vw 2.9282576867vw 2.5622254758vw;
      margin-top: 3.513909224vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__privacy {
      padding: 5.6vw 5.6vw 8vw;
      margin-top: 4.8vw;
      border-radius: 2.6666666667vw;
    }
  }
  .p-form__privacy-ttl {
    text-align: center;
    font-size: 1.3125rem;
    font-weight: 700;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__privacy-ttl {
      font-size: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__privacy-ttl {
      font-size: 5.6vw;
    }
  }
  .p-form__privacy-lead {
    margin-top: 1.25rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__privacy-lead {
      margin-top: 1.4641288433vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__privacy-lead {
      margin-top: 3.2vw;
      font-size: 4.2666666667vw;
      line-height: 1.75;
    }
  }
  .p-form__privacy-checkbox-wrap {
    margin-top: 1.125rem;
  }
  @media screen and (min-width: 768px) {
    .p-form__privacy-checkbox-wrap {
      width: fit-content;
      margin-inline: auto;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__privacy-checkbox-wrap {
      margin-top: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__privacy-checkbox-wrap {
      margin-top: 5.6vw;
    }
  }
  .p-form__submit-btn-wrap {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    width: fit-content;
    margin-inline: auto;
    margin-top: 3.4375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__submit-btn-wrap {
      gap: 1.4641288433vw;
      margin-top: 4.0263543192vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__submit-btn-wrap {
      flex-direction: column;
      align-items: center;
      gap: 5.3333333333vw;
      margin-top: 10.1333333333vw;
    }
  }
  .p-form__submit-btn-wrap.is-disabled {
    cursor: not-allowed;
  }
  .p-form__btn {
    --btn-h: 3.125rem;
    width: 14.5rem;
    font-size: 1.125rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__btn {
      --btn-h: 3.6603221083vw;
      width: 16.9838945827vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__btn {
      --btn-h: 12vw;
      width: 56vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-form__btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }
  .mwform-checkbox-field {
    display: grid;
  }
  .mwform-checkbox-field label {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 10px;
  }
  @media screen and (max-width: 767px) {
    .mwform-checkbox-field label {
      gap: 2vw;
    }
  }
  .mwform-checkbox-field label input[type=checkbox] {
    position: relative;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    margin: 0;
    appearance: none;
    background-color: #fff;
    border: 1px solid #efe8cc;
    border-radius: 5px;
    transition: 0.3s;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-checkbox-field label input[type=checkbox] {
      width: 2.0497803807vw;
      height: 2.0497803807vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-checkbox-field label input[type=checkbox] {
      width: 6.4vw;
      height: 6.4vw;
    }
  }
  .mwform-checkbox-field label input[type=checkbox]::before {
    transition: 0.3s;
  }
  .mwform-checkbox-field label input[type=checkbox]:checked::before {
    position: absolute;
    inset: 0;
    top: -0.1875rem;
    display: block;
    width: 0.9375rem;
    height: 0.4375rem;
    margin: auto;
    content: "";
    border-bottom: 2px solid var(--color-orange);
    border-left: 2px solid var(--color-orange);
    transform: rotate(-45deg);
  }
  .mwform-checkbox-field label .mwform-checkbox-field-text {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-checkbox-field label .mwform-checkbox-field-text {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-checkbox-field label .mwform-checkbox-field-text {
      font-size: 4.2666666667vw;
    }
  }
  .mwform-radio-field {
    display: grid;
  }
  .mwform-radio-field + .mwform-radio-field {
    margin-top: 0.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-radio-field + .mwform-radio-field {
      margin-top: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-radio-field + .mwform-radio-field {
      margin-top: 2.1333333333vw;
    }
  }
  .p-form__note + .mwform-radio-field {
    margin-top: 0.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-form__note + .mwform-radio-field {
      margin-top: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-form__note + .mwform-radio-field {
      margin-top: 3.7333333333vw;
    }
  }
  .mwform-radio-field label {
    position: relative;
    display: grid;
    grid-template-columns: 2.0625rem 1fr;
    gap: 1.375rem;
    line-height: 1.65;
  }
  @media screen and (min-width: 768px) {
    .mwform-radio-field label {
      align-items: center;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-radio-field label {
      grid-template-columns: 2.4158125915vw 1fr;
      gap: 1.6105417277vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-radio-field label {
      grid-template-columns: 9.0666666667vw 1fr;
      gap: 2.6666666667vw;
      letter-spacing: -0.03em;
    }
  }
  .mwform-radio-field label input[type=radio] {
    position: relative;
    top: 0.0625rem;
    width: 2.125rem;
    height: 2.125rem;
    margin: 0;
    appearance: none;
    background-color: #fff;
    border: 1px solid #f5f1e2;
    border-radius: 50%;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-radio-field label input[type=radio] {
      top: 0.0732064422vw;
      width: 2.4890190337vw;
      height: 2.4890190337vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-radio-field label input[type=radio] {
      top: -0.6666666667vw;
      left: -0.8vw;
      width: 9.0666666667vw;
      height: 9.0666666667vw;
    }
  }
  .mwform-radio-field label input[type=radio]:checked::before {
    position: absolute;
    inset-block: 0;
    inset-inline: 0;
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    margin: auto;
    content: "";
    background-color: var(--color-orange);
    border-radius: 50%;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-radio-field label input[type=radio]:checked::before {
      width: 1.317715959vw;
      height: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-radio-field label input[type=radio]:checked::before {
      width: 4.8vw;
      height: 4.8vw;
    }
  }
  .mwform-radio-field .mwform-radio-field-text {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mwform-radio-field .mwform-radio-field-text {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mwform-radio-field .mwform-radio-field-text {
      font-size: 4.2666666667vw;
    }
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important;
  }
  .mw_wp_form_confirm .p-form__row.-fieldset + .p-form__row {
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mw_wp_form_confirm .p-form__row.-fieldset + .p-form__row {
      margin-top: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mw_wp_form_confirm .p-form__row.-fieldset + .p-form__row {
      margin-top: 8vw;
    }
  }
  .mw_wp_form_confirm .p-form__row + .p-form__row {
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .mw_wp_form_confirm .p-form__row + .p-form__row {
      margin-top: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .mw_wp_form_confirm .p-form__row + .p-form__row {
      margin-top: 8vw;
    }
  }
  .mw_wp_form_confirm .p-form__label {
    padding-top: 0;
  }
  .mw_wp_form_confirm .p-form__note,
  .mw_wp_form_confirm .p-form__privacy {
    display: none;
  }
}
@layer project {
  .p-btn-solid-arrow {
    font-size: 1rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow {
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-btn-solid-arrow {
      font-size: 4.2666666667vw;
    }
  }
  @media (hover: hover) {
    .p-btn-solid-arrow .c-icon-circle-arrow {
      transition: background-color 0.3s;
    }
    .p-btn-solid-arrow:hover .c-icon-circle-arrow {
      background: var(--base) url("../img/common/icon/icon_right_solid_black.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow:hover .c-icon-circle-arrow {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-btn-solid-arrow:hover .c-icon-circle-arrow {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  @media (hover: hover) {
    .p-btn-solid-arrow:hover .c-icon-circle-arrow.-color-beige {
      background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow:hover .c-icon-circle-arrow.-color-beige {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-btn-solid-arrow:hover .c-icon-circle-arrow.-color-beige {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  .p-btn-solid-arrow__icon {
    position: absolute;
    inset-block: 0;
    right: 1.5625rem;
    margin-block: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow__icon {
      right: 1.8301610542vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-btn-solid-arrow__icon {
      right: 4vw;
    }
  }
  .p-btn-solid-arrow__circle-icon {
    position: absolute;
    inset-block: 0;
    right: 1.5625rem;
    margin-block: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow__circle-icon {
      right: 1.8301610542vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-btn-solid-arrow__circle-icon {
      right: 4vw;
    }
  }
  .p-btn-solid-arrow.c-btn-size-lg {
    --btn-padding-x: 1.875rem;
    --btn-padding-y: 0.5rem;
    font-size: 1.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow.c-btn-size-lg {
      --btn-padding-x: 2.196193265vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-btn-solid-arrow.c-btn-size-lg {
      --btn-padding-x: 5.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-btn-solid-arrow.c-btn-size-lg .p-btn-solid-arrow__circle-icon {
    width: 4.375rem;
    height: 2.8125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-btn-solid-arrow.c-btn-size-lg .p-btn-solid-arrow__circle-icon {
      width: 5.1244509517vw;
      height: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-btn-solid-arrow.c-btn-size-lg .p-btn-solid-arrow__circle-icon {
      width: 12vw;
      height: 8vw;
    }
  }
}
@layer project {
  .p-card {
    height: 100%;
  }
  .p-card__link {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    background-color: var(--base);
    border-radius: 15px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card__link {
      border-radius: 1.0980966325vw;
    }
  }
  @media (hover: hover) {
    .p-card__link {
      transform: translateZ(0);
      will-change: transform;
    }
    .p-card__link .p-card__img img {
      transition: transform 0.3s;
    }
    .p-card__link:hover .p-card__img img {
      transform: scale(1.1);
    }
  }
  @media (hover: hover) {
    .p-card__link .c-icon-circle-arrow {
      transition: background-color 0.3s;
    }
    .p-card__link:hover .c-icon-circle-arrow {
      background: var(--base) url("../img/common/icon/icon_right_solid_black.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-card__link:hover .c-icon-circle-arrow {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-card__link:hover .c-icon-circle-arrow {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  @media (hover: hover) {
    .p-card__link:hover .c-icon-circle-arrow.-color-beige {
      background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-card__link:hover .c-icon-circle-arrow.-color-beige {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-card__link:hover .c-icon-circle-arrow.-color-beige {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  .p-card__img {
    width: 100%;
    aspect-ratio: 368/207;
    overflow: hidden;
    background-color: #fff;
  }
  .p-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .p-card__img.-cover img {
    object-fit: cover;
  }
  .p-card__body {
    padding: 0.75rem 1.25rem 3.125rem;
    min-height: 9.375rem;
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card__body {
      padding: 0.878477306vw 1.4641288433vw 3.6603221083vw;
      min-height: 10.980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card__body {
      padding: 5.3333333333vw 5.3333333333vw 9.3333333333vw;
      min-height: 26.6666666667vw;
    }
  }
  .p-card__ttl {
    display: inline-block;
    padding-inline: 0.3125rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2.2;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card__ttl {
      padding-inline: 0.3660322108vw;
      padding-bottom: 0.6588579795vw;
      font-size: 1.4641288433vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card__ttl {
      padding-inline: 0.6666666667vw;
      padding-bottom: 2.4vw;
      font-size: 4.6666666667vw;
    }
  }
  .p-card__ttl span {
    padding-bottom: 0.5625rem;
    background: url("../img/common/dots.png") bottom left/auto 0.1875rem repeat-x;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card__ttl span {
      padding-bottom: 0.6588579795vw;
      background-size: auto 0.2196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card__ttl span {
      padding-bottom: 2.4vw;
      background-size: auto 0.8vw;
    }
  }
  .p-card__txt {
    margin-top: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card__txt {
      margin-top: 0.878477306vw;
      font-size: 1.1713030747vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card__txt {
      margin-top: 3.2vw;
      font-size: 3.7333333333vw;
    }
  }
  .p-card__circle-icon {
    position: absolute;
    right: 0.9375rem;
    bottom: 0.9375rem;
    width: 2.8125rem;
    height: 1.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card__circle-icon {
      right: 1.0980966325vw;
      bottom: 1.0980966325vw;
      width: 3.2942898975vw;
      height: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card__circle-icon {
      right: 4vw;
      bottom: 4vw;
      width: 12vw;
      height: 8vw;
    }
  }
  .p-card-topics {
    width: min(100%, 45.75rem);
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics {
      width: min(100%, 53.5871156662vw);
    }
  }
  .p-card-topics__link {
    display: grid;
    grid-template-columns: 6.875rem 1fr 4.375rem;
    gap: 1.875rem;
    align-items: center;
    padding: 1.25rem 1.875rem 1.25rem 1.25rem;
    background-color: var(--base);
    border-radius: 40px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics__link {
      grid-template-columns: 8.0527086384vw 1fr 5.1244509517vw;
      gap: 2.196193265vw;
      padding: 1.4641288433vw 2.196193265vw 1.4641288433vw 1.4641288433vw;
      border-radius: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card-topics__link {
      grid-template-columns: 17.6vw 1fr 12vw;
      gap: 4vw;
      padding: 4vw;
      border-radius: 8vw;
    }
  }
  @media (hover: hover) {
    .p-card-topics__link .p-card-topics__img img {
      transition: transform 0.3s;
    }
    .p-card-topics__link:hover .p-card-topics__img img {
      transform: scale(1.1);
    }
  }
  @media (hover: hover) {
    .p-card-topics__link .c-icon-circle-arrow {
      transition: background-color 0.3s;
    }
    .p-card-topics__link:hover .c-icon-circle-arrow {
      background: var(--base) url("../img/common/icon/icon_right_solid_black.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics__link:hover .c-icon-circle-arrow {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-card-topics__link:hover .c-icon-circle-arrow {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  @media (hover: hover) {
    .p-card-topics__link:hover .c-icon-circle-arrow.-color-beige {
      background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics__link:hover .c-icon-circle-arrow.-color-beige {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-card-topics__link:hover .c-icon-circle-arrow.-color-beige {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  .p-card-topics__img {
    overflow: hidden;
    border-radius: 30px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics__img {
      border-radius: 2.196193265vw;
    }
  }
  .p-card-topics__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .p-card-topics__ttl {
    font-size: 1.3125rem;
    font-weight: 500;
    line-height: 2;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics__ttl {
      font-size: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card-topics__ttl {
      font-size: 4.2666666667vw;
      line-height: 1.5;
    }
  }
  .p-card-topics__arrow {
    width: 4.375rem;
    height: 2.8125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics__arrow {
      width: 5.1244509517vw;
      height: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card-topics__arrow {
      width: 12vw;
      height: 8vw;
    }
  }
  .p-card-topics.-size-sm .p-card-topics__link {
    grid-template-columns: 5.625rem 1fr 4.375rem;
    gap: 1rem;
    padding: 0.9375rem 1.5625rem 0.9375rem 0.9375rem;
    border-radius: 45px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics.-size-sm .p-card-topics__link {
      grid-template-columns: 6.588579795vw 1fr 5.1244509517vw;
      gap: 1.1713030747vw;
      padding: 1.0980966325vw 1.8301610542vw 1.0980966325vw 1.0980966325vw;
      border-radius: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card-topics.-size-sm .p-card-topics__link {
      grid-template-columns: 14.4vw 1fr 12vw;
      gap: 4vw;
      padding: 4vw;
      border-radius: 8vw;
    }
  }
  .p-card-topics.-size-sm .p-card-topics__ttl {
    font-size: 1.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-card-topics.-size-sm .p-card-topics__ttl {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-card-topics.-size-sm .p-card-topics__ttl {
      font-size: 4.2666666667vw;
    }
  }
}
@layer project {
  .p-page-top {
    position: sticky;
    bottom: 1.25rem;
    z-index: 98;
    height: 0;
    margin-top: -4.375rem;
    text-align: right;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-page-top {
      bottom: 1.4641288433vw;
      margin-top: -5.1244509517vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-top {
      bottom: -8vw;
      margin-top: -18.6666666667vw;
    }
  }
  .p-page-top__btn {
    position: relative;
    top: -4.375rem;
    display: inline-grid;
    place-content: center;
    width: 3.625rem;
    height: 3.75rem;
    padding: 0;
    margin: 0;
    background-color: var(--main);
    border: none;
    border-radius: 100vmax 0 0 100vmax;
    transform: translateX(100%);
    transition: transform 0.3s;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-page-top__btn {
      top: -5.1244509517vw;
      width: 4.2459736457vw;
      height: 4.39238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-top__btn {
      top: -24.5333333333vw;
      width: 12.8vw;
      height: 12.8vw;
    }
  }
  .p-page-top__btn::before {
    position: absolute;
    inset-block: 0;
    left: 0.625rem;
    width: 2.125rem;
    height: 0.375rem;
    margin-block: auto;
    content: "";
    background: url("../img/common/eye_navi.gif") center center/contain no-repeat;
    transform: rotate(90deg);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-page-top__btn::before {
      left: 0.7320644217vw;
      width: 2.4890190337vw;
      height: 0.439238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-page-top__btn::before {
      top: 0vw;
      left: 1.3333333333vw;
      width: 7.2vw;
      height: 1.0666666667vw;
    }
  }
  .p-page-top__btn.is-show {
    transform: translateX(0);
  }
  @media (hover: hover) {
    .p-page-top__btn:hover {
      transform: translateX(0.3125rem);
    }
  }
}
@layer project {
  @keyframes loading-fade-in {
    0% {
      visibility: hidden;
      opacity: 0;
      transform: scale(0.8);
    }
    100% {
      visibility: visible;
      opacity: 1;
      transform: scale(1);
    }
  }
  @keyframes loading-fade-out {
    0% {
      visibility: visible;
      opacity: 1;
    }
    100% {
      display: none;
      visibility: hidden;
      opacity: 0;
    }
  }
  .p-loading {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-color: var(--base);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-loading {
      gap: 1.4641288433vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-loading {
      flex-direction: column;
      gap: 2.6666666667vw;
    }
  }
  .p-loading__character {
    flex-shrink: 0;
    opacity: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-loading__character img {
      width: 18.0819912152vw;
      height: 18.0819912152vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-loading__character img {
      width: 41.2vw;
      height: 41.2vw;
    }
  }
  .p-loading__ttl {
    opacity: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-loading__ttl img {
      width: 45.3147877013vw;
      height: 10.9077598829vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-loading__ttl img {
      width: 82.5333333333vw;
      height: 19.8666666667vw;
    }
  }
  .p-loading.is-active .p-loading__character {
    animation: loading-fade-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s forwards;
  }
  .p-loading.is-active .p-loading__ttl {
    animation: loading-fade-in 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 1s forwards;
  }
  .p-loading.is-fade-out {
    animation: loading-fade-out 0.5s ease-out 0.3s forwards;
  }
  .p-loading.is-fade-out .p-loading__character {
    animation: loading-fade-out 0.3s ease-out forwards;
  }
  .p-loading.is-fade-out .p-loading__ttl {
    animation: loading-fade-out 0.3s ease-out forwards;
  }
  .p-loading.is-hidden {
    display: none;
  }
}
@layer project {
  .p-pageheader.-about, .p-pageheader.-knowledge, .p-pageheader.-contact {
    position: relative;
  }
  .p-pageheader.-about::before, .p-pageheader.-about::after, .p-pageheader.-knowledge::before, .p-pageheader.-knowledge::after, .p-pageheader.-contact::before, .p-pageheader.-contact::after {
    content: "";
    display: block;
    position: absolute;
    translate: -50% 0;
  }
  .p-pageheader.-about::before, .p-pageheader.-knowledge::before, .p-pageheader.-contact::before {
    background: url(../img/common/bg_wave.png) no-repeat 50% 0;
    background-size: 100% 100%;
    width: 100%;
    height: 16rem;
    top: 13.75rem;
    left: 50%;
    z-index: 1;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-about::before, .p-pageheader.-knowledge::before, .p-pageheader.-contact::before {
      height: 18.7408491947vw;
      top: 16.1054172767vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-about::before, .p-pageheader.-knowledge::before, .p-pageheader.-contact::before {
      height: 18.6666666667vw;
    }
  }
  .p-pageheader.-about::after, .p-pageheader.-knowledge::after, .p-pageheader.-contact::after {
    background: url(../img/common/bg_deco_group_01.webp) no-repeat 0 0;
    background-size: contain;
    width: 34.5625rem;
    height: 29.9375rem;
    top: 4.6875rem;
    left: calc(50% - 37.75rem);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-about::after, .p-pageheader.-knowledge::after, .p-pageheader.-contact::after {
      width: 40.4831625183vw;
      height: 35.065885798vw;
      top: 5.4904831625vw;
      left: calc(50% - 44.2166910688vw);
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-about::after, .p-pageheader.-knowledge::after, .p-pageheader.-contact::after {
      width: 73.7333333333vw;
      height: 63.8666666667vw;
      left: calc(50% - 48.8vw);
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-about::before {
      top: 54.4vw;
    }
    .p-pageheader.-about::after {
      top: 22.6666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-knowledge::before {
      top: 60.8vw;
    }
    .p-pageheader.-knowledge::after {
      top: 27.7333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-contact::before {
      top: 62.6666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-contact::after {
      top: 29.3333333333vw;
    }
  }
  .p-pageheader.-topics, .p-pageheader.-privacypolicy {
    background: url(../img/common/bg_wave_02.webp) no-repeat 0 100%;
    background-size: 100% 14.0625rem;
    position: relative;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-topics, .p-pageheader.-privacypolicy {
      background-size: 100% 16.4714494876vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-topics, .p-pageheader.-privacypolicy {
      background: url(../img/common/bg_wave_02_sp.png) no-repeat 0 100%;
      background-size: 100% 25.3333333333vw;
    }
  }
  .p-pageheader.-topics::before, .p-pageheader.-topics::after, .p-pageheader.-privacypolicy::before, .p-pageheader.-privacypolicy::after {
    content: "";
    display: block;
    position: absolute;
    translate: -50% 0;
  }
  .p-pageheader.-topics::before, .p-pageheader.-privacypolicy::before {
    background: url(../img/common/bg_deco_green_02.webp) no-repeat 0 0;
    background-size: contain;
    width: 15.6875rem;
    height: 15.875rem;
    top: 3rem;
    left: calc(50% - 30.9375rem);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-topics::before, .p-pageheader.-privacypolicy::before {
      width: 18.3748169839vw;
      height: 18.5944363104vw;
      top: 3.513909224vw;
      left: calc(50% - 36.2371888726vw);
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-topics::before, .p-pageheader.-privacypolicy::before {
      width: 21.3333333333vw;
      height: 21.6vw;
      top: 16vw;
      left: calc(50% - 44.6666666667vw);
    }
  }
  .p-pageheader.-topics::after, .p-pageheader.-privacypolicy::after {
    background: url(../img/common/bg_deco_group_02.webp) no-repeat 0 0;
    background-size: contain;
    width: 22.5rem;
    height: 17.6875rem;
    top: 1.0625rem;
    left: calc(50% + 32.8125rem);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-topics::after, .p-pageheader.-privacypolicy::after {
      width: 26.3543191801vw;
      height: 20.7174231332vw;
      top: 1.2445095168vw;
      left: calc(50% + 38.4333821376vw);
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-topics::after, .p-pageheader.-privacypolicy::after {
      width: 30.9333333333vw;
      height: 24.2666666667vw;
      top: 13.3333333333vw;
      left: calc(50% + 46.9333333333vw);
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-privacypolicy {
      background-position: 0 130%;
    }
  }
  .p-pageheader.-journal {
    position: sticky;
    top: calc(var(--header-h) + 2.5rem);
    left: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-journal {
      top: calc(var(--header-h) + 2.9282576867vw);
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-journal {
      position: static;
      padding-inline: 4vw;
    }
  }
  .p-pageheader.-archive {
    background: url(../img/common/bg_wave_02.webp) no-repeat 0 100%;
    background-size: 100% 14.0625rem;
    position: relative;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-archive {
      background-size: 100% 16.4714494876vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-archive {
      background: url(../img/common/bg_wave_02_sp.png) no-repeat 0 100%;
      background-size: 100% 25.3333333333vw;
    }
  }
  .p-pageheader.-labo {
    position: relative;
    margin-top: calc(var(--header-h) * -1);
  }
  .p-pageheader.-labo::before {
    display: block;
    position: absolute;
    bottom: -1.875rem;
    left: 0;
    width: 100%;
    height: 7.5rem;
    content: "";
    background: url(../img/common/bg_wave_03.webp) 0/100% 7.5rem no-repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-labo::before {
      bottom: -2.196193265vw;
      height: 8.78477306vw;
      background-size: 100% 8.78477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-labo::before {
      bottom: -4vw;
      height: 16vw;
      background-size: 100% 16vw;
    }
  }
  .p-pageheader.-report {
    position: relative;
    margin-top: calc(var(--header-h) * -1);
  }
  .p-pageheader.-metapstory {
    position: relative;
    margin-top: calc(var(--header-h) * -1);
  }
  .p-pageheader.-metapstory::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    bottom: -1.5625rem;
    left: 0;
    width: 100%;
    height: 12.25rem;
    background: url(../img/common/bg_wave_04.webp) 0/100% 12.25rem no-repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader.-metapstory::before {
      bottom: -1.8301610542vw;
      height: 14.3484626647vw;
      background-size: 100% 14.3484626647vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader.-metapstory::before {
      bottom: -3.3333333333vw;
      height: 25.3333333333vw;
      background-image: url(../img/common/bg_wave_04_sp.webp);
      background-size: 100% 25.3333333333vw;
    }
  }
  .p-pageheader__inner.-about, .p-pageheader__inner.-knowledge, .p-pageheader__inner.-contact {
    --container-w: 72.5rem;
    display: flex;
    position: relative;
    z-index: 3;
    padding-right: 0.625rem;
  }
  @media screen and (min-width: 768px) {
    .p-pageheader__inner.-about, .p-pageheader__inner.-knowledge, .p-pageheader__inner.-contact {
      justify-content: space-between;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__inner.-about, .p-pageheader__inner.-knowledge, .p-pageheader__inner.-contact {
      --container-w: 84.9194729136vw;
      padding-right: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__inner.-about, .p-pageheader__inner.-knowledge, .p-pageheader__inner.-contact {
      --container-w: 100%;
      --container-space: 13.3333333333vw;
      flex-direction: column;
      padding-right: 0;
    }
  }
  .p-pageheader__inner.-topics, .p-pageheader__inner.-privacypolicy, .p-pageheader__inner.-archive {
    text-align: center;
    position: relative;
  }
  .p-pageheader__inner.-labo {
    padding-block: 7.8125rem 21.25rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__inner.-labo {
      padding-block: 9.1508052709vw 24.8901903367vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__inner.-labo {
      padding-block: 26.6666666667vw 45.3333333333vw;
    }
  }
  .p-pageheader__inner.-labo.-no-thumb {
    padding-block: 7.8125rem 11.5625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__inner.-labo.-no-thumb {
      padding-block: 9.1508052709vw 13.5431918009vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__inner.-labo.-no-thumb {
      padding-block: 26.6666666667vw 30.6666666667vw;
    }
  }
  .p-pageheader__inner.-report {
    padding-block: 7.5rem 5.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__inner.-report {
      padding-block: 8.78477306vw 6.2225475842vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__inner.-report {
      padding-block: 26.6666666667vw 13.3333333333vw;
    }
  }
  .p-pageheader__inner.-metapstory {
    padding-block: 12.375rem 15.9375rem;
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__inner.-metapstory {
      padding-block: 14.494875549vw 18.6676427526vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__inner.-metapstory {
      padding-block: 28vw 26.6666666667vw;
    }
  }
  .p-pageheader__ttl.-about {
    width: 39.375rem;
    padding-top: 8.375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-about {
      width: 46.1200585652vw;
      padding-top: 9.8096632504vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-about {
      width: 86.6666666667vw;
      padding-top: 5.0666666667vw;
    }
  }
  .p-pageheader__ttl.-knowledge {
    width: 40.875rem;
    padding-top: 7.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-knowledge {
      width: 47.8770131772vw;
      padding-top: 8.345534407vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-knowledge {
      width: 86.8vw;
      padding-top: 5.0666666667vw;
    }
  }
  .p-pageheader__ttl.-contact {
    width: 38.25rem;
    padding-top: 6.375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-contact {
      width: 44.8023426061vw;
      padding-top: 7.467057101vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-contact {
      width: 86.4vw;
      padding-top: 2.1333333333vw;
    }
  }
  .p-pageheader__ttl.-topics .ttl-txt, .p-pageheader__ttl.-topics-02 .ttl-txt, .p-pageheader__ttl.-privacypolicy .ttl-txt {
    font-size: 2.25rem;
    font-weight: bold;
    display: block;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-topics .ttl-txt, .p-pageheader__ttl.-topics-02 .ttl-txt, .p-pageheader__ttl.-privacypolicy .ttl-txt {
      font-size: 2.635431918vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-topics .ttl-txt, .p-pageheader__ttl.-topics-02 .ttl-txt, .p-pageheader__ttl.-privacypolicy .ttl-txt {
      font-size: 5.3333333333vw;
      line-height: 1.4;
    }
  }
  .p-pageheader__ttl.-topics img, .p-pageheader__ttl.-topics-02 img {
    width: 17.625rem;
    margin: 0 auto 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-topics img, .p-pageheader__ttl.-topics-02 img {
      width: 20.6442166911vw;
      margin-bottom: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-topics img, .p-pageheader__ttl.-topics-02 img {
      width: 34.4vw;
      margin-bottom: 6.1333333333vw;
    }
  }
  .p-pageheader__ttl.-topics {
    padding: 6.0625rem 0 9.0625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-topics {
      padding: 7.1010248902vw 0 10.6149341142vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-topics {
      padding: 4vw 0 26.6666666667vw;
    }
  }
  .p-pageheader__ttl.-topics-02 {
    padding: 6.0625rem 0 9.0625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-topics-02 {
      padding: 7.1010248902vw 0 10.6149341142vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-topics-02 {
      padding: 4vw 0 18.6666666667vw;
    }
  }
  .p-pageheader__ttl.-privacypolicy {
    padding: 6.0625rem 0 9.0625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-privacypolicy {
      padding: 7.1010248902vw 0 10.6149341142vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-privacypolicy {
      padding: 4vw 0 21.3333333333vw;
    }
  }
  .p-pageheader__ttl.-privacypolicy img {
    width: 39.75rem;
    margin: 0 auto 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-privacypolicy img {
      width: 46.5592972182vw;
      margin-bottom: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-privacypolicy img {
      width: 70.4vw;
      margin-bottom: 6.1333333333vw;
    }
  }
  .p-pageheader__ttl.-journal {
    margin-top: 0.3125rem;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-thickness: 0.25rem;
    text-underline-offset: 0.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-journal {
      margin-top: 0.3660322108vw;
      font-size: 4.39238653vw;
      text-decoration-thickness: 0.2928257687vw;
      text-underline-offset: 1.0248901903vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-journal {
      margin-top: 1.6vw;
      font-size: 10.6666666667vw;
      text-decoration-thickness: 1.0666666667vw;
      text-underline-offset: 1.8666666667vw;
    }
  }
  .p-pageheader__ttl.-archive {
    padding: 2.625rem 0 8.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-archive {
      padding: 3.074670571vw 0 10.3953147877vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-archive {
      padding: 10.6666666667vw 0 26.6666666667vw;
    }
  }
  .p-pageheader__ttl.-archive img[src$="report_ttl.webp"] {
    width: 30.25rem;
    margin: 0 auto 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-archive img[src$="report_ttl.webp"] {
      width: 35.4319180088vw;
      margin-bottom: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-archive img[src$="report_ttl.webp"] {
      width: 86.6666666667vw;
      margin-bottom: 4vw;
    }
  }
  .p-pageheader__ttl.-archive img[src$="labo_ttl.webp"] {
    width: 42.875rem;
    margin: 0 auto 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-archive img[src$="labo_ttl.webp"] {
      width: 50.2196193265vw;
      margin-bottom: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-archive img[src$="labo_ttl.webp"] {
      width: 86.6666666667vw;
      margin-bottom: 4vw;
    }
  }
  .p-pageheader__ttl.-archive.-report {
    padding: 1.375rem 0 10.9375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-archive.-report {
      padding: 1.6105417277vw 0 12.8111273792vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-archive.-report {
      padding: 8vw 0 26.6666666667vw;
    }
  }
  .p-pageheader__ttl.-metapstory {
    margin-top: 0.9375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-metapstory {
      margin-top: 1.0980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-metapstory {
      margin-top: 2.6666666667vw;
    }
  }
  .p-pageheader__ttl.-metapstory img {
    width: 40.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__ttl.-metapstory img {
      width: 47.2181551977vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__ttl.-metapstory img {
      width: 85.8666666667vw;
    }
  }
  .p-pageheader__lead-01.-contact {
    margin-top: 0.625rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__lead-01.-contact {
      margin-top: 0.7320644217vw;
      font-size: 2.0497803807vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__lead-01.-contact {
      margin-top: 2.6666666667vw;
      font-size: 4.8vw;
      line-height: 1.35;
    }
  }
  .p-pageheader__pict-01.-about, .p-pageheader__pict-01.-knowledge, .p-pageheader__pict-01.-contact {
    width: 27.4375rem;
    position: relative;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__pict-01.-about, .p-pageheader__pict-01.-knowledge, .p-pageheader__pict-01.-contact {
      width: 32.1376281113vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-01.-about, .p-pageheader__pict-01.-knowledge, .p-pageheader__pict-01.-contact {
      width: 51.4666666667vw;
      margin: 7.0666666667vw 0 0 37.3333333333vw;
    }
  }
  .p-pageheader__pict-01.-about::before, .p-pageheader__pict-01.-about::after, .p-pageheader__pict-01.-knowledge::before, .p-pageheader__pict-01.-knowledge::after, .p-pageheader__pict-01.-contact::before, .p-pageheader__pict-01.-contact::after {
    content: "";
    display: block;
    position: absolute;
  }
  .p-pageheader__pict-01.-about::before, .p-pageheader__pict-01.-knowledge::before, .p-pageheader__pict-01.-contact::before {
    background: url(../img/common/chara_red_01.webp) no-repeat 0 0;
    background-size: contain;
    width: 8.5rem;
    height: 6.3125rem;
    top: 0;
    left: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__pict-01.-about::before, .p-pageheader__pict-01.-knowledge::before, .p-pageheader__pict-01.-contact::before {
      width: 9.9560761347vw;
      height: 7.3938506589vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-01.-about::before, .p-pageheader__pict-01.-knowledge::before, .p-pageheader__pict-01.-contact::before {
      width: 15.7333333333vw;
      height: 11.7333333333vw;
    }
  }
  .p-pageheader__pict-01.-about::after, .p-pageheader__pict-01.-knowledge::after, .p-pageheader__pict-01.-contact::after {
    background: url(../img/common/bg_deco_green_01.webp) no-repeat 0 0;
    background-size: contain;
    width: 16.5rem;
    height: 16.1875rem;
    bottom: -1.25rem;
    left: -1.25rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__pict-01.-about::after, .p-pageheader__pict-01.-knowledge::after, .p-pageheader__pict-01.-contact::after {
      width: 19.3265007321vw;
      height: 18.9604685212vw;
      bottom: -1.4641288433vw;
      left: -1.4641288433vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-01.-about::after, .p-pageheader__pict-01.-knowledge::after, .p-pageheader__pict-01.-contact::after {
      width: 30.9333333333vw;
      height: 30.4vw;
      bottom: -2.4vw;
      left: -2.4vw;
    }
  }
  .p-pageheader__pict-01.-about .pict-01-inner, .p-pageheader__pict-01.-knowledge .pict-01-inner, .p-pageheader__pict-01.-contact .pict-01-inner {
    position: relative;
    z-index: 4;
  }
  .p-pageheader__pict-01.-about .pict-01-inner::before, .p-pageheader__pict-01.-knowledge .pict-01-inner::before, .p-pageheader__pict-01.-contact .pict-01-inner::before {
    background: url(../img/common/bg_deco_blue_01.webp) no-repeat 0 0;
    background-size: contain;
    content: "";
    width: 10.5625rem;
    height: 10.1875rem;
    display: block;
    position: absolute;
    bottom: -1.25rem;
    right: -1.25rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__pict-01.-about .pict-01-inner::before, .p-pageheader__pict-01.-knowledge .pict-01-inner::before, .p-pageheader__pict-01.-contact .pict-01-inner::before {
      width: 12.3718887262vw;
      height: 11.9326500732vw;
      bottom: -1.4641288433vw;
      right: -1.4641288433vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-01.-about .pict-01-inner::before, .p-pageheader__pict-01.-knowledge .pict-01-inner::before, .p-pageheader__pict-01.-contact .pict-01-inner::before {
      width: 20vw;
      height: 19.2vw;
      bottom: -2.4vw;
      right: -2.4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-01.-contact {
      margin: 1.6vw 0 0 36.2666666667vw;
    }
  }
  .p-pageheader__pict-02.-metapstory {
    position: absolute;
    inset-inline: 0;
    bottom: -4.375rem;
    z-index: 3;
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__pict-02.-metapstory {
      bottom: -5.1244509517vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-02.-metapstory {
      bottom: -25.3333333333vw;
    }
  }
  .p-pageheader__pict-02.-metapstory img {
    width: 29.6875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__pict-02.-metapstory img {
      width: 34.7730600293vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__pict-02.-metapstory img {
      width: 75.8666666667vw;
    }
  }
  .p-pageheader__sub-ttl.-journal {
    display: flex;
    align-items: center;
    gap: 1.3125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-journal {
      gap: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-journal {
      gap: 4vw;
    }
  }
  .p-pageheader__sub-ttl.-journal .sub-ttl-icon img {
    width: 5.625rem;
    height: 5.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-icon img {
      width: 6.588579795vw;
      height: 6.588579795vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-icon img {
      width: 20vw;
      height: 20vw;
    }
  }
  .p-pageheader__sub-ttl.-journal .sub-ttl-vol {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.1;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-vol {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-vol {
      font-size: 4.2666666667vw;
    }
  }
  .p-pageheader__sub-ttl.-journal .sub-ttl-txt {
    margin-top: 0.4375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-txt {
      margin-top: 0.5124450952vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-txt {
      margin-top: 2.6666666667vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-txt img {
      width: 16.5446559297vw;
      height: 4.6120058565vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-journal .sub-ttl-txt img {
      width: 46.6666666667vw;
      height: 12.8vw;
    }
  }
  .p-pageheader__sub-ttl.-labo {
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-labo img {
      width: 18.8872620791vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-labo img {
      width: 53.3333333333vw;
    }
  }
  .p-pageheader__sub-ttl.-report {
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-report img {
      width: 28.9165446559vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-report img {
      width: 53.3333333333vw;
    }
  }
  .p-pageheader__sub-ttl.-metapstory {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__sub-ttl.-metapstory {
      font-size: 2.0497803807vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__sub-ttl.-metapstory {
      font-size: 4.8vw;
    }
  }
  .p-pageheader__article-ttl {
    margin-inline: auto;
    margin-top: 1rem;
    width: fit-content;
    font-size: 3.125rem;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: underline;
    text-decoration-thickness: 0.25rem;
    text-underline-offset: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__article-ttl {
      margin-top: 1.1713030747vw;
      font-size: 3.6603221083vw;
      text-decoration-thickness: 0.2928257687vw;
      text-underline-offset: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__article-ttl {
      margin-top: 5.3333333333vw;
      font-size: 7.2vw;
      text-decoration-thickness: 0.5333333333vw;
      text-underline-offset: 1.3333333333vw;
    }
  }
  .p-pageheader__article-ttl.-report {
    margin-top: 1.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pageheader__article-ttl.-report {
      margin-top: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pageheader__article-ttl.-report {
      margin-top: 5.3333333333vw;
    }
  }
}
@layer project {
  .p-contents {
    position: relative;
    padding-bottom: 7.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents {
      padding-bottom: 8.78477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents {
      padding-bottom: 16vw;
    }
  }
  .p-contents.-about, .p-contents.-knowledge {
    padding-top: 6.6875rem;
    position: relative;
    z-index: 2;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-about, .p-contents.-knowledge {
      padding-top: 7.8330893119vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-about, .p-contents.-knowledge {
      margin-top: -2.6666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-about {
      padding-top: 10.1333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-knowledge {
      padding-top: 13.3333333333vw;
    }
  }
  .p-contents.-journal {
    padding-bottom: 9.375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-journal {
      padding-bottom: 10.980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-journal {
      padding-bottom: 18.6666666667vw;
    }
  }
  .p-contents.-whoweare {
    margin-top: calc(var(--header-h) * -1);
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 10rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-whoweare {
      padding-top: calc(var(--header-h) + 2.9282576867vw);
      padding-bottom: 11.7130307467vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-whoweare {
      padding-top: var(--header-h);
      padding-bottom: 16vw;
    }
  }
  .p-contents.-contact {
    padding-top: 8.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-contact {
      padding-top: 10.2489019034vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-contact {
      padding-top: 13.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-privacypolicy {
      padding-top: 10.6666666667vw;
    }
  }
  .p-contents.-archive {
    margin-top: -0.625rem;
    padding-top: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-archive {
      margin-top: -0.7320644217vw;
      padding-top: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-archive {
      margin-top: -2.6666666667vw;
      padding-top: 5.3333333333vw;
    }
  }
  .p-contents.-topics {
    padding-top: 0.625rem;
    margin-top: -0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-topics {
      padding-top: 0.7320644217vw;
      margin-top: -0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-topics {
      padding-top: 6.6666666667vw;
      margin-top: -2.6666666667vw;
    }
  }
  .p-contents.-metapstory {
    padding-block: 7.5rem 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents.-metapstory {
      padding-block: 8.78477306vw 0;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents.-metapstory {
      padding-block: 34.6666666667vw 0;
    }
  }
  .p-contents__header-01 {
    position: relative;
  }
  .p-contents__header-01.-journal .header-container {
    position: relative;
    text-align: right;
  }
  .p-contents__header-01.-journal .header-pict {
    filter: opacity(0);
    transform: matrix(1, 0, 0, 1, 0, -60);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    will-change: transform;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-pict img {
      width: 57.467057101vw;
      height: 38.579795022vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-pict img {
      width: 94.6666666667vw;
      height: 63.6vw;
    }
  }
  .p-contents__header-01.-journal .header-pict.is-active {
    filter: opacity(1);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .p-contents__header-01.-journal .header-ttl {
    position: absolute;
    bottom: -1.25rem;
    right: 1.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-ttl {
      bottom: -1.4641288433vw;
      right: 2.0497803807vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-ttl {
      bottom: -2.6666666667vw;
      right: 0;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal01_ttl_01.png"] {
      width: 34.8462664714vw;
      height: 3.1478770132vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal01_ttl_01.png"] {
      width: 68.8vw;
      height: 6.4vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal02_ttl_01.png"] {
      width: 32.7964860908vw;
      height: 3.1478770132vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal02_ttl_01.png"] {
      width: 67.0666666667vw;
      height: 6.4vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal03_ttl_01.png"] {
      width: 38.3601756955vw;
      height: 3.3674963397vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal03_ttl_01.png"] {
      width: 76.9333333333vw;
      height: 6.9333333333vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal04_ttl_01.png"] {
      width: 46.4128843338vw;
      height: 3.074670571vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal04_ttl_01.png"] {
      width: 88.4vw;
      height: 6.1333333333vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal05_ttl_01.png"] {
      width: 42.2401171303vw;
      height: 3.8067349927vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal .header-ttl img[src$="journal05_ttl_01.png"] {
      width: 66vw;
      height: 6.4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .journal-02 .p-contents__header-01.-journal .header-ttl {
      right: 1.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .journal-03 .p-contents__header-01.-journal .header-ttl {
      right: 2.6666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .journal-04 .p-contents__header-01.-journal .header-ttl {
      right: 2.6666666667vw;
    }
  }
  @media screen and (max-width: 767px) {
    .journal-05 .p-contents__header-01.-journal .header-ttl {
      right: 2.6666666667vw;
    }
  }
  .p-contents__header-01.-journal + .p-contents__box-01 {
    margin-top: 10rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__header-01.-journal + .p-contents__box-01 {
      margin-top: 11.7130307467vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__header-01.-journal + .p-contents__box-01 {
      margin-top: 24vw;
    }
  }
  .p-contents__box-01:not(:first-of-type) {
    margin-top: 5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-01:not(:first-of-type) {
      margin-top: 5.8565153734vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-01:not(:first-of-type) {
      margin-top: 16vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-01.-topics-top {
      margin-top: 5.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-01.-journal {
      padding-inline: 4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-01.-contact.c-container-s, .p-contents__box-01.-topics-top.c-container-s, .p-contents__box-01.-topics.c-container-s {
      --container-space: 8vw;
    }
  }
  .p-contents__box-02 {
    position: relative;
    background-color: var(--base);
  }
  .p-contents__box-02.-whoweare {
    --container-w: 49rem;
    padding: 7.625rem 3.125rem 6.875rem;
    border-radius: 330px;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare {
      --container-w: 57.3938506589vw;
      padding: 8.9311859444vw 3.6603221083vw 8.0527086384vw;
      border-radius: 24.1581259151vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare {
      padding: 14.6666666667vw 6.6666666667vw;
      border-radius: 13.3333333333vw;
    }
  }
  .p-contents__box-02.-whoweare .inner-container {
    max-width: 37.8125rem;
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .inner-container {
      max-width: 44.289897511vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .inner-container {
      max-width: 80.6666666667vw;
    }
  }
  .p-contents__box-02.-whoweare .mt-space-01 {
    margin-top: 2.8125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .mt-space-01 {
      margin-top: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .mt-space-01 {
      margin-top: 8.8vw;
    }
  }
  .p-contents__box-02.-whoweare .ttl-01,
  .p-contents__box-02.-whoweare .ttl-02 {
    text-align: center;
    margin-bottom: 1.4375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .ttl-01,
    .p-contents__box-02.-whoweare .ttl-02 {
      margin-bottom: 1.6837481698vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .ttl-01,
    .p-contents__box-02.-whoweare .ttl-02 {
      margin-bottom: 5.3333333333vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .ttl-01 img {
      width: 37.0424597365vw;
      height: 3.3674963397vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .ttl-01 img {
      width: 81.4666666667vw;
      height: 7.2vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .ttl-02 img {
      width: 33.4553440703vw;
      height: 3.4407027818vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .ttl-02 img {
      width: 73.3333333333vw;
      height: 7.6vw;
    }
  }
  .p-contents__box-02.-whoweare .pict-01,
  .p-contents__box-02.-whoweare .pict-02,
  .p-contents__box-02.-whoweare .pict-03 {
    position: absolute;
  }
  .p-contents__box-02.-whoweare .pict-01 {
    right: -9.1875rem;
    bottom: 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .pict-01 {
      right: -10.7613469985vw;
      bottom: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .pict-01 {
      right: 4.5333333333vw;
      bottom: -24.8vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .pict-01 img {
      width: 24.3045387994vw;
      height: 24.3045387994vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .pict-01 img {
      width: 35.4666666667vw;
      height: 35.4666666667vw;
    }
  }
  .p-contents__box-02.-whoweare .pict-02 {
    left: -7.5rem;
    bottom: 11.0625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .pict-02 {
      left: -8.78477306vw;
      bottom: 12.9575402635vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .pict-02 {
      left: 4vw;
      bottom: -15.4666666667vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .pict-02 img {
      width: 18.6676427526vw;
      height: 18.6676427526vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .pict-02 img {
      width: 24vw;
      height: 24vw;
    }
  }
  .p-contents__box-02.-whoweare .pict-03 {
    left: 1.0625rem;
    bottom: 0.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .pict-03 {
      left: 1.2445095168vw;
      bottom: 0.1464128843vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .pict-03 {
      left: 27.7333333333vw;
      bottom: -24.8vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-whoweare .pict-03 img {
      width: 12.2254758419vw;
      height: 12.2254758419vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-whoweare .pict-03 img {
      width: 17.8666666667vw;
      height: 17.8666666667vw;
    }
  }
  .p-contents__box-02.-whoweare .pict-01,
  .p-contents__box-02.-whoweare .pict-02,
  .p-contents__box-02.-whoweare .pict-03 {
    filter: opacity(0);
    transform: matrix(1, 0, 0, 1, 0, -60);
    transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
    will-change: transform;
  }
  .p-contents__box-02.-whoweare.is-active .pict-01,
  .p-contents__box-02.-whoweare.is-active .pict-02,
  .p-contents__box-02.-whoweare.is-active .pict-03 {
    filter: opacity(1);
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
  .p-contents__box-02.-metapstory-01 {
    padding: 5rem;
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 {
      padding: 5.8565153734vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 {
      padding: 16vw 4vw;
      border-radius: 13.3333333333vw;
    }
  }
  .p-contents__box-02.-metapstory-01 .ttl-01 {
    margin-bottom: 1.5625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 .ttl-01 {
      margin-bottom: 1.8301610542vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 .ttl-01 {
      margin-bottom: 5.3333333333vw;
    }
  }
  .p-contents__box-02.-metapstory-01 .ttl-01 img {
    width: 29.5625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 .ttl-01 img {
      width: 34.6266471449vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 .ttl-01 img {
      width: 85.3333333333vw;
    }
  }
  .p-contents__box-02.-metapstory-01 .pict-01,
  .p-contents__box-02.-metapstory-01 .pict-02 {
    position: absolute;
  }
  .p-contents__box-02.-metapstory-01 .pict-01 {
    bottom: 0.4375rem;
    left: 3.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 .pict-01 {
      bottom: 0.5124450952vw;
      left: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 .pict-01 {
      bottom: -4.8vw;
      left: 48vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 .pict-01 img {
      width: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 .pict-01 img {
      width: 7.0666666667vw;
    }
  }
  .p-contents__box-02.-metapstory-01 .pict-02 {
    bottom: 0.4375rem;
    right: 3.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 .pict-02 {
      bottom: 0.5124450952vw;
      right: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 .pict-02 {
      bottom: -4.8vw;
      right: 10.6666666667vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-01 .pict-02 img {
      width: 12.298682284vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-01 .pict-02 img {
      width: 27.0666666667vw;
    }
  }
  .p-contents__box-02.-metapstory-02 {
    margin-top: 5rem;
    padding: 5rem;
    border-radius: 100vmax;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-02 {
      margin-top: 5.8565153734vw;
      padding: 5.8565153734vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-02 {
      margin-top: 10.6666666667vw;
      padding: 16vw 4vw;
      border-radius: 13.3333333333vw;
    }
  }
  .p-contents__box-02.-metapstory-02 .inner-container {
    width: 48.125rem;
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-02 .inner-container {
      width: 56.3689604685vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-02 .inner-container {
      width: 100%;
    }
  }
  .p-contents__box-02.-metapstory-02 .ttl-01 {
    margin-bottom: 1.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-02 .ttl-01 {
      margin-bottom: 1.9033674963vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-02 .ttl-01 {
      margin-bottom: 5.3333333333vw;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__box-02.-metapstory-02 .ttl-01 img {
      width: 51.756954612vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__box-02.-metapstory-02 .ttl-01 img {
      width: 64.8vw;
    }
  }
  .p-contents__info-01 {
    font-size: 1.3125rem;
    font-weight: bold;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__info-01 {
      font-size: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__info-01 {
      font-size: 4.8vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__info-01.-contact {
      font-size: 4.2666666667vw;
      letter-spacing: -0.04em;
    }
  }
  .p-contents__txt-01 {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2.05;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__txt-01 {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__txt-01 {
      font-size: 4.2666666667vw;
      line-height: 1.75;
    }
  }
  .p-contents__txt-01 sup {
    font-size: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__txt-01 sup {
      font-size: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__txt-01 sup {
      font-size: 2.6666666667vw;
    }
  }
  .p-contents__txt-02 {
    text-align: justify;
    font-size: 1.625rem;
    font-weight: 700;
    line-height: 1.75;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__txt-02 {
      font-size: 1.9033674963vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__txt-02 {
      text-align: left;
      font-size: 4.8vw;
      line-height: 1.72;
    }
  }
  .p-contents__pict-01 {
    width: 42.75rem;
    margin: 1.875rem auto 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__pict-01 {
      width: 50.0732064422vw;
      margin-top: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__pict-01 {
      width: 86.6666666667vw;
      margin-top: 9.3333333333vw;
    }
  }
  .p-contents__pict-01.-metapstory img[src$="metapstory_pict_02.webp"] {
    width: 25.25rem;
    margin-inline: auto;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__pict-01.-metapstory img[src$="metapstory_pict_02.webp"] {
      width: 29.5754026354vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__pict-01.-metapstory img[src$="metapstory_pict_02.webp"] {
      width: 51.2vw;
    }
  }
  .p-contents__pict-01.-metapstory + .p-contents__pict-01.-metapstory {
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__pict-01.-metapstory + .p-contents__pict-01.-metapstory {
      margin-top: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__pict-01.-metapstory + .p-contents__pict-01.-metapstory {
      margin-top: 10.6666666667vw;
    }
  }
  .p-contents__pict-02 {
    width: 47.6875rem;
    margin-inline: auto;
    margin-top: 3.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__pict-02 {
      width: 55.8565153734vw;
      margin-top: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__pict-02 {
      width: 81.2vw;
      margin-top: 8vw;
    }
  }
  .p-contents__company-name {
    margin-top: 0.9375rem;
    font-size: 1.625rem;
    font-weight: 700;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__company-name {
      margin-top: 1.0980966325vw;
      font-size: 1.9033674963vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__company-name {
      margin-top: 1.3333333333vw;
      font-size: 4.8vw;
    }
  }
  .p-contents__company-link {
    font-size: 1.125rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__company-link {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__company-link {
      font-size: 3.7333333333vw;
    }
  }
  @media (hover: hover) {
    .p-contents__company-link a:hover {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }
  }
  .p-contents__yellow-bg-01 {
    position: relative;
    margin-top: 9.375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__yellow-bg-01 {
      margin-top: 10.980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__yellow-bg-01 {
      margin-top: 35.2vw;
    }
  }
  .p-contents__yellow-bg-01::before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    top: -4.375rem;
    left: 0;
    width: 100%;
    height: 6.5625rem;
    background: url(../img/common/bg_wave_05.webp) 0/100% 6.5625rem no-repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__yellow-bg-01::before {
      top: -5.1244509517vw;
      height: 7.6866764275vw;
      background-size: 100% 7.6866764275vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__yellow-bg-01::before {
      top: -9.3333333333vw;
      height: 13.8666666667vw;
      background: url(../img/common/bg_wave_05_sp.webp) 0/100% 13.8666666667vw no-repeat;
    }
  }
  .p-contents__yellow-bg-01.-metapstory {
    padding-block: 4.0625rem 10rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__yellow-bg-01.-metapstory {
      padding-block: 4.7584187408vw 11.7130307467vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__yellow-bg-01.-metapstory {
      padding-block: 8.6666666667vw 21.3333333333vw;
    }
  }
  .p-contents__yellow-bg-01.-metapstory .pict-01 {
    position: absolute;
    top: -6.875rem;
    z-index: 2;
    inset-inline: -1.875rem 0;
    margin-inline: auto;
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__yellow-bg-01.-metapstory .pict-01 {
      top: -8.0527086384vw;
      inset-inline: -2.196193265vw 0;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__yellow-bg-01.-metapstory .pict-01 {
      top: -24.5333333333vw;
      inset-inline: 0;
    }
  }
  .p-contents__yellow-bg-01.-metapstory .pict-01 img {
    width: 14.9375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__yellow-bg-01.-metapstory .pict-01 img {
      width: 17.4963396779vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__yellow-bg-01.-metapstory .pict-01 img {
      width: 38.2666666667vw;
    }
  }
  .p-contents__items {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__items {
      gap: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__items {
      gap: 4vw 0;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__items .item-img {
      grid-column: 1;
      grid-row: 2;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contents__items .item-img img[src$="metapstory_pict_07.webp"] {
      width: 25.7686676428vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__items .item-img img[src$="metapstory_pict_07.webp"] {
      width: 56.4vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contents__items .item-content {
      grid-column: 1;
      grid-row: 1;
    }
  }
}
@layer project {
  .p-section {
    position: relative;
  }
  .p-section:not(:first-of-type) {
    margin-top: 6.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-section:not(:first-of-type) {
      margin-top: 8.0527086384vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section:not(:first-of-type) {
      margin-top: 13.6vw;
    }
  }
  .p-section.-topics {
    border-radius: 3.125rem;
    padding-bottom: 10rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-section.-topics {
      border-radius: 3.6603221083vw;
      padding-bottom: 11.7130307467vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section.-topics {
      border-radius: 5.3333333333vw;
      padding-bottom: 13.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section.-topics:first-of-type {
      margin-top: -3.0666666667vw;
    }
  }
  .p-section.-whoweare:not(:first-of-type) {
    margin-top: 6.25rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-section.-whoweare:not(:first-of-type) {
      margin-top: 7.3206442167vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section.-whoweare:not(:first-of-type) {
      margin-top: 36vw;
    }
  }
  .p-section.-contact {
    border-radius: 3.125rem;
    padding-block: 6.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-section.-contact {
      border-radius: 3.6603221083vw;
      padding-block: 8.0527086384vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section.-contact {
      border-radius: 5.3333333333vw;
      padding-block: 9.3333333333vw 13.3333333333vw;
    }
  }
  .p-section.-privacypolicy {
    border-radius: 3.125rem;
    padding-block: 7.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-section.-privacypolicy {
      border-radius: 3.6603221083vw;
      padding-block: 8.78477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section.-privacypolicy {
      border-radius: 5.3333333333vw;
      padding-block: 9.3333333333vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section.-privacypolicy:first-of-type {
      margin-top: -3.0666666667vw;
    }
  }
  .p-section__heade.-topics {
    padding: 7.1875rem 0 7.375rem 6.1875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-section__heade.-topics {
      padding: 8.4187408492vw 0 8.6383601757vw 7.2474377745vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-section__heade.-topics {
      padding: 58.1333333333vw 2.6666666667vw 15.4666666667vw;
    }
  }
  .p-section__heade.-topics.-heade-01 {
    background: url(../img/topics/bg_contents_01.webp) no-repeat 0 0;
    background-size: 100% auto;
  }
  @media screen and (max-width: 767px) {
    .p-section__heade.-topics.-heade-01 {
      background: url(../img/topics/bg_contents_01_sp.webp) no-repeat 0 0;
      background-size: 100% auto;
    }
  }
  .p-section__heade.-topics.-heade-02 {
    background: url(../img/topics/bg_contents_02.webp) no-repeat 0 0;
    background-size: 100% auto;
  }
  @media screen and (max-width: 767px) {
    .p-section__heade.-topics.-heade-02 {
      background: url(../img/topics/bg_contents_02_sp.webp) no-repeat 0 0;
      background-size: 100% auto;
    }
  }
  .p-section__heade.-topics.-heade-03 {
    background: url(../img/topics/bg_contents_03.webp) no-repeat 0 0;
    background-size: 100% auto;
  }
  @media screen and (max-width: 767px) {
    .p-section__heade.-topics.-heade-03 {
      background: url(../img/topics/bg_contents_03_sp.webp) no-repeat 0 0;
      background-size: 100% auto;
    }
  }
}
@layer project {
  .p-ttl__h2 {
    margin-bottom: 1.875rem;
    padding-top: 1.25rem;
    font-size: 2.375rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    position: relative;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__h2 {
      margin-bottom: 2.196193265vw;
      padding-top: 1.4641288433vw;
      font-size: 2.7818448023vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__h2 {
      margin-bottom: 5.3333333333vw;
      padding-top: 1.25rem;
      font-size: 6.1333333333vw;
      line-height: 1.3;
    }
  }
  .p-ttl__h2::before {
    background: url(../img/common/bg_ttl_dots.webp) no-repeat 0 0;
    background-size: contain;
    content: "";
    width: 2.3125rem;
    height: 0.4375rem;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__h2::before {
      width: 2.7086383602vw;
      height: 0.5124450952vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__h2::before {
      width: 9.8666666667vw;
      height: 1.8666666667vw;
    }
  }
  .p-ttl__h2.-journal {
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    letter-spacing: -0.05em;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__h2.-journal {
      margin-bottom: 1.4641288433vw;
      font-size: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__h2.-journal {
      margin-bottom: 4vw;
      font-size: 6.4vw;
    }
  }
  .p-ttl__h2.-contact {
    padding-top: 1.5625rem;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__h2.-contact {
      padding-top: 1.8301610542vw;
      margin-bottom: 2.9282576867vw;
      font-size: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__h2.-contact {
      padding-top: 7.2vw;
      margin-bottom: 5.3333333333vw;
      font-size: 6.1333333333vw;
    }
  }
  .p-ttl__h3 {
    margin-bottom: 1.25rem;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.4;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__h3 {
      margin-bottom: 1.4641288433vw;
      font-size: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__h3 {
      margin-bottom: 2.6666666667vw;
      font-size: 4.8vw;
    }
  }
  .p-ttl__line {
    font-weight: bold;
  }
  .p-ttl__line .ttl-small {
    font-size: 1.625rem;
    display: block;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__line .ttl-small {
      font-size: 1.9033674963vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__line .ttl-small {
      font-size: 4.2666666667vw;
    }
  }
  .p-ttl__line .ttl-large {
    font-size: 3.75rem;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-thickness: 0.25rem;
    text-underline-offset: 0.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__line .ttl-large {
      font-size: 4.39238653vw;
      text-decoration-thickness: 0.2928257687vw;
      text-underline-offset: 1.0248901903vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__line .ttl-large {
      font-size: 10.1333333333vw;
      text-decoration-thickness: 0.6666666667vw;
      text-underline-offset: 2.1333333333vw;
    }
  }
  .p-ttl__statement {
    font-weight: 700;
    line-height: 1.2;
  }
  .p-ttl__statement.-en {
    font-family: var(--en-serif);
    font-size: 4.0625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-ttl__statement.-en {
      font-size: 4.7584187408vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-ttl__statement.-en {
      font-size: 12vw;
    }
  }
}
@layer project {
  .p-breadcrumb {
    border-top: 2px solid var(--main);
    margin-inline: auto;
  }
  .p-breadcrumb ol {
    width: min(100% - 10px, var(--container-w));
    margin-inline: auto;
    display: flex;
    padding-block: 1.125rem;
  }
  @media screen and (min-width: 768px) {
    .p-breadcrumb ol {
      flex-wrap: wrap;
    }
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-breadcrumb ol {
      padding-block: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-breadcrumb ol {
      white-space: nowrap;
      overflow-x: auto;
      padding-block: 5.3333333333vw;
      padding-inline: 1.3333333333vw;
    }
  }
  .p-breadcrumb ol li {
    font-size: 0.75rem;
    position: relative;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-breadcrumb ol li {
      font-size: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-breadcrumb ol li {
      font-size: 3.2vw;
    }
  }
  .p-breadcrumb ol li:not(:last-child) {
    margin-right: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-breadcrumb ol li:not(:last-child) {
      margin-right: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-breadcrumb ol li:not(:last-child) {
      margin-right: 2.6666666667vw;
    }
  }
  .p-breadcrumb ol li:not(:last-child)::after {
    background: var(--main);
    border-radius: 50%;
    content: "";
    width: 0.1875rem;
    height: 0.1875rem;
    display: block;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-breadcrumb ol li:not(:last-child)::after {
      width: 0.2196193265vw;
      height: 0.2196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-breadcrumb ol li:not(:last-child)::after {
      width: 0.8vw;
      height: 0.8vw;
    }
  }
  .p-breadcrumb ol a {
    color: inherit;
    text-decoration: underline;
  }
  @media (any-hover: hover) {
    .p-breadcrumb ol a:hover {
      text-decoration: none;
    }
  }
}
@layer project {
  .p-nav {
    background-color: var(--base);
    border-top: 2px solid var(--main);
  }
  .p-nav__list {
    display: flex;
  }
  @media screen and (max-width: 767px) {
    .p-nav__list {
      flex-direction: column;
    }
  }
  .p-nav__item {
    flex: 1;
  }
  .p-nav__item + .p-nav__item {
    border-left: 2px solid var(--main);
  }
  @media screen and (max-width: 767px) {
    .p-nav__item + .p-nav__item {
      border-left: none;
      border-top: 2px solid var(--main);
    }
  }
  .p-nav__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 2.6875rem 1.875rem 2.6875rem 2.6875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__link {
      padding: 3.1478770132vw 2.196193265vw 3.1478770132vw 3.1478770132vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-nav__link {
      padding: 5.3333333333vw 4vw;
      border-radius: 1.6vw;
    }
  }
  @media (hover: hover) {
    .p-nav__link .p-nav__img img {
      transition: 0.3s;
      transition-property: transform;
    }
    .p-nav__link:hover .p-nav__img img {
      transform: scale(1.1);
    }
  }
  @media (hover: hover) {
    .p-nav__link .c-icon-circle-arrow {
      transition: background-color 0.3s;
    }
    .p-nav__link:hover .c-icon-circle-arrow {
      background: var(--base) url("../img/common/icon/icon_right_solid_black.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__link:hover .c-icon-circle-arrow {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-nav__link:hover .c-icon-circle-arrow {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  @media (hover: hover) {
    .p-nav__link:hover .c-icon-circle-arrow.-color-beige {
      background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/0.875rem 0.625rem no-repeat;
    }
  }
  @media screen and (hover: hover) and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__link:hover .c-icon-circle-arrow.-color-beige {
      background-size: 1.0248901903vw 0.7320644217vw;
    }
  }
  @media screen and (hover: hover) and (max-width: 767px) {
    .p-nav__link:hover .c-icon-circle-arrow.-color-beige {
      background-size: 3.7333333333vw 2.6666666667vw;
    }
  }
  .p-nav__content {
    display: flex;
    align-items: center;
    gap: 1.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__content {
      gap: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-nav__content {
      gap: 4vw;
    }
  }
  .p-nav__img {
    flex-shrink: 0;
    width: 9.375rem;
    height: 9.375rem;
    border-radius: 1.875rem;
    overflow: hidden;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__img {
      width: 10.980966325vw;
      height: 10.980966325vw;
      border-radius: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-nav__img {
      width: 18.6666666667vw;
      height: 18.6666666667vw;
      border-radius: 4vw;
    }
  }
  .p-nav__txt {
    flex: 1;
  }
  @media screen and (max-width: 767px) {
    .p-nav__txt {
      line-height: 1.4;
    }
  }
  .p-nav__label {
    display: block;
    font-size: 1.125rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__label {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-nav__label {
      font-size: 3.7333333333vw;
    }
  }
  .p-nav__ttl {
    display: block;
    margin-top: 0.3125rem;
    font-size: 1.3125rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__ttl {
      margin-top: 0.3660322108vw;
      font-size: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-nav__ttl {
      margin-top: 0.5333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-nav__arrow {
    width: 4.375rem;
    height: 2.8125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-nav__arrow {
      width: 5.1244509517vw;
      height: 3.2942898975vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-nav__arrow {
      width: 12vw;
      height: 8vw;
    }
  }
}
@layer project {
  .p-layout-stretch {
    display: grid;
    grid-template-rows: auto 1fr;
    height: 100%;
  }
}
@layer project {
  .p-contact {
    margin-top: 6.25rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contact {
      margin-top: 7.3206442167vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact {
      margin-top: 16vw;
    }
  }
  .p-contact__txt {
    text-align: center;
    font-size: 1.3125rem;
    font-weight: 700;
    line-height: 1.8;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contact__txt {
      font-size: 1.5373352855vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact__txt {
      margin-inline: -0.4em;
      font-size: 4.2666666667vw;
      line-height: 1.55;
      letter-spacing: -0.06em;
    }
  }
  .p-contact__tel-wrap {
    text-align: center;
  }
  .p-contact__tel {
    display: inline-block;
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contact__tel {
      font-size: 4.39238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact__tel {
      font-size: 9.6vw;
    }
  }
  .p-contact__time {
    margin-top: 0.5rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.6;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contact__time {
      margin-top: 0.5856515373vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact__time {
      margin-top: 1.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-contact__company-name {
    margin-top: 1.4375rem;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 500;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-contact__company-name {
      margin-top: 1.6837481698vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-contact__company-name {
      margin-top: 7.4666666667vw;
      font-size: 4.2666666667vw;
    }
  }
}
@layer project {
  .p-archive__inner {
    --container-w: 72.5rem;
  }
  .p-archive__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-archive__list {
      gap: 2.0497803807vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-archive__list {
      grid-template-columns: 1fr;
      gap: 6.6666666667vw;
    }
  }
}
@layer project {
  .p-article__thumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -17.8125rem;
    width: 100%;
    aspect-ratio: 785/442;
    overflow: hidden;
    background-color: #fff;
    border-radius: 3.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-article__thumb {
      margin-top: -20.8638360176vw;
      border-radius: 3.6603221083vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article__thumb {
      margin-top: -38vw;
      border-radius: 6.6666666667vw;
    }
  }
  .p-article__thumb img {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
  }
  .p-article__thumb.-cover img {
    width: 100%;
    object-fit: cover;
  }
  .p-article__content {
    padding-top: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-article__content {
      padding-top: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-article__content {
      padding-top: 1.3333333333vw;
    }
  }
}
@layer project {
  .p-editor {
    /* Editor palette colors: ブロックエディターのカラーパレット互換 */
    /* Button block outline style compatibility */
  }
  .p-editor h1,
  .p-editor h2,
  .p-editor h3,
  .p-editor h4,
  .p-editor h5,
  .p-editor h6 {
    font-weight: 700;
    line-height: 1.6;
  }
  .p-editor h1 + p,
  .p-editor h2 + p,
  .p-editor h3 + p,
  .p-editor h4 + p,
  .p-editor h5 + p,
  .p-editor h6 + p {
    margin-top: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h1 + p,
    .p-editor h2 + p,
    .p-editor h3 + p,
    .p-editor h4 + p,
    .p-editor h5 + p,
    .p-editor h6 + p {
      margin-top: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h1 + p,
    .p-editor h2 + p,
    .p-editor h3 + p,
    .p-editor h4 + p,
    .p-editor h5 + p,
    .p-editor h6 + p {
      margin-top: 2.6666666667vw;
    }
  }
  .p-editor h1 {
    margin-block: 1.875rem;
    font-size: 3.125rem;
    text-decoration: underline;
    text-decoration-thickness: 0.25rem;
    text-underline-offset: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h1 {
      margin-block: 2.196193265vw;
      font-size: 3.6603221083vw;
      text-decoration-thickness: 0.2928257687vw;
      text-underline-offset: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h1 {
      margin-block: 5.3333333333vw;
      font-size: 10.6666666667vw;
      text-decoration-thickness: 1.0666666667vw;
      text-underline-offset: 1.8666666667vw;
    }
  }
  .p-editor h2 {
    margin-block: 4.375rem 1.25rem;
    padding-top: 1.25rem;
    font-size: 2.375rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    position: relative;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h2 {
      margin-block: 5.1244509517vw 1.4641288433vw;
      padding-top: 1.4641288433vw;
      font-size: 2.7818448023vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h2 {
      margin-block: 13.3333333333vw 4vw;
      padding-top: 1.25rem;
      font-size: 6.1333333333vw;
      line-height: 1.3;
    }
  }
  .p-editor h2::before {
    background: url(../img/common/bg_ttl_dots.webp) no-repeat 0 0;
    background-size: contain;
    content: "";
    width: 2.3125rem;
    height: 0.4375rem;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% 0;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h2::before {
      width: 2.7086383602vw;
      height: 0.5124450952vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h2::before {
      width: 9.8666666667vw;
      height: 1.8666666667vw;
    }
  }
  .p-editor h2 sup {
    font-size: 50%;
  }
  .p-editor h3 {
    margin-block: 1.25rem 0.625rem;
    font-size: 1.75rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h3 {
      margin-block: 1.4641288433vw 0.7320644217vw;
      font-size: 2.0497803807vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h3 {
      margin-block: 2.6666666667vw 1.3333333333vw;
      font-size: 5.0666666667vw;
    }
  }
  .p-editor h4 {
    margin-block: 1.25rem 0.625rem;
    font-size: 1.625rem;
    background-color: var(--color-green);
    padding: 0.2em 0.5em;
    border-radius: 10px;
    color: #fff;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h4 {
      margin-block: 1.4641288433vw 0.7320644217vw;
      font-size: 1.9033674963vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h4 {
      margin-block: 2.6666666667vw 1.3333333333vw;
      font-size: 4.8vw;
    }
  }
  .p-editor h5 {
    padding-left: 0.5em;
    margin-block: 1.25rem 0.625rem;
    font-size: 1.5rem;
    border-left: 4px solid var(--color-green);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h5 {
      margin-block: 1.4641288433vw 0.7320644217vw;
      font-size: 1.756954612vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h5 {
      margin-block: 2.6666666667vw 1.3333333333vw;
      font-size: 4.6666666667vw;
      border-width: 2px;
    }
  }
  .p-editor h6 {
    margin-block: 1.25rem 0.625rem;
    font-size: 1.375rem;
    color: var(--color-green);
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor h6 {
      margin-block: 1.4641288433vw 0.7320644217vw;
      font-size: 1.6105417277vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor h6 {
      margin-block: 2.6666666667vw 1.3333333333vw;
      font-size: 4.5333333333vw;
    }
  }
  .p-editor p,
  .p-editor ul,
  .p-editor ol,
  .p-editor table,
  .p-editor dl,
  .p-editor blockquote {
    margin-block: 1.5625rem;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 2.05;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor p,
    .p-editor ul,
    .p-editor ol,
    .p-editor table,
    .p-editor dl,
    .p-editor blockquote {
      margin-block: 1.4641288433vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor p,
    .p-editor ul,
    .p-editor ol,
    .p-editor table,
    .p-editor dl,
    .p-editor blockquote {
      margin-block: 5.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-editor a {
    position: relative;
    padding-left: 2em;
    font-size: 1.125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor a {
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor a {
      font-size: 3.7333333333vw;
    }
  }
  .p-editor a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0.1em;
    left: 0;
    width: 1.38em;
    height: 1.38em;
    background: var(--main) url("../img/common/icon/icon_right_solid_beige.svg") center/45% no-repeat;
    border-radius: 50%;
  }
  @media (hover: hover) {
    .p-editor a:hover {
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 2px;
    }
  }
  .p-editor blockquote {
    padding: 2em;
    margin-inline: 0;
    background-color: var(--secondary-color);
  }
  .p-editor blockquote p {
    margin-block: 0;
  }
  .p-editor blockquote p + p {
    margin-top: 2.5rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor blockquote p + p {
      margin-top: 2.9282576867vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor blockquote p + p {
      margin-top: 5.3333333333vw;
    }
  }
  .p-editor ul {
    padding-left: 0;
    list-style: none;
  }
  .p-editor ul li {
    position: relative;
    padding-left: 1em;
  }
  .p-editor ul li::before {
    content: "";
    display: block;
    position: absolute;
    top: calc((1lh - 0.375rem) / 2);
    left: 0;
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--color-green);
    border-radius: 50%;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor ul li::before {
      top: calc((1lh - 0.439238653vw) / 2);
      width: 0.439238653vw;
      height: 0.439238653vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor ul li::before {
      top: calc((1lh - 1.6vw) / 2);
      width: 1.6vw;
      height: 1.6vw;
    }
  }
  .p-editor ul li > ul {
    margin-block: 0;
  }
  .p-editor ul li > ul li::before {
    background-color: transparent;
    border: 1px solid var(--color-green);
  }
  .p-editor ol {
    padding-left: 0;
    list-style: none;
    counter-reset: num-counter;
  }
  .p-editor ol > li {
    position: relative;
    padding-left: 1.3em;
  }
  .p-editor ol > li::before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(num-counter) ".";
    counter-increment: num-counter;
    color: var(--color-green);
  }
  .p-editor ol > li > ol {
    margin-block: 0;
    list-style: none;
    counter-reset: num-counter-sec;
  }
  .p-editor ol > li > ol > li {
    position: relative;
    padding-left: 2.2em;
  }
  .p-editor ol > li > ol > li::before {
    content: counter(num-counter) "-" counter(num-counter-sec) ".";
    counter-increment: num-counter-sec;
  }
  .p-editor ol > li > ul {
    margin-block: 0;
    list-style-position: inside;
    list-style-type: circle;
  }
  .p-editor table tbody tr {
    border-top: 1px solid var(--main);
  }
  @media screen and (max-width: 767px) {
    .p-editor table tbody tr {
      display: grid;
    }
  }
  .p-editor table tbody tr:last-of-type {
    border-bottom: 1px solid var(--main);
  }
  @media screen and (min-width: 768px) {
    .p-editor table tbody tr th,
    .p-editor table tbody tr td {
      padding: 1em;
    }
  }
  .p-editor table tbody tr th a,
  .p-editor table tbody tr td a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  @media screen and (min-width: 768px) {
    .p-editor table tbody tr th a[href^="tel:"],
    .p-editor table tbody tr td a[href^="tel:"] {
      text-decoration: none;
    }
  }
  .p-editor table tbody tr th {
    font-weight: 700;
    text-align: left;
    vertical-align: top;
  }
  @media screen and (min-width: 768px) {
    .p-editor table tbody tr th {
      width: 25%;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor table tbody tr th {
      padding: 1em 1em 0.5em;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor table tbody tr td {
      padding: 0.5em 1em 1em;
    }
  }
  .p-editor .wp-block-image {
    width: min(100%, 42.8125rem);
    margin-inline: auto !important;
    margin-block: 2.5rem !important;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .wp-block-image {
      width: min(100%, 50.1464128843vw);
      margin-block: 2.9282576867vw !important;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .wp-block-image {
      width: 100%;
      margin-block: 5.3333333333vw !important;
    }
  }
  .p-editor .wp-block-image.size-full img {
    width: 100%;
  }
  .p-editor .wp-block-image .size-full img {
    width: 100%;
  }
  .p-editor .wp-block-image img {
    border-radius: 1.875rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .wp-block-image img {
      border-radius: 2.196193265vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .wp-block-image img {
      border-radius: 4vw;
    }
  }
  .p-editor .wp-block-image figcaption {
    font-size: 0.75rem;
    font-weight: 500;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .wp-block-image figcaption {
      font-size: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .wp-block-image figcaption {
      font-size: 3.2vw;
    }
  }
  .p-editor .wp-block-image.block-editor-block-list__block {
    width: initial;
    max-width: 42.8125rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .wp-block-image.block-editor-block-list__block {
      max-width: 50.1464128843vw;
    }
  }
  .p-editor .wp-block-columns {
    gap: 2rem;
    margin-block: 2.5rem !important;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .wp-block-columns {
      gap: 2.3426061493vw;
      margin-block: 2.9282576867vw !important;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .wp-block-columns {
      gap: 4.2666666667vw;
      margin-block: 5.3333333333vw !important;
    }
  }
  .p-editor .wp-block-columns .wp-block-image {
    margin-block: 0 !important;
  }
  .p-editor .p-editor__note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    margin-block: -1.25rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.6;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .p-editor__note {
      margin-block: -1.4641288433vw 1.4641288433vw;
      font-size: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .p-editor__note {
      margin-block: -2.6666666667vw 2.6666666667vw;
      font-size: 3.2vw;
    }
  }
  .p-editor .p-editor__note::before {
    content: "※";
  }
  .p-editor .p-editor__num-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1em;
    margin-block: -1.25rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.6;
    color: #666;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .p-editor__num-note {
      margin-block: -1.4641288433vw 1.4641288433vw;
      font-size: 0.878477306vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .p-editor__num-note {
      margin-block: -2.6666666667vw 2.6666666667vw;
      font-size: 3.2vw;
    }
  }
  .p-editor .p-editor__num-note .num::before {
    content: "※";
  }
  .p-editor .p-editor__border-frame {
    border: 1px solid var(--main);
    padding: 2em;
    margin-block: 1.25rem;
    background-color: #fff5e4;
    border-radius: 0.625rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .p-editor__border-frame {
      margin-block: 1.4641288433vw;
      border-radius: 0.7320644217vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .p-editor__border-frame {
      margin-block: 2.6666666667vw;
      border-radius: 2.6666666667vw;
    }
  }
  .p-editor .p-editor__border-frame h2 {
    margin-top: 0;
    margin-bottom: 0.625rem;
    padding-top: 0;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-editor .p-editor__border-frame h2 {
      margin-bottom: 0.7320644217vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-editor .p-editor__border-frame h2 {
      margin-bottom: 1.3333333333vw;
      font-size: 4.2666666667vw;
    }
  }
  .p-editor .p-editor__border-frame h2::before {
    display: none;
  }
  .p-editor .p-editor__border-frame p {
    margin-block: 0;
  }
  .p-editor .has-orange-color {
    color: #ec6d54 !important;
  }
  .p-editor .has-orange-background-color {
    background-color: #ec6d54 !important;
  }
  .p-editor .has-orange-border-color {
    border-color: #ec6d54 !important;
  }
  .p-editor .has-green-color {
    color: #00934c !important;
  }
  .p-editor .has-green-background-color {
    background-color: #00934c !important;
  }
  .p-editor .has-green-border-color {
    border-color: #00934c !important;
  }
  .p-editor .has-blue-color {
    color: #3896ce !important;
  }
  .p-editor .has-blue-background-color {
    background-color: #3896ce !important;
  }
  .p-editor .has-blue-border-color {
    border-color: #3896ce !important;
  }
  .p-editor .has-yellow-color {
    color: #eec22c !important;
  }
  .p-editor .has-yellow-background-color {
    background-color: #eec22c !important;
  }
  .p-editor .has-yellow-border-color {
    border-color: #eec22c !important;
  }
  .p-editor .wp-block-button.is-style-outline .wp-block-button__link.has-orange-color {
    color: #ec6d54 !important;
  }
  .p-editor .wp-block-button.is-style-outline .wp-block-button__link.has-green-color {
    color: #00934c !important;
  }
  .p-editor .wp-block-button.is-style-outline .wp-block-button__link.has-blue-color {
    color: #3896ce !important;
  }
  .p-editor .wp-block-button.is-style-outline .wp-block-button__link.has-yellow-color {
    color: #eec22c !important;
  }
}
@layer project {
  .p-pagination {
    --item-size: 3.75rem;
    margin-top: 5.125rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pagination {
      --item-size: 4.39238653vw;
      margin-top: 6.0029282577vw;
      font-size: 1.317715959vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pagination {
      --item-size: 9.3333333333vw;
      margin-top: 10.9333333333vw;
      font-size: 3.7333333333vw;
    }
  }
  .p-pagination__items {
    position: relative;
    display: inline-flex;
    gap: 0.9375rem;
    align-items: center;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pagination__items {
      gap: 1.0980966325vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pagination__items {
      gap: 2vw;
    }
  }
  .p-pagination__item.prev, .p-pagination__item.next {
    position: absolute;
  }
  .p-pagination__item.prev {
    left: calc(var(--item-size) * 1.5 * -1);
    transform: scale(-1, 1);
  }
  @media screen and (max-width: 767px) {
    .p-pagination__item.prev {
      left: calc(var(--item-size) * 1.2 * -1);
    }
  }
  .p-pagination__item.next {
    right: calc(var(--item-size) * 1.5 * -1);
  }
  @media screen and (max-width: 767px) {
    .p-pagination__item.next {
      right: calc(var(--item-size) * 1.2 * -1);
    }
  }
  .p-pagination .page-numbers {
    display: grid;
    place-items: center;
    width: var(--item-size);
    height: var(--item-size);
    color: #fff;
    background-color: #cebfaa;
    border-radius: 1.4375rem;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pagination .page-numbers {
      border-radius: 1.6837481698vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pagination .page-numbers {
      border-radius: 3.0666666667vw;
    }
  }
  .p-pagination .page-numbers.current {
    background-color: var(--main);
    color: #fff;
  }
  .p-pagination .page-numbers.dots {
    width: calc(var(--item-size) / 1.5);
    color: var(--main);
    background-color: transparent;
  }
  .p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
    background: #cebfaa url("../img/common/icon/icon_right_solid_beige.svg") 50% 50%/1rem no-repeat;
  }
  @media screen and (max-width: 1365px) and (min-width: 768px) {
    .p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
      background-size: 1.1713030747vw;
    }
  }
  @media screen and (max-width: 767px) {
    .p-pagination .page-numbers.prev, .p-pagination .page-numbers.next {
      background-size: 3.4666666667vw;
    }
  }
  @media (hover: hover) {
    .p-pagination .page-numbers[href] {
      transition: 0.3s;
      transition-property: color, background-color;
    }
    .p-pagination .page-numbers[href].prev, .p-pagination .page-numbers[href].next {
      transition: background 0.3s;
    }
    .p-pagination .page-numbers[href]:hover {
      background-color: var(--main);
      color: #fff;
    }
    .p-pagination .page-numbers[href]:hover.prev, .p-pagination .page-numbers[href]:hover.next {
      background-image: url("../img/common/icon/icon_right_solid_beige.svg");
      background-color: var(--main);
    }
  }
}
@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-ml-auto {
    margin-left: auto;
  }
  .u-mr-auto {
    margin-right: auto;
  }
  .u-mt-0 {
    margin-top: 0;
  }
  .u-mt-1 {
    margin-top: 1em;
  }
  .u-mt-2 {
    margin-top: 2em;
  }
  .u-mt-3 {
    margin-top: 3em;
  }
  .u-mt-4 {
    margin-top: 4em;
  }
  .u-mt-5 {
    margin-top: 5em;
  }
  .u-mt-6 {
    margin-top: 6em;
  }
  .u-mt-7 {
    margin-top: 7em;
  }
  .u-mt-8 {
    margin-top: 8em;
  }
  .u-mt-9 {
    margin-top: 9em;
  }
  .u-mt-10 {
    margin-top: 10em;
  }
  .u-mb-0 {
    margin-bottom: 0;
  }
  .u-mb-1 {
    margin-bottom: 1em;
  }
  .u-mb-2 {
    margin-bottom: 2em;
  }
  .u-mb-3 {
    margin-bottom: 3em;
  }
  .u-mb-4 {
    margin-bottom: 4em;
  }
  .u-mb-5 {
    margin-bottom: 5em;
  }
  .u-mb-6 {
    margin-bottom: 6em;
  }
  .u-mb-7 {
    margin-bottom: 7em;
  }
  .u-mb-8 {
    margin-bottom: 8em;
  }
  .u-mb-9 {
    margin-bottom: 9em;
  }
  .u-mb-10 {
    margin-bottom: 10em;
  }
  .u-ml-1 {
    margin-left: 1em;
  }
  .u-ml-2 {
    margin-left: 2em;
  }
  .u-ml-3 {
    margin-left: 3em;
  }
  .u-ml-4 {
    margin-left: 4em;
  }
  .u-ml-5 {
    margin-left: 5em;
  }
  .u-mr-1 {
    margin-right: 1em;
  }
  .u-mr-2 {
    margin-right: 2em;
  }
  .u-mr-3 {
    margin-right: 3em;
  }
  .u-mr-4 {
    margin-right: 4em;
  }
  .u-mr-5 {
    margin-right: 5em;
  }
  @media screen and (min-width: 768px) {
    .u-mt-pc-0 {
      margin-top: 0;
    }
    .u-mt-pc-1 {
      margin-top: 1em;
    }
    .u-mt-pc-2 {
      margin-top: 2em;
    }
    .u-mt-pc-3 {
      margin-top: 3em;
    }
    .u-mt-pc-4 {
      margin-top: 4em;
    }
    .u-mt-pc-5 {
      margin-top: 5em;
    }
    .u-mt-pc-6 {
      margin-top: 6em;
    }
    .u-mt-pc-7 {
      margin-top: 7em;
    }
    .u-mt-pc-8 {
      margin-top: 8em;
    }
    .u-mt-pc-9 {
      margin-top: 9em;
    }
    .u-mt-pc-10 {
      margin-top: 10em;
    }
    .u-mb-pc-0 {
      margin-bottom: 0;
    }
    .u-mb-pc-1 {
      margin-bottom: 1em;
    }
    .u-mb-pc-2 {
      margin-bottom: 2em;
    }
    .u-mb-pc-3 {
      margin-bottom: 3em;
    }
    .u-mb-pc-4 {
      margin-bottom: 4em;
    }
    .u-mb-pc-5 {
      margin-bottom: 5em;
    }
    .u-mb-pc-6 {
      margin-bottom: 6em;
    }
    .u-mb-pc-7 {
      margin-bottom: 7em;
    }
    .u-mb-pc-8 {
      margin-bottom: 8em;
    }
    .u-mb-pc-9 {
      margin-bottom: 9em;
    }
    .u-mb-pc-10 {
      margin-bottom: 10em;
    }
    .u-ml-pc-1 {
      margin-left: 1em;
    }
    .u-ml-pc-2 {
      margin-left: 2em;
    }
    .u-ml-pc-3 {
      margin-left: 3em;
    }
    .u-ml-pc-4 {
      margin-left: 4em;
    }
    .u-ml-pc-5 {
      margin-left: 5em;
    }
    .u-mr-pc-1 {
      margin-right: 1em;
    }
    .u-mr-pc-2 {
      margin-right: 2em;
    }
    .u-mr-pc-3 {
      margin-right: 3em;
    }
    .u-mr-pc-4 {
      margin-right: 4em;
    }
    .u-mr-pc-5 {
      margin-right: 5em;
    }
  }
  @media screen and (max-width: 767px) {
    .u-mt-sp-0 {
      margin-top: 0;
    }
    .u-mt-sp-1 {
      margin-top: 1em;
    }
    .u-mt-sp-2 {
      margin-top: 2em;
    }
    .u-mt-sp-3 {
      margin-top: 3em;
    }
    .u-mt-sp-4 {
      margin-top: 4em;
    }
    .u-mt-sp-5 {
      margin-top: 5em;
    }
    .u-mt-sp-6 {
      margin-top: 6em;
    }
    .u-mt-sp-7 {
      margin-top: 7em;
    }
    .u-mt-sp-8 {
      margin-top: 8em;
    }
    .u-mt-sp-9 {
      margin-top: 9em;
    }
    .u-mt-sp-10 {
      margin-top: 10em;
    }
    .u-mb-sp-0 {
      margin-bottom: 0;
    }
    .u-mb-sp-1 {
      margin-bottom: 1em;
    }
    .u-mb-sp-2 {
      margin-bottom: 2em;
    }
    .u-mb-sp-3 {
      margin-bottom: 3em;
    }
    .u-mb-sp-4 {
      margin-bottom: 4em;
    }
    .u-mb-sp-5 {
      margin-bottom: 5em;
    }
    .u-mb-sp-6 {
      margin-bottom: 6em;
    }
    .u-mb-sp-7 {
      margin-bottom: 7em;
    }
    .u-mb-sp-8 {
      margin-bottom: 8em;
    }
    .u-mb-sp-9 {
      margin-bottom: 9em;
    }
    .u-mb-sp-10 {
      margin-bottom: 10em;
    }
    .u-ml-sp-1 {
      margin-left: 1em;
    }
    .u-ml-sp-2 {
      margin-left: 2em;
    }
    .u-ml-sp-3 {
      margin-left: 3em;
    }
    .u-ml-sp-4 {
      margin-left: 4em;
    }
    .u-ml-sp-5 {
      margin-left: 5em;
    }
    .u-mr-sp-1 {
      margin-right: 1em;
    }
    .u-mr-sp-2 {
      margin-right: 2em;
    }
    .u-mr-sp-3 {
      margin-right: 3em;
    }
    .u-mr-sp-4 {
      margin-right: 4em;
    }
    .u-mr-sp-5 {
      margin-right: 5em;
    }
  }
}
@layer utilities {
  .u-ls-n15 {
    letter-spacing: -0.15em;
  }
  .u-ls-n10 {
    letter-spacing: -0.1em;
  }
  .u-ls-n9 {
    letter-spacing: -0.09em;
  }
  .u-ls-n8 {
    letter-spacing: -0.08em;
  }
  .u-ls-n7 {
    letter-spacing: -0.07em;
  }
  .u-ls-n6 {
    letter-spacing: -0.06em;
  }
  .u-ls-n5 {
    letter-spacing: -0.05em;
  }
  .u-ls-0 {
    letter-spacing: 0;
  }
  .u-ls-5 {
    letter-spacing: 0.05em;
  }
  .u-ls-10 {
    letter-spacing: 0.1em;
  }
  .u-ls-15 {
    letter-spacing: 0.15em;
  }
  .u-ls-20 {
    letter-spacing: 0.2em;
  }
}