/*
Theme Name: EXた組
Author: BRIGHT COMMS
Description: Custom theme for EXた組
Version: 1.0
*/

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

a {
	text-decoration: none;
}

a:hover, button:hover {
	opacity: 0.7;
}

ol, ul {
	list-style-type: none;
}

/* Font Awesome */
.solid-icon::before {
    font: var(--fa-font-solid);
    content: "\f0dc";
}

.regular-icon::before {
    font: var(--fa-font-regular);
    content: "\f35b";
}

.brands-icon::before {
    font: var(--fa-font-brands);
    content: "\f179";
}

/* font */
p, h1, h2, h3, h4, h5, #text {
	font-family: 'Noto Sans JP', sans-serif;
}

p, #text {
	font-weight: 300;
	color: #1a1a1a;
}

/* レイアウト設定 */
html {
	background-color: #FFFFFF;
}

body {
	max-width: 750px;
    margin: 0 auto;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* ラジオボタン */
input[type="radio"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #fff;
    border-radius: 50%;
    vertical-align: -4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #d9d9d9;
    margin-right: 5px;
}

input[type="radio"]:checked:before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2B53F1;
    content: '';
}

/* チェックボックス */
input[type="checkbox"] {
    position: relative;
    width: 22px;
    height: 22px;
    border: 1px solid #fff;
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #d9d9d9;
    border-radius: 4px;
	margin-right: 5px;
}

input[type="checkbox"]:checked {
    background-color: #E60012;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(50deg);
    width: 6px;
    height: 12px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: '';
}

/* ========================================
     パンくずセクション
 ========================================= */
.breadcrumb {
    margin: 10px 15px 20px;
}

.breadcrumb a {
    text-decoration: none;
	color: #1a1a1a;
	font-family: 'Noto Sans JP', sans-serif;
}

.breadcrumb span {
	color: #ff563f;
	font-family: 'Noto Sans JP', sans-serif;
}

.breadcrumb i {
	margin: 0 10px;
}

/* ========================================
     h1セクション
 ========================================= */
.hero-section {
    background-color: #FF563F;
    padding: 5px 5px 6px 20px;
}

h1 {
    color: #FFFFFF;
    text-align: left;
    font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1;
	font-size: 18px;
}

/* ========================================
    メニューセクション
 ========================================= */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    display: none;
    z-index: 1000;
    overflow-y: auto;
    animation: fadeIn 0.3s;
    max-width: 450px;
}

.menu-overlay-content {
    position: relative;
    padding: 40px;
}

.menu-button {
    color: transparent;
    display: grid;
    border: none;
    background: transparent;
}

.close-menu-button {
    position: absolute;
    top: 60px;
    right: 40px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999999;
}

.menu-logo-image {
    display: block;
    margin: 60px auto 20px auto;
    width: 40%;
}

.menu-divider {
    border: none;
    border-top: 1px solid #EEEEEE;
    width: 100%;
    margin: 20px auto;
}

.menu-list .menu-item {
    padding: 15px 0;
}

.menu-list .menu-item a {
    text-decoration: none;
    color: #333333;
    font-size: 18px;
    display: flex;
    width: 100%;
    justify-content: space-between;
	font-family: 'Noto Sans JP', sans-serif;
}

.menu-overlay  .favorite-count {
    position: absolute;
    background-color: #FF0014;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
    left: 140px;
}

.category-toggle {
    display: flex;
    justify-content: space-between;
    width: 100%;
    color: #333333;
    font-size: 18px;
	cursor: pointer;
	font-family: 'Noto Sans JP', sans-serif;
}

.menu-list .menu-item .fa-angle-right {
    color: #333333;
}

.category-list {
	margin-top: 10px;
}

.category-list .category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.category-list .category-item a {
    text-decoration: none;
    color: #555555;
    font-size: 16px;
}

.category-list .category-item .fa-angle-right {
    color: #555555;
}

.toggle-icon {
    transition: transform 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================================
     ヘッダーセクション
 ========================================= */
.header-navi {
	display: flex;
    justify-content: space-between;
	padding: 10px 0px 10px 20px;
	align-items: center;
}

.header-navi .logo {
    width: 20%;
}

.header-navi .logo img {
    width: 100%;
}

.header-navi .menu-items {
    display: flex;
    justify-content: space-around;
    width: 50%;
    align-items: center;
}

.header-navi .menu-item {
    text-align: center;
    position: relative;
}

.header-navi .menu-item i {
    font-size: 30px;
}

.header-navi .menu-item .heart-icon {
    color: #FF6073;
}

.header-navi .menu-item .envelope-icon {
    color: #FF903F;
}

.header-navi .menu-item .bars-icon {
    color: #1A1A1A;
}

.header-navi .menu-item a {
    color: transparent;
	display: grid;
}

.header-navi .menu-item img {
    width: 60%;
	margin: 0 auto;
}

.header-navi .vertical-line {
    width: 1px;
    height: 40px;
    background-color: #DDDDDD;
}

.header-navi .favorite-count {
    position: absolute;
    margin: 0;
    right: 26px;
	font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

.header-navi .favorite-button {
	width: 100%;
}

/* ========================================
     無限スライドセクション
 ========================================= */
.slideshow-track {
    position: relative;
    display: flex;
    width: 100%;
    overflow: hidden;
}

.slideshow-track ul {
    padding: 0;
    width: 150%;
    display: flex;
    flex-shrink: 0;
}

.slideshow-track ul:first-child {
    animation: slide1 60s -30s linear infinite;
}

.slideshow-track ul:last-child {
    animation: slide2 60s linear infinite;
}

.slideshow-track ul li {
    display: inline-block;
    width: 100%;
    list-style: none;
    text-align: center;
}

.slideshow-track ul li img {
    display: block;
    width: 95%;
    height: auto;
}

/* アニメーション設定 */
@keyframes slide1 {
    0% {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@keyframes slide2 {
    0% {
        transform: translateX(0);
    }
    to {
        transform: translateX(-200%);
    }
}

/* ========================================
     メインキャッチセクション
 ========================================= */
.main-catch {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin: 10px 10px 10px 20px;
    max-width: 750px;
}

.left-content {
    text-align: left;
    z-index: 2;
	width: 80%;
}

.left-content h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
	font-size: 2.8rem;
    color: #1A1A1A;
    text-shadow: 
        2px 2px 0 #FFFFFF,
        -2px -2px 0 #FFFFFF,
        -2px 2px 0 #FFFFFF,
        2px -2px 0 #FFFFFF;
	line-height: 1.3;
}

.left-content h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: #FF563F;
    margin-top: 10px;
    text-shadow: 
        2px 2px 0 #FFFFFF,
        -2px -2px 0 #FFFFFF,
        -2px 2px 0 #FFFFFF,
        2px -2px 0 #FFFFFF;
}

.right-content {
    position: relative;
    z-index: 1;
	width: 20%;
}

.right-content .img1 {
    position: absolute;
    top: -80px;
    right: 10%;
    width: 180%;
    z-index: -1;
}

.right-content .img2 {
    position: absolute;
    top: 60px;
    right: 10%;
    width: 80%;
    z-index: 1;
}

.infinite-slideshow {
    position: relative;
    z-index: -1;
}

/* ========================================
     魅力セクション
 ========================================= */
.charm-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
    margin: 20px 15px;
}

.charm-item {
    display: flex;
    align-items: center;
    width: 49%;
    padding: 15px 10px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    background-color: #FFF;
}

.charm-item i {
    color: #E60012;
    font-size: 2rem;
    margin-right: 15px;
}

.charm-text {
    display: flex;
    flex-direction: column;
}

.text-upper {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #E60012;
    text-align: left;
	font-size: 1.8rem;
	line-height: 1;
	margin-bottom: 3px;
}

.text-lower {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    text-align: left;
	font-size: 1.2rem;
}

/* ========================================
     検索セクション
 ========================================= */
.search-section {
    margin: 20px 15px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #EEEEEE;
    border-radius: 4px;
    width: 100%;
    position: relative;
}

#search-input {
    width: 90%;
    border: none;
    background: none;
    font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
    color: #1a1a1a;
    padding: 5px 0 5px 15px;
    outline: none;
	font-weight: 300;
}

#search-input::placeholder {
    color: #666666;
	font-size: 16px;
}

#search-btn {
    width: 10%;
    background-color: #04CD00;
    border: none;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

#search-btn i {
    color: #FFFFFF;
    font-size: 1.2rem;
}

#search-results {
    margin-top: 20px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1rem;
}

.search-results-section {
	padding: 10px;
	margin-bottom: 30px;
}

.search-results-section h2 {
	padding: 10px;
}

.products-list {
    display: flex;
    flex-wrap: wrap;
}

.search-results-section .product-item {
    box-sizing: border-box;
    border: 1px solid #FFF;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    width: 50%;
    transition: transform 0.3s;
    box-sizing: border-box;
    padding: 10px;
}

.search-results-section .price-text {
	position: static;
    padding: 0 0 0 5px;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
}

.cheapest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50% !important;
	padding: 10px;
}

.product-info {
    padding: 5px 0 0 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.maker-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 14px;
    margin: 0 0 5px 0;
}

.product-title {
    font-size: 16px;
    margin: 0 0 5px 0;
	color: #1a1a1a;
    font-weight: 500;
    line-height: 1.2;
}

.search-results-section .product-price {
    font-size: 42px;
    color: #e60012;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    display: flex;
    align-items: end;
	font-weight: bold;
}

.search-results-section .price-detail {
	font-weight: 500;
    margin: 0 0 0 3px;
}

.search-results-section  .tax-included {
	color: #1a1a1a;
}

/* ========================================
     カルーセルセクション
 ========================================= */
.carousel-section {
    position: relative;
    margin: 20px 15px 40px;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    position: relative;
    text-align: right;
	margin: 0 auto;
}

.carousel-image {
    width: 100%;
    height: auto;
	border-radius: 4px;
}

.design-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: auto;
	right: 0;
    pointer-events: none;
}

.left-bottom-text {
    position: absolute;
    bottom: 10px;
    left: 2%;
    font-family: 'Noto Sans JP', sans-serif;
    color: #FFFFFF;
    font-weight: 600;
    font-size: clamp(16px, 4vw, 30px);
}

.price-text {
    position: absolute;
    bottom: 0;
    right: 5%;
    font-family: 'Oswald', sans-serif;
    color: #FAFF00;
	display: flex;
    align-items: end;
}

.price {
    font-size: 48px;
    font-weight: bold;
}

.price-detail {
    text-align: left;
    display: grid;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    align-items: end;
    height: fit-content;
    margin: 0 0 10px 3px;
}

.price-detail .tax-included {
    font-size: 14px;
    line-height: 1.2;
}

.price-detail span {
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #2B53F1;
    border: none;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
	font-size: 18px;
	z-index: 2;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.carousel-indicators div {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #DDDDDD;
    cursor: pointer;
}

.carousel-indicators .active {
    background-color: #2B53F1;
}

/* ========================================
    カテゴリカルーセルセクション
========================================= */
.new-content-heading {
    background-color: #E60012;
    width: 100%;
    padding: 20px 15px 25px;
    box-sizing: border-box;
}

.new-content-heading .heading-container {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.new-content-heading .heading-line1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    font-size: 26px;
    margin-bottom: 10px;
	line-height: 1;
}

.new-content-heading .heading-line2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    font-size: 34px;
	line-height: 1;
}

.new-content-section .recently-viewed {
    margin: 40px 15px;
}

.category-carousel {
    margin: 0 0 30px 0;
    background-color: #FFFFFF;
}

.category-carousel-header {
    background-color: #EEEEEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 10px 20px;
    line-height: 1;
}

.category-carousel-header h4 {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 22px;
}

.category-carousel-buttons {
    display: flex;
}

.category-carousel-buttons .carousel-btn:nth-child(1) {
    margin-right: 15px;
}

.category-carousel-buttons .carousel-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    transform: translateY(0);
    background-color: #FFFFFF;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.category-carousel-buttons .carousel-btn.right-btn {
    background-color: #FFFFFF;
    color: #2B53F1;
    border: 1px solid #2B53F1;
}

.category-carousel-track {
    overflow: hidden;
	padding: 5px 10px;
}

.category-carousel-track ul {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.category-carousel-item {
    box-sizing: border-box;
    padding: 10px;
    flex: 0 0 auto;
    width: 50%;
}

.category-carousel-item a {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.category-carousel-item img.pickup-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

.category-carousel-item img.lowest-price {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    object-fit: cover;
}

.category-carousel-item .product-info {
    padding: 5px 0 0 5px;
    display: flex;
    align-items: center;
	gap: 5px;
}

.category-carousel-item .maker-name {
    font-size: 14px;
    margin: 5px 0;
    color: #1A1A1A;
}

.category-carousel-item .product-title {
    font-size: 16px;
    margin: 5px 0;
    color: #1A1A1A;
    font-weight: 500;
	font-family: 'Noto Sans JP', sans-serif;
}

.category-carousel-item .price-text {
    display: flex;
    align-items: flex-end;
    position: static;
    padding: 0 0 0 5px;
}

.category-carousel-item .product-price {
    font-size: 42px;
    color: #e60012;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    display: flex;
    align-items: end;
	font-weight: bold;
}

.category-carousel-item .price-detail {
    font-weight: 500;
    margin: 0 0 0 3px;
}

.category-carousel-item .price-detail .tax-included {
    color: #1a1a1a;
}

/* ========================================
     特徴セクション
========================================= */
.feature-section {
    background-color: #FFEBDF;
    width: 100%;
    padding: 50px 15px;
    box-sizing: border-box;
    position: relative;
    border-top-left-radius: 50% 100px;
    border-top-right-radius: 50% 100px;
	margin-bottom: 50px;
}

.feature-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-headings {
    text-align: center;
}

.feature-heading1 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 26px;
    margin-bottom: 10px;
	line-height: 1;
}

.feature-heading2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #1A1A1A;
    font-size: 34px;
    position: relative;
	line-height: 1;
}

.feature-heading2::after {
    content: '';
    display: block;
    width: 88%;
    height: 14px;
    background-color: #FAFF00;
    margin: -6px auto 0;
}

.feature-box {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
	padding: 0 10px;
}

.feature-header {
	display: flex;
    width: 100%;
}

.feature-number {
    background-color: #E60012;
    color: #FFFFFF;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 36px;
    width: 9%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
    flex-shrink: 0;
}

.feature-content {
    width: 100%;
}

.feature-title {
    background-color: #FFFFFF;
    color: #E60012;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 26px;
    padding: 10px;
    border-radius: 0 4px 4px 0;
    width: 100%;
	align-items: center;
    display: flex;
}

.feature-subtitle {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1A1A1A;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-description {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1A1A1A;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.8;
}

.feature-image {
    width: 100%;
    height: auto;
	margin: 10px 0;
    border-radius: 4px;
}

.feature-map {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
}

/* ========================================
     商品詳細ページ
 ========================================= */
#product-detail {
    max-width: 750px;
    margin: 20px auto;
}

.red-frame {
    background-color: #E60012;
    color: #FFFFFF;
    padding: 15px;
    text-align: center;
}

.product-images {
    position: relative;
}

.thumbnail-images {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.estimate-item {
    display: flex;
    padding: 10px;
    border: 1px solid #DDDDDD;
}

.breadcrumb-heading {
    background-color: #E60012;
    width: 100%;
    padding: 20px 0 24px;
    text-align: center;
}

.category-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
	font-size: 22px;
	line-height: 1;
}

.guarantee-heading {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin: 5px 0 0;
	font-size: 34px;
    line-height: 1;
}

.thumbnail-display {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
	border-radius: 4px
}

.large-thumbnail {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.large-thumbnail img {
    width: 100%;
    object-fit: cover;
}

.small-thumbnails {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.small-thumbnail {
    height: auto;
    cursor: pointer;
    object-fit: cover;
	width: 18.8%;
	border-radius: 4px;
	aspect-ratio: 4 / 3;
}

.additional-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.additional-section .left-content {
    flex: 0 0 30%;
}

.additional-section .right-content {
    flex: 0 0 70%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.additional-section .top-image {
    margin-bottom: 10px;
}

.additional-section .bottom-price {
    display: flex;
    align-items: flex-end;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.dynamic-price {
    font-size: 28px;
    font-weight: bold;
    margin-right: 5px;
}

.tax-included {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.estimate-result-block {
	display: flex;
    justify-content: space-between;
    margin: 10px 30px;
}

.additional-info {
    display: flex;
    justify-content: space-between;
    margin: 10px 15px;
}

.additional-info-left, .estimate-info-left {
    width: 30%;
	display: flex;
	height: auto;
}

.additional-info-left img, .estimate-info-left img {
    width: 100%;
    height: auto;
}

.additional-info-right, .estimate-info-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 68%;
	border-bottom: solid 1px #E60012;
}

.appeal-point {
    text-align: right;
	margin-top: 5px;
	line-height: 1;
}

.appeal-point img {
    width: 100%;
    height: auto;
}

.estimate-result {
    font-size: 1.2rem;
    display: flex;
    align-items: end;
    justify-content: flex-end;
    margin-bottom: 6px;
}

.estimate-price {
    font-weight: bold;
    font-size: 66px;
    color: #e60012;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.estimate-detail {
    color: #1a1a1a;
    font-size: 18px;
    line-height: 1.2;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
	height: fit-content;
    margin: 0 0 3px 3px;
}

.product-main-info {
    margin: 0 15px;
}

.product-main-info .maker-name{
	font-size: 32px;
    font-weight: 600;
	line-height: 1;
	margin-top: 10px;
}

.product-main-info h5 {
	font-size: 32px;
    font-weight: 500;
	line-height: 1;
	margin-bottom: 15px;
}

.product-description {
    margin: 0 15px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    font-size: 18px;
}

.product-buttons {
    display: flex;
    justify-content: space-between;
	margin: 20px 15px;
    gap: 15px;
}

.favorite-button,
.consult-button {
    width: 50%;
    display: inline-block;
    text-align: center;
	border: none;
    background-color: transparent;
}

.favorite-img,
.consult-img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

.estimate-simulation-section {
    margin: 20px 0;
}

.pattern1-wrapper, .pattern2-wrapper, .pattern3-wrapper {
    display: flex;
    gap: 20px;
}

.pattern1-left, .pattern3-left {
    width: 40%;
}

.pattern1-right, .pattern3-right {
    width: 60%;
}

.pattern2-set {
    display: inline-block;
    width: 48%;
    margin-bottom: 20px;
    text-align: center;
}

.pattern3-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

.simulation-section h4, .dynamic-estimate-result h4 {
    margin: 20px 0;
    padding: 7px 15px 10px;
    font-size: 22px;
    background-color: #FFEBDF;
    font-family: Noto Sans JP;
    color: #1A1A1A;
    font-weight: 500;
    margin-bottom: 10px;
}

.image-and-option-block {
	display: flex;
	margin: 15px 15px 20px;
	justify-content: space-between;
}

.adjust-image-aspect-ratio {
	width: 40%;
}

.adjust-image-aspect-ratio img {
	width: 100%;
    margin-right: 20px;
}

.option-block{
	border: solid 1px #DDDDDD;
	border-radius: 4px;
    padding: 10px 15px;
	height: fit-content;
	width: 55%;
	color: #1a1a1a;
	font-family: 'Noto Sans JP', sans-serif;
}

.option-block label {
	border-bottom: solid 1px #EEEEEE;
	padding-bottom: 10px;
}

.option-block label:last-of-type {
	border: none;
	padding-bottom: 0;
}

.description-of-Pattern1 {
	margin: 0 15px;
}

.image-and-checkbox {
    width: 50%;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 8px);
	font-family: 'Noto Sans JP', sans-serif;
}

.image-and-checkbox img {
	width: 100%;
}

.image-and-checkbox-block {
    display: flex;
    gap: 15px;
    margin: 15px 15px 30px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.pattern3-container{
	display: flex;
    gap: 15px;
	margin: 0 15px;
	font-family: 'Noto Sans JP', sans-serif;
}

.pattern3-image {
	width: 40%;
}

.check-box-block {
	margin: 10px 15px 10px;
	font-family: 'Noto Sans JP', sans-serif;
}

.radio-group {
	margin: 10px 15px;
    border: solid 1px #DDDDDD;
    border-radius: 4px;
    padding: 10px 15px;
	font-family: 'Noto Sans JP', sans-serif;
}

.radio-group label {
	display: block;
    margin-bottom: 5px;
    border-bottom: solid 1px #EEEEEE;
    padding-bottom: 10px;
}

.radio-group label:last-of-type {
	border: none;
	padding-bottom: 0;
}

.link-button-wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.link-button {
    display: inline-block;
    background-color: #2B53F1;
    border-radius: 100px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    padding: 24px 20px;
    text-decoration: none;
    width: 96%;
    text-align: center;
    margin: 15px 15px 10px;
    font-size: 26px;
    line-height: 1;
	border: none;
}

.link-button i {
    margin-left: 5px;
}

.description-text {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1A1A1A;
    font-weight: 400;
    text-align: center;
    margin: 5px 15px 10px;
    font-size: 18px;
    line-height: 1.6;
}

.two-buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 15px;
}

.two-buttons-wrapper .left-button, .two-buttons-wrapper .right-button {
    display: inline-block;
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    border-radius: 4px;
    color: #1A1A1A;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.left-button {
    text-align: center;
}

.right-button {
    text-align: center;
}

/* ========================================
     フッター
 ========================================= */
.recently-viewed {
    padding: 0;
	overflow: hidden;
}

.recently-viewed-header {
    background-color: #EEEEEE;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px 10px 20px;
    line-height: 1;
}

.recently-viewed-header h4 {
    margin: 0;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 22px;
}

.recently-viewed-carousel {
	padding: 5px 10px;
}

.recently-viewed-buttons {
	display: flex;
}

.recently-viewed-buttons .carousel-btn:nth-child(1) {
	margin-right: 15px;
}

.recently-viewed-buttons .carousel-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: static;
    transform: translateY(0);
    background-color: #FFFFFF;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    padding: 10px;
	color: #2B53F1;
}

.recently-viewed-track {
    display: flex;
    transition: transform 0.5s ease;
	justify-content: flex-start;
}

.recently-viewed-item {
    box-sizing: border-box;
    padding: 10px;
}

.recently-viewed-item a {
    position: relative;
    display: block;
    border-radius: 5px;
    overflow: hidden;
}

.recently-viewed-item img {
    width: 100%;
    height: auto;
    display: block;
	border-radius: 4px;
}

.pickup-image {
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.recently-viewed-item .product-info {
    padding: 5px 0 0 5px;
	display: flex;
    align-items: center;
	gap: 5px;
}

.recently-viewed-item  .price-text {
	position: static;
	padding: 0 0 0 5px;
}

.recently-viewed-item .maker-name {
    font-size: 14px;
    margin: 0 0 3px;
    line-height: 1;
}

.recently-viewed-item .product-title {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.2;
	font-family: 'Noto Sans JP', sans-serif;
}

.recently-viewed-item .product-price {
    font-size: 42px;
    color: #e60012;
	font-family: 'Oswald', sans-serif;
	line-height: 1;
	display: flex;
	align-items: end;
	font-weight: bold;
}

.recently-viewed-item  .price-detail {
    font-weight: 500;
	margin: 0 0 0 3px;
}

.recently-viewed-item .tax-included {
	color: #1a1a1a !important;
}

.lowest-price {
	position: absolute;
    top: 0;
    left: 0;
    width: 60% !important;
}

.footer-buttons {
    display: flex;
    justify-content: space-between;
    margin: 20px 15px;
}

.footer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FF563F;
    background-color: #FFFFFF;
    color: #1A1A1A;
    padding: 15px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    flex: 1;
    margin-right: 10px;
}

.footer-button:last-child {
    margin-right: 0;
}

.footer-button i {
    margin-right: 10px;
    font-size: 24px;
    color: #FF563F;
}

.favorite-count {
    background-color: #FF0014;
    color: #FFFFFF;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.8rem;
    margin-left: 5px;
}

.footer-contact-box {
    background-color: #FF563F;
    width: 100%;
    padding: 30px 30px 40px;
    margin: 20px 0;
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-content {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    width: 100%;
    max-width: 750px;
}

.contact-image {
    width: 15%;
    margin-right: 15px;
}

.contact-image img {
    width: 100%;
    height: auto;
}

.contact-text h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-align: left;
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1;
}

.contact-text h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    text-align: left;
    margin: 5px 0 0 0;
    font-size: 30px;
    line-height: 1;
}

.footer-contact-divider {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    margin: 5px 0;
}

.footer-contact-box p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin: 5px 0 25px;
    line-height: 1.8;
    text-align: left;
    color: #FFF;
}

.contact-button {
    background-color: #FFFFFF;
    color: #FF563F;
    border: none;
    border-radius: 100px;
    padding: 25px 20px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 750px;
    font-size: 20px;
    gap: 5px;
    line-height: 1;
}

.contact-button i {
    margin: 0 5px;
    font-size: 22px;
}

.footer-logo {
    text-align: center;
    margin: 30px 0;
}

.footer-logo img {
    width: 30%;
    height: auto;
}

.footer-logo p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    margin-top: 15px;
    font-size: 18px;
}

.footer-company-info {
    background-color: #FFEBDF;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    margin: 30px;
    box-sizing: border-box;
    max-width: 750px;
	gap: 30px;
}

.company-left {
    width: 35%;
}

.company-left img {
    width: 100%;
    height: auto;
}

.company-right {
    width: 60%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    text-align: left;
}

.company-right h5 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
    color: #E60012;
    margin-top: 20px;
    font-size: 22px;
}

.footer-company-info p {
    margin-top: 5px;
    line-height: 1.6;
    font-size: 18px;
}

.footer-bottom {
    background-color: #FF563F;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.footer-bottom p {
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

/* ========================================
      お気に入りページ
========================================= */
.favorite-page {
	margin: 0 0 30px;
}

.favorite-page h2 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    text-align: center;
    background-color: #ffebdf;
    padding: 10px 15px 13px;
    line-height: 1;
    color: #1a1a1a;
}

.favorite-page .products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
	padding: 0 15px;
}

.product-item {
    box-sizing: border-box;
    border: 1px solid #FFF;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    width: 48%;
    transition: transform 0.3s;
    box-sizing: border-box;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item a {
    text-decoration: none;
    color: inherit;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

.favorite-page .product-info {
    padding: 5px 0 0 5px;
    display: flex;
    align-items: center;
}

.maker-name {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 14px;
    margin: 0 0 5px 0;
}

.favorite-page .product-title {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.2;
}

.favorite-page .price-text {
    display: flex;
    align-items: flex-end;
	position: static;
    padding: 0 0 0 5px;
}

.favorite-page .product-price {
    font-size: 42px;
    color: #e60012;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    display: flex;
    align-items: end;
	font-weight: bold;
}

.favorite-page .price-detail {
	font-weight: 500;
    margin: 0 0 0 3px;
}

.favorite-page .price-detail .tax-included {
	color: #1a1a1a;
}

/* ========================================
     カテゴリページ
 ========================================= */
.category .charm-section {
	margin: 20px 15px 30px;
}

.category-product-heading {
    background-color: #FFEBDF;
    width: 100%;
    padding: 10px 15px 13px;
    font-size: 28px;
    color: #1A1A1A;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
}

.category-product-item {
    margin-bottom: 30px;
	padding: 0 5px;
}

.product-title-box {
    display: flex;
    align-items: center;
    margin: 0 15px 15px;
}

.product-title-box .maker-name {
    font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.product-title-box .product-title {
    font-size: 24px;
    font-weight: 500;
    margin: 0 0 0 5px;
    color: #1A1A1A;
}

.image-price-box {
    display: flex;
    margin: 0 15px 15px;
}

.product-image {
    width: 50%;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4 / 2.5;
    border-radius: 4px;
}

.price-section {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
	margin-left: 20px;
}

.price-section .cheapest-appeal-point {
    width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.price-section .price-text {
    display: flex;
    align-items: flex-end;
    position: static;
}

.price-section .product-price {
    font-size: 50px;
    color: #e60012;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    margin: 0;
	display: flex;
	align-items: flex-end;
	font-weight: bold;
}

.price-section .price-detail {
    font-weight: 500;
    margin: 0 0 0 5px;
	color: #1a1a1a;
}

.product-description {
    margin: 0 15px 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    font-size: 18px;
    color: #1A1A1A;
}

.product-link-button {
    text-align: center;
    margin: 0 15px 30px;
}

.product-link-button .link-button {
    background-color: #FF563F;
    color: #FFFFFF;
    border-radius: 100px;
    padding: 25px 20px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 20px;
    display: inline-block;
}

.product-link-button .link-button i {
    margin-left: 5px;
}

.product-divider {
    border: none;
    border-top: 1px solid #EEEEEE;
    margin: 0 15px 30px;
}

.category-slideshow {
	position: relative;
    z-index: 0;
}

/* ========================================
     会社概要ページ
 ========================================= */
.company-overview {
    padding: 0;
}

.business-overview {
	margin-bottom: 40px;
}

.business-overview-heading {
    background-color: #FF563F;
    width: 100%;
    height: auto;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #FFFFFF;
    text-align: center;
    font-size: 28px;
    padding: 20px 0 22px;
    margin-bottom: 15px;
    line-height: 1;
}

.business-details {
    display: flex;
    flex-direction: column;
	padding: 0 30px;
}

.business-row {
    display: flex;
    width: 100%;
    padding: 20px 0;
}

.business-left {
    width: 25%;
    padding-right: 20px;
    box-sizing: border-box;
}

.business-right {
    width: 75%;
}

.business-left h3 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #1A1A1A;
    font-size: 20px;
    text-align: left;
    margin: 0;
}

.business-right p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #1A1A1A;
    font-size: 20px;
    text-align: left;
    margin: 0;
}

.business-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #EEEEEE;
    margin: 0;
}

.business-right a {
    color: #1A1A1A;
    text-decoration: none;
}

.business-right a:hover {
    text-decoration: underline;
}

/* ========================================
     お問い合わせページ
 ========================================= */
.contact-logo,
.thanks-logo,
.estimate-logo{
    text-align: left;
    padding: 20px;
}

.contact-logo img,
.thanks-logo img,
.estimate-logo img {
    width: 20%;
}

.contact-product-info {
    background-color: #FFFFFF;
}

.contact-product-info h2, .estimate-heading-box h2 {
    background-color: #2B53F1;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    padding: 25px;
    width: 100%;
    text-align: center;
    line-height: 1;
	font-weight: 500;
}

.product-info-box {
    padding: 10px;
    border-radius: 4px;
}

.contact-form-container {
    background-color: #ffffff;
}

.contact-form-container h2, .estimate-form-container h2 {
    background-color: #FF563F;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    padding: 25px;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.contact-form .form-field {
    margin-bottom: 20px;
    width: 100%;
    border-radius: 4px;
}

.form-field .field-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
	background-color: #FFEBDF;
	padding: 10px 20px;
}

.form-field label {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1A1A1A;
    font-weight: 500;
	font-size: 18px;
}

.form-field .required {
    background-color: #E60012;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    padding: 0 4px 2px;
    border-radius: 3px;
    margin: 2px 0 0 8px;
    font-size: 14px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.estimate-form input[type="text"],
.estimate-form input[type="email"],
.estimate-form input[type="tel"],
.estimate-form textarea
{
    background-color: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    width: 95%;
    padding: 8px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
	color: #1a1a1a;
    margin: 15px auto;
    display: block;
	font-size: 18px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #AAAAAA;
}

.contact-form .submit-button, .estimate-form .submit-button {
    background-color: #2B53F1;
    border: none;
    border-radius: 100px;
    width: 95%;
    padding: 25px;
    color: #FFFFFF;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px auto 100px;
    font-size: 20px;
}

.contact-form .submit-button i {
    margin-left: 10px;
}

.thanks-message {
    text-align: center;
}

.thanks-message h2 {
    font-size: 24px;
    color: #FFFFFF;
    margin-bottom: 20px;
    background-color: #FF563F;
    padding: 25px;
    line-height: 1;
    font-weight: 500;
}

.thanks-message p {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
    padding: 0 30px;
}

.name-of-representative {
    text-align: right;
    color: #1a1a1a;
    font-size: 18px;
    display: block;
    padding: 0 30px;
    font-family: 'Noto Sans JP', sans-serif;
	font-weight: 300;
}

.home-button {
    background-color: #FFFFFF;
    color: #1a1a1a;
    padding: 15px 20px 18px;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    width: 94%;
    display: block;
    text-align: center;
    border: solid 1px #DDDDDD;
    margin: 40px auto 60px;
    font-size: 20px;
    line-height: 1;
}

.home-button i {
    margin-left: 10px;
}

.estimate-subheading-box {
	padding: 10px 30px;
    border-radius: 4px;
}

.estimate-subheading-box h3 {
	color: #1A1A1A;
	font-size: 24px;
    font-weight: 500;
}

.estimate-product-name {
	margin: 10px 30px;
}

.estimate-product-name .maker-name {
	font-size: 26px;
    font-weight: 700;
    margin: 0;
}

.estimate-product-name .product-title {
	font-size: 24px;
    font-weight: 500;
    margin: 0 0 0 5px;
    color: #1A1A1A;
	font-family: 'Noto Sans JP', sans-serif;
}

.simulation-results-box {
	display: flex;
	justify-content: space-between;
	margin: 10px 30px 50px;
}

.simulation-results-box .left-box {
	width: 30%;
}

.simulation-results-box .left-box img {
	border-radius: 4px;
	width: 100%;
}

.simulation-results-box .right-box {
	width: 66%;
	font-family: 'Noto Sans JP', sans-serif;
}

.right-box .simulation-results-table {
    width: 100%;
    border-collapse: collapse;
}

.right-box .simulation-results-table th,
.right-box .simulation-results-table td {
    border: 1px solid #DDDDDD;
    padding: 8px;
    text-align: left;
    vertical-align: top;
}

.right-box .simulation-results-table th:nth-child(1),
.right-box .simulation-results-table td:nth-child(1) {
    background-color: #F3F3F3;
    width: 40%;
}

.right-box .simulation-results-table th:nth-child(2),
.right-box .simulation-results-table td:nth-child(2) {
    background-color: #FFFFFF;
    width: 60%;
}

.right-box .simulation-results-table th {
    font-weight: bold;
    background-color: #F3F3F3;
}

.date-options {
	margin: 0 0 30px;
}

.date-option {
	margin: 10px 0;
}

.date-option label {
	margin: 5px 0 0 20px;
}



/* ========================================
     750px以下のスタイル
 ========================================= */
@media (max-width: 750px) {
	/* ラジオボタン */
	input[type="radio"] {
		width: 16px;
		height: 16px;
	}
	
	input[type="radio"]:checked:before {
		width: 8px;
		height: 8px;
	}
	
	input[type="checkbox"] {
		width: 18px;
		height: 18px;
	}
	
	input[type="checkbox"]:checked:before {
		left: 5px;
		width: 4px;
		height: 10px;
	}
	
	/* h1セクション */
	h1 {
		font-size: clamp(12px, 2vw, 18px);
	}
	
	/* ヘッダーセクション */
	.header-navi .menu-item i {
		font-size: clamp(18px, 2vw, 30px);
	}
	
	.favorite-count {
		padding: 2px 6px;
		font-size: clamp(8px, 2vw, 12px);
	}
	
	.header-navi .favorite-count {
		right: 8px;
		top: -5px;
	}
	
	.header-navi .logo {
		width: 22%;
	}
	
	/* パンくずセクション */
	.breadcrumb {
		margin: 5px 15px 15px;
	}
	
	.breadcrumb i {
		font-size: clamp(11px, 3vw, 17px) !important;
	}
	
	.breadcrumb a {
		font-size: clamp(13px, 2.5vw, 18px);
	}
	
	.breadcrumb span {
		font-size: clamp(13px, 2.5vw, 18px);
	}
	
	/* メニューセクション */
	.menu-list .menu-item a {
		font-size: clamp(14px, 3vw, 18px);
	}
	
	.category-toggle {
		font-size: clamp(14px, 3vw, 18px);
	}
	
	/* メインキャッチセクション */
	.left-content h2 {
		font-size: clamp(20px, 6vw, 48px);
	}
	
	.left-content h3 {
		font-size: clamp(16px, 4.4vw, 34px);
		margin-top: 5px;
	}
	
	.right-content .img1 {
		top: clamp(-85px, -11vw, -55px);
	}
	
    .right-content .img2 {
        top: clamp(40px, 10vw, 65px);
		width: 76%;
    }
	
	/* 魅力セクション */
	.charm-section {
		gap: 8px;
		margin: 15px;
	}
	
	.charm-item {
		padding: 8px;
	}
	
	.charm-item i {
		font-size: clamp(10px, 4vw, 28px);
		margin-right: 10px;
	}
	
	.text-upper {
		font-size: clamp(14px, 4vw, 28px);
	}

	.text-lower {
		font-size: clamp(10px, 2.5vw, 20px);
	}
	
	/* 検索セクション */	
	#search-input::placeholder {
		font-size: 14px;
	}
	
	#search-btn i {
		font-size: clamp(15px, 2vw, 30px);
	}
	
	/* カルーセルセクション */
	.carousel-btn {
		width: clamp(24px, 7vw, 40px);
		height: clamp(24px, 7vw, 40px);
		font-size: clamp(12px, 3vw, 18px);
	}
	
	.price {
		font-size: clamp(20px, 7vw, 48px);
	}
	
	.price-detail .tax-included {
		font-size: clamp(8px, 2vw, 14px);
	}
	
	.left-bottom-text {
		font-size: clamp(15px, 4vw, 30px);
		bottom: clamp(2px, 1.6vw, 10px);
	}
	
	/* カテゴリカルーセルセクション */
	.new-content-heading .heading-line1 {
		font-size: clamp(14px, 4vw, 26px);
	}
	
	.new-content-heading .heading-line2 {
		font-size: clamp(17px, 4.5vw, 34px);
	}
	
	.new-content-heading {
		padding: 20px 5px 25px;
	}
	
	.category-carousel-header h4 {
		font-size: clamp(13px, 3.5vw, 22px);
	}
	
	.carousel-btn .fa-light {
		font-size: clamp(14px, 4vw, 20px) !important;
	}
	
	.category-carousel-item .maker-name {
		font-size: clamp(10px, 3vw, 14px) !important;
		margin: 5px 0 0 !important;
	}
	
	.category-carousel-item .product-info {
		padding: 0;
		display: inline-block;
	}
	
	.category-carousel-item .product-title {
		font-size: clamp(10px, 3vw, 14px) !important;
		margin: 0 0 5px !important;
	}
	
	.category-carousel-item .product-price {
		font-size: clamp(30px, 5vw, 42px);
	}
	
	.category-carousel-item .price-text {
		padding: 0;
	}
	
	/* 特徴セクション */
	.feature-section {
		border-top-left-radius: 50% 80px;
		border-top-right-radius: 50% 80px;
		padding: 40px 15px;
		margin-bottom: 40px;
	}
	
	.feature-heading1 {
		margin-bottom: 5px;
		font-size: clamp(14px, 4vw, 26px);
	}
	
	.feature-heading2 {
		font-size: clamp(17px, 4.5vw, 34px);
	}
	
	.feature-number {
		font-size: clamp(23px, 5vw, 36px);
	}
	
	.feature-title {
        font-size: clamp(14px, 4vw, 26px);
    }
	
	.feature-subtitle {
		font-size: clamp(14px, 3vw, 22px);
	}
	
	.feature-description {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.feature-map {
		height: 400px;
	}
	
	.recently-viewed-header h4 {
		font-size: clamp(13px, 3.5vw, 22px);
	}
	
	/* フッター */
	.recently-viewed-buttons .carousel-btn {
		width: 26px;
		height: 26px;
	}
	
	.recently-viewed-item .product-info {
		padding: 0;
		display: inline-block;
	}
	
	.recently-viewed-item .maker-name {
		font-size: clamp(10px, 3vw, 14px) !important;
		margin: 5px 0 0 !important;
	}
	
	.recently-viewed-item .product-title {
		font-size: clamp(10px, 3vw, 14px) !important;
		margin: 0 0 5px !important;
	}
	
	.recently-viewed-item .product-price {
		font-size: clamp(30px, 5vw, 42px);
	}
	
	.footer-button i {
		font-size: clamp(16px, 4vw, 24px) !important;
	}
	
	.footer-button {
		font-size: clamp(14px, 3vw, 18px) !important;
	}
	
	.contact-text h3 {
		margin: 0 0 5px;
		font-size: clamp(14px, 3vw, 26px);
	}
	
	.contact-text h4 {
		font-size: clamp(15px, 4vw, 34px);
	}
	
	.footer-contact-box p {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.contact-button {
		padding: 20px 20px;
		font-size: clamp(14px, 3vw, 20px);
	}
	
	.footer-company-info p {
		font-size: clamp(10px, 2.5vw, 18px);
	}
	
	.footer-company-info {
		padding: 15px;
	}
	
	.footer-logo p {
		font-size: clamp(14px, 3.5vw, 18px);
	}
	
	.company-right h5 {
		font-size: clamp(15px, 3vw, 22px);
	}
	
	.contact-button i {
		font-size: clamp(16px, 4vw, 22px) !important;
	}
	
	.footer-bottom p {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	/* 商品詳細ページ */
	.category-heading {
		font-size: clamp(14px, 4vw, 26px);
	}
	
	.guarantee-heading {
		font-size: clamp(17px, 4.5vw, 34px);
	}
	
	.product-main-info .maker-name {
		font-size: clamp(17px, 4.5vw, 32px);
	}
	
	.product-main-info h5 {
		font-size: clamp(17px, 4.5vw, 32px);
	}
	
	.small-thumbnails {
		gap: 0px;
	}
	
	.estimate-price {
		font-size: clamp(36px, 11vw, 66px);
	}
	
	.estimate-detail {
		font-size: clamp(10px, 3vw, 18px);
	}
	
	.appeal-point {
		margin-top: 0;
	}
	
	.additional-info-left, .estimate-info-left {
		width: 35%;
	}

	.additional-info-right, .estimate-info-right {
		width: 63%;
	}
	
	.product-description {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.simulation-section h4, .dynamic-estimate-result h4 {
		font-size: clamp(13px, 3.5vw, 22px);
	}
	
	.simulation-section h4:first-of-type {
		margin: 0;
	}
	
	.option-block label {
		font-size: clamp(13px, 2.5vw, 18px);
	}
	
	.description-of-Pattern1 {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.image-and-checkbox {
		font-size: clamp(13px, 2.5vw, 18px);
	}
	
	.check-box-block {
		font-size: clamp(13px, 2.5vw, 18px);
	}
	
	.pattern3-description {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.radio-group {
		font-size: clamp(13px, 2.5vw, 18px);
	}
	
	.link-button {
		padding: 18px 10px;
		font-size: clamp(14px, 3vw, 26px);
		width: 92%;
	}
	
	.description-text {
		margin: 5px 10px 10px;
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.two-buttons-wrapper .left-button, .two-buttons-wrapper .right-button {
		font-size: clamp(13px, 3vw, 18px) !important;
	}
	
	/* お問い合わせページ */
	.contact-product-info h2, .estimate-heading-box h2 {
		font-size: clamp(17px, 4.5vw, 24px);
	}
	
	.estimate-subheading-box h3 {
		font-size: clamp(15px, 4.5vw, 24px);
	}
	
	.estimate-product-name .maker-name {
		font-size: clamp(15px, 4.5vw, 26px);
	}
	
	.estimate-product-name .product-title {
		font-size: clamp(15px, 4.5vw, 24px);
	}
	
	.estimate-note {
		font-size: clamp(12px, 2.5vw, 18px);
	}
	
	.simulation-results-box .right-box {
		font-size: clamp(13px, 3vw, 18px);
	}
	
	.contact-form-container h2, .estimate-form-container h2 {
		font-size: clamp(17px, 4.5vw, 24px);
	}
	
	.form-field label {
		font-size: clamp(13px, 3.5vw, 18px);
	}
	
	.form-field .required {
		font-size: clamp(11px, 2vw, 14px);
	}
	
	.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, .estimate-form input[type="text"], .estimate-form input[type="email"], .estimate-form input[type="tel"], .estimate-form textarea {
		font-size: clamp(16px, 3.5vw, 18px);
	}
	
	.contact-form input::placeholder, .contact-form textarea::placeholder, .estimate-form input::placeholder, .estimate-form textarea::placeholder {
		font-size: 14px;
	}
	
	.contact-form .submit-button, .estimate-form .submit-button {
		font-size: clamp(14px, 3vw, 20px);
	}
	
	.thanks-message h2 {
		font-size: clamp(17px, 4.5vw, 24px);
	}
	
	.thanks-message p {
		font-size: clamp(14px, 3vw, 18px);
	}
	
	.name-of-representative {
		font-size: clamp(14px, 3vw, 18px);
	}
	
	.home-button {
		font-size: clamp(14px, 3vw, 20px);
	}
	
	.product-title-box .maker-name {
		font-size: clamp(14px, 4vw, 26px);
	}
	
	.product-title-box .product-title {
		font-size: clamp(14px, 4vw, 24px);
	}
	
	.price-section .product-price {
		font-size: clamp(30px, 10vw, 50px);
	}
	
	/* カテゴリページ */
	.category-product-heading {
		font-size: clamp(15px, 4.5vw, 28px);
	}
	
	.product-link-button .link-button {
		font-size: clamp(14px, 3vw, 20px);
	}
	
	/* 会社概要ページ */
	.business-overview-heading {
		font-size: clamp(17px, 4.5vw, 24px);
	}
	
	.business-left h3 {
		font-size: clamp(14px, 3.5vw, 20px);
	}
	
	.business-right p {
		font-size: clamp(14px, 3.5vw, 20px);
	}
	
	/* お気に入りページ */
	.favorite-page h2 {
		font-size: clamp(16px, 4.5vw, 22px);
	}
	
	.favorite-page .product-info {
		padding: 0;
		display: inline-block;
	}
	
	.favorite-page .maker-name {
		font-size: clamp(10px, 3vw, 14px) !important;
		margin: 5px 0 0 !important;
	}
	
	.favorite-page .product-title {
		font-size: clamp(10px, 3vw, 14px) !important;
		margin: 0 0 5px !important;
	}
	
	.favorite-page .product-price {
		font-size: clamp(30px, 5vw, 42px);
	}
	
}

/* ========================================
     500px以下のスタイル
 ========================================= */
@media (max-width: 500px) {
	/* ヘッダー */
	.hero-section {
		padding: 5px 5px 6px 15px;
	}
	
	.header-navi {
		padding: 5px 0px 5px 15px;
	}
	
	/* パンくずセクション */
	.breadcrumb i {
		margin: 0 5px;
	}
	
	/* 魅力セクション */
	.charm-section {
        gap: 5px;
		margin: 10px 15px;
    }
	
	.right-content .img1 {
		top: clamp(-85px, -10vw, -40px);
	}
	
	.charm-item {
        padding: 5px;
    }
	
	.charm-item i {
        margin-right: 5px;
    }
	
	.text-lower {
        font-size: clamp(9px, 2.5vw, 20px);
    }
	
	/* 検索セクション */
	#search-btn {
		padding: 10px;
	}
	
	/* カルーセルセクション */
	.price-detail {
		margin: 0 0 5px 3px;
	}
	
	/* カテゴリカルーセルセクション */
	.new-content-heading .heading-line1 {
		margin-bottom: 5px;
	}
	
	.new-content-heading {
		padding: 12px 5px 15px;
	}
	
	.category-carousel-header {
		padding: 5px 15px 5px 15px;
	}
	
	.category-carousel-buttons .carousel-btn {
		width: 26px;
		height: 26px;
	}
	
	.category-carousel-item {
		padding: 5px;
	}
	
	.category-carousel-track {
		padding: 5px 5px;
	}
	
	/* 特徴セクション */
	.feature-section {
		border-top-left-radius: 50% 50px;
		border-top-right-radius: 50% 50px;
		padding: 30px 15px;
		margin-bottom: 30px;
	}
	
	.feature-box {
		padding: 0;
		gap: 6px;
	}
	
	.feature-title {
		padding: 5px 5px 5px 8px;
	}
	
	.feature-subtitle {
		margin-bottom: 5px;
	}
	
	.feature-container {
		gap: 20px;
	}
	
	.feature-image {
		margin: 5px 0;
	}
	
	.feature-map {
		height: 350px;
	}
	
	.recently-viewed-header {
		padding: 5px 15px 5px 20px;
	}
	
	/* フッター */
	.recently-viewed-carousel {
		padding: 5px 5px;
	}
	
	.recently-viewed-item {
		padding: 5px;
	}
	
	.footer-button {
        padding: 10px;
    }
	
	.footer-contact-box {
		padding: 20px 20px 30px;
		margin: 20px 0;
	}
	
	.contact-content {
		margin-bottom: 5px;
	}
	
	.contact-image {
		margin-right: 10px;
	}
	
	.contact-button {
		padding: 15px 15px;
	}
	
	.footer-contact-box p {
        margin: 5px 0 20px;
    }
	
	.footer-logo {
		margin: 20px 0;
	}
	
	.footer-logo p {
		margin-top: 10px;
	}
	
	.footer-company-info {
		margin: 20px;
		gap: 20px;
	}
	
	.company-right h5 {
		margin-top: 10px;
	}
	
	.footer-bottom {
		padding: 5px 0;
	}
	
	/* 商品詳細ページ */
	.breadcrumb-heading {
		padding: 12px 5px 15px;
	}
	
	.product-buttons {
		margin: 15px 15px;
	}
	
	.option-block {
		padding: 6px 10px;
	}
	
	.radio-group {
		padding: 6px 10px;
	}
	
	.link-button {
		margin: 8px 15px 5px;
	}
	
	.two-buttons-wrapper .left-button, .two-buttons-wrapper .right-button {
		padding: 10px 10px;
	}
	
	/* お問い合わせページ */
	.contact-product-info h2, .estimate-heading-box h2 {
		padding: 15px;
	}
	
	.contact-logo, .thanks-logo, .estimate-logo {
		padding: 10px 15px;
	}
	
	.estimate-subheading-box {
		padding: 10px 15px 5px;
	}
	
	.estimate-result-block {
		margin: 5px 15px;
	}
	
	.estimate-product-name {
		margin: 6px 15px;
	}
	
	.simulation-results-box {
		margin: 10px 15px 30px;
	}
	
	.right-box .simulation-results-table th, .right-box .simulation-results-table td {
		padding: 5px;
	}
	
	.contact-form-container h2, .estimate-form-container h2 {
		padding: 15px;
	}
	
	.contact-form input[type="text"], .contact-form input[type="email"], .contact-form input[type="tel"], .contact-form textarea, .estimate-form input[type="text"], .estimate-form input[type="email"], .estimate-form input[type="tel"], .estimate-form textarea {
		padding: 6px;
		margin: 10px auto;
	}
	
	.form-field .field-header {
		padding: 10px 15px;
	}
	
	.date-option {
		margin: 5px 0;
	}
	
	.date-options {
		margin: 0 0 20px;
	}
	
	.contact-form .submit-button, .estimate-form .submit-button {
		padding: 15px;
		margin: 20px auto 70px;
	}
	
	.thanks-message h2 {
		padding: 15px;
	}
	
	.thanks-message p {
		margin-bottom: 10px;
		padding: 0 15px;
	}
	
	.thanks-message h2 {
		margin-bottom: 10px;
	}
	
	.home-button {
		padding: 12px 20px 15px;
		margin: 30px auto 50px;
	}
	
	.product-title-box {
		margin: 0 0 10px;
	}
	
	.image-price-box {
		margin: 0 0 10px;
	}
	
	.price-section .cheapest-appeal-point {
		margin-bottom: 10px;
	}
	
	.price-section {
		margin-left: 10px;
	}
	
	.category-product-item {
		margin-bottom: 15px;
	}
	
	/* カテゴリページ */
	.category-product-heading {
		margin-bottom: 8px;
	}
	
	.product-link-button .link-button {
		padding: 15px 20px;
	}
	
	.product-link-button {
		margin: 0 15px 20px;
	}
	
	.product-divider {
		margin: 0 15px 20px;
	}
	
	.category-product-item {
		padding: 0 10px;
	}
	
	.category .charm-section {
		margin: 10px 15px 20px;
	}
	
	/* 会社概要ページ */
	.business-overview-heading {
		padding: 15px;
	}
	
	.business-details {
		padding: 0 15px;
	}
	
	.business-row {
		padding: 15px 0;
	}
	
	/* お気に入りページ */
	.favorite-page .products-list {
		padding: 0 10px;
	}
}

/* ========================================
     370px以下のスタイル
 ========================================= */
@media (max-width: 370px) {
	/* カテゴリカルーセルセクション */
	.category-carousel-track {
        padding: 5px 0px;
    }
	
	/* フッター */
	.footer-company-info {
        margin: 15px;
        gap: 10px;
    }
}
