@charset "UTF-8";
@media screen and (max-width: 767px) {
    .only-lg {
        display: none;
    }
}

@media print,
screen and (min-width: 768px) {
    .only-sp {
        display: none;
    }
}


/*共通*/

#top {
    margin-right: 200px;
}

@media screen and (max-width: 1024px) {
    #top {
        margin-right: 0;
    }
}

footer {
    margin-right: 200px;
}

@media screen and (max-width: 1024px) {
    footer {
        margin-right: 0;
    }
}

.oseibo2023_wrap {
    overflow: hidden;
    position: relative;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    color: #020202;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    text-decoration: none;
    transition: 0.3s;
}

img {
    max-width: 100%;
    vertical-align: bottom;
}

p {
    line-height: 1.4;
}

.pc_only {
    display: block;
}

@media screen and (max-width: 768px) {
    .pc_only {
        display: none;
    }
}

.sp_only {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp_only {
        display: block;
    }
}


/* -------------------------------------
        ＴＯＰ
------------------------------------- */

.fv {
    position: relative;
    background: url(../img/fv-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 767px) {
    .fv {
        background: url(../img/fv-bg_sp.jpg) no-repeat;
        background-size: cover;
        background-position: center;
    }
}

.fv .top_logo {
    position: absolute;
    z-index: 2;
    width: 60px;
    left: 10px;
    top: 10px;
}

@media screen and (max-width: 767px) {
    .fv .top_logo {
        width: 45px;
        top: 10px;
    }
}

.fv__ttlarea {
    max-width: 1100px;
    margin: 0 auto 0 21%;
}

@media screen and (max-width: 767px) {
    .fv__ttlarea {
        padding: 80px 0;
    }
}

.fv__ttl {
    max-width: 320px;
    padding: 70px 40px 135px 52px;
    background: url(../img/fv-ttlbg-pc.png) no-repeat;
    background-size: cover;
    text-align: center;
}

@media screen and (max-width: 1399px) {
    .fv__ttlarea {
        max-width: 1100px;
        margin: 0px auto 0 18%;
    }
}

@media screen and (max-width: 1299px) {
    .fv__ttlarea {
        max-width: 1100px;
        margin: 0px auto 0 0;
    }
}

@media screen and (max-width: 767px) {
    .fv__ttl {
        max-width: 450px;
        padding: 0;
        width: 90%;
        margin: 0 auto;
        background: none;
    }
}

.kigen {
    background: #1B1B1B;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1em 0;
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .kigen {
        display: block;
        margin-bottom: 50px;
    }
}

.kigen__main {
    display: flex;
}

@media screen and (max-width: 767px) {
    .kigen__main {
        width: 95%;
        margin: 0 auto;
    }
}

.kigen__main:nth-child(2) {
    margin-left: 24px;
}

@media screen and (max-width: 767px) {
    .kigen__main:nth-child(2) {
        margin: 0 auto;
        margin-top: 8px;
    }
}

.kigen__main-txt {
    border: 1px solid #AE1010;
    background: #fff;
    padding: 4px 8px;
}

.kigen__main-txt p {
    color: #AE1010;
}

@media screen and (max-width: 767px) {
    .kigen__main-txt p {
        font-size: 0.9em;
    }
}

.kigen__main-day {
    margin-left: 8px;
}

.kigen__main-day p {
    color: #fff;
    font-size: 1.3em;
    letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
    .kigen__main-day p {
        font-size: 1.5em;
    }
}


/* -------------------------------------
        メニュー
------------------------------------- */

nav {
    display: flex;
}

@media screen and (max-width: 1024px) {
    nav {
        width: 100%;
        position: fixed;
        pointer-events: none;
        z-index: 3;
    }
}

@media screen and (max-width: 1024px) {
    nav .nopen {
        z-index: 3;
    }
}

@media screen and (max-width: 1024px) {
    .drawer {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 999;
    }
}

.menu {
    width: 200px;
    position: fixed;
    right: 0;
    top: 0;
    font-size: 0.9em;
    background-color: rgba(255, 255, 255, 0.9);
    margin: 0;
    transform: translateX(0);
    padding: 90px 20px 0;
    text-align: center;
    height: 100vh;
    z-index: 999;
    box-shadow: 1px 1px 3px #6b6b6b;
}

@media screen and (max-width: 1024px) {
    .menu {
        text-align: center;
        background-color: rgba(255, 255, 255, 0.9);
        transition: 0.5s ease;
        overflow-x: hidden;
        padding-top: 120px;
        transform: translateX(100%);
        height: 100vh;
        width: 100%;
    }
}

.menu::before {
    content: "";
    position: absolute;
    background: url(../img/nav_img.png) no-repeat;
    background-position: center;
    width: 32%;
    height: 60px;
    background-size: contain;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 20px;
}

@media screen and (max-width: 1024px) {
    .menu::before {
        top: 40px;
    }
}

@media screen and (max-width: 1024px) {
    .menu.open {
        transform: translateX(0%);
        z-index: 10;
        height: 100vh;
    }
}

.menu ul li a {
    padding: 1em 0;
    color: #000;
    border-top: 1px dotted #ccc;
    display: block;
}

@media screen and (max-width: 1024px) {
    .menu ul li a {
        display: block;
        border-top: 1px dotted #ccc;
        color: #000;
        text-decoration: none;
        pointer-events: auto;
    }
}

.menu ul li a:hover {
    background-color: transparent;
}

.menu ul li:last-child a {
    border-bottom: 1px dotted #ccc;
}

.Toggle {
    display: none;
}

@media screen and (max-width: 1024px) {
    .Toggle {
        display: block;
        position: fixed;
        width: 46px;
        height: 46px;
        cursor: pointer;
        right: 15px;
        top: 10px;
        background-color: #fff;
        border: 1px solid #AE1010;
        border-radius: 4px;
        z-index: 999;
        pointer-events: auto;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
    }
}

@media screen and (max-width: 1024px) {
    .Toggle span {
        display: block;
        position: absolute;
        width: 26px;
        border-bottom: solid 3px #AE1010;
        transition: 0.35s ease-in-out;
        left: 10px;
    }
    .Toggle span:nth-child(1) {
        top: 12px;
    }
    .Toggle span:nth-child(2) {
        top: 22px;
    }
    .Toggle span:nth-child(3) {
        top: 32px;
    }
}

@media screen and (max-width: 1024px) {
    .Toggle.active span:nth-child(1) {
        top: 22px;
        transform: rotate(-45deg);
    }
}

@media screen and (max-width: 1024px) {
    .Toggle.active span:nth-child(2),
    .Toggle.active span:nth-child(3) {
        top: 22px;
        transform: rotate(45deg);
    }
}


/* -------------------------------------
        特典
------------------------------------- */

.tokuten {
    margin-bottom: 60px;
}

.tokuten__ttl {
    text-align: center;
}

@media screen and (max-width: 767px) {
    .tokuten__ttl {
        width: 70%;
        margin: 0 auto;
        max-width: 550px;
    }
}

.tokuten__subttl {
    margin-top: 12px;
    text-align: center;
}

.tokuten__subttl p {
    position: relative;
    display: inline-block;
    font-size: 1.2em;
}

.tokuten__subttl p::before,
.tokuten__subttl p::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    background: #AE1010;
    bottom: 0;
}

.tokuten__subttl p::before {
    left: -10%;
    transform: rotate(-30deg);
}

.tokuten__subttl p::after {
    right: -10%;
    transform: rotate(30deg);
}

.tokuten__subttl p span {
    color: #AE1010;
    font-size: 1.4em;
    font-weight: 700;
}

.tokuten__subttl p span.red {
    margin-left: 8px;
}

.tokuten__subttl p span.hin {
    font-size: 0.8em;
}

.tokuten__con {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 40px auto 6em auto;
    max-width: 1100px;
}

.tokuten__item {
    width: 45%;
    margin: 0 12px;
    padding: 1em;
    background: #FFF6F6;
    border: 1px solid #AE1010;
}

@media screen and (max-width: 1024px) {
    .tokuten__item {
        width: 100%;
        max-width: 540px;
    }
}

.tokuten__item--online {
    background: #FFF9E6;
    border: 1px solid #BE922C;
}

@media screen and (max-width: 1024px) {
    .tokuten__item--online {
        margin-top: 16px;
    }
}

.tokuten__kigen {
    background: #AE1010;
    text-align: center;
    padding: 4px 0;
}

.tokuten__kigen--online {
    background: #BE922C;
}

.tokuten__kigen p {
    color: #fff;
    font-size: 1.4em;
}

.tokuten__kigen--tuujo {
    margin-bottom: 20px;
}

.tokuten__kigen--tuujo p {
    font-size: 1.4em;
}

@media screen and (max-width: 767px) {
    .tokuten__kigen--tuujo p {
        font-size: 1.15em;
    }
}

.tokuten__txt {
    margin: 16px 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .tokuten__txt {
        margin-bottom: 12px;
    }
}

.tokuten__txt p {
    font-size: 1.2em;
}

.tokuten__point {
    display: flex;
    justify-content: center;
    align-items: end;
}

@media screen and (max-width: 767px) {
    .tokuten__point--tuujo {
        align-items: center;
    }
}

.tokuten__point-about {
    margin-right: 12px;
}

.tokuten__point-about p {
    background: #AE1010;
    padding: 4px;
    color: #fff;
    font-size: 1.2em;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .tokuten__point-about p {
        font-size: 1em;
    }
}

.tokuten__point-about p.tuujo {
    background: none;
    color: #020202;
}

.tokuten__point-about--online p {
    background: #BE922C;
}

.tokuten__point-about--tuujo p {
    font-size: 1em;
}

@media screen and (max-width: 767px) {
    .tokuten__point-about--tuujo p {
        text-align: center;
        font-size: 0.8em;
    }
}

.tokuten__point-bai p {
    color: #AE1010;
    font-size: 5em;
    font-weight: 700;
    line-height: 0.8;
}

@media screen and (max-width: 767px) {
    .tokuten__point-bai p {
        font-size: 4.5em;
    }
}

.tokuten__point-bai p span {
    font-size: 0.5em;
    font-weight: 500;
}

.tokuten__point-bai--online p {
    color: #BE922C;
}

.tokuten__point-bai--tuujo p {
    font-size: 4.5em;
}

.point-bk-center {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #020202;
}

.otoku-souki {
    text-align: center;
    font-size: 1.4em;
    font-weight: bold;
    color: #2E2E2E;
    position: relative;
    max-width: 580px;
    margin: 0 auto;
    margin-top: 1em;
    letter-spacing: 0.1em;
}

.otoku-souki:before {
    position: absolute;
    left: 103px;
    top: 18px;
    content: "";
    width: 3px;
    height: 66%;
    background: #C60079;
    border-radius: 3px;
    transform: rotate(-25deg);
}

.otoku-souki:after {
    position: absolute;
    content: "";
    right: 103px;
    top: 18px;
    width: 3px;
    height: 66%;
    background: #C60079;
    border-radius: 3px;
    transform: rotate(25deg);
}

@media screen and (max-width: 767px) {
    .otoku-souki:before {
        left: 48px;
    }
    .otoku-souki:after {
        right: 48px;
    }
    .point-bk-center {
        font-size: 1.1em;
        margin-bottom: 5px;
    }
}

.otoku-souki-big {
    font-size: 1.6em;
    color: #C60079;
}

.otoku-souki-red {
    color: #C60079;
}

@media screen and (max-width: 767px) {
    .tokuten__point-bai--tuujo p {
        font-size: 3em;
    }
}

.tokuten__notice {
    margin-top: 20px;
    text-align: center;
}

.tokuten__notice p {
    font-size: 0.9em;
}

.tokuten__btn {
    width: 50%;
    max-width: 380px;
    margin: 0 auto;
    margin-top: 24px;
    text-align: center;
    background: #C60079;
    border-radius: 40px;
}

@media screen and (max-width: 767px) {
    .tokuten__btn {
        width: 95%;
        max-width: 350px;
    }
}

.tokuten__btn a {
    position: relative;
    display: block;
    color: #fff;
    padding: 12px 8px 16px;
    font-size: 1.1em;
}

.tokuten__btn a::after {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) no-repeat;
    background-position: center;
    width: 10px;
    height: 20px;
    right: 5%;
    bottom: 32%;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .tokuten__btn a::after {
        right: 4%;
    }
}

.tokuten__btn a:hover::after {
    right: 3%;
}


/* -------------------------------------
        メイン
------------------------------------- */

.con--tuujo {
    background: url(../img/bg.png) repeat;
    padding-bottom: 180px;
}

.kumo {
    background: url("../img/kumo-bk.png") repeat-y;
    padding-bottom: 120px;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .kumo {
        background-image: none;
        padding-bottom: 30px;
    }
    .con--tuujo {
        padding-bottom: 150px;
    }
}

.con--tuujo .item::after {
    background: url(../img/item-bg-gold.png) no-repeat;
    background-size: contain;
    background-position: top left;
}

#honkata-area .con--tuujo .item__img::after {
    background: url(../img/honkata/item-bg-bule.png) no-repeat;
    background-size: contain;
    background-position: top left;
}

.con__ttl {
    position: relative;
    width: 95%;
    margin: 0 auto;
    max-width: 1100px;
    padding-top: 120px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .con__ttl {
        padding-top: 80px;
    }
}

.con__ttl::before {
    content: "";
    position: absolute;
    width: 112px;
    height: 44px;
    background: url(../img/con-ttl-dec.png) no-repeat;
    background-size: contain;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 80px;
}

@media screen and (max-width: 767px) {
    .con__ttl::before {
        top: 50px;
    }
}

.con__ttl::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #11275E;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 14%;
    z-index: 0;
}

.con__ttl p {
    position: relative;
    display: inline-block;
    padding: 0 1em;
    background: url(../img/bg.png) no-repeat;
    font-size: 1.6em;
    letter-spacing: 0.2em;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .con__ttl p {
        font-size: 1.4em;
        padding: 0 0.5em;
    }
}

.con__ttl--souki p {
    color: #11275E;
}

.con__ttl--tuujo::after {
    background: #BE922C;
}

.con__ttl--tuujo p {
    background: #fff;
    color: #BE922C;
    letter-spacing: 0.1em;
}

.con__ttl--tuujo p::before {
    background: url(../img/con-ttl-dec2.png) no-repeat;
    background-size: contain;
    background-position: center;
    top: -150%;
}

@media screen and (max-width: 767px) {
    .con__ttl--tuujo p::before {
        top: -180%;
    }
}

.con__subttl {
    margin-top: 20px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .con__subttl {
        width: 70%;
        margin: 0 auto;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .con__subttl--tuujo {
        width: 90%;
        max-width: 400px;
    }
}

.con__subttl2 {
    text-align: center;
    width: 95%;
    max-width: 500px;
    margin: 0 auto;
}

.souki-gentei-title {
    text-align: center;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 4em;
}

@media screen and (max-width: 767px) {
    .souki-gentei-title {
        width: 70%;
    }
}

.osusume-shina {
    text-align: center;
    width: 85%;
    max-width: 500px;
    margin: 0 auto;
    margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
    .osusume-shina {
        width: 75%;
    }
}

.con--unker {
    padding-top: 40px;
    width: 95%;
    margin: 0 auto;
    max-width: 640px;
}

.con--unker ul {
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .con--unker ul {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.con--unker ul li a {
    position: relative;
    display: block;
    background: #fff;
    color: #AE1010;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 1px solid #AE1010;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    font-size: 1.05em;
    text-align: center;
    transition: all 0.3s;
}

@media screen and (max-width: 767px) {
    .con--unker ul li a {
        width: 110px;
        height: 110px;
        margin: 4px;
        padding-top: 4px;
    }
}

.con--unker ul li a::before {
    content: "";
    position: absolute;
    width: 32px;
    height: 20px;
    background: url(../img/kouki/unker_red.png) no-repeat;
    background-size: contain;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 5px;
    transition: all 0.3s;
}

.con--unker ul li a:hover {
    opacity: 0.8;
}

.con--unker ul li a:hover::before {
    bottom: 0px;
}

.con__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
    max-width: 1100px;
    margin-top: 60px;
    background: #fff;
    padding: 20px 2em;
}

@media screen and (max-width: 767px) {
    .con__list {
        padding: 20px 0;
        margin-top: 40px;
    }
}

.con__notice {
    position: relative;
    width: 95%;
    max-width: 1100px;
    margin: 80px auto;
}

.con__notice p {
    font-size: 0.9em;
}

.con__notice-main {
    text-align: center;
    margin-bottom: 5em;
}

.con__notice-main p {
    display: inline;
    background: linear-gradient(transparent 70%, #F8DB1B 70%);
    font-size: 1.1em;
    line-height: 1.8;
}

.con__catalogarea {
    width: 100%;
    background: #FAFAFA;
}

.con__catalog {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: 0 auto;
    max-width: 1100px;
    padding: 40px 0 3em;
}

@media screen and (max-width: 767px) {
    .con__catalog {
        display: block;
    }
}

.con__catalog p {
    text-align: center;
}

.con__catalog__catalogarea {
    width: 95%;
    margin: 120px auto 40px;
    max-width: 1100px;
}

.con__catalog-txtarea {
    width: 40%;
    background: #FFEFF9;
    border-radius: 24px;
    padding: 2em 35px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .con__catalog-txtarea {
        width: 100%;
        border-radius: 0;
    }
}

.con__catalog-txt p {
    color: #C60079;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 2px;
}

.con__catalog-sub p {
    position: relative;
    display: inline-block;
    font-size: 1.1em;
    letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
    .con__catalog-sub p {
        letter-spacing: 0;
    }
}

.con__catalog-sub p::before,
.con__catalog-sub p::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 80%;
    background: #C60079;
    bottom: 0;
}

.con__catalog-sub p::before {
    left: -5%;
    transform: rotate(-30deg);
}

.con__catalog-sub p::after {
    right: -5%;
    transform: rotate(30deg);
}

.con__catalog-sub p span {
    color: #C60079;
    font-weight: 700;
}

.con__catalog-sub p span.hin {
    font-size: 1em;
}

.con__catalog-btn {
    margin-top: 16px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .con__catalog-btn {
        margin-top: 12px;
    }
}

.con__catalog-btn a {
    position: relative;
    display: inline-block;
    padding: 0.5em 2em;
    background: #C60079;
    border-radius: 40px;
    color: #fff;
    transform: all 0.3s;
}

.con__catalog-btn a::after {
    content: "";
    position: absolute;
    background: url(../img/arrow.svg) no-repeat;
    background-position: center;
    width: 10px;
    height: 20px;
    right: 5%;
    bottom: 24%;
    transition: all 0.3s;
}

@media screen and (max-width: 1369px) {
    .con__catalog-btn a::after {
        bottom: 34%;
    }
}

@media screen and (max-width: 767px) {
    .con__catalog-btn a::after {
        right: 3%;
        width: 8px;
        height: 24px;
        bottom: 21%;
    }
}

.con__catalog-btn a:hover {
    box-shadow: none;
}

.con__catalog-btn a:hover::after {
    right: 3%;
}

.con__catalog-btn--tuujo a {
    display: inline-block;
    padding: 0.5em 3em;
}

.con__catalog-img {
    max-width: 300px;
    margin-left: 40px;
}

@media screen and (max-width: 767px) {
    .con__catalog-img {
        width: 80%;
        margin: 20px auto;
    }
    .con__catalog-btn--tuujo a {
        padding: 0.8em 24px;
        font-size: 14px;
    }
}

.con__catalog-img a {
    display: block;
    box-shadow: 0px 0px 10px rgba(122, 122, 122, 0.35);
    transform: all 0.3s;
}

.con__catalog-img a:hover {
    box-shadow: none;
}

.item {
    position: relative;
    width: 46%;
    margin: 50px auto;
    max-width: 440px;
}

@media screen and (max-width: 767px) {
    .item {
        width: 95%;
        margin: 60px auto;
    }
}

.item--w100 {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: none;
    margin-top: 120px;
}

@media screen and (max-width: 767px) {
    .item--w100 {
        width: 95%;
        margin: 0 auto;
        margin-top: 80px;
        display: block;
        padding-bottom: 40px;
        max-width: 480px;
    }
}

.item--w100 .item__img {
    width: 45%;
}

@media screen and (max-width: 767px) {
    .item--w100 .item__img {
        width: 100%;
    }
}

.item--w100 .item__txt {
    width: 55%;
}

@media screen and (max-width: 767px) {
    .item--w100 .item__txt {
        width: 100%;
        margin-top: 8px;
    }
}


/*.item__img {
  position: relative;
  text-align: center;
  z-index: 1;
}
.item__img::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: url(../img/item-bg-gold.png) no-repeat;
  background-size: contain;
  background-position: top left;
  left: 0;
  top: 0;
  z-index: -1;
}
.item__img img {
  width: 80%;
  text-align: center;
}*/

.item__img {
    max-width: 500px;
    margin: 0 auto;
    width: 80%;
}

.item__txt {
    width: 85%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .item__img {
        position: relative;
        text-align: center;
        z-index: 1;
    }
    .item::after {
        content: "";
        position: absolute;
        width: 95%;
        height: 20%;
        background: url(../img/item-bg-gold.png) no-repeat;
        background-size: contain;
        background-position: top left;
        left: 0;
    }
    .item__img img {
        width: 90%;
        text-align: center;
    }
}

.item__limited {
    position: absolute;
    display: inline-block;
    left: 0;
    top: 0;
    border-radius: 4px;
    background: #AE1010;
    padding: 4px 8px;
    z-index: 1;
}

.item__limited--beer {
    top: -40px;
}

.item__limited p {
    color: #fff;
    font-weight: 500;
}

.item__ttl {
    margin-bottom: 25px;
}

.item__ttl p {
    font-size: 1.3em;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .item__ttl p {
        font-size: 1.1em;
    }
}

.item__product {
    margin-bottom: 8px;
}

.item__product p {
    font-size: 0.9em;
}

.item__price {
    border-top: 1px solid #AE1010;
    padding-top: 8px;
    margin-top: 12px;
    text-align: right;
}

.item__price p {
    font-size: 1.5em;
    font-weight: 550;
}

@media screen and (max-width: 767px) {
    .item__price p {
        font-size: 1.35em;
    }
}

.item__price p span.t-small {
    font-size: 0.7em;
}

.item__price p span.t-red {
    margin-right: 12px;
    color: #CB0000;
}

.item__price-waribiki {
    text-align: left;
}

@media screen and (max-width: 767px) {
    .item__price-waribiki {
        margin-bottom: 4px;
    }
}

.item__price-waribiki p {
    font-size: 0.9em;
}

.item__notice {
    margin-top: 8px;
}

.item__notice p {
    font-size: 0.9em;
}

.item__kigen {
    display: flex;
    margin-top: 24px;
    justify-content: flex-end;
}

.item__kigen p {
    padding: 4px 0px;
    border: solid 1px #E0E0E0;
}

@media screen and (max-width: 767px) {
    .item__kigen p {
        font-size: 0.9em;
    }
}

.item__kigen p:nth-child(2) {
    margin-left: 12px;
}

@media screen and (max-width: 767px) {
    .item__kigen p:nth-child(2) {
        margin-left: 4px;
    }
}

.item__kigen p span {
    /*margin-right: 4px;*/
    padding: 4px 8px;
    background: #E0E0E0;
}

.item__btn {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .item__btn {
        justify-content: space-between;
    }
}

.item__btnitem {
    width: 44%;
    margin: 0 7px;
    margin-top: 24px;
    text-align: center;
}

@media screen and (max-width: 767px) {
    .item__btnitem {
        width: 48%;
        margin: 0;
        margin-top: 24px;
    }
}

.item__btnitem a {
    display: block;
    padding: 10px 5px;
    border-radius: 4px;
    border: 1px solid #CACACA;
    box-shadow: 2px 2px 1px rgba(122, 122, 122, 0.35);
    color: #020202;
    transform: all 0.3s;
    font-size: 0.9em;
}

@media screen and (max-width: 767px) {
    .item__btnitem a {
        padding: 0.5em;
        font-size: 0.9em;
    }
}

.item__btnitem a:hover {
    box-shadow: none;
}

.item__btnitem--online a {
    background: #AE1010;
    color: #fff;
}

.item__iconarea {
    margin-top: 16px;
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 767px) {
    .item__iconarea {
        margin-top: 12px;
    }
    .item__icon p {
        font-size: 0.8em;
    }
}

.item__icon {
    margin-left: 4px;
    border: 1px solid #4D4D4D;
    border-radius: 4px;
    padding: 4px;
}

.item__icon p {
    font-size: 0.9em;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
}

.item__icon--red {
    border: 1px solid #AE1010;
}

.item__icon--red p {
    color: #AE1010;
}

.item__icon--blue {
    border: 1px solid #044289;
}

.item__icon--blue p {
    color: #044289;
}

.item__icon--skyblue {
    border: 1px solid #11BAE2;
}

.item__icon--skyblue p {
    color: #11BAE2;
}

.item__icon--gry {
    background-color: #4D4D4D;
    border: 1px solid #4D4D4D;
}

.item__icon--gry p {
    color: #fff;
}

.set-bk--red {
    position: absolute;
    top: -2%;
    background-color: #AE1010;
    border-radius: 5px;
    padding: 3px 5px;
    z-index: 10;
}

.set-bk--red p {
    font-size: 0.9em;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #fff;
}

@media screen and (max-width: 767px) {
    .set-bk--red {
        margin-bottom: 2.5em;
    }
    .item__icon p {
        font-size: 0.8em;
    }
}

.set-txt-big {
    font-size: 1.4em;
}

.item__icon--gray {
    background: #131313;
    border: 1px solid #131313;
}

.item__icon--gray p {
    color: #fff;
}

.artist {
    display: flex;
    align-items: center;
    background: #603F0D;
    padding: 1em 2em;
}

@media screen and (max-width: 767px) {
    .artist {
        display: block;
        padding: 1em 0.5em;
        width: 100%;
    }
}

.artist p {
    color: #fff;
    line-height: 1.6;
}

.artist__txt {
    width: 64%;
    margin-right: 40px;
}

@media screen and (max-width: 767px) {
    .artist__txt {
        width: 100%;
    }
}

.artist__name {
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid #fff;
}

.artist__img {
    width: 30%;
}

@media screen and (max-width: 767px) {
    .artist__img {
        width: 80%;
        margin: 0 auto;
        max-width: 400px;
        margin-top: 12px;
    }
}

.white-bk {
    background-color: #fff;
    max-width: 1100px;
    margin: 0 auto;
    width: 95%;
}


/*超お買い得*/

#otoku {
    margin-top: -8em;
}

.otoku-pink {
    background: linear-gradient(45deg, rgba(242, 88, 93, 1) 50%, rgba(246, 130, 119, 1) 50%);
    padding-top: 10em;
    padding-bottom: 13em;
}

.otoku__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
    max-width: 1100px;
    background: #fff;
    padding: 20px 2em;
}

@media screen and (max-width: 767px) {
    .otoku__list {
        padding: 20px 0;
    }
    .otoku-pink {
        padding-bottom: 10em;
    }
}

.orenge-bk {
    background-color: #F6AB01;
    margin-bottom: 0;
    font-weight: bold;
}

.orenge-bk .kigen__main-day p {
    font-size: 1.8em;
}

.orenge-bk .kigen__main-day p span {
    font-size: 0.8em;
}

.otoku-title {
    max-width: 800px;
    margin: 0 auto;
    width: 80%;
    margin-top: -5em;
}

.otoku-title img {
    margin-top: -6em;
}

@media screen and (max-width: 767px) {
    .otoku-title {
        width: 100%;
    }
    .otoku-title img {
        margin-top: -3em;
    }
}

#otoku .white-bk {
    border-radius: 20px;
}

.orenge-txt {
    background: #fff;
    padding: 4px 8px;
}

.orenge-txt p {
    font-size: 1.1em;
    color: #F6AB01;
    line-height: 2em;
}

@media screen and (max-width: 767px) {
    .orenge-txt p {
        font-size: 0.9em;
    }
}


/*お得フォント指定*/

#otoku {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
}

.otoku-pink .otoku--item__img::after {
    background: url(../img/check-bk.png) no-repeat;
    background-size: contain;
    background-position: top left;
}

.item--w100 .otoku--item__img {
    width: 45%;
}

@media screen and (max-width: 767px) {
    .item--w100 .otoku--item__img {
        width: 100%;
    }
}

.otoku--item__img {
    position: relative;
    text-align: center;
    z-index: 1;
}

.otoku--item__img::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    background: url("../img/check-bk.png") no-repeat;
    background-size: contain;
    background-position: top left;
    left: 0;
    top: 0;
    z-index: -1;
}

.otoku--item__img img {
    width: 90%;
    text-align: center;
}

.btn--pink a {
    background-color: #F68277;
    color: #fff;
}

.catalog-big {
    color: #AE1010;
    font-size: 1.6em;
}

.catalog-red {
    font-size: 0.8em;
}

@media screen and (max-width: 767px) {
    #otoku .kigen__main {
        justify-content: center;
    }
    .orenge-txt--padding {
        padding-left: 44px;
        padding-right: 44px;
    }
}

@media screen and (max-width: 767px) {
    .orenge-bk .kigen__main-day p {
        font-size: 1.4em;
    }
}

.day-gry {
    max-width: 150px;
    width: 100%;
    margin: 0 0 0 auto;
    margin-top: 5px;
}

.point5bai {
    max-width: 300px;
    width: 80%;
    margin: 0 0 0 auto;
    margin-top: 5px;
}

.half-circle {
    max-width: 100%;
    vertical-align: bottom;
    line-height: 1.0em;
    margin-bottom: -0.8px;
    text-align: center;
}

#otoku .item__price p {
    font-size: 1.8em;
}

#otoku .t-red {
    font-size: 1em;
}

#otoku .item__price-waribiki p {
    font-size: 0.9em;
}

@media screen and (max-width: 767px) {
    #otoku .item__price p {
        font-size: 1.46em;
    }
    #otoku .t-red {
        font-size: 1em;
        margin-right: 10px;
    }
    #otoku .item__price-waribiki p {
        font-size: 0.9em;
    }
}


/*本カタ分*/

.honkata-gold {
    max-width: 83px;
    margin: 0 auto;
    width: 100%;
    margin-top: 3em;
}

.honkata-title {
    max-width: 430px;
    margin: 0 auto;
    width: 100%;
}

.tokuten-small-txt {
    font-size: 0.8em;
}

.youmeca-notice {
    background: 0;
    color: #000;
    text-align: center;
}

.kumo2 {
    background: url("../img/honkata/kumo-bk2.png") repeat-y;
    padding-bottom: 120px;
    background-size: contain;
}

@media screen and (max-width: 767px) {
    .kumo2 {
        background-image: none;
    }
}

#honkata-area .con--tuujo {
    padding-top: 5em;
}

#honkata-area .con__list {
    margin-top: 0;
}

.honkata-gold-title {
    max-width: 666px;
    margin: 0 auto;
    width: 100%;
    padding-top: 2em;
    padding-left: 10px;
    padding-right: 10px;
}

.point-yellow {
    background-color: #FFE433;
    border-radius: 5px;
    padding: 5px;
    display: inline-block;
    margin-bottom: 1em;
    position: relative;
    z-index: 10;
}

.point-yellow p {
    font-size: 1.1em;
    color: #AE1010;
    font-weight: bold;
    font-family: "Noto Sans JP", sans-serif;
}


/*アニメーション*/

.anime-l {
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateX(-40px);
}

.anime-b {
    opacity: 0;
    visibility: hidden;
    transition: 1s;
    transform: translateY(40px);
}

.anime-o {
    opacity: 0;
    visibility: hidden;
    transition: 2.5s;
}

.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}


/*footer*/

.sale__shoplist-btn {
    background-color: #F5F5F5;
    padding: 80px 0 50px;
}

.wrap {
    margin: 0 20px;
    position: relative;
    z-index: 2;
}

.sale__shoplist-btn h2 {
    text-align: center;
}

.sale__shoplist-btn .list {
    display: none;
}

.sale__shoplist-cont h2 {
    background-color: #D3D3D3;
    height: 70px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #fff;
}

.sale__shoplist-cont .area__parent {
    display: none;
}

.sale__shoplist-cont h3 {
    background-color: #EBEBEB;
    height: 70px;
    padding-left: 30px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #fff;
}

.area__detail {
    display: none;
}

.area__detail>div {
    padding: 30px;
    border-bottom: 1px solid #D3D3D3;
}

.area__detail>div .ttl {
    font-size: 15px;
    margin-bottom: 16px;
}

.area__detail>div ul {
    display: flex;
}

.area__detail>div ul a {
    color: #2E3192;
    font-size: 14px;
}

.area__detail>div ul li:last-child {
    margin-left: 30px;
}

.addr {
    display: none;
}

.sale__shoplist-cont h2::before {
    content: "";
    width: 1px;
    height: 16px;
    background-color: #333;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 28px;
    margin: auto;
    transition: 0.3s;
}

.sale__shoplist-cont h2::after {
    content: "";
    width: 16px;
    height: 1px;
    background-color: #333;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: 0.3s;
}

.area__detail>div ul a::after {
    content: "";
    display: inline-block;
    background: url(../img/link_arrow_blue.svg) no-repeat 50% 50%/contain;
    width: 8px;
    height: 10px;
    margin-left: 10px;
    transition: 0.3s;
}

.sale__shoplist-btn h2 {
    font-weight: bold;
    font-size: 1.3em;
}

@media screen and (min-width: 1024px) {
    .area__detail {
        display: block !important;
    }
    .sale__shoplist-cont h3 {
        pointer-events: none;
    }
    .sale__shoplist-btn {
        padding: 80px 0;
        margin-bottom: 80px;
    }
    .sale__shoplist-btn .wrap {
        display: flex;
        align-items: center;
    }
    .sale__shoplist-btn h2 {
        text-align: center;
        margin-right: 194px;
        flex: none;
    }
    .sale__shoplist-btn .list {
        display: block;
        flex: none;
    }
    .sale__shoplist-btn .list dl {
        display: flex;
        margin-bottom: 20px;
    }
    .sale__shoplist-btn .list dt {
        margin-right: 50px;
        font-weight: 500;
    }
    .sale__shoplist-btn .list dd {
        margin-right: 40px;
        font-weight: 400;
    }
    .sale__shoplist-btn .list dl a {
        color: #333;
        text-decoration: underline;
    }
    .sale__bd {
        border-bottom: 1px solid #D3D3D3;
        padding-bottom: 80px;
    }
    .sale__shoplist-cont {
        width: 95%;
        max-width: 1000px;
        margin: 0 auto;
    }
    .sale__shoplist-cont h2 {
        display: none;
    }
    .sale__shoplist-cont .area__parent {
        display: block;
    }
    .sale__shoplist-cont h3 {
        background-color: #fff;
        height: auto;
        padding-left: 0px;
        display: block;
        font-size: 24px;
        font-weight: 500;
        margin-bottom: 30px;
    }
    .sale__shoplist-cont h3::before {
        content: "";
        width: 61px;
        height: 3px;
        background-color: #B40067;
        display: block;
        margin-bottom: 20px;
    }
    .area__detail {
        display: block;
        margin-bottom: 80px;
    }
    .area__detail>div:first-child {
        border-top: 1px solid #D3D3D3;
    }
    .area__detail>div {
        border-bottom: 1px solid #D3D3D3;
        padding: 40px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .area__detail>div .ttl {
        font-size: 16px;
        margin-bottom: 0px;
        font-weight: 500;
        width: 173px;
    }
    .area__detail>div ul {
        display: flex;
        width: 330px;
    }
    .area__detail>div ul a {
        color: #2E3192;
        font-size: 14px;
    }
    .area__detail>div ul li:last-child {
        margin-left: 40px;
    }
}

@media screen and (min-width: 768px) {
    .wrap {
        width: 90%;
        margin: 0 auto;
        max-width: 1000px;
    }
}

@media screen and (max-width: 1023px) {
    .sale__shoplist-cont h3::after {
        content: "";
        background: url(https://www.izumi.jp/themes/custom/izumi/img/icon/arrow_black.svg) no-repeat 50% 50%/contain;
        width: 8px;
        height: 10px;
        display: block;
        position: absolute;
        right: 23px;
        top: 0;
        bottom: 0;
        margin: auto;
        transition: 0.3s;
    }
    .sale__shoplist-cont h3.act::after {
        transform: rotate(90deg);
    }
}


/*footer*/

#s_footer .s_coNav li a,
#s_header .s_subNav a {
    transition: color 0.5s ease-out;
}

#s_footer a {
    color: #222;
}

#s_footer .s_coNav {
    padding: 0 39px;
    font-size: 0;
}

#s_footer .s_coNav li {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 2;
    white-space: nowrap;
}

#s_footer .s_coNav li a {
    padding-right: 14px;
    background: url("../img/arrow_pink.svg") no-repeat 100% 50%/6.828px auto;
}

@media (min-width: 768px) {
    #s_footer .s_coNav {
        padding-top: 65px;
        margin-bottom: 24px;
        text-align: center;
    }
    #s_footer .s_coNav li {
        display: inline-block;
        padding: 0 1em;
    }
}

@media (max-width: 767px) {
    #s_footer .s_coNav {
        padding: 50px 39px 21px;
    }
    #s_footer .s_coNav li {
        margin-bottom: 10px;
    }
}

#s_footer .s_coSubNav {
    padding: 0 39px;
    font-size: 0;
}

#s_footer .s_coSubNav li {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1em;
}

@media (max-width: 767px) {
    #s_footer .s_coSubNav li {
        font-size: 0.9rem;
    }
}

#s_footer .s_coSubNav li a:hover {
    opacity: 0.7;
}

@media (min-width: 768px) {
    #s_footer .s_coSubNav {
        text-align: center;
        color: #6f6f6f;
    }
    #s_footer .s_coSubNav li {
        display: inline-block;
        white-space: nowrap;
    }
    #s_footer .s_coSubNav li:not(:last-child):after {
        content: "|";
        display: inline-block;
        padding: 0 1.5em;
    }
    #s_footer .s_coSubNav li a {
        color: #6f6f6f;
    }
}

@media (max-width: 767px) {
    #s_footer .s_coSubNav {
        margin-bottom: 34px;
    }
    #s_footer .s_coSubNav li:last-child {
        margin-bottom: 0;
    }
}

#s_footer .s_copyright {
    padding: 89px 0 51px;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    color: #9d9d9d;
}

@media (max-width: 767px) {
    #s_footer .s_copyright {
        font-size: 0.8rem;
        padding: 19px 0 16px;
        background: #f5f5f5;
        color: #6f6f6f;
    }
}

#s_footer #s_toPageTop {
    padding: 50px;
    padding-top: 10px;
    padding-left: 10px;
    overflow: hidden;
    position: fixed;
    right: 180px;
    bottom: -26px;
    z-index: 50;
}

#s_footer #s_toPageTop button {
    width: 64px;
    height: 64px;
    overflow: hidden;
    position: relative;
    background: url("../img/pageTop.svg") no-repeat 50% 50%/64px 64px #fff;
    text-indent: -9999em;
    white-space: nowrap;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    border: none;
}

#s_footer #s_toPageTop button:after {
    content: "";
    display: block;
    width: 18px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -9px;
    transform: rotate(-90deg);
    background: url("../img/arrow_black.svg") no-repeat 50% 50%/17px auto;
}

@media (max-width: 1023px) {
    #s_footer #s_toPageTop {
        right: -40px;
        bottom: -22px;
    }
    #s_footer #s_toPageTop button {
        width: 50px;
        height: 50px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.16);
    }
    #s_footer #s_toPageTop button:after {
        width: 6px;
        height: 36px;
        margin-left: -3px;
        background-size: 5px auto;
    }
}

.one {
    margin-left: 0 !important;
}

#tenpo,
#s_footer {
    background: #fff;
}

#s_footer {
    font-family: "Noto Sans JP", sans-serif;
}

.area__detail>div ul {
    justify-content: flex-end;
}

.slick-dots li.slick-active button:before {
    color: #fff;
}

#movie {
    position: relative;
    z-index: 10;
}

.movie-youtube {
    text-align: center;
    position: relative;
    max-width: 980px;
    width: 95%;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .movie-youtube {
        text-align: center;
        width: 600px;
        margin: auto;
        padding: 2em 1em;
        border-radius: 10px;
        margin-top: -2em;
    }
}

@media screen and (max-width: 767px) {
    .movie-youtube {
        margin: 0;
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        overflow: hidden;
        box-sizing: border-box;
    }
}

@media screen and (max-width: 767px) {
    .movie-youtube iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
}

.sp_footer_menu {
    position: fixed;
    width: 100%;
    height: auto;
    bottom: 0;
    left: 0;
    background: rgba(116, 116, 116, 0.7);
    text-align: center;
    z-index: 999;
}

.sp_footer_menu li {
    position: relative;
    width: 85%;
    margin: 8px auto;
    border-radius: 5px;
    background: #fff;
}

.sp_footer_menu a {
    display: block;
    padding: 8px 0;
    line-height: 1.5;
    color: #c70079;
    font-weight: 700;
    font-size: 1.1em;
}

.asahi {
    max-width: 700px;
    width: 95%;
    margin: 3% auto;
    padding-bottom: 10%;
    text-align: center;
    font-family: "Noto Serif JP", serif;
}

.asahi_ttl {
    font-size: 1.2em;
    font-weight: 800;
    color: #ffffff;
    background-color: #2E3192;
    padding: 1%;
    max-width: 700px;
    width: 95%;
    margin: auto;
}

.asahi_txt {
    font-size: 1em;
    color: #CB0000;
    font-weight: 800;
    max-width: 700px;
    width: 95%;
    margin: 3% auto;
}

.asahi_info {
    font-size: 0.8em;
    color: #000;
    font-weight: 800;
    max-width: 700px;
    width: 95%;
    margin: 3% auto;
}