:root {
  --english: "Montserrat", sans-serif;
}
@layer base, swiper, common;
@layer base {
  *,
  *::before,
  *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :where([hidden]:not([hidden="until-found"])) {
    display: none !important;
  }
  :where(html) {
    -webkit-text-size-adjust: none;
  }
  @supports not (min-block-size: 100dvb) {
    :where(html) {
      block-size: 100%;
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    :where(html:focus-within) {
      scroll-behavior: smooth;
    }
  }
  :where(body) {
    block-size: 100%;
    block-size: 100dvb;
    line-height: 1.5;
    font-family: system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
  }
  :where(input, button, textarea, select) {
    font: inherit;
    color: inherit;
  }
  :where(textarea) {
    resize: vertical;
    resize: block;
  }
  :where(button, label, select, summary, [role="button"], [role="option"]) {
    cursor: pointer;
  }
  :where(:disabled) {
    cursor: not-allowed;
  }
  :where(label:has(> input:disabled), label:has(+ input:disabled)) {
    cursor: not-allowed;
  }
  :where(button) {
    border-style: solid;
  }
  :where(a) {
    text-underline-offset: 0.2ex;
  }
  :where(ul, ol) {
    list-style: none;
  }
  :where(img, svg, video, canvas, audio, iframe, embed, object) {
    display: block;
  }
  :where(img, picture, svg) {
    display: block;
    width: 100%;
    height: auto;
  }
  :where(p, h1, h2, h3, h4, h5, h6) {
    overflow-wrap: break-word;
    font-weight: 400;
    font-size: 1rem;
  }
  :where(h1, h2, h3) {
    line-height: calc(1em + 0.5rem);
  }
  :where(hr) {
    border: none;
    border-block-start: 1px solid;
    color: inherit;
    block-size: 0;
    overflow: visible;
  }
  :where(:focus-visible) {
    outline: 2px solid var(--focus-color, Highlight);
    outline-offset: 2px;
  }
  :where(
      .visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)
    ) {
    clip-path: inset(50%) !important;
    height: 1px !important;
    width: 1px !important;
    overflow: hidden !important;
    position: absolute !important;
    white-space: nowrap !important;
    border: 0 !important;
  }
  body {
    /* font-family: "Montserrat", sans-serif; */
    font-family: "Noto Sans JP", sans-serif;

    text-align: justify;
    text-justify: inter-ideograph;
    line-break: strict;
    word-break: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  a {
    text-decoration: none;
    color: currentColor;
  }
  @media screen and (min-width: 1024px) {
    body {
      font-feature-settings: "palt";
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-root {
      position: relative;
    }
    .c-root__header {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 100;
    }
    .c-root__header + .c-root__contents {
      margin-top: 120px;
    }
    .c-root__recommend {
    }
    .c-root__footer {
    }
    .c-root__modal {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 9999;
      transition: 0.25s;
      pointer-events: none;
      opacity: 0;
    }
    .c-root__modal:not(.active) * {
      pointer-events: none;
    }
    .c-root__modal.active {
      pointer-events: auto;
      opacity: 1;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-root__header {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 100;
    }
    .c-root__header + .c-root__contents {
      margin-top: 60px;
    }

    .c-root__modal {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      z-index: 9999;
      transition: 0.25s;
      pointer-events: none;
      opacity: 0;
    }
    .c-root__modal:not(.active) * {
      pointer-events: none;
    }
    .c-root__modal.active {
      pointer-events: auto;
      opacity: 1;
    }
  }
}
@media screen and (min-width: 1024px) {
  .hide-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .hide-sp {
    display: none !important;
  }
}
/* header */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-header {
      background-color: #fff;
      position: relative;
      height: 120px;
      transition: 0.25s;
    }
    .c-header__logo-block {
      width: 208px;
      position: absolute;
      left: 20px;
      top: 30px;
      z-index: 2;
      transition: 0.25s;
    }
    .c-header__logo {
      display: block;
      padding-top: 12px;
      padding-bottom: 12px;
      padding-left: 30px;
      padding-right: 30px;
      transition: 0.25s;
    }
    .c-header__logo:hover {
      opacity: 0.5;
    }
    .c-header__nav {
      position: absolute;
      left: 0;
      /* padding-left: 268px; */
      top: 30px;
      width: 100%;
      transition: 0.25s;
      padding-right: 35px;
    }
    .c-header__subnavi{
      /* position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%); */
      display: flex;
      justify-content: flex-end;
    }
    .c-header__subnavi li{
      font-weight: 400;
      font-size: 14px;
      color: #3c3c3c;
      margin-left: 30px;
    }
    .tight .c-header__subnavi{
      /* padding-top: 10px; */
      display: none;
    }

    .c-header__nav-list {
      display: flex;
      gap: 30px;
      justify-content: flex-end;
    }
    .c-header__nav-link {
      display: block;
      padding-top: 20px;
      padding-bottom: 19px;
      font-weight: 400;
      font-size: 14px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.4285714286;
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s, color 0.25s;
    }
    .c-header__nav-link:hover {
      color: #0b3080;
      border-color: #0b3080;
    }
    .c-header__mega-menu {
      position: absolute;
      left: 0;
      /* top: 60px; */
      width: 100%;
      background-color: #fff;
      z-index: 999;
      transition: height 0.5s, opacity 0.5s;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      top: 81px;
    }
    .active .c-header__mega-menu {
      opacity: 1;
      pointer-events: all;
    }
    .c-header.tight {
      height: 60px;
    }
    .c-header.tight .c-header__mega-menu{
      top: 60px;
    }
    .c-header.tight .c-header__logo-block {
      top: 0;
    }
    .c-header.tight .c-header__nav {
      top: 0;
    }
  }
  @media screen and (max-width: 1190px) {
    .c-header__nav-list {
        gap: 40px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-header {
      background-color: #fff;
      position: relative;
      height: 60px;
    }
    .c-header__logo-block {
      width: 134px;
      position: absolute;
      left: 20px;
      top: 14px;
    }
    .c-header__logo {
      display: block;
    }
    .c-header__nav {
      position: absolute;
      left: 0;
      padding-left: 268px;
      top: 30px;
      width: 100%;
    }
    .c-header__nav-list {
      display: flex;
      gap: 80px;
    }
    .c-header__nav-link {
      display: block;
      padding-top: 20px;
      padding-bottom: 19px;
      font-weight: 400;
      font-size: 14px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.4285714286;
      border-bottom: 1px solid transparent;
      transition: border-color 0.25s, color 0.25s;
    }
    .c-header__nav-link:hover {
      color: #0b3080;
      border-color: #0b3080;
    }
    .c-header__mega-menu {
      position: absolute;
      left: 0;
      /* top: 60px; */
      width: 100%;
      background-color: #fff;
      z-index: 999;
      transition: height 0.5s, opacity 0.5s;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
      top: 81px;
    }
    .active .c-header__mega-menu {
      opacity: 1;
      pointer-events: all;
    }
    .c-header__sp-nav {
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      transition: opacity 0.25s;
      opacity: 0;
      z-index: 9999;
      pointer-events: none;
    }
    .c-header__sp-nav.active {
      pointer-events: inherit;
      opacity: 1;
    }
    .c-header__sp-nav-open-button-block {
      width: 44px;
      position: absolute;
      top: 8px;
      right: 10px;
    }
    .c-header__sp-nav-open-button {
      position: relative;
      aspect-ratio: 1;
    }
    .c-header__sp-nav-open-button span {
      position: absolute;
      left: 0;
      right: 0;
      width: 54.54545455%;
      height: 1px;
      display: block;
      background-color: #3c3c3c;
      margin: auto;
    }
    .c-header__sp-nav-open-button span:nth-of-type(1) {
      top: 25%;
    }
    .c-header__sp-nav-open-button span:nth-of-type(2) {
      top: 50%;
    }
    .c-header__sp-nav-open-button span:nth-of-type(3) {
      top: 75%;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-mega-menu {
      padding-left: 248px;
      padding-top: 30px;
      padding-right: 166px;
      padding-bottom: 48px;
    }
    .c-mega-menu__list {
      max-width: 1180px;
      display: grid;
      grid-template-columns: repeat(auto-fill, 180px);
      gap: 30px 20px;
      justify-content: center;
    }
    .c-mega-menu__footer {
      max-width: 1280px;
      margin-top: 30px;
      border-top: 1px solid #707070;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-mega-menu-link {
      display: block;
    }
    .c-mega-menu-link__image {
      position: relative;
    }
    .c-mega-menu-link__image::before {
      transition: 0.25s;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.32);
      opacity: 0;
    }
    .c-mega-menu-link__title {
      font-weight: 400;
      font-size: 14px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.4285714286;
      margin-top: 11px;
    }
    .c-mega-menu-link__title-sub {
      font-size: 12px;
      line-height: 1.6666666667;
      display: block;
    }
    .c-mega-menu-link:hover .c-mega-menu-link__image::before {
      opacity: 1;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-mega-menu-footer {
      display: flex;
      flex-wrap: wrap;
    }
    .c-mega-menu-footer__nav1 {
      display: flex;
      margin-right: 40px;
    }
    .c-mega-menu-footer__nav2 {
      display: flex;
      gap: 40px;
      margin-right: 48px;
      padding-top: 26px;
    }
    .c-mega-menu-footer__sns-nav {
      display: flex;
      gap: 20px;
      padding-top: 26px;
    }

    .c-mega-menu-footer__nav1-link {
      display: block;
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 30px;
      padding-right: 30px;
      transition: 0.25s;
    }
    .c-mega-menu-footer__nav1-link:hover {
      opacity: 0.5;
    }
    .c-mega-menu-footer__nav1-link-icon {
      display: inline-block;
      vertical-align: -4px;
    }
    .c-mega-menu-footer__nav1-link-icon--1 {
      width: 18px;
    }
    .c-mega-menu-footer__nav1-link-icon--2 {
      width: 26px;
    }
    .c-mega-menu-footer__nav1-link-icon--3 {
      width: 20px;
    }
    .c-mega-menu-footer__nav1-link-icon--4 {
      width: 20px;
    }
    .c-mega-menu-footer__nav1-link-label {
      display: inline-block;
      font-weight: 500;
      font-size: 16px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.5;
      margin-left: 9px;
    }
    .c-mega-menu-footer__nav2-item-link {
      font-weight: 400;
      font-size: 14px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.8571428571428572;
      display: block;
    }
    .c-mega-menu-footer__nav2-item-link::after {
      content: "";
      display: block;
      width: 32px;
      height: 2px;
      background-color: #3c3c3c;
      margin-top: 10px;
      transition: 0.25s;
    }
    .c-mega-menu-footer__nav2-item-link:hover::after {
      width: 100%;
    }
    .c-mega-menu-footer__sns-nav-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 32px;
      width: 32px;
      transition: 0.25s;
    }
    .c-mega-menu-footer__sns-nav-link:hover {
      opacity: 0.5;
    }
  }

  @media screen and (max-width: 1023px) {
    .c-header-sp-nav {
      height: 100%;
      overflow: auto;
      background-color: #1c1c1c;
    }
    .c-header-sp-nav__header {
      display: grid;
      grid-template-columns: 1fr 44px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .c-header-sp-nav__head-button {
      aspect-ratio: 1;
      margin-top: 15px;
      position: relative;
    }
    .c-header-sp-nav__head-button span {
      display: block;
      width: 24px;
      height: 1px;
      background-color: #fff;
      transform: rotate(45deg);
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      transform: rotate(45deg);
    }
    .c-header-sp-nav__head-button span:nth-of-type(2) {
      transform: rotate(135deg);
    }
    .c-header-sp-nav__logo-block {
      margin-top: 20px;
      padding-bottom: 26px;
    }
    .c-header-sp-nav__logo {
      width: 142px;
      display: block;
    }
    .c-header-sp-nav__list {
      padding-left: 20px;
      padding-right: 20px;
    }
    .c-header-sp-nav__footer {
      margin-top: 20px;
    }

    .c-header-sp-accordion__head {
      min-height: 60px;
      display: grid;
      grid-template-columns: 1fr 44px;
      align-items: center;
      border-bottom: 1px solid #707070;
    }
    .c-header-sp-accordion__head-link {
      display: block;
      font-weight: 400;
      font-size: 16px;
      line-height: 1.5;
      color: #fff;
    }
    .c-header-sp-accordion__head-button {
      position: relative;
      height: 44px;
    }
    .c-header-sp-accordion__head-button span {
      display: block;
      background-color: #707070;
      width: 20px;
      height: 1px;
      position: absolute;
      right: 3px;
      top: 0;
      bottom: 0;
      margin: auto;
      transition: 0.25s;
    }
    .c-header-sp-accordion__head-button span:nth-of-type(2) {
      transform: rotate(90deg);
    }
    .active.c-header-sp-accordion
      .c-header-sp-accordion__head-button
      span:nth-of-type(2) {
      transform: rotate(0deg);
    }
    .c-header-sp-accordion__list {
      padding-bottom: 30px;
    }
    .c-header-sp-accordion__body {
      overflow: hidden;
      transition: 0.25s;
    }
    .c-header-sp-accordion__item-link {
      font-weight: 400;
      font-size: 14px;
      line-height: 1.4285714286;
      color: #fff;
    }
    .c-header-sp-accordion__list-item {
      margin-top: 30px;
    }
  }

  @media screen and (max-width: 1023px) {
    .c-header-sp-nav-footer {
      display: flex;
      flex-wrap: wrap;
    }
    .c-header-sp-nav-footer__nav1 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      width: 100%;
    }
    .c-header-sp-nav-footer__sns-nav {
      display: flex;
      gap: 20px;
      justify-content: center;
      margin-top: 31px;
      width: 100%;
    }

    .c-header-sp-nav-footer__nav1-link {
      display: grid;
      align-items: center;
      padding-left: 52px;
      position: relative;
      height: 48px;
    }
    .c-header-sp-nav-footer__nav1-link-icon {
      position: absolute;
    }
    .c-header-sp-nav-footer__nav1-link-icon--1 {
      width: 18px;
      top: 12px;
      left: 25px;
    }
    .c-header-sp-nav-footer__nav1-link-icon--2 {
      width: 26px;
      top: 12px;
      left: 16.2px;
    }
    .c-header-sp-nav-footer__nav1-link-icon--3 {
      width: 20px;
      top: 12px;
      left: 24px;
    }
    .c-header-sp-nav-footer__nav1-link-icon--4 {
      width: 20px;
      top: 14px;
      left: 18px;
    }
    .c-header-sp-nav-footer__nav1-link-label {
      display: inline-block;
      font-weight: 500;
      font-size: 16px;
      line-height: 1.5;
      color: #fff;
    }
    .c-header-sp-nav-footer__sns-nav-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 32px;
      width: 32px;
    }
  }
}

/* recommend */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-recommend {
      padding-top: 128px;
      padding-bottom: 160px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .c-recommend__inner {
      max-width: 1280px;
      margin: auto;
    }
    .c-recommend__title {
      border-bottom: 1px solid #707070;
      padding-bottom: 12px;
      color: #000000;
      position: relative;
    }
    .c-recommend__title::after {
      content: "";
      display: block;
      width: 268px;
      height: 3px;
      background-color: #0b3080;
      position: absolute;
      left: 0;
      bottom: -1px;
    }
    .c-recommend__title1 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 28px;
      color: #000000;
      letter-spacing: 0.3em;
      line-height: 1.3571428571428572;
    }
    .c-recommend__title2 {
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 1.8571428571428572;
      margin-top: -4px;
    }
    .c-recommend__list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 48px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-recommend {
      padding-top: 80px;
      padding-bottom: 80px;
      padding-left: 35px;
      padding-right: 35px;
    }
    .c-recommend__inner {
    }
    .c-recommend__title {
      border-bottom: 1px solid #707070;
      padding-bottom: 12px;
      color: #000000;
      position: relative;
    }
    .c-recommend__title::after {
      content: "";
      display: block;
      width: 268px;
      height: 3px;
      background-color: #0b3080;
      position: absolute;
      left: 0;
      bottom: -1px;
    }
    .c-recommend__title1 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 28px;
      color: #000000;
      letter-spacing: 0.3em;
      line-height: 1.3571428571428572;
    }
    .c-recommend__title2 {
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 1.8571428571428572;
      margin-top: -4px;
    }
    .c-recommend__list {
      display: grid;
      gap: 48px;
      margin-top: 48px;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-recommend-card {
      display: block;
      position: relative;
      height: 100%;
      padding-bottom: 44px;
    }
    .c-recommend-card__image {
      position: relative;
    }
    .c-recommend-card__image::before {
      transition: 0.25s;
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.32);
      opacity: 0;
    }
    .c-recommend-card__title {
      font-weight: 500;
      font-size: 16px;
      color: #3e3e3e;
      letter-spacing: 0.1em;
      line-height: 1.375;
      margin-top: 10px;
    }
    .c-recommend-card__text {
      font-weight: 400;
      font-size: 14px;
      color: #3e3e3e;
      letter-spacing: 0.05em;
      line-height: 1.7142857142857142;
      margin-top: 6px;
    }
    .c-recommend-card__more {
      width: 80px;
      position: absolute;
      left: 0;
      bottom: 0;
    }
    .c-recommend-card:hover .c-recommend-card__image::before {
      opacity: 1;
    }
     /* 資料請求バナー */
    .material_banner_pc {
      max-width: 1280px;
      margin: 100px auto 0;
    }
    .material_banner_sp {
      display: none;
  }
  }
  @media screen and (max-width: 1023px) {
    .c-recommend-card {
    }
    .c-recommend-card__title {
      font-weight: 500;
      font-size: 16px;
      color: #3e3e3e;
      letter-spacing: 0.1em;
      line-height: 1.375;
      margin-top: 10px;
    }
    .c-recommend-card__text {
      font-weight: 400;
      font-size: 14px;
      color: #3e3e3e;
      letter-spacing: 0.05em;
      line-height: 1.7142857142857142;
      margin-top: 6px;
    }
    .c-recommend-card__more {
      width: 80px;
      margin-top: 18px;
    }
  }
}
/* model-house */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-model-house {
      background-color: #0b308e;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 128px;
      padding-bottom: 128px;
    }
    .c-model-house__inner {
      margin: auto;
      max-width: 1280px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-model-house {
      background-color: #0b308e;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 48px;
      padding-bottom: 48px;
    }
    .c-model-house__inner {
    }
  }

  @media screen and (min-width: 1024px) {
    .c-model-house-banner {
      display: grid;
      grid-template-columns: 1fr 40%;
      background-color: #fff;
    }
    .c-model-house-banner__image {
      position: relative;
    }
    .c-model-house-banner__image::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.32);
      opacity: 0;
      transition: 0.25s;
    }
    .c-model-house-banner__body {
      display: grid;
      place-items: center;
      padding-left: 20px;
      padding-right: 20px;
    }
    .c-model-house-banner__body-inner {
      max-width: 316px;
    }
    .c-model-house-banner__title {
      font-weight: 500;
      font-size: 23px;
      color: #3e3e3e;
      letter-spacing: 0.1em;
      line-height: 1.0869565217391304;
      display: inline-block;
    }
    .c-model-house-banner__title::after {
      content: "";
      display: block;
      width: 48px;
      height: 3px;
      background-color: #0b308e;
      margin-top: 10px;
      transition: 0.25s;
    }
    .c-model-house-banner__text {
      font-weight: 400;
      font-size: 14px;
      color: #3e3e3e;
      letter-spacing: 0.1em;
      line-height: 2;
      margin-top: 16px;
    }
    .c-model-house-banner__more {
      width: 224px;
      margin-top: 16px;
    }
    .c-model-house-banner:hover .c-model-house-banner__image::before {
      opacity: 1;
    }
    .c-model-house-banner:hover .c-model-house-banner__title::after {
      width: 100%;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-model-house-banner {
      background-color: #fff;
      display: block;
    }
    .c-model-house-banner__image {
      overflow: hidden;
    }
    .c-model-house-banner__image > picture {
      transition: 0.25s;
    }
    .c-model-house-banner__body {
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .c-model-house-banner__body-inner {
    }
    .c-model-house-banner__title {
      font-weight: 500;
      font-size: 21px;
      letter-spacing: 0.1em;
      line-height: 1.4285714286;
      color: #3e3e3e;

      display: inline-block;
    }
    .c-model-house-banner__title::after {
      content: "";
      display: block;
      width: 48px;
      height: 3px;
      background-color: #0b308e;
      margin-top: 11px;
    }
    .c-model-house-banner__text {
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.1em;
      line-height: 1.7142857143;
      color: #3e3e3e;
      margin-top: 18px;
    }
    .c-model-house-banner__more {
      width: 224px;
      margin-top: 16px;
    }
  }
}

/* footer */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-footer {
    }
    .c-footer__nav {
      padding-top: 160px;
      max-width: 1390px;
      padding-left: 20px;
      padding-right: 20px;
      margin: auto;
    }

    .c-footer-nav {
      border-top: 1px solid #808080;
      border-bottom: 1px solid #808080;
      padding-top: 28px;
      padding-bottom: 28px;
      display: grid;
      grid-template-columns: 173.72px 1fr 136px;
    }
    .c-footer-nav__logo-block {
      width: 173.72px;
      padding-top: 18px;
      padding-bottom: 18px;
      margin-right: 30px;
    }
    .c-footer-nav__logo {
      transition: 0.25s;
    }
    .c-footer-nav__logo:hover {
      opacity: 0.5;
    }
    .c-footer-nav__list {
      display: flex;
    }
    .c-footer-nav__nav-link {
      display: block;
      padding-top: 30px;
      padding-bottom: 30px;
      padding-left: 30px;
      padding-right: 30px;
      transition: 0.25s;
    }
    .c-footer-nav__nav-link:hover {
      opacity: 0.5;
    }
    .c-footer-nav__nav-link-icon {
      display: inline-block;
      vertical-align: -4px;
    }
    .c-footer-nav__nav-link-icon--1 {
      width: 18px;
    }
    .c-footer-nav__nav-link-icon--2 {
      width: 26px;
    }
    .c-footer-nav__nav-link-icon--3 {
      width: 20px;
    }
    .c-footer-nav__nav-link-icon--4 {
      width: 20px;
    }
    .c-footer-nav__nav-link-label {
      display: inline-block;
      font-weight: 500;
      font-size: 16px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.5;
      margin-left: 9px;
    }
    .c-footer-nav__sns-list {
      display: flex;
      gap: 20px;
      margin-top: 26px;
    }
    .c-footer-nav__sns-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 32px;
      width: 32px;
      transition: 0.25s;
    }
    .c-footer-nav__sns-link:hover {
      opacity: 0.5;
    }

    .c-footer-nav__group {
      padding-top: 48px;
      padding-bottom: 48px;
      max-width: 420px;
      margin: auto;
    }
    .c-footer-nav-group {
      display: flex;
    }
    .c-footer-nav-group__icon {
      width: 50px;
    }
    .c-footer-nav-group__text {
      margin-left: 20px;
      font-weight: 400;
      font-size: 16px;
      color: #000000;
      letter-spacing: 0em;
      line-height: 1.625;
      text-align: center;
    }
    .c-footer-nav-group__link {
      display: block;
    }
    .c-footer-nav-group__link:hover {
      text-decoration: underline;
    }

    .c-footer__site-map {
      background-color: #1c1c1c;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 80px;
      padding-bottom: 30px;
    }
    .c-footer__site-map-inner {
      max-width: 1350px;
      margin: auto;
    }

    .c-footer-site-map {
    }
    .c-footer-site-map__list--lv1
      > .c-footer-site-map__title-block
      > .c-footer-site-map__title {
      transition: 0.25s;
    }
    .c-footer-site-map__list--lv1
      > .c-footer-site-map__title-block
      > .c-footer-site-map__title:hover {
      opacity: 0.5;
    }

    .c-footer-site-map__list--lv1 > .c-footer-site-map__title-block {
      font-weight: 400;
      font-size: 24px;
      color: #ffffff;
      letter-spacing: 0em;
      line-height: 1.4583333333;
      border-bottom: 1px solid #ffffff;
      padding-bottom: 30px;
    }
    .c-footer-site-map__list--lv2 > .c-footer-site-map__title-block {
      font-weight: 400;
      font-size: 16px;
      color: #ffffff;
      letter-spacing: 0em;
      line-height: 1.5;
    }
    .c-footer-site-map__list--lv2
      > .c-footer-site-map__title-block
      > .c-footer-site-map__title::after {
      content: "";
      display: block;
      width: 48px;
      height: 1px;
      background-color: #fff;
      margin-top: 8px;
      transition: 0.25s;
    }
    .c-footer-site-map__list--lv2
      > .c-footer-site-map__title-block
      > .c-footer-site-map__title:hover::after {
      width: 100%;
    }
    .c-footer-site-map__list--lv1
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 30px;
    }
    .c-footer-site-map__list--lv2
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      margin-top: 30px;
      padding-bottom: 18px;
    }
    .c-footer-site-map__list--lv2
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list--col2 {
      grid-template-columns: 1fr 1fr;
    }
    .c-footer-site-map__list--lv2 + .c-footer-site-map__list--lv2 {
      margin-top: 30px;
    }
    .c-footer-site-map__title {
      display: inline-block;
    }
    .c-footer-site-map__title-label {
      display: inline-block;
    }
    .c-footer-site-map__title-icon {
      width: 24px;
      margin-right: 10px;
      display: inline-block;
      vertical-align: -2px;
    }
    .c-footer-site-map__link {
      display: inline-block;
      font-weight: 400;
      font-size: 13px;
      color: #ffffff;
      letter-spacing: 0em;
      line-height: 1.7692307692;
    }
    .c-footer-site-map__link::after {
      content: "";
      height: 1px;
      width: 0%;
      display: block;
      transition: 0.25s;
      background-color: #fff;
    }
    .c-footer-site-map__link:hover::after {
      width: 100%;
    }
    .c-footer-site-map__link-label-sub {
      display: block;
      font-size: 11px;
    }
    .c-footer-site-map__etc-list {
      display: flex;
      justify-content: center;
      margin-top: 93px;
    }
    .c-footer-site-map__etc-link {
      font-weight: 400;
      font-size: 12px;
      color: #ffffff;
      letter-spacing: 0.1em;
      line-height: 1.4166666667;
      display: block;
      transition: 0.25s;
    }
    .c-footer-site-map__etc-link:hover {
      opacity: 0.5;
    }
    .c-footer-site-map__etc-list-item {
      position: relative;
      display: block;
    }
    .c-footer-site-map__etc-list-item + .c-footer-site-map__etc-list-item {
      margin-left: 40px;
    }
    .c-footer-site-map__etc-list-item
      + .c-footer-site-map__etc-list-item::before {
      content: "";
      position: absolute;
      width: 1px;
      height: 13px;
      background-color: #fff;
      left: -20px;
      top: 4px;
    }
    .c-footer-brand {
      background-color: #000000;
      padding-top: 83px;
      padding-bottom: 73px;
    }
    .c-footer-brand__logo {
      width: 282px;
      margin: auto;
      display: block;
      transition: 0.25s;
    }
    .c-footer-brand__logo:hover {
      opacity: 0.5;
    }
    .c-footer-brand__copyright {
      font-weight: 400;
      font-size: 10px;
      color: #ffffff;
      letter-spacing: 0.05em;
      line-height: 1.5;
      margin-top: 29px;
      text-align: center;
    }
  }
  @media screen and (max-width: 1400px) and (min-width: 1024px) {
    .c-footer-site-map__list--lv1
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list {
      gap: 10px;
    }
    .c-footer-site-map__list--lv2
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list--col2 {
      grid-template-columns: 1fr;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-footer {
    }
    .c-footer__nav {
      padding-top: 50px;
    }

    .c-footer-nav {
      border-bottom: 1px solid #808080;
      display: grid;
      grid-template-columns: 1fr;
      padding-bottom: 48px;

      justify-items: center;
    }
    .c-footer-nav__logo-block {
      width: 173.72px;
    }
    .c-footer-nav__list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      margin-top: 38px;
      width: 100%;
    }
    .c-footer-nav__nav-link {
      display: grid;
      align-items: center;
      padding-left: 52px;
      position: relative;
      height: 48px;
    }
    .c-footer-nav__nav-link-icon {
      position: absolute;
    }
    .c-footer-nav__nav-link-icon--1 {
      width: 18px;
      top: 12px;
      left: 25px;
    }
    .c-footer-nav__nav-link-icon--2 {
      width: 26px;
      top: 12px;
      left: 16.2px;
    }
    .c-footer-nav__nav-link-icon--3 {
      width: 20px;
      top: 14px;
      left: 24px;
    }
    .c-footer-nav__nav-link-icon--4 {
      width: 20px;
      top: 14px;
      left: 18px;
    }
    .c-footer-nav__nav-link-label {
      display: inline-block;
      font-weight: 500;
      font-size: 16px;
      color: #3c3c3c;
      letter-spacing: 0em;
      line-height: 1.5;
      margin-left: 9px;
    }
    .c-footer-nav__sns-list {
      display: flex;
      gap: 20px;
      margin-top: 26px;
    }
    .c-footer-nav__sns-link {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 32px;
      width: 32px;
    }

    .c-footer-nav__group {
      margin-top: 48px;
    }
    .c-footer-nav-group {
      display: grid;
      justify-content: center;
    }
    .c-footer-nav-group__icon {
      width: 50px;
      margin: auto;
    }
    .c-footer-nav-group__text {
      font-weight: 400;
      font-size: 13px;
      line-height: 1.4615384615;
      color: #000;
      text-align: center;
      margin-top: 14px;
    }
    .c-footer-nav-group__link {
      display: block;
      margin-top: 5px;
    }

    .c-footer__site-map {
      background-color: #1c1c1c;
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 51px;
      margin-top: 48px;
      padding-bottom: 80px;
    }
    .c-footer__site-map-inner {
    }

    .c-footer-site-map {
    }
    .c-footer-site-map__list--lv1 > .c-footer-site-map__title-block {
      font-weight: 400;
      font-size: 24px;
      color: #ffffff;
      letter-spacing: 0em;
      line-height: 1.4583333333;
      border-bottom: 1px solid #ffffff;
      padding-bottom: 33px;
    }
    .c-footer-site-map__list--lv2 > .c-footer-site-map__title-block {
      font-weight: 400;
      font-size: 20px;
      color: #ffffff;
      letter-spacing: 0em;
      line-height: 1.45;
      border-bottom: 1px solid #707070;
      height: 60px;
      display: grid;
      grid-template-columns: 1fr 44px;
      align-content: center;
    }
    .c-footer-site-map__list--lv1
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list {
      display: flex;
      flex-direction: column;
      margin-top: 30px;
    }
    .c-footer-site-map__list--lv2
      > .c-footer-site-map__body
      > .c-footer-site-map__body-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
      padding-top: 30px;
      padding-bottom: 30px;
    }
    .c-footer-site-map__title {
      display: block;
    }
    .c-footer-site-map__title-label {
      display: inline-block;
    }
    .c-footer-site-map__title-icon {
      width: 24px;
      margin-right: 10px;
      display: inline-block;
      vertical-align: -2px;
    }
    .c-footer-site-map__link {
      display: block;
      font-weight: 400;
      font-size: 14px;
      color: #ffffff;
      letter-spacing: 0em;
      line-height: 1.4285714286;
    }
    .c-footer-site-map__link-label-sub {
      display: inline-block;
      margin-right: 0.5em;
    }
    .c-footer-site-map__button {
      position: relative;
    }
    .c-footer-site-map__button span {
      display: block;
      background-color: #707070;
      width: 20px;
      height: 1px;
      position: absolute;
      right: 3px;
      top: 0;
      bottom: 0;
      margin: auto;
      transition: 0.25s;
    }
    .c-footer-site-map__button span:nth-of-type(2) {
      transform: rotate(90deg);
    }
    .active.c-footer-site-map__list--lv2
      .c-footer-site-map__button
      span:nth-of-type(2) {
      transform: rotate(0deg);
    }
    .c-footer-site-map__body {
      transition: 0.25s;
      overflow: hidden;
    }

    .c-footer-site-map__etc-list {
      margin-top: 40px;
      text-align: center;
    }
    .c-footer-site-map__etc-link {
      font-weight: 400;
      font-size: 12px;
      color: #ffffff;
      letter-spacing: 0.1em;
      line-height: 2.6666666667;
      display: inline-block;
      margin-left: 1em;
      margin-right: 1em;
    }
    .c-footer-site-map__etc-list-item {
      position: relative;
      display: inline-block;
    }
    .c-footer-site-map__etc-list-item:not(:last-child)::after {
      content: "";
      display: inline-block;
      width: 1px;
      height: 13px;
      background-color: #fff;
      vertical-align: -2px;
    }
    .c-footer-brand {
      background-color: #000000;
      padding-top: 83px;
      padding-bottom: 73px;
    }
    .c-footer-brand__logo {
      width: 282px;
      margin: auto;
      display: block;
    }
    .c-footer-brand__copyright {
      font-weight: 400;
      font-size: 10px;
      color: #ffffff;
      letter-spacing: 0.05em;
      line-height: 1.5;
      margin-top: 29px;
      text-align: center;
    }
  }
}

/* z空調バナー */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-z-banner {
      background-color: #f05a25;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      position: relative;
      transition: background-color 0.25s;
    }
    .c-z-banner--small {
    }
    .c-z-banner__image {
      overflow: hidden;
    }
    .c-z-banner__image picture {
      transition: transform 0.25s;
    }
    .c-z-banner__text-block {
      padding-top: calc(100% / 640 * 70);
    }
    .c-z-banner--small .c-z-banner__text-block {
      padding-top: calc(100% / 640 * 37.1);
    }
    .c-z-banner__text {
      font-weight: 700;
      font-size: 20px;
      color: #ffffff;
      letter-spacing: 0.112em;
      line-height: 1.85;
      text-align: center;
      transition: color 0.25s;
    }
    .c-z-banner--small .c-z-banner__text {
      font-size: 18px;
      letter-spacing: 0.05em;
      line-height: 1.4444444444;
    }
    .c-z-banner__logo {
      width: calc(100% / 640 * 283.61);
      margin: auto;
      margin-top: calc(100% / 640 * 14.7);
    }
    .c-z-banner--small .c-z-banner__logo {
      width: calc(100% / 640 * 240.34);
      margin-top: calc(100% / 640 * 12);
    }
    .c-z-banner__logo path {
      transition: fill 0.25s;
    }
    .c-z-banner__arrow {
      position: absolute;
      width: calc(100% / 1280 * 19);
      right: calc(100% / 1280 * 10);
      padding-top: calc(100% / 1280 * 10);
      top: 0;
    }
    .c-z-banner__logo path {
      transition: fill 0.25s;
    }
    .c-z-banner:hover {
      background-color: #fff;
    }
    .c-z-banner:hover .c-z-banner__text {
      color: #f05a25;
    }
    .c-z-banner:hover .c-z-banner__image picture {
      transform: scale(1.1);
    }
    .c-z-banner:hover .c-z-banner__logo path {
      fill: #f05a25;
    }
    .c-z-banner:hover .c-z-banner__arrow path {
      fill: #f05a25;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-z-banner {
      background-color: #f05a25;
      display: grid;
      position: relative;
    }
    .c-z-banner--small {
    }
    .c-z-banner__text-block {
      padding-top: calc(100% / 375 * 40);
      padding-bottom: calc(100% / 375 * 40);
    }
    .c-z-banner--small .c-z-banner__text-block {
      padding-top: calc(100% / 375 * 37.1);
    }
    .c-z-banner__text {
      font-weight: 700;
      text-align: center;
      font-size: 15px;
      letter-spacing: 0.11em;
      line-height: 1.4;
      color: #fff;
    }
    .c-z-banner--small .c-z-banner__text {
      font-size: 18px;
      letter-spacing: 0.05em;
      line-height: 1.4444444444;
    }
    .c-z-banner__logo {
      width: calc(100% / 375 * 226.67);
      margin: auto;
      margin-top: calc(100% / 375 * 14.7);
    }
    .c-z-banner--small .c-z-banner__logo {
      width: calc(100% / 375 * 240.34);
      margin-top: calc(100% / 375 * 12);
    }
    .c-z-banner__arrow {
      position: absolute;
      width: calc(100% / 375 * 19);
      right: calc(100% / 375 * 10);
      padding-top: calc(100% / 375 * 214);
      top: 0;
    }
  }
}

/* lv2 pages */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-lv2-head {
    }
    .c-lv2-head__kv {
    }
    .c-lv2-head__bread-crumbs {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 8px;
      padding-bottom: 7px;
    }
    .c-lv2-head__section {
      margin-top: 93px;
    }
    .c-lv2-head__title {
      padding-top: 128px;
      font-weight: 400;
      font-size: 32px;
      color: #3e3e3e;
      letter-spacing: 0.1em;
      line-height: 1.625;
      padding-bottom: 128px;
      background-color: #fff;
    }
    .c-lv2-head__section-title {
      font-weight: 400;
      font-size: 30px;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.4666666667;
      padding-top: 96px;
      text-align: center;
    }
    .c-lv2-head__section-text {
      font-weight: 400;
      font-size: 18px;
      color: #3e3e3e;
      letter-spacing: 0.15em;
      line-height: 2.6666666666666665;

      margin-top: 117px;
      text-align: center;
    }
    .c-lv2-head__section-title + .c-lv2-head__section-text {
      margin-top: 21px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv2-head {
    }
    .c-lv2-head__kv {
    }
    .c-lv2-head__bread-crumbs {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 8px;
      padding-bottom: 7px;
    }
    .c-lv2-head__section {
      margin-top: 93px;
    }
    .c-lv2-head__title {
      padding-top: 108px;
      font-weight: 400;
      font-size: 32px;
      color: #3e3e3e;
      letter-spacing: 0.1em;
      line-height: 1.625;
      padding-bottom: 108px;
      background-color: #fff;
      text-align: center;
    }
    .c-lv2-head__section-title {
      font-weight: 400;
      font-size: 24px;
      letter-spacing: 0.1em;
      line-height: 1.8333333333;
      text-align: center;
      color: #000;
      margin-top: 154px;
    }
    .c-lv2-head__section-text {
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.15em;
      line-height: 2.1111111111;
      color: #3e3e3e;
      margin-left: 20px;
      margin-right: 20px;
      margin-top: 160px;
    }
    .c-lv2-head__section-title + .c-lv2-head__section-text {
      margin-top: 40px;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv2-head-title {
      position: relative;
      text-align: center;
    }
    .c-lv2-head-title__title1 {
      font-size: 48px;
      font-weight: 300;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.4583333333;
    }
    .c-lv2-head-title__title2 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 14px;
      color: #000000;
      letter-spacing: 0.3em;
      line-height: 1.2857142857;
      margin-top: 31px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv2-head-title {
      position: relative;
      text-align: center;
    }
    .c-lv2-head-title__title1 {
      font-size: 28px;
      font-weight: 400;
      color: #000000;
      letter-spacing: 0.3em;
      line-height: 1.4285714286;
    }
    .c-lv2-head-title__title2 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 14px;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.4285714286;
      margin-top: 32px;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv2-introduction-layout {
      position: relative;
      display: flex;
      padding-right: 128px;
      align-items: center;
    }
    .c-lv2-introduction-layout--reverse {
      flex-direction: row-reverse;
      padding-right: 0;
      padding-left: 128px;
    }
    .c-lv2-introduction-layout__image {
      width: calc(100% / 1920 * 1280);
    }
    .c-lv2-introduction-layout--reverse .c-lv2-introduction-layout__image {
      margin-right: 0;
      margin-left: auto;
    }
    .c-lv2-introduction-layout__body {
      width: 512px;
      transform: translateX(-128px);
    }
    .c-lv2-introduction-layout--reverse .c-lv2-introduction-layout__body {
      transform: translateX(128px);
    }

    .c-lv2-introduction-layout-card {
      display: grid;
      place-items: center;
      height: 480px;
    }
    .c-lv2-introduction-layout-card--gallery {
      height: 416px;
    }
  }
  @media screen and (max-width: 1023px) {
  }
}

/* lv3 pages */
@layer common {
  @media screen and (min-width: 1024px) {
    .c-lv3-head {
    }
    .c-lv3-head__kv {
    }
    .c-lv3-head__kv .c-lv3-head__wrapper {
      max-width: 1280px;
      margin: auto;
      margin-top: -50px;
      background-color: #fff;
    }
    .c-lv3-head__body {
      margin-top: 126px;
    }
    .c-lv3-head__bread-crumbs {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 8px;
      padding-bottom: 7px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv3-head {
    }
    .c-lv3-head__kv {
    }
    .c-lv3-head__kv .c-lv3-head__wrapper {
      background-color: #fff;
    }
    .c-lv3-head__body {
      margin-top: 48px;
    }
    .c-lv3-head__bread-crumbs {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 8px;
      padding-bottom: 7px;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv3-kv {
      width: 100%;
      height: 100%;
    }
    .c-lv3-kv picture,
    .c-lv3-kv img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv3-kv {
      width: 100%;
      height: 100%;
    }
    .c-lv3-kv picture,
    .c-lv3-kv img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv3-product-kv {
      display: grid;
      grid-template-columns: 33.33333333% 1fr;
      height: 100%;
      --main-color: #0b308e;
    }
    .c-lv3-product-kv--corporate {
      --main-color: #333333;
    }
    .c-lv3-product-kv__image {
      order: 2;
    }
    .c-lv3-product-kv__image picture,
    .c-lv3-product-kv__image img {
      object-fit: cover;
      width: 100%;
      height: 100%;
    }
    .c-lv3-product-kv__title-block {
      display: grid;
      height: 100%;
      order: 1;
      padding-left: 20px;
      padding-right: 20px;
    }
    .c-lv3-product-kv__title {
      max-width: 400px;
      width: 100%;
      height: 400px;
      background-color: var(--main-color);
      display: grid;
      place-content: center;
      margin: auto;
    }
    .c-lv3-product-kv__title::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background-color: #fff;
      margin: auto;
      margin-top: 31px;
    }
    .c-lv3-product-kv__title1 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.2em;
      line-height: 1.1875;
      text-align: center;
      color: #fff;
    }
    .c-lv3-product-kv__title2 {
      font-weight: 400;
      font-size: 38px;
      letter-spacing: 0.1em;
      line-height: 1.4473684211;
      text-align: center;
      color: #fff;
      margin-top: 30px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv3-product-kv {
      --main-color: #0b308e;
    }
    .c-lv3-product-kv--corporate {
      --main-color: #333333;
    }
    .c-lv3-product-kv__image {
    }
    .c-lv3-product-kv__image picture,
    .c-lv3-product-kv__image img {
    }
    .c-lv3-product-kv__title-block {
      margin-top: 20px;
      padding-left: 20px;
      padding-right: 20px;
    }
    .c-lv3-product-kv__title {
      width: 100%;
      aspect-ratio: 1;
      background-color: var(--main-color);
      display: grid;
      place-content: center;
    }
    .c-lv3-product-kv__title::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background-color: #fff;
      margin: auto;
      margin-top: 31px;
    }
    .c-lv3-product-kv__title1 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.2em;
      line-height: 1.1875;
      text-align: center;
      color: #fff;
    }
    .c-lv3-product-kv__title2 {
      font-weight: 400;
      letter-spacing: 0.1em;
      margin-top: 30px;
      font-size: 32px;
      line-height: 1.4375;
      text-align: center;
      color: #fff;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-bread-crumbs {
      display: flex;
      gap: 16px;
    }
    .c-bread-crumbs__item {
      position: relative;
      font-weight: 300;
      font-size: 10px;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.5;
    }
    .c-bread-crumbs__item + .c-bread-crumbs__item::before {
      content: "/";
      display: block;
      position: absolute;
      left: -12px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-bread-crumbs {
    }
    .c-bread-crumbs__item {
      position: relative;
      display: inline;
      font-weight: 300;
      font-size: 10px;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.5;
    }
    .c-bread-crumbs__item + .c-bread-crumbs__item::before {
      content: " / ";
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv3-head-title {
      position: relative;
      padding-bottom: 34px;
    }
    .c-lv3-head-title::after {
      content: "";
      display: block;
      height: 3px;
      width: 80px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #0b3080;
      margin: auto;
    }
    .c-lv3-head-title__title1 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 16px;
      color: #000000;
      letter-spacing: 0.3em;
      line-height: 1.1875;
      text-align: center;
    }
    .c-lv3-head-title__title2 {
      font-weight: 400;
      font-size: 38px;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.4473684211;
      margin-top: 30px;
      text-align: center;
    }
    .c-lv3-head-title__title2-sub {
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.5;
      display: block;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv3-head-title {
      position: relative;
      padding-bottom: 34px;
    }
    .c-lv3-head-title::after {
      content: "";
      display: block;
      height: 3px;
      width: 80px;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #0b3080;
      margin: auto;
    }
    .c-lv3-head-title__title1 {
      font-family: var(--english);
      font-weight: 600;
      font-size: 14px;
      color: #000000;
      letter-spacing: 0.3em;
      line-height: 2;
      text-align: center;
    }
    .c-lv3-head-title__title2 {
      font-weight: 400;
      font-size: 32px;
      color: #000000;
      letter-spacing: 0.1em;
      line-height: 1.4375;
      margin-top: 30px;
      text-align: center;
    }
    .c-lv3-head-title__title2-sub {
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.5;
      display: block;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv3-category-nav {
      padding-left: 20px;
      padding-right: 20px;
      padding-top: 160px;
      padding-bottom: 160px;
      background-color: #fafafa;
    }
    .c-lv3-category-nav__list {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px 20px;
      max-width: 1200px;
      margin: auto;
    }
    .c-lv3-category-nav--6 .c-lv3-category-nav__list {
      grid-template-columns: repeat(6, 1fr);
      gap: 30px 10px;
      max-width: 1280px;
    }
    .c-lv3-category-nav__button-block {
      width: 480px;
      margin: auto;
      margin-top: 80px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv3-category-nav {
      padding-left: 30px;
      padding-right: 30px;
      padding-top: 80px;
      padding-bottom: 80px;
    }
    .c-lv3-category-nav__list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px 10px;
    }
    .c-lv3-category-nav__button-block {
      margin-top: 48px;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-lv3-category-footer-nav-card {
      display: block;
      position: relative;
      padding-bottom: 36px;
      height: 100%;
    }
    .c-lv3-category-footer-nav-card__image {
      position: relative;
    }
    .c-lv3-category-footer-nav-card__image::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: rgba(0, 0, 0, 0.32);
      pointer-events: none;
      z-index: 2;
      opacity: 0;
      transition: 0.25s;
    }
    .c-lv3-category-footer-nav-card--current
      .c-lv3-category-footer-nav-card__image::before {
      background-color: rgba(0, 0, 0, 0.64);
    }
    .c-lv3-category-footer-nav-card--current
      .c-lv3-category-footer-nav-card__image::before,
    .c-lv3-category-footer-nav-card:hover
      .c-lv3-category-footer-nav-card__image::before {
      opacity: 1;
    }
    .c-lv3-category-footer-nav-card__title {
      font-weight: 400;
      font-size: 15px;
      color: #3e3e3e;
      letter-spacing: 0em;
      line-height: 1.4;
      margin-top: 10px;
      height: 66px;
    }
    .c-lv3-category-footer-nav-card__title--1line {
      padding-top: 10px;
    }
    .c-lv3-category-footer-nav-card__title-sub {
      display: block;
      font-weight: 400;
      font-size: 12px;
      color: #3e3e3e;
      letter-spacing: 0em;
      line-height: 2;
      min-height: 2em;
    }
    .c-lv3-category-footer-nav-card__more {
      width: 80px;
      position: absolute;
      left: 0;
      bottom: 0;
    }
    .c-lv3-category-nav--6 .c-lv3-category-footer-nav-card__title {
      height: 44px;
    }
    .c-lv3-category-nav--6 .c-lv3-category-footer-nav-card__more {
      margin-top: 10px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-lv3-category-footer-nav-card {
      position: relative;
      height: 100%;
      display: block;
      padding-bottom: 36px;
    }
    .c-lv3-category-footer-nav-card--current::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background-color: #000000;
      opacity: 0.6;
      pointer-events: none;
    }
    .c-lv3-category-footer-nav-card__title {
      min-height: 40px;
      margin-top: 10px;
      font-size: 13px;
      line-height: 1.6923076923;
      color: #3e3e3e;
    }
    .c-lv3-category-footer-nav-card__title--1line {
    }
    .c-lv3-category-footer-nav-card__title-sub {
      display: block;
      font-weight: 400;
      font-size: 10px;
      color: #3e3e3e;
      letter-spacing: 0em;
      line-height: 2.2;
    }
    .c-lv3-category-footer-nav-card__more {
      width: 80px;
      position: absolute;
      left: 0;
      bottom: 0;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-youtube {
      aspect-ratio: 16 / 9;
      background-color: #acacac;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-youtube {
      aspect-ratio: 16 / 9;
      background-color: #acacac;
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-text-link {
      display: block;

      font-family: var(--english);
      font-weight: 600;
      font-size: 12px;
      color: #000000;
      letter-spacing: 0.2em;
      line-height: 1.25;
      padding-bottom: 10px;
      border-bottom: 1px solid #000000;
      position: relative;
    }
    .c-text-link::after {
      content: "";
      display: block;
      background-image: url(/static/assets/images/pc/common/text-link__arrow.svg);
      background-repeat: no-repeat;
      background-size: contain;
      width: 18px;
      height: 10px;
      position: absolute;
      right: 0;
      top: 3px;
      transition: 0.25s;
    }
    a.c-text-link:hover::after,
    a:hover .c-text-link::after {
      right: -10px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-text-link {
      display: block;

      font-family: var(--english);
      font-weight: 600;
      font-size: 12px;
      color: #000000;
      letter-spacing: 0.2em;
      line-height: 1.25;
      padding-bottom: 10px;
      border-bottom: 1px solid #000000;
      position: relative;
    }
    .c-text-link::after {
      content: "";
      display: block;
      background-image: url(/static/assets/images/pc/common/text-link__arrow.svg);
      background-repeat: no-repeat;
      background-size: contain;
      width: 18px;
      height: 10px;
      position: absolute;
      right: 0;
      top: 3px;
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-play-link {
      display: block;
      font-family: var(--english);
      font-weight: 600;
      font-size: 12px;
      color: #eb5e00;
      letter-spacing: 0.2em;
      line-height: 1.25;
      padding-bottom: 10px;
      border-bottom: 1px solid #eb5e00;
      position: relative;
    }
    .c-play-link__icon {
      position: absolute;
      right: 0;
      top: 0;
      width: 16px;
      height: 16px;
      border-radius: 9999px;
      border: 1px solid #eb5e00;
      padding-top: 4px;
      padding-left: 5px;
      transition: 0.25s;
    }
    .c-play-link__icon::before {
      content: "";
      display: block;
      border-left: 6px solid #eb5e00;
      border-top: 3px solid transparent;
      border-bottom: 3px solid transparent;
      transition: 0.25s;
    }
    a:hover .c-play-link__icon {
      background-color: #eb5e00;
    }
    a:hover .c-play-link__icon::before {
      border-left-color: #fff;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-play-link {
      display: block;
      font-family: var(--english);
      font-weight: 600;
      font-size: 12px;
      color: #eb5e00;
      letter-spacing: 0.2em;
      line-height: 1.25;
      padding-bottom: 10px;
      border-bottom: 1px solid #eb5e00;
      position: relative;
    }
    .c-play-link__icon {
      position: absolute;
      right: 0;
      top: 0;
      width: 16px;
      height: 16px;
      border-radius: 9999px;
      border: 1px solid #eb5e00;
      padding-top: 4px;
      padding-left: 5px;
    }
    .c-play-link__icon::before {
      content: "";
      display: block;
      border-left: 6px solid #eb5e00;
      border-top: 3px solid transparent;
      border-bottom: 3px solid transparent;
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-button-link {
      --text-color: #eb5e00;
      --border-color: #eb5e00;
      --arrow: "";
      display: block;
      font-family: var(--english);
      font-weight: 600;
      font-size: 14px;
      color: var(--text-color);
      letter-spacing: 0.2em;
      line-height: 1.5;
      border: 1px solid var(--border-color);
      position: relative;
      height: 48px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .c-button-link--disable {
      --text-color: #acacac;
      --border-color: #acacac;
      --arrow: none;
    }
    .c-button-link--transparent {
      --text-color: #fff;
      --border-color: #fff;
    }
    .c-button-link::before,
    .c-button-link::after {
      content: var(--arrow);
      display: block;
      background-image: url(/static/assets/images/pc/common/button-link__arrow.svg);
      background-repeat: no-repeat;
      background-size: contain;
      width: 18px;
      height: 10px;
      position: absolute;
      right: 16px;
      top: 0;
      bottom: 0;
      margin: auto;
    }
    .c-button-link::after {
      background-image: url(/static/assets/images/pc/common/button-link__arrow--hover.svg);
      opacity: 0;
    }
    .c-button-link--transparent::before {
      background-image: url(/static/assets/images/pc/common/button-link__arrow--white.svg);
    }
    .c-button-link--transparent::after {
      background-image: url(/static/assets/images/pc/common/button-link__arrow--white.svg);
    }
    a.c-button-link::before,
    a.c-button-link::after {
      transition: 0.25s;
    }
    a:hover .c-button-link::before,
    a.c-button-link:hover:before {
      opacity: 0;
    }
    a:hover .c-button-link::after,
    a.c-button-link:hover:after {
      opacity: 1;
    }
    .c-button-link--etc {
      --text-color: #000;
      --border-color: #707070;
      height: 80px;
      font-family: Noto Sans JP;
      font-weight: 400;
      font-size: 18px;
      letter-spacing: 0.1em;
      line-height: 1.4444444444;
    }
    .c-button-link--etc::before,
    .c-button-link--etc::after {
      right: 30px;
    }
    .c-button-link--etc::before {
      background-image: url(/static/assets/images/pc/common/button-link__arrow--etc.svg);
    }
    a .c-button-link,
    a.c-button-link {
      transition: 0.25s;
    }
    a:hover .c-button-link,
    a.c-button-link:hover {
      background-color: var(--text-color);
      border-color: var(--text-color);
      color: #fff;
    }
    a:hover .c-button-link--transparent,
    a.c-button-link--transparent:hover {
      color: #fff;
      background-color: transparent;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-button-link {
      --text-color: #eb5e00;
      --border-color: #eb5e00;
      --arrow: "";
      display: block;
      font-family: var(--english);
      font-weight: 600;
      font-size: 14px;
      color: var(--text-color);
      letter-spacing: 0.2em;
      line-height: 1.5;
      border: 1px solid var(--border-color);
      position: relative;
      height: 48px;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .c-button-link--disable {
      --text-color: #acacac;
      --border-color: #acacac;
      --arrow: none;
    }
    .c-button-link--transparent {
      --text-color: #fff;
      --border-color: #fff;
    }
    .c-button-link::after {
      content: var(--arrow);
      display: block;
      background-image: url(/static/assets/images/pc/common/button-link__arrow.svg);
      background-repeat: no-repeat;
      background-size: contain;
      width: 18px;
      height: 10px;
      position: absolute;
      right: 16px;
      top: 0;
      bottom: 0;
      margin: auto;
    }
    .c-button-link--transparent::after {
      background-image: url(/static/assets/images/pc/common/button-link__arrow--white.svg);
    }
    .c-button-link--etc {
      --text-color: #000;
      --border-color: #707070;
      background-color: #fff;
      min-height: 48px;
      height: auto;
      font-family: Noto Sans JP;
      font-weight: 400;
      font-size: 15px;
      letter-spacing: 0.1em;
      line-height: 1.4;
      display: block;
      padding-top: 13px;
      padding-bottom: 13px;
    }
    .c-button-link--etc::after {
      position: relative;
      display: inline-block;
      margin: 0;
      inset: auto;
    }
    .c-button-link--etc::after {
      background-image: url(/static/assets/images/pc/common/button-link__arrow--etc.svg);
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-slideshow {
      position: relative;
    }
    .c-slideshow__list-item {
      padding-left: 88px;
      padding-right: 88px;
    }

    .c-slideshow__arrow {
      width: 48px;
      height: 48px;
      background-repeat: no-repeat;
      background-size: contain;
      top: 314px;
    }
    .c-slideshow__arrow::after {
      content: none;
    }
    .c-slideshow__arrow--prev {
      background-image: url(/static/assets/images/pc/common/slideshow__arrow--prev.svg);
      left: 20px;
    }
    .c-slideshow__arrow--next {
      background-image: url(/static/assets/images/pc/common/slideshow__arrow--next.svg);
      right: 20px;
    }
    .c-slideshow__body {
      overflow: visible;
    }
    .c-slideshow__thumbnails {
      margin-left: 88px;
      margin-right: 88px;
      margin-top: 10px;
    }
    .c-slideshow__pagination {
      left: auto;
      right: 88px;
      top: -60px;
      bottom: auto;
      text-align: right;

      font-family: var(--english);
      font-weight: 100;
      font-size: 48px;
      color: #707070;
      letter-spacing: 0.1em;
      line-height: 1.2083333333;
    }
    .c-slideshow__thumbnails-list-item {
      width: calc(100% / 11);
      position: relative;
      cursor: pointer;
    }
    .c-slideshow__thumbnails-list-item::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: 0.25s;
      background: #000000;
      position: absolute;
      left: 0;
      top: 0;
      z-index: 2;
    }
    .c-slideshow__thumbnails-list-item.swiper-slide-thumb-active::before {
      opacity: 0.5;
    }
    .c-slideshow__scrollbar {
      left: 88px;
      right: 88px;
      bottom: -36px;
      width: auto;
    }
  }
  @media screen and (max-width: 1023px) {
  }
}

@layer common {
  @media screen and (min-width: 1024px) {
    .c-layout-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .c-layout-2--tight {
      gap: 0;
    }
    .c-layout-2--reverse {
      direction: rtl;
    }
    .c-layout-2__item {
      direction: ltr;
    }
  }
  @media screen and (max-width: 1023px) {
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-cv {
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      margin: auto;
      height: 220px;
      width: 146px;
      background-color: #333333;
      z-index: 99;
    }
    .c-cv__nav-item {
    }
    .c-cv__nav-item + .c-cv__nav-item {
      border-top: 1px solid #707070;
    }
    .c-cv__reservation {
      display: block;
      border: 10px solid #333;
      background-color: #eb5e00;
      padding-top: 19px;
      padding-bottom: 19px;
    }
    .c-cv__reservation-label {
      font-weight: 500;
      font-size: 12px;
      line-height: 1.4166666667;
      text-align: center;
      color: #fff;
      margin-top: 6px;
    }
    .c-cv__reservation-icon {
      width: 20px;
      margin: auto;
    }
    .c-cv__link {
      display: block;
      height: 40px;
      position: relative;
      padding-top: 11px;
      padding-bottom: 12px;
    }
    .c-cv__link-label {
      font-weight: 500;
      font-size: 12px;
      line-height: 1.4166666667;
      color: #fff;
      padding-left: 45px;
    }
    .c-cv__link-icon {
      position: absolute;
      left: 17px;
      top: 0;
      bottom: 0;
      margin: auto;
    }
    .c-cv__link-icon--model-house {
      width: 18px;
      height: 24px;
    }
    .c-cv__link-icon--materials {
      width: 18px;
      height: 21px;
    }
    .c-cv__link-icon--contact {
      width: 18px;
      height: 18px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-cv {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: #333333;
      z-index: 99;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      transition: 0.25s;
      opacity: 0;
      pointer-events: none;
    }
    .c-cv.active {
      opacity: 1;
      pointer-events: all;
    }
    .c-cv__nav-item {
    }
    .c-cv__nav-item + .c-cv__nav-item {
      border-left: 1px solid #707070;
    }
    .c-cv__reservation {
      display: block;
      border: 5px solid #333;
      background-color: #eb5e00;
      padding-top: 8px;
      padding-bottom: 6px;
    }
    .c-cv__reservation-label {
      font-weight: 500;
      font-size: 12px;
      line-height: 1.4166666667;
      text-align: center;
      color: #fff;
      margin-top: 3px;
    }
    .c-cv__reservation-icon {
      width: 20px;
      margin: auto;
    }
    .c-cv__link {
      display: block;
      position: relative;
      padding-top: 17px;
    }
    .c-cv__link-label {
      font-weight: 500;
      font-size: 12px;
      line-height: 1.4166666667;
      color: #fff;
      text-align: center;
      margin-top: 5px;
    }
    .c-cv__link-icon {
      margin: auto;
      height: 24px;
    }
    .c-cv__link-icon--model-house {
      width: 18px;
    }
    .c-cv__link-icon--materials {
      width: 18px;
      padding-top: 2px;
      padding-bottom: 1px;
    }
    .c-cv__link-icon--contact {
      width: 18px;
      padding-top: 3px;
      padding-bottom: 3px;
    }
    /* 資料請求バナー */
    .material_banner_pc {
     display: none; 
    }
    .material_banner_sp {
      max-width: 1280px;
      margin: 50px auto 0;
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-map {
      height: 768px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-map {
      height: 600px;
    }
  }
}
@layer common {
  @media screen and (min-width: 1024px) {
    .c-modal {
      width: 100%;
      height: 100vh;
      overflow: auto;
      position: relative;
      display: grid;
      place-content: center;
      padding: 20px;
    }
    .c-modal__shade {
      background-color: rgba(0, 0, 0, 0.95);
      width: 100%;
      height: 100%;
      position: fixed;
      left: 0;
      top: 0;
    }
    .c-modal__body {
      position: relative;
      max-width: 100%;
      margin: auto;
      height: 100%;
    }
    .c-modal__close {
      font-family: var(--english);
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.1875;
      text-align: center;
      color: #fff;
      margin-top: 30px;
      position: relative;
      z-index: 2;
      cursor: pointer;
    }
    .c-modal__icon {
      display: inline-block;
      position: relative;
      width: 15px;
      height: 15px;
      margin-left: 9px;
      vertical-align: -2px;
    }
    .c-modal__icon > span {
      position: absolute;
      left: -2.5px;
      top: 7px;
      display: block;
      width: 20px;
      height: 1px;
      background-color: #fff;
    }
    .c-modal__icon > span:nth-of-type(1) {
      transform: rotate(45deg);
    }
    .c-modal__icon > span:nth-of-type(2) {
      transform: rotate(135deg);
    }
    .c-modal__body {
    }
    .c-modal__contents {
    }
    .c-modal__modal-gallery {
      max-width: 1200px;
      width: 120vh;
    }
    .c-modal__modal-video-gallery {
      max-width: 1200px;
      width: 120vh;
    }
  }
  @media screen and (min-width: 1024px) and (max-width: 1480px) {
    .c-modal__modal-gallery {
      max-width: 876px;
    }
    .c-modal__modal-video-gallery {
      max-width: 876px;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-modal {
      width: 100%;
      height: 100vh;
      height: 100dvh;
      overflow: auto;
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 10px;
      align-items: center;
    }
    .c-modal__shade {
      background-color: rgba(0, 0, 0, 0.95);
      width: 100%;
      height: 100vh;
      height: 100dvh;
      position: fixed;
      left: 0;
      top: 0;
    }
    .c-modal__body {
      position: relative;
      margin: auto;
      max-width: 100%;
      margin-top: 80px;
      margin-bottom: 80px;
    }
    .c-modal__close {
      font-family: var(--english);
      font-weight: 500;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.1875;
      text-align: center;
      color: #fff;
      margin-top: 30px;
      position: relative;
      z-index: 2;
      cursor: pointer;
    }
    .c-modal__icon {
      display: inline-block;
      position: relative;
      width: 15px;
      height: 15px;
      margin-left: 9px;
      vertical-align: -2px;
    }
    .c-modal__icon > span {
      position: absolute;
      left: -2.5px;
      top: 7px;
      display: block;
      width: 20px;
      height: 1px;
      background-color: #fff;
    }
    .c-modal__icon > span:nth-of-type(1) {
      transform: rotate(45deg);
    }
    .c-modal__icon > span:nth-of-type(2) {
      transform: rotate(135deg);
    }
    .c-modal__contents {
      pointer-events: auto;
    }
    .c-modal__modal-gallery {
    }
  }
}

@layer common {
  @media screen and (min-width: 1024px) {
    .c-video {
      aspect-ratio: 16/9;
      background-color: #acacac;
      position: relative;
      display: block;
      width: 100%;
      height: auto;
    }
    .c-video::before {
      content: "";
      display: block;
      position: absolute;
      inset: 0;
      margin: auto;
      width: 136px;
      height: 156px;
      border-left: 136px solid #fff;
      border-top: 78px solid transparent;
      border-bottom: 78px solid transparent;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-video {
      aspect-ratio: 16/9;
      background-color: #acacac;
      position: relative;
      display: block;
      width: 100%;
      height: auto;
    }
    .c-video::before {
      content: "";
      display: block;
      position: absolute;
      inset: 0;
      margin: auto;
      width: 68px;
      height: 78px;
      border-left: 68px solid #fff;
      border-top: 39px solid transparent;
      border-bottom: 39px solid transparent;
    }
  }

  @media screen and (min-width: 1024px) {
    .c-embedded-video {
      aspect-ratio: 16/9;
      background-color: #acacac;
      position: relative;
      display: block;
      width: 100%;
      height: auto;
    }
    .c-embedded-video > video {
      display: block;
      width: 100%;
      height: auto;
    }
  }
  @media screen and (max-width: 1023px) {
    .c-embedded-video {
      aspect-ratio: 16/9;
      background-color: #acacac;
      position: relative;
      display: block;
      width: 100%;
      height: auto;
    }
    .c-embedded-video > video {
      display: block;
      width: 100%;
      height: auto;
    }
  }
}
