﻿
/* リセットCSS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ベース設定 */
.l-container-wrap {
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic",
    "Yu Gothic UI", "Yu Gothic Medium", "Meiryo", sans-serif;
  line-height: 1.8;
}

/* 明朝体クラス */
.mincho {
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho",
    "YuMincho", "Times New Roman", serif;
}

/* 共通レイアウト */
.main-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 共通要素 */
img {
  width: 100%;
  height: auto;
}

/* パンくずリスト */
.breadcrumb-container {
  margin: 20px 0;
}

.breadcrumb {
  font-size: 12px;
  color: #666;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* 区切り線 */
.divider {
  height: 1px;
  background: #e0e0e0;
  margin: 60px 0 40px;
}

/* ボタン */
.product-item .btn {
  background: #c99e03;
  color: #fff;
  padding: 12px 40px;
  border: none;
  font-size: 14px;
  text-decoration: none;
  display: block;
  text-align: center;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  opacity: 0.7;
  color: #fff;
}

/* コンテンツ画像 */
.content-image {
  margin: 40px 0;
}

/* 商品紹介セクション */
.product-section {
  margin: 10px 0;
}

.section-title {
  text-align: center;
}

.product-item {
  margin: 10px 0;
}

.product-item h3 {
  font-size: 20px;
  font-weight: 300;
  color: #222;
  margin-bottom: 20px;
}

.product-item p {
  font-size: 15px;
  color: #666;
  margin-bottom: 20px;
}

/* ヒーローセクション */
.product-item.reverse .product-text {
  background-color: #69b835;
}

.product-item.reverse .product-text .section-title {
  color: #fff;
  padding: 30px 20px 5px 20px;
}

.product-item.reverse .product-text .description {
  color: #fff;
  padding: 5px 20px 40px 20px;
}

/* 余白の設定 */
.target-div {
  padding-top: 0;
  padding-bottom: 5rem;
}

/* タブレット以上のレスポンシブ対応 */
@media (min-width: 800px) {
  .product-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  .product-item.reverse {
    flex-direction: row-reverse;
  }

  .product-item figure {
    flex: 1;
  }

  .product-item .product-text {
    flex: 1;
    padding: 0 10px;
  }
}
