/* 和粋庵 カスタムスタイル */

/* リセットとベーススタイル */

/* コンテナ */
.page-container {
  max-width: 100%;
  background-color: #fff;
}

/* トップバナーセクション */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-title {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  font-family: serif;
  font-weight: 500;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: white;
}

/* 比較画像セクション */
.comparison-section {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1rem;
  /* margin-bottom: 32px; */
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.comparison-item {
  text-align: center;
}

.comparison-image-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-bottom: 0.75rem;
}

.comparison-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-title {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.comparison-description {
  font-size: 0.875rem;
  color: #666;
}

/* はじめにセクション */
.intro-section {
  background-color: #f5f5f5;
  padding: 3rem 0;
}

.intro-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 1rem;
}

.intro-container2 {
  max-width: 896px;
  margin: 0 auto;

}

.section-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
  position: relative;
}

.section-title2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
  position: relative;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
}

/* 作務衣・甚平セクション */
.product-section {
  max-width: 1152px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.product-section-alt {
  padding: 3rem 0;
}

.product-section-alt .product-section {
  padding: 0 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.product-content {
  order: 2;
}

.product-image-wrapper {
  order: 1;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-description {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #4b5563;
}

.product-text {
  font-size: 0.875rem;
  line-height: 1.75;
}

.product-feature {
  border-left: 4px solid #1f2937;
  padding-left: 0.75rem;
  margin-top: 1rem;
}

.feature-title {
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-description {
  font-size: 0.75rem;
  color: #666;
  margin-top: 0.25rem;
}

/* 商品一覧 */


.product-list-title {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 500;
  margin-top: 2rem;
  position: relative;
}

.product-list-title::after{
  content: '';
  display: block;
  bottom: -30px;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg,#a1887f,#bcaaa4);
  margin: 24px auto 0;
}

.product-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 896px;
  margin: 0 auto;
}

.product-card {
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-card-image-wrapper {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-card-image {
  transform: scale(1.05);
}

.product-card-content {
  padding: 1rem;
}

.product-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.product-card-description {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.product-price {
  font-size: 1.25rem;
}

.product-price-note {
  font-size: 0.75rem;
  color: #999;
  margin-top: 0.25rem;
}

/* あとがきセクション */
.afterword-section {
  margin: 0 auto;
  padding: 3rem 1rem;
  background-color: #f5f5f5;
}

.afterword-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.afterword-text {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.75;
}

.brand-signature {
  margin-top: 2rem;
  text-align: center;
}

.brand-box {
  display: inline-block;
  border-top: 2px solid #1f2937;
  border-bottom: 2px solid #1f2937;
  padding: 0.75rem 1.5rem;
}

.brand-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.brand-description {
  font-size: 0.75rem;
  color: #666;
}

/* フッター */
.footer {
  background-color: #111827;
  color: #fff;
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-text {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* その他商品 */
.other-products {
  background: #f5f5f5;
  padding: 2rem;
}

.other-products h3 {
  background: #fff;
  text-align: center;
  color: #333;
  margin: 1rem 0 2rem;
  font-size: 1.6rem;
  line-height: 120%;
}

.product-category {
  background: #fff;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-category02 {
  background: #f5f5f5;
  margin-bottom: 0;
  padding: 2rem;
  border-radius: 0;
  box-shadow: unset;
}

.product-category02 h3 {
  background: #f5f5f5;
  text-align: center;
  color: #333;
  margin: 1rem 0 2rem;
  font-size: 1.6rem;
  line-height: 120%;
}

/* セクションタイトル */
.re-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 3rem;
  color: #2c2c2c;
  position: relative;
}

.re-section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #a1887f, #bcaaa4);
}

/* カテゴリセクション */
.category-section {
  background: white;
  padding: 3rem 0;
  /* margin-bottom: 2rem; */
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.category-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #4a4a4a;
  font-weight: 600;
}

/* グレード表示 */
.grade-title {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background-color: #e8e8e8;
  padding: 4px 20px;
  position: relative;
  background-repeat: no-repeat;
  background-position: 0px center;
  background-size: 100px auto;
}

.grade-title-komono {
  background: #192E59;
  color: #fff;
}

.grade-title img {
  height: 32px;
}

/* .grade01 {
  background-image: url('https://wasuian.com/pic-labo/syou02.png');
  filter: grayscale(100%);
} */

/* .grade02 {
  background-image: url('https://wasuian.com/pic-labo/tiku02.png');
  filter: grayscale(100%);
}

.grade03 {
  background-image: url('https://wasuian.com/pic-labo/bai02.png');
  filter: grayscale(100%);
} */

.product-item:hover .grade01,
.product-item:hover .grade02,
.product-item:hover .grade03 {
  filter: none;
}

/* 商品グリッド */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.product-item {
  position: relative;
}

.other-products-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.other-products-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* 商品画像 */
.product-item-image {
  width: 100%;
  background: linear-gradient(45deg, #ccc, #999);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 商品情報 */
.product-item-info {
  padding: 20px 14px;
  text-align: center;
}

.product-item h4 {
  color: #2c2c2c;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.product-item p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}

.button-wrap {
  /* margin-top: 2.625rem;
  padding-top: 56px;
  margin-bottom: 120px; */
  padding: 120px 0px;
  text-align: center;

}

.rounded-img{
  border-radius: 12px;
  display: block;
  max-width: 100%;
}

/* レスポンシブ */
@media screen and (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;

  }

  .re-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .category-title {
    font-size: 1.4rem;
  }

}

/* タブレット（768px以上） */
@media (min-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .comparison-section {
    /* padding: 4rem 1rem; */
    margin-top: 24px;
    margin-bottom: 80px;
  }

  .comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .comparison-image-wrapper {
    margin-bottom: 1rem;
  }

  .comparison-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .comparison-description {
    font-size: 1rem;
  }

  .intro-section {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 1.875rem;
    margin-bottom: 4rem;
  }

  .section-title2 {
    font-size: 1.875rem;
    margin-bottom: 4rem;
  }

  .intro-content {
    gap: 1.5rem;
    margin-top: 56px;
  }

  .intro-text {
    font-size: 1rem;
    
  }

  .product-section {
    padding: 4rem 4rem;
  }

  .product-section-alt {
    padding: 4rem 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    margin-top: 6rem;
  }

  .product-content {
    order: 1;
  }

  .product-image-wrapper {
    order: 2;
  }

  .product-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .product-description {
    gap: 1rem;
  }

  .product-text {
    font-size: 14px;
  }

  .product-feature {
    padding-left: 1rem;
    margin-top: 1.5rem;
  }

  .feature-title {
    font-size: 1rem;
  }

  .feature-description {
    font-size: 0.875rem;
  }

  .product-list-section {
    margin-top: 64px;
  }

  .product-list-title {
    font-size: 1.5rem;
    margin-bottom: 3.5rem;
  }

  .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .product-card-content {
    padding: 1.5rem;
  }

  .product-card-title {
    font-size: 1.25rem;
  }

  .product-card-description {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .product-price-note {
    font-size: 0.875rem;
  }

  .afterword-section {
    padding: 4rem 1rem;
  }

  .afterword-content {
    gap: 1.5rem;
  }

  .afterword-text {
    font-size: 1rem;
  }

  .brand-signature {
    margin-top: 3rem;
  }

  .brand-box {
    padding: 1rem 2rem;
  }

  .brand-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .brand-description {
    font-size: 0.875rem;
  }

  .footer {
    padding: 2rem 0;
    margin-top: 4rem;
  }

  .footer-text {
    font-size: 0.875rem;
  }


}

/* デスクトップ（1024px以上） */
@media (min-width: 1024px) {
  .hero-section {
    height: 500px;
  }

  .hero-title {
    font-size: 3.75rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-title2 {
    font-size: 1.875rem;
  }

  .product-subtitle {
    font-size: 1.5rem;
  }

  .product-list-title {
    font-size: 2.2rem;
  }
}

/* 問い合わせ */

.column-footer {
  text-align: center;
  border-radius: 10px;
  margin-top: 64px;
}

.column-footer h4 {
  font-size: 1.2rem;
  color: #192E59 !important;
  margin: 1rem 0 1.4rem;
}

.column-footer p {
  color: #121212;
  font-size: 1.2rem;
  line-height: 200%;
  margin: 0;
}

.column-footer02 {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

.column-footer02>div {
  border-right: 1px solid #ccc;
  padding-right: 40px;
}

.column-footer02>div:last-child {
  border-right: 0;
  padding-right: 0;
}

.column-footer02 p {
  font-size: 1.6rem;
  line-height: 120%;
  color: #333;
}

.column-footer02 span {
  font-size: 1rem;
  letter-spacing: normal;
}

.column-footer02 a {
  color: #192E59;
  text-decoration: none;
}

.column-footer02 a:hover {
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .column-footer {
    margin-top: 40px;
  }

  .column-footer h4 {
    font-size: 1.2rem;
  }

  .column-footer p {
    font-size: 1rem;
    line-height: 180%;
    padding: 0 1rem;
    text-align: left;
    margin-bottom: 40px;
  }

  .column-footer02 {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 1.5rem;
    text-align: center;
  }

  .column-footer02>div {
    border-right: none;
    border-bottom: 1px solid #ccc;
    padding-right: 0;
    padding-bottom: 2rem;
  }

  .column-footer02>div:last-child {
    border-bottom: 0;
    padding-bottom: 0.6rem;
  }

  .column-footer02 h4 {
    font-size: 1.1rem;
    margin: 0 0 15px;
  }

  .column-footer02 p {
    font-size: 1.4rem !important;
    line-height: 140%;
    margin: 0;
    text-align: center;
    letter-spacing: 0.2rem !important;
  }

  .column-footer02 p a {
    letter-spacing: normal !important;
  }

  .column-footer02 span {
    font-size: 1rem;
    display: block;
    margin-top: 5px;
  }



  .intro-section{
    padding: 20px !important;
  }

  .product-content{
    padding: 20px;
  }

  .product-section{
    padding: 20px !important;
  }

  .product-list-section{
    padding: 20px !important;
  }

  .intro-container{
    padding: 20px;
  }

  .comparison-section{
    padding: 20px !important;
  }

  .service-detail-button{
    width: 70%;
  }

  .button-wrap{
    padding: 24px 0px 120px 0px;
  }

  .product-list-title{
    font-size: 1.5rem;
  }

  .product-list-title::after{
    margin: 8px auto 0;

  }

  .section-title::after{
    margin: 8px auto 0 !important;
  }
  





}



.service-detail-button {
  display: inline-block;
  background: white;
  border: 2px solid #8d6e63;
  color: #5d4037;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none !important;
  width: 60%;
}

.service-detail-button:hover {
  background: #8d6e63;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(141, 110, 99, 0.3);
}

.section-title::after {
  content: '';
  display: block;
  bottom: -30px;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #a1887f, #bcaaa4);
  margin: 22px auto 0;
}

.message_img{
  margin-bottom: 32px;
}

