/*
Theme Name: 戸恒畳店テーマ
Theme URI: 
Author: Totsune Tatami
Author URI: 
Description: 戸恒畳店のオリジナルWordPressテーマ - 荒川区で畳屋を営み60年
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: totsune-tatami
*/

/* ===================================
   リセット・基本設定
=================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 72.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
    font-size: 1.6rem;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ===================================
   カラー変数
=================================== */
:root {
    --primary-color: #5B9A3D;
    --primary-dark: #4A8032;
    --secondary-color: #F5D800;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --gray-light: #f5f5f5;
    --gray: #ddd;
}

/* ===================================
   共通クラス
=================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 20px;*/
}

.section-title {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* PC用表示 */
.pc-only {
    display: block;
}

/* スマホ用表示 */
.sp-only {
    display: none;
}

/* ===================================
   ヘッダー
=================================== */
.site-header {
    background-color: var(--white);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo-text {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.1em;
}

.otoiawase{
	font-size: 2.4rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 0.1em;
	
}
.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 2rem;
}

/* ===================================
   PCナビゲーション
=================================== */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    gap: 25px;
}

.main-navigation li a {
    font-size: 1.4rem;
    color: var(--text-color);
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-navigation li a:hover {
    color: var(--primary-color);
}

.main-navigation li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-navigation li a:hover::after {
    width: 100%;
}

/* ===================================
   モバイルナビゲーション
=================================== */
.mobile-nav-wrapper {
    display: none;
    align-items: center;
    gap: 15px;
}

.phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    font-size: 2rem;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
}

.hamburger-menu span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* モバイルメニュー展開 */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    padding: 20px;
}

.mobile-menu li {
    border-bottom: 1px solid var(--gray);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu li a {
    display: block;
    padding: 15px 10px;
    font-size: 1.6rem;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}

.mobile-menu li a:hover {
    background-color: var(--gray-light);
    color: var(--primary-color);
}

/* ===================================
   メインビジュアル
=================================== */
.main-visual {
    margin-top: 80px;
    position: relative;
}

.main-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-visual-content {
    background-color: var(--primary-color);
    padding: 40px 20px;
    text-align: center;
}

.main-catchcopy {
    font-size:2rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
	margin-top:15px;
	text-align:center;
}

.main-subcopy {
    font-size: 1.6rem;
    color: var(--white);
}

/* ===================================
   コンテンツセクション
=================================== */


.wht{
	
	color: var(--white);
}

.content-section {
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.content-section p {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 2;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 30px auto 0;
}

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

/* ===================================
   お知らせセクション
=================================== */
.news-section {
    padding: 40px 20px;
}

.news-section h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.news-list {
    list-style: none;
}

.news-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.news-item:last-child {
    border-bottom: none;
}

.news-date {
    font-size: 1.4rem;
    color: var(--text-light);
    white-space: nowrap;
}

.news-title {
    font-size: 1.4rem;
    color: var(--text-color);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-category {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2rem;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 10px;
}

.about-text{
    font-size: 1.5rem;

}

/* ===================================
   フッター
=================================== */
.site-footer {
    background-color: var(--primary-color);
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: bold;
    font-size: 1.8rem;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}

.footer-social {
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.6rem;
    transition: opacity 0.3s ease;
}

.footer-social a:hover {
    opacity: 0.8;
}

.footer-tagline {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 10px;
}

.footer-address {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
}

.footer-copyright {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.8;
    margin-top: 20px;
}

/* ===================================
   畳商品通販ページ
=================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.product-card-content {
    padding: 20px;
}

.product-card-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-card-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.product-category-badge {
    display: inline-block;
    background-color: var(--gray-light);
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

/* ===================================
   アーカイブページ
=================================== */
.archive-header {
    background-color: var(--primary-color);
    padding: 40px 20px;
    margin-top: 80px;
}

.archive-title {
    color: var(--white);
    font-size: 2.4rem;
    text-align: center;
}

.archive-description {
    color: var(--white);
    text-align: center;
    margin-top: 10px;
    opacity: 0.9;
}

/* ===================================
   シングルページ
=================================== */
.single-header {
    background-color: var(--white);
    padding: 80px 20px 30px;
  
}

.single-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 3.6rem;
	letter-spacing:0.5rem;
    font-weight: 900;
    color: var(--primary-color);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
	 text-align: center;
		line-height:1.2em;
/*	
background-image:
 linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0.2)),
    url('/img/tatemi_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 8px;
	
   
	*/
	
}

.single-title::before,
.single-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
    max-width: 200px;
}

.single-title::after {
    background: linear-gradient(90deg, var(--primary-color), transparent);
}

.single-meta {
    text-align: center;
    margin-top: 15px;
    color: var(--text-light);
    font-size: 1.4rem;
}

.single-content {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.single-content p {
    margin-bottom: 20px;
}

/* ===================================
   ページネーション
=================================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px 0;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.pagination a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.pagination .current {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   ボタン
=================================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* ===================================
   畳商品通販ページ（新デザイン）
=================================== */
.category-filter {
    margin: 30px 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* 商品一覧（3列表示） */
.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
}

.product-item {
    width: calc(33.333% - 14px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.product-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: var(--gray-light);
}

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

.product-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 4rem;
}

.product-item-content {
    padding: 20px;
}

.product-item-category {
    margin-bottom: 10px;
}

.category-badge {
    display: inline-block;
    background-color: var(--gray-light);
    color: var(--text-light);
    font-size: 1.2rem;
    padding: 3px 10px;
    border-radius: 3px;
    margin-right: 5px;
}

.product-item-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-item-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-item-description {
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* 商品なしメッセージ */
.no-posts {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-light);
}

/* ===================================
   注文フォーム
=================================== */
.order-form-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid var(--gray);
}

.order-form-title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.order-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--gray-light);
    padding: 40px;
    border-radius: 8px;
}

.order-section-heading {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* 商品選択部分 */
.order-products {
    margin-bottom: 40px;
}

.order-product-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.order-product-row:last-child {
    border-bottom: none;
}

.order-product-name {
    font-size: 1.6rem;
    color: var(--text-color);
    flex: 1;
    padding-right: 20px;
}

.order-product-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input {
    width: 80px;
    padding: 10px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1.6rem;
    text-align: center;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.quantity-unit {
    font-size: 1.4rem;
    color: var(--text-light);
}

/* お客様情報 */
.order-customer-info {
    margin-bottom: 40px;
}

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

.form-label {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 8px;
}

.required {
    display: inline-block;
    background-color: #e74c3c;
    color: var(--white);
    font-size: 1.1rem;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 5px;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    font-size: 1.6rem;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input::placeholder {
    color: #aaa;
}

/* 送信ボタン */
.form-submit {
    text-align: center;
}

.btn-submit {
    padding: 18px 60px;
    font-size: 1.8rem;
}

/* ===================================
   畳の種類ページ
=================================== */
.tatami-types-page {
    max-width: 1100px;
    margin: 0 auto;
    
}

.page-intro {
	margin-top:0;
    margin-bottom: 60px;
  font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
	  font-size: 3rem;
	line-height: 1.5;
}

.intro-text {
    font-size:0.65em;
    line-height: 2;
    color: var(--text-color);
	text-align:center;
}

/* 畳の種類カード（3列横並び） */
.tatami-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.tatami-card {
    width: calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tatami-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.tatami-card-image,
.tatami-card-image2{
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--gray-light);
    display: flex;
    justify-content: center;
    align-items: center;
}

.tatami-card-image img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.tatami-card-image2 img {
    height: auto;
    width: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}


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

.tatami-card-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 25px 20px 15px;
    text-align: center;
    border-bottom: 2px solid var(--primary-color);
    margin: 0 20px;
}

.tatami-card-text {
    font-size: 1.4rem;
    line-height: 1.9;
    color: var(--text-light);
    padding: 20px;
}

/* 国産畳セクション */
.domestic-tatami-section {
    margin-top: 60px;
    padding: 50px 40px;
    background-color: var(--primary-color);
    border-radius: 8px;
    text-align: center;
}

.domestic-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.domestic-text {
    font-size: 1.6rem;
    line-height: 2;
    color: var(--white);
    opacity: 0.95;
}

/* ===================================
   畳の効能ページ
=================================== */
.tatami-benefits-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.benefit-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #7cb85c 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(91, 154, 61, 0.2);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(145deg, var(--primary-color) 0%, #7cb85c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(91, 154, 61, 0.3);
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(91, 154, 61, 0.4);
}

.benefit-icon i {
    font-size: 3.2rem;
    color: var(--white);
}

.benefit-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.benefit-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.benefit-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* ===================================
   畳の料金ページ
=================================== */
.tatami-price-page {
    max-width: 1100px;
    margin: 0 auto;
    
}

.price-intro {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 50px;
    border-left: 5px solid var(--primary-color);
}

.price-intro p {
    font-size: 1.6rem;
    line-height: 2;
    color: var(--text-color);
    margin-bottom: 10px;
}

.price-intro p:last-child {
    margin-bottom: 0;
}

/* 料金セクション */
.price-section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--gray);
}

.price-section:last-of-type {
    border-bottom: none;
}

.price-section-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
}

.title-icon {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.price-unit {
    font-size: 1.4rem;
    font-weight: normal;
    color: var(--text-light);
    margin-left: 10px;
}

.price-main {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-left: 15px;
}

/* 画像付きコンテンツ */
.price-content-with-image {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.price-image {
    flex: 0 0 350px;
    height: 220px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--gray-light);
}

.price-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.price-description {
    flex: 1;
}

.price-description p,
.price-description-only p {
    font-size: 1.5rem;
    line-height: 2;
    color: var(--text-color);
}

.price-description-only {
    padding: 20px 0;
}

/* 料金テーブル */
.price-table {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.price-row {
    display: grid;
    grid-template-columns: 150px 200px 1fr;
    border-bottom: 1px solid var(--gray-light);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row-highlight {
    background: linear-gradient(135deg, #f0f7ec 0%, #e8f5e0 100%);
}

.price-label {
    padding: 20px;
    font-weight: bold;
    font-size: 1.6rem;
    color: var(--text-color);
    background-color: rgba(91, 154, 61, 0.1);
    display: flex;
    align-items: center;
}

.price-value {
    padding: 20px;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.price-note {
    padding: 20px;
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

/* 国産と中国産の違いボックス */
.difference-box {
    background: linear-gradient(145deg, #fff9e6 0%, #fff3cd 100%);
    border-radius: 12px;
    padding: 30px;
    border-left: 5px solid #f0ad4e;
}

.difference-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #856404;
    margin-bottom: 15px;
}

.difference-box p {
    font-size: 1.5rem;
    line-height: 2;
    color: #664d03;
}

/* その他サービス */
.other-service-image {
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.other-service-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 替え頃チェック */
.check-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--primary-color);
	margin-top:30px;
	margin-bottom:50px;
}

.check-title {
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.check-item {
    background-color: var(--white);
    padding: 18px 20px;
    border-radius: 8px;
    font-size: 1.4rem;
    color: var(--text-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.check-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(91, 154, 61, 0.15);
}

.check-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(145deg, var(--primary-color) 0%, #7cb85c 100%);
    color: var(--white);
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 50%;
    flex-shrink: 0;
}

.check-result {
    text-align: center;
    padding: 25px;
    background: linear-gradient(145deg, var(--primary-color) 0%, #7cb85c 100%);
    border-radius: 8px;
}

.check-result p {
    font-size: 1.8rem;
    color: var(--white);
    margin: 0;
}

.check-result strong {
    font-size: 2rem;
}

/* ===================================
   レスポンシブ対応
=================================== */
@media screen and (max-width: 768px) {
    html {
        font-size: 56.25%;
    }

    .pc-only {
        display: none !important;
    }

    .sp-only {
        display: block !important;
    }

    .main-navigation {
        display: none;
    }

    .mobile-nav-wrapper {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: block;
    }

    .main-visual {
        margin-top: 70px;
    }

    /* シングルページタイトル（スマホ） */
    .single-header {
        padding: 40px 15px 25px;
        margin-top: 100px;
    }

    .single-title {
        font-size: 2rem;
        gap: 15px;
    }

    .single-title::before,
    .single-title::after {
        max-width: 50px;
    }

    .main-catchcopy {
        font-size: 2rem;
    }

    .main-subcopy {
        font-size: 1.4rem;
    }

    .content-section {
        padding: 40px 15px;
    }

    .content-section h2 {
        font-size: 1.8rem;
    }

    .news-item {
        flex-direction: column;
        gap: 5px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 商品一覧（スマホ：98%幅で縦並び） */
    .product-list {
        flex-direction: column;
        gap: 15px;
    }

    .product-item {
        width: 98%;
        margin: 0 auto;
    }

    /* 注文フォーム（スマホ） */
    .order-form {
        padding: 20px;
    }

    .order-product-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .order-product-name {
        padding-right: 0;
    }

    .order-product-quantity {
        width: 100%;
        justify-content: flex-end;
    }

    .quantity-input {
        width: 100px;
    }

    .btn-submit {
        width: 100%;
        padding: 15px 30px;
    }

    /* 畳の種類ページ（スマホ：縦1列） */
    .tatami-types-page {
        padding: 20px 15px;
    }

    .page-intro {
        padding: 20px;
        margin-bottom: 40px;
    }

    .tatami-cards {
        flex-direction: column;
        gap: 25px;
        margin-bottom: 50px;
    }

    .tatami-card {
        width: 100%;
    }

    .tatami-card-image {
        height: 200px;
    }

    .tatami-card-title {
        font-size: 1.8rem;
        padding: 20px 15px 12px;
        margin: 0 15px;
    }

    .tatami-card-text {
        padding: 15px;
        font-size: 1.4rem;
    }

    .domestic-tatami-section {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .domestic-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .domestic-text {
        font-size: 1.4rem;
    }

    /* 畳の効能ページ（スマホ：縦1列） */
    .tatami-benefits-page {
        padding: 20px 15px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .benefit-icon i {
        font-size: 2.8rem;
    }

    .benefit-title {
        font-size: 1.6rem;
    }

    /* 畳の料金ページ（スマホ） */
    .tatami-price-page {
        padding: 20px 15px;
    }

    .price-intro {
        padding: 25px 20px;
        margin-bottom: 40px;
    }

    .price-intro p {
        font-size: 1.4rem;
    }

    .price-section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 5px;
    }

    .price-main {
        margin-left: 0;
        font-size: 1.4rem;
    }

    .price-content-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .price-image {
        flex: none;
        width: 100%;
        height: 200px;
    }

    .price-description p,
    .price-description-only p {
        font-size: 1.4rem;
    }

    .price-table {
        display: block;
    }

    .price-row {
        display: block;
        padding: 15px;
        border-bottom: 1px solid var(--gray-light);
    }

    .price-label {
        padding: 0 0 8px 0;
        background: none;
        font-size: 1.5rem;
    }

    .price-value {
        padding: 0 0 8px 0;
        font-size: 1.6rem;
    }

    .price-note {
        padding: 0;
        font-size: 1.3rem;
    }

    .difference-box {
        padding: 20px;
    }

    .difference-title {
        font-size: 1.6rem;
    }

    .difference-box p {
        font-size: 1.4rem;
    }

    .check-section {
        padding: 25px 20px;
    }

    .check-title {
        font-size: 1.7rem;
    }

    .check-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .check-item {
        padding: 15px;
        font-size: 1.3rem;
    }

    .check-result p {
        font-size: 1.5rem;
    }

    .check-result strong {
        font-size: 1.6rem;
    }

    .site-logo-text {
        font-size: 2rem;
    }

    .header-inner {
        padding: 0 15px;
    }
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
    .main-navigation ul {
        gap: 15px;
    }

    .main-navigation li a {
        font-size: 1.3rem;
    }

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

    /* 畳の効能ページ（タブレット：3列または2列） */
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .benefit-card {
        padding: 25px 15px;
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
    }

    .benefit-icon i {
        font-size: 2.6rem;
    }
}
