@charset "utf-8";
/* CSS Document */

body{
	background-color: #FFFFFF;
	padding-top: 90px;
}

.loader2{
	position: relative;
}
body.on .loader2{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99999;
}
body.on .loader2 > div{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
body.on .loader2 > div::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background-color: #fff;
}
body.on .loader2.active > div::after{
	animation-name: loader2;
	animation-duration: 0.6s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay:0.6s;
}
body.on .loader2 > div > .flex{
	width: 50%;
	flex-direction: column;
	justify-content: space-around;
}
body.on .loader2 > div .logo{
	position: relative;
	z-index: 2;
	width: 60%;
	max-width: 200px;
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	animation-delay: 0.4s;
	text-align: center;
}
body.on .loader2.active > div .logo img{
	animation-name: bluriout;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	/*
	animation-delay: 1.8s;
	*/
}
body.on .loader2 .hero-container{
	width: 70%;
	max-width: 200px;
}

@keyframes bluriout {
	0% {
		width: 100%;
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
	}
	100% {
		width: 80%;
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
	}
}
@keyframes loader2 {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}



.header,.header.active{background-color:rgba(255, 255, 255, 0.95)}
.menu-bt div{
	background-color: #181818;
}
.contact-link{
	background-color: #181818;
}
.footer_contact {display: none;}
/* ===== ヘッダーリンク ===== */
.search-link,
.lang-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: #181818;
}

.search-link:hover,
.lang-link:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.search-link img,
.lang-link img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.search-link p,
.lang-link p {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
    white-space: nowrap;
}

/* ===== メインビジュアル ===== */
.hero-top-box{
	padding: 10% 5% 5%;
	text-align: center;
}
.hero-top-box img{
	width: 40%;
	max-width: 150px;
}
.hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-container {
    display: flex;
    width: 100%;
	gap: 10px;
}

.hero-item {
    flex: 1;
    position: relative;
    width: 33.333%;
	aspect-ratio: 1 / 1;
}
body.on .hero-item::after{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: #C6C6C6;
	mix-blend-mode: multiply;
	z-index: 2;
}
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
	z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
	width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
	color: #fff;
    z-index: 3;
}
.hero-overlay p{color: #fff;}

.hero-year {
    font-family: "Lato", "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-collection {

    font-family: "Lato", "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ===== カテゴリーナビゲーション ===== */
.category-nav {
    top: 102px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
body.on .category-nav {
    position: fixed;
}

.category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
}

.category-item:hover {
    transform: translateY(-2px);
    background: #7BE861;
}

.category-name {
    font-family: "Lato", "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    font-weight: 900;
    color: #0a183e;
    text-align: center;
    white-space: nowrap;
}

/* ===== 商品グリッド ===== */
.products-section {
    padding: 4rem 0;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.product-item {
    background: #ffffff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
    position: relative;
}

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

.product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 0;
    text-align: left;
}

.product-description {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #333333;
    margin-bottom: 0.5rem;
    text-align: left;
}

.product-name {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #333333;
    text-align: left;
    margin: 0;
}

.products-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    position: relative;
    padding: 1rem 2.5rem;
    background: none;
    color: #0a183e;
    text-decoration: none;
    border: 2px solid #181818;
    border-radius: 0;
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: none;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 2;
    color: #0a183e;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: #0a183e;
    text-decoration: none;
}

/* ===== OEMサービス ===== */
.oem-section {
    padding: 4rem 0;
    background: #ffffff;
}

.oem-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.oem-content {
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}

.oem-header {
    margin-bottom: 2rem;
    flex: 0 0 400px;
}

.oem-subtitle {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 13px;
    color: #666666;
    margin-bottom: 0.5rem;
    text-align: left;
}

.oem-title {
    font-family: "Lato", "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #0a183e;
    margin: 0;
    text-align: left;
}

.oem-description {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 3rem;
    max-width: 800px;
    text-align: left;
    flex: 1;
}

.oem-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    margin-bottom: 3rem;
}

.oem-top-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.oem-middle-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature-item {
    background: #EEF0F1;
    padding: 1.5rem;
    border-radius: 0;
    box-shadow: none;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}



.feature-content {
    flex: 1;
}

.feature-title {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222222;
    text-align: left;
}

.feature-text {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #222222;
    text-align: left;
}

.oem-sample {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    background: #ffffff;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    width: 400px;
    flex-shrink: 0;
}

.sample-image {

}

.sample-img {
    width: 100%;
    border-radius: 0;
}

.sample-info {
    flex: 1;
	text-align: center;
}

.sample-label {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 0;
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sample-title {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #333333;
    text-align: left;
}

.sample-price {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    color: #333333;
    margin-bottom: 0;
    text-align: left;
}

.oem-cta {
    text-align: center;
}

/* ===== Instagram ===== */
.instagram-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.instagram-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.instagram-subtitle {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.instagram-status {
    padding: 3rem;
}

.status-text {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== ニュース ===== */
.news-section {
    padding: 4rem 0;
}

.news-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.news-header {
    text-align: center;
    margin-bottom: 3rem;
}

.news-title {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 6px;
}

.news-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.news-list .webgene-item .news-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.news-text {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #181818;
    flex: 1;
    line-height: 1.6;
}

.news-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    text-align: right;
}

.news-date {
    position: relative;
    font-family: "Noto Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #6e6e6e;
}

.news-date::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 15px;
    background-color: #6e6e6e;
}

.news-list .webgene-item {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.news-list .webgene-item a {
    text-decoration: none;
    color: inherit;
}

.news-heading {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    color: #333333;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.news-category {
    font-family: "Noto Sans", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #6e6e6e;
}


.more {
    text-align: right;
    margin-top: 2rem;
}

.more a {
    text-decoration: none;
    color: #333;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Noto Sans", "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.more a:hover {
    color: #666;
}

.more i {
    font-size: 12px;
}

.flex {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.flex-center-right {
    justify-content: flex-end;
}

.flex-tb {
    flex-direction: column;
}

.pd-t-30px {
    padding-top: 30px;
}

/* ===== オンラインショップ ===== */
.shop-section {
	display: block;
    padding: 4rem 0;
    background: #2B2B2B;
    color: #ffffff;
	text-align: center;
}
.shop-section img{
	width: 60%;
	max-width: 440px;
}
.shop-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.shop-section .section-title {
    color: #ffffff;
}

.shop-cta {
    margin-top: 2rem;
}

.shop-section .cta-button {
    background: #ffffff;
    color: #667eea;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.shop-section .cta-button:hover {
    background: #f8f9fa;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

/* ===== レスポンシブ対応 ===== */

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
    .hero-year {
        font-size: 28px;
    }
    
    .hero-collection {
        font-size: 14px;
    }
    
    .category-container {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
    .hero-year {
        font-size: 26px;
    }
    
    .hero-collection {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .category-container {
        gap: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
    
    .oem-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
	.category-nav{
		display: none;
	}
}

/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
    .hero-section {
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .oem-content {
        text-align: center;
    }
    
    .oem-header {
        flex: none;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .oem-subtitle {
        text-align: center;
    }
    
    .oem-title {
        font-size: 28px;
        text-align: center;
    }
    
    .oem-description {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .oem-features {
        order: -1;
        margin-bottom: 2rem;
        text-align: center;
		margin-left: auto;
		margin-right: auto;
    }
    
    .oem-top-section {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }
    
    .oem-middle-section {
        flex-direction: column;
        gap: 0;
        margin-bottom: 2rem;
    }
    
    .oem-sample {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sample-info {
        text-align: center;
    }
    
    .feature-item {
        padding: 1rem;
        text-align: center;
    }
    
    .feature-title {
        font-size: 18px;
        text-align: center;
    }
    
    .feature-text {
        font-size: 14px;
        text-align: center;
    }
    
	.search-link, .lang-link{
		padding: 5px;
	}
}

/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .oem-content {
        padding: 0;
    }
    
    .oem-top-section {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .oem-middle-section {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .oem-title {
        font-size: 24px;
    }
    
    .oem-description {
        font-size: 15px;
        margin-bottom: 1.5rem;
		text-align: left;
    }
    
    .oem-sample {
        padding: 1.5rem;
        max-width: 100%;
    }
    
    .feature-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-title {
        font-size: 16px;
        text-align: center;
    }
    
    .feature-text {
        font-size: 13px;
        text-align: left;
    }
    
    .news-item {
        padding: 1rem;
    }
	.contact-link{
		display: none;
	}
	.header-right{
		gap: 10px;
	}
	.search-link img, .lang-link img{
		width: 12px;
		height: 12px;
	}
	.hero-container{
		flex-direction: column;
	}
	.hero-container .hero-item{
		width: 100%;
	}
	 .hero-top-box{
		padding: 10% 5% 50px;
	}
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
   .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

.apparel_section{
	padding-top: 200px;
	background-color: #F8F9F9;
	gap: 0;
	justify-content: flex-start;
	align-items: flex-start;
}
.apparel_section .search_list{
	width: 300px;
	padding-right: 3%;
}
.apparel_section .search_list label{
	width: 100%;
	margin-bottom: 8px;
}
.apparel_section .apparel_list{
	width: calc(100% - 300px);
}

.apparel_section .apparel_list .webgene-blog{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: flex-start;
    align-items: flex-start;
	flex-direction: row;
	gap: 50px 5px;
}
.apparel_section .apparel_list .webgene-blog .webgene-item{
	width: calc(100% / 4 - 15px / 4);
}
.apparel_section .apparel_list .webgene-blog .webgene-item a{
	gap: 6px;
	justify-content: flex-start;
	align-items: flex-start;
}
.apparel_section .apparel_list .webgene-blog .webgene-item a .imgbox{
	width: 100%;
}
.webgene-pagination{
	width: 100%;
}
.webgene-pagination ul{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	gap: 30px;
}
.webgene-pagination ul a{
	display:-webkit-box;
    display:-moz-box;
    display:-ms-box;
    display:-webkit-flexbox;
    display:-moz-flexbox;
    display:-ms-flexbox;
    display:-webkit-flex;
    display:-moz-flex;
    display:-ms-flex;
    display:flex;
    -webkit-box-lines:multiple;
    -moz-box-lines:multiple;
    -webkit-flex-wrap:wrap;
    -moz-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    justify-content: center;
    align-items: center;
	flex-direction: row;
	color: #333;
	text-align: center;
	letter-spacing: 0;
	background-color: transparent;
	width: 46px;
	aspect-ratio: 1 / 1;
	font-size: 22px;
	font-weight: 500;
	border: 1px solid #0A183E;
}
.webgene-pagination ul a:hover{
}
.webgene-pagination ul .selected a{
	pointer-events: none;
	background-color: #0A183E;
	border-color: #0A183E;
	border: none;
	color: #fff;
}

.search-submit{
	background-color: #fff;
	border: 2px solid #181818;
	padding: 10px 40px;
}

.loader2 .hero-container{
	padding-top: 50px;
	max-width: 1280px;
}
.loader2 .hero-image{
	z-index: 4;
}
body.on .loader2 .hero-item::after{
	z-index: 5;
}
.loader2 .hero-overlay{
	z-index: 6;
}
body.on .loader2 .hero-container .hero-item{
	opacity:0;
	-ms-filter: blur(6px);
	filter: blur(6px);
	animation-name: blurin;
	animation-duration: 1.2s;
	animation-delay: 0.8s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	z-index: 99;
}
body.on .loader2.active .hero-container{
	animation-name: blurout2;
	animation-duration: 1.2s;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
	z-index: 99;
}

@keyframes blurout2 {
	0% {
		opacity:1;
		-ms-filter: blur(0px);
		filter: blur(0px);
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		-ms-filter: blur(6px);
		filter: blur(6px);
		transform: translateY(15%);
	}
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
	.apparel_section .apparel_list .webgene-blog{
		gap: 50px 5px;
	}
	.apparel_section .apparel_list .webgene-blog .webgene-item{
		width: calc(100% / 3 - 10px / 3);
	}

}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
	.apparel_section .apparel_list .webgene-blog .webgene-item{
		width: calc(100% / 2 - 10px / 2);
	}

}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
	.apparel_section .search_list{
		width: 250px;
		padding-right: 5%;
	}
	.apparel_section .apparel_list{
		width: calc(100% - 250px);
	}

}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
	.apparel_section .search_list{
		width: 100%;
		padding-right: 0;
		margin-bottom: 50px;
	}
	.apparel_section .apparel_list{
		width: 100%;
	}
	.webgene-pagination{
		padding-top: 0;
	}
	.webgene-pagination ul{
		gap: 20px;
	}
	.webgene-pagination ul a{
		width: 36px;
		font-size: 18px;
	}
	.loader2 .hero-container{
		flex-direction: row;
		gap: 5px;
	}
	.loader2 .hero-year{
		font-size: 20px;
	}
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

