body {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro','メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


a {
    text-decoration: none;
}

input, select {
	-webkit-appearance: none;
	appearance: none;
}

header {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
    background-image: url(../../storage/images/hd_bg.jpg);
    background-position: left top;
    background-repeat: repeat-x;
    /* background-color: #ff69b4; */
    /* background: rgb(64,1,32); */
    /* background: linear-gradient(180deg, rgba(64,1,32,1) 0%, rgba(244,49,146,1) 70%, rgba(255,105,180,1) 100%); */
    /* border-bottom: 2px solid #FFDC19; */
    /* border-bottom: 5px solid #E8A814; */
    /* border-bottom: 2px solid #e1be7d; */
    border-bottom: 1px solid #ccc;
    /* filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.2)); */
    position: relative;
}

header::after {
    content: '';
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 40px;
    border-left: 1px solid #ccc;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /* left: 0; */
}


h1 {
    color: #fff;
    font-size: 1.4rem;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 8px 0;
    box-sizing: border-box;
}

header > h1 {
    z-index: 1;
}

header > h1 > a {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#head_logo > a > img {
    object-fit: contain;
    object-position: center;
    /* width: 40%; */
    height: 24px;
}

/* サーチバー */
#search_toggle {
    font-size: 25px;
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
    /* height: 100%; */
    padding: 8px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 1;
}


#search_form {
    /* font-size: 14px; */
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    height: 0;
    /* padding: 0; */
    background: #fce2c4;
    margin: 0;
    box-sizing: border-box;
    overflow: hidden;
    /* animation: fadeinSearch 0.5s ease; */
    transition-duration: 0.5s;
}

#search_form > input#search_word {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    border: 0;
    padding: 8px;
    margin: 0;
    /* opacity: 0; */
    /* border-radius: 4px 0 0 4px; */
    border-radius: 0;
    transition-duration: 1.0s;
    animation: fadeinSearchInner 1.0s ease;
}

#search_form > #search_button {
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    padding: 8px;
    margin: 0;
    border: 0;
    /* opacity: 0; */
    /* border-radius: 0 4px 4px 0; */
    background: #f0908d;
    transition-duration: 1.0s;
    animation: fadeinSearchInner 1.0s ease;
}

#search_form > #search_button:visited {
    color: unset;
}

#search_form.search_open {
    height: auto;
    padding: 16px;
    /* opacity: 1; */
    /* animation: fadeinSearch 0.5s ease; */
    animation: fadeinSearch 0.5s ease;
}

/* details[open] .answer {
	animation: fadein 0.5s ease;
} */

@keyframes fadeinSearch {
	0% { opacity: 0; height: 0; padding: 0;}
	100% { opacity: 1; height: 100%; padding: 16px; }
}

@keyframes fadeinSearchInner {
	0% { opacity: 0; }
	100% { opacity: 1; }
}


/* トグル */
#toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: rgba(225, 190, 125, 0.9);
    width: 40px;
    height: 40px;
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
}

#toggle-box {
    position: relative;
    width: 20px;
    height: 15px;
    cursor: pointer;
}

#toggle-box > span {
  width: 100%;
  height: 1px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box > span:nth-child(1) {
    top: 0;
}
#toggle-box > span:nth-child(2) {
    top: 50%;
    transform: translatey(-50%);
}
#toggle-box > span:nth-child(3) {
    bottom: 0;
}


#nav-content {
    z-index: 98;
    overflow: auto;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    height: 100%;
    background: #fff;
    color: #000;
    position: fixed;
    top: 0;
    /* right: 0; */
    right: -100%;
    /* transform: translateX(100%); */
    transition:  transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

#nav-content > h3 {
    font-size: 12px;
    color: #fff;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 11px 40px 11px 8px;
    background: #B91E23;
    box-sizing: border-box;
}


#nav-content > nav {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    /* padding: 16px; */
    padding: 0;
}

#nav-content > nav > ul {
    display: inline-flex;
    justify-content: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
}

#nav-content > nav > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    /* padding: 8px 0 8px 0;
    border-bottom: 1px solid #fff; */
    border-bottom: 1px solid rgba(45,45,45,.05);
    padding: 0;
    /* border-bottom: 1px solid #ccc; */
    background: #f3ebe5;
    position: relative;
}

#nav-content > nav > ul > li:last-of-type {
    border-bottom: 0;
}

#nav-content > nav > ul > li::after {
    content: "\f105"!important;
    /* font-family: "Line Awesome Free","Line Awesome Brands"!important; */
    font-family: "Line Awesome Free"!important;
    font-weight: bold;
    color: #B91E23;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
}

#nav-content > nav > ul > li > a {
    font-size: 14px;
    color: #B91E23;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    /* padding: 0; */
    padding: 16px;
    height: fit-content;
    margin: 0;
    transition: opacity .6s ease;
    box-sizing: border-box;
}
#nav-content > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
}

#nav-content > ul > li > a {
    font-size: 14px;
    color: #2d2d2d;
    font-weight: bold;
    text-decoration: none;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 16px;
    height: fit-content;
    margin: 0;
    transition: opacity .6s ease;
    box-sizing: border-box;
}

#nav-content > ul > li::after {
    content: "\f105"!important;
    /* font-family: "Line Awesome Free","Line Awesome Brands"!important; */
    font-family: "Line Awesome Free"!important;
    font-weight: bold;
    color: #23abdd;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    position: absolute;
    top: 0;
    right: 8px;
    bottom: 0;
}


#nav-content > nav > ul > li > a:hover {
  opacity: 0.6;
}

#nav-content > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
    border-top: 1px solid rgba(45,45,45,.05);
    padding: 0;
    position: relative;
}



.is-open {
    overflow: hidden;
}

.is-open #toggle-box > span {
    background: #000;
}

.is-open #toggle-box > span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box > span:nth-child(2) {
  width: 0;
}

.is-open #toggle-box > span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
  z-index: 98;
  /* transform: translateX(0); */
  transform: translateX(-100%);
}

section#nav {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    /* background: #f1f1f1; */
    /* background: #f3ebe5; */
    background: #B91E23;
    position: relative;
}

section#nav > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 1120px;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    overflow-x: scroll;
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}

section#nav > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 4px;
    width: fit-content;
    /* flex: 0 0 30%; */
    flex: 0 0 auto;
    box-sizing: border-box;
}

section#nav > ul > li > a {
    color: #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 4px 8px;
    text-decoration: none;
    position: relative;
    box-sizing: border-box;
}

section#nav > ul > li > a::after {
    content: '';
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    width: 0;
    height: 50%;
    margin: auto 0;
    border-right: 1px solid #fff;
    position: absolute;
    top: 0;
    right: -4px;
    bottom: 0;
}

section#nav > ul > li:last-of-type > a::after {
    border-right: none;
}

#content {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background: #fef4f4;
    box-sizing: border-box;
}

#content > .content_inner_wrap {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 16px 8px;
    box-sizing: border-box;
}

#content > h3 {
    font-size: 1.2rem;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

.side_bar {
    display: none;
}
 
#main_content {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/*
#main_content > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

#main_content > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(50% - 4px);
    margin-right: 8px;
    margin-bottom: 16px;
}

#main_content > ul > li:nth-of-type(2n) {
    margin-right: 0;
}

#main_content > ul > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-content: flex-start;
    width: 100%;
}

#main_content > ul > li > a > img {
    object-fit: contain;
    object-position: top;
    width: 100%;
    margin-bottom: 8px;
}

#main_content > ul > li > a > span {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
} */

#category_wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background-image: url(../../storage/images/content_bg.jpg);
    background-position: left top;
    background-repeat: repeat;
    background-size: 100px;
}

#category {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    box-sizing: border-box;
}

#category > h3 {
    color: #b91e23;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    padding: 32px 8px 24px 8px;
    margin: 0;
    box-sizing: border-box;
}

#category > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    list-style: none;
    padding: 8px;
    margin: 0;
    box-sizing: border-box;
}

#category > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(50% - 4px);
    list-style: none;
    margin-right: 8px;
    margin-bottom: 8px;
}

#category > ul > li:nth-of-type(2n) {
    margin-right: 0;
}

#category > ul > li > a {
    color: #fff;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 8px;
    /* border: 1px solid #888; */
    text-decoration: none;
    /* border-radius: 0.25rem; */
    background: #b91e23;
    box-sizing: border-box;
}

#cat_more_btn {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}

#cat_more_btn > a {
    color: #fff;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    /* border: 2px solid #E8A814; */
    padding: 8px;
    margin: 16px auto 32px auto;
    background: #e1be7d;
    box-sizing: border-box;
}

/* フッター */
#footer {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background: #ebebeb;
}

#footer > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    padding: 8px;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
}

#footer > ul > li {
    /* display: -ms-inline-grid; */
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

#footer > ul > li > h4 {
    font-size: 10px;
    color: #a0a0a0;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 16px 0;
    box-sizing: border-box;
}

#footer > ul > li > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
}

#footer > ul > li > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    border-top: 1px solid rgba(45,45,45,.05);
}

#footer > ul > li > ul > li > a {
    font-size: 12px;
    color: #333;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 8px 0;
    box-sizing: border-box;
}

#developers {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

#developers > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    border-top: 1px solid rgba(45,45,45,.05);
    border-bottom: 1px solid rgba(45,45,45,.05);
    box-sizing: border-box;
}

#developers > ul > li {
    color: #888;
    font-size: 10px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin-left: 8px;
    padding: 16px 8px;
    border-left: 1px solid rgba(45,45,45,.05);
    box-sizing: border-box;
}

#developers > ul > li:first-of-type {
    border: none;
}

#developers > ul > li > a {
    color: #888;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: fit-content;
}

#copyright {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

#copyright > a {
    color: #888;
    font-size: 12px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
}


/* 新着動画 */
.inner_title {
    color: #B91E23;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.inner_title > span {
    content: '';
    /* display: inline-flex; */
    width: 100%;
    height: 2px;
    background: #B91E23;
    margin: auto 16px auto auto;
    position: relative;
    top: 0;
    right: 0;
    left: 16px;
    bottom: 0;
    flex-direction: column;
    flex: 1;
}

#new_item_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

#new_item_wrap > ul#new_item {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    /* margin: 32px auto; */
    /* margin: 0 auto 40px auto; */
    margin: 0 auto 32px auto;
    list-style: none;
}

#new_item > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc((100% / 2) - 4px);
    margin-right: 8px;
    margin-bottom: 8px;
    background: #fff;
}

#new_item > li:nth-of-type(2n) {
    margin-right: 0;
}

#new_item > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    overflow: hidden;
}

#new_item > li > a > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-flow: column;
}

#new_item > li > a > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.new_item_img_wrap {
    /* aspect-ratio: 1.5 / 1; */
}


.new_item_img_wrap:first-of-type {
    display: inline-flex;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    /* height: fit-content; */
    /* height: 184px; */
    /* height: calc((100vw - 16px) * 0.4); */
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.new_item_img_wrap:first-of-type::before {
    content:"";
    display: block;
    /* padding-bottom: 100%; 幅に対する高さの比を75%に固定 */
    /* padding-bottom: calc((100% / 150) * 100); */
    padding-bottom: 56.25%;
  }

.new_item_img_wrap:first-of-type > img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-sizing: border-box;
}


/* #new_item > li > a > ul > li > img {
    object-fit: cover;
    object-position: top;
    width: 100%;
} */

/* 星レーティング */
.star5_rating {
    font-size: 15px;
    position: relative;
    z-index: 0;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    white-space: nowrap;
    color: #d8d8d8;
}

.star5_rating:before, .star5_rating:after{
    content: '★★★★★';
    font-family: RUIicon;
}

.star5_rating:after{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f2ab00; /* イエローカラー 自由に設定化 */
}

.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

.item_title {
    color: #000;
    font-size: 14px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    line-height: 1.5rem;;
    padding: 4px 4px;
    box-sizing: border-box;
}

.item_ago {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

.item_ago > span {
    color: #888;
    font-size: 12px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
}

.item_rate {
    font-size: 12px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    align-content: flex-start;
    padding: 2px 4px;
    box-sizing: border-box;
}

.rate_sub {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    padding: 0;
    margin: 0;
}

span.review_average {
    color: #f2ab00;
    font-weight: 400;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin-left: 2px;
}

span.review_count {
    font-weight: 400;
    color: #999;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin-left: 2px;
}

.item_volume {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 4px;
    box-sizing: border-box;
}

.item_volume > span {
    color: #888;
    font-size: 14px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.item_tag {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    width: 100%;
    padding: 4px 4px;
    flex-grow: 1;
    box-sizing: border-box;
}

.item_tag > span {
    color: #fff;
    font-size: 10px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    padding: 2px 4px;
    background: #f09199;
    margin-right: 2px;
    margin-bottom: 2px;
    box-sizing: border-box;
}

/* トップページのカテゴリ別一覧 */
#index_list {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    margin: 0;
    padding: 0;
    /* margin: 0 0 40px 0; */
    /* padding: 32px 0; */
    /* bottom: -100%; */
}

.index_list_inner {
    display: inline-flex;
    /* display: none; */
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    /* border-top: 1px solid #B91E23; */
    position: relative;
    right: -120%;
    opacity: 0;
}

/* #index_list::before {
    content: '';
    display: inline-flex;
    justify-content: flex-start;
    width: calc(100% + 16px);
    margin-left: -8px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-image: url(../../storage/images/item_bg2.jpg);
    background-repeat: repeat;
    background-position: top;
    background-size: 80%;
    z-index: 0;
    opacity: 0.1;
} */

.index_fadeIn {
    /* animation : indexFadeOut 1s; */
    animation : indexFadeOut .5s;
    animation-fill-mode: both;
  }
  @keyframes indexFadeOut {
    0% {
      opacity: 0;
      right: -120%;
    }
    100% {
      opacity: 1;
      right: 0;
    }
  }  

.items_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0 0 32px 0;
    list-style: none;
    overflow-x: scroll;
    /* box-shadow: 4px 6px 16px rgb(0 0 0 / 3%); */
    filter: drop-shadow(4px 6px 16px rgb(0 0 0 / 3%));
    -ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
}

.items_wrap::-webkit-scrollbar {  /* Chrome, Safari 対応 */
    display:none;
}

.items_wrap > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 20%;
    flex: 0 0 45%;
    margin-right: 4px;
    overflow: hidden;
    background: #fff;
}

.items_wrap > li:first-of-type {
    /* border-radius: 0.5rem 0 0 0.5rem; */
}

.items_wrap > li:last-of-type {
    /* border-radius: 0 0.5rem 0.5rem 0; */
    margin-right: 0;
}

.items_wrap > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    text-decoration: none;
}

.items_wrap > li > a > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    align-content: flex-start;
    flex-flow: column;
}

.items_wrap > li > a > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}


.img_wrap:first-of-type {
    display: inline-flex;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    /* height: fit-content; */
    /* height: 184px; */
    /* height: calc((100vw - 16px) * 0.4); */
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

.img_wrap:first-of-type::before {
    content:"";
    display: block;
    /* padding-bottom: 100%; 幅に対する高さの比を75%に固定 */
    /* padding-bottom: calc((100% / 150) * 100); */
    padding-bottom: 56.25%;
  }

.img_wrap:first-of-type > img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-sizing: border-box;
}
/* 
.items_wrap > li > a > ul > li:nth-of-type(2) {
    font-size: 12px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    align-content: flex-start;
    margin-bottom: 8px;
    box-sizing: border-box;
} */



dl.items_title {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0 0 16px 0;
}

dl.items_title > dt {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    /* width: calc((100% - 3.5rem) + 8px); */
    width: 100%;
    /* padding: 0 0 0 8px;
    margin: 0 0 16px -8px; */
    padding: 0;
    margin: 0;
    position: relative;
    flex-direction: column;
    /* background: #B91E23; */
    /* background: rgba(225, 190, 125, 0.8); */
    /* background: rgba(185, 30, 35, 0.8); */
}

dl.items_title > dt::after {
    /* content: '';
    display: block;
    width: calc(100% + 10px);
    height: 0;
    position: absolute;
    top: 0.25rem;
    right: calc(-1rem - 10px);
    left: 0;
    bottom: 0;
    border-style: solid;
    border-color: transparent transparent rgba(185, 30, 35, 0.8) transparent;
    border-width: 0 1.25rem 2rem 0;
    z-index: -1; */
}

dl.items_title > dt::before {
    /* content: '';
    position: absolute;
    top: 0;
    right: -1.5rem;
    width: 0;
    height: 0;
    border-style: solid; */
    /* border-color: transparent transparent rgba(225, 190, 125, 0.8) transparent; */
    /* border-color: transparent transparent rgba(185, 30, 35, 0.8) transparent;
    border-width: 0 1.5rem 2.5rem 0; */
}

dl.items_title > dt > h3 {
    color: #B91E23;
    font-size: 16px;
    font-weight: bold;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 8px 0 8px 0;
    margin: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

dl.items_title > dt > h3::before {
    content: '';
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 110%;
    height: 100%;
    background: url(../../storage/images/kumo.png) no-repeat top;
    background-size: 30%;
    position: absolute;
    top: 0;
    right: -160px;
    z-index: -1;
    opacity: 0.6;
}

dl.items_title > dt > h3 > span {
    content: '';
    /* display: inline-flex; */
    width: 100%;
    height: 2px;
    background: #B91E23;
    margin: auto 16px auto auto;
    position: relative;
    top: 0;
    right: 0;
    left: 16px;
    bottom: 0;
    flex-direction: column;
    flex: 1;
}

dl.items_title > dd {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
}

dl.items_title > dd > h4 {
    font-size: 14px;
    font-weight: normal;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    position: relative;
}

dl.items_title > dd > h4 > a {
    color: #23abdd;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}


/* 閲覧履歴 */
#history {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#history_child {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#clearALL {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin: 0;
    padding: 4px;
    border: 0;
    /* border-radius: 4px; */
    background: #23abdd;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.blank {
    background: unset!important;
}

#product_dis {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background: #fff;
    padding: 16px;
}

.feature {
    display: none;
}


/* 商品一覧 */
p#support_title {
    font-weight: bold;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
}

p#support_title > span {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: fit-content;
    position: relative;
}

p#support_title > span::before {
    content: "\f105";
    /* font-family: "Line Awesome Free","Line Awesome Brands"; */
    font-family: "Line Awesome Free"!important;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin: 0 8px;
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
}


#items_list {
	display: inline-flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	width: 100%;
	min-height: 100vh;
	margin: 16px 0 0 0;
}

.items_wrap_col {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    list-style: none;
    /* background: #fff; */
}

.items_wrap_col > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc((100% / 2) - 4px);
    margin-right: 8px;
    margin-bottom: 8px;
    background: #fff;
}

.items_wrap_col > li:nth-of-type(2n) {
    margin-right: 0;
}

.items_wrap_col > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    text-decoration: none;
}

.items_wrap_col > li > a > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    flex-flow: column;
    padding: 0;
    list-style: none;
}

.items_wrap_col > li > a > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}


/* アイテムページのソート */
#item_sort {
    font-size: 12px;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid #B91E23;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
    /* margin-top: 16px; */
}

#item_sort > span {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    margin-right: 8px;
}

#item_sort > select {
    color: #2d2d2d;
    width: fit-content;
    background: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 3px;
    outline: none;
    font-size: 12px;
    padding: 4px 8px 4px 4px;
}

#item_sort::after {
    content: '\f338';
    /* font-family: "Line Awesome Free","Line Awesome Brands"; */
    font-family: "Line Awesome Free"!important;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: fit-content;
    padding: 0 4px 0 0;
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
}


/* アイテムページのページネーション */
#item_pagenation {
    /* display: inline-flex; */
    display: none;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    background: #fff;
    padding: 16px;
    overflow: hidden;
    margin-top: 0;
}


#item_pagenation > #num {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

#item_pagenation > #num > li {
    font-size: 12px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: fit-content;
    min-width: 36px;
    border-color: #e2e2e2;
    border-style: solid;
    border-width: 1px 1px 1px 0;
    /* margin-right: 8px; */
}

#item_pagenation > #num > li:first-of-type {
    border-width: 1px;
    border-radius: 3px 0 0 3px;
}

#item_pagenation > #num > li:last-of-type {
    margin-right: none;
    border-radius: 0 3px 3px 0;
}

#item_pagenation > #num > li:hover {
    background: #e2e2e2;
}

#item_pagenation > #num > li:hover > a {
    color: #B91E23;
}

#item_pagenation > #num > li > a > i {
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    line-height: 18px;
}

#item_pagenation > #num > li > a, #item_pagenation > #num > li > span {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    line-height: 18px;
    padding: 8px;
    box-sizing: border-box;
}

#item_pagenation > #num > li > span {
    color: unset;
    background: #e2e2e2;
}

/* 詳細ページ */
#product_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

h3#product_ttl {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0 0 16px 0;
    box-sizing: border-box;
    z-index: 1;
}

#video_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding-top: 75%;
    position: relative;
}

#video_wrap::before {
    content: '';
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 110%;
    height: 100%;
    background: url(../../storage/images/kumo.png) no-repeat top;
    background-size: 30%;
    position: absolute;
    top: -50px;
    left: -160px;
    z-index: 0;
    opacity: 0.6;
}

#video_wrap::after {
    content: '';
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 110%;
    height: 100%;
    background: url(../../storage/images/kumo.png) no-repeat top center;
    background-size: 55%;
    position: absolute;
    bottom: -200px;
    right: -150px;
    z-index: 0;
    opacity: 0.6;
}



#video_wrap > iframe {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

#product_volume {
    color: #000;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 16px auto 0 auto;
}

#image_box {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 16px auto 8px auto;
    padding: 0;
    box-sizing: border-box;
}

#image_box > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: calc(25% - 6px);
    margin-right: 8px;
    margin-bottom: 8px;
}

#image_box > li:nth-of-type(4n) {
    margin-right: 0;
}

#image_box > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#image_box > li > a::before {
    content: '';
    display: block;
    width: 100%;
    padding-bottom: 56.25%;
}

#image_box > li > a > img {
    object-fit: cover;
    object-position: top;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0 auto;
    box-sizing: border-box;
}

.product_data {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product_data > .item_rate {
    font-size: 14px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 80%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.product_data > .item_rate > .star5_rating {
    font-size: 20px;
}

.product_data > .item_rate > .rate_sub {
    width: fit-content;
    margin: 0 0 0 8px;
}

.product_data > .item_ago {
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: 20%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product_data > .item_ago > span {
    font-size: 14px;
    width: fit-content;
}

#product_tags {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 16px auto 8px auto;
    box-sizing: border-box;
}

#product_tags > span {
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: fit-content;
    padding: 4px 8px;
    box-sizing: border-box;
    background: #f09199;
    margin-right: 8px;
    margin-bottom: 8px;
}

#product_deliver {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 0 40px 0;
    padding: 16px;
    box-sizing: border-box;
    background: #fff;
}

#product_deliver > h4 {
    color: #555;
    font-size: 18px;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 0 16px 0;
    padding: 8px;
    position: relative;
    box-sizing: border-box;
}


#product_deliver > dl {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 8px;
    box-sizing: border-box;
    flex-direction: row;
    background: #f5f5f5;
    border-bottom: 1px solid #555;
}

#product_deliver > dl > dt {
    font-size: 12px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: fit-content;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    flex-grow: 1;
}

#product_deliver > dl > dd {
    color: #b91e23;
    font-size: 14px;
    font-weight: bold;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: fit-content;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#product_deliver > a {
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    margin: 32px 0 16px 0;
    padding: 8px;
    /* background: #B91E23; */
    background: #e1be7d;
    box-sizing: border-box;
}

/* 関連商品 */
#relation_item_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* カテゴリ一覧ページ */
h3#page_ttl {
    font-size: 16px;
    color: #fff;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 16px 8px;
    background: #b91e23;
}

#categories_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0 0 16px 0;
    box-sizing: border-box;
    list-style: none;
    border-right: 1px solid #e1be7d;
    border-left: 1px solid #e1be7d;
}

#categories_wrap > li {
    font-size: 14px;
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 50%;
    padding: 16px 8px;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid #e1be7d;
    border-right: 1px solid #e1be7d;
}

#categories_wrap > li:nth-of-type(2n) {
    border-right: 0;
}

#categories_wrap > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* ライトボックス */
.lum-lightbox {
    z-index: 999;
}

.lum-lightbox-inner img {
    width: 100%;
}

.lum-close-button {
    top: 48px!important;
}

/* アイテム紹介 */
#sale_item {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
}

#sale_item_wrap {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 0 32px 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#sale_item_wrap::-webkit-scrollbar {
    display: none;
}

#sale_item_wrap > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 20%;
    flex: 0 0 45%;
    margin-right: 4px;
    overflow: hidden;
    background: #fff;
}

#sale_item_wrap > li > a {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    text-decoration: none;
}

#sale_item_wrap > li > a > ul {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    align-content: flex-start;
    flex-flow: column;
}

#sale_item_wrap > li > a > ul > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#sale_item_wrap > li > a > ul > li:first-of-type {
    display: inline-flex;
    justify-content: center;
    align-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    /* height: fit-content; */
    /* height: 184px; */
    /* height: calc((100vw - 16px) * 0.4); */
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
}

#sale_item_wrap > li > a > ul > li:first-of-type::before {
    content: "";
    display: block;
    /* padding-bottom: calc((100% / 150) * 100); */
    padding-bottom: 100%;
}

#sale_item_wrap > li > a > ul > li:first-of-type > img {
    object-fit: contain;
    object-position: top;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-sizing: border-box;
}

#sale_item_wrap > li > a > ul > li.item_title > span {
    /* color: #2d2d2d; */
    /* font-weight: 700; */
    /* font-size: 12px; */
    width: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

#sale_item_wrap > li > a > ul > li.item_title {
    flex-wrap: wrap;
    padding: 4px;
}

#sale_item_wrap > li > a > ul > li.item_rate {
    flex-wrap: wrap;
    padding: 0 4px;
}


#sale_item_wrap > li > a > ul > li.item_price_wrap {
    display: inline-flex;
    justify-content: flex-end;
    align-items: flex-end;
    align-content: flex-end;
    flex-wrap: wrap;
    width: 100%;
    padding: 4px;
    margin: 0;
    flex-grow: 1;
    box-sizing: border-box;
}

#sale_item_wrap > li > a > ul > li.item_price_wrap > span.item_list_price {
    color: #888;
    display: inline-flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
    text-decoration: line-through 1px solid #ccc;
}

#sale_item_wrap > li > a > ul > li.item_price_wrap > span.item_price {
    color: #B91E23;
    font-weight: bold;
    display: inline-flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    padding: 0;
    margin: 0;
}

/* モーダルCSSここから */
.modal {
    position: fixed;
    display: none;
    z-index: 9999;
    top: 40%;
    left: 50%;
    width: 400px;
    height: 190px;
    margin: -116px 0 0 -221px;
    padding: 20px;
    color: #FFF;
    text-align: center;
    /* border: 1px solid #FFF; */
    /* border-radius: 10px; */
}
.modal p { margin-bottom:10px; }
.modal a { cursor:pointer; }
.modal > a {
    text-decoration: none;
    color: #fff;
}

/* 年齢認証モーダル */
#age_modal {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    opacity: 0;
    overflow: hidden;
}

#age_modal::before {
    content:'';
    display: inline-flex;
    justify-content: flex-end;
    width: 50%;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    /* background: #f00; */
    z-index: 101;
    background-image: url(../../storage/images/modal_door_bg.jpg);
    background-repeat: repeat;
    background-position: top right;
    border-right: 8px solid #e1be7d;
    animation : doorLeftFadeOut 2s;
    animation-fill-mode: both;
    /* box-sizing: border-box; */
}

@keyframes doorLeftFadeOut {
    0% {
        left: 0;
    }
    100% {
        left: -50%;
    }
}

#age_modal::after {
    content:'';
    display: inline-flex;
    justify-content: flex-end;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    /* background: #ff0; */
    z-index: 101;
    background-image: url(../../storage/images/modal_door_bg.jpg);
    background-repeat: repeat;
    background-position: top left;
    border-left: 8px solid #e1be7d;
    animation : doorRightFadeOut 2s;
    animation-fill-mode: both;
    /* box-sizing: border-box; */
}

@keyframes doorRightFadeOut {
    0% {
        right: 0;
    }
    100% {
        right: -50%;
    }
}


#age_modal.modal_close {
    /* display: none; */
    animation : modalFadeOut 1s;
    animation-fill-mode: both;
}

@keyframes modalFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#age_modal_inner {
    display: inline-flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    width: 80%;
    margin: 32px auto;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

/* #age_modal_inner::before {
    content: '';
    display: block;
    width: 200%;
    height: 200px;
    background: #f00;
    position: absolute;
    top: -180px;
    left: -100px;
    transform: rotate(15deg);
    background-image: url(../../storage/images/modal_in_bg1.jpg);
    background-repeat: repeat;
    background-position: top left;
    background-size: 10%;
    border-bottom: 5px solid #e1be7d;
} */

#age_modal_inner::before {
    content: '';
    display: block;
    /* width: 100%; */
    height: 100%;
    /* height: 200px; */
    /* background: #f00; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* transform: rotate(15deg); */
    background-image: url(../../storage/images/oiran.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* border-bottom: 5px solid #e1be7d; */
    z-index: -1;
    opacity: 0.8;
}


/* #age_modal_inner::after {
    content: '';
    display: block;
    width: 200%;
    height: 400px;
    background: #ff0;
    position: absolute;
    bottom: -390px;
    left: -100px;
    transform: rotate(10deg);
    background-image: url(../../storage/images/modal_in_bg2.jpg);
    background-repeat: repeat;
    background-position: top;
    background-size: 10%;
    border-top: 5px solid #5da985;
} */

#age_modal_inner::after {
    content: '';
    display: block;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    background-image: radial-gradient(#111 30%, transparent 31%), radial-gradient(#111 30%, transparent 31%);
    background-size: 4px 4px;
    background-position: 0 0, 2px 2px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
}



#age_modal_inner > li {
    display: inline-flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 47.5%;
    height: fit-content;
    padding: 0;
    margin: 0;
}

#age_modal_inner > li:nth-of-type(3) {
    margin-right: 5%;
}

button#confirm_ok {
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 8px;
    background: #B91E23;
    border: none;
}

button#confirm_no {
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 8px;
    background: #89c3eb;
    border: none;
}

li#confirm_img {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
}

li#confirm_img > img {
    object-fit: contain;
    object-position: center;
    width: 50%;
}

li#confirm_text {
    color: #fff;
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
    width: 100%;
    box-sizing: border-box;
}

li#confirm_text > h3 {
    display: inline-flex;
    justify-content: center;
    flex-wrap: nowrap;
    width: 50%;
    margin: 32px 0 32px 0;
    padding: 0;
    box-sizing: border-box;
}

li#confirm_text > h3 > img {
    object-fit: contain;
    object-position: top;
    width: 100%;
}

li#confirm_text > p {
    display: inline-flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



@media screen and (min-width: 600px) {
    /* タブレット用レイアウト 600px以上の範囲に収めるデザインはこの中に記述 */
}

@media screen and (min-width: 1025px) {
    /* PC用レイアウト 1,025px以上の範囲に収めるデザインはこの中に記述 */
    #main_content > ul > li {
        width: calc(25% - 9px);
        margin-right: 12px;
    }

    #main_content > ul > li:nth-of-type(2n) {
        margin-right: 12px;
    }

    #main_content > ul > li:nth-of-type(4n) {
        margin-right: 0;
    }

    section#nav, header::after, #toggle {
        display: none;;
    }

    .side_bar {
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 240px;
        padding: 16px;
        position: sticky;
        top: 0;
    }

    .side_bar > h3.sub_title {
        color: #fff;
        font-size: 14px;
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        padding: 8px;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0;
        margin-left: 0;
        background: #e1be7d;
    }

    /* .side_bar > #side_menu {
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
        border: 2px solid #B91E23;
        background: rgba(255, 255, 255, 0.8);
    } */

    .side_bar > #side_menu {
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        border: 2px solid #e1be7d;
        background: url(../../storage/images/item_bg2.jpg) repeat top;
        background-size: auto;
    }

    /* .side_bar > #side_menu > ul.genreList {
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        align-content: flex-start;
        list-style: none;
        box-sizing: border-box;
        padding: 0;
        margin: 0;
    } */

    .side_bar > #side_menu > ul.genreList {
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        width: 100%;
        align-content: flex-start;
        list-style: none;
        box-sizing: border-box;
        padding: 8px;
        margin: 0;
        background: rgba(255,255, 255, 0.97);
        box-sizing: border-box;
    }

    .side_bar > #side_menu > ul.genreList > li {
        display: inline-flex;
        justify-content: flex-start;
        flex-wrap: nowrap;
        align-items: center;
        width: 100%;
        border-bottom: 1px solid #e1be7d;
    }

    .side_bar > #side_menu > ul.genreList > li:last-of-type {
        border-bottom: 0;
    }

    .side_bar > #side_menu > ul.genreList > li > a {
        color: #B91E23;
        /* color: unset; */
        font-size: 12px;
        font-weight: bold;
        display: inline-block;
        width: 100%;
        padding: 8px .5rem 8px 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        position: relative;
        text-decoration: none;
    }

    .side_bar > #side_menu > ul.genreList > li > a::after {
        color: #B91E23;
        content: "\f105";
        font-family: "Line Awesome Free" !important;
        font-weight: 700;
        display: inline-flex;
        justify-content: center;
        flex-wrap: nowrap;
        align-items: center;
        width: fit-content;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }

    #main_content {
        width: calc((100% - 240px) - 16px);
        padding: 16px;
        margin-left: 16px;
    }

    #new_item > li {
        width: calc((100% / 4) - 12px);
        margin-right: 16px;
        margin-bottom: 16px;
    }

    #new_item > li:nth-of-type(2n) {
        margin-right: 16px;
    }

    #new_item > li:nth-of-type(4n) {
        margin-right: 0;
    }

    #index_list::before {
        display: none;
    }

    #index_list {
        padding: 0;
    }

    .items_wrap {
        flex-wrap: wrap;
        filter: unset;
    }

    .items_wrap > li {
        width: calc((100% / 4) - 12px);
        margin-right: 16px;
        margin-bottom: 16px;
        flex: unset;
    }

    .items_wrap > li:nth-of-type(4n) {
        margin-right: 0;
    }

    #history .items_wrap > li {
        width: calc((100% / 5) - 6.4px);
        margin-right: 8px;
        margin-bottom: 0;
    }

    #history .items_wrap > li:nth-of-type(4n) {
        margin-right: 8px;
    }

    #history .items_wrap > li:nth-of-type(5n) {
        margin-right: 0;
    }

    #category {
        /* max-width: unset; */
        /* padding: 0 10%; */
        padding: 0 16px;
    }

    #category > ul > li {
        width: calc(25% - 6px);
        margin-right: 8px;
        margin-bottom: 8px;
    }

    #category > ul > li:nth-of-type(2n) {
        margin-right: 8px;
    }

    #category > ul > li:nth-of-type(4n) {
        margin-right: 0;
    }

    p#support_title {
        padding: 8px 0 0 0;
    }

    /* 商品一覧 */
    dl.items_title > dt > h3::before {
        background-size: 10%;
        right: -400px;
    }

    .items_wrap_col > li {
        width: calc((100% / 4) - 12px);
        margin-right: 16px;
        margin-bottom: 16px;
    }

    .items_wrap_col > li:nth-of-type(2n) {
        margin-right: 16px;
    }
    
    .items_wrap_col > li:nth-of-type(4n) {
        margin-right: 0;
    }

    /* セールアイテム */
    #sale_item_wrap {
        flex-wrap: wrap;
        filter: unset;
    }

    #sale_item_wrap > li {
        width: calc((100% / 4) - 12px);
        margin-right: 16px;
        margin-bottom: 16px;
        flex: unset;
    }
    
    #sale_item_wrap > li:nth-of-type(4n) {
        margin-right: 0;
    }

    /* ライトボックス */
    .lum-lightbox-inner img {
        width: unset;
    }

    .lum-close-button {
        top: 5px!important;
    }

    /* アイテムページのページネーション */
    #item_pagenation {
        margin-top: 0;
    }

    /* カテゴリ一覧 */
    #main_content > #categories_wrap > li {
        width: 25%;
        margin: 0;
    }

    #main_content > #categories_wrap > li:nth-of-type(2n) {
        border-right: 1px solid #e1be7d;
    }

    #main_content > #categories_wrap > li:nth-of-type(4n) {
        border-right: 0;
    }

    /* 詳細ページ */
    #video_wrap::before {
        background-size: 16%;
        left: -360px;
    }

    #video_wrap::after {
        background-size: 35%;
        bottom: -500px;
        right: -350px;
    }


    #footer {
        justify-content: center;
    }

    #footer > ul {
        width: 70%;
    }

    #footer > ul > li {
        width: calc(100% / 3);
        padding: 0 32px;
        margin: 16px 0;
        border-right: 1px solid rgba(45,45,45,.05);
    }

    #footer > ul > li > h4 {
        padding: 8px 0;
        border-bottom: 1px solid rgba(45,45,45,.05);
    }

    #footer > ul > li > ul > li {
        border: none;
    }

    #footer > ul > li > ul > li > a {
        color: #a0a0a0;
        font-size: 12px;
        padding: 8px 0;
    }

    #developers > ul {
        justify-content: flex-end;
        width: 70%;
        margin-top: 32px;
        margin-bottom: 0;
        border-top: 1px solid rgba(45,45,45,.05);
        border-bottom: none;
    }

    #copyright > a {
        justify-content: flex-start;
        width: 70%;
        border-top: 1px solid rgba(45,45,45,.05);
    }

    #age_modal_inner {
        width: 20%;
    }

}