/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    color: #2e2e2e;
    background-color: #fff;
    line-height: 1.65;
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
}
a {
    color: #8A1B28;
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #a82e3b;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
	margin:0 auto;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
.bg-light {
    background-color: #F4F4F4;
}
/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    font-weight: bold;
    color: #1a1a1a;
}
/* Margin Helpers */
.margin-top-m { margin-top: 25px; }
.margin-top-l { margin-top: 50px; }
.center-text { text-align: center; }
.margin-bottom-m{margin-bottom:20px;}
/* List Styles */
.styled-list {
    list-style: none;
    margin: 15px 0;
}
.styled-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}
.styled-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0;
    color: #8A1B28;
    font-size: 14px;
}
/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary {
    background-color: #8A1B28;
    color: #fff !important;
}
.btn-primary:hover {
    background-color: #a82e3b;
    text-decoration: none;
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: #1C2D42;
    color: #fff !important;
}
.btn-secondary:hover {
    background-color: #2b3e57;
    text-decoration: none;
    transform: translateY(-2px);
}
.btn-large {
    padding: 16px 25px;
    font-size: 18px;
    border-radius: 8px;
}
/* Header Section Base */
.main-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.logo-img {
    height: 40px;
}
.global-nav ul {
    list-style: none;
    display: flex;
	text-align: center;
}
.global-nav a {
    font-weight: bold;
    color: #2e2e2e;
}
.global-nav ul li p
{
	font-size:11px;
}
.global-nav a:hover {
    color: #8A1B28;
    text-decoration: none;
}
.icon {
 font-size:18px;
}
/* Hero / First View Section */
.hero-content {
    text-align: center;
}
.hero-badge {
    display: inline-block;
    background-color: #1C2D42;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 20px;
}
.main-title .highlight {
    color: #333;
}
/* Summary Box */
.summary-box {
    background-color: #fff;
    border: 2px solid #8A1B28;
    border-radius: 8px;
    padding: 20px;
    margin: 30px auto 0 auto;
	width: 95%;
    max-width: 850px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(138,27,40,0.06);
}

.summary-title {
    color: #8A1B28;
    font-size: 18px;
    border-bottom: 1px solid #e1dcd6;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.summary-text {
    font-size: 15px;
    color: #333;
}
/* Table of Contents */
.table-of-contents {
	max-width:850px;
	width: 95%;
	margin:0 auto;
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: #fff;
    border: 1px solid #e1dcd6;
    border-radius: 8px;
    padding: 25px;
}
.toc-title {
    font-size: 18px;
    color: #1c2d42;
    border-bottom: 2px solid #1C2D42;
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.toc-list {
    list-style: none;
    display: grid;
}
.toc-list-mini{
	font-size:10px; 
}
.toc-list li a {
    color: #2e2e2e;
    font-weight: bold;
    display: block;
    padding: 5px 0;
}
.toc-list li a:hover {
    color: #8A1B28;
    text-decoration: none;
}
/* Content Sections Base */
.section-header h2 {
    color: #1a1a1a;
    border-left: 5px solid #8A1B28;
    padding-left: 15px;
    margin-bottom: 25px;
}
.section-lead {
    font-size: 16px;
    color: #444;
    margin-bottom: 30px;
}
.kimonolook-item-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 30px;
	margin-bottom: 30px;
}
.scene-card {
    background-color: #fff;
    border: 1px solid #e1dcd6;
    padding: 20px;
    border-radius: 6px;
}
.scene-card-title {
    color: #8A1B28;
    font-size: 18px;
    margin-bottom: 10px;
}
.scene-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.scene-card-link-wrapper {
    margin-top: 15px;
    border-top: 1px dashed #e1dcd6;
    padding-top: 12px;
}
.scene-inner-link {
    font-size: 13px;
    color: #8A1B28 !important;
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.3s ease;
}
.scene-inner-link:hover {
    color: #a82e3b !important;
    text-decoration: none;
}
/* Styled Table & Responsiveness */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    -webkit-overflow-scrolling: touch;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border-top: 2px solid #1C2D42;
}
.styled-table th, .styled-table td {
    border-bottom: 1px solid #e1dcd6;
}
.styled-table thead tr {
    background-color: #1C2D42;
    color: #ffffff;
}
.styled-table thead th {
    font-weight: bold;
    text-align: center;
}
.styled-table tbody th {
    background-color: #F4F4F4;
    font-weight: bold;
    color: #1c2d42;
    border-right: 1px solid #e1dcd6;
}
.styled-table tbody tr:nth-of-type(even) {
    background-color: #F4F4F4;
}
.styled-table tbody tr.recommended-row {
    border: 2px solid #8A1B28;
    background-color: rgba(138, 27, 40, 0.02);
}
.styled-table .size-name-col {
    background-color: #F4F4F4;
    color: #1C2D42;
    font-weight: bold;
    text-align: center;
}
.styled-table tbody tr.highlight-row-3l,
.styled-table tbody tr.highlight-row-4l {
    background-color: rgba(138, 27, 40, 0.03);
    border-left: 3px solid #8A1B28;
}
.styled-table tbody tr.highlight-row-tl {
    background-color: rgba(28, 45, 66, 0.03);
    border-left: 3px solid #1C2D42;
}
.staff-img-caption {
    font-size: 12px;
    color: #666;
    margin: 0;
    line-height: 1.4;
	display: block;
}
.staff-box-title {
    color: #1C2D42;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}
.staff-box-text {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}
.staff-box-text.text-margin-bottom {
    margin-bottom: 20px;
}
.staff-cta-wrapper {
    margin-bottom: 15px;
}
.btn-staff-cta {
    font-size: 14px;
    padding: 12px 24px;
    display: inline-block;
}
.staff-blog-link {
    font-size: 14px;
    color: #1C2D42;
    font-weight: bold;
    text-decoration: underline;
}
.staff-blog-link:hover {
    color: #8A1B28;
}
.staff-visual-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.staff-visual-inner {
    background-color: #fff;
    border: 1px solid #e1dcd6;
    padding: 15px;
    border-radius: 6px;
    max-width: 100%;
}
.staff-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
}
.wear-follow-link {
    font-size: 12px;
    color: #8A1B28;
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    margin-top: 5px;
}
.wear-follow-link:hover {
    color: #a82e3b;
}
.fukubukuro-features-box {
    background-color: #F4F4F4;
    border-left: 4px solid #8A1B28;
    border-radius: 4px;
    padding: 25px;
    margin: 25px auto 35px auto;
    max-width: 850px;
    box-shadow: 0 4px 12px rgba(138, 27, 40, 0.02);
}
.fukubukuro-features-title {
    color: #8A1B28;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 0.03em;
}
.fukubukuro-features-list {
    list-style-type: square;
    padding-left: 20px;
    color: #333;
}
.fukubukuro-features-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.fukubukuro-features-list li:last-child {
    margin-bottom: 0;
}
.fukubukuro-features-list strong {
    color: #1C2D42;
}
    .kimonolook-item, .item-grid-3col {
	background-color: #fff;
    text-align: center;
}

.cotton-recommend-section {
    background-color: #fff;
    padding: 40px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.cotton-container {
    max-width: 1100px;
    margin: 0 auto;
}
.cotton-title {
    font-size: 24px;
    color: #1C2D42;
    margin: 15px 0;
    font-weight: bold;
}
.cotton-lead {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    max-width: 850px;
    margin: 0 auto;
}
.cotton-features-box {
    background-color: #F4F4F4;
    border-left: 4px solid #8A1B28;
    border-radius: 4px;
    padding: 25px;
    margin-bottom: 40px;
}	
.cotton-features-title {
    color: #8A1B28;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}
.cotton-features-list {
    list-style-type: square;
    padding-left: 20px;
    color: #333;
}
.cotton-features-list li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}
.cotton-features-list li:last-child {
    margin-bottom: 0;
}
.section-cta {
    text-align: center;
    margin-top: 30px;
}
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    padding-top: 56.25%;
    background-color: #000; 
    border-radius: 4px;
}
.embed-responsive iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-description-box {
    margin-top: 15px;
    background-color: #F4F4F4;
    border-left: 3px solid #1C2D42;
    padding: 15px;
    border-radius: 4px;
}
.video-description-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}
.staff-coordinate-box {
    background-color: #F4F4F4;
    border: 1px solid #e1dcd6;
    border-radius: 8px;
	box-shadow: 0 4px 15px rgba(138,27,40,0.03);
}
/* Product Cards Grid */
.featured-products {
    background-color: #F4F4F4;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e1dcd6;
}
.featured-products h3 {
    font-size: 18px;
    margin-bottom: 25px;
    color: #1C2D42;
}
.product-card {
    background-color: #fff;
    border: 1px solid #e1dcd6;
    border-radius: 6px;
    padding: 20px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.product-card.hot {
    border: 2px solid #8A1B28;
    box-shadow: 0 4px 15px rgba(138,27,40,0.1);
}
.badge-hot {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #8A1B28;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 15px;
    border-radius: 15px;
}
.product-img {
    margin: 0 auto 15px auto;
    max-height: 180px;
    object-fit: contain;
}
.product-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.product-card .price {
    font-size: 18px;
    font-weight: bold;
    color: #8A1B28;
    margin-bottom: 10px;
}
.product-card .desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}
/* Video Placeholder & Stats Box */
.video-placeholder {
    background-color: #2e2e2e;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}
.video-title {
    background-color: #1C2D42;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
}
.color-cta-banner {
    background-color: #ffffff;
    border: 2px solid #8A1B28;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(138, 27, 40, 0.04);
    max-width: 850px;
    margin: 0 auto;
}
.color-cta-badge {
    display: inline-block;
    background-color: #8A1B28;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.color-cta-title {
    font-size: 20px;
    color: #1C2D42;
    font-weight: bold;
    margin-bottom: 15px;
}
.color-cta-text {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    max-width: 720px;
    margin: 0 auto 25px auto;
}
.btn-color-cta {
    display: inline-block;
    background-color: #1C2D42;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: bold;
    padding: 16px 30px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(28, 45, 66, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    max-width: 550px;
    text-decoration: none;
}
.btn-color-cta:hover {
    background-color: #2b3e57;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 45, 66, 0.3);
}

.stats-box {
    background-color: #fff;
    border: 1px solid #1C2D42;
    border-radius: 6px;
    padding: 15px 20px;
}
.stats-box h4 {
    font-size: 15px;
    color: #1C2D42;
    border-bottom: 1px solid #e1dcd6;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.stats-box ul {
    list-style: none;
}
.stats-box li {
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}
.stats-box li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #1C2D42;
}
/* Step Cards */
.step-card {
    background-color: #fff;
    border: 1px solid #e1dcd6;
    border-radius: 6px;
    padding: 25px;
    text-align: center;
}
.step-num {
    display: inline-block;
    background-color: #8A1B28;
    color: #fff;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 15px;
    border-radius: 12px;
    margin-bottom: 15px;
}
.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}
.step-card p {
    font-size: 14px;
    color: #555;
    text-align: left;
}
/* E-E-A-T Strengths Section */
.strength-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    border: 1px solid #e1dcd6;
}
.strength-icon {
    font-size: 28px;
    line-height: 1;
}
.strength-item h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #8A1B28;
}
.strength-item-custom {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1dcd6;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    align-items: flex-start; 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.strength-item-custom:last-child {
    margin-bottom: 0; 
}
.strength-item-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 27, 40, 0.06);
    border-color: #cbbba9;
}
.strength-icon-custom {
    font-size: 28px;
    line-height: 1;
    background-color: #F4F4F4; 
    padding: 10px;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}
.strength-text-custom {
    flex: 1;
}
.strength-text-custom h3 {
    font-size: 17px;
    color: #8A1B28;
    margin-bottom: 8px;
    font-weight: bold;
    line-height: 1.4;
}
.strength-text-custom p {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 0;
}
.strength-item p {
    font-size: 14px;
    color: #555;
}
.age-coordinate-section {
    background-color: #fff;
    margin-bottom: 40px;
}
.coordinate-flex-container {
    display: flex;
    flex-direction: column; 
    gap: 25px;
    margin: 35px auto 40px auto;
    max-width: 1100px;
    width: 100%;
	height:100%;
}
.coordinate-flex-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e1dcd6;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.coordinate-flex-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(138, 27, 40, 0.05); 
    border-color: #cbbba9;
}
.coord-img-wrapper {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    margin-bottom: 15px;
    position: relative;
}
.coord-img-placeholder {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}
.coord-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}
.coord-title {
    font-size: 16px;
    font-weight: bold;
    color: #1C2D42; 
    margin-bottom: 10px;
    border-bottom: 1px dashed #e1dcd6;
    padding-bottom: 8px;
}
.coord-desc {
    font-size: 13.5px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 15px;
    flex-grow: 1; 
}
.coord-blog-link {
    font-size: 13px;
    color: #8A1B28 !important; 
    font-weight: bold;
    text-decoration: underline;
    display: inline-block;
    transition: color 0.2s ease;
    margin-top: auto; 
}
.coord-blog-link:hover {
    color: #a82e3b !important;
    text-decoration: none;
}
.staff-coordinate-cta-box {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #F4F4F4;
    border-radius: 8px;
    border: 1px solid #e1dcd6;
}
.staff-cta-title {
    font-size: 18px;
    color: #1C2D42;
    font-weight: bold;
    margin-bottom: 10px;
}
.staff-cta-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* FAQ Accordion Styling */
.faq-list {
    margin-top: 30px;
}
.faq-item {
    background-color: #fff;
    border: 1px solid #e1dcd6;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    background-color: #F4F4F4;
    padding: 15px 20px;
    font-size: 16px;
    color: #1C2D42;
    cursor: pointer;
    border-bottom: 1px solid #e1dcd6;
}
.faq-answer {
    padding: 20px;
    font-size: 15px;
    color: #333;
    background-color: #fff;
}
/* C摜 */
.orverwidth {
    position: relative; 
    width: 100%;
}
.main-slide-img {
    width: 100%;
    height: auto;
    display: block;
}
.slogan {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slogan-logo {
    max-width: 80%; 
}
.tokusyu_top_arrow {
	width: 45px;
	height: 45px;
}

/* =============================================================
   RESPONSIVE DESIGN BREAKPOINTS (Requested Adjustments)
============================================================= */

/* 1. Mobile Styles (max-width: 750px) */
@media screen and (max-width: 750px) {
	.main-slide-img {
        height: 400px;
        object-fit: cover;
        object-position: center center;
    }
	.slogan img {
        width: 170px;
        margin-top: 120px;
    }
	.grid-2col, .grid-3col {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }
	.kimonolook-item{
		width: calc(100% / 3);
        padding: 2px;
	}	
	.item-grid-3col
	{
        width: calc(100% / 3);
        padding: 2px;
        margin: 20px 0 20px 0;
	}
	.btn {
        width: 100%;
        display: block;
    }
    .global-nav ul {
		display:flex;
		justify-content: space-between;
        gap: 10px;
		padding: 6px 15px;
    }
    .global-nav a {
        font-size: 13px;
    }
    .hero-section {
        padding: 20px 0 30px 0;
    }
    .main-title {
        font-size: 22px;
    }
    .sub-title {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .toc-list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .content-section {
        padding: 40px 0;
    }
    .section-header h2 {
        font-size: 20px;
    }	
	.styled-table {
		font-size:12px;
	}
	.styled-table th, .styled-table td {
		padding: 5px;
	}
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .staff-coordinate-box {
        padding: 20px 15px;
    }
    .staff-box-title {
        font-size: 18px;
    }
    .btn-staff-cta {
        width: 100% !important;
        text-align: center;
    }
    .staff-visual-box {
        margin-top: 25px;
    }
    .fukubukuro-features-box {
        padding: 15px;
        margin: 20px 0;
    }
    .fukubukuro-features-title {
        font-size: 15px;
    }
    .fukubukuro-features-list li {
        font-size: 13px;
        line-height: 1.7;
    }
    .cotton-recommend-section {
        padding: 25px 15px;
    }
    .cotton-title {
        font-size: 20px;
    }
    .recommend-divider {
        font-size: 16px;
        margin: 40px 0 20px 0;
    }
    .recommend-divider::before,
    .recommend-divider::after {
        width: 20%;
    }
    .size-tables-wrapper {
        gap: 25px;
    }
    .size-table-box {
        padding: 15px;
    }
    .size-table-header h3 {
        font-size: 16px;
    }
    .fukubukuro-staff-review-box {
        padding: 15px;
        margin-top: 20px;
    }
    .video-description-box {
        padding: 12px;
    }
    .video-description-box p {
        font-size: 12px;
    }
	.cotton-header {
    text-align: left;
    margin-bottom: 35px;
	}	
	.coordinate-flex-container {
        gap: 5px;
        margin: 25px auto 30px auto;
    }
    .coordinate-flex-card {
        padding:15px 15px 30px 15px;
    }
    .coord-title {
        font-size: 15px;
    }
    .coord-desc {
        font-size: 13px;
    }
    .staff-coordinate-cta-box {
        padding: 20px 15px;
    }
    .staff-cta-title {
        font-size: 16px;
    }
	.strength-grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		align-items: start; 
	}
}

/* 2. Tablet Styles (min-width: 751px) and (max-width: 1024px) */
@media screen and (min-width: 751px) and (max-width: 1024px) {
	.header-inner {
		display: flex;
		padding: 15px 20px;
	}
	.cotton-recommend-section {
        padding: 35px 20px;
    }
    .cotton-title {
        font-size: 22px;
    }
	.cotton-header {
		text-align: center;
		margin-bottom: 35px;
	}
	.product-img-placeholder {
        height: 220px;
    }
	.grid-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
	.grid-3col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
	.item-grid-3col {
        width: calc(100% / 3);
        padding: 0.5em;
        margin: 20px 0 20px 0;
    }
	.btn {
        width: auto;
    }
	.header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
	.global-nav ul {
        gap: 20px;
    }
	.hero-section {
        padding: 50px 0;
    }
	.main-title {
        font-size: 32px;
    }
	.sub-title {
        font-size: 16px;
        margin-bottom: 25px;
    }
	.toc-list {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
	.content-section {
        padding: 55px 0;
    }
	.section-header h2 {
        font-size: 24px;
    }
	.color-cta-banner {
        padding: 35px;
    }
	.kimonolook-item, .item-grid-3col {
		width: calc(100% / 3 - 14px);
        padding: 0.5em 0;
	}
	.styled-table {
		min-width: 600px;
		font-size:15px;
	}
	.styled-table th, .styled-table td {
		padding: 12px 15px;
	}
	.coordinate-flex-container {
        flex-direction: row; 
        gap: 20px;
    }
	.staff-coordinate-box {
        padding: 30px;
    }
    .staff-box-title {
        font-size: 22px;
    }
    .size-tables-wrapper {
        flex-direction: row;
        gap: 20px;
    }
    .fukubukuro-staff-review-box {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
	.review-image-placeholder {
        flex: 1;
        min-width: 220px;
        height: 150px;
    }
    .review-text-content {
        flex: 2;
    }	
	.cta-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15px;
    }
	.strength-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		align-items: start; 
	}
}

/* 3. Desktop Styles (min-width: 1025px) */
@media screen and (min-width: 1025px) {
	.header-inner {
		display: flex;
		padding: 15px 20px;
	}	
	.grid-2col {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
	.grid-3col {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 25px;
    }
	.btn {
        width: auto;
    }
	.header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
	.global-nav ul {
        gap: 30px;
    }
	.hero-section {
        padding: 20px 0;
    }
    .main-title {
        font-size: 33px;
    }
    .sub-title {
        font-size: 18px;
        margin-bottom: 30px;
    }
    .toc-list {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    .content-section {
        padding: 75px 0;
    }
    .section-header h2 {
        font-size: 30px;
    }
	.styled-table {
		min-width: 600px;
		font-size:15px;
	}
	.styled-table th, .styled-table td {
		padding: 12px 15px;
	}
	.cta-buttons {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
    }
	.eeat-note-box {
		padding: 20px;
		margin-bottom: 30px;
		border-radius: 4px;
	}
	.eeat-note-title {
		color: #8A1B28;
		margin-bottom: 10px;
		font-weight: bold;
		font-size: 16px;
	}
	.eeat-note-intro {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 10px;
		color: #333;
	}
	.eeat-note-list {
		font-size: 14px;
		line-height: 1.8;
		padding-left: 20px;
		list-style-type: square;
		color: #444;
	}
	.eeat-note-list li {
		margin-bottom: 8px;
	}
	.eeat-note-list li:last-child {
		margin-bottom: 0;
	}
	.col-width-20 { width: 20%; }
	.col-width-40 { width: 40%; }
	.table-sub-text {
		font-size: 12px;
		color: #666;
		display: inline-block;
		margin-top: 5px;
	}
	.grid-margin-bottom {
		margin-bottom: 40px;
	}
	.staff-coordinate-box {
		padding:20px;
	}
	.badge-primary-color {
		background-color: #8A1B28 !important;
	}
	.recommend-divider {
		text-align: center;
		font-size: 20px;
		font-weight: bold;
		color: #8A1B28;
		margin: 60px 0 30px 0;
		position: relative;
		letter-spacing: 0.1em;
	}
	.recommend-divider::before,
	.recommend-divider::after {
		content: "";
		position: absolute;
		top: 50%;
		width: 30%;
		height: 1px;
		border-top: 1px dashed #8A1B28;
	}
	.recommend-divider::before { left: 5%; }
	.recommend-divider::after { right: 5%; }
	.product-img-placeholder {
		width: 100%;
		height: 200px;
		border-radius: 4px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: #7a7364;
		font-size: 13px;
		line-height: 1.5;
	}
	.product-card-title {
		font-size: 16px;
		color: #1C2D42;
		font-weight: bold;
		margin-bottom: 10px;
		min-height: 44px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.size-tables-wrapper {
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.size-table-box {
		flex: 1;
		background-color: #fff;
		border: 1px solid #e1dcd6;
		border-radius: 8px;
		padding: 20px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
	}
	.size-table-header {
		border-bottom: 2px solid #e1dcd6;
		padding-bottom: 12px;
		margin-bottom: 15px;
	}
	.size-table-header h3 {
		font-size: 18px;
		font-weight: bold;
		margin-bottom: 5px;
	}
	.size-table-header.fukubukuro-color h3 {
		color: #8A1B28;
	}
	.size-table-header.cotton-color h3 {
		color: #1C2D42;
	}
	.table-subtitle {
		font-size: 12px;
		color: #666;
		margin: 0;
	}
	.table-note {
		font-size: 11px;
		color: #888;
		margin-top: 10px;
		line-height: 1.4;
	}
	.fukubukuro-staff-review-box {
		background-color: #F4F4F4;
		border: 1px solid #e1dcd6;
		border-radius: 6px;
		padding: 20px;
		margin-top: 25px;
		display: flex;
		flex-direction: column;
		gap: 15px;
	}
	.review-image-placeholder {
		width: 100%;
		height: 150px;
		background-color: #f5f2eb;
		border: 1px dashed #c4beaf;
		border-radius: 4px;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		color: #7a7364;
		font-size: 11px;
		line-height: 1.4;
		padding: 10px;
	}
	.review-badge {
		display: inline-block;
		background-color: #1C2D42;
		color: #fff;
		font-size: 10px;
		font-weight: bold;
		padding: 2px 8px;
		border-radius: 10px;
		margin-bottom: 8px;
	}
	.review-heading {
		font-size: 16px;
		color: #1C2D42;
		font-weight: bold;
		margin-bottom: 8px;
	}
	.review-p {
		font-size: 13px;
		line-height: 1.6;
		color: #444;
		margin-bottom: 12px;
	}
	.review-link {
		font-size: 13px;
		color: #8A1B28 !important;
		font-weight: bold;
		text-decoration: underline;
		display: inline-block;
	}
	.review-link:hover {
		color: #a82e3b !important;
		text-decoration: none;
	}
	.size-eeat-box {
		border-left-color: #1C2D42;
	}
	.size-eeat-box .eeat-note-title {
		color: #1C2D42;
	}
	.cotton-header {
		text-align: center;
		margin-bottom: 35px;
	}	
	.color-type-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }	
	.kimonolook-item {
		width: calc(100% / 6 - 0px);
        margin: 20px 0 20px 0;
        padding: 5px;
	}	
	.item-grid-3col
	{
        width: calc(100% / 3);
        margin: 20px 0 20px 0;
		padding:5px;
	}
	.coordinate-flex-container {
        flex-direction: row; 
        gap: 20px;
    }	
    .color-cta-banner {
        padding: 40px;
    }
	.strength-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 20px;
		align-items: start; 
	}
}

.revico-review-comment-detail--action-sns {
	display: flex;
}
.revico-multicomment-top .revico-review-comment-row-wrapper .revico-review-comment-row .revico-review-comment-detail .revico-review-comment-detail--product[data-all-product-review=true] .revico-review-comment-detail--product-name span {
	display: flex;
}
