@charset "UTF-8";

/* ================================================
RESET DEFAULT STYLES
================================================ */
* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p,
dd {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  all: unset;
}

img {
  object-fit: cover;
  vertical-align: bottom;
}

table {
  border-collapse: collapse;
  border: none;
  border-spacing: 0;

  th,
  td {
    vertical-align: top;
    font-weight: normal;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  input {
    padding: 0;
    margin: 0;
  }
}

/* ================================================
COLOR STYLES
================================================ */
:root {
  --body-color: #f4f4f4;
  --text-color: #333;
  --white-color: #fff;
  --brand-color: rgb(219 40 40);
  --placeholder-color: #ccc;
  --search-color: rgb(230 75 54);
  --search-bg-color: rgba(148 125 123 / 0.9);
  --nav-color: rgba(234 106 115 / 0.9);
  --breadcrumbs-bg-color: #f7f1f1;
  --breadcrumbs-bd-color: #ddd;
  --breadcrumbs-spot-color: rgb(187 113 148);
  --works-bg-color: rgba(238 181 185 / 0.6);
  --swiper-btn-color: #ffffffbf;
  --swiper-pagination-bullet-color: #bbb;
  --swiper-pagination-bullet-active-color: rgba(255 0 0 / 0.8);
  --cat-color: rgb(230 75 54);
  --cat-angle-color: rgba(205 205 190 / 0.98);
  --desc-color: rgba(244 241 238 / 0.9);
  --desc2-color: #ccc;
  --about-color: rgb(247 232 232);
  --contact-color: rgb(250 234 235);
  --footer-color: rgba(148 125 123 / 0.85);
  --clear-color: rgba(255 255 255 / 0.85);
  --disabled-color: #b3b3b3;
  --more-btn-color: #f7f1f1;
  --side-btn-color: rgba(51 51 51 / 0.8);
  --service-bg-color: rgb(248 225 226);
  --service-ttl-color: rgb(233 88 100);
  --pushed-btn-color: rgb(189, 62, 45);
  --input-outline-color: rgba(255 0 0 / 0.8);
  --separator1-color: #C5C5C5;
  --separator2-color: #da4e6a;
  --modal-bg-color: rgba(0 0 0 / 0.8);
}

.color-wh {
  color: var(--white-color);
}

/* ================================================
GLOBAL STYLES
================================================ */
html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", Helvetica, Arial, "游ゴシック", "YuGothic", sans-serif;
  color: var(--text-color);
  background-color: var(--body-color);
}

/* ================================================
FONT STYLES
================================================ */
/* ITALIC FONT */
.logo-text,
.sec-ttl,
.sub-sec-ttl-01,
.sub-sec-ttl-02 {
  font-family: "Orbitron";
  font-style: italic;
  text-indent: 0.05em;
}

/* TEL FONT */
.tel-btn {
  font-family: "Asta Sans", sans-serif;
}

/* CURSIVE */
.cursive {
  font-family: "Playwrite DK Uloopet", serif;
}

/* HANDWRITTEN STYLE FONT */
.feature-desc {
  font-family: "Zen Kurenaido", sans-serif;
}

/* ================================================
LAYOUT
================================================ */
.mw {
  max-width: 1320px;
  margin-inline: auto;
}

.sec-container {
  padding: 80px 24px;
  margin-inline: auto;
}

/* ================================================
LOGO
================================================ */
.logo {
  .logo-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;

    .logo-image {
      vertical-align: bottom;
    }

    .logo-text {
      display: inline-block;
      font-size: 1.5rem;
      line-height: 1.0;
    }
  }
}

/* ================================================
VIEW MORE BTN
/* ================================================ */
.more-btn {
  font-size: 0.875rem;
  text-align: center;
  margin-top: 80px;

  .more-btn-link {
    display: block;
    width: 100%;
    max-width: 210px;
    border: 1px solid var(--text-color);
    background-color: var(--more-btn-color);
    padding: 14px 0;
    margin-inline: auto;
    position: relative;
    transition: all 0.3s;

    &::before {
      content: "";
      width: 28px;
      height: 1px;
      background-color: var(--text-color);
      position: absolute;
      top: 50%;
      right: 24px;
    }

    &::after {
      content: "";
      width: 8px;
      height: 1px;
      background-color: var(--text-color);
      position: absolute;
      top: calc(50% - 2px);
      right: 23px;
      transform: rotate(35deg);
    }

    &:hover {
      color: var(--white-color);
      background-color: var(--cat-color);
      border-color: var(--cat-color);
    }

    &:hover::before,
    &:hover::after {
      background-color: var(--white-color);
    }

    &:hover::before {
      right: 0;
    }

    &:hover::after {
      right: -1px;
    }
  }
}

/* ================================================
CONTACT BTN
/* ================================================ */
.contact-btn {
  width: 300px;
  font-size: 1.0rem;
  font-weight: bold;
  letter-spacing: 0.1rem;

  .tel-btn {
    width: 100%;

    .tel-btn-link {
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 0 8px;

      .tel-btn-desc {
        .number {
          width: 100%;
          height: 100%;
          display: flex;
          justify-content: center;
          align-items: center;

          &::before {
            font-size: 1.0rem;
            margin-right: 4px;
          }
        }
      }

      .reception {
        font-size: 0.75rem;
        font-weight: normal;
        text-align: center;
        margin-top: 8px;
      }
    }
  }

  .mail-btn {
    width: 100%;
    background-color: var(--swiper-btn-color);
    margin-top: 32px;

    .mail-btn-link {
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 0 24px;
      position: relative;
      transition: all 0.3s;

      &::before {
        content: "";
        position: absolute;
        bottom: -6px;
        right: -6px;
        width: 100%;
        height: 1px;
        background-color: var(--white-color);
        transition: all 0.3s ease;
      }

      &::after {
        content: "";
        position: absolute;
        top: 6px;
        right: -6px;
        width: 1px;
        height: 100%;
        background-color: var(--white-color);
        transition: all 0.3 s ease;
      }

      .mail-btn-desc {
        display: flex;
        justify-content: space-between;
        align-items: center;

        &::before {
          margin-right: 4px;
        }
      }
    }
  }

  .number,
  .mail-btn-desc {
    display: flex;
    align-items: center;
  }

  .number::before,
  .mail-btn-desc::before {
    font-family: Material Icons;
    font-style: normal;
  }

  .number::before {
    content: "\e325";
  }

  .mail-btn-desc::before {
    content: "\e158";
  }

  .tel-btn-link,
  .mail-btn-link {
    transition: color 0.3s, background-color 0.3s;
  }

  .tel-btn-link:hover,
  .mail-btn-link:hover {
    color: var(--white-color);
    background-color: var(--cat-color);
    border: none;
  }

  .mail-btn-link:hover {
    text-decoration: none;
  }

  .mail-btn-link:hover::before {
    width: 0%;
  }

  .mail-btn-link:hover::after {
    height: 0%;
  }

  .tel-btn-link:hover .material-symbols-outlined,
  .mail-btn-link:hover .material-symbols-outlined {
    transform: translateX(8px);
  }

  .material-symbols-outlined {
    transition: transform 0.3s;
  }
}

/* ================================================
SECTION TITLE STYLES
================================================ */
/* トップページタイトル */
.sec-ttl {
  text-align: center;
  letter-spacing: 0.1rem;

  .ja-ttl {
    font-size: 0.75rem;
  }

  .en-ttl {
    font-size: 1.5rem;
    margin-top: 8px;
  }

  &::after {
    display: inline-block;
    content: "";
    width: 56px;
    height: 1px;
    background-color: var(--text-color);
    margin-top: 24px;
  }
}

.color-wh::after {
  background-color: var(--white-color);
}

/* ABOUT SECTION サブタイトル */
.sub-ttl {
  .ja-ttl {
    font-size: 0.625rem;
  }

  .en-ttl {
    font-size: 1.0rem;
  }

  &::after {
    display: none;
  }
}

/* 下層ページタイトル */
.sub-sec-ttl-01,
.sub-sec-ttl-02 {
  text-align: center;
  letter-spacing: 0.1rem;

  .ja-ttl {
    font-size: 0.75rem;
  }

  .en-ttl {
    font-size: 1.25rem;
    margin-top: 8px;
  }

  &::after {
    display: inline-block;
    content: "";
    width: 56px;
    height: 1px;
    background-color: var(--text-color);
    margin-top: 24px;
  }

  &.color-wh::after {
    background-color: var(--white-color);
  }
}

/* ================================================
AOS ANIMATION 余白の制御
================================================ */
.catchphrase,
.works,
.news,
.service,
.feature,
.about,
.contact {
  overflow-x: hidden;
  overflow-y: hidden;
}

/* ================================================
背景画像固定
================================================ */
.bg-img-clip {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  clip-path: inset(0);
  z-index: -1;
}

.bg-img-fixed {
  position: -webkit-fixed;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
}


/* ================================================
HEADER
================================================ */
.header {
  padding-bottom: 88px;
  position: relative;

  .header-top {
    width: 100%;
    background-color: var(--white-color);
    position: fixed;
    z-index: 9999;
  }

  .h-container {
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;

    .logo {
      font-size: 0;

      .logo-text {
        color: var(--brand-color);
      }
    }
  }
}

/* ------------------------------------------
HEADER NAV MENU
------------------------------------------ */
.header-nav {
  height: 480px;
  display: flex;
  flex-direction: column;
  z-index: 99;

  .header-nav-menu {
    color: var(--white-color);
    background-color: var(--nav-color);

    li {
      line-height: 3.0;
      letter-spacing: 0.1rem;
      border-bottom: 1px solid var(--white-color);

      a {
        display: block;
        padding-left: 24px;
        transition: all 0.3s ease;

        &:hover {
          color: var(--brand-color);
          background-color: var(--swiper-btn-color);
        }
      }
    }
  }

  .search-container {
    flex: 1;
    background-color: var(--search-bg-color);
    position: relative;
  }
}

#modal-menu {
  width: 100%;
  position: fixed;
  top: -280px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;

  &.open {
    top: 88px;
    opacity: 1;
    visibility: visible;
  }
}

/* ------------------------------------------
SEARCH FORM
------------------------------------------ */
.search-form {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;

  & .search-field,
  & .search-submit {
    appearance: button;
  }

  label {
    .search-field {
      width: 100%;
      height: 40px;
      background-color: var(--white-color);
      border: none;
      font-size: 1.0rem;
      outline: none;
      padding: 5px 15px;
      box-sizing: border-box;

      &::placeholder {
        color: var(--placeholder-color);
      }
    }

    input[type="search"]:focus {
      box-shadow: 0 0 5px var(--search-color);
    }
  }


  .search-submit {
    width: 50px;
    height: 40px;
    border: none;
    color: var(--white-color);
    background-color: var(--search-color);
    cursor: pointer;
    transition: background-color 0.3s;
  }
}

.search-submit:hover {
  opacity: 0.8;
}

/* ------------------------------------------
HAMBURGER MENU
------------------------------------------ */
#burger {
  width: 24px;
  height: 16px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  z-index: 99;

  & span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: transform 0.5s ease, opacity 0.3s ease;

    &:nth-of-type(1) {
      top: 0;
    }

    &:nth-of-type(2) {
      top: 50%;
    }

    &:nth-of-type(3) {
      top: 100%;
    }
  }

  &.active span:nth-of-type(1) {
    transform: translateY(8px) rotate(-135deg);
  }

  &.active span:nth-of-type(2) {
    opacity: 0;
  }

  &.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(135deg);
  }
}

/* ------------------------------------------
BREADCRUMBS(パンくずリスト)
------------------------------------------ */
.guide-container {
  width: 100%;
  height: 52px;
  background-color: var(--breadcrumbs-bg-color);
  border-top: 1px solid var(--breadcrumbs-bd-color);
  border-bottom: 1px solid var(--breadcrumbs-bd-color);

  .breadcrumbs {
    font-size: 0.8rem;
    line-height: 52px;
    padding: 0 24px;
    margin: 0 auto;

    span {
      color: var(--breadcrumbs-spot-color);
      position: relative;

      &+& {
        margin-left: 36px;
      }

      &.current-item {
        color: var(--text-color);
      }

      &::before {
        position: absolute;
        content: "";
        top: calc(50% - 4px);
        left: -26px;
        width: 8px;
        height: 8px;
        transform: rotate(45deg);
        border-top: 2px solid var(--text-color);
        border-right: 2px solid var(--text-color);
      }

      &:first-child::before {
        content: none;
      }
    }
  }
}

/* ------------------------------------------
HERO AREA
------------------------------------------ */
.hero {
  position: relative;

  .hero-img {
    .key-visual {
      height: 480px;
      object-fit: cover;
      vertical-align: bottom;
    }
  }

  .catchphrase {
    font-style: italic;
    text-align: center;
    color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;

    .j-catch {
      font-size: 2.2rem;
      font-weight: bold;
      line-height: 1.6;
      letter-spacing: 0.6rem;
      text-align: left;
    }

    .e-catch {
      font-size: 0.875rem;
      line-height: 1.4;
      letter-spacing: 0.1rem;
      margin-top: 24px;
    }

    .sp {
      display: block;
    }
  }
}

/* ================================================
WORKS
================================================ */
.main {
  .works {
    position: relative;

    &::before {
      content: "";
      width: 100%;
      height: 100%;
      background-color: var(--body-color);
      position: absolute;
      top: 0;
      z-index: -1;
    }

    &:after {
      content: "";
      width: 100%;
      height: 54%;
      background-color: var(--contact-color);
      position: absolute;
      top: 46%;
      z-index: -1;
    }
  }

  /* ------------------------------------------
  SWAIPER
  ------------------------------------------ */
  .swiper-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: 80px;
    position: relative;

    .swiper {
      .swiper-wrapper {
        width: 100%;
        overflow: visible !important;

        .swiper-slide {
          img {
            width: 100%;
            height: auto;
            object-fit: cover;
          }

          .works-ttl {
            font-size: 0.75rem;
            font-weight: normal;
            text-align: center;
            line-height: 1.6;
            letter-spacing: 0.1rem;
            margin-top: 8px;
          }
        }
      }

      .swiper-button-prev,
      .swiper-button-next {
        top: calc(50% - 22px);
      }

      .swiper-button-prev:after,
      .swiper-button-next:after {
        font-family: "Font Awesome 6 Free";
        font-size: 1.5rem;
        font-weight: 900;
        color: var(--swiper-btn-color);
      }

      .swiper-button-prev:after {
        content: "\f137";
      }

      .swiper-button-next::after {
        content: "\f138";
      }
    }

    .swiper-pagination {
      position: relative;
      margin-top: 40px;
    }

    .swiper-pagination-bullet {
      background: var(--swiper-pagination-bullet-color);
      opacity: 1;
      margin: 0 4px;
    }

    .swiper-pagination-bullet-active {
      background-color: var(--swiper-pagination-bullet-active-color);
      opacity: 1;
    }

    .more-btn {
      margin-top: 40px;
    }
  }
}

/* ================================================
NEWS
================================================ */
.news {
  position: relative;

  .bg-img-fixed {
    background: linear-gradient(135deg, rgba(218 199 199 / 0.8), rgba(0 0 0 / 0.8)), url("../images/bg-img/news-bg.JPG") 50% 70%/cover no-repeat;
  }
}

.news-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 32px;
  margin-top: 80px;

  .news-item {
    width: calc((100% - 16px) / 2);
    filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6));
    position: relative;

    .news-item-link {
      display: flex;
      flex-direction: column;
      height: 100%;

      &:hover {
        .news-item-img img {
          transform: scale(1.05);
        }
      }

      .news-item-img {
        overflow: hidden;

        img {
          width: 100%;
          height: 180px;
          transition: transform 0.3s ease;
        }
      }

      .news-item-text {
        display: flex;
        flex-direction: column;
        flex: 1;
        background-color: var(--breadcrumbs-bg-color);
        background: linear-gradient(-45deg,
            transparent 10px,
            var(--breadcrumbs-bg-color) 10px,
            var(--breadcrumbs-bg-color) 100%);
        padding: 16px;
        position: relative;

        &::after {
          content: "";
          position: absolute;
          bottom: 0;
          right: 0;
          width: 0;
          height: 0;
          border: 7px solid var(--desc2-color);
          border-right-color: transparent;
          border-bottom-color: transparent;
        }
      }

      .desc-container {
        flex: 1;
        letter-spacing: 0.1rem;
        margin-top: 60px;

        .news-ttl {
          font-size: 0.8rem;
          margin-top: 8px;
        }

        .text-overflow {
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          line-height: 1.5rem;
          max-height: 4.5rem;
        }

        .desc {
          font-size: 0.75rem;
          line-height: 1.6;
          color: var(--text-color);
          margin-top: 8px;
        }

        & .news-ttl.text-overflow {
          -webkit-line-clamp: 1;
        }

        & .desc.text-overflow {
          -webkit-line-clamp: 3;
        }
      }
    }

    .news-post-btn {
      font-size: 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: absolute;
      top: calc(180px + 22px);
      left: 16px;

      .date-btn-link {
        .date {
          vertical-align: middle;
          transition: opacity 0.3s;

          &:hover {
            opacity: 0.6;
          }
        }
      }

      .category-btn {
        a {
          color: var(--white-color);
          background-color: var(--cat-color);
          padding: 4px 8px;
          transition: background-color 0.3s;

          &:hover {
            background-color: var(--swiper-pagination-bullet-active-color);
          }
        }
      }
    }
  }
}

/* ================================================
ABOUT
================================================ */
.about {
  position: relative;

  &::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--body-color);
    position: absolute;
    top: 0;
    z-index: -1;
  }

  .about-container {
    position: relative;

    .about-list {
      display: grid;
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      margin-top: 80px;
      gap: 24px;

      .about-item {
        width: 100%;
        height: 140px;
        overflow: hidden;
        margin-inline: auto;
        box-shadow: 0 0 8px #ccc;

        .about-btn {
          width: 100%;
          height: 100%;
          display: flex;
          align-items: center;
          background-color: var(--breadcrumbs-bg-color);
          transition: all 0.3s;

          .sec-ttl {
            width: 40%;

            .material-symbols-outlined {
              margin-top: 8px;
            }
          }

          &:hover {
            background-color: var(--cat-color);
          }

          &:hover .sec-ttl {
            color: var(--white-color);
          }

          &:hover img {
            filter: grayscale(0%);
            transform: scale(1.05);
          }

          img {
            width: 100%;
            height: auto;
            flex: 1;
            object-fit: cover;
            vertical-align: bottom;
            overflow: hidden;
            clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
            filter: grayscale(0.5);
            transition: transform 0.3s ease;
          }
        }

        .feature {
          flex-direction: row-reverse;

          & img {
            clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
          }
        }
      }
    }

    /* CIRCLE TEXT */
    .circle-container {
      display: none;
    }
  }
}

/* ================================================
CONTACT
================================================ */
.contact {
  position: relative;

  .bg-img-fixed {
    background: linear-gradient(135deg, rgba(218 199 199 / 0.8), rgba(0 0 0 / 0.8)), url("../images/bg-img/contact-bg.JPG") center/cover no-repeat;
  }

  .sec-container {
    .contact-desc {
      font-size: 0.75rem;
      text-align: center;
      margin-top: 80px;
    }

    .contact-btn {
      margin: 120px auto 0;

      .tel-btn {
        color: var(--white-color);
      }

      & .tel-btn-link {
        border-top: 1px solid var(--white-color);
        border-bottom: 1px solid var(--white-color);
      }
    }
  }
}

/* ================================================
FOOTER
================================================ */
.footer {
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1rem;
  background-color: var(--footer-color);
  padding: 40px 24px;
  z-index: 2;

  .footer-body {
    font-size: 0.875rem;
    width: 300px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;

    .footer-info {
      text-align: left;
      margin-top: 40px;

      .footer-info-item {
        line-height: 1.4;
        display: flex;
        gap: 16px;

        &+& {
          margin-top: 16px;
        }

        .footer-info-ttl {
          width: 64px;
        }

        .footer-info-body {
          .sns-icons {
            display: flex;
            gap: 8px;

            .sns-icon {
              font-size: 1.0rem;
            }
          }
        }
      }
    }
  }

  .footer-btm {
    .badge-desc {
      font-size: 0.875rem;
      line-height: 1.6;
      margin-top: 64px;

      .badge-desc-link {
        text-decoration: underline;
        text-underline-offset: 0.2rem
      }
    }

    .copyright {
      font-size: 0.75rem;
      margin-top: 64px;
    }
  }
}

/* ------------------------------------------
PAGE TOP
------------------------------------------ */
#page-top {
  width: 60px;
  height: 60px;
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 99;
}

#page-top a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
  transition: opacity 0.3s ease;
  opacity: 0.6;
  position: relative;
  overflow: hidden;
}

#page-top a::before {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  content: '\f139';
  font-size: 62px;
  line-height: 1;
  vertical-align: bottom;
  color: var(--brand-color);
  background-color: var(--white-color);
}

#page-top a:hover {
  opacity: 0.8;
}

/* ================================================
下層ページ(SUBPAGE)
================================================ */
.subpage {
  position: relative;

  .bg-img-fixed {
    background-image: url("../images/bg-img/sub-page-bg7.JPG");
  }

  &.contact,
  &.privacy {
    background: none;
  }

  &.category {
    .bg-img-fixed {
      background: linear-gradient(135deg, rgba(92, 165, 233, 0.5), rgba(210, 116, 88, 0.6)), url("../images/bg-img/sub-page-bg.JPG") 60% 70% / cover no-repeat;
    }
  }

  .header {
    padding-bottom: 140px;
  }

  /* ------------------------------------------
  COMMON(SUBPAGE)
  ------------------------------------------ */
  .one-column,
  .two-column {
    padding: 80px 24px;
  }

  .bg-clear {
    background-color: var(--clear-color);
  }

  /* ------------------------------------------
  下層ページタイトル(SUBPAGE)
  ------------------------------------------ */
  .sec-ttl {
    .en-ttl {
      font-size: 2.0rem;
    }

    .ja-ttl {
      font-size: 1.0rem;
    }
  }

  /* サブタイトル */
  .sub-sec-ttl-02 {
    &::after {
      display: inline-block;
      content: "";
      width: 56px;
      height: 1px;
      background-color: var(--text-color);
      margin-top: 40px;

    }

    .en-ttl {

      .contact-header &,
      .contact-form & {
        margin-top: 0;
      }
    }
  }


  /* ------------------------------------------
  HEADER NAV MENU(SUBPAGE)
  ------------------------------------------ */
  #modal-menu.open {
    top: 192px;
  }

  /* ------------------------------------------
  HERO AREA(SUBPAGE)
  ------------------------------------------ */
  .hero {
    margin-top: 52px;

    .hero-img {
      img {
        width: 100%;
        height: 240px;
      }
    }

    .top-ttl-area {
      position: absolute;
      top: 50%;
      left: 50%;
      translate: -50% -50%;
    }
  }

  /* ------------------------------------------
  カテゴリーボタン(SUBPAGE)
  ------------------------------------------ */
  .date-btn {
    a {
      transition: opacity 0.3s;

      &:hover {
        opacity: 0.6;
      }
    }
  }

  .category-btn {
    letter-spacing: 0.1rem;

    a {
      color: var(--white-color);
      background-color: var(--cat-color);
      padding: 4px 8px;
      transition: background-color 0.3s;

      &:hover {
        background-color: var(--swiper-pagination-bullet-active-color);
      }
    }
  }

  /* ------------------------------------------
  PAGINATION(SUBPAGE)
  ------------------------------------------ */
  .pagination {
    text-align: center;
    margin-top: 80px;
  }

  .nav-links .page-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .nav-links a.page-numbers,
  .nav-links .current,
  .nav-links a.prev,
  .nav-links a.next {
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
  }

  .nav-links a.page-numbers,
  .nav-links a.prev,
  .nav-links a.next {
    color: var(--separator2-color);
    background-color: var(--white-color);
  }

  .nav-links .current {
    color: #FFF;
    background-color: var(--separator2-color);
  }

  .nav-links a.page-numbers {
    transition: 0.3s;
  }

  .nav-links a.page-numbers:hover {
    background-color: var(--body-color);
  }

  .nav-links a.prev,
  .nav-links a.next {
    width: auto;
    line-height: 1;
    padding: 8px 10px;
    display: flex;
    align-items: center;
  }

  .nav-links a.prev::before,
  .nav-links a.next::after {
    content: '';
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
  }

  .pagination a.prev::before {
    border-bottom: 1px solid var(--separator2-color);
    border-left: 1px solid var(--separator2-color);
  }

  .pagination a.next::after {
    border-top: 1px solid var(--separator2-color);
    border-right: 1px solid var(--separator2-color);
  }

  /* ------------------------------------------
  前後投稿へのリンク(SUBPAGE)
  ------------------------------------------ */
  .post-nav {
    width: 100%;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .post-nav-prev a,
  .post-nav-next a {
    display: inline-block;
    padding: 4px 16px;
    transition: 0.3s;
  }

  .post-nav a:hover {
    color: #fff;
    background-color: #E64B36;
  }

  .post-nav-prev i {
    margin-right: 8px;
  }

  .post-nav-next i {
    margin-left: 8px;
  }

  /* ------------------------------------------
  サイドバー(SUBPAGE)
  ------------------------------------------ */
  .col-2 {
    margin-top: 120px;

    .side-btn-container {
      .side-btn {
        .side-btn-ttl {
          font-size: 0.875rem;
          letter-spacing: 0.1rem;
          color: var(--white-color);
          text-align: center;
          background-color: var(--search-color);
          padding: 10px;
          position: relative;
        }

        &:nth-child(2) {
          margin-top: 40px;
        }
      }

      .side-btn-list {
        margin-top: 16px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 8px;

        li {
          font-size: 0.8rem;
          height: 36px;
          line-height: 36px;
          letter-spacing: 0.1rem;
          color: var(--white-color);
          width: calc((100% - 24px) / 3);

          a {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background-color: var(--side-btn-color);
            position: relative;
            transition: transform 0.2s, color 0.2s, background-color 0.2s;
            z-index: 0;

            img {
              filter: brightness(0) invert(1);
              transition: filter 0.2s;
            }


            &::before {
              content: "";
              display: block;
              position: absolute;
              top: 0;
              left: 0;
              width: 0;
              height: 100%;
              background-color: var(--white-color);
              z-index: -1;
              transition: 0.5s;
            }

            &:hover {
              color: var(--text-color);
            }

            &:hover img {
              filter: none;
            }

            &:hover::before {
              width: 100%;
            }
          }

          .works-cat {
            li {
              width: calc((100% - 16px) / 4);
            }
          }
        }
      }
    }
  }

  .contact-btn {
    margin: 80px auto 0;

    .tel-btn {
      color: var(--text-color);

      .tel-btn-link {
        border-top: 1px solid var(--text-color);
        border-bottom: 1px solid var(--text-color);
      }
    }

    .mail-btn {
      border: 1px solid var(--text-color);

      .mail-btn-link {

        &::before,
        &::after {
          background-color: var(--text-color);
        }
      }
    }
  }

  /* ------------------------------------------
  WORKS個別ページ(SUBPAGE)
  ------------------------------------------ */
  .works-item.single {
    width: 100%;
  }

  /* ------------------------------------------
  WORKS一覧ページ(SUBPAGE)
  ------------------------------------------ */
  .works-list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 16px;
    row-gap: 32px;
    margin-top: 0;
  }

  .works-item {
    width: calc((100% - 16px) / 2);
    position: relative;

    .works-item-img {
      filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.6));

      overflow: hidden;

      img {
        width: 100%;
        height: auto;
        transition: transform 0.3s;
      }
    }

    .works-item-text {
      display: flex;
      flex-direction: column;
      margin-top: 16px;

      .works-ttl {
        font-size: 0.8rem;
      }

      .text-overflow {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
      }

      .works-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 16px;

        .cat-btn {
          font-size: 0.8rem;
          display: flex;
          align-items: center;
          gap: 8px;
        }

        .works-item-link {
          .material-symbols-outlined {
            vertical-align: bottom;
            transition: transform 0.3s, color 0.3s;
          }
        }

        .works-item-link:hover {
          cursor: pointer;

          .material-symbols-outlined {
            color: var(--cat-color)
          }

          .works-item-img img {
            transform: scale(1.05);
          }
        }
      }
    }
  }

  /* モーダルウィンドウ */
  .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: var(--modal-bg-color);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    z-index: 99999;
  }

  .wh-bg {
    content: "";
    max-width: 800px;
    width: 90%;
    text-align: center;
    background: hsl(0, 0%, 100%);
    padding: 24px;
    margin: 80px auto;
    z-index: 2;
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .close-btn span {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 16px;
    height: 2px;
    background-color: var(--text-color);
  }

  /* 1本目の線の位置を設定 */
  .close-btn span:nth-of-type(1) {
    transform: translateY(10px) rotate(-45deg);
  }

  /* 2本目の線の位置を設定 */
  .close-btn span:nth-of-type(2) {
    transform: translateY(10px) rotate(45deg);
  }

  .modal-content {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 800px;
    margin: 0 auto;
  }

  .modal-content img {
    width: 100%;
    vertical-align: bottom;
  }

  .modal .works-ttl {
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    margin-top: 8px;
  }

  /* ------------------------------------------
  NEWS個別ページ(SUBPAGE)
  ------------------------------------------ */
  .news-content {
    .news-post {
      box-shadow: 0 0 16px var(--text-color);

      .news-post-img {
        img {
          width: 100%;
          height: auto;
          vertical-align: bottom;
        }
      }

      .news-post-info {
        background-color: var(--breadcrumbs-bg-color);
        padding: 24px 24px 40px;

        .news-post-btn {
          font-size: 0.8rem;
          display: flex;
          align-items: center;

          .category-btn {
            margin-top: 0;
            margin-left: 16px;

            &::before {
              content: "";
              border-left: 1px solid var(--separator1-color);
              margin-right: 16px;
            }
          }
        }

        .news-post-body {
          position: relative;
          margin-top: 40px;

          &::before {
            position: absolute;
            content: "";
            width: 40px;
            height: 2px;
            top: -20px;
            left: 20px;
            background-color: var(--separator2-color);
          }

          &::after {
            position: absolute;
            content: "";
            width: 20px;
            height: 2px;
            top: -20px;
            left: 0;
            background-color: var(--text-color);
          }

          .news-ttl {
            font-style: italic;
            font-size: 1.125rem;
            letter-spacing: 0.1rem;
            position: relative;
          }

          .desc {
            font-size: 0.875rem;
            line-height: 1.6;
            margin-top: 16px;
          }
        }
      }
    }
  }

  .news-post-footer {
    .post-nav {
      margin-top: 40px;
    }
  }

  /* ------------------------------------------
  NEWS一覧ページ(SUBPAGE)
  ------------------------------------------ */
  .news-list {
    margin-top: 0;
  }

  /* ------------------------------------------
  ABOUTページ(SUBPAGE)
  ------------------------------------------ */
  /* 全体の余白 */
  .service,
  .feature,
  .access {
    padding: 80px 24px 160px;
  }

  /* SERVICE SECTION */
  .service {
    .service-list {
      margin-top: 80px;
      position: relative;

      .service-item {
        &+& {
          margin-top: 40px;
        }

        .service-item-img {
          img {
            width: 100%;
            height: auto;
            box-shadow: 0 0 32px var(--swiper-pagination-bullet-color);
          }
        }

        .service-item-text {
          background-color: var(--service-bg-color);
          box-shadow: 0 0 32px var(--swiper-pagination-bullet-color);
          padding: 24px 24px 48px;
          position: relative;

          .service-item-header {
            font-size: 1.5rem;
            font-style: italic;
            display: flex;

            .service-item-count {
              font-family: "Hiragino Sans", sans-serif;
              font-weight: 600;
              color: var(--service-ttl-color);

              &::before {
                content: "";
                border-right: 4px solid var(--service-ttl-color);
                margin-right: 8px;
              }
            }

            .service-item-ttl {
              letter-spacing: 0.1rem;
              margin-left: 16px;
            }
          }

          .service-item-desc {
            font-size: 0.875rem;
            line-height: 2.0;
            letter-spacing: 0.1rem;
            margin-top: 24px;

            &.text-overflow {
              display: -webkit-box;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 2;
              overflow: hidden;
            }
          }

          .cursive {
            font-size: 1.25rem;
            color: var(--white-color);
            position: absolute;
            bottom: -8px;
            left: 24px;
            transform: rotate(-15deg);
          }
        }
      }
    }
  }

  /* FEATURE SECTION */
  .feature {
    .feature-contents {
      margin-top: 200px;
      position: relative;

      .feature-img {
        position: sticky;
        width: 300px;
        height: 300px;
        margin: 0 auto;
        position: absolute;
        top: -150px;
        left: 50%;
        translate: -50% 0;
        z-index: 99;

        img {
          width: 100%;
          height: 100%;
          border-radius: 50%;
          box-shadow: 0 0 16px var(--text-color);
          overflow: hidden;
        }
      }

      .feature-desc {
        width: 100%;
        height: 100%;
        /* position: relative; */
        font-size: 1.0rem;
        font-style: italic;
        font-weight: bold;
        letter-spacing: 0.2rem;
        line-height: 2.8;
        background: url(../images/logo-img/site-icon-bg.png) center 70% / 360px no-repeat;
        background-color: var(--white-color);
        box-shadow: 0 0 16px var(--text-color);
        padding: 190px 60px 60px;
      }
    }
  }

  /* ACCESS SECTION */
  .access {
    .access-contents {
      margin-top: 40px;

      iframe {
        width: 100%;
      }

      .access-tbl {
        display: block;

        .access-tbody {
          display: block;
          font-size: 0.875rem;
          letter-spacing: 0.1rem;
          margin-top: 40px;

          tr {
            display: block;
            padding: 16px;

            &:nth-child(odd) {
              background-color: var(--service-bg-color);
            }

            th,
            td {
              display: block;
            }

            td {
              margin-top: 8px;

              &:last-child {
                line-height: 1.6;
              }
            }
          }
        }
      }
    }
  }

  /* ------------------------------------------
  CONTACTページ(SUBPAGE)
  ------------------------------------------ */
  /* 各フォーム部品の基本スタイルを上書き */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  textarea,
  select {
    -webkit-appearance: none;
    appearance: none;
    /*ブラウザ標準スタイルを無効にする*/
    width: 100%;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 4px;
    font-family: inherit;
  }

  /* 必須ラベル */
  .badge {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.1rem;
    color: var(--white-color);
    background: var(--cat-color);
    padding: 2px 4px;
    margin-left: 8px;
  }

  /* ラベル */
  .label {
    display: flex;
    align-items: center;

    br {
      display: none;
    }
  }

  /* inputフィールド */
  .form-control {
    appearance: none;
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--text-color);
    border-radius: 4px;
    padding: 8px 16px;
    outline: none;

    &::placeholder {
      color: var(--placeholder-color);
    }
  }

  .form-control:focus,
  .select-wrap:focus,
  textarea:focus {
    box-shadow: 0 0 4px var(--input-outline-color);
  }

  /* ラジオボタン */
  .radio-list {
    display: flex;
    align-items: center;
    gap: 40px;

    li {
      label {
        display: flex;
        align-items: center;
        gap: 8px;
      }
    }
  }

  input[type="radio"] {
    width: 18px;
    height: 18px;
  }

  input[type="radio"]+.radio-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -26px;
    width: 18px;
    height: 18px;
    background-color: var(--white-color);
    border: 1px solid var(--desc2-color);
    border-radius: 50%;
    box-sizing: border-box;
  }

  input[type="radio"]:checked+.radio-btn::after {
    content: "";
    position: absolute;
    top: 2px;
    left: -24px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--cat-color);
  }

  /* 注意書き */
  .input-note {
    font-size: 0.75rem;
    margin-top: 8px;
  }

  /* セレクトボタン */
  .select-wrap {
    width: 100%;
    background-color: var(--white-color);
    outline: none;
    position: relative;

    select:focus {
      outline: none;
      box-shadow: 0 0 3px var(--cat-color);
    }
  }

  .select-wrap::after {
    position: absolute;
    top: calc(50% - 8px);
    right: 20px;
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid;
    border-bottom: 2px solid;
    transform: rotate(45deg);
    pointer-events: none;
  }


  /* テキストエリア */
  textarea {
    width: 100%;
    background-color: var(--white-color);
    border: 1px solid var(--text-color);
    border-radius: 4px;
    padding: 8px 16px;
    outline: none;
  }

  /* チェックボックス */
  input[type="checkbox"] {
    width: 20px;
  }

  .checkbox {
    height: 20px;
    line-height: 20px;
  }

  input[type="checkbox"]+.checkbox {
    position: relative;
    cursor: pointer;
  }

  input[type="checkbox"]+.checkbox::before {
    content: "";
    position: absolute;
    top: 0;
    left: -28px;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border: 1px solid var(--desc2-color);
    box-sizing: border-box;
  }

  input[type="checkbox"]:checked+.checkbox::after {
    content: "";
    position: absolute;
    top: 0;
    left: -20px;
    transform: rotate(45deg);
    width: 6px;
    height: 12px;
    border-right: 3px solid var(--cat-color);
    border-bottom: 3px solid var(--cat-color);
  }

  /* プライバシーコンテナ */
  .privacy-container {
    border: 1px solid var(--desc2-color);
    padding: 32px;
    margin-top: 80px;

    .privacy-desc {
      line-height: 1.6;

      .privacy-policy-link {
        text-decoration: underline;
        color: #df5656;
        transition: opacity 0.3s;
      }

      .privacy-policy-link:hover {
        opacity: 0.6;
      }
    }

    .privacy-check {
      text-align: center;
      margin-top: 24px;

      label {
        display: flex;
        justify-content: center;
        gap: 8px;
      }
    }
  }

  /*radio, checkbox
------------------------------------*/
  input[type="radio"],
  input[type="checkbox"] {
    opacity: 0;
    /*透明にして見えなくする*/
    position: absolute;
    /*本来の配置から切り離す*/
  }

  /*クリック範囲*/
  input[type="radio"]+span,
  input[type="checkbox"]+span {
    display: inline-block;
    position: relative;
    margin: 0 2em 0 0;
    padding: 0.3em 0.3em 0.3em 2em;
    line-height: 1;
    vertical-align: middle;
    cursor: pointer;
  }

  /*ラジオボタンスタイル*/
  input[type="radio"]+span:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 22px;
    height: 22px;
    border: 1px solid #ccc;
    border-radius: 50%;
    line-height: 1;
    background: #fff;
    box-sizing: border-box;
  }

  /*ラジオボタンチェック印（未選択）*/
  input[type="radio"]+span:after {
    content: "";
    display: none;
  }

  /*ラジオボタンチェック印（選択）*/
  input[type="radio"]:checked+span:after {
    display: block;
    position: absolute;
    top: 5px;
    left: 3px;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: #E64B36;
    line-height: 1;
  }

  /*チェックボックススタイル*/
  input[type="checkbox"]+span:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    background: #fff;
    line-height: 1;
    vertical-align: middle;
  }

  /*チェックボックス未チェック時*/
  input[type="checkbox"]+span:after {
    content: "";
    display: none;
  }

  /*チェックボックスチェック時*/
  input[type="checkbox"]:checked+span:after {
    display: block;
    position: absolute;
    top: 0;
    left: 8px;
    width: 8px;
    height: 16px;
    content: "";
    border-bottom: 3px solid #E64B36;
    border-right: 3px solid #E64B36;
    transform: rotate(45deg);
  }


  /* 送信ボタン */
  .form-btn {
    width: 200px;
    margin: 40px auto 0;

    .form-btn-link {
      width: 100%;
      display: inline-block;
      font-size: 1rem;
      font-weight: bold;
      letter-spacing: 0.4rem;
      color: var(--white-color);
      text-decoration: none;
      background-color: var(--cat-color);
      border: none;
      box-shadow: 5px 5px 0 var(--pushed-btn-color);
      padding: 16px 0;
      cursor: pointer;

      &:active {
        box-shadow: none;
        transform: translate(4px, 4px);
      }
    }
  }

  /* CONTACT-HEADER */
  .contact-header {
    .sub-contact-desc {
      font-size: 0.875rem;
      text-align: center;
      letter-spacing: 0.1rem;
      line-height: 2.0;
      margin-top: 40px;
    }
  }

  /* CONTACT-FORM */
  .contact-form {
    /* font-size: 0.875rem; */
    letter-spacing: 0.1rem;
    margin-top: 120px;

    .contact-table {
      width: 100%;
      border-bottom: 1px dashed var(--desc2-color);
      border-collapse: collapse;
      margin-top: 40px;

      tbody {
        width: 100%;

        tr {
          display: flex;
          flex-direction: column;
          padding: 32px 0;

          &+& {
            border-top: 1px dashed var(--desc2-color);
          }
        }

        td {
          display: block;
          width: 100%;
          margin-top: 8px;
        }
      }
    }

    .privacy-desc {
      font-size: 1.0rem;
    }
  }

  /* ------------------------------------------
  PRIVACY POLICYページ(SUBPAGE)
  ------------------------------------------ */
  .privacy-desc,
  .privacy-item,
  .privacy-ttl-2 {
    font-size: 0.825rem;
    line-height: 1.6;
    letter-spacing: 0.1rem;
  }

  .sub-header {
    .privacy-desc {
      margin-top: 40px;
    }
  }

  .privacy-item {
    margin-top: 24px;

    .privacy-desc {
      margin-top: 4px;
    }

    .bracket {
      margin-top: 16px;

      .privacy-ttl-2 {
        display: flex;
        align-items: center;

        span {
          height: 22px;
          margin-right: 4px;
        }
      }

      .purpose {
        list-style: disc;

        li {
          list-style-position: inside;
          margin-left: 20px;
          text-indent: -20px;
        }
      }
    }
  }

  /* ------------------------------------------
  NOT FOUNDページ(SUBPAGE)
  ------------------------------------------ */
  .not-found {
    max-width: 1000px;
    margin-inline: auto;

    .page404-text-box {
      font-size: 0.875rem;
      line-height: 3.0;
      letter-spacing: 0.1rem;

      a {
        text-decoration: underline;
      }
    }

    .search-container {
      margin-top: 16px;
      position: relative;

      .search-form {
        top: 0;
        left: 0;
        translate: 0 0;
      }
    }
  }

  .one-column.not-found {
    padding-bottom: 140px;
  }

  /* ------------------------------------------
  検索結果ページ(SUBPAGE)
  ------------------------------------------ */
  .search {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.1rem;

    .news-list {
      margin-top: 8px;
    }

    .search-container {
      margin-top: 16px;
      position: relative;

      .search-form {
        top: 0;
        left: 0;
        translate: 0 0;
      }
    }
  }

  .one-column.search {
    padding-bottom: 140px;
  }
}

/* ------------------------------------------
  WORKS-CATEGORYページ(カテゴリーページ)
  ------------------------------------------ */
.subpage.category {
  .hero {
    .hero-img {
      width: 100%;
      height: 240px;
    }
  }

  .post-nav {
    border-top: 1px solid var(--desc2-color);
    padding-top: 40px;
    margin-top: 40px;
  }
}

/* ================================================
MEDIUM SIZE(780px)
================================================ */
@media (width >=780px) {

  /* ------------------------------------------
  LAYOUT
  ------------------------------------------ */
  .sec-container {
    padding-left: 40px;
    padding-right: 40px;
  }

  /* ------------------------------------------
  LOGO
  ------------------------------------------ */
  .logo {
    .logo-image {
      width: 56px;
      height: 56px;
    }
  }

  /* ------------------------------------------
  HEADER
  ------------------------------------------ */
  .header {
    .header-top {
      .h-container {
        padding-left: 40px;
        padding-right: 40px;
      }
    }
  }

  /* パンくずリスト */
  .guide-container {
    .breadcrumbs {
      font-size: 1.0rem;
      padding: 0 40px;
    }
  }

  /* ------------------------------------------
  HERO AREA
  ------------------------------------------ */
  .hero {
    .catchphrase {
      .j-catch {
        font-size: 2.5rem;
      }

      .e-catch {
        font-size: 1.0rem;
      }

      .sp {
        display: none;
      }
    }
  }

  /* ------------------------------------------
  NEWS
  ------------------------------------------ */
  .news-list {
    column-gap: 32px;

    .news-item {
      width: calc((100% - 32px) / 2);

      .news-item-link {
        .news-item-text {
          padding: 24px;

          .desc-container {
            margin-top: 24px;

            .news-ttl {
              font-size: 1.0rem;
            }

            .desc {
              font-size: 1.0rem;
            }
          }
        }
      }

      .news-post-btn {
        flex-direction: inherit;
        align-items: center;
        left: 24px;
      }
    }
  }

  /* ------------------------------------------
  ABOUT
  ------------------------------------------ */
  .about {
    .about-container {
      .about-list {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 80px;

        .about-item {
          height: auto;

          &:nth-child(1) {
            grid-column: 2 / 4;
            grid-row: 1 / 2;
          }

          &:nth-child(2) {
            grid-column: 1 / 3;
            grid-row: 2 / 3;
          }

          &:nth-child(3) {
            grid-column: 3 / 5;
            grid-row: 2 / 3;
          }
        }
      }

      .circle-container {
        display: block;
        width: 100px;
        height: 100px;
        position: absolute;
        top: calc(50% - 64px);
        left: 50%;
        translate: -50% -50%;


        .circle-inner {
          .circle-text {
            overflow: visible;
            animation: rotation 30s linear infinite;

            .circle-text__circle {
              fill: none;
            }

            .circle-text__text {
              fill: var(--brand-color);
              font-size: 0.6rem;
            }
          }
        }

        .circle-img {
          position: absolute;
          top: 50%;
          left: 50%;
          filter: grayscale(50%);
          opacity: 0.5;
          translate: -50% -50%;
        }
      }
    }
  }

  @keyframes rotation {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /* ------------------------------------------
  CONTACT
  ------------------------------------------ */
  .contact {
    .sec-container {
      .contact-desc {
        font-size: 0.875rem;
      }
    }
  }

  /* ------------------------------------------
  下層ページ(SUBPAGE)
  ------------------------------------------ */
  .subpage {

    .one-column,
    .two-column {
      padding: 80px 40px;
    }

    /* HERO AREA */
    .hero {
      .hero-img {
        img {
          height: 400px;
        }
      }
    }

    /* 下層ページタイトル(SUBPAGE) */
    .sec-ttl {
      .en-ttl {
        font-size: 2.5rem;

        .ja-ttl {
          font-size: 1.25rem;
        }
      }
    }

    /* 下層ページサブタイトル(SUBPAGE) */
    .sub-sec-ttl-01 {
      .en-ttl {
        font-size: 2.0rem;

        .ja-ttl {
          font-size: 1.0rem;
        }
      }
    }

    .sub-sec-ttl-02 {
      .en-ttl {
        font-size: 2.0rem;
      }
    }

    /* PAGINATION (SUBPAGE) */
    .pagination {
      font-size: 1.0rem;

      li {
        a {
          width: 32px;
          height: 32px;
        }
      }
    }

    /* WORKSページ (SUBPAGE) */
    .works-list {
      column-gap: 32px;

      .works-item {
        width: calc((100% - 64px) / 3);

        .works-item-link {
          .works-item-text {
            .works-ttl {
              font-size: 1.0rem;
            }
          }
        }

        .cat-btn {
          font-size: 0.875rem;
        }
      }
    }

    /* NEWS個別ページ(SUBPAGE) */
    .news-content {
      .news-post {
        .news-post-head {
          .news-post-info {
            font-size: 0.875rem;
          }
        }

        .news-post-body {
          .news-ttl {
            font-size: 1.5rem;
          }

          .desc {
            font-size: 1.0rem;
          }
        }
      }
    }

    /* NEWSページ (SUBPAGE) */
    .news-list {
      .news-item {
        width: calc((100% - 64px) / 3);
      }
    }

    /* ABOUTページ(SUBPAGE) */
    /* セクションタイトル */
    .sub-sec-ttl-01 {
      display: inline-block;
      width: 200px;
      text-align: left;
      position: relative;
      z-index: 1;

      &::before {
        content: "";
        width: 22px;
        height: 22px;
        background-color: var(--service-ttl-color);
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
      }

      &::after {
        background-color: var(--desc2-color);
        position: absolute;
        top: 50%;
        right: -80px;
        margin-top: 0;
      }

      .ja-ttl {
        font-size: 1.0rem;
        position: absolute;
        top: 50%;
        right: -180px;
        translate: 0 -50%;
      }

      .en-ttl {
        padding-left: 8px;
        margin-top: 0;
      }
    }

    .feature {
      .ja-ttl {
        right: -216px;
      }
    }

    /* 全体の余白 */
    .service,
    .feature,
    .access {
      padding-left: 40px;
      padding-right: 40px;
    }

    /* SERVICE SECTION(ABOUT PAGE) */
    .service {
      .service-list {
        .service-item {
          display: flex;

          &:nth-child(even) {
            flex-direction: row-reverse;
          }

          &+& {
            margin-top: 88px;
          }

          .service-item-text {
            width: 48%;
            height: 240px;
            padding: 40px 40px 80px;
            z-index: 99;

            .service-item-header {
              font-size: 1.75rem;
            }

            .service-item-desc {
              font-size: 1.0rem;
            }

            .cursive {
              width: 480px;
              font-size: 1.75rem;
              left: 50%;
              bottom: 40px;

              .construction-management & {
                left: -50%;
                bottom: -16px;
              }
            }
          }

          .service-item-img {
            width: 50%;
            height: 80%;
            translate: -80px 40px;
          }

          &:nth-child(even) .service-item-img {
            translate: 80px 40px;
          }
        }
      }
    }

    /* FEATURE SECTION (ABOUT PAGE) */
    .feature {
      .feature-contents {
        .feature-desc {
          font-size: 1.25rem;
        }
      }
    }

    /* ACCESS SECTION(ABOUT PAGE) */
    .access {
      .access-contents {
        .access-tbl {
          .access-tbody {
            font-size: 1.0rem;

            tr {
              display: flex;
              align-items: center;
              padding: 16px 32px;

              th,
              td {
                line-height: normal;
              }

              th {
                width: 20%;
              }

              td {
                margin-top: 0;
              }
            }
          }
        }
      }
    }

    /* CONTACTページ(SUBPAGE) */
    .sub-contact {
      padding: 80px 40px;
    }

    .contact-header,
    .contact-body {
      .sub-contact-desc {
        font-size: 1.0rem;
      }
    }

    .contact-form {
      /* font-size: 1.25rem; */

      .contact-table {
        tbody {
          tr {
            flex-direction: unset;
            align-items: center;

            th {
              width: 400px;
            }

            td {
              margin-top: 0;
            }
          }
        }
      }
    }
  }

  /* PRIVACY POLICYページ(SUBPAGE) */
  .privacy-desc,
  .privacy-item,
  .privacy-ttl-2 {
    font-size: 1.0rem;
    line-height: 2.0;
  }

  .privacy-item {
    .bracket {
      .privacy-ttl-2 {
        span {
          line-height: 20px;
        }
      }
    }
  }

  /* NOT FOUNDページ(SUBPAGE) */
  .not-found {
    .page404-text-box {
      font-size: 1.0rem;
      line-height: 4.5;
    }
  }

  /* 検索結果ページ(SUBPAGE) */
  .search {
    font-size: 1.0rem;
  }

  .one-column.search {
    padding-bottom: 200px;
  }

  /* サイドバー (SUBPAGE) */
 .subpage {	
  .col-2 {
    .side-btn-container {
      display: flex;
      justify-content: center;
      gap: 16px;

      .side-btn {
        display: flex;
        flex-direction: column;
        width: 50%;

        &:nth-child(2) {
          margin-top: 0;
        }

        &.works-cat {
          width: 100%;
        }

        .side-btn-list {
          flex: 1;
		 }
        }
      }
    }
  }
}

/* WORKS-CATEGORYページ (カテゴリーページ) */
.subpage.category {
  .hero {
    .hero-img {
      height: 400px;
    }
  }
}

/* ================================================
LARGE SIZE(1080px)
================================================ */
@media (width >=1080px) {

  /* ------------------------------------------
  SECTION TITLE STYLES
  ------------------------------------------ */
  .sec-ttl {
    .ja-ttl {
      font-size: 1.0rem;
    }

    .en-ttl {
      font-size: 2.0rem;
    }
  }

  .sec-ttl.sub-ttl {
    .ja-ttl {
      font-size: 0.625rem;
    }

    .en-ttl {
      font-size: 1.25rem;
    }
  }

  /* ------------------------------------------
  VIEW MORE BTN
  ------------------------------------------ */
  .more-btn {
    font-size: 1rem;

    .more-btn-link {
      max-width: 240px;
      padding: 16px 0;
    }
  }

  /* ------------------------------------------
  HEADER
  ------------------------------------------ */
  .header {
    .header-top {
      .h-container {
        padding: 24px 40px;

        /* LOGO */
        .logo {
          .logo-link {
            .logo-text {
              font-size: 1.75rem;
            }
          }
        }

        /* HEADER NAV MENU */
        #modal-menu {
          position: static;
          opacity: 1;
          visibility: visible;
        }

        .header-nav {
          height: auto;
          flex-direction: unset;
          justify-content: right;
          align-items: center;
          margin-left: 24px;

          .header-nav-menu {
            color: var(--text-color);
            background-color: unset;
            display: flex;
            gap: 16px;

            li {
              line-height: 1.0;
              padding: 0;

              a {
                display: block;
                padding: 4px 0;
                position: relative;

                &::after {
                  content: "";
                  width: 100%;
                  height: 2px;
                  position: absolute;
                  bottom: 0;
                  left: 0;
                  border-bottom: 2px solid var(--brand-color);
                  transform: translateX(-50%);
                  visibility: hidden;
                  transition: transform 0.3s;
                }

                &:hover {
                  color: var(--brand-color);
                  background-color: var(--swiper-btn-color);

                  &:hover::after {
                    transform: translateX(0);
                    visibility: visible;
                  }
                }
              }
            }
          }

          /* SEARCH FORM */
          .search-container {
            flex: none;
            background-color: unset;
            margin-left: 40px;

            .search-form {
              position: static;
              translate: 0 0;
              margin: 0;

              label {
                input {
                  background-color: var(--desc-color);
                }
              }
            }
          }
        }

        /* HAMBURGER MENU */
        .sp-menu {
          display: none;
        }
      }

      /* BREADCRUMBS*/
      .breadcrumbs {
        padding: 0 40px;
      }
    }
  }

  /* ------------------------------------------
  HERO AREA
  ------------------------------------------ */
  .hero {
    .catchphrase {
      .j-catch {
        font-size: 2.8rem;
      }

      .e-catch {
        font-size: 1.125rem;
        margin-top: 80px;
      }

      .sp {
        display: none;
      }
    }
  }

  /* ------------------------------------------
  WORKS
  ------------------------------------------ */
  .works {
    .swiper-container {
      .swiper {
        .swiper-wrapper {
          .swiper-slide {
            .works-ttl {
              font-size: 1.0rem;
            }
          }
        }
      }
    }
  }

  /* ------------------------------------------
  NEWS
  ------------------------------------------ */
  .news {
    .news-list {
      .news-item {
        width: calc((100% - 64px) / 3);
      }
    }
  }

  .news-item-link {
    .news-item-text {
      .cat-container {
        font-size: 0.875rem;
      }

      .desc-container {
        font-size: 1.0rem;
        margin-top: 16px;
      }
    }
  }

  /* ------------------------------------------
  CONTACT
  ------------------------------------------ */
  .contact {
    .sec-container {
      .contact-desc {
        font-size: 1.0rem;
      }

      .contact-btn {
        display: flex;
        align-items: center;
        gap: 32px;
        width: 680px;
        font-size: 1.125rem;

        .tel-btn {
          .tel-btn-link {
            .tel-btn-desc {
              .reception {
                font-size: 0.875rem;
              }
            }
          }
        }

        .mail-btn {
          margin-top: 0;
        }
      }
    }
  }

  /* ------------------------------------------
  FOOTER
  ------------------------------------------ */
  .footer {

    /* LOGO */
    .logo {
      .logo-link {
        .logo-text {
          font-size: 1.75rem;
        }
      }
    }

    .footer-body {
      width: 640px;
      flex-direction: unset;
      justify-content: center;
      gap: 16px;
      font-size: 1.0rem;

      .footer-info {
        &:nth-child(1) {
          width: 50%;
        }

        &:nth-child(2) {
          width: 50%;
          border-left: 1px solid var(--white-color);
          padding-left: 24px;
        }

        .footer-info-item {
          .footer-info-ttl {
            width: 80px;
          }
        }
      }
    }

    .footer-btm {
      small {
        font-size: 0.75rem;
      }
    }
  }

  /* ------------------------------------------
  下層ページ(SUBPAGE)
  ------------------------------------------ */
  .subpage {

    /* HERO AREA (SUBPAGE) */
    .sec-ttl {
      .en-ttl {
        font-size: 3.0rem;
      }

      .ja-ttl {
        font-size: 1.5rem;
      }
    }

    /* 2カラムレイアウト(SUBPAGE) */
    .two-column {
      display: flex;
      gap: 48px;

      .col-1 {
        width: 70%;
      }

      /* サイドバー(SUBPAGE) */
      .col-2 {
        flex: 1;
        margin-top: 0;

        display: flex;
        flex-direction: column;

        .side-btn-container {
          flex-direction: column;
          gap: 40px;

          .side-btn {
            width: 100%;

            .side-btn-ttl {
              font-size: 1.0rem;
              padding: 16px 0;
            }

            .side-btn-list {
              gap: 16px;

              li {
                font-size: 1.0rem;
                width: calc((100% - 16px) / 2);
                height: 48px;
              }
            }
          }
        }

        .contact-btn {
          flex-direction: column;
          width: 100%;
          margin-top: 120px;
        }
      }
    }

    /* ABOUTページ(SUBPAGE) */
    .service {
      .service-list {
        .service-item {
          .service-item-text {
            .service-item-header {
              .service-item-count {
                font-size: 10.0rem;
                color: rgba(233 88 100 / 0.2);
                position: absolute;
                top: 50%;
                left: calc(50% - 140px);
                transform: translateY(-50%);

                &::before {
                  border: none;
                }
              }
            }
          }
        }
      }
    }

    /* FEATURE SECTION(ABOUT PAGE) */
    .feature {
      .feature-contents {
        margin-top: 260px;

        .feature-img {
          width: 400px;
          height: 400px;
          top: -200px;
        }

        .feature-desc {
          padding: 240px 116px 116px;
        }
      }
    }
  }
}

/* ================================================
EXTRA LARGE SIZE(1320px)
================================================ */
@media (width >=1320px) {

  /* ------------------------------------------
  HEADER
  ------------------------------------------ */
  .header {
    .header-top {
      .h-container {
        .header-nav {

          /* HEADER NAV MENU */
          .header-nav-menu {
            gap: 32px;
          }
        }
      }
    }
  }

  /* ------------------------------------------
  HERO AREA
  ------------------------------------------ */
  .hero {
    .catchphrase {
      .j-catch {
        font-size: 3.2rem;
      }

      .e-catch {
        font-size: 1.125rem;
      }
    }
  }

  /* ------------------------------------------
  ABOUT
  ------------------------------------------ */
  .about-container {
    .about-list {
      .about-item {
        .about-btn {
          .sub-ttl {
            .ja-ttl {
              font-size: 1.0rem;
            }

            .en-ttl {
              font-size: 1.5rem;
            }
          }
        }
      }
    }
  }

  /* ------------------------------------------
  下層ページ(SUBPAGE)
  ------------------------------------------ */
  .subpage {

    /* FEATURE SECTION (SUBPAGE) */
    .feature {
      .feature-contents {
        margin-top: 260px;


        .feature-desc {
          font-size: 1.5rem;
          line-height: 3.6;
          background-size: 480px;
          padding: 240px 116px 116px;
        }
      }
    }
  }
}

/* reCAPTCHAバッジ非表示 */
.grecaptcha-badge {
  visibility: hidden;
}