@charset "utf-8";
/* CSS Document */

/* 全体 */

* {
    font-family: "Montserrat", "Noto Sans JP", sans-serif;
    line-height: 125%;
}

.c-bottomSection__title, .c-secTitle, .c-widget>.wp-block-group>.wp-block-group__inner-container>h2, .c-widget__title, h2.widgettitle {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 1em;
    position: relative;
    background-color: #213F30;
    color: #ffffff;
    padding: 20px;
}

a {
    color: #213F30;
}

a :hover{
    color: #ccc;
	text-decoration: none;
}

a:hover img {
opacity: 0.7;
filter: alpha(opacity=70);
-ms-filter: "alpha(opacity=70)";
}

/* ヘッダー */

.top-bar {
  background: #213F30;
  color: white;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.top-bar a{
color: #ffffff;
	text-decoration: underline;
}

.top-bar a:hover{
color: #D5D5D5;
	text-decoration: none;
}

header {
  background: white;
}

.header-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 0px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 30px;
  align-items: center;
}

.action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #555;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s;
}

.action-item:hover {
  color: #213F30;
}

.action-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.action-label {
  font-size: 14px;
  color: #213F30;
}

input[type="text"], input[type="password"] {
  padding: 10px 8%;
}

.search-section {
  padding: 25px 0px;
  max-width: 1200px;
  margin: 0 auto;
}

.search-container {
  display: flex;
  gap: 30px;
  align-items: center;
}

.search-box {
  flex: 0 0 400px;
  position: relative;
}

.search-box form {
  position: relative;
  width: 100%;
}

.search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  border: 2px solid #ddd;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  background-color: #EDEDED;
}

.search-input:focus {
  border-color: #213F30;
}

.search-icon-btn {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.search-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.keyword-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.keyword-btn {
  padding: 10px 25px;
  border: 2px solid #213F30;
  background: white;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 14px;
  color: #213F30;
}

.keyword-btn:hover {
  background: #213F30;
  color: white;
}

nav#mobileNav {
  background: #D9D9D9;
  padding: 20px 40px;
}

@media (max-width: 768px) {
  nav#mobileNav {
    background: #fff;
  }
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 35px;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-item {
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-item:hover {
  color: #ffffff;
}

@media (max-width: 768px) {
.nav-item:hover {
  color: #cccccc;
}
}

.divider {
  color: #999;
}

/* カテゴリ展開メニュー用のスタイル */
.category-item {
  position: relative;
}

.category-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.category-arrow {
  font-size: 12px;
  transition: transform 0.3s;
}

.category-arrow.active {
  transform: rotate(180deg);
}

.category-submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid #ddd;
  padding: 15px;
  min-width: 450px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
  margin-top: 10px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.category-submenu.active {
  display: grid;
}

.category-submenu a {
  display: block;
  padding:10px 5px;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}

.category-submenu a:hover {
  background: #f5f5f5;
  color: #213F30;
}

/* ハンバーガーメニュー */

.hamburger {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background: #213F30;
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 9px;
}

.hamburger span:nth-child(3) {
  top: 18px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-header-content {
  display: none;
}

/* モバイル用のカテゴリ展開スタイル */
@media (max-width: 768px) {
  .header-main {
    padding: 15px 20px;
  }

  .logo img {
    height: 45px;
  }

  .hamburger {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .search-section {
    display: none;
  }

  .mobile-header-content {
    display: block;
  }

  #mobileNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: white;
    padding: 80px 20px 20px;
    transition: right 0.3s;
    z-index: 1000;
    overflow-y: auto;
  }

  /* これが重要！ */
  #mobileNav.active {
    right: 0;
  }

  #mobileNav .header-actions {
    display: flex;
    justify-content:flex-start;
    padding: 20px 0;
    border-bottom: 2px solid #eee;
    margin-bottom: 20px;
  }

  #mobileNav .action-item {
    flex-direction: column;
    gap: 8px;
  }

  #mobileNav .action-icon {
    width: 32px;
    height: 32px;
  }

  #mobileNav .action-label {
    display: block;
    font-size: 12px;
  }

  #mobileNav .search-section {
    display: block;
    padding: 0 0 20px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
  }

  #mobileNav .search-container {
    flex-direction: column;
    gap: 15px;
  }

  #mobileNav .search-box {
    flex: 1;
    width: 100%;
  }

  #mobileNav .search-input {
    padding: 12px 45px 12px 15px;
  }

  #mobileNav .keyword-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  #mobileNav .keyword-btn {
    padding: 8px 15px;
    font-size: 14px;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }

  .nav-menu li {
    border-bottom: 1px solid #eee;
  }

  .nav-item {
    display: block;
    padding: 15px 10px;
    font-size: 14px;
  }

  .divider {
    display: none;
  }

  /* モバイル用カテゴリ展開 */
  .category-item {
    position: static;
  }

  .category-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .category-submenu {
    position: static;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    background: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    display: block;
    min-width: auto;
    grid-template-columns: 1fr;
  }

  .category-submenu.active {
    max-height: 800px;
    transition: max-height 0.5s ease-in;
    display: block;
  }

  .category-submenu a {
    padding: 12px 20px;
    font-size: 14px;
    border-bottom: 1px solid #e0e0e0;
  }

  .category-submenu a:last-child {
    border-bottom: none;
  }
}

/* footer*/

.main-categories {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 80px;
}

.main-category-group {
    flex: 1;
    min-width: 300px;
}

.main-category-group.compact {
    flex: 0 0 auto;
    min-width: 200px;
    max-width: 250px;
}

.main-category-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #333;
}

.category-menu {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.category-block {
    min-width: 150px;
}

.category-block h3 {
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    cursor: default;
}

.category-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-block ul li {
    margin-bottom: 6px;
	font-size: 14px;
}

.category-block ul li a{
transition: color 0.3s;}

.category-block ul li a:hover{
	color: #ccc;
}

/* スマホ用アコーディオンスタイル */
@media (max-width: 768px) {
    .main-categories {
        flex-direction: column;
        gap: 30px;
		padding: 30px 10px;
    }
    
    .main-category-group {
        min-width: 100%;
    }
	
	    .main-category-group.compact{
        min-width: 100%;
    }
    
    .main-category-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .category-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .category-block {
        border-bottom: 1px solid #ddd;
    }
    
    .category-block h3 {
        cursor: pointer;
        padding: 15px 10px;
        margin: 0;
        border-bottom: none;
        position: relative;
        user-select: none;
        transition: background-color 0.3s;
    }
    
    .category-block h3:hover {
        background-color: #f5f5f5;
    }
    
    .category-block h3::after {
        content: '+';
        position: absolute;
        right: 15px;
        font-size: 20px;
        font-weight: bold;
        transition: transform 0.3s;
    }
    
    .category-block.active h3::after {
        content: '−';
    }
    
    .category-block ul {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    .category-block.active ul {
        max-height: 500px;
        padding: 10px 10px 15px 10px;
    }
    
    .category-block ul li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .category-block ul li:last-child {
        border-bottom: none;
    }
}

        .footer-top {
            background-color: #d9d9d9;
            padding: 40px 20px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        .footer-section h3 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #666;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section li {
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .footer-section a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-section a:hover {
            color: #ccc;
        }
        
        .two-columns {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        
        .footer-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .footer-links a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:before {
            content: '▶';
            margin-right: 5px;
            font-size: 10px;
        }
        
        .footer-middle {
            background-color: #7C9D83;
            padding: 30px 20px;
            text-align: center;
        }
        
        .footer-middle h2 {
            font-size: 32px;
            font-weight: bold;
            color: #333;
            margin-bottom: 30px;
        }
        
        .footer-nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
			background-color: #7C9D83;
			padding: 0;
        }
        
        .footer-nav a {
            color: #333;
            text-decoration: none;
            padding: 0 15px;
            border-right: 1px solid #666;
            font-size: 14px;
			transition: color 0.3s;
        }

        .footer-nav a:hover {
			color: #fff;}
        
        .footer-nav a:last-child {
            border-right: none;
        }
        
        .footer-bottom {
            background-color: #213F30;
            padding: 15px 20px;
            text-align: center;
        }
        
        .footer-bottom p {
            color: #fff;
            font-size: 12px;
        }
        
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-nav {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    
    .footer-nav a {
        border-right: none;
        padding: 5px;
    }
    
    .footer-nav a:last-child {
        border-right: none;
        border-bottom: none;
    }
}

.p-breadcrumb {
    padding: 20px 0;
}

.p-postList .p-postList__title {
	border-bottom: solid 2px #213F30 ;
}



        
        .qa_container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        
        h1 {
            font-size: 2.2em;
            color: #2c5f3f;
            margin-bottom: 10px;
        }
        
        .subtitle {
            color: #666;
            font-size: 1.1em;
        }
        
        .category-section {
            margin-bottom: 40px;
        }
        
        .category-title {
            font-size: 1.6em;
            color: #2c5f3f;
            padding: 15px 20px;
            background: linear-gradient(135deg, #4a7c59 0%, #5d9a6f 100%);
            color: white;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(76, 124, 89, 0.2);
        }
        
        .faq-item {
            background: white;
            margin-bottom: 15px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2c5f3f;
            font-size: 1.05em;
            user-select: none;
            transition: background 0.3s ease;
        }
        
        .faq-question:hover {
            background: #f8f9fa;
        }
        
        .faq-question::before {
            content: "Q";
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #4a7c59;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 15px;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .faq-question::after {
            content: "+";
            font-size: 1.8em;
            color: #4a7c59;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }
        
        .faq-question.active::after {
            content: "−";
            transform: rotate(180deg);
        }
        
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.4s ease;
            background: #fafafa;
        }
        
        .faq-answer.active {
            max-height: 2000px;
            padding: 25px;
            border-top: 2px solid #e0e0e0;
        }
        
        .faq-answer::before {
            content: "A";
            display: inline-block;
            width: 30px;
            height: 30px;
            background: #6b9b7c;
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            margin-right: 15px;
            font-weight: bold;
            float: left;
        }
        
        .faq-answer-content {
            color: #555;
            line-height: 1.9;
        }
        
        .link {
            color: #4a7c59;
            text-decoration: underline;
        }
        

        
        @media (max-width: 768px) {
            h1 {

                font-size: 1.6em;
            }
            
            .category-title {
                font-size: 1.3em;
            }
            
            .faq-question {
                font-size: 0.95em;
                padding: 15px 20px;
            }
        }

/* ===== 共通 ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

.sekou_title {
    font-size: 28px;
    font-weight: bold;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/* ===== メイン画像 ===== */
.sekou_main-photo {
    width: 100%;
    height: 400px;
    border: 2px solid #ccc;
    margin-bottom: 30px;
    overflow: hidden;
    background: #f0f0f0;
}

.sekou_main-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===== テキスト ===== */
.sekou_text-area {
    width: 100%;
    min-height: 120px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
	padding: 10px;
	line-height: normal;
}

/* ===== 商品エリア（PC） ===== */
.sekou_product-section {
    display: flex;
    gap: 30px;
    width: 100%;
}

.sekou_product-section > * {
    min-width: 0;
}

.sekou_product-photo {
    flex: 1;
    height: 300px;
    border: 2px solid #ccc;
    overflow: hidden;
    background: #f0f0f0;
}

.sekou_product-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.sekou_product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sekou_product-description {
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.sekou_product-name {
    padding: 10px;
}

.sekou_product-name h2 {
    margin: 0;
    font-size: 24px;
}

.sekou_link-button {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

.sekou_link-button:hover {
    background-color: #555;
}

/* ===== SP ===== */
@media screen and (max-width: 768px) {

    .sekou_main-photo {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .sekou_product-section {
        flex-direction: column;
        gap: 20px;
    }

    .sekou_product-photo {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .sekou_product-info,
    .sekou_product-description,
    .sekou_product-name,
    .sekou_link-button {
        width: 100%;
        max-width: 100%;
    }

    .sekou_product-name h2 {
        font-size: 20px;
    }
}