/* Content of your original styles.css, with paths adjusted */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: 2.8px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  background-color: #1F1F1F;
}

header {
  background-color: #111;
  padding: 10px 20px;
  position: fixed;
  width: 100vw;
  z-index: 10;
}

.nav-container {
  display: flex;
  align-items: center;
}
nav li a {
  color: #fff;
  text-decoration: none;
  font-family: 'Noto Serif JP', sans-serif;
}
.st-menu-list {
  display: none;
}

.logo-box {
  flex-grow: 1;
}
.logo {
  width: 200px;
  height: 55px;
  background: url('../images/t-sauna_logo.png') no-repeat center center; /* Adjusted path */
  background-size: 200px 25px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  font-size: 0.9rem;
}

.scroll-offset {
  padding-top: 75px;
  margin-top: -75px;
}

.menu-button {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
}

.menu-button span {
  width: 25px;
  height: 2px;
  background-color: white;
}

/* ヒーローセクション */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 0 32px;
}

.hero-images {
  display: flex;
  height: 100vh;
  gap: 8px;
}

.hero-content img {
  width: 622px;
  height: auto;
}

.img1 {
  background-image: url('../images/top-left.png'); /* Adjusted path */
}
.img2 {
  background-image: url('../images/top-center.png'); /* Adjusted path */
}
.img3 {
  background-image: url('../images/top-right.png'); /* Adjusted path */
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1rem;
}

.hero-image {
  flex: 1;
  background-size: cover;
  background-position: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 30px;
  margin-bottom: 30px;
  text-shadow: 0 0 20px black;
}

.hero-content .features {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.hero-content .feature-box {
  border: 1px solid white;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.4);
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 4px 4px 1px 0 rgba(31, 31, 31, 0.7);
}

.section-title {
  position: relative;
  /* margin-bottom: 0.2rem; */ /* Adjusted from original for consistency */
  font-weight: bold;
  font-size: 48px;
  text-align: center;
  letter-spacing: 2.8px;
  font-weight: 300;
  font-family: 'Noto Serif JP', sans-serif;
  margin-bottom: 60px; /* Kept from original */
}
.section-title::before {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 90px;
  text-transform: uppercase;
  opacity: 0.1;
  letter-spacing: 2.8px;
}

/* 強みセクション */
.section-title.strength {
  margin-bottom: 0;
}
.section-title.strength::before {
  content: 'STRENGTH';
}
.strength-section {
  width: 100%;
  height: 100vh;
  min-height: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: -2;
  background-image: url('../images/strength.png'); /* Adjusted path */
}
.strength-section-container {
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.strength-section .features {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.strength-section .feature {
  width: 377px;
}
.strength-section .feature-title {
  background-color: #fff;
  color: #1F1F1F;
  width: 317px;
  height: 53px;
  font-size: 24px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  padding-left:16px;
  letter-spacing: 0;
}
.strength-section .feature-title::before {
  position: absolute;
  width: 120px;
  height: 53px;
  top: 50%;
  right: -60px;
  background-color: #797979;
  opacity: 0.4;
  content: "";
  z-index: -1;
}
.strength-section .feature-content {
  padding-left: 16px;
  font-size: 18px;
}

/* FAQセクション */
.FAQ-section {
  display: flex;
  flex-direction: column;
  padding: 120px 0 80px 0;
  justify-content: center;
  align-items: center;
}

.FAQ-section .feature-title {
  color: #FF6B00;
  font-size: 20px;
}

.section-title.FAQ::before {
  content: 'FAQ';
}

.FAQ-section .features {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  gap: 36px;
}
.FAQ-section .feature {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 960px;
  gap: 16px;
}
.FAQ-section .feature-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
}
.question {
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
}
.answer {
  display: none;
  padding-top: 24px;
}
.answer a {
  color: #fff; /* Ensured specificity */
}

.Q-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-family: 'Roboto Condensed';
  font-size: 20px;
  color: #1F1F1F;
  background-color: #fff;
}
.question-content {
  flex: 1;
  margin-left: 12px;
  font-size: 18px;
}

.down-arrow {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* 商品一覧 */
.products-section {
  background-color: #fff;
  width: 100%;
  padding: 120px;
}

.section-title.prod {
  color: #1F1F1F;
}
.section-title.prod::before {
  content: 'PRODUCTS';
  color: #1F1F1F;
  opacity: 0.05;
}

.products-section-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.products-section-tab {
  display: flex;
  align-items: end;
  text-decoration: none;
}
.products-section-tab > div:nth-of-type(1) {
  font-size: 14px;
  color: #1F1F1F;
  border-bottom: 2px solid #FF6B00;
  padding: 0 4px;
  padding-bottom: 1px;
}
.products-section-tab > div:nth-of-type(2) {
  font-size: 22px;
  color: #1F1F1F;
  border-bottom: 0.5px solid rgba(31, 31, 31, 0.5);
  padding-left: 32px;
  padding-right: 16px;
}
.products-section-tab > img {
  padding-bottom: 5px;
  border-bottom: 0.5px solid rgba(31, 31, 31, 0.5);
}

.products {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}
.product {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
.product-title {
  width: 450px;
}
.product-title > div:nth-of-type(1) {
  font-size: 24px;
  background-color: rgba(31, 31, 31, 0.6);
  padding: 8px 24px;
  margin-bottom: 8px;
}
.product-title > div:nth-of-type(2) {
  font-size: 20px;
  letter-spacing: 2.8px;
  color: #1F1F1F;
  padding: 0 24px;
}
.product-title > div:last-child {
  font-size: 36px;
  letter-spacing: 2.8px;
  color: #1F1F1F;
  padding: 0 24px;
}

.product-subtitles {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.product-subtitle {
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-subtitle > div:nth-of-type(1) {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 28px;
  background-color: #1F1F1F;
  opacity: 0.6;
  font-family: "Allerta Stencil", sans-serif;
  flex-shrink: 0;
}
.product-subtitle > div:nth-of-type(1)::after {
  content: "";
  width: 44px;
  height: 44px;
  position: absolute;
  transform: rotate(45deg);
  border: solid 1px #F2F4F5;
}
.product-subtitle > div:nth-of-type(2) {
  color: #1F1F1F;
  font-size: 18px;
}

.detail-button {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.detail-button > img {
  margin-left: -24px
}
.detail-button-box {
  width: 190px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #C3C3C3;
  font-size: 18px;
  color: #1F1F1F;
}

.product-images {
  display: flex;
  gap: 60px;
  justify-content: center;
}
.product-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.product-img-title {
  color: #1F1F1F;
  font-size: 28px;
  font-weight: bold;
}

.dummy {
  width: 510px;
  visibility: hidden;
}

.product-img-title-multi {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1F1F1F;
}
.product-img-title-multi > div:nth-of-type(1) {
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 10px;
  background-color: rgba(31, 31, 31, 0.1);
  margin-bottom: 16px;
}
.product-img-title-multi > div:nth-of-type(2) {
  font-size: 20px;
  font-weight: bold;
}
.product-img-title-multi > div:nth-of-type(3) {
  font-size: 28px;
  font-weight: bold;
}

.product-img {
  background-size: cover;
  background-position: center;
  width: 510px;
  height: 562px;
}

.blog-section {
  padding: 120px 0;
  background-color: #E9E9E9;
}
.section-title.blog {
  color: #1F1F1F;
}
.section-title.blog::before {
  color: #1F1F1F;
  opacity: 0.05;
  content: 'ARTICLE';
}

/* --- Blog List Styling Starts --- */
.blog-list {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Makes flex items (blog-card-link) same height */
  gap: 32px;
  flex-wrap: wrap; /* Allows wrapping on smaller screens if needed */
}

.blog-card-link {
  text-decoration: none;
  color: inherit;
  display: flex; /* Allows the link to be stretched by align-items:stretch */
  width: 392px; /* Set width on the link if it's the direct flex child */
}

.blog-card-link:hover .blog-card div:nth-of-type(1) { /* Targeting the title div */
  color: #FF6B00; /* Your theme orange for hover */
}

.blog-card {
  display: flex;
  flex-direction: column;
  /* align-items: center; */ /* Align items to start for more control */
  align-items: flex-start;
  text-align: left;
  width: 100%; /* Card takes full width of its link container */
  height: 100%; /* Card takes full height of its link container */
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  /* gap: 16px; Removed to use margins for more precise control */
  box-sizing: border-box;
}

.blog-card .blog-image { /* This targets <img> or <figure> with class .blog-image */
  width: 100%; /* Image width takes full padded width of card */
  height: 194px; /* Fixed height as per original design */
  object-fit: cover; /* Ensures image covers the area without distortion */
  margin-bottom: 16px; /* Space between image and title */
  display: block; /* Removes any extra space below the image if it's inline */
}

/* This targets the div wrapping the title (the_title()) */
.blog-card > div:nth-of-type(1) {
  font-weight: bold;
  font-size: 18px;
  color: #1F1F1F;
  /* padding: 0 16px; */ /* Padding is on .blog-card now */
  min-height: 72px; /* As per original design, adjust if needed for ~3 lines */
  line-height: 1.35; /* Approx 18px * 1.35 * 3 lines = ~73px */
  margin-bottom: 10px; /* Space between title and excerpt */
  width: 100%; /* Ensure it takes full width for text alignment */

  /* Multi-line ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* This targets the div wrapping the excerpt (the_excerpt()) */
.blog-card > div:nth-of-type(2) {
  font-weight: lighter;
  font-size: 14px;
  color: #1F1F1F;
  /* padding: 0 16px; */ /* Padding is on .blog-card now */
  line-height: 1.5;
  width: 100%; /* Ensure it takes full width */
  flex-grow: 1; /* Allows this to take up remaining space if card height is more flexible */

  /* Multi-line ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Limit to 4 lines, adjust as needed */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* --- Blog List Styling Ends --- */


.company-section {
  padding: 40px 120px 120px;  
}

.section-title.company::before {
  content: 'COMPANY';
}

.company-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.company-content {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  width: 100%;
  gap: 8px;
  padding: 24px;
  flex-grow: 1;
  border-bottom: solid 1px #fff;
}
.company-content > div:nth-of-type(1) {
  font-weight: bold;
  font-size: 20px;
}
.company-content > div:nth-of-type(2) {
  font-weight: lighter;
  font-size: 18px;
}

.inquiry-section {
  padding: 120px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.section-title.inquiry {
  color: #1F1F1F;
} 

.inquiry-section form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 990px;
  width: 100%;
}

.inquiry-label {
  color: #1F1F1F;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
}

.form-table {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
}
.form-table tr {
  display: flex;
  margin-bottom: 24px;
}
.form-table th {
  width: 25%;
  display: flex;
}
.form-table th::after {
  padding-left: 8px;
  content: '*必須';
  color: #FF6B00;
  font-size: 11px;
}
.form-table td {
  width: 75%;
}

.form-table input {
  background-color: #F2F2F2;
  border: none;
  padding: 11px 13px;
  width: 100%;
}
.form-table input:focus {
  outline: none;
}

.form-table input {
  background-color: #F2F2F2;
  border: none;
  padding: 11px 13px;
  width: 100%;
}
.form-table input:focus {
  outline: none;
}

.form-table textarea {
  background-color: #F2F2F2;
  border: none;
  padding: 11px 13px;
  width: 100%;
  resize: none;
}
.form-table textarea:focus {
  outline: none;
}

.inquiry-section form p {
  font-size: 16px;
  width: 100%;
  color: #1F1F1F;
  padding: 24px 0;
}

.privacy {
  color: #1F1F1F;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
  border: 1px solid #CCCCCC;
  height: 250px;
  overflow-y: auto;
}
.privacy h3 {
  font-size: 20px;
  font-weight: lighter;
}
.privacy p {
  font-weight: lighter;
  font-size: 16px;
  padding: 20px 0;
}
.privacy dt {
  font-size: 14px;
  font-weight: bold;
  padding: 12px 0;
}
.privacy dd {
  font-size: 14px;
  font-weight: lighter;
}

.agreement-section {
  color: #1F1F1F;
  font-size: 14px;
  font-weight: lighter;
  margin: 24px 0;
}
.agreement-section span {
  margin-left: 12px;
}
input[type="checkbox"] {
  transform: scale(1.5); /* 1.0 = 通常サイズ、1.5 = 1.5倍 */
  margin: 5px; /* スケーリングによってずれる場合の調整 */
}

.confirm-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  /* text-decoration: none; */ /* Removed duplicate */
  border: none;
  background-color: inherit;
}
.confirm-button:hover {
  cursor: pointer;
}
.confirm-button > img {
  margin-left: -35px
}
.confirm-button-box {
  width: 209px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6B00;
  font-size: 18px;
  padding-right: 16px;
  color: #fff;
}

.t-sauna-inner {
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.t-sauna-inner img {
  width: 200px;
  height: auto;
}

.t-sauna-footer__logoarea p {
  font-weight: lighter;
  font-size: 10px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.none {
  display: none;
}

.modaal-content-container {
  background-color: #1f1f1fb3;
  padding: 48px !important;
}

.modal-container {
  display: flex;
  gap: 16px;
}

.slide-img {
  width: 100%;
  height: auto;
  padding: 0 46px;
}
.slider-main {
  width: 50%;
}
.modal-prod-data {
  width: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #1F1F1F;
}

.swiper {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.thumb-img {
  width: 60px;
  height: 60px;
}
.swiper-slide-thumb-active {
  opacity: 0.3;
}

.modal-title {
  color: #FF6B00;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.modal-title span {
    font-size: 14px;
}


.slider-thumb {
  max-width: 100%;
} 
.modal-prod-data table {
  border-collapse: separate;
  width: 100%;
  margin-top: 16px;
}
.modal-prod-data th {
  width: 30%;
  background-color: #1F1F1F;
  padding: 8px;
  color: #fff;
}
.modal-prod-data td {
  width: 70%;
  background-color: rgba(31, 31, 31, 0.3);
  padding: 8px;
  color: #fff;
}

.modal-note {
  font-size: 14px;
  color: #fff
}

.move-inquiry-button {
  margin-top: 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  /* text-decoration: none; */ /* Removed duplicate */
  border: none;
  background-color: inherit;
  width: 100%;
}
.move-inquiry-button:hover {
  cursor: pointer;
}
.move-inquiry-button > img {
  margin-left: -18px
}
.move-inquiry-button-box {
  width: calc(100% - 30px);
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  font-size: 18px;
  padding-right: 16px;
  color: #FF6B00;
}

.form-table-wrapper{
  width: 100%;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* 初期状態では非表示 */
  .menu-list {
    display: none;
  }
  .st-menu-list {
    /* display: none; */ 
  }
  nav ul {
    padding: 8px 0;
    flex-direction: column;
  }
  nav ul a {
    width: 100%;
  }

  .menu-button {
    display: flex;
  }

  .hero-images {
    background-size: cover;
    background-position: center;
    background-image: url('../images/st-top.png'); /* Adjusted path */
    height: calc(100svh - 75px);
  }

  .hero-image {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero {
    padding-top: 75px;
  }
  .hero-content .features {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }
  .hero-content .feature-box {
    width: 88px;
    height: 88px;
  }
  .hero-content {
    width: 100%;
    padding: 0 4px;
  }
  .hero-content img {
    width: 277px;
    height: auto;
  }
  .hero-content .feature-box {
    font-size: 14px;
  }

  .section-title {
    font-size: 34px;
    text-align: left;
    padding-left: 4px;
  }
  .section-title::before {
    display: none;
  }

  .strength-section {
    background-image: none;
    height: 100%;
    justify-content: start
  }
  .strength-section .features {
    flex-direction: column;
    align-items: start;
  }

  .strength-section .feature-title {
    font-size: 20px;
    width: 280px;
    height: 46px;
  }
  .strength-section .feature-title::before {
    height: 46px;
  }

  .strength-section .feature-content {
    font-size: 15px;
  }

  .products-section {
    padding: 80px 0;
  }
  .products-section-tabs {
    flex-direction: column;
  }

  .product-img-title {
    font-size: 16px;
  }
  .products-section-tab {
    display: flex;
    align-items: end;
    text-decoration: none;
  }
  .products-section-tab > div:nth-of-type(1) {
    width: 92px;
  }
  .products-section-tab > div:nth-of-type(2) {
    width: 124px;
    padding-left: 16px;
    padding-right: 8px;
  }
  .products-section-tab > img {
    padding-bottom: 5px;
    border-bottom: 0.5px solid rgba(31, 31, 31, 0.5);
  }

  .product-header {
    flex-direction: column;
    align-items: start;
    gap: 8px;
  }
  .product-title {
    width: 100%;
  }
  .product-title > div:nth-of-type(1) {
    position: relative;
    width: 280px;
    font-size: 20px;
    color: #1F1F1F;
    background-color: rgba(31, 31, 31, 0.1);
    margin-bottom: 40px;
    padding: 8px 15px;
  }
  .product-title > div:nth-of-type(1)::before {
    position: absolute;
    width: 120px;
    height: 46px;
    top: 50%;
    right: -60px;
    background-color: #797979;
    opacity: 0.4;
    content: "";
  }
  .product-title > div:nth-of-type(2) {
    font-size: 14px;
    font-weight: bold;
    padding: 0 15px;
  }
  .product-title > div:nth-of-type(3) {
    font-size: 24px;
    font-weight: bold;
    padding: 0 15px;
  }

  .product-subtitle {
    padding: 0 15px;
  }
  .product-subtitle > div:nth-of-type(2) {
    font-size: 14px;
  }

  .product-images {
    gap: 15px;
    padding: 0 15px
  }
  .product-img { /* This is for product detail images, not blog */
    width: 100%;
    height: auto;
    padding: 0 24px;
  }
  .product-img-title-multi > div:nth-of-type(1) {
    font-size: 12px;
  }
  .product-img-title-multi > div:nth-of-type(2) {
    font-size: 12px;
  }
  .product-img-title-multi > div:nth-of-type(3) {
    font-size: 14px;
  }

  .detail-button-box {
    font-size: 14px;
    width: 140px;
    height: 30px;
    padding-right: 16px;
  }

  .blog-section {
    padding: 80px 0;
  }
  .blog-list {
    flex-direction: column; /* On mobile, stack blog cards */
    padding: 0 15px;
    align-items: center; /* Center cards if they don't take full width */
  }
  .blog-card-link { /* Ensure link takes appropriate width on mobile */
      width: 100%;
      max-width: 392px; /* Can retain max-width if desired, or remove for full mobile width */
  }
  .blog-card {
    width: 100%; /* Card takes full width of its link container */
  }
  .blog-image { /* This is already defined for desktop, ensure it's good for mobile */
    width: 100%; /* Will adapt to card width */
    /* height: 194px; Maintain fixed height or make it responsive e.g. aspect-ratio */
  }

  .section-title.FAQ {
    width: 100%;
  }

  .FAQ-section {
    padding: 80px 0;
  }
  .FAQ-section .features {
    padding: 0 15px;
  }
  .FAQ-section .feature-content {
    padding: 12px;
  }
  .question-content {
    font-size: 15px;
  }

  .company-section {
    padding: 0 0 80px;
  }
  .company-detail {
    padding: 0 15px
  }
  .company-content > div:nth-of-type(1) {
    font-size: 14px;
  }
  .company-content > div:nth-of-type(2) {
    font-size: 14px;
  }

  .inquiry-section {
    padding: 80px 0;
  }
  .section-title.inquiry {
    width: 100%;
  }
  .form-table th {
    width: 100%;
    margin-bottom: 8px;
  }
  .form-table td {
    width: 100%;
  }
  .form-table tr {
    flex-wrap: wrap;
    justify-content: center;
  }
  .st-none {
    display: none;
  }
  .inquiry-section form {
    padding: 0 15px;
  }
  .inquiry-section form p {
    font-size: 14px;
  }

  .privacy {
    height: 250px;
    overflow-y: auto;
  }
  
  .slider-main, .slider-thumb, .modal-prod-data {
    width: 100%;
  }
  .modal-container {
    flex-direction: column;
    width: 100%;
  }
  .modaal-content-container {
    padding: 36px 22px !important;
  }
  .modaal-inner-wrapper {
    max-width: 100svw;
    padding: 25px !important;
  }
  .modal-prod-data th {
    font-size: 12px;
  }
  .modal-prod-data td {
    font-size: 12px;
  }
  .move-inquiry-button-box {
    font-size: 12px;
    padding-left: 8px;
  }

  .answer {
    padding-top: 12px
  }
}

/* Styles for single.php */
.single-post-page {
  padding: 120px 20px 40px; /* 上边距匹配 header 高度 + 一些额外空间, 左右和下边距 */
  color: #ff0000; /* 深色文字以便在浅色背景上阅读 */
  background-color: #fff; /* 单篇文章页面使用浅色背景 */
}

.single-post-page .site-main {
  max-width: 960px; /* 限制内容最大宽度 */
  margin: 0 auto; /* 居中 */
}

.single-post-page .entry-header {
  margin-bottom: 30px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  background-color: #fff;
}

.single-post-page .entry-title {
  font-size: 2.5rem;
  color: #000000; /* 主题深色 */
  font-family: 'Noto Serif JP', sans-serif;
  margin-bottom: 10px;
  background-color: #fff; 
}

.single-post-page .entry-meta {
  font-size: 0.9rem;
  color: #777;
}

.single-post-page .entry-meta .posted-on,
.single-post-page .entry-meta .byline {
  margin-right: 15px;
}

.single-post-page .post-thumbnail {
  margin-bottom: 30px;
}

.single-post-page .post-thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.single-post-page .entry-content {
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}

.single-post-page .entry-content p {
  margin-bottom: 1.5em;
}

.single-post-page .entry-content a {
  color: #FF6B00; /* 主题橙色 */
  text-decoration: underline;
}
.single-post-page .entry-content a:hover {
  text-decoration: none;
}

.single-post-page .entry-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  font-size: 0.9rem;
  color: #555;
}

.single-post-page .cat-links,
.single-post-page .tags-links {
  display: block;
  margin-bottom: 10px;
}

.post-title-blackwhite, .post-content-blackwhite {
  color: #111;
  background: #ffffff00;
}
.post-title-blackwhite-title {
  color: #060606;
  /* background: #fff; */
  /* font-size: 32px; */
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.2;
}

/* 修正后的表单样式 - 适配Contact Form 7的div结构 */

/* 表单容器样式 */
.inquiry-section form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 990px;
  width: 100%;
}

/* 表单字段标签样式 */
.inquiry-label {
  color: #1F1F1F;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

/* 添加必须标记 */
.inquiry-label::after {
  padding-left: 8px;
  content: '*必須';
  color: #FF6B00;
  font-size: 11px;
}

/* 表单表格样式 - 改为div布局 */
.form-table {
  width: 100%;
  border-bottom: 1px solid #CCCCCC;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* 表单行样式 */
.form-row {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* 输入框样式 */
.form-table input[type="text"],
.form-table input[type="tel"],
.form-table input[type="email"],
.form-table .wide {
  background-color: #F2F2F2;
  border: none;
  padding: 11px 13px;
  width: 100%;
  box-sizing: border-box;
}

.form-table input:focus {
  outline: none;
}

/* 文本域样式 */
.form-table textarea {
  background-color: #F2F2F2;
  border: none;
  padding: 11px 13px;
  width: 100%;
  resize: none;
  box-sizing: border-box;
  min-height: 120px; /* 设置最小高度 */
}

.form-table textarea:focus {
  outline: none;
}

/* 表单说明文字 */
.inquiry-section form p {
  font-size: 16px;
  width: 100%;
  color: #1F1F1F;
  padding: 24px 0;
}

/* 隐私政策区域 */
.privacy {
  color: #1F1F1F;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 24px;
  border: 1px solid #CCCCCC;
}

.privacy h3 {
  font-size: 20px;
  font-weight: lighter;
}

.privacy p {
  font-weight: lighter;
  font-size: 16px;
  padding: 20px 0;
}

.privacy dt {
  font-size: 14px;
  font-weight: bold;
  padding: 12px 0;
}

.privacy dd {
  font-size: 14px;
  font-weight: lighter;
}

/* 复选框区域 */
.agreement-section {
  color: #1F1F1F;
  font-size: 14px;
  font-weight: lighter;
  margin: 24px 0;
}

.agreement-section span {
  margin-left: 12px;
}

input[type="checkbox"] {
  transform: scale(1.5);
  margin: 5px;
  width: 13px;
}

/* 提交按钮样式 */
.confirm-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  border: none;
  background-color: inherit;
  cursor: pointer;
}

.confirm-button:hover {
  cursor: pointer;
}

.confirm-button > img {
  margin-left: -110px;
}

.confirm-button-box {
  width: 209px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FF6B00;
  font-size: 18px;
  padding-right: 16px;
  color: #fff;
  padding-block: 2px;
}

/* 响应式设计 - 移动端适配 */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 80px 0;
  }
  
  .inquiry-section form {
    padding: 0 15px;
  }
  
  .inquiry-section form p {
    font-size: 14px;
  }
  
  .form-row {
    margin-bottom: 20px;
  }
  
  .inquiry-label {
    font-size: 14px;
  }
  
  .form-table input[type="text"],
  .form-table input[type="tel"],
  .form-table input[type="email"],
  .form-table .wide,
  .form-table textarea {
    font-size: 16px; /* 防止iOS缩放 */
  }
  
  .confirm-button-box {
    width: 180px;
    font-size: 16px;
  }
}

/* Contact Form 7 特定样式调整 */
.wpcf7 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 990px;
  width: 100%;
}

.wpcf7-form {
  width: 100%;
}

.wpcf7-response-output {
  color: #000;
}

/* 错误信息样式 */
.wpcf7-not-valid-tip {
  color: #FF6B00;
  font-size: 12px;
  margin-top: 5px;
}

.wpcf7-validation-errors {
  color: #FF6B00;
  border: 1px solid #FF6B00;
  background-color: #fff5f5;
  padding: 10px;
  margin: 10px 0;
}

.wpcf7-mail-sent-ok {
  color: #4CAF50;
  border: 1px solid #4CAF50;
  background-color: #f5fff5;
  padding: 10px;
  margin: 10px 0;
}
input, textarea {
  width: 100%;  /* 或根据布局用 calc(100% - 〇px) */
  padding: 10px;
  box-sizing: border-box;
}

.content-area {
  height: 100%;
}

.wp-singular {
  display: flex;
  flex-direction: column;
  height: 100svh;
}

main {
  flex-grow: 1;
}

/* Removed duplicate .blog-card-link and .blog-image from end of file as they are now integrated above */
/* Ensure no closing brace from previous version was left hanging. The provided snippet didn't have one but good to double check. */