<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*===============================

定義

================================*/

:root {
    --max-width-main: 1200px;
    --main-color: #b20300;
    --sub-color: #000;
    --spacing-ss: 10px;
    --spacing-s: 20px;
    --spacing-m: 40px;
    --spacing-l: 60px;
    --spacing-ll: 150px;
}

@media screen and (max-width:640px) {
    :root {
        --max-width-main: 100%;
        --spacing-ss: 5px;
        --spacing-s: 10px;
        --spacing-m: 20px;
        --spacing-l: 30px;
        --spacing-ll: 60px;
    }
}

/*===============================

reset

================================*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
input,
button,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    background: none;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;

    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

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

li {
    font-size: 1rem;
}

table {
    border: none;
    border-collapse: collapse;
    border-spacing: 0;
}

th {
    font-weight: normal;
}

*:focus {
    outline: none;
}

/*===============================

base

================================*/
body {
    font-family: "Noto Sans Japanese", "ヒラギノ角ゴ ProN W3",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W6",
    "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
    font-size: 17px;
    line-height: 1.5;
    color: #000000;
	background-image: none
        ;
	background-size: cover;
}

@media screen and (max-width: 640px) {
    body {
        font-size: 13px;
    }
}

h1 {
    font-weight: normal;
    font-size: 1.5rem;
}

@media screen and (max-width: 640px) {
    h1 {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 640px) {
    img {
        width: 100%;
    }
}

/*  リンク
------------------------*/
a {
    text-decoration: none;
    color: #000000;
}

a:hover {
    transition: 0.2s;

    -webkit-transition: 0.2s;
}

/*===============================

    header
    
================================*/
.header {
    padding: 20px 0;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .header {
        padding: 0 0;
    }
}

/*  sitelogo
------------------------*/
.siteLogo {
    margin: var(--spacing-s) 0;
}

@media screen and (max-width:640px) {
    .siteLogo img {
        width: 50%;
        height: 50%;
    }
}

/*  globalNav　サイト最上部のグローバルナビゲーション
------------------------*/
.globalNavList li {
    display: inline-block;
    padding: 0 15px;
    font-size: 1rem;
    letter-spacing: 0.1rem;
}

.globalNavList li + li {
    border-left: 1px solid #000000;
}

@media screen and (max-width:640px) {
    .globalNav {
        position: fixed;
        /*ナビのスタート位置と形状*/
        top: 0;
        right: -120%;
        z-index: 2;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        /*ナビの高さ*/
        background: var(--main-color);
        /*動き*/
        transition: all 0.6s;
    }

    .globalNav.panelactive {
        right: 0;
    }

    .globalNavList {
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }

    .globalNavList li {
        display: block;
        margin-bottom: 20px;
        padding: 0;
        font-size: 1.2rem;
        letter-spacing: 0.1rem;
    }

    .globalNavList li + li {
        border-left: 0;
    }

    .globalNavList a {
        color: #ffffff;
    }
}

/* ハンバーガメニュー */
.globalNavBtn {
    display: none;
}

@media screen and (max-width:640px) {
    .globalNavBtn {
        display: block;
        position: fixed;
        top: 16px;
        right: 10px;
        z-index: 999;
        width: 27px;
        height: 27px;
        cursor: pointer;
    }
}

.globalNavBtn span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #000000;
    transition: 0.35s ease-in-out;

    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
}

.globalNavBtn span:nth-child(1) {
    top: 0;
}

.globalNavBtn span:nth-child(2) {
    top: 10px;
}

.globalNavBtn span:nth-child(3) {
    top: 20px;
}

.globalNavBtn.open span {
    background: #ffffff;
}

.globalNavBtn.open span:nth-child(1) {
    top: 11px;
    transform: rotate(315deg);

    -webkit-transform: rotate(315deg);
    -moz-transform: rotate(315deg);
}

.globalNavBtn.open span:nth-child(2) {
    left: 50%;
    width: 0;
}

.globalNavBtn.open span:nth-child(3) {
    top: 11px;
    transform: rotate(-315deg);

    -webkit-transform: rotate(-315deg);
    -moz-transform: rotate(-315deg);
}

body.fix {
    position: fixed;
    width: 100%;
}

/*===============================

    main
    
================================*/
.main {
    position: relative;
    max-width: var(--max-width-main);
    margin: 0 auto;
    padding-bottom: var(--spacing-l);

}

/*  navList PC用
------------------------*/
.navList,
.navList4clm {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    margin-bottom: var(--spacing-l);
}

@media screen and (max-width: 640px) {
    .navList,
    .navList4clm {
        justify-content: start;
        width: 90%;
        margin: 0 auto var(--spacing-m);
    }
}


.navList li {
    width: calc((100% - 45px) /4);
    margin: 0 15px 15px 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .navList li {
        width: calc((100% - 30px) /3);
        margin: 0 15px 15px 0;
        font-size: 0.9rem;
    }
}

.navList li a {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 0 15px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #ffffff;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

@media screen and (max-width: 640px) {
    .navList li a {
        height: auto;
        min-height: 80px;
    }
}

.navList li:nth-child(4n) {
    margin-right: 0;
}

@media screen and (max-width: 640px) {
    .navList li:nth-child(3n) {
        margin-right: 0;
    }

    .navList li:nth-child(4n) {
        margin-right: 15px;
    }
}

/*  featureMainVisual
------------------------*/
.featureMainVisual {
    display: block;
    position: relative;
    width: 100%;
    height: 630px;
    margin-bottom: var(--spacing-l);
}

@media screen and (max-width: 640px) {
    .featureMainVisual {
        width: 100%;
        height: auto;
    }
}

/* featureMainVisual PC用 */
.featureMainVisual-pc img {
    position: absolute;
    left: 50%;
    width: 1200px;
    height: 630px;
    margin-left: -600px;
}

.featureMainVisual-sp {
    display: none;
}

/* featureMainVisual SP用 */
@media screen and (max-width: 640px) {
    .featureMainVisual-pc {
        display: none;
    }
    .featureMainVisual-sp {
        display: block;
    }
}

/*  featureTop
------------------------*/
.featureTop {
    margin-bottom: var(--spacing-l);
    text-align: center;
}

.featureTop_copy {
	font-family: Klee One, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 640px) {
    .featureTop_copy {
        font-size: 1rem;
    }
}

.featureTop_title {
	font-family: Klee One, sans-serif;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 3.5rem;
    letter-spacing: 2px;
}

@media screen and (max-width: 640px) {
    .featureTop_title {
        font-size: 2.5rem;
    }
}

.featureTop_text {
    width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
	line-height: 1.5;
}

@media screen and (max-width: 640px) {
    .featureTop_text {
        width: 90%;
        font-size: 0.9rem;
        text-align: left;
    }
}

/*  featureNav　特集全体のナビゲーション
------------------------*/
.featureNav {
    margin-bottom: var(--spacing-ll);
}

@media screen and (max-width: 640px) {
    .featureNav {
        margin: 0 auto var(--spacing-l);
    }
}

/*===============================
	content
================================*/
.content {
    margin-bottom: var(--spacing-ll);
}

/*contentTop*/
.contentTop {
    margin-bottom: var(--spacing-l);
    text-align: center;
}

.contentTop_title {
	font-family: Klee One, sans-serif;
	font-weight: 700;
    margin-bottom: var(--spacing-s);
    font-size: 2.2rem;
    letter-spacing: 0.1em;
}

@media screen and (max-width: 640px) {
    .contentTop_title {
		
        font-size: 1.5rem;
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 640px) {
    .contentTop_text {
        padding: 0 5%;
        font-size: 0.9rem;
    }
}

/*  itemList　共通
------------------------*/
.itemList {
    display: flex;
}

.itemList_img img {
    width: 100%;
}

.itemList_img {
    margin-bottom: var(--spacing-ss);
    font-size: 0;
}


/*  itemListItem 共通
------------------------*/
/* itemList_tag */
.itemList_tag li {
    display: inline-block;
    margin: 0 10px 10px 0;
    padding: 7px 10px;
    font-size: 0.85rem;
    line-height: 1;
}

.itemlist_tag span {
    margin-left: 2px;
}

@media screen and (max-width: 640px) {
    .itemList_tag li {
        margin: 0 5px 5px 0;
        font-size: 0.7rem;
    }
}

/* ポイント10倍 */
.itemList_tag .point:before {
    display: inline-block;
    content: "ポイント";
}

.itemList_tag-point10 {
    background: #ffcc2d;
    font-weight: bold;
    color: #000000;
}

/* 割引 */
.itemList_tag-discount {
    border-radius: 25px;
    background: #f18900;
    color: #ffffff;
}

/* 商品名 */
.itemList_name {
    margin-bottom: var(--spacing-s);
}

@media screen and (max-width: 640px) {
    .itemList_name {
        font-size: 0.9rem;
    }
}

/* 価格 */
.itemList_sell div {
    display: inline-block;
}

.itemList_price {
    font-weight: 600;
    font-size: 1.2rem;
}

.itemList_currency {
    display: inline-block;
    margin-left: 2px;
    font-weight: normal;
    font-size: 1rem;
}

/* 送料無料 */
.itemList_free {
    color: #e60113;
}

@media screen and (max-width: 640px) {
    .itemList_free {
        font-size: 0.8rem;
    }
}

/*===============================
	ランキング
================================*/
@media screen and (max-width: 640px) {
    .rankingItem_inner {
        padding-left: 5%;
    }
}

.rankingItemList {
    flex-wrap: wrap;
    justify-content: space-between;
    counter-reset: ranking-mark;
}

@media screen and (max-width: 640px) {
    .rankingItemList {
        display: block;
        padding-bottom: 5%;
        overflow-x: auto;
        white-space: nowrap;

        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }
}
.rankingItemList .itemListItem {
    position: relative;
    width: calc((100% - 45px) /5);
}

@media screen and (max-width: 640px) {
    .rankingItemList .itemListItem {
        display: inline-block;
        width: calc(100% / 2.5);
        margin-right: var(--spacing-m);
        white-space: normal;
        vertical-align: top;
    }
}

.rankingItemList .itemListItem:before {
    position: absolute;
    top: 5px;
    left: 5px;
    content: counter(ranking-mark, decimal);
    padding: 9px 12px;
    border-radius: 50%;
    background: #999999;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    color: #ffffff;
    counter-increment: ranking-mark;
}

@media screen and (max-width: 640px) {
    .rankingItemList .itemListItem:before {
        padding: 9px 12px;
        font-size: 0.9rem;
    }
}

.rankingItemList .itemListItem:nth-child(1):before {
    background: #c99a00;
}

.rankingItemList .itemListItem:nth-child(2):before {
    background: #bbbbbb;
}

.rankingItemList .itemListItem:nth-child(3):before {
    background: #993300;
}

/*===============================
	おすすめ
================================*/
.recommendItemList {
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media screen and (max-width: 640px) {
    .recommendItemList {
        width: 90%;
        margin: auto;
    }
}

.recommendItemList .itemListItem {
    width: calc(50% - 20px);
    margin: 0 20px 20px 0;
    font-size: 0;
}

@media screen and (max-width: 640px) {
    .recommendItemList .itemListItem {
        width: calc((100% - 15px) /2);
        margin: 0 15px 15px 0;
    }
}

.recommendItemList .itemListItem:nth-child(even) {
    margin-right: 0;
}

.recommendItemList .itemList_img {
    display: inline-block;
    width: 45%;
    margin-right: 20px;
    font-size: 1rem;
    vertical-align: top;
}

@media screen and (max-width: 640px) {
    .recommendItemList .itemList_img {
        display: block;
        width: 100%;
        margin-right: 0;
        font-size: 0;
    }
}

.recommendItemList .itemList_detail {
    display: inline-block;
    width: 50%;
    margin-top: 10px;
    font-size: 1rem;
}

@media screen and (max-width: 640px) {
    .recommendItemList .itemList_detail {
        width: 100%;
        margin-top: 0;
    }
}
/*===============================
	用途から探す
================================*/
/*
.categoryTop_navList {
    justify-content: flex-start;
}
*/

/*  categoryContent
------------------------*/
.categoryContent {
    margin-bottom: var(--spacing-ll);
}

.categoryContent:last-child {
    margin-bottom: 0;
}

.categoryContent_visual {
    position: relative;
    width: 100%;
    min-width: var(--max-width-main);
    height: 620px;
    margin-bottom: var(--spacing-m);
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    .categoryContent_visual {
        height: auto;
        overflow: auto;
    }
}

.categoryContent_visualImg {
    position: absolute;
    left: 50%;
    width: 2000px;
    margin-left: -1000px;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .categoryContent_visualImg {
        position: relative;
        left: 50%;
        width: 100%;
        margin-left: -50%;
    }
}

.categoryContent_title {
    margin-bottom: var(--spacing-s);
    font-weight: 600;
    font-size: 2rem;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .categoryContent_title {
        font-size: 1.5rem;
    }
}

.categoryContent_text {
    margin-bottom: var(--spacing-m);
    text-align: center;
}

@media screen and (max-width: 640px) {
    .categoryContent_text {
        padding: 0 5%;
    }
}

/*  categoryContent_navList　カテゴリー別ナビゲーション
------------------------*/
.categoryContent_navList li a {
    transform: 0.3;
    border: 1px solid var(--main-color);
    background-color: #ffffff;
    color: var(--main-color);
    transition: background-color 0.5s;
}

@media screen and (max-width: 640px) {
    .categoryContent_navList {
        margin-bottom: var(--spacing-l);
    }
}

.categoryContent_navList li a:hover {
    border: 1px solid var(--main-color);
    background-color: var(--main-color);
    color: #ffffff;
    transition: background-color 1s;
}

/*  categoryItem
------------------------*/
.categoryItem {
    margin-bottom: var(--spacing-ll);
}

.categoryItem h5{
    color: #000;
}

.categoryItem_title {
    margin-bottom: var(--spacing-l);
    padding: var(--spacing-s) 0;
    border-top: 1px solid var(--sub-color);
    border-bottom: 1px solid var(--sub-color);
    font-family: Klee One, sans-serif;
	font-weight: 700;
    font-size: 2rem;
    color: var(--main-color);
    text-align: center;
}

@media screen and (max-width: 640px) {
    .categoryItem_title {
        width: 95%;
        margin: 0 auto var(--spacing-l);
        font-size: 1.1rem;
    }
}

.categoryItemList {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: calc(var(--spacing-l) - 25px);
}

@media screen and (max-width: 640px) {
    .categoryItemList {
        width: 90%;
        margin: 0 auto var(--spacing-m);
    }
}

.categoryItemList .itemListItem {
    width: calc((100% - 60px) /4);
    margin: 0 20px 25px 0;
}

@media screen and (max-width: 640px) {
    .categoryItemList .itemListItem {
        width: calc((100% - 15px) /2);
        margin: 0 15px 15px 0;
    }
}

.categoryItemList .itemListItem:nth-child(4n) {
    margin-right: 0;
}

@media screen and (max-width: 640px) {
    .categoryItemList .itemListItem:nth-child(even) {
        margin-right: 0;
    }
}

/*  categoryItem_more もっと見る
------------------------*/
.categoryItem_more {
    position: relative;
    width: 20%;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .categoryItem_more {
        width: 50%;
    }
}

.categoryItem_more a {
    display: block;
    padding: 15px 0;
    border-radius: 50px;
    background: var(--main-color);
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .categoryItem_more a {
        padding: 10px 0;
        font-size: 1rem;
    }
}

.categoryItem_more a:before {
    position: absolute;
    top: 50%;
    right: 30px;
    content: "";
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border: 0;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

@media screen and (max-width: 640px) {
    .categoryItem_more a:before {
        right: 20px;
    }
}

/*===============================
	価格から探す
================================*/
.priceList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    margin-bottom: -15px;
    margin-bottom: var(--spacing-l);
}

.priceList li {
    width: calc((100% - 45px) /3);
    margin: 0 15px 15px 0;
    text-align: center;
}

.priceList li a {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: center;
    align-items: center;
    height: 100px;
    background-color: var(--main-color);
    color: #ffffff;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.priceList li:nth-child(3n) {
    margin-right: 0;
}

/*===============================
	もっと商品を見る
================================*/
.contentMore {
    position: relative;
    width: 100%;
    min-width: var(--max-width-main);
    height: 620px;
    margin-bottom: var(--spacing-l);
    overflow: hidden;
}

@media screen and (max-width: 640px) {
    .contentMore {
        height: auto;
        overflow: visible;
    }
}

.contentMore a {
    display: block;
    width: 100%;
    height: 100%;
}

.contentMore_img {
    position: absolute;
    left: 50%;
    width: 2000px;
    margin-left: -1000px;
    text-align: center;
}

@media screen and (max-width: 640px) {
    .contentMore_img {
        position: relative;
        left: 50%;
        width: 100%;
        margin-left: -50%;
    }
}

.contentMore_text {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    margin: 0 auto;
    padding: 30px 0;
    border-radius: 10px;
    background: var(--main-color);
    font-size: 1.3rem;
    color: #ffffff;
    text-align: center;

    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

@media screen and (max-width: 640px) {
    .contentMore_text {
        position: relative;
        top: 10px;
        left: 0;
        transform: none;
        width: 70%;
        padding: 15px 0;
        border-radius: 50px;
        font-size: 1rem;;
    }
}

.contentMore_text:before {
    position: absolute;
    top: 50%;
    right: 30px;
    content: "";
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border: 0;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

/*===============================

	fotter

================================*/
.footer {
    margin-bottom: 20px;
}

/*===============================
	おすすめブランド
================================*/
.recommendBrand {
    margin-bottom: var(--spacing-m);
}

@media screen and (max-width: 640px) {
    .brandList {
        overflow-x: auto;
        overflow-y: hidden;

        overflow-scrolling: touch;
        -webkit-overflow-scrolling: touch;
    }
}

@media screen and (max-width: 640px) {
    .brandList_inner {
        display: inline-block;
        min-width: 100%;
        padding-left: 5%;
    }
}

.recommendBrandList {
    max-width: var(--max-width-main);
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .recommendBrandList {
        display: inline-grid;

        grid-template-rows: repeat(2, auto);
        grid-auto-flow: column;
    }
}

.recommendBrandList li {
    display: inline-block;
    width: calc((100% - 40px) /5);
    margin: 0 10px 20px 0;
}

.recommendBrandList li img {
    width: 100%;
}

@media screen and (max-width: 640px) {
    .recommendBrandList li {
        width: 130px;
    }
}

.recommendBrandList li:nth-child(5n) {
    margin-right: 0;
}

@media screen and (max-width: 640px) {
    .recommendBrandList li:nth-child(5n) {
        margin-right: 10px;
    }
}

/*  footerNav
------------------------*/
.footerNav {
    margin-bottom: var(--spacing-s);
    text-align: center;
}

.footerNavList li {
    display: inline-block;
    padding: 0 15px;
    font-size: 1rem;
}

@media screen and (max-width: 640px) {
    .footerNavList li {
        font-size: 0.8rem;
    }
}

.footerNavList li + li {
    border-left: 1px solid #000000;
}

/*  copyright
------------------------*/
.copyright {
    text-align: center;
}

/*===============================

	topへ戻る

================================*/
.pageTop {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99;
    text-align: center;
    transition: all 0.3s ease;
}

@media screen and (max-width: 640px) {
    .pageTop {
        right: 10px;
        bottom: 10px;
    }
}

.pageTop a {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00000090;
    font-size: 0;
    line-height: 60px;
}

.pageTop:before {
    display: block;
    position: absolute;
    top: 40%;
    right: 0;
    left: 0;
    content: "";
    transform: rotate(-45deg);
    width: 25%;
    height: 25%;
    margin: auto;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
}

.pageTop a:hover {
    opacity: 0.5;
    text-decoration: none;
}

/*===============================

	ie_alert

================================*/
.ie_alert {
    position: fixed;
    top: 5%;
    left: 5%;
    z-index: 1000;
    width: 90%;
    height: 90%;
    padding: 18% 0;
    background: #d22e2e;
    background: rgba(206, 50, 50, 0.95);
    color: #ffffff;
    text-align: center;
}

.ie_alert span {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 2rem;
}
.ie_alert p {
    margin-bottom: 40px;
    font-size: 1.3rem;
}
.ie_alert a {
    display: inline-block;
    margin: 0 5px 10px;
    padding: 15px 30px;
    border: solid 1px #ffffff;
    font-size: 15px;
    color: #ffffff;
}

.ie_alert a:hover {
    background: rgba(255,255,255,0.1);
}




.copy {
    margin-top: 20px;
    color: #666666;
}

@media screen and (max-width: 640px) {
    .copy {
        margin-top: 10px;
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

hr {
    color: #ffffff;
}

.priceList li:nth-child(4n) {
    margin-right: 15px;
}

.tittle_logo {
    display: block;
    margin-bottom: 15px;
    vertical-align: middle;
}

.tittle_logo img {
    width: 130px;
}


@media screen and (max-width: 640px) {
    tittle_logo {
        margin-bottom: 10px;
    }
    .tittle_logo img {
        width: 85px;
    }
}

/*開く*/
.open-box {
    position: relative;
}

input[type="checkbox"].on-off {
    display: block;
    position: absolute;
    top: 50%;
    opacity: 0;
}

/*ラベル（「開く」ボタン）*/
.itembox_more {
    display: block;
    position: relative;
    width: 50%;
    margin: 0 auto;
    padding: 15px 0;
    border-radius: 50px;
    background: var(--main-color);
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}


@media screen and (max-width: 640px) {
    .itembox_more {
        width: 50%;
        margin: 0 auto;
        font-size: 1rem;
    }
}

/*ラベルに表示するテキスト*/
.itembox_more::after {
    content: "もっと見る  ""\f078";
    font-family: "Font Awesome 5 Free";
}
.on-off:checked ~ .itembox_more::after {
    content: "閉じる  ""\f077";
    font-family: "Font Awesome 5 Free";
}

/*開閉エリア*/
.open-box .open {
    display: none;
}

/*4列で表示させたいナビリスト*/
.navList4clm li {
    width: calc((100% - 60px) /4);
    margin: 0 15px 15px 0;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
    text-align: center;
}

.navList4clm li:nth-child(4n) {
    margin-right: 0;
}

@media screen and (max-width: 640px) {
    .navList4clm li {
        width: calc((100% - 30px) /3);
        margin: 0 15px 15px 0;
        font-size: 0.9rem;
    }
    
    .navList4clm li:nth-child(3n) {
    margin-right: 0;
    }
    .navList4clm li:nth-child(4n) {
    margin-right: 15px;
    }
}

.navList4clm li a {
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    justify-content: start;
    align-items: start;
    height: 100px;
    padding: 0 15px;
    border-radius: 5px;
    background-color: var(--main-color);
    color: #ffffff;

    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

@media screen and (max-width: 640px) {
    .navList4clm a {
        height: auto;
        min-height: 80px;
    }
}


/*------------------------------------------------------------
オススメ特集
追加CSS
------------------------------------------------------------*/
.article_ttl {
	margin-bottom: 50px;
	text-align: center;
	color: #111;
}

.article_ttl_copy {
	font-size: 1.5rem;
	font-weight: 500;
}

.article_name {
	font-size: 3rem;
	font-family: 'Avenir Next';
	font-weight: 600;
	letter-spacing: 2px;
}


/*アイテム3列*/
.recofeature .item{
	box-sizing: border-box;
	width: 30%;
	margin-right: 5%;
	margin-bottom: 5%;
    display: inline-block;
    vertical-align: top;
	float: left;
}

.recofeature .item:nth-child(3n) {
	margin-right: 0px;
}

.recofeature .item .name {
	font-size: 1rem;
	font-size: 18px;
	line-height: 1.4em;
	font-family :"游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 600;
	margin-bottom: 1%;
}

.recofeature .item .copy{
	font-size: 1rem;
	font-size: 15px;
	font-weight: 500;
	font-family :"平成角ゴシック Std","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.recofeature .item img{
    width:100%;
}

/*== SP用 ================*/
@media screen and (max-width:650px) {
    .recofeature .item{
		box-sizing: border-box;
		width: 49%;
        height: auto;
        margin-right: 0;
        padding: 2%;
        box-sizing: border-box;
    }
    .recofeature .item .name {
        font-size: 0.9rem;
    }
        
    .recofeature .item .copy {
        font-size: 0.8rem;
    }
}


/*--------------------------------------
 クリアフィクス
---------------------------------------*/

.cf:after{
	content: "."; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}
</pre></body></html>