/* # =================================================================
   # CSS Reset  ::  ブラウザごとの差異を減らす
   # ================================================================= */

html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
    box-sizing: inherit;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

* {
    padding: 0;
    margin: 0;
}

hr {
    overflow: visible;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
    transition : all 0.3s ease-out;
    -webkit-transition : all 0.3s ease-out;
}

a:hover {
    opacity: 0.8;
}

a:active,
a:hover {
    outline-width: 0;
}

input {
    border-radius: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="number"] {
    -moz-appearance:textfield;
    -webkit-appearance:textfield;
    width: auto;
}

[type="search"] {
    -moz-appearance:textfield;
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration,
[type="number"]::-webkit-outer-spin-button,
[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
    outline: none;
}

optgroup {
    font-weight: bold;
}

button {
    overflow: visible;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: 0;
    padding: 0;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

select::-ms-value {
    color: currentColor;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

img {
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

audio,
canvas,
video {
    display: inline-block;
}

@media screen {
    [hidden~="screen"] {
        display: inherit;
    }
    [hidden~="screen"]:not(:active):not(:focus):not(:target) {
        clip: rect(0 0 0 0) !important;
        position: absolute !important;
    }
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled] {
    cursor: default;
}

::-moz-selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}

::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}


/* # =================================================================
   # Common  ::  サイト全体の設定
   # ================================================================= */

html {
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic Medium", sans-serif;
    font-feature-settings: "pkna" 1;
    line-height: 1.3;
}

body {
    @extend html;
}

h1, h2, h3, h4, h5, h6, strong {
    @extend html;
    font-family: -apple-system, BlinkMacSystemFont, Roboto, "游ゴシック体", YuGothic, "Yu Gothic", sans-serif;
    font-weight: 700;
}

main {
    margin: 40px 0  0;
    min-height: calc(100vh - 255px);
}

main.simpleLayout {
    min-height: calc(100vh - 165px);
}



/* PC版・SP版どちらかにしか表示しない要素用 */
@media screen and (min-width: 769px) {
    .-spOnly {
        display: none!important;
    }
}

@media screen and (max-width: 768px) {
    .-pcOnly {
        display: none!important;
    }
}


/* PC版1カラム */
.container_wrap {
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
}

/*SP版ヘッダー固定対応*/
@media screen and (max-width: 768px) {
    .container_wrap {
        padding: 5.333vw 0 0;
    }
}

/* PC版1カラム(せまい) */
.container_center {
    margin: 0 auto;
    width: 660px;
}

/*SP版ヘッダー固定対応*/
@media screen and (max-width: 768px) {
    .container_center {
        padding: 5.333vw 0 0;
    }
}

/* PC版左カラム */
.container_left {
    min-height: 400px;
    width: 660px;
}

/* PC版右カラム */
@media screen and (min-width: 769px) {
    .container_right-sticky {
        float: right;
        position:-webkit-sticky;
        position: sticky;
        top: 30px;
    }
}

.container_right {
    width: 320px;
}

/* SP版カラム */
@media screen and (max-width: 768px) {
    main {
        margin: 13vw 0 0;
        min-height: 24vh;
    }
    .container_sp,
    .container_center,
    .container_left,
    .container_right
     {
        float: none;
        margin: auto;
        min-height: auto;
        width: 95%;
    }
}
@media screen and (min-width: 769px) {
    main {
        min-width: 1000px;
    }
}

.container_hr {
    border: 0;
    border-top: 1px solid #ccc;
    display: block;
    height: 1px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .container_hr {
        border-top-width: 0.3vw;
        height: 0.3vw;
    }
}


/* 見出し */
.mainTitle {
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.mainTitle.-hasBar {
    border-left: 5px solid #333;
    padding: 0 0 0 5px;
}

.mainTitle_subText {
    color: #999;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 0 20px;
}

@media screen and (max-width: 768px) {
    .mainTitle {
        font-size: 5.3vw;
        margin-left: 2.6vw;
    }
    .mainTitle.-hasBar {
        border-left-width: 1.3vw;
        margin-left: 0;
        padding: 0 0 0 1.3vw;
    }
    .mainTitle_subText {
        font-size: 3.2vw;
        margin: 1.3vw 0 0 2.6vw;
    }
}

.subTitle {
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.subTitle.-underline {
    border-bottom: 2px solid #eee;
}
.subTitle.-underline span {
    display: inline-block;
    padding: 0 0 7px;
    position: relative;
}
.subTitle.-underline span::after {
    border-bottom: 2px solid #f60;
    bottom: -2px;
    content: '';
    display: block;
    position: absolute;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .subTitle {
        font-size: 4.2vw;
    }

    .subTitle.-underline {
        border-bottom-width: 0.5vw;
    }
    .subTitle.-underline span {
        padding: 0 0 1.8vw;
    }
    .subTitle.-underline span::after {
        border-bottom-width: 0.5vw;
        bottom: -0.5vw;
    }
}


/* 本文 */
.normalText {
    color: #707070;
    font-size: 16px;
    line-height: 1.5;
}

.cautionText {
    color: #707070;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .normalText {
        font-size: 3.7vw;
    }

    .cautionText {
        font-size: 3.2vw;
    }
}


/* リンク */
a {
    color: #0094EB;
    font-weight: bold;
    text-decoration: underline;
}



/* ボタン */
.button_normal {
    background: #f60;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: auto;
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    width: 320px;
    max-width: 100%;
}

.button_normal[disabled] {
    background: #eee;
}

.button_gray {
    background: #eee;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: auto;
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    width: 320px;
    max-width: 100%;
}

.button_frame {
    background: #fff;
    border: 1px solid #ccc;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: auto;
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    max-width: 100%;
}

.button_frame.-active {
    border-color: #f60;
    color: #f60;
}

@media screen and (max-width: 768px) {
    .button_normal {
        font-size: 3.7vw;
        padding: 4.2vw 0;
        width: 100%;
    }

    .button_gray {
        font-size: 3.7vw;
        padding: 4.2vw 0;
        width: 100%;
    }

    .button_frame {
        border-width: 0.2vw;
        font-size: 3.7vw;
        padding: 4.2vw 0;
    }
}


/* フォームのパーツ */
::placeholder {
    color: #ccc;
}

.-required::after {
    border: 1px solid #f00;
    border-radius: 2px;
    color: #f00;
    content: '\5FC5\9808'; /* 必須 */
    font-size: 11px;
    line-height: 16px;
    margin: 0 0 0 10px;
    padding: 0 7px;
    vertical-align: 2px;
}

input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"] {
    background: #fff;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    height: 50px;
    line-height: 50px;
    padding: 0 10px;
}

input[type="checkbox"],
input[type="radio"] {
    display: none;
}

input[type="checkbox"] + .labelText,
input[type="radio"] + .labelText {
    color: #000;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    padding: 0 0 0 40px;
    position: relative;
}

input[type="checkbox"] + .labelText::before,
input[type="radio"].-square + .labelText::before {
    background: #fff;
    border: 1px solid #ccc;
    content: '';
    display: block;
    height: 30px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

input[type="checkbox"]:checked + .labelText::before {
    background: #f60;
}

input[type="checkbox"]:checked + .labelText::after {
    border:1px solid #fff;
    border-width: 0 0 1px 1px;
    content: '';
    display: block;
    height: 8px;
    left: 0;
    margin: -3px 0 0 10px;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    width: 13px;
}

input[type="radio"] + .labelText::before {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    content: '';
    display: block;
    height: 30px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
}

input[type="radio"]:checked + .labelText::before {
    background: #f60;
}

input[type="radio"]:checked + .labelText::after {
    border:1px solid #fff;
    border-width: 0 0 1px 1px;
    content: '';
    display: block;
    height: 8px;
    left: 0;
    margin: -3px 0 0 10px;
    position: absolute;
    top: 50%;
    transform: rotate(-45deg) translateY(-50%);
    width: 13px;
}

select[disabled] {
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .-required::after {
        border-width: 0.2vw;
        border-radius: 0.5vw;
        font-size: 2.9vw;
        line-height: 4.8vw;
        margin: 0 0 0 1.3vw;
        padding: 0 1.8vw;
        vertical-align: 0.5vw;
    }
    input[type="text"],
    input[type="number"],
    input[type="tel"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    input[type="date"],
    input[type="datetime-local"],
    input[type="month"],
    input[type="week"],
    input[type="time"] {
        font-size: 3.7vw;
        height: 13vw;
        line-height: 3.7vw;
        padding: 0 2.6vw;
    }

    input[type="checkbox"] + .labelText,
    input[type="radio"] + .labelText {
        font-size: 3.7vw;
        padding: 0 0 0 9vw;
    }

    input[type="checkbox"] + .labelText::before,
    input[type="radio"].-square + .labelText::before {
        border-width: 0.2vw;
        height: 7vw;
        width: 7vw;
    }

    input[type="checkbox"]:checked + .labelText::after {
        border-width: 0 0 0.2vw 0.2vw;
        height: 2.1vw;
        margin: -0.7vw 0 0 2.1vw;
        width: 3.4vw;
    }

    input[type="radio"] + .labelText::before {
        border-width: 0.2vw;
        height: 7vw;
        width: 7vw;
    }

    input[type="radio"]:checked + .labelText::after {
        border-width: 0 0 0.2vw 0.2vw;
        height: 2.1vw;
        margin: -0.7vw 0 0 2.1vw;
        width: 3.4vw;
    }
}

input[type="text"].form_error-input,
input[type="number"].form_error-input,
input[type="tel"].form_error-input,
input[type="email"].form_error-input,
input[type="url"].form_error-input,
input[type="password"].form_error-input,
input[type="search"].form_error-input,
input[type="date"].form_error-input,
input[type="datetime-local"].form_error-input,
input[type="month"].form_error-input,
input[type="week"].form_error-input,
input[type="time"].form_error-input,
select.form_error-input + .js-selected,
.delivery_field .-birthday select.form_error-input {
    background: #FFF3F3;
    border: 1px solid #f00;
}

.form_error-text,
p.form_error-input {
    align-items: center;
    color: #f00;
    display: flex;
    font-size: 14px;
    font-weight: bold;
    margin: 5px 0 0;
}

.form_error-text::before,
p.form_error-input::before {
    background: #f00;
    border-radius: 50px;
    color: #fff;
    content: '\FF01'; /* ！ */
    display: inline-block;
    font-size: 10px;
    height: 14px;
    line-height: 14px;
    margin: 0 3px 0 0;
    min-width: 14px;
    text-align: center;
    width: 14px;
}

select.form_error-input {
    margin-top: 0;
    color: #000;
    background: #fff;
}

.g-recaptcha + span + .form_error {
    width: 304px;
    margin: 0 auto;
}

.js-selected {
    pointer-events: none;
}

/* エラーメッセージ */
.errorContent {
    margin: 10px auto;
}

.errorContent_text {
    color: #f00;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .errorContent {
        margin: 2.6vw auto;
    }
    .errorContent_text {
        font-size: 3.7vw;
    }

    .form_error-text,
    p.form_error-input {
        font-size: 3.2vw;
        margin:2.667vw 0 0 ;
    }

    .form_error-text::before,
    p.form_error-input::before {
        border-radius: 13.333vw;
        font-size: 2.667vw;
        height: 3.2vw;
        line-height: 3.2vw;
        margin: 0 0.8vw 0 0;
        min-width: 3.2vw;
        width: 3.2vw;
    }
}

/* パスワードの表示/非表示 */
input.viewPassword {
    padding-right: 40px;
}

.viewPasswordIcon {
    cursor: pointer;
    display: block;
    fill: #ccc;
    float: right;
    height: 40px;
    margin: -45px 0 0;
    position: relative;
    width: 40px;
    z-index:1;
}

@media screen and (max-width: 768px) {
    input.viewPassword {
        padding-right: 10vw;
    }

    .viewPasswordIcon {
        height: 10vw;
        margin-top: -11.5vw;
        width: 10vw;
    }
}

.viewPasswordIcon.-passHide {
    display: none;
}


/* # =================================================================
   # Header  ::  共通ヘッダー
   # ================================================================= */
.svgIcon-logoText {
    fill: #f60;
    width: 184px;
}

.svgIcon-logoIcon {
    fill: #1591ba;
    width: 100px;
}

.svgIcon-iconSearch,
.svgIcon-iconMypage,
.svgIcon-iconCart,
.svgIcon-iconMenu
 {
    display: block;
    fill: #000;
    height: 26px;
    margin: 0 auto 2px;
    padding: 10px 0 0;
    width: 26px;
}

header{
    background-color: #fff;
    border-bottom: 5px solid #f60;
    box-sizing: content-box;
    font-size: 12px;
    height: 60px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    z-index: 1002;
}

.headerWrap{
}

.headerLogo {
    align-items: center;
    display: flex;
    height: 60px;
    line-height: 0;
    margin: 0 0 0 12px;
}


nav{
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
}

.headerMenu{
    display:inline-block;
    height: 60px;
}

.headerMenu li{
    display: inline-block;
    height: 60px;
    position: relative;
    text-align: center;
    width:60px;
}

.headerMenu li.-new::after {
    border-radius: 50%;
    background: #f60;
    color: #fff;
    content: 'N';
    display: block;
    font-size: 10px;
    height: 13px;
    line-height: 13px;
    right: 0;
    margin: 4px 3px 0 0;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 0;
    transform: scale(0.8);
    width: 13px;
}

.headerMenu li a {
    color: #000;
    display: block;
    font-weight: bold;
    height: 100%;
    text-decoration: none;
    width: 100%;
}

.headerMenu li a:hover{
    background-color: #FFF7F2;
}

.headerMenu li span{
    font-size: 11px;
}

.headerMenuList.close{
    display:none;
}
.headerMenuList.nowBg{
    background-color: #FFF7F2;
}

.headerMenuList{
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    display: block;
    left: 0;
    margin: 0;
    overflow: hidden;
    position: absolute;
    top: 65px;
    width: 100%;
    z-index: 1001;
}

.headerMenuList a:hover  {
    text-decoration: underline;
}

.headerMenuList div {
    font-size: 14px;
    margin: 20px auto;
    text-align: center;
}

.headerMenuList div.loginMenu,
.headerMenuList div.mypageMenu,
.headerMenuList div.appMenu {
    background-color: #fff;
    font-size: 14px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
}

.headerMenuList div ul{
    display: inline-block;
}

.headerMenuList .mypageMenu ul li,
.headerMenuList .appMenu ul li{
    display: inline-block;
    padding: 0 20px 0 0 ;
}

.headerMenuList a{
    color: #000;
    text-decoration: none;
}

.headerMenuList a.login,
.headerMenuList a.logout {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    padding: 0 20px;
}

.headerMenuList a.register {
    border-right: 1px solid #ccc;
    padding: 0 20px;
}

.headerMenuList .-new a::after {
    background: #f60;
    color: #fff;
    content: 'NEW';
    font-size: 10px;
    font-weight: 500;
    margin: 0 0 0 2px;
    padding: 2px 5px;
    vertical-align: 0.2em;
}

#genre.headerMenuList ul {
    display: block;
}

.owned::before{
    color: #f60;
    content: '●';
    position: inline-block;
}

a.owned{
    color: #f60;
}

.spCloseWrap{
    display: none;
}



.topReadText {
    color: #FF6D0D;
    font-size: 16px;
    font-weight: normal;
    left: 232px;
    position: absolute;
    top: 20px;
    z-index: 1003;
}

@media screen and (max-width: 1017px) {
    .topReadText {
        width: calc( 100% - 470px );
    }
}

@media screen and (max-width: 768px) {
    .topReadText {
        display: none;
    }
}



#blackout {
    background: rgba(0, 0, 0, .8);
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1000;
}


/* ジャンルリスト(PC) */

.closeBtn.-pcOnly{
    height: 30px;
    margin: 0;
    position: absolute;
    right: 20px;
    top: 0;
    width: 30px;
}


.closeBtn.-pcOnly p{
    background-color: #ccc;
    border-radius: 20px;
    cursor: pointer;
    height: 30px;
    overflow: hidden;
    position: relative;
    text-indent: -9999px;
    width: 30px;
}

.closeBtn.-pcOnly p::before{
    border-right: solid 2px #fff;
    content: '';
    display: block;
    height: 10px;
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0;
}

.closeBtn.-pcOnly p::after{
    border-top: solid 2px #fff;
    content: '';
    display: block;
    height: 0;
    left: 50%;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
}


.genreMenu{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.headerMenuList div.genreLists{
    border-right: 1px dotted #ccc;
    font-size: 12px;
    height: auto;
    margin: 0;
    overflow: hidden;
    text-align: left;
    width: 250px;
}

.headerMenuList div.genreLists:last-child{
    border-right: none;
}

.headerMenuList div.genreLists a:hover {
    text-decoration: underline;
}

.genre1{
    font-size: 14px;
    font-weight: bold;
    padding: 0 0 20px 10px ;
}

ul.genre2 {
    font-weight: bold;
    list-style: none;
    padding: 0 0 20px 20px;
}

ul.genre2 li {
    font-weight: bold;
    line-height: 24px;
}

ul.genre2 > li {
    padding: 0 0 10px;
}

ul.genre3 {
    font-weight: normal;
    list-style: none;
}

ul.genre3 li {
    line-height: 24px;
}

ul.genre3 li a {
    font-weight: initial;
}


@media screen and (max-width: 768px) {

    #top {
        margin: -13vw 0 0;
        padding: 13vw 0 0;
    }

    header {
        border-bottom: 2px solid #f60;
        height: 13vw;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1002;
    }


    .headerLogo {
        height: 13vw;
        margin: 0 0 0 1.8%;
        width: 29.3%;
    }

    .svgIcon-logoText {
        width: 100%;
    }

    .svgIcon-iconSearch,
    .svgIcon-iconMypage,
    .svgIcon-iconCart,
    .svgIcon-iconMenu {
        display: block;
        fill: #000;
        height: 5.3vw;
        margin: 0 auto .5vw;
        padding: 2.6vw 0 0;
        width: 5.3vw;
    }

    .headerMenu {
        display: inline-block;
        height: 13vw;
    }

    .headerMenu li {
        height: 13vw;
        width: 13vw;
    }

    .headerMenu li.-new::after {
        font-size: 2.6vw;
        height: 3.4vw;
        line-height: 3.4vw;
        margin: 1vw 0.8vw 0 0;
        transform: scale(1);
        width: 3.4vw;
    }

    .headerMenu li span{
        font-size:  2.933vw;
        letter-spacing: -0.1em;
        white-space: pre;
    }

    .headerMenuList{
        border-bottom: none;
        height: 100%;
        overflow: auto;
        padding: 0 0 32.2vw;
        position: fixed;
        top: 13vw;
        width: 100%;
        z-index: 1001;
    }

    .headerMenuList div {
        font-size: 3.733vw;
        margin: 0;
        text-align: center;
    }

    .headerMenuList div.genreMenu {
        margin: 0 0 12.8vw;
    }

    .headerMenuList div.mypageMenu {
        border: none;
        font-size: 3.733vw;
        height: auto;
    }

    .headerMenuList div ul{
        display: block;
    }

    .headerMenuList .mypageMenu ul li,
    .headerMenuList .appMenu ul li {
        border-bottom: 1px solid #ccc;
        display: block;
        font-size: 3.733vw;
        height: 12.8vw;
        line-height: 12.8vw;
        margin: 0;
        padding: 0;
        position: relative;
        text-align: left;
        width: 100%;
    }

    .headerMenuList .mypageMenu ul li::after,
    .headerMenuList .appMenu ul li::after {
        border-top: solid 2px #CCCCCC;
        border-right: solid 2px #CCCCCC;
        content: "";
        display: block;
        height: 2.133vw;
        margin: auto;
        position: absolute;
        top: 50%;
        right: 2.6%;
        transform: translateY(-50%) rotate(45deg);
        width: 2.133vw;
    }

    .headerMenuList li a {
        display: block;
        padding: 0 0 0 2.6%;
    }

    .headerMenuList li a:hover {
        text-decoration: none;
    }

    .headerMenuList .-new a::after {
        font-size: 2.6vw;
        margin: 0 0 0 4.2vw;
        padding: 0.5vw 1.3vw;
    }

    .spCloseWrap {
        background-color: #fff;
        bottom: 0;
        box-shadow: 0 0 5px 2px #ccc;
        display: block;
        height: 19.2vw;
        left: 0;
        position: fixed;
        width: 100%;
        z-index: 1004;
    }

    .spCloseWrap a {
        margin: 3vw auto 0;
    }

    .closeBtn.button_gray {
        font-size: 3.733vw;
        height: 13.333vw;
        line-height: 13.333vw;
        padding: 0;
        width: 95%;
    }

    /* Sp版でボタンになる部分 */
    .login.spButton,
    .register.spButton,
    .logout.spButton{
        background: #fff;
        border: 1px solid #ccc;
        color: #000;
        display: block;
        font-size: 3.733vw;
        font-weight: bold;
        height: 13.333vw;
        line-height: 13.333vw;
        margin: 5.333vw auto 0;
        padding: 0;
        text-align: center;
        text-decoration: none;
        width: 95%;
    }

    .owned::before{
        content: none;
    }

    .owned.spButton{
        background: #f60;
        color: #fff;
        display: block;
        font-size: 3.733vw;
        font-weight: bold;
        height: 13.333vw;
        line-height: 13.333vw;
        margin: 5.333vw auto 0;
        padding: 0;
        text-align: center;
        text-decoration: none;
        width: 95%;
    }

    .owned.spButton:hover {
        text-decoration: none;
    }

    /* ジャンルリスト(SP) */

    .headerMenuList div.genreLists{
        border-right: none;
        height: auto;
        margin: 0;
        overflow: hidden;
        text-align: left;
        width: 100%;
    }

    p.genre1{
        background-color: #fff;
        border-bottom: 1px solid #ccc;
        font-size: 3.733vw;
        height: 12.8vw;
        line-height: 12.8vw;
        padding: 0 0 0 2.6%;
        position: relative;
    }

    p.genre1::before{
        border-right: solid 2px #CCCCCC;
        content: "";
        display: block;
        height: 3.2vw;
        margin: auto;
        position: absolute;
        top: 50%;
        right: 3.2vw;
        transform: translateY(-50%);
        width: 0;
    }

    p.genre1.g1_close::before{
        content: none;
    }

    p.genre1::after,
    p.genre1.g1_close::after{
        border-top: solid 2px #ccc;
        content: '';
        display: block;
        height: 0;
        right: 1.8vw;
        margin: auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 3.2vw;
    }

    #genre.headerMenuList ul.genre2 {
        background-color: #f7f7f7;
        display: none;
        overflow: hidden;
        padding: 0;
    }

    #genre.headerMenuList ul.genre2.open{
        display: block;
    }

    #genre.headerMenuList ul.genre2 li{
        border-bottom: 1px solid #ccc;
        font-size: 3.733vw;
        line-height: 12.8vw;
        min-height: 12.8vw;
        padding: 0 0 0 5.333vw;
    }

    #genre.headerMenuList ul.genre3 {
        background-color: #ddd;
        display: block;
        margin: 0 0 0 -5.33vw;
        overflow: hidden;
        padding: 0;
    }


    #genre.headerMenuList ul.genre3 li{
        border-bottom: 1px solid #ccc;
        font-size: 3.733vw;
        height: 12.8vw;
        line-height: 12.8vw;
        padding:0 0 0 8vw;
    }

    ul.genre3 li a {
        font-weight: bold;
    }

    #genre.headerMenuList ul.genre3 li:last-child {
        border-bottom: none;
    }
    .genreMenu li a {
        position: relative;
    }

    .genreMenu li a::after {
        border-right: solid 2px #ccc;
        border-top: solid 2px #ccc;
        content: '';
        display: block;
        height: 2.4vw;
        margin: auto;
        position: absolute;
        right: 3.2vw;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        width: 2.4vw;
    }


}

/* # =================================================================
   # Footer  ::  共通フッター
   # ================================================================= */

footer{
    background-color: #333;
    border-top: 5px solid #f60;
    color: #fff;
    display: block;
    font-size: 12px;
    margin: 0 auto;
    width: 100%;
}

.footerWrap{
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 0;
    width: 1000px;
}

.footerMenu{
    display: block;
    margin: 20px 0 0;
    width: 100%;
}

.footerMenu_second{
    display: block;
    margin: 20px 0;
    width: 100%;
}

.footerMenu li, .footerMenu_second li {
    display: inline-block;
    margin: 0 14px 0 0;
}

.footerMenu li a,
.footerMenu_second li a{
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    line-height: 1;
    text-decoration: none;
}

.footerMenu li a:hover, .footerMenu_second li a:hover {
    text-decoration: underline;
}

a.newTab {
    margin: 0 20px 0 0;
    position: relative;
}

a.newTab::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 10px;
    top: 0px;
    right: -20px;
    border: 1px solid #fff;
}

a.newTab::after {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 10px;
    top: 2px;
    right: -18px;
    border: 1px solid #fff;
    border-top: none;
    border-right: none;
}

.footerInfo{
    align-items: center;
    border-top: 1px solid #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 10px 0 0 0;
    width: 1000px;
}

.footerInfo ul{
    margin: 0 0 10px 0;
}

@media screen and (max-width: 1140px) {
    .footerInfo ul {
        padding-right: 80px;
    }
}


.footerInfo ul li{
    display: inline-block;
}

.footerInfo ul li + li{
    margin-left: 10px;
}

.footerInfo small{
    font-size: 12px;
}


.simpleFooter .footerInfo {
    border: none;
    justify-content: center;
    padding: 20px 0;
}


/* TOPに戻るボタン */

#pagetopBtn {
    background: #f60;
    bottom: 10px;
    display: block;
    height: 50px;
    position: fixed;
    right: 10px;
    width: 50px;
    z-index: 2;
}


#pagetopBtnInner {
    display: block;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-indent: -9999px;
    width: 100%;
}

#pagetopBtnInner::before {
    border-top: 1px solid #fff;
    content: '';
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    top: 17px;
    transform: translateX(-50%);
    width: 15px;
}

#pagetopBtnInner::after {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    content: "";
    display: block;
    height: 12px;
    margin: auto;
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    width: 12px;
}



@media screen and (max-width: 768px) {

    footer{
        border-top: 5px solid #f60;
        font-size: 3.733vw;
        height: auto;
    }

    .footerWrap{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
        width: 100%;
    }

    .footerMenu{
        display: flex;
        flex-wrap: wrap;
        margin: 0 auto;
        width: 95%;
    }

    .footerMenu li {
        border-bottom: 1px solid #ccc;
        display: inline-block;
        height: 13.333vw;
        line-height: 13.333vw;
        margin: 0;
        position: relative;
        width: 50%;
    }

    .footerMenu li::after{
        border-right: 1px solid #fff;
        border-top: 1px solid #fff;
        content: '';
        height: 2.667vw;
        margin: auto;
        position: absolute;
        right: 8%;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        -webkit-transform: translateY(-50%) rotate(45deg);
        vertical-align: middle;
        width: 2.667vw;
    }

    .footerMenu li a{
        color: #fff;
        display: block;
        font-size: 3.733vw;
        font-weight: normal;
        height: 13.333vw;
        line-height: 13.333vw;
        position: absolute;
        text-decoration: none;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
    }


    .footerMenu_second {
        display: block;
        margin: 5.333vw auto;
        width: 95%;
    }

    .footerMenu_second li {
        display: block;
        margin: 0 0 5.333vw;
    }

    .footerMenu_second li:last-child{
        margin: 0;
    }

    .footerMenu_second li a {
        font-size: 3.733vw;
        font-weight: normal;
    }

    a.newTab::before {
        width: 3.733vw;
        height: 2.667vw;
        right: -5.333vw;
    }

    a.newTab::after {
        width: 3.733vw;
        height: 2.667vw;
        top: 0.533vw;
        right: -4.8vw;
    }

    .footerInfo ul{
        margin: 0 0 2.667vw 0;
        padding-right: 0;
    }

    .footerInfo{
        flex-direction: column-reverse;
        margin: 0 auto;
        padding: 5.333vw 0;
        text-align: center;
        width: 95%;
    }

    .footerInfo small {
        font-size: 2.667vw;
    }

    .simpleFooter .footerInfo {
        padding: 6.4vw 0;
    }

}


/* # =================================================================
   # Overlay  ::  白背景の全画面ポップアップ
   # ================================================================= */
.js-overlay-open {
    cursor: pointer;
}

.js-overlay {
    bottom: -100%;
    display: none;
}

.overlay_wrap {
    background: #fff;
    border-top: 5px solid #FFF7F2;
    height: 100%;
    left: 0;
    max-height: 100%;
    position: fixed;
    width: 100%;
    z-index:9000;
}

.overlay_inner,
.ovarlay_inner {
    height: 100%;
    overflow-y: auto;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.ovarlay_content {
    margin: 0 auto;
    padding: 40px 0 80px;
    width: 660px;
}

.overlay_panel {
    background: #fff;
    bottom: 0;
    box-shadow: 0px -5px 6px rgba(0,0,0,0.3);
    padding: 13px 0 10px;
    position:fixed;
    width: 100%;
}

.overlay_panel-close {
    background:#EEEEEE;
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
    margin: 0 auto;
    width: 320px;
}

@media screen and (max-width: 768px) {
    .overlay_wrap {
        border-top-width: 1.3vw;
    }

    .ovarlay_content {
        padding: 5.3vw 0 20vw;
        width: 95%;
    }

    .overlay_panel {
        box-shadow: 0 -1.3vw 1.5vw rgba(0,0,0,0.3);
        padding: 3.4vw 0 2.6vw;
    }

    .overlay_panel-close {
        font-size: 3.7vw;
        line-height: 13vw;
        width: 95%;
    }
}

/* # =================================================================
   # Modal  ::  モーダル
   # ================================================================= */
.js-modal-open {
    cursor: pointer;
}

.js-modal {
    display: none;
}
.modal_wrap {
    background: rgba(0,0,0,0.8);
    cursor: pointer;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9000;

    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.modal_content {
    background: #fff;
    cursor: auto;
    left: 50%;
    margin: -35px auto 0;
    max-height: 90%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    z-index: 9001;
}

.modal_content::after {
    background: #ccc;
    bottom: -70px;
    color: #000;
    content: '\9589\3058\308B';/* 閉じる */
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: bold;
    left: 50%;
    line-height: 50px;
    position: absolute;
    pointer-events: none;
    text-align: center;
    transform: translateX(-50%);
    width: 175px;
}

.modal_content-wrap {
    overflow-y: auto;
}

.modal_content-text {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.8;
    margin: 40px auto 20px;
    text-align: left;
    width: 85%;
}

.modal_content-text .product-name {
    color: #707070;
    display: inline-block;
    font-size: 14px;
    padding: 0 0 10px;
    text-align: left;
}


.modal_panel {
    border-top: 2px solid #eee;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 40px 0;
    position: relative;
    width: 85%;
}

.modal_panel::before {
    border-top: 2px solid #f60;
    content: '';
    display: block;
    left: 50%;
    position: absolute;
    top: -2px;
    transform: translateX(-50%);
    width: 100px;
}

.modal_panel.period {
    flex-wrap: wrap;
}

.modal_panel-yes,
.modal_panel-no {
    font-size: 14px;
    font-weight: bold;
    line-height: 50px;
    text-align: center;
    width: 48%;
}

.modal_panel-yes {
    background: #f60;
    color: #fff;
}

.modal_panel-no {
    background: #eee;
    color: #000;
}

@media screen and (max-width: 768px) {
    .modal_content {
        margin-top: -9vw;
        max-height: calc(90% - 9vw);
        width: 85%;
    }

    .modal_content::after {
        background: #ccc;
        bottom: -18.6vw;
        font-size: 3.7vw;
        line-height: 13vw;
        width: 46%;
    }

    .modal_content-text {
        font-size: 4.2vw;
        margin: 10vw auto 5.3vw;
    }

    .modal_content-text .product-name {
        color: #707070;
        display: inline-block;
        font-size: 3.733vw;
        padding: 0 0 2.6vw;
        text-align: left;
    }

    .modal_panel {
        border-top-width: 0.5vw;
        padding: 10vw 0;
        width: 85%;
    }

    .modal_panel::before {
        border-top-width: 0.5vw;
        top: -0.5vw;
        width: 26vw;
    }

    .modal_panel-yes,
    .modal_panel-no {
        font-size: 3.7vw;
        line-height: 13vw;
        width: 48%;
    }
}


/* # =================================================================
   # Breadcrumb  ::  パンくずリスト
   # ================================================================= */

.breadcrumb {
    font-size: 14px;
    margin: -20px auto 35px;
    max-width: 100%;
    width: 1000px;
}
.breadcrumb.-narrow {
    width: 660px;
}
.breadcrumb.-lp {
    margin: 20px auto;
}
.breadcrumb.-kaeru {
    margin: 20px auto;
    width: 660px;
}

.breadcrumb_list {
    color: #ccc;
    list-style: none;
}

.breadcrumb_list li {
    display: inline-block;
    padding: 0 31px 0 0;
    position: relative;
}

.breadcrumb_list li:last-child {
    padding-right: 0;
}

.breadcrumb_list li::after {
    border: 1px solid #707070;
    border-width: 1px 1px 0 0;
    content: '';
    display: block;
    height: 7px;
    margin: -3px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    width: 7px;
}

.breadcrumb_list li:last-child::after {
    content: none;
}

.breadcrumb_list a {
    color: #707070;
    font-weight: 500;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        font-size: 2.6vw;
        margin: 0 auto;
        max-width: 95%;
        padding: 2.6vw 0 0;
    }
    .breadcrumb.-narrow {
        width: 95%;
    }
    .breadcrumb.-lp {
        margin: 2.6vw auto;
    }
    .breadcrumb.-kaeru {
        margin: 13vw auto 0;
        width: 95%;
    }

    .breadcrumb_list li {
        padding: 0 4vw 0 0;
    }

    .breadcrumb_list li::after {
        border-width: 0.2vw 0.2vw 0 0;
        height: 1.3vw;
        margin: -0.2vw;
        right: 2vw;
        width: 1.3vw;
    }
}


/* # =================================================================
   # Genre  ::  ジャンルから探す
   # ================================================================= */
.container_wrap.-genre {
    padding: 40px 0 0;
}

.genreList {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    list-style: none;
    margin: 40px -8px 0;
}

.genreList li {
    margin: 0 0 40px;
    padding: 0 8px;
    width: 16.6%;
}

.genreList_item {
    color: inherit;
    text-decoration: none;
}

.genreList_img {
    display: block;
    transition : all 0.3s ease-out;
    -webkit-transition : all 0.3s ease-out;
    width: 100%;
}

.genreList_name {
    font-size: 14px;
    letter-spacing: -0.05em;
    margin: 5px 0 0;
    text-align: center;
    transition : all 0.3s ease-out;
    -webkit-transition : all 0.3s ease-out;
}

.genreList_item:hover .genreList_img {
    opacity: 0.7;
}

.genreList_item:hover .genreList_name {
    text-decoration: underline;
}

@media screen and (min-width: 769px) {
    .genreList_name br {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .genreList {
        margin: 5vw auto 0;
    }
    .genreList li {
        padding: 0 2.5%;
        width: 33.33%;
    }
    .genreList_name {
        font-size: 3.7vw;
    }
    .genreList_name span {
        display: none;
    }
}


/* # =================================================================
   # itemList  ::  商品リスト
   # ================================================================= */
.itemList {
    margin: 40px 0 0;
}

.itemList_panel {
    border-bottom: 1px dashed #ccc;
    padding: 0 0 15px;
}

.itemList_panel-select {
    border: 1px solid #ccc;
    display: inline-block;
    height: 30px;
    margin: 0 0 0 10px;
    min-width: 100px;
    position: relative;
}

.itemList_panel-select::after {
    border: 1px solid #f60;
    border-width: 0 0 2px 2px;
    content: '';
    display: block;
    height: 10px;
    position: absolute;
    right: 10px;
    top: 42%;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
}

.itemList_panel-select select {
    color: #000;
    font-size: 14px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    padding: 0 30px 0 10px;
    position: relative;
    z-index: 2;
}

.itemList_panel .button_gray {
    display: inline-block;
    float: right;
    margin: -3px 0 0;
    padding: 6px 8px;
    width: auto;
}

.itemList_product {
    list-style: none;
    margin: 0 0 30px;
}

.itemList_product>li {
    border-bottom: 1px dashed #ccc;
    padding: 20px 0;
}

.itemList_product-name {
    color: #000;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
}

.itemList_product-label {
    margin: 0 0 20px;
}

.itemList_product-label li {
    color: #fff;
    display: inline-block;
    font-size: 12px;
    line-height: 26px;
    margin: 0 8px 0 0;
    padding: 0 10px;
}

.itemList_product-label .-short { /* 短期 */
    background: #EF9A9A;
}
.itemList_product-label .-set { /* セット対象 */
    background: #90CAF9;
}
.itemList_product-label .-monthly { /* 月額 */
    background: #C5E1A5;
}
.itemList_product-label .-rental { /* 個品レンタル不可 */
    background: #FFCC80;
}
.itemList_product-label .-buy { /* 販売 */
    background: #CE93D8;
}
/* レンタル後販売 */
.itemList_product-label .-purchase {
    background: url(/img/cmn/check.svg) left center no-repeat;
    background-size: auto 100%;
    color: #009AFF;
    display: inline-block!important;
    font-family: 'ヒラギノ角ゴ Pro W3', 'HiraKakuPro-W3','ヒラギノ角ゴ W3', 'HiraKaku-W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', "MS Pgothic", sans-serif;
    font-size: 18px;
    font-weight: bold !important;
    height: 26px;
    padding: 0;
    position: relative;
    vertical-align: bottom;
    width: 87px;
}
.itemList_product-label .-purchase span {
    left: 18px;
    line-height: 1;
    position: absolute;
    top: 7px;
    width: 4em;
}

.itemList_product-detail {
    align-items: start;
    display: flex;
    justify-content: space-between;
    margin: 0 0 10px;
    position: relative;
}

a .itemList_product-detail::before {
    background: #f60;
    border-radius: 50%;
    bottom: 0;
    content: '';
    display: block;
    height: 20px;
    right: 0;
    position: absolute;
    width: 20px;
}

a .itemList_product-detail::after {
    border: solid #fff;
    border-width: 0 1px 1px 0;
    bottom: 0;
    content: '';
    display: block;
    height: 6px;
    margin: 0 8px 7px 0;
    right: 0;
    position: absolute;
    transform: rotate(-45deg);
    width: 6px;
}

.imgWrap {
    width: 120px;
    height: 120px;
    border: 1px solid #ccc;
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itemList_product-image {
    border: none;
    box-sizing: border-box;
    margin:0;
    max-height: 118px;
    max-width: 118px;
    height: auto;
    width: auto;
}

.itemList_product-text {
    color: #999;
    display: block;
    font-size: 16px;
    width: calc( 100% - 130px );
}

.itemList_product-text dt {
    display: inline-block;
    float: left;
    padding: 2px 0;
}

.itemList_product-text dd {
    padding: 2px 0;
}

.itemList_product-text dd::before {
    content: '\FF1A';/* ： */
}

.itemList_product-period {
    background: #FFF7F2;
    margin: 0 0 10px;
    padding: 20px 10px;
}

.itemList_product-period-head {
    color: #707070;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 3px;
}

.itemList_product-period-detail {
    color: #f60;
    font-size: 20px;
    font-weight: bold;
}

.itemList_product-extension {
    color: #707070;
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 20px;
}

.itemList_product-panel {
    text-align: right;
}

.itemList_product-panel label {
    float: left;
}

.itemList_product-panel button {
    display: inline-block;
    height: 30px;
    line-height: 30px;
    margin: 0 0 0 8px;
    padding: 0 20px;
    width: auto;
}
@media screen and (max-width: 768px) {
    .itemList {
        margin: 10vw 0 0;
    }

    .itemList_panel {
        border-bottom-width: 0.2vw;
        padding: 0 0 5.3vw;
    }

    .itemList_panel-select {
        border-width: 0.2vw;
        height: 7vw;
        margin: 0 0 0 2.6vw;
        min-width: 26.6vw;
    }

    .itemList_panel-select::after {
        border-width: 0 0 0.5vw 0.5vw;
        height: 2.6vw;
        right: 2.6vw;
        width: 2.6vw;
    }

    .itemList_panel-select select {
        font-size: 3.7vw;
        height: 7vw;
        line-height: 7vw;
        padding: 0 7.4vw 0 2.6vw;
    }

    .itemList_panel .button_gray {
        margin: -0.2vw 0 0;
        padding: 1.6vw 2.1vw;
    }

    .itemList_product {
        margin: 0 0 5.3vw;
    }

    .itemList_product>li {
        border-bottom-width: 0.2vw;
        padding: 5.3vw 0;
    }

    .itemList_product-name {
        font-size: 4.2vw;
        margin: 0 0 5.3vw;
    }

    .itemList_product-label {
        margin: 0 0 5.3vw;
    }

    .itemList_product-label li {
        font-size: 3.2vw;
        line-height: 6.9vw;
        margin: 0 0.3vw 0 0;
        padding: 0 2.6vw;
    }

    .itemList_product-label .-purchase {
        font-size: 4.8vw;
        height: 6.9vw;
        padding: 0!important;
        width: 23.2vw;
    }

    .itemList_product-label .-purchase span {
        left: 4.95vw;
        top: 1.7vw;
    }
    .itemList_product-detail {
        margin: 0 0 2.6vw;
    }

    .imgWrap {
        border-width: .2vw;
        height: 32vw;
        margin: 0 0 2.6vw;
        width: 32vw;
    }

    .itemList_product-image {
        max-height: 31vw;
        max-width: 31vw;
    }

    .itemList_product-text {
        font-size: 3.7vw;
        width: calc(100% - 34.6vw);
    }

    .itemList_product-period {
        margin: 0 0 2.6vw;
        padding: 1.3vw 2.6vw;
    }

    .itemList_product-period-head {
        font-size: 3.2vw;
        margin: 0 0 1vw;
    }

    .itemList_product-period-detail {
        font-size: 5.3vw;
    }

    .itemList_product-extension {
        font-size: 3.7vw;
        margin: 0;
    }

    .itemList_product-panel button {
        height: 7vw;
        line-height: 7vw;
        margin: 0 0 0 2.1vw;
        padding: 0 5.3vw;
    }
}

/* セール価格 */
.itemList_product-text .discount {
    text-decoration: line-through;
}

.itemList_product-text dt.discountPrice {
    background: #f60;
    color: #fff;
    font-size: 12px;
    margin-right: 6px;
    padding: 4px 6px;
}

.itemList_product-text dd.discountPrice::before {
    content: none;
}

.itemList_product-text dd.discountPrice {
    color: #f60;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .itemList_product-text dt.discountPrice {
        font-size: 2.6vw;
        margin-right: 1.5vw;
        padding: 1vw 1.5vw;
    }
}


/*商品注記*/

.item_period.atten, .item_discount.atten, .item_purchase.atten {
    color: #FF0000;
    font-size: 12px;
    margin: 10px 0 20px;
}

.item_period.atten._ls, .item_discount.atten._ls, .item_purchase._ls {
    font-size: 14px;
}

.item_purchase._ls.atten.atten_mark {
    font-weight: bold;
    margin-bottom: 0;
}

.item_purchase._ls.atten.atten_mark::before {
    content: "！";
    color: #fff;
    display: inline-block;
    height: 16px;
    width: 16px;
    background-color: #FF0000;
    border-radius: 8px;
    font-size: 12px;
    text-align: center;
    margin: 0 5px 0 0;
    line-height: 16px;
    padding: 0;
}

.item_period.atten.period_modal._ls{
    margin: 0 auto 40px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .item_period.atten,
    .item_period.atten._ls,
    .item_discount.atten,
    .item_discount.atten._ls
    .item_purchase.atten,
    .item_purchase.atten._ls {
        font-size:3.2vw;
        margin: 2.667vw 0;
    }

	.item_purchase._ls.atten.atten_mark {
        margin-bottom: 0;
    }

	.item_purchase._ls.atten.atten_mark::before {
	    border-radius: 2.133vw;
	    font-size: 3.2vw;
	    height: 4.267vw;
	    line-height: 4.267vw;
	    margin: 0 1.333vw 0 0;
	    width: 4.267vw;
    }
    
    .item_period.atten.period_modal._ls{
        margin: 0 auto 10.667vw;
    }
}

/*レンタル後販売案内*/
.purchase_target {
    background: #E5F5FF;
    color:#707070;
    font-size: 12px;
    margin: 10px 0;
    padding: 10px;
    text-align: center;
}

.purchase_target .purchase_target_note {
    letter-spacing: 0.05em;
    line-height: 1.5em;
    margin: auto;
    max-width: 100%;
    text-align: left;
    width: 400px;
}

.purchase_target .purchase_target_price {
    font-size: 16px;
    margin: 7px 0 8px 0;
}

.purchase_target .purchase_target_price span {
    color: #FF6600;
    font-weight: bold;
}
    
.purchase_target .purchase_target_price span:first-of-type {
    margin-left: 10px;
}

.purchase_target .purchase_target_price span.tax {
    font-size: 10px;
}

.purchase_target_text span {
    color: #009AFF;
    font-weight: bold;
}

.purchase_target_button {
    border: 1px solid #009AFF;
    color: #0094EB;
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin: 10px auto;
    max-width: 100%;
    padding: 16px 0;
    text-align: center;
    text-decoration: none;
    width: 320px;
}

.purchase_target_button span {
    background: url(/img/cmn/check.svg) left center/auto 21px no-repeat;
    color: #009AFF;
    font-family: 'ヒラギノ角ゴ Pro W3', 'HiraKakuPro-W3','ヒラギノ角ゴ W3', 'HiraKaku-W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', "MS Pgothic", sans-serif;
    font-weight: bold;
    margin-right: 5px;
    line-height: 1em;
    padding: 0.3em 0 0 16px;
}

@media screen and (max-width: 768px) {
    .purchase_target {
        font-size: 3.2vw;
        margin: 2.667vw 0;
        padding: 2.667vw;
    }

    .purchase_target .purchase_target_note {
        letter-spacing: normal;
        line-height: 1.5em;
        margin: auto;
        width: 100%;
    }

    .purchase_target .purchase_target_price {
        font-size: 3.2vw;
        line-height: 1em;
        margin: 2.6vw 0 2.133vw 0;
        text-align: center;
    }
    
    .purchase_target .purchase_target_price span:first-of-type {
        font-size: 5.333vw;
        margin-left: 1.3vw;
    }
    
    .purchase_target .purchase_target_price span.tax {
        font-size: 2.667vw;
    }

    .purchase_target_button {
        font-size: 3.8vw;
        padding: 4.2vw 0;
        width: 100%;
    }

    .purchase_target_button span {
        font-size: 3.8vw;
        background-size: auto 1.4em;
        line-height: 1em;
        margin-right: 0.5vw;
        padding: 0.3em 0 0 4vw;
    }
}


/* # =================================================================
   # 共通右メニュー(PCのみ表示)
   # ================================================================= */

.cmnRightMenu {
    border: 1px solid #ccc;
    margin: 0 0 30px;
    padding: 20px 10px;
}

.cmnRight_menu-list, .staticRight_menu-list {
    list-style: none;
    margin: 0 -10px;
}

.cmnRight_menu-list li,.staticRight_menu-list li {
    font-size: 14px;
    position: relative;
}

.cmnRight_menu-list li::after,.staticRight_menu-list li::after {
    border-bottom: 1px dashed #ccc;
    content: '';
    display: block;
    margin: 0 10px;
}

.cmnRight_menu-list li a,.staticRight_menu-list li a {
    color: #000;
    display: block;
    padding: 16px 0;
    position: relative;
    text-indent: 10px;
    text-decoration: none;
}

.cmnRight_menu-list li a:hover,
.cmnRight_menu-list li.-active a,
.staticRight_menu-list li a:hover,
.staticRight_menu-list li.-active a  {
    background: #FFF7F2;
}

.cmnRight_menu-list li a::before,
.staticRight_menu-list li a::before {
    border: solid #ccc;
    border-width: 0 2px 2px 0;
    content: '';
    display: block;
    height: 10px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 10px;
}

.cmnRight_menu-list li.-new a::after {
    background: #f60;
    content: 'NEW';
    color: #fff;
    display: inline-block;
    font-size: 10px;
    margin: 0 0 0 15px;
    padding: 2px 5px;
    text-indent: 0;
}

.right_bannerArea {
    align-items: center;
    color: #fff;
    display: flex;
    font-weight: bold;
    justify-content: center;
    height: 160px;
    text-align: center;
    width: 320px;
}

.right_bannerArea img{
    height: 160px;
    width: 320px;
}


/* 表示内容が無い場合→右側メニューをabsoluteに(PC版のみ) */
.right_absolute .container_right-sticky .-pcOnly {
    position: relative;
    top: 0;
}




/* # =================================================================
   # 案内ページ共通(ガイド/利用規約/特定商取引法/不正対応...)
   # ================================================================= */

.subTitle.-hasGlayBar{
    border-left: solid 5px #eee;
    color: #707070;
    font-size: 16px;
    font-weight: bold;
    margin: 40px 0 20px;
    padding: 0 0 0 10px;
}


@media screen and (max-width: 768px) {
    .subTitle.-hasGlayBar{
        font-size: 3.733vw;
        margin: 10.667vw 0 5.333vw;
        padding: 0 0 0 2.667vw;
    }
}

.container_center.trade{
    margin: 0 auto 80px;
}

.trade .note {
    font-size: 14px;
}

.trade dl {
    color: #707070;
    font-size: 16px;
    margin: 0 0 40px;
}

.trade dl dt{
    font-weight: bold;
    margin: 0 0 20px;
}

.trade dl dd{
    margin: 0 0 40px;
}

.trade table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    color: #707070;
    font-size: 16px;
    text-align: center;
    width: 100%;
}

.trade table th {
    background: #eee;
    border-bottom: 1px solid #ccc;
    border-spacing: 0;
    font-weight: normal;
    padding: 10px;
}

.trade table td {
    font-weight: bold;
    padding: 20px;
}


@media screen and (max-width: 768px) {
    .container_center.trade{
        margin:0 auto 21.333vw;
    }

    .trade dl {
        font-size: 3.733vw;
        margin:0 0 10.667vw;
    }

    .trade dl dt{
        margin:0 0 5.333vw;

    }

    .trade dl dd{
        margin:0 0 10.667vw;
    }

    .trade .note {
        font-size: 3.2vw;
    }

    .trade table {
        font-size: 3.733vw;
    }

    .trade table th {
        padding: 2.667vw;
    }

    .trade table td {
        padding: 5.333vw;
    }
}

.illegality section{
    color: #707070;
    font-size: 16px;
    margin:40px auto 80px;
}

.illegality p{
    margin:0 0 20px;
}

.illegality ol{
    color: #FF0000;
    font-weight: bold;
    list-style: none;
    margin:40px 0 0;
}

.illegality ol li{
    margin:0 0 20px;
}

.illegality ol li:last-child{
    margin:0;
}


@media screen and (max-width: 768px) {

    .container_center.illegality {
        width: 100%;
    }

    .illegality section{
        font-size: 3.733vw;
        margin:5.333vw auto 10.667vw;
        width: 95%;
    }

    .illegality p{
        margin:0 0 5.333vw;
    }

    .illegality ol{
        margin:10.667vw 0 0;
    }

    .illegality ol li{
        margin:0 0 5.333vw;
    }

}


/* # =================================================================
   # エラーページ
   # ================================================================= */
.error_head {
    color: #707070;
    font-size: 24px;
    font-weight: bold;
    margin: 40px 0 80px;
    text-align: center;
}

.error_text {
    color: #707070;
    font-size: 16px;
    margin: 0 0 40px;
}

.error_text-list {
    list-style: none;
    margin-bottom: 1.3em;
}

.error_text-list span {
    font-weight: bold;
}

.error_panel {
    margin: 40px 0 80px;
}

@media screen and (min-width: 769px) {
    .error_text-list:last-child {
        margin-bottom: 80px;
    }
}


@media screen and (max-width: 768px) {
    .error_head {
        font-size: 4.2vw;
        margin: 5.3vw 0 10vw;
    }

    .error_text {
        font-size: 3.7vw;
        margin: 0 0 10vw;
    }

    .error_panel {
        margin: 10vw 0 20vw;
    }
}
