@charset "utf-8";

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
section {
  scroll-margin-top: 100px;
}
/* *************************************
header
************************************* */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--main);
  height: calc(110 * var(--rem));
  transition: box-shadow 0.3s ease;
  @media (max-width: 768px) {
    height: calc(80 * var(--rem));
  }
}

.header.is-active {
  box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 0.2);
}

.header__inner {
  padding-inline-start: 10px;
  height: inherit;
  @media (width < 768px) {
    padding-inline: 10px;
  }
}

.header__container {
  display: flex;
  align-items: center;
  height: inherit;
  justify-content: space-between;
}

.header__logo {
  max-width: calc(500 * var(--rem));
  margin-inline-start: calc(34 * var(--rem));
  @media (max-width: 798px) {
    margin-inline-start: calc(0 * var(--rem));
    width: calc(290 * var(--rem));
    z-index: 1;
  }
}

.header__logo img {
  width: 100%;
  height: auto;
}

.header__hamburger {
  display: none;
  @media (width < 768px) {
    display: block;
    margin-inline-start: auto;
    background-color: transparent;
    position: relative;
    z-index: 100;
  }
}

.header__modal {
  display: contents;
  height: inherit;
  @media (width < 768px) {
    display: block;
    position: fixed;
    inset: 0;
    height: 100svh;
    background-color: var(--white);
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
    overflow-y: scroll;
  }
}

.header__modal.is-open {
  opacity: 1;
  visibility: visible;
}

.header__nav {
  height: inherit;
  display: grid;
  position: relative;
  grid-template-columns: repeat(2, auto);
  gap: 0 calc(24 * var(--rem));
  padding-inline-start: calc(60 * var(--rem));
  @media (width < 768px) {
    clip-path: none;
    height: revert;
    min-height: 500px;
    padding: calc(20 * var(--rem));
    grid-template-columns: 1fr;
    margin-block-start: calc(80 * var(--rem));
  }
}
.header__nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
  @media (width < 768px) {
    clip-path: none;
  }
}

.header__list {
  height: inherit;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 calc(0 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.header__list li {
  height: inherit;
  display: grid;
  align-items: center;
}

.header__list li a {
  height: inherit;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: calc(18 * var(--rem));
  color: #fff;
  padding-inline: calc(16 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: repeat(2, auto);
    align-items: center;
    gap: 0 calc(16 * var(--rem));
    padding-block: calc(8 * var(--rem));
    place-content: start;
    border-bottom: 1px solid var(--sub);
  }
}

.header__list li a span {
  font-size: calc(12 * var(--rem));
  text-transform: capitalize;
  color: #e4d0ba;
  text-align: start;
  display: block;
}

.header__cta {
  height: inherit;

  @media (width < 768px) {
    grid-template-columns: 1fr;
    row-gap: calc(24 * var(--rem));
    margin-block-start: calc(40 * var(--rem));
  }
}

.header__tel {
  display: grid;
  place-content: center;
  height: inherit;
  gap: calc(8 * var(--rem)) 0;
  @media (width < 768px) {
    order: 2;
  }
}

.header__tel-num {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  line-height: 1;
  font-size: calc(20 * var(--rem));
  font-weight: bold;
}

.header__tel-num::before {
  content: "";
  display: inline-block;
  width: calc(26 * var(--rem));
  aspect-ratio: 1;
  background: url(../images/common/icon_tel.svg) no-repeat center / contain;
}

.header__tel-text {
  text-align: center;
  line-height: 1;
  font-size: calc(12 * var(--rem));
}

.header__contact {
  height: inherit;
  @media (width < 768px) {
    order: 1;
  }
}

.header__contact a {
  height: inherit;
  display: grid;
  place-content: center;
  padding-inline: calc(24 * var(--rem));
  background-color: var(--sub);
  gap: calc(8 * var(--rem));
  color: var(--white);
  @media (width < 768px) {
    padding-block: calc(16 * var(--rem));
  }
}
.header__contact img {
  margin: 0 auto;
}

.test {
  min-height: 100vh;
}
/* 親に相対位置 */
.header__list li.menu-item-has-children {
  position: relative;
}

/* --- PC：ドロップダウン --- */
@media (width >= 768px) {
  .header__list ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: calc(220 * var(--rem));
    padding: calc(12 * var(--rem)) 0;
    background: #0f204a;
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 0.2);
    z-index: 200;

    opacity: 0;
    visibility: hidden;
    transform: translateY(calc(8 * var(--rem)));
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }

  /* hover と キーボード操作(フォーカス)でも開く */
  .header__list li.menu-item-has-children:hover > ul.sub-menu,
  .header__list li.menu-item-has-children:focus-within > ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header__list ul.sub-menu li a {
    height: auto;
    display: block;
    padding: calc(12 * var(--rem)) calc(16 * var(--rem));
    text-align: left;
    color: #fff;
    white-space: nowrap;
  }

  .header__list ul.sub-menu li a:hover {
    background: rgb(255 255 255 / 0.08);
  }
}

/* --- SP：タップで開閉（JSで .is-open を付ける） --- */
@media (width < 768px) {
  .header__list ul.sub-menu {
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    background: transparent;

    display: none;
    padding-left: calc(16 * var(--rem));
  }

  .header__list li.is-open > ul.sub-menu {
    display: block;
  }
  .header__list li.menu-item-has-children > ul.sub-menu {
    display: block;
  }
}
.js-menu-parent-link {
  pointer-events: none;
}
/* *************************************
footer
************************************* */
.footer {
  background-color: var(--main);
}

.footer__inner {
  padding-inline: 20px;
}

.footer__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-block-start: calc(20 * var(--rem));
  max-width: 90%;
  margin: 0 auto;
  @media (width < 768px) {
    display: grid;
    justify-items: center;
    gap: calc(24 * var(--rem));
  }
}

.footer__wrap {
  @media (width < 768px) {
    display: contents;
  }
}

.footer__logo {
  display: block;
  max-width: calc(360 * var(--rem));
  @media (width < 768px) {
    order: 0;
  }
}

.footer__meta {
  margin-block-start: calc(24 * var(--rem));
  display: grid;
  gap: calc(4 * var(--rem));
  @media (width < 768px) {
    order: 2;
    margin-block-start: 0;
  }
}

.footer__address {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 calc(16 * var(--rem));
}

.footer__list {
  position: relative;
  padding-left: calc(16 * var(--rem));
  @media (width < 768px) {
    padding-left: calc(0 * var(--rem));
  }
}
.footer__list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(2 * var(--rem));
  height: 100%;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  border-radius: calc(1 * var(--rem));
}
.footer__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer__list li a {
  display: block;
  padding: calc(4 * var(--rem)) calc(24 * var(--rem));
}

.footer__copy {
  font-size: calc(12 * var(--rem));
  background-color: var(--white);
  text-align: center;
  margin-block-start: calc(16 * var(--rem));
  padding-block: calc(4 * var(--rem));
}
.footer-list__wrap {
  display: flex;
  gap: calc(40 * var(--rem));
  @media (max-width: 768px) {
    gap: calc(0 * var(--rem));
  }
}
/* *************************************
contact
************************************* */
.contact {
  margin-block-start: calc(40 * var(--rem));
}

.contact__inner.inner {
  width: min(100%, calc(850 * var(--rem)));
}

/* *************************************
thanks & page-404
************************************* */
.thanks,
.page-404 {
  margin-block: calc(80 * var(--rem));
}

.thanks__title,
.page-404__title {
  font-size: calc(30 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.thanks__text,
.page-404__text {
  font-size: calc(18 * var(--rem));
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.thanks__btn,
.page-404__btn {
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
}
/* *************************************
   メインビジュアル (main visual)
************************************* */
.mv001 {
  height: 90vh;
  height: 90svh;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #ccc;
  margin-top: 110px;
  @media (max-width: 798px) {
    height: 60vh;
  }
}
.mv001 .mv001_slider,
.mv001 .mv001_slider .slick-list,
.mv001 .mv001_slider .slick-track {
  width: 100%;
  height: 100%;
}

.mv001 .mv001_slider .slick-slide {
  width: 100%;
  height: 100%;
  display: flex;
}

.mv001 .mv001_slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  flex: 1 1 auto;
}

.mv001 .mv001_slider .slick-prev,
.mv001 .mv001_slider .slick-next {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
}
.mv001 .mv001_slider .slick-prev {
  left: 20px;
  justify-content: flex-end;
}
.mv001 .mv001_slider .slick-next {
  right: 20px;
  justify-content: flex-start;
}
.mv001 .mv001_slider .slick-prev:before,
.mv001 .mv001_slider .slick-next:before {
  content: "";
  width: 10px;
  height: 10px;
  background: transparent;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  display: block;
  margin: 0;
  opacity: 1;
}
.mv001 .mv001_slider .slick-prev:before {
  transform: rotate(225deg);
  margin-right: 7px;
}
.mv001 .mv001_slider .slick-next:before {
  transform: rotate(45deg);
  margin-left: 7px;
}

@media (prefers-reduced-motion: reduce) {
  .mv001 .mv001_slider .slick-track {
    transition: none;
  }
}
/* *************************************
   メインビジュアル (main visual)
************************************* */
.mv001 {
  height: 90vh;
  height: 90svh;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: #ccc;
  margin-top: calc(110 * var(--rem));
  @media (max-width: 768px) {
    margin-top: calc(80 * var(--rem));
    height: 55vh;
  }
}

.mv001_slider,
.mv001_slider .slick-list,
.mv001_slider .slick-track {
  width: 100%;
  height: 100%;
}

.mv001__slide {
  position: relative;
  width: 100%;
  height: 90vh;
  height: 90svh;
  display: flex !important;
  align-items: center;
  justify-content: center;
  @media (max-width: 768px) {
    height: 60vh;
  }
}

.mv001__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.mv001__slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.mv001__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: calc(1200 * var(--rem));
  padding-inline: calc(40 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(24 * var(--rem));
  }
}

.mv001__text-wrap {
  color: var(--white);
}

.mv001__subtitle {
  font-size: calc(45 * var(--rem));
  font-weight: 600;
  margin-block-end: calc(1 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (max-width: 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.mv001__subtitle--accent {
  font-size: calc(28 * var(--rem));
  text-align: center;
  letter-spacing: 0.1em;
  @media (max-width: 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.mv001__title {
  font-size: calc(52 * var(--rem));
  font-weight: 700;
  line-height: 1.3;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  position: relative;
  padding-block-end: calc(24 * var(--rem));
  @media (max-width: 768px) {
    font-size: calc(20 * var(--rem));
    margin-block-end: calc(0 * var(--rem));
  }
}
.mv001__title02 {
  font-size: calc(77 * var(--rem));
  @media (max-width: 768px) {
    font-size: calc(28 * var(--rem));
  }
}

.mv001__slide--01 .mv001__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(600 * var(--rem));
  height: 4px;
  background: var(--white);
  @media (max-width: 768px) {
    width: calc(200 * var(--rem));
  }
}

.mv001__title--center {
  text-align: center;
  padding-block-end: 0;
}

.mv001__title--center::after {
  display: none;
}

.mv001__description {
  font-size: calc(32 * var(--rem));
  line-height: 1.8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (max-width: 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.mv001__description--center {
  text-align: center;
}

.mv001__houses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--rem));
  margin-block-end: calc(20 * var(--rem));
  flex-wrap: wrap;
  @media (max-width: 768px) {
    gap: calc(12 * var(--rem));
    margin-block-end: calc(20 * var(--rem));
  }
}

.mv001__house {
  position: relative;
  width: calc(150 * var(--rem));
  height: calc(150 * var(--rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(0 * var(--rem));
  clip-path: polygon(0% 25%, 50% 0%, 100% 25%, 100% 100%, 0% 100%);
  @media (max-width: 768px) {
    width: calc(85 * var(--rem));
    height: calc(85 * var(--rem));
  }
}

.mv001__house--blue {
  background: linear-gradient(135deg, #00a8cc 0%, #0086b3 100%);
  padding-block-start: calc(20 * var(--rem));
}

.mv001__house--orange {
  background: linear-gradient(135deg, #ff9f40 0%, #ff7f00 100%);
  padding-block-start: calc(20 * var(--rem));
}

.mv001__house-label {
  font-size: calc(16 * var(--rem));
  font-weight: 500;
  @media (max-width: 768px) {
    font-size: calc(12 * var(--rem));
  }
}

.mv001__house-text {
  font-size: calc(36 * var(--rem));
  font-weight: 600;
  @media (max-width: 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.mv001__plus {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  margin-inline: calc(16 * var(--rem));
  @media (max-width: 768px) {
    font-size: calc(32 * var(--rem));
    margin-inline: calc(15 * var(--rem));
  }
}

.mv001__content--03 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.mv001__text-wrap--03 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(32 * var(--rem));
  @media (max-width: 768px) {
    gap: calc(5 * var(--rem));
  }
}

/* 建築金物 */
.mv001__slide--03 {
  position: relative;
}
.mv001__slide--03::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 89, 163, 0.8);
  z-index: 1;
  pointer-events: none;
}
.mv001__slide--03 > .mv001__content {
  position: relative;
  z-index: 2;
}
.mv001__metal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(40 * var(--rem));
  width: 100%;
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  @media (max-width: 768px) {
    gap: calc(20 * var(--rem));
    max-width: 100%;
  }
}

.mv001__title--metal {
  margin: 0;
  padding: 0;
  text-align: center;
  flex-shrink: 0;
  white-space: nowrap;
  position: relative;
  @media (max-width: 768px) {
    font-size: calc(28 * var(--rem));
  }
}

.mv001__title--metal::after {
  content: "";
  position: absolute;
  background-image: url(../images/top/neji.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(200 * var(--rem));
  height: calc(200 * var(--rem));
  top: 0;
  right: calc(-173 * var(--rem));
  display: inline-block;
  transform: scale(-1, 1) rotate(24deg);
  @media (max-width: 798px) {
    width: calc(60 * var(--rem));
    height: calc(60 * var(--rem));
    right: calc(-66 * var(--rem));
  }
}
.mv001__title--metal::before {
  content: "";
  position: absolute;
  background-image: url(../images/top/neji.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(200 * var(--rem));
  height: calc(200 * var(--rem));
  top: 0;
  left: calc(-173 * var(--rem));
  display: inline-block;
  transform: rotate(24deg);
  @media (max-width: 798px) {
    width: calc(60 * var(--rem));
    height: calc(60 * var(--rem));
    left: calc(-66 * var(--rem));
  }
}
.mv001__metal-wrapper img {
  width: calc(80 * var(--rem));
  height: auto;
}
.mv001__neji {
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  @media (max-width: 768px) {
    width: calc(60 * var(--rem));
    height: calc(60 * var(--rem));
  }
}

.mv001__neji--left {
  transform: rotate(-15deg);
}

.mv001__neji--right {
  transform: rotate(15deg);
}

.mv001__description--metal {
  margin-block-start: calc(8 * var(--rem));
}

.mv001__description--metal p {
  margin-block-end: calc(4 * var(--rem));
}

/* 六角形 */
.mv001__hexagons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(40 * var(--rem));
  margin-block-start: calc(20 * var(--rem));
  width: 100%;
  @media (max-width: 798px) {
    gap: calc(10 * var(--rem));
    margin-block-start: calc(0 * var(--rem));
  }
}

.mv001__hexagon-border {
  position: relative;
  width: calc(180 * var(--rem));
  height: calc(180 * var(--rem));
  flex-shrink: 0;
}
.mv001__hexagon-contents1,
.mv001__hexagon-contents2,
.mv001__hexagon-contents3 {
  position: absolute;
  width: 50%;
  height: 88%;
  border-block: 1px solid #fff;
  top: 6%;
  left: 25%;
}
.mv001__hexagon-contents2 {
  transform: rotate(60deg);
}
.mv001__hexagon-contents3 {
  transform: rotate(-60deg);
}
@media (max-width: 768px) {
  .mv001__hexagon-border {
    width: calc(120 * var(--rem));
    height: calc(120 * var(--rem));
  }
}
@media (max-width: 480px) {
  .mv001__hexagon-border {
    width: calc(100 * var(--rem));
    height: calc(100 * var(--rem));
  }
}

.mv001__hexagon,
.mv001__hexagon-contents {
  position: absolute;
  inset: 0;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
}

.mv001__hexagon {
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: calc(22 * var(--rem));
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  z-index: 2;
}

.mv001__hexagon-contents {
  background: transparent;
  filter: drop-shadow(2px 0 0 var(--white)) drop-shadow(-2px 0 0 var(--white))
    drop-shadow(0 2px 0 var(--white)) drop-shadow(0 -2px 0 var(--white))
    drop-shadow(2px 2px 0 var(--white)) drop-shadow(-2px 2px 0 var(--white))
    drop-shadow(2px -2px 0 var(--white)) drop-shadow(-2px -2px 0 var(--white));
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .mv001__hexagon {
    font-size: calc(16 * var(--rem));
  }
}
@media (max-width: 480px) {
  .mv001__hexagon {
    font-size: calc(12 * var(--rem));
  }
}

.mv001 .slick-dots {
  position: absolute;
  bottom: calc(30 * var(--rem));
  justify-content: center;
  display: flex;
  gap: calc(12 * var(--rem));
  z-index: 10;
}

.mv001 .slick-dots li {
  width: calc(12 * var(--rem));
  height: calc(12 * var(--rem));
  margin: 0;
}

.mv001 .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid var(--white);
}

.mv001 .slick-dots li button::before {
  display: none;
}

.mv001 .slick-dots li.slick-active button {
  background: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .mv001_slider .slick-track {
    transition: none;
  }
}
/* *************************************
   top-news one
************************************* */
.top-news__one {
  background-color: #fff;
}
.top-news__text {
  max-width: 80%;
  margin-left: auto;
  background: linear-gradient(135deg, #003d82 0%, #2f5f9b 50%, #3466a3 100%);
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  padding-inline-start: calc(60 * var(--rem));
  padding-block: calc(10 * var(--rem));
  @media (max-width: 798px) {
    max-width: 100%;
    padding-inline-start: calc(5 * var(--rem));
    clip-path: none;
    margin-block: calc(20 * var(--rem));
  }
}
.top-news__text h2 {
  font-size: calc(16 * var(--rem));
  color: var(--brown);
  padding-inline: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    padding-inline: calc(0 * var(--rem));
  }
}
.top-news__contents {
  display: flex;
  margin-top: calc(16 * var(--rem));
  border-bottom: 1px solid var(--brown);
  align-items: center;
  @media (max-width: 798px) {
    flex-direction: column;
    align-items: baseline;
    margin-top: 0;
    margin-inline-start: calc(20 * var(--rem));
  }
}
.top-news__date {
  font-size: calc(14 * var(--rem));
  color: var(--white);
  margin-top: calc(8 * var(--rem));
  margin-bottom: calc(8 * var(--rem));
  letter-spacing: 0;
}
.top-news__link {
  font-size: calc(16 * var(--rem));
  color: var(--white);
  @media (max-width: 798px) {
    padding-block-end: calc(5 * var(--rem));
  }
}
.top-news__btn-link {
  display: flex;
  margin-top: calc(10 * var(--rem));
  margin-bottom: calc(10 * var(--rem));
  font-size: calc(14 * var(--rem));
  color: var(--white);
  justify-content: flex-end;
  padding-right: 60px;
}
.top-news__item {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--rem));
  @media (max-width: 798px) {
    flex-direction: column;
    align-items: baseline;
    gap: calc(0 * var(--rem));
  }
}
.top-news__btn {
  position: relative;
}
.top-news__btn::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  width: calc(30 * var(--rem));
  height: calc(30 * var(--rem));
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -10%);
  background-image: url(../images/common/allow.svg);
}
/* *************************************
   top-philosophy
************************************* */
.top-philosophy {
  position: relative;
  z-index: 1;
}

.top-philosophy::before {
  content: "";
  position: absolute;
  left: 0;
  top: -118px;
  width: 60vw;
  height: 50vh;
  background: url(../images/top/fuji.webp) no-repeat center / cover;
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
  @media (max-width: 798px) {
    width: 100vw;
    top: 0;
    height: 36vh;
  }
}

.top-philosophy__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(40 * var(--rem));
  align-items: start;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.top-philosophy__content {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr; /* 左帯の幅 */
  background: transparent;
  min-height: calc(420 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}

.top-philosophy__side-banner {
  position: relative;
  z-index: 2;
  padding: calc(30 * var(--rem)) calc(16 * var(--rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(18 * var(--rem));
  @media (width < 768px) {
    flex-direction: row;
    padding: calc(16 * var(--rem));
    margin-block-start: calc(50 * var(--rem));
  }
}
.top-philosophy__side-banner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(22 * var(--rem));
  width: calc(200 * var(--rem));
  aspect-ratio: 1;
  z-index: -1;
  background: #1f66a6;
  transform: translateY(-50%) rotate(45deg);
  border-radius: calc(6 * var(--rem));
  @media (width < 768px) {
    display: none;
  }
}

.top-philosophy__banner-text {
  writing-mode: vertical-rl;
  font-size: calc(46 * var(--rem));
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  background: linear-gradient(135deg, #003d82 0%, #2f5f9b 50%, #3466a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: color-dodge;
  @media (width < 768px) {
    writing-mode: horizontal-tb;
    font-size: calc(18 * var(--rem));
  }
}

.top-philosophy__text-area {
  max-width: 80%;
  margin-inline: auto;
}

.top-philosophy__text-content {
  position: relative;
  z-index: 1;
}

.top-philosophy__title {
  font-size: calc(32 * var(--rem));
  font-weight: 800;
  line-height: 1.6;
  color: #1b2b44;
  margin-block-end: calc(24 * var(--rem));
  margin-block-start: calc(150 * var(--rem));
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    margin-block-end: calc(10 * var(--rem));
    margin-block-start: calc(15 * var(--rem));
  }
}

.top-philosophy__description {
  font-size: calc(18 * var(--rem));
  line-height: 1.9;
  color: #1b2b44;
  margin-block-start: calc(150 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    margin-block-start: calc(100 * var(--rem));
  }
}

.top-philosophy__description p {
  margin-block-end: calc(4 * var(--rem));
}

.top-philosophy__description--second {
  margin-block-start: calc(24 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(20 * var(--rem));
  }
}

.top-philosophy__image {
  position: relative;
  min-height: calc(420 * var(--rem));
  padding-top: calc(180 * var(--rem));
  @media (width < 768px) {
    min-height: calc(300 * var(--rem));
    padding-top: 0;
  }
}

.top-philosophy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/*---------------------------------------------
タイトルパーツ
----------------------------------------------*/
.title-common {
  text-align: center;
  position: relative;
  padding-block-end: calc(20 * var(--rem));
  margin-block-end: calc(10 * var(--rem));
}
.title-common::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  transform: translateX(-50%);
}
@media (width < 768px) {
  .title-common {
    margin-block: calc(24 * var(--rem));
  }
}
.title-common__ja {
  font-size: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}
.title-common__en {
  font-size: calc(58 * var(--rem));
  font-weight: 700;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

/*---------------------------------------------
top-about
----------------------------------------------*/
.top-about {
  margin-block-end: calc(40 * var(--rem));
}
.top-about__contents {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1fr;
  gap: calc(40 * var(--rem));
  position: relative;
  align-items: center;
}
.top-about-contents__img {
  grid-column: 1 / 2;
  justify-self: start;
  max-width: unset;
  margin-left: calc(-1 * (80vw - 100%) / 2);
  @media (width < 768px) {
    margin-left: 0;
  }
}
.top-about-contents__img img {
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
  overflow: hidden;
  @media (width < 768px) {
    clip-path: none;
  }
}
.top-about__contents-wrap {
  max-width: 80%;
  margin: 0 auto;
  @media (width < 768px) {
    max-width: 100%;
  }
}
.top-about__text {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #1b2b44;
  margin-block-end: calc(40 * var(--rem));
}

@media (width < 768px) {
  .top-about__contents {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
  .top-about-contents__img {
    grid-column: auto;
    justify-self: center;
    max-width: 100%;
  }
}

/*---------------------------------------------
 共通ボタン
  ----------------------------------------------*/
.common__btn01 {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--blue);
  padding: calc(16 * var(--rem)) calc(60 * var(--rem));
  width: fit-content;
  margin-inline: auto;
  @media (width < 768px) {
    margin: 0 auto;
  }
}

.common__btn01 a {
  color: var(--blue);
  font-size: calc(18 * var(--rem));
  font-weight: 600;
  position: relative;
  padding-right: calc(28 * var(--rem));
}
.common__btn01 a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0 * var(--rem));
  width: calc(10 * var(--rem));
  height: calc(10 * var(--rem));
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: translateY(-40%) rotate(-45deg);
  display: inline-block;
}
.common__btn02 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-block-start: calc(40 * var(--rem));
}

.common__btn02-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  color: var(--white);
  font-size: calc(18 * var(--rem));
  font-weight: 500;
  padding: calc(18 * var(--rem)) calc(60 * var(--rem));
  position: relative;
  transition: opacity 0.3s ease;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    padding: calc(14 * var(--rem)) calc(30 * var(--rem));
  }
}

@media (any-hover: hover) {
  .common__btn02-link:hover {
    opacity: 0.8;
  }
}

.common__btn02-arrow {
  display: inline-block;
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
}
/*---------------------------------------------
top-business
----------------------------------------------*/
.top-business {
  margin-block-start: calc(40 * var(--rem));
  margin-block-end: calc(60 * var(--rem));
  position: relative;
  @media (width < 768px) {
    margin-block-start: calc(60 * var(--rem));
  }
}
.top-business:before {
  content: "";
  position: absolute;
  top: calc(130 * var(--rem));
  right: calc(0 * var(--rem));
  width: 70%;
  height: 100%;
  background: #cce9f2;
  z-index: -1;
  @media (width < 768px) {
    top: 0;
    width: 95%;
  }
}
.top-business02:before {
  left: 0;
}

.top-business__list {
  display: grid;
  gap: calc(60 * var(--rem)) 0;
  @media (width < 768px) {
    gap: calc(40 * var(--rem)) 0;
  }
}

.top-business__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.top-business__item02 {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.top-business__item02-image {
  order: 2;
}
.top-business__item02-content {
  order: 1;
}
@media (max-width: 767px) {
  .top-business__item02,
  .top-business__item {
    grid-template-columns: 1fr;
  }
  .top-business__item02-image,
  .top-business__item02-content,
  .top-business__item-image,
  .top-business__item-content {
    order: unset;
  }
}

.top-business__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-business__item-content {
  position: relative;
  display: flex;
  align-items: center;

  padding: calc(60 * var(--rem)) calc(40 * var(--rem));
  @media (width < 768px) {
    padding: calc(40 * var(--rem)) calc(20 * var(--rem));
  }
}

.top-business__item-inner {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
}

.top-business__number {
  display: block;
  margin-bottom: calc(8 * var(--rem)); /* subtitle との間隔 */

  font-size: calc(90 * var(--rem));
  font-weight: 500;
  line-height: 1;
  font-style: italic;

  color: #fff;
  -webkit-text-stroke: 2px #0559a3;
  opacity: 0.8;
  @media (width < 768px) {
    font-size: calc(64 * var(--rem));
    margin-bottom: calc(4 * var(--rem));
  }
}

.top-business__subtitle {
  display: flex;
  align-items: center;
  gap: calc(8 * var(--rem));
  font-size: calc(16 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block-end: calc(12 * var(--rem));
  width: fit-content;
  font-weight: 600;
  font-style: italic;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.top-business__subtitle-dot {
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  background-color: #0559a3;
  border-radius: 50%;
  display: inline-block;
}

.top-business__title {
  font-size: calc(38 * var(--rem));
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.top-business__lead {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: #0559a3;
  line-height: 1.7;
  margin-block-end: calc(20 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.top-business__text {
  font-size: calc(18 * var(--rem));
  color: #0f204a;
  line-height: 1.9;
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}
/* *************************************
 対応範囲
************************************* */
.top-business__scope {
  margin-block-start: calc(60 * var(--rem));
  padding-block: calc(60 * var(--rem));

  @media (width < 768px) {
    margin-block-start: calc(0 * var(--rem));
    padding-block-end: calc(60 * var(--rem));
    padding-block-start: 0;
  }
}

.top-business__scope-title {
  text-align: center;
  font-size: calc(20 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  margin-block-end: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.top-business__scope-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(24 * var(--rem));
  max-width: calc(1200 * var(--rem));
  margin-inline: auto;
  padding-inline: calc(20 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16 * var(--rem));
  }
}

.top-business__scope-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(16 * var(--rem));
  position: relative;
}

.top-business__scope-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: calc(12 * var(--rem));
  overflow: hidden;
}

.top-business__scope-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-business__scope-text {
  text-align: center;
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  line-height: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  margin: 0;
  padding: calc(8 * var(--rem)) calc(12 * var(--rem));
  width: calc(100% - (24 * var(--rem)));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}
.top-business__scope-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
}
.top-business__scope-image {
  position: relative;
}

.top-business__scope-text span {
  font-size: calc(14 * var(--rem));
  font-weight: 400;
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
  }
}

/* *************************************
  施工事例
************************************* */
.top-business__works {
  margin-block-start: calc(80 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(60 * var(--rem));
  }
}

.top-business__works-header {
  position: relative;
  text-align: center;
  margin-block-end: calc(27 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(40 * var(--rem));
  }
}

.top-business__works-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(100 * var(--rem));
  font-weight: 900;
  color: #e8f1f7;
  letter-spacing: 0.05em;
  z-index: 0;
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(60 * var(--rem));
  }
}

.top-business__works-title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--rem));
}

.top-business__works-title h3 {
  font-size: calc(28 * var(--rem));
  font-weight: 500;
  color: var(--white);
  position: relative;
  letter-spacing: 0.1rem;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}
.top-business__works-title h3::before {
  position: absolute;
  width: calc(150 * var(--rem));
  height: calc(150 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #1a3d6f 50%, #2563a3 100%);
  opacity: 0.75;
  display: inline-block;
  content: "";
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  @media (width < 768px) {
    width: calc(100 * var(--rem));
    height: calc(100 * var(--rem));
  }
}

.top-business__works-slider {
  position: relative;
  margin-inline: auto;
  max-width: calc(1400 * var(--rem));
  padding-inline: calc(60 * var(--rem));
  z-index: 1;
  @media (width < 768px) {
    padding-inline: calc(40 * var(--rem));
  }
}

.top-business__works-slide {
  position: relative;
  padding-inline: calc(12 * var(--rem));
}

.top-business__works-slide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.top-business__works-dummy {
  position: absolute;
  bottom: calc(10 * var(--rem));
  right: calc(22 * var(--rem));
  background-color: rgba(139, 92, 246, 0.85);
  color: var(--white);
  font-size: calc(14 * var(--rem));
  padding: calc(6 * var(--rem)) calc(12 * var(--rem));
  border-radius: calc(4 * var(--rem));
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
  }
}

.top-business__works-slider .slick-prev,
.top-business__works-slider .slick-next {
  width: calc(50 * var(--rem));
  height: calc(50 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #1a3d6f 100%);
  z-index: 10;
  transition: opacity 0.3s ease;
  @media (width < 768px) {
    width: calc(40 * var(--rem));
    height: calc(40 * var(--rem));
  }
}

.top-business__works-slider .slick-prev {
  left: 0;
}

.top-business__works-slider .slick-next {
  right: 0;
}

.top-business__works-slider .slick-prev:hover,
.top-business__works-slider .slick-next:hover {
  background: linear-gradient(135deg, #1a3d6f 0%, #0f204a 100%);
  opacity: 0.8;
}

.top-business__works-slider .slick-prev::before,
.top-business__works-slider .slick-next::before {
  content: "";
  width: calc(12 * var(--rem));
  height: calc(12 * var(--rem));
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
}

.top-business__works-slider .slick-prev::before {
  transform: rotate(225deg);
  margin-left: calc(17 * var(--rem));
}

.top-business__works-slider .slick-next::before {
  transform: rotate(45deg);
  margin-left: calc(17 * var(--rem));
}

.top-business__works-link {
}

.top-business__works-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(16 * var(--rem));
  background: linear-gradient(90deg, #1e3a5f 0%, #2563a3 50%, #1e5f8c 100%);
  color: var(--white);
  font-size: calc(23 * var(--rem));
  font-weight: 600;
  padding: calc(100 * var(--rem)) calc(60 * var(--rem)) calc(60 * var(--rem))
    calc(60 * var(--rem));
  width: 100%;
  text-align: center;
  margin-block-start: calc(-50 * var(--rem));
  transition: opacity 0.3s ease;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding: calc(20 * var(--rem)) calc(24 * var(--rem));
    gap: calc(12 * var(--rem));
    margin-block-start: calc(30 * var(--rem));
  }
}

.top-business__works-link-arrow {
  display: inline-block;
  width: calc(32 * var(--rem));
  height: calc(32 * var(--rem));
  border-radius: 50%;
  background-color: var(--white);
  position: relative;
  flex-shrink: 0;
  @media (width < 768px) {
    width: calc(24 * var(--rem));
    height: calc(24 * var(--rem));
  }
}

.top-business__works-link-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-top: 2px solid #1e3a5f;
  border-right: 2px solid #1e3a5f;
  transform: translate(-60%, -50%) rotate(45deg);
  @media (width < 768px) {
    width: calc(6 * var(--rem));
    height: calc(6 * var(--rem));
  }
}
/*--------------------------------
スクロールダウン
--------------------------------*/
.philosophy-scroll {
  position: absolute;
  right: 0;
  bottom: -30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  z-index: 2;
  @media (max-width: 798px) {
    bottom: 15%;
  }
}
.top-philosophy__image {
  position: relative;
}
.philosophy-scroll__text {
  writing-mode: vertical-rl;
  font-size: calc(18 * var(--rem));
  color: var(--blue);
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.philosophy-scroll__bar {
  width: 1px;
  height: 150px;
  background: var(--blue);
  margin-bottom: 8px;
  position: relative;
  margin-right: calc(5 * var(--rem));
}
.philosophy-scroll__diamond {
  width: calc(10 * var(--rem));
  height: calc(10 * var(--rem));
  background: var(--blue);
  transform: rotate(45deg);
  position: absolute;
  top: 40%;
  left: 44%;
  margin-left: -5px;
  animation: diamond-drop 2s linear infinite;
  @media screen and (min-width: 798px) and (max-width: 1000px) {
    left: 50%;
  }
}
@keyframes diamond-drop {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    transform: translateY(150px) rotate(45deg);
    opacity: 0;
  }
}
/* *************************************
    家のオブジェクト
************************************* */
.top-houseScope {
  padding-block-start: calc(80 * var(--rem));
  padding-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    padding-block-start: calc(10 * var(--rem));
  }
}
.top-houseScope__title {
  text-align: center;
  font-size: calc(20 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  margin-block-end: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}
.top-houseScope__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(24 * var(--rem));
  max-width: calc(980 * var(--rem));
  margin-inline: auto;
  padding-inline: calc(20 * var(--rem));

  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16 * var(--rem));
  }
}

.top-houseScope__item {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.top-houseScope__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.7);
}

.top-houseScope__text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -25%);
  z-index: 1;

  width: calc(100% - (24 * var(--rem)));
  margin: 0;
  padding: calc(8 * var(--rem)) calc(12 * var(--rem));

  text-align: center;
  color: #fff;
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  line-height: 1.4;

  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}
.top-banner {
  padding-block-start: calc(40 * var(--rem));
}
.top-banner__title {
  text-align: center;
  font-size: calc(26 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  margin-block-end: calc(22 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}
.top-banner-contents {
  display: flex;
  justify-content: center;
  @media (width < 768px) {
    margin-inline: calc(10 * var(--rem));
  }
}
.top-banner__img {
  width: 100%;
  max-width: calc(1200 * var(--rem));
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*---------------------------------------------
六角形リスト
----------------------------------------------*/
.top-hexagon {
  padding-block-start: calc(100 * var(--rem));
  padding-block-end: calc(40 * var(--rem));
  @media (width < 768px) {
    padding-block-start: calc(10 * var(--rem));
  }
}
.top-hexagon__title {
  text-align: center;
  font-size: calc(20 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  margin-block-end: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}
.top-hexagon__list {
  display: flex;
  justify-content: center;
  gap: calc(32 * var(--rem));
  margin-top: calc(32 * var(--rem));
  flex-wrap: wrap;
  justify-content: center;
}
.top-hexagon__item {
  width: calc(200 * var(--rem));
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.top-hexagon__text {
  color: #fff;
  font-size: calc(22 * var(--rem));
  font-weight: 600;
  text-align: center;
  z-index: 1;
  line-height: 1.3;
  padding-inline: calc(20 * var(--rem));
}
@media (max-width: 900px) {
  .top-hexagon__list {
    gap: calc(16 * var(--rem));
  }
  .top-hexagon__item {
    width: calc(150 * var(--rem));
  }
  .top-hexagon__text {
    font-size: calc(16 * var(--rem));
  }
}
/* *************************************
   top-news (お知らせ)
************************************* */
.top-news {
  margin-block-start: calc(100 * var(--rem));
  margin-block-end: calc(80 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(60 * var(--rem));
    margin-block-end: calc(60 * var(--rem));
  }
}

.top-news__container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: calc(60 * var(--rem));
  align-items: start;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.top-news__header {
  position: relative;
  padding: calc(60 * var(--rem)) calc(40 * var(--rem));
  display: flex;
  flex-direction: column;
  gap: calc(16 * var(--rem));
  @media (width < 768px) {
    padding: calc(40 * var(--rem)) calc(24 * var(--rem));
  }
}

.top-news__header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4dce3 0%, #e0e5ea 100%);
  clip-path: polygon(0 1%, 55% 1%, 100% 100%, 0% 100%);
  z-index: -1;
  @media (width < 768px) {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.top-news__label {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
  font-weight: 600;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.top-news__title-en {
  font-size: calc(48 * var(--rem));
  font-weight: 600;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  position: relative;
  padding-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
  }
}

.top-news__title-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(60 * var(--rem));
  height: 2px;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
}

.top-news__content {
  display: flex;
  flex-direction: column;
  gap: calc(32 * var(--rem));
}

.top-news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-news__item-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: calc(24 * var(--rem));
  align-items: center;
  padding: calc(24 * var(--rem)) calc(16 * var(--rem));
  transition: background-color 0.3s ease;
}

@media (max-width: 768px) {
  .top-news__item-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: calc(8 * var(--rem));
    padding: calc(20 * var(--rem)) calc(20 * var(--rem));
    position: relative;
  }
  .top-news__date {
    order: 1;
    margin-bottom: calc(4 * var(--rem));
    font-size: calc(14 * var(--rem));
  }
  .top-news__item-title {
    order: 2;
    font-size: calc(16 * var(--rem));
    margin-bottom: 0;
    margin-right: calc(24 * var(--rem));
  }
  .top-news__arrow {
    order: 3;
    position: absolute;
    right: calc(8 * var(--rem));
    top: 66%;
    transform: translateY(-50%);
  }
}

@media (any-hover: hover) {
  .top-news__item-link:hover {
    background-color: #f8f9fa;
  }
}

.top-news__date {
  font-size: calc(16 * var(--rem));
  color: #ccc;
  font-weight: 500;
  white-space: nowrap;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.top-news__item-title {
  font-size: calc(18 * var(--rem));
  color: #0f204a;
  font-weight: 500;
  line-height: 1.6;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    grid-column: 1 / 3;
    grid-row: 2;
  }
}

.top-news__arrow {
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-top: 2px solid #0559a3;
  border-right: 2px solid #0559a3;
  transform: rotate(45deg);
  flex-shrink: 0;
  @media (width < 768px) {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
}

.top-news__no-post {
  padding: calc(40 * var(--rem)) calc(16 * var(--rem));
  text-align: center;
  color: #5a6c7d;
  font-size: calc(16 * var(--rem));
}

.top-news__more {
  display: flex;
  justify-content: flex-end;
  padding-inline-end: calc(16 * var(--rem));
}

.top-news__more-link {
  display: inline-flex;
  align-items: center;
  gap: calc(8 * var(--rem));
  font-size: calc(16 * var(--rem));
  color: #0559a3;
  font-weight: 600;
  padding: calc(12 * var(--rem)) calc(24 * var(--rem));
  border: 2px solid #0559a3;
  border-radius: calc(4 * var(--rem));
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.top-news__more-link::after {
  content: "";
  display: inline-block;
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-top: 2px solid #0559a3;
  border-right: 2px solid #0559a3;
  transform: rotate(45deg);
  transition: border-color 0.3s ease;
}

@media (any-hover: hover) {
  .top-news__more-link:hover {
    background-color: #0559a3;
    color: var(--white);
  }

  .top-news__more-link:hover::after {
    border-color: var(--white);
  }
}

/* *************************************
   top-recruit (採用情報)
************************************* */
.top-recruit {
  position: relative;
  @media (width < 768px) {
  }
}

.top-recruit__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  @media (width < 768px) {
    display: flex;
    flex-direction: column-reverse;
  }
}

.top-recruit__content {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(0 * var(--rem)) calc(60 * var(--rem));
  @media (width < 768px) {
    padding: calc(0 * var(--rem)) calc(24 * var(--rem));
  }
}

.top-recruit__content::before {
  content: "";
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100vw;
  height: 70%;
  background: linear-gradient(135deg, #0f204a 0%, #1a3d6f 50%, #2563a3 100%);
  z-index: 0;
  @media (width < 768px) {
    width: 100%;
    clip-path: none;
  }
}

.top-recruit__inner {
  width: 100%;
  @media (width < 768px) {
    padding-block-start: calc(20 * var(--rem));
  }
}

.top-recruit__label {
  font-size: calc(16 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-block-end: calc(8 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.top-recruit__title {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-block-end: calc(80 * var(--rem));
  position: relative;
  padding-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
    margin-block-end: calc(32 * var(--rem));
  }
}

.top-recruit__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(60 * var(--rem));
  height: 2px;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
}

.top-recruit__text-area {
  display: flex;
  flex-direction: column;
  z-index: 1;
  position: relative;
  gap: calc(40 * var(--rem));
}

.top-recruit__text {
  font-size: calc(18 * var(--rem));
  color: #fff;
  line-height: 1.9;
  max-width: 70%;
  padding-block: calc(50 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    padding-block-start: calc(50 * var(--rem));
    padding-block-end: calc(0 * var(--rem));
  }
}

.top-recruit__image {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: calc(500 * var(--rem));
  @media (width < 768px) {
    min-height: calc(300 * var(--rem));
  }
}
.top-recruit__image::before {
  content: "";
  position: absolute;
  top: 1%;
  right: 65%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4dce3 0%, #e0e5ea 100%);
  clip-path: polygon(36% 0, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.top-recruit__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.top-recruit__image-text {
  position: absolute;
  right: calc(40 * var(--rem));
  top: 50%;
  transform: translateY(-63%);
  @media (width < 768px) {
    right: calc(24 * var(--rem));
    top: 40%;
  }
}

.top-recruit__vertical-text {
  position: relative;
  z-index: 1;
  writing-mode: vertical-rl;
  font-size: calc(52 * var(--rem));
  font-weight: 800;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.15em;
  line-height: 1.6;
  mix-blend-mode: hard-light;
  @media (width < 768px) {
    font-size: calc(27 * var(--rem));
  }
}
.top-recruit__vertical-text span {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* リクルートセクションのボタン調整 */
.top-recruit .common__btn01 {
  border-color: var(--white);
}

.top-recruit .common__btn01 a {
  color: var(--white);
}

.top-recruit .common__btn01 a::after {
  border-right-color: var(--white);
  border-bottom-color: var(--white);
}

@media (any-hover: hover) {
  .top-recruit .common__btn01:hover {
    background-color: var(--white);
  }

  .top-recruit .common__btn01:hover a {
    color: #0f204a;
  }

  .top-recruit .common__btn01:hover a::after {
    border-right-color: #0f204a;
    border-bottom-color: #0f204a;
  }
}
/* *************************************
   top-contact (お問い合わせ)
************************************* */
.top-contact {
  padding: calc(80 * var(--rem)) 0;
  background: #e4e8eb;
  @media (width < 768px) {
    padding: calc(70 * var(--rem)) 0;
  }
}

.top-contact__header {
  text-align: center;
  margin-block-end: calc(20 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(10 * var(--rem));
  }
}

.top-contact__label {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
  font-weight: 600;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.top-contact__title {
  font-size: calc(58 * var(--rem));
  font-weight: 600;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}
.top-contact__title::after {
  content: "";
  display: block;
  width: calc(80 * var(--rem));
  height: 2px;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  margin: calc(5 * var(--rem)) auto 0;
}

.top-contact__description {
  font-size: calc(18 * var(--rem));
  color: #0f204a;
  line-height: 1.8;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.top-contact__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(40 * var(--rem));
  max-width: calc(1000 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.top-contact__box {
  background-color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.top-contact__box-inner {
  padding: calc(50 * var(--rem)) calc(40 * var(--rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(260 * var(--rem));
  @media (width < 768px) {
    padding: calc(20 * var(--rem)) calc(20 * var(--rem));
    min-height: calc(180 * var(--rem));
  }
}

.top-contact__box-label {
  font-size: calc(18 * var(--rem));
  color: #0f204a;
  font-weight: 600;
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.top-contact__tel {
  display: flex;
  align-items: baseline;
  gap: calc(12 * var(--rem));
  margin-block-end: calc(16 * var(--rem));
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

@media (any-hover: hover) {
  .top-contact__tel:hover {
    opacity: 0.7;
  }
}

.top-contact__tel-label {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.top-contact__tel-number {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  color: #0559a3;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.top-contact__time {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
  text-align: center;
  @media (width < 768px) {
    font-size: calc(13 * var(--rem));
  }
}

.top-contact__btn {
  width: 100%;
}

.top-contact__btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(12 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  color: var(--white);
  font-size: calc(18 * var(--rem));
  font-weight: 600;
  padding: calc(20 * var(--rem)) calc(40 * var(--rem));
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  text-decoration: none;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    padding: calc(18 * var(--rem)) calc(32 * var(--rem));
  }
}

@media (any-hover: hover) {
  .top-contact__btn-link:hover {
    opacity: 0.9;
    transform: translateX(4px);
  }
}

.top-contact__btn-arrow {
  display: inline-block;
  width: calc(8 * var(--rem));
  height: calc(8 * var(--rem));
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* *************************************
   About Page - 会社概要
************************************* */

/* ファーストビュー */
.about-fv {
  position: relative;
  min-height: calc(500 * var(--rem));
  margin-top: calc(110 * var(--rem));
  display: flex;
  align-items: center;
  @media (width < 768px) {
    min-height: calc(400 * var(--rem));
    flex-direction: column;
    margin-top: calc(80 * var(--rem));
  }
}

.about-fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.85) 0%,
    rgba(15, 32, 74, 0.4) 100%
  );
  @media (width < 768px) {
    background: rgba(15, 32, 74, 0.7);
  }
}

.about-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
  }
}

.about-fv__inner {
  max-width: calc(800 * var(--rem));
}

.about-fv__title {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-block-end: calc(32 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(28 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.about-fv__lead {
  font-size: calc(18 * var(--rem));
  color: var(--white);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

/* パンくずリスト */
.breadcrumb {
  padding: calc(20 * var(--rem)) 0;
  background-color: #f8f9fa;
}

.breadcrumb__list {
  display: flex;
  gap: calc(16 * var(--rem));
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
}

.breadcrumb__list li {
  position: relative;
  padding-inline-end: calc(20 * var(--rem));
}

.breadcrumb__list li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: 0;
  color: #5a6c7d;
}

.breadcrumb__list a {
  color: #0559a3;
  transition: opacity 0.3s;
}

.breadcrumb__list a:hover {
  opacity: 0.7;
}

/* ご挨拶 */
.about-greeting {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding-block-start: calc(16 * var(--rem));
    padding-block-end: calc(48 * var(--rem));
  }
}

.about-greeting__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--rem));
  align-items: center;
  padding-block-start: calc(56 * var(--rem));
  padding-inline-start: calc(80 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
    padding-block-start: calc(0 * var(--rem));
    padding-inline: calc(15 * var(--rem));
  }
}

.about-greeting__text {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #0f204a;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.about-greeting__image {
  overflow: hidden;
}

.about-greeting__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 経営理念 */
.about-philosophy {
  padding-block: calc(100 * var(--rem));
  background: linear-gradient(135deg, #e8f1f7 0%, #f0f5f8 100%);
  @media (width < 768px) {
    padding-block-start: calc(16 * var(--rem));
    padding-block-end: calc(48 * var(--rem));
  }
}

.about-philosophy__main-title {
  text-align: center;
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(40 * var(--rem));
  }
}

.about-philosophy__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.about-philosophy__item {
  background-color: var(--white);
  padding: calc(50 * var(--rem)) calc(32 * var(--rem));
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  @media (width < 768px) {
    padding: calc(20 * var(--rem)) calc(20 * var(--rem));
  }
}

.about-philosophy__icon {
  margin-block-end: calc(24 * var(--rem));
}

.about-philosophy__number {
  display: block;
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  font-style: italic;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-philosophy__title {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(20 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.about-philosophy__text {
  font-size: calc(22 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

/* 会社概要 */
.about-info {
  padding-block: calc(100 * var(--rem));
  @media (width < 768px) {
    padding-block-start: calc(16 * var(--rem));
    padding-block-end: calc(48 * var(--rem));
  }
}

.about-info__table-wrap {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  padding-block-start: calc(20 * var(--rem));
}

.about-info__table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.about-info__table tr {
  border-bottom: 1px solid #e0e5ea;
}

.about-info__table tr:last-child {
  border-bottom: none;
}

.about-info__table th,
.about-info__table td {
  padding: calc(24 * var(--rem)) calc(32 * var(--rem));
  text-align: left;
  @media (width < 768px) {
    padding: calc(16 * var(--rem)) calc(20 * var(--rem));
    display: block;
  }
}

.about-info__table th {
  width: 30%;
  background-color: #f8f9fa;
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  padding-block-start: calc(20 * var(--rem));
  @media (width < 768px) {
    width: 100%;
    padding-block-end: calc(8 * var(--rem));
  }
}

.about-info__table td {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
  line-height: 1.8;
  @media (width < 768px) {
    padding-block-start: calc(8 * var(--rem));
  }
}

/* 沿革 */
.about-history {
  padding-block: calc(100 * var(--rem));
  background: linear-gradient(135deg, #e8f1f7 0%, #f0f5f8 100%);
  @media (width < 768px) {
    padding-block-start: calc(12 * var(--rem));
    padding-block-end: calc(48 * var(--rem));
  }
}

.about-history__timeline {
  max-width: calc(800 * var(--rem));
  margin-inline: auto;
  position: relative;
  padding-inline-start: calc(60 * var(--rem));
  @media (width < 768px) {
    padding-inline-start: calc(40 * var(--rem));
  }
}

.about-history__timeline::before {
  content: "";
  position: absolute;
  left: calc(20 * var(--rem));
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #0f204a 0%, #0559a3 100%);
  @media (width < 768px) {
    left: calc(10 * var(--rem));
  }
}

.about-history__item {
  position: relative;
  padding-block-end: calc(50 * var(--rem));
  @media (width < 768px) {
    padding-block-end: calc(40 * var(--rem));
  }
}

.about-history__item:last-child {
  padding-block-end: 0;
}

.about-history__item::before {
  content: "";
  position: absolute;
  left: calc(-45 * var(--rem));
  top: calc(8 * var(--rem));
  width: calc(14 * var(--rem));
  height: calc(14 * var(--rem));
  background-color: var(--white);
  border: 3px solid #0559a3;
  border-radius: 50%;
  @media (width < 768px) {
    left: calc(-35 * var(--rem));
  }
}

.about-history__year {
  font-size: calc(24 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  margin-block-end: calc(12 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.about-history__content p {
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

/* 私たちの想い */
.about-message {
  position: relative;
  padding: calc(100 * var(--rem)) 0;
  background-image: url(../images/top/wood02.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  @media (width < 768px) {
    padding: calc(30 * var(--rem)) 0;
  }
}

.about-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  pointer-events: none;
  z-index: 0;
}

.about-message__content {
  position: relative;
  z-index: 1;
  max-width: calc(800 * var(--rem));
  margin-inline: auto;
  text-align: center;
}

.about-message__text {
  font-size: calc(20 * var(--rem));
  line-height: 2;
  color: #0f204a;
  padding: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    padding: calc(24 * var(--rem));
  }
}
.about-message__obj {
  position: relative;
}
.about-message__obj::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 50%;
  width: calc(350 * var(--rem));
  height: calc(350 * var(--rem));
  background-image: url(../images/common/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-50%, -38%);
  opacity: 0.2;
}
.about-access {
  padding-block: calc(64 * var(--rem));
  @media (width < 768px) {
    padding-block-start: calc(16 * var(--rem));
    padding-block-end: calc(32 * var(--rem));
  }
}
.two_in_one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  @media (width < 768px) {
    flex-direction: column;
  }
}
.about-access .two_in_one {
  max-width: calc(630 * var(--rem));
}
@media (width >= 768px) {
  .two_in_one > div {
    width: calc(100% / 2);
  }
}
@media (width < 768px) {
  .access-left p {
    margin-block-end: calc(20 * var(--rem));
  }
}

.access__map {
  margin-block-start: calc(64 * var(--rem));
  margin-block-end: calc(32 * var(--rem));
}

.access__map iframe {
  aspect-ratio: 16 /9;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-access h3 {
  color: var(--blue);
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block-end: calc(12 * var(--rem));
  }
}
/* *************************************
   採用情報
************************************* */
.recruit-fv {
  position: relative;
  min-height: calc(500 * var(--rem));
  margin-top: calc(110 * var(--rem));
  display: flex;
  align-items: center;
  @media (width < 768px) {
    min-height: calc(400 * var(--rem));
    margin-top: calc(80 * var(--rem));
  }
}

.recruit-fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.recruit-fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.85) 0%,
    rgba(15, 32, 74, 0.4) 100%
  );
  @media (width < 768px) {
    background: rgba(15, 32, 74, 0.7);
  }
}

.recruit-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.recruit-fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
  }
}

.recruit-fv__inner {
  max-width: calc(800 * var(--rem));
}

.recruit-fv__title {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-block-end: calc(32 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(28 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.recruit-fv__lead {
  font-size: calc(18 * var(--rem));
  color: var(--white);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

/* 採用メッセージ */
.recruit-message {
  padding: calc(100 * var(--rem)) 0;
  position: relative;
  padding: calc(100 * var(--rem)) 0;
  background-image: url(../images/recruit/recruit01.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}
.recruit-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 0;
}
.recruit-message .title-common__ja {
  color: var(--white);
}
.recruit-message .title-common__en {
  color: var(--white);
  -webkit-text-fill-color: aliceblue;
}
.recruit-message .title-common::after {
  background: var(--white);
}

.recruit-message__content {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  padding-block-start: calc(60 * var(--rem));
  @media (max-width: 768px) {
    padding-block-start: calc(20 * var(--rem));
  }
}

.recruit-message__text {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  position: relative;
  z-index: 1;
  color: var(--white);
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.recruit-message__text--highlight {
  font-size: calc(22 * var(--rem));
  font-weight: 700;

  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    padding: calc(24 * var(--rem));
  }
}

/* こんな人を募集 */
.recruit-target {
  padding: calc(100 * var(--rem)) 0;
  background-color: var(--white);
  background-image:
    linear-gradient(
      0deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    ),
    linear-gradient(
      90deg,
      transparent calc(100% - 1px),
      #f0f0f0 calc(100% - 1px)
    );
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: center center;
  overflow-x: hidden;
  scroll-behavior: smooth;
  @media (width < 768px) {
    padding: calc(40 * var(--rem)) 0;
  }
}

.recruit-target__list {
  display: flex;
  flex-wrap: wrap;
  gap: calc(40 * var(--rem));
  justify-content: center;
  padding-block-start: calc(32 * var(--rem));
  max-width: calc(1200 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(0 * var(--rem));
    padding-block-start: calc(0 * var(--rem));
  }
}

.recruit-target__list {
  justify-items: center;
}

.recruit-target__item {
  background-image: url(../images/recruit/recruit11.webp);
  background-size: cover;
  background-position: center;
  padding: calc(40 * var(--rem)) calc(32 * var(--rem));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  max-width: calc(370 * var(--rem));
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
}
.recruit-target__item:nth-child(2) {
  background-image: url(../images/recruit/recruit05.webp);
}
.recruit-target__item:nth-child(3) {
  background-image: url(../images/recruit/recruit10.webp);
}
.recruit-target__item:nth-child(4) {
  background-image: url(../images/recruit/recruit09.webp);
}
.recruit-target__item:nth-child(5) {
  background-image: url(../images/recruit/recruit12.webp);
}

.recruit-target__item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: -1;
}

.recruit-target__icon {
  margin-block-end: calc(20 * var(--rem));
}

.recruit-target__title {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: var(--white);
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.recruit-target__text {
  font-size: calc(18 * var(--rem));
  line-height: 1.8;
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

/* 募集要項 */
.recruit-jobs {
  padding: calc(100 * var(--rem)) 0;
  background: linear-gradient(135deg, #e8f1f7 0%, #f0f5f8 100%);
  @media (width < 768px) {
    padding: calc(40 * var(--rem)) 0;
  }
}

.recruit-jobs__list {
  display: grid;
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    gap: calc(32 * var(--rem));
  }
}

.recruit-jobs__item {
  background-color: var(--white);
  overflow: hidden;
  margin-block-start: calc(64 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(12 * var(--rem));
  }
}

.recruit-jobs__header {
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  padding: calc(24 * var(--rem)) calc(32 * var(--rem));
}

.recruit-jobs__title {
  font-size: calc(24 * var(--rem));
  font-weight: 700;
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.recruit-jobs__body {
  padding: calc(32 * var(--rem));
  @media (width < 768px) {
    padding: calc(24 * var(--rem));
  }
}

.recruit-jobs__detail {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: calc(20 * var(--rem));
  padding: calc(16 * var(--rem)) 0;
  border-bottom: 1px solid #e0e5ea;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--rem));
  }
}

.recruit-jobs__detail:last-child {
  border-bottom: none;
}

.recruit-jobs__detail dt {
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.recruit-jobs__detail dd {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
  line-height: 1.8;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.recruit-jobs__note {
  margin-block-start: calc(40 * var(--rem));
  text-align: center;
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
}

/* 福利厚生 */
.recruit-benefits {
  padding: calc(100 * var(--rem)) 0;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  @media (width < 768px) {
    padding: calc(45 * var(--rem)) 0;
  }
}
.recruit-benefits .title-common__ja {
  color: var(--white);
}
.recruit-benefits .title-common__en {
  color: var(--white);
  -webkit-text-fill-color: aliceblue;
}
.recruit-benefits .title-common::after {
  background: var(--white);
}

.recruit-benefits__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24 * var(--rem));
  max-width: calc(1200 * var(--rem));
  margin-inline: auto;
  margin-block-start: calc(64 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(16 * var(--rem));
    margin-block-start: calc(20 * var(--rem));
  }
}

.recruit-benefits__item {
  background-color: var(--white);
  padding: calc(42 * var(--rem)) calc(24 * var(--rem));
  text-align: center;
  font-size: calc(24 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-inline-start: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding: calc(16 * var(--rem)) calc(16 * var(--rem)) calc(16 * var(--rem))
      calc(32 * var(--rem));
  }
}

.recruit-benefits__item::before {
  content: "";
  position: absolute;
  left: calc(16 * var(--rem));
  top: 50%;
  transform: translateY(-50%);
  color: #0559a3;
  font-size: calc(24 * var(--rem));
  font-weight: 800;
  background-image: url(../images/common/benefit06.svg);
  background-repeat: no-repeat;
  filter: contrast(0.5);
  background-size: contain;
  width: calc(64 * var(--rem));
  height: calc(64 * var(--rem));
  @media (width < 768px) {
    left: calc(12 * var(--rem));
    font-size: calc(18 * var(--rem));
    width: calc(30 * var(--rem));
    height: calc(30 * var(--rem));
  }
}
.recruit-benefits__item:nth-child(2)::before {
  background-image: url(../images/common/benefit03.svg);
}
.recruit-benefits__item:nth-child(3)::before {
  background-image: url(../images/common/benefit08.svg);
}
.recruit-benefits__item:nth-child(4)::before {
  background-image: url(../images/common/benefit07.svg);
}
.recruit-benefits__item:nth-child(5)::before {
  background-image: url(../images/common/benefit09.svg);
}
.recruit-benefits__item:nth-child(6)::before {
  background-image: url(../images/common/benefit04.svg);
}

/* 応募の流れ */
.recruit-flow {
  padding: calc(100 * var(--rem)) 0;
}
@media (width < 768px) {
  .recruit-flow {
    padding: calc(40 * var(--rem)) 0;
  }
}

.recruit-flow__timeline {
  list-style: none;
  margin: calc(64 * var(--rem)) auto 0;
  padding: 0;
  max-width: calc(980 * var(--rem));
  display: grid;
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    margin: calc(20 * var(--rem)) auto 0;
    gap: calc(32 * var(--rem));
  }
}

.recruit-flow__step {
  display: grid;
  grid-template-columns: calc(92 * var(--rem)) 1fr;
  column-gap: calc(28 * var(--rem));
  position: relative;
}

@media (width < 768px) {
  .recruit-flow__step {
    grid-template-columns: calc(76 * var(--rem)) 1fr;
    column-gap: calc(18 * var(--rem));
  }
}

.recruit-flow__step::before {
  content: "";
  position: absolute;
  left: calc(46 * var(--rem));
  top: calc(85 * var(--rem));
  bottom: calc(-45 * var(--rem));
  width: 1px;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
}
.recruit-flow__step::after {
  content: "";
  position: absolute;
  left: calc(46 * var(--rem));
  top: 0;
  transform: translate(-50%, calc(-10 * var(--rem)));
  width: calc(110 * var(--rem));
  height: calc(110 * var(--rem));
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  background: rgba(5, 120, 199, 0.18);
  z-index: 0;
  pointer-events: none;
}
@media (width < 768px) {
  .recruit-flow__step::after {
    left: calc(38 * var(--rem));
    width: calc(76 * var(--rem));
    height: calc(76 * var(--rem));
    transform: translate(-50%, calc(3 * var(--rem)));
  }
}
.recruit-flow__step:last-child::before {
  display: none;
}
@media (width < 768px) {
  .recruit-flow__step::before {
    left: calc(38 * var(--rem));
    top: calc(70 * var(--rem));
  }
}

.recruit-flow__badge {
  width: calc(92 * var(--rem));
  height: calc(92 * var(--rem));
  display: grid;
  place-content: center;
  gap: calc(2 * var(--rem));
  color: var(--white);
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  position: relative;
  z-index: 1;
}

@media (width < 768px) {
  .recruit-flow__badge {
    width: calc(76 * var(--rem));
    height: calc(76 * var(--rem));
    border-width: 3px;
  }
}

.recruit-flow__badgeLabel {
  font-size: calc(12 * var(--rem));
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
}
.recruit-flow__badgeNum {
  font-size: calc(22 * var(--rem));
  font-weight: 900;
  line-height: 1;
}
@media (width < 768px) {
  .recruit-flow__badgeLabel {
    font-size: calc(11 * var(--rem));
  }
  .recruit-flow__badgeNum {
    font-size: calc(20 * var(--rem));
  }
}

.recruit-flow__content {
  background: #fff;
  padding: calc(22 * var(--rem)) calc(24 * var(--rem));
}

@media (width < 768px) {
  .recruit-flow__content {
    padding: calc(18 * var(--rem)) calc(18 * var(--rem));
    border-radius: calc(14 * var(--rem));
  }
}

.recruit-flow__title {
  margin: 0 0 calc(10 * var(--rem));
  font-size: calc(22 * var(--rem));
  color: #0f204a;
  letter-spacing: 0.02em;
}
.recruit-flow__desc {
  margin: 0;
  font-size: calc(15 * var(--rem));
  line-height: 1.9;
  color: rgba(15, 32, 74, 0.78);
}
@media (width < 768px) {
  .recruit-flow__title {
    font-size: calc(18 * var(--rem));
  }
  .recruit-flow__desc {
    font-size: calc(14 * var(--rem));
  }
}

/* 応募フォーム */
.recruit-form {
  padding: calc(100 * var(--rem)) 0;
  position: relative;
  background: linear-gradient(135deg, #e8f1f7 0%, #f0f5f8 100%);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}
.recruit-form::before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  top: -1px;
  left: 0;
}

.recruit-form__container {
  max-width: calc(1040 * var(--rem));
  margin-inline: auto;
  margin-block-start: calc(64 * var(--rem));
  background-color: var(--white);
  padding: calc(60 * var(--rem)) calc(40 * var(--rem));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  @media (width < 768px) {
    padding: calc(40 * var(--rem)) calc(24 * var(--rem));
  }
}

.recruit-form__form .form__item {
  margin-block-end: calc(32 * var(--rem));
}

.recruit-form__form .form__item:last-child {
  margin-block-end: 0;
}
/* *************************************
   内装工事
************************************* */

/* ファーストビュー */
.interior-fv {
  position: relative;
  min-height: calc(600 * var(--rem));
  margin-top: calc(110 * var(--rem));
  display: flex;
  align-items: center;
  @media (width < 768px) {
    min-height: calc(500 * var(--rem));
    margin-top: calc(80 * var(--rem));
  }
}

.interior-fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.interior-fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.9) 0%,
    rgba(15, 32, 74, 0.5) 100%
  );
  @media (width < 768px) {
    background: rgba(15, 32, 74, 0.75);
  }
}

.interior-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.interior-fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
  }
}

.interior-fv__inner {
  max-width: calc(900 * var(--rem));
}

.interior-fv__label {
  font-size: calc(16 * var(--rem));
  color: #e4d0ba;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.interior-fv__title {
  font-size: calc(56 * var(--rem));
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.interior-fv__catch {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.interior-fv__lead {
  font-size: calc(18 * var(--rem));
  color: var(--white);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

/* 導入文・強み訴求 */
.interior-intro {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.interior-intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}
.interior-intro__content {
  padding-inline-start: calc(80 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(15 * var(--rem));
  }
}

.interior-intro__title {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  line-height: 1.5;
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.interior-intro__text {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.interior-intro__text p {
  margin-block-end: calc(24 * var(--rem));
}

.interior-intro__text p:last-child {
  margin-block-end: 0;
}

.interior-intro__image {
  overflow: hidden;
}

.interior-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 事業内容 */
.interior-service {
  padding: calc(100 * var(--rem)) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.interior-service__list {
  margin-block-start: calc(64 * var(--rem));
  display: grid;
  gap: calc(80 * var(--rem));
  @media (width < 768px) {
    gap: calc(60 * var(--rem));
  }
}

.interior-service__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.interior-service__item--reverse {
  @media (width >= 768px) {
    direction: rtl;
  }
}

.interior-service__item--reverse > * {
  @media (width >= 768px) {
    direction: ltr;
  }
}

.interior-service__image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  aspect-ratio: 16 / 9;
  z-index: 1;
}
.interior-service__image::before {
  content: "";
  position: absolute;

  inset: 0;
  background: rgba(5, 89, 163, 0.5);
  pointer-events: none;
  z-index: -1;
  transform: translate(-40%, -40%);
}

.interior-service__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.interior-service__content {
  position: relative;
  display: grid;
  place-content: center;
}
.interior-service__item:nth-child(odd) .interior-service__content {
  padding-inline-end: calc(80 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(15 * var(--rem));
  }
}
.interior-service__item:nth-child(even) .interior-service__content {
  padding-inline-start: calc(80 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(15 * var(--rem));
  }
}

.interior-service__number {
  font-size: calc(80 * var(--rem));
  font-weight: 800;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px #0559a3;
  opacity: 0.3;
  line-height: 1;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(60 * var(--rem));
  }
}

.interior-service__title {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  padding-block-end: calc(10 * var(--rem));
  border-bottom: 1px solid var(--blue);
  margin-block-end: calc(20 * var(--rem));
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
  }
}

.interior-service__text {
  font-size: calc(16 * var(--rem));
  line-height: 1.9;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

/* 実績と対応規模 */
.interior-works {
  padding: calc(100 * var(--rem)) 0;
  background: #e4e8eb;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}
.interior-works__gallery {
}

.interior-works__subtitle {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  text-align: center;
  margin-block-start: calc(16 * var(--rem));
  margin-block-end: calc(64 * var(--rem));
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
    margin-block-end: calc(32 * var(--rem));
  }
}

.interior-works__range {
  margin-block-end: calc(80 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(60 * var(--rem));
  }
}
.interior-works .common__btn01 {
  margin: 0 auto;
  background: #fff;
}
.interior-works__range-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(32 * var(--rem));
  max-width: calc(1200 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--rem));
  }
}

.interior-works__range-item {
  padding: calc(45 * var(--rem)) calc(24 * var(--rem)) calc(45 * var(--rem))
    calc(100 * var(--rem));
  font-size: calc(23 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  display: flex;
  align-items: center;
  gap: calc(16 * var(--rem));
  position: relative;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
  background-color: var(--white);
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    padding: calc(20 * var(--rem)) calc(24 * var(--rem)) calc(20 * var(--rem))
      calc(60 * var(--rem));
  }
}
.interior-works__range-item::before {
  content: "";
  position: absolute;
  left: calc(16 * var(--rem));
  top: 50%;
  transform: translateY(-50%);
  width: calc(64 * var(--rem));
  height: calc(64 * var(--rem));
  background-image: url(../images/common/house02.svg);
  background-size: contain;
  background-repeat: no-repeat;
  @media (width < 768px) {
    width: calc(32 * var(--rem));
    height: calc(32 * var(--rem));
    left: calc(12 * var(--rem));
  }
}
.interior-works__range-item:nth-child(2)::before {
  background-image: url(../images/common/hause01.svg);
}
.interior-works__range-item:nth-child(3)::before {
  background-image: url(../images/common/map01.svg);
}

/* 実績例カード */
.interior-works__examples {
  margin-block-end: calc(80 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(60 * var(--rem));
  }
}

.interior-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.interior-works__card {
  background-color: var(--white);
  border-radius: calc(8 * var(--rem));
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.interior-works__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.interior-works__card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.interior-works__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.interior-works__card:hover .interior-works__card-image img {
  transform: scale(1.05);
}

.interior-works__card-content {
  padding: calc(32 * var(--rem));
  @media (width < 768px) {
    padding: calc(24 * var(--rem));
  }
}

.interior-works__card-title {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(8 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.interior-works__card-location {
  font-size: calc(14 * var(--rem));
  color: #0559a3;
  font-weight: 600;
  margin-block-end: calc(16 * var(--rem));
}

.interior-works__card-text {
  font-size: calc(15 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

/* 施工写真ギャラリー */
.interior-works__gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(0 * var(--rem));
  }
}

.interior-works__gallery-item {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.interior-works__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* CTAセクション */
.interior-cta {
  padding: calc(100 * var(--rem)) 0;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.interior-cta__container {
  text-align: center;
  color: var(--white);
}

.interior-cta__title {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.interior-cta__text {
  font-size: calc(18 * var(--rem));
  line-height: 1.8;
  margin-block-end: calc(48 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    margin-block-end: calc(32 * var(--rem));
  }
}

.interior-cta__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(32 * var(--rem));
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--rem));
  }
}

.interior-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--rem));
  background-color: var(--white);
  padding: calc(32 * var(--rem)) calc(24 * var(--rem));
  border-radius: calc(8 * var(--rem));
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-align: left;
  @media (width < 768px) {
    padding: calc(24 * var(--rem)) calc(20 * var(--rem));
  }
}

.interior-cta__btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.interior-cta__btn-icon {
  font-size: calc(40 * var(--rem));
  flex-shrink: 0;
  @media (width < 768px) {
    font-size: calc(32 * var(--rem));
  }
}

.interior-cta__btn-text {
  display: flex;
  flex-direction: column;
  gap: calc(8 * var(--rem));
}

.interior-cta__btn-label {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
  font-weight: 600;
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
  }
}

.interior-cta .common__btn01 {
  justify-self: center;
  background: #fff;
  color: #0559a3;
}
/* *************************************
   Reform Page - 不動産・リフォーム
************************************* */

/* ファーストビュー */
.reform-fv {
  position: relative;
  min-height: calc(600 * var(--rem));
  margin-top: calc(110 * var(--rem));
  display: flex;
  align-items: center;
  @media (width < 768px) {
    min-height: calc(500 * var(--rem));
    margin-top: calc(80 * var(--rem));
  }
}

.reform-fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.reform-fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.9) 0%,
    rgba(15, 32, 74, 0.5) 100%
  );
  @media (width < 768px) {
    background: rgba(15, 32, 74, 0.75);
  }
}

.reform-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.reform-fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
  }
}

.reform-fv__inner {
  max-width: calc(900 * var(--rem));
}

.reform-fv__label {
  font-size: calc(16 * var(--rem));
  color: #e4d0ba;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.reform-fv__title {
  font-size: calc(56 * var(--rem));
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.reform-fv__catch {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.reform-fv__lead {
  font-size: calc(18 * var(--rem));
  color: var(--white);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

/* 導入文 */
.reform-intro {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-intro__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}
.reform-intro__content {
  padding-inline-start: calc(80 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(15 * var(--rem));
  }
}

.reform-intro__title {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  line-height: 1.5;
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

.reform-intro__text {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.reform-intro__text p {
  margin-block-end: calc(24 * var(--rem));
}

.reform-intro__text p:last-child {
  margin-block-end: 0;
}

.reform-intro__image {
}

.reform-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* こんなお悩み */
.reform-problems {
  padding: calc(100 * var(--rem)) 0;
  background: var(--base02);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-problems__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(32 * var(--rem));
  margin-block-start: calc(64 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(10 * var(--rem));
  }
}

.reform-problems__item {
  background-color: var(--white);
  padding: calc(40 * var(--rem)) calc(24 * var(--rem));
  text-align: center;
  position: relative;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  @media (width < 768px) {
    padding: calc(32 * var(--rem)) calc(5 * var(--rem));
  }
}
.reform-problems__item::before {
  content: "";
  position: absolute;
  top: calc(24 * var(--rem));
  left: 50%;
  transform: translateX(-50%);
  width: calc(100 * var(--rem));
  height: calc(100 * var(--rem));
  background-image: url(../images/common/problem04.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.reform-problems__item:nth-child(2)::before {
  background-image: url(../images/common/problem01.svg);
}
.reform-problems__item:nth-child(3)::before {
  background-image: url(../images/common/problem03.svg);
}
.reform-problems__item:nth-child(4)::before {
  background-image: url(../images/common/problem05.svg);
}

.reform-problems__text {
  font-size: calc(16 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  line-height: 1.6;
  margin-block-start: calc(100 * var(--rem));
  @media (width < 768px) {
    font-size: calc(13 * var(--rem));
  }
}

/* 解決策 */
.reform-solution {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-solution__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}
.reform-solution__content {
  padding-inline-end: calc(80 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(15 * var(--rem));
  }
}

.reform-solution__image {
}

.reform-solution__image img {
  width: 100%;
  height: auto;
  display: block;
}

.reform-solution__title {
  font-size: calc(32 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.reform-solution__text {
  font-size: calc(18 * var(--rem));
  line-height: 1.9;
  color: #5a6c7d;
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.reform-solution__options {
  display: grid;
  gap: calc(16 * var(--rem));
  margin-block-start: calc(32 * var(--rem));
}

.reform-solution__options li {
  font-size: calc(18 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  padding-inline-start: calc(38 * var(--rem));
  position: relative;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.reform-solution__options li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: calc(28 * var(--rem));
  height: calc(28 * var(--rem));
  background-image: url(../images/common/checkbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(10%);
}

/* 選ばれる理由 */
.reform-reasons {
  padding: calc(100 * var(--rem)) 0;
  background: var(--base02);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-reasons__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(40 * var(--rem));
  margin-block-start: calc(64 * var(--rem));
  max-width: calc(980 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.reform-reasons__item {
  background-color: var(--white);
  padding: calc(40 * var(--rem));
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  max-height: calc(350 * var(--rem));
  @media (width < 768px) {
    padding: calc(32 * var(--rem)) calc(24 * var(--rem));
  }
}

.reform-reasons__number {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  font-style: italic;
  color: transparent;
  -webkit-text-stroke: 2px #0559a3;
  opacity: 0.3;
  line-height: 1;
  margin-block-end: calc(16 * var(--rem));
}

.reform-reasons__title {
  font-size: calc(22 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(16 * var(--rem));
  border-bottom: 1px solid var(--blue);
  padding-block-end: calc(8 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.reform-reasons__text {
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

/* 施工事例 */
.reform-works {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  margin-block-end: calc(60 * var(--rem));
  margin-block-start: calc(64 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.reform-works__card {
  background-color: var(--white);
  border-radius: calc(8 * var(--rem));
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.reform-works__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.reform-works__card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.reform-works__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reform-works__card:hover .reform-works__card-image img {
  transform: scale(1.05);
}

.reform-works__card-content {
  padding: calc(32 * var(--rem));
  @media (width < 768px) {
    padding: calc(24 * var(--rem));
  }
}

.reform-works__card-title {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.reform-works__card-text {
  font-size: calc(15 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  margin-block-end: calc(20 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.reform-works__card-link {
  font-size: calc(16 * var(--rem));
  font-weight: 600;
  color: #0559a3;
  transition: opacity 0.3s;
}

.reform-works__card-link:hover {
  opacity: 0.7;
}
.reform-works .common__btn01 {
  margin: 0 auto;
}

/* 断熱リフォーム */
.reform-insulation {
  padding: calc(100 * var(--rem)) 0;
  background: linear-gradient(135deg, #e8f1f7 0%, #f0f5f8 100%);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-insulation__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(60 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.reform-insulation__title {
  font-size: calc(32 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  margin-block-end: calc(36 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.reform-insulation__text {
  font-size: calc(18 * var(--rem));
  line-height: 1.9;
  color: #5a6c7d;
  margin-block-end: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.reform-insulation__benefits {
  display: grid;
  gap: calc(16 * var(--rem));
  margin-block-start: calc(32 * var(--rem));
  margin-block-end: calc(56 * var(--rem));
}

.reform-insulation__benefits-item {
  font-size: calc(18 * var(--rem));
  font-weight: 600;
  color: #0f204a;
  display: flex;
  align-items: center;
  gap: calc(12 * var(--rem));
  position: relative;
  padding-inline-start: calc(38 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.reform-insulation__benefits-item::before {
  content: "";
  width: calc(28 * var(--rem));
  height: calc(28 * var(--rem));
  background-image: url(../images/common/checkbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(10%);
}

.reform-insulation__image {
}

.reform-insulation__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 依頼の流れ */
.reform-flow {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-flow__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(60 * var(--rem)) calc(40 * var(--rem));
  margin-block-start: calc(64 * var(--rem));
  max-width: calc(1000 * var(--rem));
  margin-inline: auto;
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: calc(32 * var(--rem));
  }
  @media (width < 480px) {
    grid-template-columns: 1fr;
  }
}

.reform-flow__item {
  text-align: center;
  padding: calc(32 * var(--rem)) calc(24 * var(--rem));
  border: 2px solid var(--blue);
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.2);
  position: relative;
}

.reform-flow__item::after {
  content: "";
  position: absolute;
  width: calc(24 * var(--rem));
  height: calc(24 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  right: calc(-33 * var(--rem));
  top: 50%;
  z-index: -1;
  transform: translateY(-50%);
}

.reform-flow__item:last-child::after {
  display: none;
}

@media (width < 768px) {
  .reform-flow__item::after {
    right: auto;
    bottom: calc(-50 * var(--rem));
    top: auto;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }
}

.reform-flow__number {
  width: calc(60 * var(--rem));
  height: calc(60 * var(--rem));
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  font-size: calc(24 * var(--rem));
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -50px auto calc(20 * var(--rem));
}

.reform-flow__title {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(12 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.reform-flow__text {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
}
.reform-insulation__content {
  padding-inline-start: calc(80 * var(--rem));
  @media (max-width: 768px) {
    padding-inline: calc(15 * var(--rem));
  }
}

/* よくある質問 */
.reform-faq {
  padding: calc(100 * var(--rem)) 0;
  background: var(--base02);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-faq__list {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  margin-block-start: calc(64 * var(--rem));
}

.reform-faq__item {
  background-color: var(--white);
  border-radius: calc(8 * var(--rem));
  padding: calc(32 * var(--rem));
  margin-block-end: calc(24 * var(--rem));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  @media (width < 768px) {
    padding: calc(24 * var(--rem));
  }
}

.reform-faq__item:last-child {
  margin-block-end: 0;
}

.reform-faq__question {
  display: flex;
  gap: calc(16 * var(--rem));
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.reform-faq__q {
  width: calc(32 * var(--rem));
  height: calc(32 * var(--rem));
  border-radius: 50%;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  font-size: calc(18 * var(--rem));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reform-faq__answer {
  display: flex;
  gap: calc(16 * var(--rem));
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.reform-faq__a {
  width: calc(32 * var(--rem));
  height: calc(32 * var(--rem));
  border-radius: 50%;
  background-color: #ff9f40;
  color: var(--white);
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* CTAセクション */
.reform-cta {
  padding: calc(100 * var(--rem)) 0;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 50%, #0578c7 100%);
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.reform-cta__container {
  text-align: center;
  color: var(--white);
}

.reform-cta__title {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.reform-cta__text {
  font-size: calc(18 * var(--rem));
  line-height: 1.8;
  margin-block-end: calc(48 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    margin-block-end: calc(32 * var(--rem));
  }
}

.reform-cta .common__btn01 {
  justify-self: center;
  background: var(--white);
}

.reform-cta .common__btn01 a {
  color: #0559a3;
}
/* *************************************
   Metal Page - 建築金物製作
************************************* */

/* ファーストビュー */
.metal-fv {
  position: relative;
  min-height: calc(650 * var(--rem));
  margin-top: calc(80 * var(--rem));
  display: flex;
  align-items: center;
  @media (width < 768px) {
    min-height: calc(550 * var(--rem));
  }
}

.metal-fv__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.metal-fv__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.9) 0%,
    rgba(15, 32, 74, 0.5) 100%
  );
  @media (width < 768px) {
    background: rgba(15, 32, 74, 0.75);
  }
}

.metal-fv__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.metal-fv__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
  }
}

.metal-fv__inner {
  max-width: calc(900 * var(--rem));
}

.metal-fv__label {
  font-size: calc(16 * var(--rem));
  color: #e4d0ba;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.metal-fv__title {
  font-size: calc(56 * var(--rem));
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.metal-fv__catch {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  margin-block-end: calc(24 * var(--rem));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    margin-block-end: calc(16 * var(--rem));
  }
}

.metal-fv__lead {
  font-size: calc(18 * var(--rem));
  color: var(--white);
  line-height: 1.9;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  margin-block-end: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    margin-block-end: calc(32 * var(--rem));
  }
}

.metal-fv__buttons {
  display: flex;
  gap: calc(20 * var(--rem));
  @media (width < 768px) {
    flex-direction: column;
    gap: calc(16 * var(--rem));
  }
}

.metal-fv__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: calc(18 * var(--rem)) calc(40 * var(--rem));
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  border-radius: calc(4 * var(--rem));
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  background: linear-gradient(135deg, #ff9f40 0%, #ff7f00 100%);
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    padding: calc(16 * var(--rem)) calc(32 * var(--rem));
  }
}

.metal-fv__btn--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.metal-fv__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* 導入セクション */
.metal-intro {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.metal-intro__header {
  text-align: center;
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(40 * var(--rem));
  }
}

.metal-intro__badge {
  display: inline-block;
  background: linear-gradient(135deg, #ff9f40 0%, #ff7f00 100%);
  color: var(--white);
  font-size: calc(14 * var(--rem));
  font-weight: 700;
  padding: calc(8 * var(--rem)) calc(24 * var(--rem));
  border-radius: calc(20 * var(--rem));
  margin-block-end: calc(24 * var(--rem));
}

.metal-intro__title {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  color: #0f204a;
  line-height: 1.5;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.metal-intro__content {
  max-width: calc(1000 * var(--rem));
  margin-inline: auto;
}

.metal-intro__problem,
.metal-intro__solution {
  background-color: #f8f9fa;
  padding: calc(50 * var(--rem)) calc(40 * var(--rem));
  border-radius: calc(8 * var(--rem));
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    padding: calc(32 * var(--rem)) calc(24 * var(--rem));
    margin-block-end: calc(40 * var(--rem));
  }
}

.metal-intro__subtitle {
  font-size: calc(24 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(24 * var(--rem));
  display: flex;
  align-items: center;
  gap: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-end: calc(20 * var(--rem));
  }
}

.metal-intro__icon {
  width: calc(40 * var(--rem));
  height: calc(40 * var(--rem));
  border-radius: 50%;
  background-color: #ff7f00;
  color: var(--white);
  font-size: calc(24 * var(--rem));
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  @media (width < 768px) {
    width: calc(32 * var(--rem));
    height: calc(32 * var(--rem));
    font-size: calc(20 * var(--rem));
  }
}

.metal-intro__icon--check {
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
}

.metal-intro__text {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #5a6c7d;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.metal-intro__text:last-child {
  margin-block-end: 0;
}

.metal-intro__text strong {
  color: #0f204a;
  font-weight: 700;
}

/* 導入セクション画像 */
.metal-intro__images {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(40 * var(--rem));
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    flex-direction: column;
    gap: calc(24 * var(--rem));
    margin-block-end: calc(40 * var(--rem));
  }
}

.metal-intro__image-item {
  flex: 1;
  max-width: calc(400 * var(--rem));
}

.metal-intro__image-item img {
  width: 100%;
  border-radius: calc(8 * var(--rem));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.metal-intro__image-label {
  text-align: center;
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  margin-block-start: calc(16 * var(--rem));
  padding: calc(12 * var(--rem));
  border-radius: calc(4 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.metal-intro__image-label--before {
  background-color: #ffe0e0;
  color: #cc0000;
}

.metal-intro__image-label--after {
  background-color: #e0f4ff;
  color: #0066cc;
}

.metal-intro__arrow {
  font-size: calc(48 * var(--rem));
  color: #0559a3;
  font-weight: 800;
  @media (width < 768px) {
    transform: rotate(90deg);
    font-size: calc(32 * var(--rem));
  }
}

/* 選ばれる理由 */
.metal-reasons {
  padding: calc(100 * var(--rem)) 0;
  background: #e4e8eb;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.metal-reasons__list {
  display: grid;
  gap: calc(60 * var(--rem));
  margin-block-start: calc(64 * var(--rem));
  @media (width < 768px) {
    gap: calc(40 * var(--rem));
  }
}

.metal-reasons__item {
  background-color: var(--white);
  border-radius: calc(8 * var(--rem));
  padding: calc(40 * var(--rem));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  @media (width < 768px) {
    padding: calc(32 * var(--rem)) calc(24 * var(--rem));
  }
}

.metal-reasons__item-header {
  display: flex;
  align-items: center;
  gap: calc(24 * var(--rem));
  margin-block-end: calc(32 * var(--rem));
  padding-block-end: calc(24 * var(--rem));
  border-bottom: 2px solid #e0e5ea;
  @media (width < 768px) {
    flex-direction: column;
    align-items: flex-start;
    gap: calc(16 * var(--rem));
  }
}

.metal-reasons__number {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  font-style: italic;
  color: #ff9f40;
  flex-shrink: 0;
  line-height: 1;
}

.metal-reasons__title {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
  }
}

.metal-reasons__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: calc(40 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(24 * var(--rem));
  }
}

.metal-reasons__image {
  overflow: hidden;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
}

.metal-reasons__image img {
  width: 100%;
  height: auto;
  display: block;
}

.metal-reasons__text {
  font-size: calc(18 * var(--rem));
  line-height: 1.9;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

/* お見積り情報 */
.metal-inquiry {
  padding: calc(100 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.metal-inquiry__container {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
}

.metal-inquiry__lead {
  font-size: calc(20 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  text-align: center;
  margin-block: calc(32 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    margin-block: calc(32 * var(--rem));
  }
}

.metal-inquiry__list {
  display: grid;
  gap: calc(24 * var(--rem));
  margin-block: calc(64 * var(--rem));
  @media (width < 768px) {
    margin-block: calc(40 * var(--rem));
  }
}

.metal-inquiry__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(24 * var(--rem));
  background-color: #e4e8eb;
  padding: calc(24 * var(--rem));
  border-radius: calc(8 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    padding: calc(20 * var(--rem));
  }
}

.metal-inquiry__label {
  width: calc(48 * var(--rem));
  height: calc(48 * var(--rem));
  border-radius: 50%;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  font-size: calc(20 * var(--rem));
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  @media (width < 768px) {
    width: calc(40 * var(--rem));
    height: calc(40 * var(--rem));
    font-size: calc(18 * var(--rem));
  }
}

.metal-inquiry__title {
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(4 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.metal-inquiry__example {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(13 * var(--rem));
  }
}

.metal-inquiry__note {
}

.metal-inquiry__note p {
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}
.hardware-form-text {
  text-align: center;
  padding-block-start: calc(20 * var(--rem));
}

/* よくある質問 */
.metal-faq {
  padding: calc(100 * var(--rem)) 0;
  background: #f5f5f5;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.metal-faq__list {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  margin-block-start: calc(64 * var(--rem));
}

.metal-faq__item {
  background-color: var(--white);
  border-radius: calc(8 * var(--rem));
  padding: calc(32 * var(--rem));
  margin-block-end: calc(24 * var(--rem));
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  @media (width < 768px) {
    padding: calc(24 * var(--rem));
  }
}

.metal-faq__item:last-child {
  margin-block-end: 0;
}

.metal-faq__question {
  display: flex;
  gap: calc(16 * var(--rem));
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.metal-faq__q {
  width: calc(32 * var(--rem));
  height: calc(32 * var(--rem));
  border-radius: 50%;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  font-size: calc(18 * var(--rem));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metal-faq__answer {
  display: flex;
  gap: calc(16 * var(--rem));
  font-size: calc(16 * var(--rem));
  line-height: 1.8;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.metal-faq__a {
  width: calc(32 * var(--rem));
  height: calc(32 * var(--rem));
  border-radius: 50%;
  background: linear-gradient(135deg, #ff9f40 0%, #ff7f00 100%);
  color: var(--white);
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metal-intro__text {
  font-size: calc(20 * var(--rem));
  line-height: 2;
  font-weight: 600;
  color: #2c2c2c;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}
strong {
  color: var(--black);
}
.wpcf7-form-control-wrap {
  margin-inline-end: calc(5 * var(--rem));
}
/* *************************************
   Works Archive - 施工事例一覧
************************************* */

/* ファーストビュー */
.works-archive-fv {
  background-image: url(../images/interior/interior06.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  margin-top: calc(110 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
    margin-top: calc(80 * var(--rem));
  }
}
.works-archive-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.9) 0%,
    rgba(15, 32, 74, 0.5) 100%
  );
}
.works-archive-fv__content {
  position: relative;
  z-index: 1;
}
.works-archive-fv__inner {
  text-align: center;
  color: var(--white);
}

.works-archive-fv__label {
  font-size: calc(16 * var(--rem));
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-block-end: calc(16 * var(--rem));
  color: #e4d0ba;
}

.works-archive-fv__title {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(32 * var(--rem));
  }
}

.works-archive-fv__lead {
  font-size: calc(18 * var(--rem));
  line-height: 1.8;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

/* カテゴリーフィルター */
.works-archive-filter {
  padding: calc(40 * var(--rem)) 0;
  background-color: #f8f9fa;
  @media (width < 768px) {
    padding: calc(24 * var(--rem)) 0;
  }
}

.works-archive-filter__list {
  display: flex;
  justify-content: center;
  gap: calc(16 * var(--rem));
  flex-wrap: wrap;
  @media (max-width: 768px) {
    gap: calc(12 * var(--rem));
    justify-content: flex-start;
  }
}

.works-archive-filter__item {
  padding: calc(5 * var(--rem)) calc(32 * var(--rem));
  font-size: calc(16 * var(--rem));
  font-weight: 600;
  color: #5a6c7d;
  background-color: var(--white);
  transition:
    background-color 0.3s,
    color 0.3s;
  @media (width < 768px) {
    padding: calc(10 * var(--rem)) calc(24 * var(--rem));
    font-size: calc(14 * var(--rem));
  }
}

.works-archive-filter__item:hover,
.works-archive-filter__item.is-active {
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
}

/* 施工事例グリッド */
.works-archive-list {
  padding: calc(80 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.works-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.works-archive-card {
  background-color: var(--white);
  border-radius: calc(8 * var(--rem));
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.works-archive-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.works-archive-card__link {
  display: block;
}

.works-archive-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.works-archive-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.works-archive-card:hover .works-archive-card__image img {
  transform: scale(1.05);
}

.works-archive-card__content {
  padding: calc(24 * var(--rem));
}

.works-archive-card__meta {
  display: flex;
  align-items: center;
  gap: calc(12 * var(--rem));
  margin-block-end: calc(16 * var(--rem));
  flex-wrap: wrap;
}

.works-archive-card__category {
  display: inline-block;
  padding: calc(4 * var(--rem)) calc(12 * var(--rem));
  font-size: calc(12 * var(--rem));
  font-weight: 600;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  border-radius: calc(4 * var(--rem));
}

.works-archive-card__date {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
}

.works-archive-card__title {
  font-size: calc(18 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  line-height: 1.5;
  margin-block-end: calc(12 * var(--rem));
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.works-archive-card__excerpt {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
  line-height: 1.8;
}

/* ページネーション */
.works-archive-pagination {
  margin-top: calc(40 * var(--rem));
}

.works-archive-pagination__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: calc(8 * var(--rem));
  list-style: none;
  padding: 0;
  margin: 0;
}

.works-archive-pagination__item a,
.works-archive-pagination__item span {
  display: grid;
  place-items: center;
  min-width: calc(40 * var(--rem));
  height: calc(40 * var(--rem));
  padding-inline: calc(12 * var(--rem));
  border-radius: calc(999 * var(--rem));
  font-weight: 700;
  font-size: calc(14 * var(--rem));
  text-decoration: none;
  border: 1px solid rgba(15, 32, 74, 0.15);
  background: var(--white);
  color: #0f204a;
  transition:
    background-color 0.2s,
    border-color 0.2s;
}

/* 現在ページ（paginate_linksは span.current を出す） */
.works-archive-pagination__item .current {
  background: #0559a3;
  border-color: #0559a3;
  color: #fff;
}

/* … の見た目 */
.works-archive-pagination__item .dots {
  border: 0;
  min-width: calc(24 * var(--rem));
  background: transparent;
  padding: 0;
}

/* hover */
.works-archive-pagination__item a:hover {
  background: #e8f1f7;
  border-color: rgba(5, 89, 163, 0.35);
}

/* *************************************
   Works Single - 施工事例詳細
************************************* */

/* ファーストビュー */
.works-single-fv {
  background-image: url(../images/top/wood02.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  margin-top: calc(110 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
    margin-top: calc(80 * var(--rem));
  }
}
.works-single-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.5) 0%,
    rgba(15, 32, 74, 0.3) 100%
  );
}

.works-single-fv__inner {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.works-single-fv__meta {
  display: flex;
  align-items: center;
  gap: calc(16 * var(--rem));
  margin-block-end: calc(24 * var(--rem));
  flex-wrap: wrap;
}

.works-single-fv__category {
  display: inline-block;
  padding: calc(6 * var(--rem)) calc(16 * var(--rem));
  font-size: calc(14 * var(--rem));
  font-weight: 600;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  border-radius: calc(4 * var(--rem));
}

.works-single-fv__date {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
  font-weight: 600;
}

.works-single-fv__title {
  font-size: calc(36 * var(--rem));
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  text-align: center;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

/* 本文コンテンツ */
.works-single-content {
  padding: calc(80 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.works-single-article {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
}

.works-single-body {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #0f204a;
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

.works-single-body p {
  margin-block-end: calc(32 * var(--rem));
}

.works-single-body img {
  max-width: 100%;
  height: auto;
  border-radius: calc(8 * var(--rem));
  margin-block: calc(40 * var(--rem));
}

.works-single-body h2 {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block: calc(60 * var(--rem)) calc(32 * var(--rem));
  padding-block-end: calc(16 * var(--rem));
  border-bottom: 2px solid #0559a3;
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
  }
}

.works-single-body h3 {
  font-size: calc(24 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block: calc(40 * var(--rem)) calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

/* 物件情報 */
.works-single-info {
  margin-block-start: calc(60 * var(--rem));
  padding: calc(40 * var(--rem));
  background-color: #f8f9fa;
  border-radius: calc(8 * var(--rem));
  @media (width < 768px) {
    padding: calc(32 * var(--rem)) calc(24 * var(--rem));
  }
}

.works-single-info__title {
  font-size: calc(24 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.works-single-info__list {
  display: grid;
  gap: calc(20 * var(--rem));
}

.works-single-info__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: calc(24 * var(--rem));
  padding-block-end: calc(20 * var(--rem));
  border-bottom: 1px solid #e0e5ea;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--rem));
  }
}

.works-single-info__item:last-child {
  border-bottom: none;
  padding-block-end: 0;
}

.works-single-info__item dt {
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  color: #0f204a;
}

.works-single-info__item dd {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
}

/* 前後ナビゲーション */
.works-single-nav {
  padding: calc(80 * var(--rem)) 0;
  background-color: #f8f9fa;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.works-single-nav__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(32 * var(--rem));
  max-width: 680px;
  margin: 30px auto;
  text-align: center;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(16 * var(--rem));
  }
}

.works-single-nav__link {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: calc(12 * var(--rem));
  padding: calc(12 * var(--rem));
  background-color: #e4e8eb;
  transition: background-color 0.3s;
}

.works-single-nav__link:not(.works-single-nav__link--disabled):hover {
  background-color: #e8f1f7;
}

.works-single-nav__link--disabled {
  opacity: 0.3;
  cursor: default;
}

.works-single-nav__label {
  font-size: calc(14 * var(--rem));
  font-weight: 600;
  color: #0559a3;
}

.works-single-nav__title {
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  color: #0f204a;
}

.works-single-nav__back {
  text-align: center;
}

/* 関連記事 */
.works-single-related {
  padding: calc(80 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) 0;
  }
}

.works-single-related__title {
  font-size: calc(28 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  text-align: center;
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
    margin-block-end: calc(40 * var(--rem));
  }
}

.works-single-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

/*************************************
   Contact - お問い合わせ
************************************* */
.contact__inner {
  padding-block: calc(56 * var(--rem));
}
.contact-text {
  text-align: center;
  padding-block-end: calc(32 * var(--rem));
}
/*************************************
    privacy-policy - プライバシーポリシー
************************************* */
/* ファーストビュー */
.privacy-fv {
  background-image: url(../images/top/mv02.webp);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  padding: calc(80 * var(--rem)) calc(40 * var(--rem));
  margin-top: calc(110 * var(--rem));
  @media (width < 768px) {
    padding: calc(60 * var(--rem)) calc(24 * var(--rem));
    margin-top: calc(80 * var(--rem));
  }
}
.privacy-fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 32, 74, 0.9) 0%,
    rgba(15, 32, 74, 0.5) 100%
  );
}

.privacy-fv__inner {
  text-align: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.privacy-fv__label {
  font-size: calc(16 * var(--rem));
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-block-end: calc(16 * var(--rem));
  color: #e4d0ba;
}

.privacy-fv__title {
  font-size: calc(48 * var(--rem));
  font-weight: 800;
  @media (width < 768px) {
    font-size: calc(32 * var(--rem));
  }
}

/* コンテンツ */
.privacy-content {
  padding: calc(80 * var(--rem)) 0;
  @media (width < 768px) {
    padding: calc(32 * var(--rem)) 0;
  }
}

.privacy-content__container {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
}

.privacy-content__intro {
  font-size: calc(18 * var(--rem));
  line-height: 2;
  color: #0f204a;
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
    padding: calc(24 * var(--rem));
    margin-block-end: calc(24 * var(--rem));
  }
}

/* セクション */
.privacy-section {
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(40 * var(--rem));
  }
}

.privacy-section:last-child {
  margin-block-end: 0;
}

.privacy-section__title {
  display: flex;
  align-items: center;
  gap: calc(20 * var(--rem));
  font-size: calc(24 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  margin-block-end: calc(24 * var(--rem));
  padding-block-end: calc(16 * var(--rem));
  border-bottom: 2px solid #0559a3;
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
    gap: calc(16 * var(--rem));
    margin-block-end: calc(20 * var(--rem));
  }
}

.privacy-section__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(48 * var(--rem));
  height: calc(48 * var(--rem));
  border-radius: 50%;
  background: linear-gradient(135deg, #0f204a 0%, #0559a3 100%);
  color: var(--white);
  font-size: calc(20 * var(--rem));
  font-weight: 800;
  flex-shrink: 0;
  @media (width < 768px) {
    width: calc(40 * var(--rem));
    height: calc(40 * var(--rem));
    font-size: calc(18 * var(--rem));
  }
}

.privacy-section__content {
  font-size: calc(16 * var(--rem));
  line-height: 2;
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.privacy-section__content p {
  margin-block-end: calc(24 * var(--rem));
  @media (width < 768px) {
    margin-block-end: calc(0 * var(--rem));
  }
}

.privacy-section__content p:last-child {
  margin-block-end: 0;
}

/* リスト */
.privacy-list {
  margin-block: calc(24 * var(--rem));
  padding-inline-start: calc(32 * var(--rem));
}

.privacy-list li {
  position: relative;
  padding-inline-start: calc(24 * var(--rem));
  margin-block-end: calc(16 * var(--rem));
  line-height: 1.8;
}

.privacy-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #0559a3;
  font-size: calc(12 * var(--rem));
}

.privacy-list li:last-child {
  margin-block-end: 0;
}

/* 注釈 */
.privacy-note {
  margin-block-start: calc(24 * var(--rem));
  padding: calc(16 * var(--rem)) calc(20 * var(--rem));
  background-color: #f8f9fa;
  border-radius: calc(4 * var(--rem));
  font-size: calc(14 * var(--rem));
  color: #0f204a;
  font-weight: 600;
}

/* お問い合わせ窓口 */
.privacy-contact {
  margin-block-start: calc(32 * var(--rem));
  @media (width < 768px) {
    padding: calc(24 * var(--rem));
    margin-block-start: calc(0 * var(--rem));
  }
}

.privacy-contact__list {
  display: grid;
  gap: calc(20 * var(--rem));
  @media (width < 768px) {
    gap: calc(5 * var(--rem));
  }
}

.privacy-contact__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: calc(20 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(0 * var(--rem));
  }
}

.privacy-contact__item:last-child {
  border-bottom: none;
  padding-block-end: 0;
}

.privacy-contact__item dt {
  font-size: calc(16 * var(--rem));
  font-weight: 700;
  color: #0f204a;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.privacy-contact__item dd {
  font-size: calc(16 * var(--rem));
  color: #5a6c7d;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

/* フッター */
.privacy-footer {
  margin-block-start: calc(60 * var(--rem));
  padding-block-start: calc(40 * var(--rem));
  border-top: 2px solid #e0e5ea;
  text-align: right;
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
    padding-block-start: calc(32 * var(--rem));
  }
}

.privacy-footer__date {
  font-size: calc(14 * var(--rem));
  color: #5a6c7d;
}
/* *************************************
お知らせページ
************************************* */
.news-archive {
  padding-block: calc(80 * var(--rem));
  background-color: var(--white);
  @media (width < 768px) {
    padding-block: calc(60 * var(--rem));
  }
}

.news-filter {
  display: flex;
  gap: calc(16 * var(--rem));
  justify-content: center;
  flex-wrap: wrap;
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    gap: calc(12 * var(--rem));
    margin-block-end: calc(40 * var(--rem));
  }
}

.news-filter__btn {
  padding: calc(12 * var(--rem)) calc(32 * var(--rem));
  font-size: calc(16 * var(--rem));
  font-weight: 500;
  color: var(--sub);
  background-color: var(--white);
  border: 2px solid var(--sub);
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
  white-space: nowrap;
  @media (width < 768px) {
    padding: calc(10 * var(--rem)) calc(24 * var(--rem));
    font-size: calc(14 * var(--rem));
  }
}

@media (any-hover: hover) {
  .news-filter__btn:hover {
    background-color: var(--sub);
    color: var(--white);
  }
}

.news-filter__btn.is-active {
  background-color: var(--sub);
  color: var(--white);
}

.news-list {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
}

.news-list__item {
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

.news-list__item:first-child {
  border-top: 1px solid #e0e0e0;
}

@media (any-hover: hover) {
  .news-list__item:hover {
    background-color: #f9f9f9;
  }
}

.news-list__item.is-hidden {
  display: none;
}

.news-list__link {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 0 calc(24 * var(--rem));
  align-items: center;
  padding-block: calc(28 * var(--rem));
  padding-inline: calc(20 * var(--rem));
  color: #333;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: calc(10 * var(--rem)) 0;
    padding-block: calc(20 * var(--rem));
    padding-inline: calc(16 * var(--rem));
  }
}

.news-list__date {
  font-size: calc(16 * var(--rem));
  font-weight: 400;
  font-family: "Arial", sans-serif;
  color: #999;
  letter-spacing: 0.05em;
  white-space: nowrap;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.news-list__category {
  display: inline-block;
  font-size: calc(14 * var(--rem));
  font-weight: 500;
  color: var(--white);
  background-color: var(--sub);
  padding: calc(6 * var(--rem)) calc(16 * var(--rem));
  white-space: nowrap;
  width: fit-content;
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
    padding: calc(4 * var(--rem)) calc(12 * var(--rem));
  }
}

.news-list__title {
  font-size: calc(16 * var(--rem));
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  transition: color 0.3s ease;

  @media (width < 768px) {
    font-size: calc(15 * var(--rem));
  }
}

@media (any-hover: hover) {
  .news-list__link:hover .news-list__title {
    color: var(--sub);
  }
}

.news-list__empty {
  font-size: calc(16 * var(--rem));
  color: #999;
  text-align: center;
  padding-block: calc(60 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding-block: calc(40 * var(--rem));
  }
}

.news-pagination {
  max-width: calc(900 * var(--rem));
  margin-inline: auto;
  margin-block-start: calc(60 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(40 * var(--rem));
  }
}

.news-pagination ul {
  display: flex;
  justify-content: center;
  gap: calc(8 * var(--rem));
  flex-wrap: wrap;
}

.news-pagination li {
  list-style: none;
}

.news-pagination a,
.news-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: calc(44 * var(--rem));
  height: calc(44 * var(--rem));
  padding-inline: calc(12 * var(--rem));
  font-size: calc(15 * var(--rem));
  color: #333;
  background-color: var(--white);
  border: 1px solid #e0e0e0;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  @media (width < 768px) {
    min-width: calc(40 * var(--rem));
    height: calc(40 * var(--rem));
    font-size: calc(14 * var(--rem));
  }
}

@media (any-hover: hover) {
  .news-pagination a:hover {
    background-color: var(--sub);
    color: var(--white);
    border-color: var(--sub);
  }
}

.news-pagination .current {
  background-color: var(--sub);
  color: var(--white);
  border-color: var(--sub);
  font-weight: bold;
}
/*シングル新着情報*/
.post-content {
  padding-block-start: calc(230 * var(--rem));
  padding-block-end: calc(80 * var(--rem));
  @media (width < 768px) {
    padding-block-start: calc(150 * var(--rem));
    padding-block-end: calc(60 * var(--rem));
  }
}
.post-title {
  font-size: calc(28 * var(--rem));
  font-weight: bold;
  text-align: center;
  color: #333;
  margin: 0 auto 40px;
  width: fit-content;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    margin-block-end: calc(30 * var(--rem));
  }
}
.post-meta {
  padding-bottom: 20px;
}
.post-date {
  font-size: calc(16 * var(--rem));
  color: #999;
  text-align: center;
  padding-bottom: 60px;
  margin-block-end: calc(60 * var(--rem));
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    margin-block-end: calc(40 * var(--rem));
  }
}
.post-single {
  max-width: 980px;
  margin: 0 auto;
}
.post-back-btn a {
  display: block;
  width: fit-content;
  margin: 60px auto 0;
  padding: calc(12 * var(--rem)) calc(32 * var(--rem));
  background-color: var(--sub);
  color: var(--white);
  font-size: calc(16 * var(--rem));
  font-weight: 500;
  text-align: center;
  border-radius: calc(4 * var(--rem));
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding: calc(10 * var(--rem)) calc(24 * var(--rem));
    margin-block-start: calc(40 * var(--rem));
  }
}
.preparation {
  padding-block: calc(200 * var(--rem));
}
.preparation-text {
  text-align: center;
  position: relative;
  color: var(--blue);
}
.preparation-textarea {
  font-size: calc(28 * var(--rem));
  line-height: 3;
}
.preparation-text::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: 0;
  left: 50%;
  width: calc(400 * var(--rem));
  height: calc(400 * var(--rem));
  background-image: url(../images/common/logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-50%, -25%);
  opacity: 0.2;
  z-index: -1;
}
