@charset "utf-8";

/* pink #ed8495
yellow #fcc531 */

body {
    font: .875rem /1.8 "游ゴシック", "游ゴシック体", "Yo Gothic", YoGothic, "游明朝", "YuMincho", sans-serif;
    background: #fff;
    color: #363636;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.df {
    display: flex;
}

.sb {
    justify-content: space-between;
}

.sa {
    justify-content: space-around;
}

.al_c {
    align-items: center;
}

.w_30 {
    width: 30%;
}

.w_45 {
    width: 45%;
}

.w_70 {
    width: 70%;
}

.z_50 {
    z-index: 50;
}

.mt_40 {
    margin-top: 40px;
}

.mt_50 {
    margin-top: 50px;
}

.mb_80 {
    margin-bottom: 80px;
}

.f_w {
    flex-wrap: wrap;
}

.fw_b {
    font-weight: bold;
}

.ta_c {
    text-align: center;
}

.lh_3 {
    line-height: 3;
}

.inner {
    width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.inner_small {
    width: 980px;
    margin-left: auto;
    margin-right: auto;
}

header .bg {
    position: relative;
    padding: 50px 0;
    margin-bottom: 65px;
    background: repeating-linear-gradient(to right, #ed8495, #ed8495 70px, #fcc531 70px, #fcc531 140px);
}

header .bg::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -35px;
    height: 35px;
    width: 100%;
    background: radial-gradient(circle at 75% top, #ed8495 0px, #ed8495 35px, rgba(255, 255, 255, 0) 35px, rgba(255, 255, 255, 0) 70px), radial-gradient(circle at 25% top, #fcc531 0px, #fcc531 35px, rgba(255, 255, 255, 0) 35px, rgba(255, 255, 255, 0) 70px);
    background-size: 140px;
}

/* pink #ed8495
yellow #fcc531 */
header .thumbnail img {
    display: inline-block;
    margin-left: 2.5em;
}

.search_container form {
    position: relative;
}

.search_container input[type="search"] {
    background: linear-gradient(to right, #fff, #fff 325px, #ed1350 55px, #ed1350 55px);
    border: none;
    width: 100%;
    height: 100%;
    padding-left: 1.5em;
}

.search_container input[type="search"]:focus {
    outline: 0;
}

.search_container form {
    border: 2px solid #ed1350;
    border-radius: 20px;
    height: 40px;
    width: 380px;
    overflow: hidden;
    margin-right: 10px;
}

.search_container input[type="submit"] {
    cursor: pointer;
    font-family: FontAwesome;
    border: none;
    background: #ed1350;
    color: #fff;
    position: absolute;
    width: 55px;
    height: 45px;
    right: 0px;
    top: -5px;
    outline: none;
}

.search_container ::-webkit-input-placeholder {
    color: #ed1350;
}

.guide {
    background: #ed1350;
    height: 60px;
    padding: 5px 0;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.guide .animation {
    animation: bg-slider 25s linear infinite;
    position: absolute;
    left: 100vw;
}


.guide .animation:nth-of-type(2) {
    animation-delay: 12.5s;
}

.guide .animation:nth-of-type(3) {
    animation-delay: 0s;
}

.guide a {
    margin-left: 3em;
}

@keyframes bg-slider {
    from {
        left: 100%;
    }

    to {
        left: -100%;
    }
}

nav {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

nav ul {
    text-align: center;
}

nav li {
    width: calc(100% / 4);
    height: 50px;
    line-height: 50px;
    border-left: 1px solid #ccc;
    box-sizing: border-box;
    cursor: pointer;
}

nav li:hover {
    background: rgba(255, 123, 172, .3);
    transition: .5s;
}

nav li::before {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url(../images/icon2.png) no-repeat left center / contain;
    vertical-align: middle;
    margin-right: 1em;
}

nav li:nth-child(2):before {
    background-image: url(../images/icon3.png);
}

nav li:nth-child(3):before {
    background-image: url(../images/icon4.png);
}

nav li:last-child {
    border-right: 1px solid #ccc;
}

nav li:last-child:before {
    background-image: url(../images/icon1.png);
}

.mv {
    width: calc(100vw - 17px);
    background: #fff;
    margin: 0 auto 30px;
    overflow: visible;
}

.mv img {
    height: auto;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, .3));
    margin-left: 30px;
}

.thumb_mv {
    width: calc(100vw - 17px);
    margin: 0 auto 30px;
    margin-bottom: 80px;
}

.icon li {
    position: relative;
    width: calc(100% / 6 - 10px);
    height: 100px;
    text-align: center;
    margin-bottom: 10px;
    padding-top: 75px;
    box-sizing: border-box;
    cursor: pointer;
}

.icon li::before {
    position: absolute;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: url(../images/icon5.png) no-repeat top 10% center / 30%;
}

.icon li:nth-child(2):before {
    background: url(../images/icon9.png) no-repeat top 40% center / 30%;
}

.icon li:nth-child(3):before {
    background: url(../images/icon7.png) no-repeat top 32% center / 27%;
}

.icon li:nth-child(4):before {
    background: url(../images/icon13.png) no-repeat top 35% center / 50%;
}

.icon li:nth-child(5):before {
    background: url(../images/icon11.png) no-repeat top 5% center / 30%;
}

.icon li:nth-child(6):before {
    background: url(../images/icon6.png) no-repeat top 15% center / 30%;
}

.icon li:nth-child(7):before {
    background: url(../images/icon8.png) no-repeat top 15% center / 30%;
}

.icon li:nth-child(8):before {
    background: url(../images/icon10.png) no-repeat top 30% center / 50%;
}

.icon li:nth-child(9):before {
    background: url(../images/icon15.png) no-repeat top 35% center / 50%;
}

.icon li:nth-child(10):before {
    background: url(../images/icon16.png) no-repeat top 30% center / 30%
}

.icon li:nth-child(11):before {
    background: url(../images/icon14.png) no-repeat top 25% center / 50%;
}

.icon li:last-child::before {
    background: url(../images/icon12.png) no-repeat top 30% center / 50%;
}

.icon li:hover {
    background: rgba(255, 123, 172, .3);
    transition: .5s;
}

.main_content {
    padding: 100px 0;
}

.main_content h2 {
    font-size: 1.5rem;
    margin-bottom: 2%;
    font-weight: 500;
    padding-top: 50px;
    background: url(../images/icon_news.png) no-repeat right center / 150px;
    position: relative;
}

.main_content h2:after {
    content: "";
    position: absolute;
    top: 70px;
    right: 130px;
    width: 69%;
    border-bottom: 3px dashed #565656;
}

.main_content h2:nth-of-type(2) {
    background-image: url(../images/icon_special.png);
}

.main_content h2:nth-of-type(2)::after {
    width: 75%;
}

.item_content:first-of-type h2 {
    background-image: url(../images/icon_ranking.png);
}

.item_content:first-of-type h2::after {
    width: 49%;
}

.item_content:nth-of-type(2) h2 {
    background-image: url(../images/icon_new.png);
}

.item_content:nth-of-type(2) h2::after {
    width: 62%;
}

.item_content:nth-of-type(3) h2 {
    background-image: url(../images/icon_popular.png);
}

.item_content:nth-of-type(3) h2::after {
    width: 62%;
}

.main_content dl {
    box-shadow: 0px 0px 9px rgb(0 0 0 / 40%);
    padding: 20px 30px;
    margin-bottom: 50px;
    line-height: 3;
}

.main_content dt {
    float: left;
    clear: left;
    width: 20%;
}

.main_content dd {
    margin-left: 20%;
    width: 80%;
}

.main_content ul {
    margin-bottom: 50px;
}

.main_content ul li {
    width: 185px;
    height: 120px;
    box-shadow: 0px 0px 9px rgb(0 0 0 / 40%);
    text-align: center;
    background: #ccc;
    margin-bottom: 10px;
}

.main_content ul li a {
    display: block;
    width: 100%;
    height: 100%;
}

.main_content ul li img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.main_content .item_content ul li {
    width: calc(100% / 6 - 10px);
}

.main_content .item_content img {
    width: 100%;
}

.feature_item li {
    position: relative;
}
.feature_item div {
    position: absolute;
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(24, 15, 147, 0.7);
    top: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    box-sizing: border-box;
}
.feature_item p {
    position: relative;
    top: 10px;
}

.main_content_item {
    width: 80%;
}

.feature_item li:hover,
.main_content .item_content ul li:hover,
aside:hover {
    cursor: pointer;
}

aside {
    width: 20%;
    padding: 0 0 0 3%;
}

aside .sticky_container {
    position: sticky;
    top: 20px;
}

aside .cart_btn {
    position: relative;
    width: 150px;
    margin-left: auto;
    background: url(../images/icon1.png) #fde3ea no-repeat top 10px center / 65px;
    border: 2px solid #ef3167;
    border-radius: 5px;
    text-align: center;
    color: #ef3167;
    padding: 80px 10px 10px 10px;
}

aside .cart_btn::after {
    border-top: 1px dotted #ef3167;
    display: block;
    content: "";
    width: 80%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -70%);
}

aside .cart_btn span {
    display: inline-block;
    color: #fff;
    background: #ef3167;
    padding: 0 15px;
    margin-top: 20px;
    border-radius: 15px;
}

.footer_contain {
    background: #f5f2e6;
    padding: 30px 0;
}

.footer_contain h2 {
    font-size: 1.5rem;
    margin-bottom: 2%;
    font-weight: 500;
    position: relative;
}

.footer_contain h2:after {
    content: "";
    position: absolute;
    top: 20px;
    right: 4px;
    width: 78%;
    border-bottom: 3px dashed #565656;
}

.footer_contain ul {
    margin-bottom: 50px;
}

.footer_contain ul li {
    width: 240px;
    height: 80px;
}

.footer_contain ul li img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}


.footer_contain table {
    width: calc(100% / 2 - 20px);
    border-collapse: collapse;
}

.footer_contain caption {
    font-size: 1.25rem;
    text-align: left;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer_contain th,
.footer_contain td {
    border: 1px solid #d4d4d4;
    padding: 10px 15px;
    text-align: center;
}

.holiday {
    background: #ed1350;
    color: #fff;
}

.sunday {
    color: #ed1350;
}

.saturday {
    color: #3a8ec5;
}

#top {
    position: fixed;
    right: calc((100% - 1280px) / 2);
    bottom: 50px;
    width: 50px;
    height: 50px;
    z-index: 1000000;
    display: none;
}

#top a {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    color: transparent;
    border-radius: 50%;
    background-color: #ed1350;
}

#top a::before {
    font-size: 2rem;
    content: "^";
    color: #fff;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 6%);
    display: block;
}

.footer_links {
    flex-wrap: wrap;
    padding: 30px 30px 10px 30px;
    justify-content: center;
}

.footer_logo {
    width: 25%;
}

.footer_logo img {
    width: 100px;
}

.footer_links>ul {
    width: 75%;
}

.footer_links li {
    font-weight: bold;
    width: 30%;
}

.footer_links li ul {
    margin-top: .5em;
    margin-bottom: 60px;
    padding-top: 0.5em;
    border-top: 1px dashed #999;
}


.footer_links li ul li {
    font-weight: normal;
    font-size: 0.75rem;
    width: 100%;
}

.footer_links p small {
    font-size: 0.625rem;
}