/*メディアクエリ（サンプル最後に取る）*/
/*sp（なくても良い）*/
@media screen and (max-width: 480px) {}
/*tablet 768px以下*/
@media screen and (max-width: 767px) {}
/*pc 1000px以下*/
@media screen and (max-width: 1000px) {}
.main_read-contents {
    z-index: 2;
    max-width: 1225px;
    padding: 0px 50px;
    margin: 30px auto;
    display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.main_read-contents .read-text-area {
    position: relative;
    width: 65%;
}
.read-text-area .deco001 {
    position: absolute;
    width: 35%;
    top: -65px;
    left: -200px;
    z-index: -1;
}
.read-text-area .deco002 {
    position: absolute;
    width: 20%;
    top: -75px;
    right: -50px;
    z-index: -1;
}
.read-text-area .read-text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 3;
}
.main_read-contents .read-img {
    width: 30%;
}
.main_read-contents .note {
    width: 100%;
}
/* カテゴリーメニュー */
.category_menu {
    padding: 70px 50px;
    background-color: #ffe285;
    background-image:
        repeating-linear-gradient(to bottom, #fff, #fff 2px, transparent 2px, transparent 71px), repeating-linear-gradient(to right, #fff, #fff 2px, transparent 2px, transparent 71px);
    background-size: 71px 71px; /* 縦横のマス目サイズを指定 */
    background-position: center; /* 基点を中央に */
}
.category_menu .headtext p {
    color: #7b4084;
}
.category_menu .headtext h2 {
    color: #7b4084;
}
.category_menu ul {
    max-width: 1225px;
    padding: 0px 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    margin: 30px auto;
}
.category_menu li {
    width: 18%;
	margin: 0px 12px;
}
.category_menu li .img {
    display: block;
    margin-bottom: 20px;
}
.category_menu li .jp {
    font-size: 1.6rem;
    font-weight: 500;
    color: #000;
    transition: 0.3s;
    margin-bottom: 5px;
}
.category_menu li .en {
    height: 44px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.2;
    color: #000;
    transition: 0.3s;
}
.category_menu li .img img {
    width: 100%;
    filter: saturate(100%);
    transition: 0.3s;
}
.category_menu li:hover .img img {
    filter: saturate(180%);
}
.category_menu li:hover .jp, .category_menu li:hover .en {
    color: #7b4084;
}
/* カテゴリーメニュー */
/* カテゴリー 商品一覧 */
.product_sub-wrapper {
    padding: 70px 0px 150px;
    background-color: #ef4cbd;
    background-image: radial-gradient(circle, #ff94c0 70px, transparent 70px), radial-gradient(circle, #ff94c0 70px, transparent 70px);
    background-position: 0 0, 170px 220px;
    background-size: 340px 440px;
}
#clip .product_sub-wrapper {
    position: relative;
    padding: 150px 0px 150px;
    background-color: #5abce2;
    background-image: url("../images/bg/pattern_001.png");
    background-size: 20%;
    background-blend-mode: multiply;
}
#combs .product_sub-wrapper {
    position: relative;
    padding: 150px 0px 150px;
    background-color: #9a9ae5;
    background-image: url("../images/bg/pattern_004.png");
    background-size: 30%;
}
#headband .product_sub-wrapper {
    position: relative;
    padding: 150px 0px 150px;
    background-color: #5abce2;
    background-image: url("../images/bg/pattern_002.png");
    background-size: 18%;
    background-blend-mode: multiply;
}
#kids .product_sub-wrapper {
    position: relative;
    padding: 150px 0px 150px;
    background-color: #ef4cbd;
    background-image: url("../images/bg/pattern_003.png");
    background-size: 40%;
}
.product_mv-wrapper {
    max-width: 972px;
    padding: 0px 50px;
    margin: 0px auto;
}
.product_mv-wrapper .headtext p, .product_mv-wrapper .headtext h2 {
    color: #fff;
}
.product_mv-box {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.product_mv-box .product_mv-item {
    width: 45%;
}
.items_sub-wrapper {
    position: relative;
    z-index: 3;
    background-color: #b8e3ed;
    padding: 50px 0px 100px;
}
.items_sub-wrapper::before {
    content: "";
    background-image: url("../images/bg/item_top.png");
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: bottom;
    width: 100%;
    height: 100px;
    position: absolute;
    top: -100px;
    left: 0px;
}
.items_sub-wrapper::after {
    content: "";
    background-image: url("../images/bg/item_bottom.png");
    background-size: 100% 100px;
    background-repeat: no-repeat;
    background-position: top;
    width: 100%;
    height: 100px;
    position: absolute;
    bottom: -100px;
    left: 0px;
}
.items_sub-wrapper .headtext {
    margin-bottom: 50px;
}

.product-grid {
    max-width: 1225px;
    padding: 0px 50px;
    list-style: none;
    margin: 0 auto;
    display: flex;
    gap: 16px;
	justify-content: center; /* ★中央寄せ */
	flex-wrap: wrap;
}
.product-card {
    position: relative;
    padding: 20px 20px 40px 20px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
	width: 18%;
}
@media (min-width: 801px) and (max-width: 1024px) {
    .product-card {
        width: 18%;
    }
}
@media (max-width: 800px) {
    .product-card {
        width: 45%;
    }
}
.product-card a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background-image: url("../images/category/icon001.png");
    background-size: cover;
    background-repeat: no-repeat;
}
.product-card img {
    display: block;
    width: 100%;
    height: auto;
    transition: 0.3s;
}
.card-name {
	font-size: 1.4rem;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 5px;
    transition: 0.3s;
	color: #000;
}
.card-price {
	font-size: 1.4rem;
    font-weight: 500;
    transition: 0.3s;
	color: #000;
}
.product-card:hover img {
    opacity: 0.7;
}
.product-card:hover .card-name, .product-card:hover .card-price {
    color: #ef4cbd;
}
.is-hidden {
    display: none;
}
.products__more {
    text-align: center;
    margin-top: 16px;
}
.products__more .js-show-more {
    background: #fff;
    cursor: pointer;
    padding: 18px;
    display: block;
    width: 350px;
    margin: 0px auto;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    color: #fff;
    background-color: #ef4cbd;
    border: 3px solid #ef4cbd;
    border-radius: 40px;
    margin-top: 50px;
    transition: 0.3s;
}
.products__more .js-show-more:hover {
    background-color: #fff;
    color: #ef4cbd;
    transition: 0.3s;
}
@keyframes fadeUpIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* クリック後に出るカードだけに付与する */
.product-card.is-revealing {
    /* 初期状態は透明（reflow後にアニメ開始） */
    opacity: 0;
}
.product-card.revealed {
    animation: fadeUpIn 480ms ease-out both;
}
/* 動作をやさしく：ユーザがアニメ無効化指定のとき */
@media (prefers-reduced-motion: reduce) {
    .product-card.revealed {
        animation: none;
        opacity: 1;
        transform: none;
    }
}
.sub_menu-contents {
    max-width: 1036px;
    padding: 0px 50px;
    margin: 60px auto 0px;
}
.sub_menu-list {
    display: flex;
    justify-content: space-between;
    background-color: #edf6fd;
    border-radius: 50px;
    padding: 7px;
}
.sub_menu-list a {
    width: 18%;
    padding: 18px 13px;
    background-color: #7b4084;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border: 3px solid #7b4084;
    border-radius: 35px;
    transition: 0.3s;
}
.sub_menu-list a:hover {
    background-color: #fff;
    color: #7b4084;
    transition: 0.3s;
}
/* カテゴリー 商品一覧 */
/* 注目記事 */
.feature_main-contents {
    padding: 150px 0px 100px;
    background-color: rgba(123, 64, 132, 1);
    background-image: repeating-linear-gradient(124deg, transparent, transparent 10px, rgba(213, 179, 224, 0.15) 10px, rgba(213, 179, 224, 0.15) 20px);
}
.feature_main-contents .headtext p, .feature_main-contents .headtext h2 {
    color: #fff;
}
.feature-grid {
    position: relative;
    max-width: 1225px;
    padding: 0px 50px;
    margin: 30px auto 0px;
}
.feature-grid .slick-js {
    margin: 0;
    padding: 0;
    list-style: none;
}
.feature-grid .slick-js .feature-card {
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 20px;
    margin: 0 17.5px;
}
/* Slick が生成するラッパーにネガティブマージンで調整して端を揃える */
.feature-grid .slick-list {
    margin: 0 -17.5px;
}
.feature-grid .slick-slide {
    display: flex;
    justify-content: center;
}
/* 矢印の見た目と位置（左右中央） */
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10; /* ← 上に出す */
    width: 44px;
    height: 44px;
    border: none;
    cursor: pointer;
    line-height: 44px;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.00);
}
/* 左右位置（親の padding:0 50px; を考慮して内側に） */
.slick-prev {
    left: 5px;
}
.slick-next {
    right: 5px;
}
.feature-grid .slick-prev::before {
    content: '';
    width: 28px;
    height: 28px;
    border: 0;
    border-top: solid 4px #fff;
    border-left: solid 4px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    left: 10px;
    right: 0;
    bottom: 0;
    margin: auto;
    border-radius: 2.5px;
}
.feature-grid .slick-next::before {
    content: '';
    width: 28px;
    height: 28px;
    border: 0;
    border-top: solid 4px #fff;
    border-right: solid 4px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    border-radius: 2.5px;
}
.feature-card .card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 20px 20px 0px 0px;
}
.feature-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.feature-card .day {
	font-size: 1.4rem;
    padding: 0px 20px;
    font-weight: 400;
    margin-top: 20px;
	color: #000;
}
.feature-card .text {
    padding: 0px 20px;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 10px 0px 30px;
	color: #000;
}
.feature-btn {
    margin: 100px auto 50px;
    text-align: center;
}
.feature-btn a {
    padding: 20px;
    display: block;
    width: 400px;
    margin: 0px auto;
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    color: #7b4084;
    background-color: #ffe285;
    border: 3px solid #ffe285;
    border-radius: 40px;
    transition: 0.3s;
}
.feature-btn a:hover {
    background-color: #fff;
    color: #7b4084;
    transition: 0.3s;
}
/* 注目記事 */
.sns_main-contents {
    padding: 70px;
    background-color: #d5b3e0;
	position: relative;
  z-index: 3;
}
.sns-mv {
    max-width: 1300px;
	margin: 0px auto;
}
.sns-list {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.sns-list a {
    width: 50px;
    margin: 0px 10px;
    transition: 0.3s;
}
.sns-list a:hover img {
    opacity: 0.7;
    transition: 0.3s;
}
@media (max-width: 1000px) {
    .main_read-contents .read-text-area {
        width: 60%;
    }
    .main_read-contents .read-img {
        width: 35%;
    }
    .category_menu ul {
        padding: 0px 0px;
    }
    .sub_menu-list {
        justify-content: center;
        flex-wrap: wrap;
        padding: 14px;
    }
    .sub_menu-list a {
        width: 30%;
        font-size: 1.6rem;
        margin: 0px 5px;
    }
    .sub_menu-list a:nth-child(4), .sub_menu-list a:nth-child(5) {
        margin-top: 15px;
    }
}
@media (max-width: 800px) {
    .main_read-contents {
        margin: auto;
        padding: 90px 20px;
    }
    .main_read-contents .read-text-area {
        width: 50%;
    }
    .read-text-area .deco001 {
        width: 100%;
        top: -125px;
        left: 10px;
    }
    .read-text-area .deco002 {
        width: 100%;
        top: 92%;
    }
    .main_read-contents .read-img {
        width: 45%;
    }
    .read-text-area .read-text {
        font-size: 1.5rem;
        line-height: 2.0;
    }
    .category_menu ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .category_menu li {
        width: 30%;
        margin: 0px 5px 10px;
    }
    .items_sub-wrapper {
        padding: 50px 0px 50px;
    }
    .items_sub-wrapper::before {
        background-image: url("../images/bg/item_top_sp.png");
        background-size: 100% 100px;
        width: 100%;
        height: 100px;
    }
    .items_sub-wrapper::after {
        background-image: url("../images/bg/item_bottom_sp.png");
        background-size: 100% 100px;
        width: 100%;
        height: 100px;
    }
    .items_sub-wrapper .headtext {
        display: none;
    }
}
@media (max-width: 600px) {
    .main_read-contents {
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
        overflow: hidden;
    }
    .main_read-contents .read-text-area {
        position: static;
        width: auto;
        margin: auto;
    }
    .read-text-area .deco001 {
        top: -25px;
        left: -10px;
    }
    .read-text-area .deco002 {
        top: 45%;
        left: 10px;
    }
    .main_read-contents .read-img {
        width: 65%;
        margin: 90px auto 0px;
    }
    .headtext p {
        margin-bottom: 3px;
    }
    .headtext h2, .headtext h3 {
        font-size: 4.6rem;
        line-height: 1.1;
    }
    .category_menu {
        padding: 70px 20px 5px;
        background-image: repeating-linear-gradient(to bottom, #fff, #fff 1px, transparent 1px, transparent 41px), repeating-linear-gradient(to right, #fff, #fff 1px, transparent 1px, transparent 41px);
        background-size: 41px 41px;
    }
    .category_menu li {
        width: 45%;
        margin: 0px 5px 20px;
    }
    .category_menu li .jp {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0px;
    }
    .category_menu li .en {
        font-size: 1.6rem;
        font-weight: 600;
    }
    .product_sub-wrapper {
        padding: 60px 20px 170px;
        background-image: radial-gradient(circle, #ff94c0 40px, transparent 40px), radial-gradient(circle, #ff94c0 40px, transparent 40px);
        background-position: 0 0, 100px 100px;
        background-size: 200px 200px;
    }
    #clip .product_sub-wrapper {
        background-size: 30%;
    }
    #combs .product_sub-wrapper {
        background-size: 100%;
    }
    #headband .product_sub-wrapper {
        background-size: 48%;
    }
    #kids .product_sub-wrapper {
        background-size: 90%;
    }
    .product_mv-wrapper {
        padding: 0px;
    }
    .product_mv-box {
        margin-top: 30px;
        justify-content: center;
    }
    .product_mv-box .product_mv-item:nth-child(1) {
        width: 100%;
        max-width: 232px;
    }
    .product_mv-box .product_mv-item:nth-child(2) {
        display: none;
    }
    .items_sub-wrapper {
        padding: 10px 0px 10px;
    }
    .product-grid {
        padding: 0px 20px;
    }
    .card-price {
        font-size: 1.8rem;
    }
    .products__more {
        padding: 0px 20px;
    }
    .products__more .js-show-more {
        width: 100%;
        border-radius: 50px;
    }
    .sub_menu-contents {
        padding: 0px 20px;
        margin: 40px auto 0px;
    }
    .sub_menu-list {
        justify-content: space-between;
        border-radius: 20px;
        padding: 14px 14px 0px;
    }
    .sub_menu-list a {
        width: 47%;
        font-size: 1.6rem;
        margin: 0px 0px 15px;
        padding: 18px 2px;
    }
    .sub_menu-list a:nth-child(4), .sub_menu-list a:nth-child(5) {
        margin-top: 0px;
    }
    .feature_main-contents {
        padding: 150px 0px 70px;
    }
    .feature-btn {
        padding: 0px 20px;
        margin: 60px auto 0px;
    }
    .feature-btn a {
        width: 100%;
        border-radius: 50px;
    }
    .sns_main-contents {
        padding: 60px 20px;
    }
}
@media (max-width: 480px) {
    .main_read-contents {
        padding: 60px 20px 30px;
    }
    .read-text-area .deco001 {
        top: -25px;
        left: 20px;
    }
    .read-text-area .deco002 {
        top: auto;
        bottom: 420px;
    }
    .main_read-contents .read-img {
        width: 85%;
    }
}
@media (max-width: 400px) {
    .read-text-area .deco002 {
        bottom: 400px;
    }
}
@media (max-width: 380px) {
    .read-text-area .deco002 {
        bottom: 320px;
    }
    .category_menu {
        padding: 70px 0px 5px;
    }
    .category_menu li {
        width: 47%;
    }
}