/*mystyle.css*/
html {
  font-size: clamp(14px, 1.2vw, 16px);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

.wrap-all {
  margin: 0;
  padding: 0;
  font-family: "Kosugi", sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 400;
  font-style: normal;
  line-height: 2.25;
  min-height: 100vh;
}

.alphabet-fonts {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.ZenKaku-Antique {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
}

h1 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transitionDefault);
}

a,
button,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

/* ==============================
   br
============================== */
.pc {
  display: inline-block;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: inline-block;
  }
}
/* ==============================
   br
============================== */

/* ==============================
   Btn
============================== */

.btn {
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.catch .btn {
  margin: 40px 0 0;
}

.works .btn,
.news .btn {
  margin-top: 80px;
}

.service-section .btn {
  font-weight: 300;
  margin-top: 80px;
}

.btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  width: 398.63px;
  height: 48px;
  letter-spacing: 0.25rem;
  border-radius: 10px;
  transition: 0.3s ease;
}

.drawer-inner .btn a {
  border-radius: 0;
}

.btn-white {
  color: #715454;
  background-color: #fff;
  border: 1px solid #715454;
}

.btn-white::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #715454;
  border-top: 2.5px solid #715454;
  transform: rotate(45deg);
  transition: 0.3s;
}

.btn-white:hover {
  color: #fff;
  background-color: #715454;
  border: 1px solid #fff;
}

.btn-white:hover::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.btn-blue {
  color: #fff;
  font-weight: 300;
  background-color: #6b818e;
  border: 1px solid #6b818e;
}

.btn-blue::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.btn-blue:hover {
  color: #6b818e;
  background-color: #fff;
  border: 1px solid #6b818e;
}

.btn-blue:hover::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #6b818e;
  border-top: 2.5px solid #6b818e;
  transform: rotate(45deg);
  transition: 0.3s;
}

.btn-brown {
  color: #fff;
  background-color: #715454;
  border: 1px solid #715454;
}

.btn-brown::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #fff;
  border-top: 2.5px solid #fff;
  transform: rotate(45deg);
  transition: 0.3s;
}

.btn-brown:hover {
  color: #715454;
  background-color: #fff;
  border: 1px solid #715454;
}

.btn-brown:hover::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid #715454;
  border-top: 2.5px solid #715454;
  transform: rotate(45deg);
  transition: 0.3s;
}

/* ==============================
   Btn
============================== */

/* ==============================
   Header
============================== */
:root {
  --header-h: 80px;
  --accent: #6b818e;
  --ink: #715454;
  --border: #ececec;
  --bg: #fcfcfc;
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.header-bar.visible {
  transform: translateY(0);
}

/* ハンバーガー */
.hamburger-btn {
  justify-self: start;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--bg);
  border: 1px solid #715454;
  border-radius: 6px;
  cursor: pointer;
}
.hamburger-btn:focus-visible {
  outline: 2px solid #90a4ae;
  outline-offset: 2px;
}

.hamburger-lines,
.hamburger-lines::before,
.hamburger-lines::after {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background: var(--ink);
  border-radius: 2px;
}
.hamburger-lines::before {
  transform: translateY(-8px);
}
.hamburger-lines::after {
  transform: translateY(4px);
}

.header-logo {
  justify-self: center;
  display: inline-block;
}
.header-logo img {
  display: block;
  width: 203.06px;
  height: 56.87px;
}

.header-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 36px;
  padding: 0 16px;
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.1875rem;
  border-radius: 4px;
  transition: filter 0.2s ease, transform 0.06s ease;
}

.header-cta:hover {
  background: #fff;
  color: #6b818e;
  border: 1px solid #6b818e;
}

.header-cta:active {
  transform: translateY(1px);
}

/* ドロワー（後でJS制御） */
.globalmenu[hidden] {
  display: none !important;
}

/* ------------------------------
   Drawer Hamburger Menu
------------------------------ */

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 900;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 500px;
  height: 100vh;
  background: #715454;
  color: #fff;
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}

.drawer-menu.active {
  transform: translateX(0);
}

.drawer-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding: 80px 20px;
  box-sizing: border-box;
}

.drawer-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  width: 100%;
}

.drawer-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.drawer-list a {
  display: block;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: #fff;
  transition: opacity 0.2s;
}

.drawer-list li:last-child a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 20px;
  background: url("../images/common/icon-instagram.png") no-repeat center center;
  background-size: contain;
  vertical-align: middle;
}

.drawer-list a:hover {
  opacity: 0.7;
}

/* ハンバーガー開閉アニメ */
.hamburger-btn.active .hamburger-lines {
  background: transparent;
  position: relative;
}

.hamburger-btn.active .hamburger-lines::before,
.hamburger-btn.active .hamburger-lines::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 4px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
}

.hamburger-btn.active .hamburger-lines::before {
  transform: rotate(45deg);
}

.hamburger-btn.active .hamburger-lines::after {
  transform: rotate(-45deg);
}

/* ==============================
   Header
============================== */

/* ==============================
   Top page
============================== */

/* ==============================
   Main visual
============================== */
.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.mainVisual video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
/* ==============================
   Main visual
============================== */

section.catch {
  color: #fff;
  background-color: #715454;
  position: relative;
  width: 100%;
  padding: 80px 0 60px;
  text-align: center;
  z-index: 0;
}

/* .catch::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: -1;
}

@media screen and (max-width: 2560px) {
  .catch::after {
    bottom: -74px;
    background: url("/wp-content/themes/wasabido_theme/library/images/common/top-catch_bg3.png")
      no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
  }
}

@media screen and (max-width: 2200px) {
  .catch::after {
    bottom: -64px;
  }
}

@media screen and (max-width: 1920px) {
  .catch::after {
    bottom: -55px;
    background: url("/wp-content/themes/wasabido_theme/library/images/common/top-catch_bg2.png")
      no-repeat center bottom;
    background-size: contain;
    pointer-events: none;
  }
}

@media screen and (max-width: 1536px) {
  .catch::after {
    bottom: -44px;
  }
}

@media screen and (max-width: 1440px) {
  .catch::after {
    bottom: -73px;
    background: url("/wp-content/themes/wasabido_theme/library/images/common/top-catch_bg.png")
      no-repeat center bottom;
    background-size: contain;
    pointer-events: none;
  }
}

@media screen and (max-width: 1366px) {
  .catch::after {
    bottom: -70px;
  }
}

@media screen and (max-width: 1280px) {
  .catch::after {
    bottom: -65px;
  }
}

@media screen and (max-width: 1024px) {
  .catch::after {
    bottom: -53px;
  }
}

@media screen and (max-width: 768px) {
  .catch::after {
    bottom: -38px;
  }
}

@media screen and (max-width: 480px) {
  .catch::after {
    bottom: -21px;
  }
} */

.catch .section-inner {
  position: relative;
  z-index: 1;
}

.catch h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.625rem;
  line-height: 2;
}

.catch p {
  letter-spacing: 0.187rem;
}

/* 装飾イラスト */
.deco {
  position: absolute;
  z-index: 0;
  opacity: 0.8;
}
.deco-lamp {
  top: -106px;
  left: 29%;
  width: 135px;
  height: auto;
}
.deco-flower {
  bottom: -42px;
  right: 30%;
  width: 190px;
  height: auto;
}
/* ※装飾イラスト調整 */
@media screen and (max-width: 1920px) {
  .deco-lamp {
    left: 22%;
  }
  .deco-flower {
    right: 23%;
  }
}

@media screen and (max-width: 1536px) {
  .deco-lamp {
    left: 17%;
  }
  .deco-flower {
    right: 17%;
  }
}

@media screen and (max-width: 1440px) {
  .deco-lamp {
    left: 14%;
  }
  .deco-flower {
    right: 16%;
  }
}

@media screen and (max-width: 1366px) {
  .deco-lamp {
    left: 12%;
  }
  .deco-flower {
    right: 14%;
  }
}

@media screen and (max-width: 1280px) {
  .deco-lamp {
    left: 9%;
  }
  .deco-flower {
    right: 10%;
  }
}
/* ※装飾イラスト調整 */

section.service {
  color: #281313;
  background: url("/wp-content/themes/wasabido_theme/library/images/common/top-service_bg.jpg")
    no-repeat center center / cover;
  margin-top: -80px;
  padding: 150px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title .en {
  display: block;
  font-size: clamp(0.75rem, 1.3vw, 0.875rem);
  letter-spacing: 0.625rem;
  margin-bottom: 6px;
  font-weight: 300;
}

.section-title .ja {
  display: block;
  color: #281313;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.625rem;
  line-height: 1.4;
  margin-bottom: 10px;
}

.section-title .title-line {
  width: 285px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.service .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1080px;
  margin: 0 auto;
}

.service-text {
  flex: 1 1 45%;
  text-align: center;
}

.service-text h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.6;
  font-weight: 600;
  letter-spacing: 0.375rem;
  margin-bottom: 1em;
}

.service-text p {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 2;
  letter-spacing: 0.0625rem;
}

.service-links {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  background: #fff;
  border-left: 6px solid #715454;
  padding: 18px 24px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  letter-spacing: 0.05em;
  position: relative;
  transition: 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

.service-card::after {
  content: "";
  display: inline-block;
  width: 83.74px;
  height: 7.79px;
  padding-bottom: 12px;
  background: url("/wp-content/themes/wasabido_theme/library/images/common/line-arrow.png")
    no-repeat center center;
  background-size: contain;
  transition: transform 0.3s ease;
}

.service-card:hover::after {
  transform: translateX(8px);
}

/* ==============================
   施工事例
============================== */
section.works {
  background: linear-gradient(
    to bottom,
    #f2eded 0%,
    #f2eded 50%,
    #715454 50%,
    #715454 100%
  );
  padding: 60px 0;
  color: #281313;
}

.works .section-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.works-item {
  width: 240px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
}

.works-item:hover {
  transform: translateY(-4px);
}

.works-thumb,
.news-thumb {
  padding: 19px 12px 5px 12px;
}

.works-thumb img {
  width: 100%;
  height: 168px;
  object-fit: cover;
}

.works-meta,
.news-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 5px 10px 0;
}

.works-cat,
.news-cat {
  background: #715454;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #fff;
  padding: 2px 8px;
  border-radius: 2px;
}

.works-title,
.news-title {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 300;
  margin: 5px 0 5px;
  padding: 5px 10px 5px;
  text-align: left;
  line-height: 1.6;
  color: #281313;
}

/* ==============================
   施工事例
============================== */

/* ==============================
   新着情報
============================== */
section.news {
  background: #f2eded;
  padding: 60px 0;
  color: #281313;
  text-align: center;
}

.news .news-list {
  max-width: 830px;
  margin: 40px auto 0;
  text-align: left;
}

.news .news-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 38px;
  padding: 20px 0 20px 20px;
  border-bottom: 1px solid #715454;
}

.news .news-item:first-child {
  border-top: 1px solid #715454;
}

.news-date {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  color: #281313;
  width: 100px;
}

.news-cat {
  display: inline-block;
  background: #715454;
  color: #fff;
  /* font-size: 0.875rem; */
  padding: 2px 8px;
  border-radius: 2px;
  width: 111px;
  text-align: center;
}

.news-title {
  color: #281313;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-offset: 2px;
  transition: 0.3s;
}

.news-title:hover {
  color: #715454;
}

/* ==============================
   新着情報
============================== */

/* ==============================
   Top page
============================== */

/* ==============================
   会社概要
============================== */
section.message {
  color: #281313;
  margin-top: -80px;
  padding: 150px 0 40px;
}

.message-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 68px;
  width: 958px;
  margin: 0 auto;
}

.profile {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-detail {
  background-color: rgba(237, 237, 237, 0.4);
  padding: 16.5px 43px;
}

p.position {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  margin: 0;
}

p.name {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin: 0;
}

span.name-en {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-left: 20px;
}

ul.qualification {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  padding-left: 20px;
  line-height: 1.5;
  list-style: inherit;
}

.message-detail h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  line-height: 1.7;
}

.message-detail p {
  line-height: 1.7;
  letter-spacing: 0.125rem;
}

.company-info {
  background-color: #fff;
  color: #281313;
  padding: 40px 0 80px;
}

.info-table {
  width: 1000px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 20px 0;
}

.info-table th {
  border-bottom: 0.5px solid #fff;
  padding: 28px 20px;
  text-align: left;
  vertical-align: middle;
}

.info-table td {
  border-bottom: 0.5px solid #715454;
  padding: 28px 20px;
  text-align: left;
  vertical-align: middle;
}

.info-table td.top-border {
  border-top: 0.5px solid #715454;
}

.info-table th {
  width: 180px;
  background-color: #715454;
  color: #fff;
  font-weight: normal;
  text-align: center;
  letter-spacing: 0.1em;
}

.info-table td {
  background-color: #fff;
  color: #281313;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.info-table a {
  color: #281313;
  text-decoration: none;
}

.info-table a:hover {
  text-decoration: underline;
}

/* ==============================
   会社概要
============================== */

/* ==============================
   サービス概要
============================== */
div#service .section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
section.service-concept {
  color: #281313;
  margin-top: -80px;
  padding: 300px 0 130px;
}

.service-concept__card {
  display: flex;
}

.service-concept .section-inner {
  position: relative;
}

.service-concept .main-img {
  position: absolute;
  top: -80px;
  left: -30px;
  width: 100%;
  border-radius: 20px;
}

.service-concept .sub-img {
  position: absolute;
  bottom: -58px;
  left: 315px;
  width: 45%;
}

.service-concept .main-img img,
.service-concept .sub-img img {
  border-radius: 20px;
}

.service-concept .blank_container {
  width: 680px;
}

.service-concept .concept-text {
  width: 490px;
  background: #fff;
  padding: 12.5px 20px 12.5px 120px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.concept-text__inner {
  width: 362px;
  line-height: 1.7;
}

.concept-text__inner p {
  text-align: justify;
}

.service-concept .concept-text .concept-text__inner h2 {
  font-weight: 300;
}

.service-section {
  padding: 100px 0;
}

.service-fusui,
.service-reform {
  background-color: #f2eded;
}

.service-section h2 {
  color: #281313;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
}

.service-section h3 {
  display: inline-block;
  color: #281313;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  line-height: 1.7;
  border-bottom: 1px solid #333;
  margin: 20px 0 25px;
}

.service-section .square {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #715454;
  margin-right: 10px;
}

.service-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 82px;
  flex-wrap: wrap;
}

.service-section .content-text {
  width: 427px;
  text-align: left;
}

.content-text p,
.service-content__item-text {
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #281313;
  margin: 0;
}

.content-text ul {
  color: #281313;
  line-height: 1.5;
  list-style: inherit;
  padding-left: 20px;
}

.service-image {
  flex: 5;
  min-width: 300px;
  text-align: right;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 20px 0 0 20px;
}

.service-fusui .service-image,
.service-reform .service-image {
  margin-right: calc(50% - 50vw);
}

.service-interior .service-image img {
  border-radius: 0 20px 20px 0;
}

.service-section.reverse .service-content {
  flex-direction: row-reverse;
}

.service-section.reverse .service-image {
  text-align: left;
  margin-left: calc(50% - 50vw);
}

.service-content__wrap {
  display: flex;
  justify-content: center;
  gap: 62px;
}

.service-content__item {
  width: 448px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-workshop .service-image {
  flex: 0;
}

.service-workshop .service-image img {
  border-radius: 20px;
  width: 448px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
}

/* ==============================
   サービス概要
============================== */

/* ==============================
   施工事例・新着情報（一覧ページ）
============================== */
.archive-works,
.archive-news {
  background: #f2eded;
  color: #281313;
  margin-top: -80px;
  padding: 150px 0;
}

.archive-works .section-inner,
.archive-news .section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.archive-works .section-inner h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  margin-bottom: 30px;
}

.works-lead {
  max-width: 660px;
  margin: 0 auto;
}

/* 絞り込みボタン */
.works-filter,
.news-filter {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 80px auto;
}

.works-filter ul,
.news-filter ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
}

.works-filter a,
.news-filter a {
  display: inline-block;
  width: 150px;
  padding: 6px 18px;
  border: 1px solid #715454;
  color: #715454;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  text-align: center;
  transition: 0.3s;
}

.works-filter a.active,
.works-filter a:hover,
.news-filter a.active,
.news-filter a:hover {
  background: #715454;
  color: #fff;
}

/* 一覧レイアウト */
.archive-works .archive-list,
.archive-news .archive-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.archive-list .works-item,
.archive-list .news-item {
  width: inherit;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}
.archive-list .works-item:hover,
.archive-list .news-item:hover {
  transform: translateY(-4px);
}

.archive-list .works-thumb img,
.archive-list .news-thumb img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.archive-list .news-title {
  text-decoration-line: inherit;
  text-decoration-style: inherit;
  text-underline-offset: inherit;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

/* 数字・リンク共通 */
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 1px solid #715454;
  color: #715454;
  border-radius: 4px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  transition: 0.3s;
}

/* 現在ページ & hover */
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: #715454;
  color: #fff;
}

/* Prev / Next */
.pagination .prev,
.pagination .next {
  border: none;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0 10px;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

.pagination .prev:hover,
.pagination .next:hover {
  background: none;
  color: #715454;
}

@media screen and (max-width: 768px) {
  .archive-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .archive-list {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   施工事例・新着情報（一覧ページ）
============================== */

/* ==============================
   新着情報（投稿ページ）
============================== */
#single-news {
  max-width: 800px;
  margin: -80px auto 0;
  padding: 150px 20px;
}

.single-title {
  color: #333;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 300;
  text-align: center;
  margin-bottom: 20px;
}

.single-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-top: 60px;
  margin-bottom: 80px;
}

.single-cat {
  width: 150px;
  background: #715454;
  color: #fff;
  padding: 4px 10px;
  text-align: center;
  margin-bottom: ;
}

span.single-date {
  color: #333;
}

.single-thumb img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  margin-bottom: 40px;
}

.single-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin: 40px 0 20px;
  text-align: left;
  border-bottom: 2px solid #715454;
}

.single-body {
  margin-top: 0;
  line-height: 1.8;
}

.single-body p {
  margin: 0 0 30px;
}

.single-section {
  margin-top: 30px;
}

.single-section h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 300;
  margin-bottom: 0;
}

.single-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.single-gallery img {
  width: 240px;
  height: 180px;
  object-fit: cover;
}

.single-nav {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 100px;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.prev-post,
.next-post {
  color: #715454;
}

.back-to-list {
  text-align: center;
  color: #715454;
  letter-spacing: 0.1rem;
  text-decoration: underline;
}

/* ==============================
   新着情報（投稿ページ）
============================== */

/* ==============================
   施工事例（投稿ページ）
============================== */
#single-works {
  color: #281313;
  max-width: 660px;
  margin: -80px auto 0;
  padding: 150px 20px;
}

.works-slider {
  width: 660px;
  margin: 0 auto 20px;
}

.works-slider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.works-slider img {
  width: 660px;
  height: 440px;
  object-fit: cover;
  margin-bottom: 10px;
}

.thumbs-slider {
  width: 660px;
  margin: 0 auto;
}

.thumbs-slider .swiper-wrapper {
  display: flex !important;
  /* justify-content: space-between; */
}

.thumbs-slider .swiper-slide {
  width: calc(33.333% - 8px);
  flex-shrink: 0;
  text-align: center;
}

.thumbs-slider img {
  width: 100%;
  height: 134px;
  object-fit: cover;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.3s;
}

.thumbs-slider .swiper-slide-thumb-active img {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #715454 !important;
  width: 40px !important;
  height: 40px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #a87474 !important;
}

.before-after {
  display: flex;
  gap: 0;
  margin: 30px 0;
}

.before,
.after {
  width: 45%;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  text-align: left;
}

.before h4,
.after h4 {
  font-weight: 300;
  margin: 0;
}

.before img {
  width: 250px;
  height: 200px;
  object-fit: cover;
}

.after img {
  width: 350px;
  height: 280px;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .works-slider {
    width: 100%;
  }

  .works-slider img {
    width: 100%;
  }

  .thumbs-slider {
    width: 100%;
  }

  .thumbs-slider .swiper-slide {
    width: 30%;
  }
}

/* ==============================
   施工事例（投稿ページ）
============================== */

/* ==============================
   お問い合わせ
============================== */
section.contact {
  color: #281313;
  margin-top: -80px;
  padding: 150px 0 80px;
}

div#contact .section-inner {
  max-width: 660px;
  margin: 0 auto;
}

.contact-form br {
  display: none;
}

.contact h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 300;
  text-align: center;
}

.contact-form {
  color: #281313;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
  margin: 70px auto 0;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.required {
  display: inline-block;
  background: #b53c3c;
  color: #fff;
  font-size: clamp(0.6rem, 0.9vw, 0.6875rem);
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 30px;
  vertical-align: middle;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border: 0.5px solid #715454;
  padding: 10px 12px;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: clamp(0.8rem, 1vw, 0.875rem);
}

textarea {
  height: 150px;
  resize: vertical;
}

.form-submit {
  display: flex;
  justify-content: center;
  margin-top: 35px;
  margin-bottom: 50px;
}

.form-submit p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.form-submit input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 490px;
  height: 48px;
  padding: 0 16px;
  background: #6b818e;
  color: #fff;
  letter-spacing: 0.1875rem;
  border: 1px solid #6b818e;
  border-radius: 4px;
  transition: filter 0.2s ease, transform 0.06s ease;
  cursor: pointer;
}

.form-submit input[type="submit"]:hover {
  background: #fff;
  color: #6b818e;
  border: 1px solid #6b818e;
}

/* --- スピナー調整 --- */
.wpcf7-spinner {
  display: none !important;
}

/* ==============================
   お問い合わせ
============================== */

/* ==============================
   Parts
============================== */
/* contact.php */
section#contact-part {
  background: url("/wp-content/themes/wasabido_theme/library/images/common/parts-contact_bg.jpg")
    no-repeat center center / cover;
  padding: 80px 0;
}

.btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

/* pageTitle.php */
section.page-title {
  color: #fff;
  background-color: #715454;
  position: relative;
  width: 100%;
  padding: 150px 0 0;
  text-align: center;
  z-index: 0;
}

h1.lowPageTitle {
  letter-spacing: 0.625rem;
}

.lowPageSubtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.625rem;
  line-height: 1.25;
}

section.arc {
  /* width: 100vw; */
  min-height: calc(100vw * (119 / 2560));
  background: url("/wp-content/themes/wasabido_theme/library/images/common/top-catch_bg3.png")
    no-repeat center bottom;
  background-size: 101% auto;
  position: relative;
  z-index: 0;
  margin-top: -1px; /* 波と上部セクションをぴったり接続 */
  overflow: hidden;
}

/* ==============================
   Parts
============================== */

/* ==============================
   Footer
============================== */
#footer {
  background-color: #715454;
  color: #fff;
  text-align: center;
  padding: 60px 20px 40px;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.8;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ロゴ */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}
.footer-logo img {
  width: 104px;
  height: 117px;
}

/* メニュー */
.footer-nav ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  letter-spacing: 0.25rem;
  margin-bottom: 24px;
}
.footer-nav a {
  color: #fff;
  position: relative;
}
.footer-nav li::after {
  content: "|";
  margin-left: 16px;
}
.footer-nav li:last-child::after {
  content: none;
}

.footer-nav li a:hover {
  opacity: 50%;
}

.footer-desc {
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  margin-bottom: 3px;
}
.footer-info {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  margin-bottom: 3px;
}

.copyright {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  letter-spacing: 0.25rem;
  opacity: 0.8;
}

/* ==============================
   Footer
============================== */

/* ==============================
   responsive
============================== */

@media screen and (max-width: 1920px) {
  section.service-concept {
    padding-bottom: 200px;
  }
  .service-concept .sub-img {
    bottom: -117px;
  }
}

@media screen and (max-width: 1536px) {
  section.service-concept {
    padding-bottom: 250px;
  }
  .service-concept .sub-img {
    bottom: -187px;
  }
}

@media screen and (max-width: 1440px) {
  .service-concept .sub-img {
    bottom: -200px;
  }
}

@media screen and (max-width: 1366px) {
}

@media screen and (max-width: 1280px) {
}

@media screen and (max-width: 1024px) {
  .works-list {
    gap: 15px;
  }
  section.service-concept {
    padding-bottom: 300px;
  }
  .service-concept .sub-img {
    bottom: -230px;
  }
  .service-content {
    gap: 52px;
  }
  .archive-works .archive-list,
  .archive-news .archive-list {
    gap: 15px;
    margin: 50px 10px 0;
  }
}

@media screen and (max-width: 810px) {
  .single-gallery {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .deco-lamp {
    top: -99px;
    left: 3%;
    width: 115px;
  }
  .deco-flower {
    right: 0%;
    width: 150px;
  }
  .archive-list .works-item {
    width: 250px;
  }
  .btn-container {
    flex-direction: column;
  }
  .service .container {
    max-width: 710px;
  }
  .news .news-list {
    max-width: 710px;
    padding-left: 0;
  }
  .message-container {
    flex-direction: column;
    gap: 40px;
    width: 710px;
  }
  .profile {
    margin: 0 auto;
  }
  .message-detail {
    width: 710px;
  }
  .info-table {
    width: 710px;
  }
  div#service .section-inner {
    max-width: 680px;
  }
  .service-concept__card {
    padding-top: 160px;
  }
  .service-concept .blank_container {
    display: none;
  }
  .service-concept .concept-text {
    box-shadow: inherit;
  }
  section.service-concept {
    padding-bottom: 50px;
  }
  .service-concept .main-img img,
  .service-concept .sub-img img {
    border-radius: 20px;
    width: 65%;
  }
  .service-concept .main-img {
    top: -180px;
    left: 20px;
  }
  .service-concept .sub-img {
    bottom: 210px;
    left: 450px;
    width: 35%;
  }
  .service-section .content-text {
    width: 680px;
  }
  .service-content__wrap {
    gap: 30px;
  }
  .service-workshop .service-image img {
    width: 358px;
    height: 286px;
  }
  .works-filter a,
  .news-filter a {
    width: 100px;
  }
  .single-gallery {
    gap: 4px;
  }
}

@media screen and (max-width: 480px) {
  /* ==============================
   Header
============================== */

  :root {
    --header-h: 56px;
  }
  .header-bar {
    padding: 0 12px;
  }
  .hamburger-btn {
    width: 36px;
    height: 36px;
  }
  .header-logo img {
    height: 40px;
  }
  .header-cta {
    display: none;
  }
  .drawer-menu {
    width: 100%;
  }

  /* ==============================
   Header
============================== */
  section.catch {
    padding: 50px 0 60px;
  }
  .catch h2 {
    width: 300px;
    margin: 20px auto;
    text-align: left;
  }
  .catch p {
    width: 300px;
    margin: 0 auto;
    text-align: left;
  }
  .btn a {
    width: 290px;
  }
  .deco-lamp,
  .deco-flower {
    display: none;
  }
  .section-title {
    margin-bottom: 40px;
  }
  .service .container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  section.service {
    padding: 150px 0 80px;
  }
  .service .container {
    max-width: 380px;
  }
  .service-text {
    text-align: left;
  }
  .archive-list .works-item {
    width: 311.5px;
  }
  .news .news-list {
    max-width: 390px;
  }
  .news .news-item {
    gap: 20px;
  }
  .news-date {
    width: 70px;
  }
  .news-cat {
    width: 70px;
  }
  section#contact-part {
    padding: 60px 0 80px;
  }
  section.page-title {
    padding: 100px 0 30px;
  }
  .profile-img img {
    width: 390px;
  }
  .message-container {
    width: 390px;
    margin: 20px auto;
  }
  .message-detail {
    width: 390px;
  }
  .info-table {
    width: 390px;
  }
  .service-section {
    padding: 50px 0;
  }
  section.service-concept {
    padding-left: 20px;
  }
  .service-concept .concept-text {
    width: 300px;
    padding: 12.5px 20px;
  }
  .concept-text__inner {
    width: 322px;
  }
  .service-concept .main-img {
    width: 95%;
  }
  .service-concept .sub-img {
    bottom: 225px;
    left: 230px;
    width: 42%;
  }
  .service-concept__card {
    padding-top: 30px;
  }
  .service-content__wrap {
    flex-direction: column;
  }
  .service-content__item {
    width: 380px;
  }
  .service-section .content-text {
    width: 380px;
    padding-left: 20px;
  }
  .service-section.reverse .service-content .content-text {
    padding-right: 20px;
  }
  .service-fusui .service-image,
  .service-reform .service-image {
    padding-left: 20px;
  }
  .service-section.reverse .service-image {
    padding-right: 20px;
  }
  div#service .section-inner {
    max-width: 380px;
  }
  .archive-works,
  .archive-news {
    padding: 100px 0 80px;
  }
  .works-filter,
  .news-filter {
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px auto;
  }
  .works-filter a {
    width: 80px;
  }
  .news-filter a {
    width: 95px;
  }
  .archive-works .archive-list,
  .archive-news .archive-list {
    grid-template-columns: inherit;
  }
  .archive-list .news-item {
    width: 311.5px;
    margin: 0 auto;
  }
  .before-after {
    flex-direction: column;
    gap: 15px;
  }
  .before img {
    width: 300px;
    height: 240px;
  }
  .after img {
    width: 380px;
    height: 304px;
  }
  #single-news {
    max-width: 380px;
    padding: 120px 0 80px;
  }
  .single-meta {
    margin-top: 30px;
    margin-bottom: 40px;
  }
  .single-thumb img {
    margin-bottom: 0;
  }
  .single-gallery img {
    width: 380px;
    height: 285px;
  }
  div#contact .section-inner {
    max-width: 380px;
  }
  .form-submit input[type="submit"] {
    width: 290px;
  }

  /* ==============================
   Footer
============================== */
  #footer {
    padding: 40px 16px 24px;
  }
  .footer-logo img {
    height: 80px;
  }
  nav.footer-nav {
    display: none;
  }
  .footer-desc,
  .footer-info {
    font-size: 0.8125rem;
  }
  /* ==============================
   Footer
============================== */
}

@media screen and (max-width: 430px) {
}

@media screen and (max-width: 412px) {
  .service-concept .sub-img {
    left: 220px;
  }
}

@media screen and (max-width: 393px) {
  .profile-img img {
    width: 330px;
  }
  .message-detail {
    width: 360px;
    padding-left: 15px;
  }
  section.service-concept {
    padding-left: 10px;
  }
  div#service .section-inner {
    max-width: 360px;
  }
  .service-concept .sub-img {
    bottom: 240px;
    left: 215px;
  }
  .service-content__item {
    width: 365px;
  }
}

@media screen and (max-width: 390px) {
  .news .news-list {
    max-width: 350px;
  }
  .message-container {
    width: 310px;
  }
  .profile-img img {
    width: 100%;
  }
  .message-detail {
    width: 310px;
    padding-left: 10px;
  }
  section.service-concept {
    padding-left: 0;
  }
  .service-concept .section-inner {
    margin-left: 16px !important;
  }
  .service-concept .main-img {
    width: 105%;
    top: -180px;
    left: 15px;
  }
  .service-concept .sub-img {
    bottom: 250px;
    left: 200px;
    width: 50%;
  }
  div#service .section-inner {
    max-width: 310px;
  }
  .service-section h2 {
    font-size: clamp(1.3rem, 3vw, 1.875rem);
  }
  .service-content__item {
    width: 310px;
  }
  .before img {
    width: 280px;
    height: 224px;
  }
  .after img {
    width: 350px;
    height: 280px;
  }
  #single-news {
    max-width: 310px;
    padding: 120px 0 80px;
  }
  .single-thumb img {
    height: 300px;
  }
  .single-gallery img {
    width: 310px;
    height: 233px;
  }
  div#contact .section-inner {
    max-width: 310px;
  }
  #footer {
    padding: 40px 5px 24px;
  }
}

@media screen and (max-width: 375px) {
  .info-table {
    width: 350px;
  }
  .service-concept .section-inner {
    margin-left: 11px !important;
  }
  .service-workshop .service-image img {
    width: 318px;
    height: 254px;
  }
}

@media screen and (max-width: 320px) {
  .news .news-item {
    gap: 10px;
  }
  .message-detail {
    width: 300px;
  }
  .info-table {
    width: 300px;
    border-spacing: 10px 0;
  }
  div#service .section-inner {
    margin: 0;
  }
  .service-concept .main-img {
    width: 100%;
    top: -180px;
    left: 5px;
  }
  .service-concept .sub-img {
    bottom: 268px;
    left: 158px;
    width: 50%;
  }
  .concept-text__inner {
    width: 270px;
  }
  .service-concept .concept-text {
    width: 270px;
    padding: 12.5px 15px;
  }
  .service-concept .concept-text .concept-text__inner h2 {
    font-size: 16px;
    font-weight: 300;
  }
  .service-section h2 {
    font-size: clamp(1.4rem, 3vw, 1.875rem);
  }
  .service-section .content-text {
    width: 300px;
  }
  .service-content__item {
    width: 300px;
    margin: 0 10px;
  }
  .archive-list .works-item {
    width: 300px;
  }
  .archive-list .news-item {
    width: 300px;
  }
  .before img {
    width: 230px;
    height: 200px;
  }
  .after img {
    width: 280px;
    height: 224px;
  }
  .single-gallery img {
    width: 307px;
    height: 233px;
  }
}
/* ==============================
   responsive
============================== */
