body {
    /*font-family: 'Source Sans Pro', sans-serif;*/
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif　!important;
    width: 100%;
    min-width: 1200px;
}

@media (max-width: 767px) {
    body {
        width: 100%;
        min-width: initial;
    }
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    color: #000;
    outline: none;
}

@media (max-width: 767px) {
    p {
        font-size: 12px;
    }
}

/*PC・SP表示出し分け用クラス*/
@media (max-width: 767px) {
    .pc_only {
        display: none !important;
    }

    .sp_only {
        display: block !important;;
    }
}

@media (min-width: 768px) {
    .pc_only {
        display: block !important;
    }

    .sp_only {
        display: none !important;
    }
}






/*ヘッダー*/
.shipping-text {
    text-align: center;
    padding-top: 10px;
}

.shipping-text-sub {
    text-align: center;
    padding-top: 10px;
}

.header-top {
    border-bottom: 1px solid #a3a3a3;
    padding: 15px 0;
    padding-bottom: 2%;
}

.header-mim {
    width: 1180px;
    height: 50px;
    margin: 0 auto;
}

.r-logo {
    width: 265px;
    height: 50px;
    float: left;
}

.r-logo img {
    width: 50px;
    margin-top: 5px;
}

.devirock-logo {
    width: 650px;
    height: 50px;
    float: left;
}

.devirock-logo img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
/*    margin-top: 6px;*/
}

.devirock-logo a {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.header-button {
    width: 265px;
    height: 50px;
    float: left;
}

/*ヘッダー キーワードから探す*/
#header_form {
    width: 200px;
    background: #f5f5f3;
    border-radius: 150px;
    text-align: left;
    padding: 2px 0;
    margin-top: 10px;
    float: left;
}

#header_form form {
    position: relative;
}

#header_form input.header {
    background: none;
    border: none;
    outline: none;
    width: 200px;
    height: 36px;
    border-radius: 150px;
    color: #8c8c8c;
    font-size: 12px;
    line-height: 34px;
    padding-left: 20px
}

input::-webkit-calendar-picker-indicator {
    display: none;
}

#header_form button {
    border-style: none;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 10px;
    right: 14px;
}

.header-fa .far {
    font-size: 20px;
    margin-top: 20px;
    margin-left: 10px;
}

.header-fa .fas {
    font-size: 20px;
    margin-top: 20px;
    margin-left: 5px;
}

.r-logo-sp {
    display: none;
}

.r-logo-sp-sub {
    display: none;
}

.header-fa-sp {
    display: none;
}

/*ヘッダー"SP"*/
@media (max-width: 767px) {
    .shipping-text {
        display: none;
    }

    .header-top {
        padding: 0;
        border-bottom: none;
        padding: 2% 0 2% 0;
    }

    .header-mim {
        width: 100%;
        height: 70px;
    }

    #navsp {
        width: 100%;
        height: 53px;
        background-color: #fff;
    }

    .clone-navsp {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        transition: .3s;
        transform: translateY(-100%);
    }

    .is-showsp {
        transform: translateY(0);
    }

    .r-logo {
        display: none;
    }

    .r-logo-sp {
        display: block;
        width: 98%;
        height: 30px;
        margin: 0 auto;
    }

    .r-logo-sp img {
        width: 30px;
        height: auto;
    }

    .devirock-logo {
        width: 50%;
        height: 40px;
        padding-left: 15px;
    }

    .devirock-logo img {
        width: 140px;
        height: auto;
        margin: 0;
        margin-top: 3px;
        padding: 1%;
    }

    .header-button {
        width: 50%;
        height: 40px;
        padding-right: 15px;
        padding-top: 10px;
        text-align: right;
    }

    #header_form {
        display: none;
    }

    .header-fa {
        display: none;
    }

    .header-fa-sp {
        display: block;
    }

    .header-fa-sp a {
        margin-right: 8px;
    }

    .header-fa-sp .fas {
        font-size: 20px;
    }

    .header-fa-sp .far {
        font-size: 20px;
    }

    /*ハンバーガー・ドロワー*/
    #drawer-checkbox {
        display: none;
    }

    #drawer-icon {
        width: 20px;
        height: 21px;
        display: inline-block;
        position: relative;
    }

    #drawer-icon span {
        width: 96%;
        height: 16%;
        display: block;
        position: absolute;
        background: #333;
        top: 55%;
    }

    #drawer-icon span::before,
    #drawer-icon span::after {
        width: 100%;
        height: 100%;
        content: "";
        display: block;
        position: absolute;
        -webkit-transform: rotate(0);
        background: #333;
        top: 50%;
    }

    #drawer-icon span::before {
        margin-top: -50%;
    }

    #drawer-icon span::after {
        margin-top: 35%;
    }

    #drawer-content {
        width: 70%;
        height: 100%;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 40;
        background: #fff;
        border-left: 1px solid #d3d3d3;
        transition: all 0.3s ease-in-out 0s;
        transform: translateX(100%);
        text-align: left;
        padding-bottom: 30px;
    }

    #drawer-checkbox:checked~#drawer-content {
        transform: translateX(0);
    }

    .drawer-btn {
        width: 100%;
        height: 40px;
        background-color: #333;
        color: #fff;
        text-align: center;
        line-height: 40px;
    }

    .drawer-btn label {
        display: block;
        height: 100%;
        width: 100%;
    }

    .drawer-btn label .fas {
        font-size: 12px;
        margin-left: 5px;
    }

    /*枠外クリック*/
    #drawer-close {
      display: none;
      position: fixed;
      z-index: 39;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /*background: #000;*/
      opacity: 0;
      transition: all 0.3s ease-in-out 0s;
    }
    #drawer-checkbox:checked ~ #drawer-close {
      display: block;
      opacity: 0.3;
    }

}


/*iframeヘッダー用*/
@media (max-width: 767px) {
    #page_top_sp, {
        padding-top: 160px;
    }
}


/*ナビゲーション*/
/******************************/
.menu {
    position: relative;
    width: 1190px;/*210819*/
    height: 50px;
    margin: 0 auto;
    list-style: none;
    padding: 0 250px;
    *zoom: 1;
}

.menu:before,
.menu:after {
    content: " ";
    display: table;
}

.menu:after {
    clear: both;
}

.menu>li {
    float: left;
    height: 50px;
    margin-top: 15px;
}

.menu-title {
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin-right: 2em;
    margin-left: 2em;
}

.menu-title::after {
    position: absolute;
    bottom: 2px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #333;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.menu_mega:hover .menu-title::after {
    bottom: -4px;
    opacity: 1;
    visibility: visible;
}

.menu__second-level a {
    text-decoration: none;
}

.menu__second-level a:hover {
    text-decoration: underline;
}

.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
    list-style: none;
    position: absolute;
    top: 50px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 20px 2%;
    background-color: rgba(255, 255, 255, 0.95);
}

.menu_mega:hover ul.menu__second-level {
    top: 50px;
    visibility: visible;
    opacity: 1;
}

.menu_mega ul.menu__second-level>li {
    float: left;
    border: none;
}

.menu-item-center {
    width: 984px;
    margin: 0 auto;
}

.menu-gender-center {
    width: 960px;
    margin: 0 auto;
}

.menu-size-center {
    width: 984px;
    margin: 0 auto;
}

/*アイテム*/
#menu-item img {
    width: 150px;
    height: auto;
}

#menu-item li {
/*    width: 150px;*/
    width: 180px;/*1月27日 更新*/
    height: auto;
    float: left;
    margin: 5px 7px;
}

/*性別*/
#menu-gender img {
    width: 300px;
    height: auto;
    float: left;
    margin: 0 10px;
}

/*サイズ*/
#menu-size {
    line-height: 50px;
}

#menu-size a {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%
}

#menu-size ul {
    list-style: none;
}

#menu-size li {
    width: 150px;
    height: 50px;
    background: #fff;
    border: 1px solid #a3a3a3;
    text-align: center;
    border-radius: 150px;
    float: left;
    margin: 0 7px 15px 7px;
}

#menu-size li:hover {
    background-color: #000;
    border: 1px solid #000;
}

#menu-size a:hover {
    color: #fff;
}

.menu-title-sp {
    display: none;
}

.seartch-sptop {
    display: none;
}

.shipping-text-sp {
    display: none;
}

/*ナビゲーション"SP"*/
@media (max-width: 767px) {
    .menu {
        width: 100%;
        height: auto;
        padding: 0;
        border-bottom: 1px solid #333;
    }

    .menu li {
        width: 20%;
        height: auto;
        margin-top: 0;
    }

    .menu li+li {
        border-left: 1px solid #333;
    }

    .menu a {
        width: 100%;
        height: 100%;
    }

    .menu-title {
        display: none;
    }

    .menu-title-sp {
        display: block;
    }

    .menu-title-sp img {
        width: 100%;
        height: auto;
        vertical-align: bottom
    }

    .menu__second-level {
        display: none;
    }

    .seartch-sptop {
        display: block;
        width: 90%;
        margin: 0 auto;
    }

    .shipping-text-sp {
        display: block;
        text-align: center;
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .myModal {
        width: 85%;
        background: #f5f5f3;
        border-radius: 150px;
        text-align: left;
        padding: 2px 0;
        margin: 0 auto;
        margin-top: 20px;
    }

    .myModal-form {
        position: relative;
        height: 36px;
        padding: 2px 18px;
        font-size: 12px;
        line-height: 33px;
    }

    .myModal-form p {
        float: left;
        color: #8c8c8c;
    }

    .myModal-form :after {
        font-family: "Font Awesome 5 Free";
        content: '\f002';
        font-weight: 900;
        position: absolute;
        right: 20px;
        color: #000;
    }

    /*検索窓クリックでポップアップ表示*/
    .myModal #seartch_form {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .myModal_popUp {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100%;
        background: #fff;
        z-index: 50;
        transition: all .3s ease-in;
        visibility: hidden;
        opacity: 0;
        overflow-y: scroll;
    }

    .open-menu .myModal_popUp {
        visibility: visible;
        opacity: 1;
    }

    .myModal_popUp-content {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        overflow: auto;
    }

    .popUp-text a {
        text-decoration: none;
    }

    .popUp-text p {
        line-height: 50px;
        border-bottom: 1px solid #a3a3a3;
        padding-left: 20px;
    }

    .popUp-text span {
        color: #848484;
    }


}


/*固定ナビ*/
#nav {
    width: 100%;
    /*height: 60px;*/
    background-color: #fff;
}

.clone-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    transition: .3s;
    transform: translateY(-100%);
}

.is-show {
    transform: translateY(0);
}

#nav .menu {
    padding: 0 350px;
}

#nav li.menu_mega ul.menu__second-level {
    top: 60px;
}

.nav-min {
    width: 1180px;
    height: 60px;
    margin: 0 auto;
    padding: 1% 0;
}

.nav-logo {
    float: left;
    z-index: 100;
    position: relative;
}

.nav-logo img {
    height: 50px;
    width: auto;
/*    margin-top: 4px;*/
}

.nav-button {
    width: 265px;
    float: right;
    z-index: 100;
    position: relative;
}

#nav form {
    float: left;
}


#nav .menu-title {
    margin-top: 4px;
    margin-right: 1em;
    margin-left: 1em;
}

/*固定ナビ"SP削除"*/
@media (max-width: 767px) {
    #nav {
        display: none;
    }
}

/******************************/

/*お知らせ*/
.news{
    width: 100%;
    padding: 8px 0;
    background-color: #f5f5f3;
    text-align: left;
    margin-top: 30px;
}

.news-center{
    vertical-align: middle;
    /*width: 700px;*/
    width: 767px;
    margin: 0 auto;
}

.news-icon{
    width: 90px;
    height: 24px;
    line-height: 24px;
    border-radius: 150px;
    background-color: #668eb0;
    color: #fff;
    margin-right: 20px;
    display: inline-block;
    text-align: center;
}

/*.news-icon p:before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f071";
    margin-right: 5px;
}*/

.news-text{
    display: inline-block;
}

.news-text p:after{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    margin-left: 15px;
}

.news-text span{
    font-weight: bold;
}

@media (max-width: 767px) {
.news {
    margin-top: 0;
}

.news-center{
    width: 90%;
}

.news-icon {
    display: none;
}
}


/*看板*/
.main-img {
    width: 100%;
    height: auto;
    /* 石原編集値修正 */
    margin-bottom: 70px;
}
/* 石原追記 */
@media (max-width: 767px){
.main-img{
    margin-bottom: 50px;
}
}


.main-img li {
    list-style: none;
}

.slider {
    margin: 15px auto;
}

.slide-item {
    width: 100%;
    max-width: 980px;
}

.slide-item img {
    width: auto;
    height: 490px;

    /* 石原追記 */
    min-width: 980px;
}

/*看板"SP"*/
@media (max-width: 767px) {
    .slide-item {
        width: 100%;
        max-width: initial;
    }

    .slide-item img {
        width: 100%;
        height: auto;

        /* 石原追記 */
        min-width: 0;
    }
}

/*固定看板用CSS*/
#headerMainImages,
#headerMainImages_tmp{
    max-width: 980px;
    margin: 5px auto 0 auto;
}

#headerMainImages .flex-container,
#headerMainImages_tmp .flex-container,
#head_Main_Img01 .flex-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    width: 100%;
}

#headerMainImages .flex-item,
#headerMainImages_tmp .flex-item,
#head_Main_Img01 .flex-item {
    -webkit-flex: 0 1 49.5%;
    -ms-flex: 0 1 49.5%;
    flex: 0 1 49.5%;
}
#headerMainImages .flex-item:nth-child(1),
#headerMainImages_tmp .flex-item:nth-child(1),
#head_Main_Img01 .flex-item:nth-child(1) {
    -webkit-flex: 0 1 100%;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    margin: 0;
}
#headerMainImages .flex-item:nth-child(2),
#headerMainImages .flex-item:nth-child(4),
#headerMainImages_tmp .flex-item:nth-child(2),
#headerMainImages_tmp .flex-item:nth-child(4){
    margin: 0.5% 1% 0 0;
}
#headerMainImages .flex-item:nth-child(3),
#headerMainImages .flex-item:nth-child(5),
#headerMainImages_tmp .flex-item:nth-child(3),
#headerMainImages_tmp .flex-item:nth-child(5){
    margin: 0.5% 0 0 0;
}
#headerMainImages .flex-item img,
#headerMainImages_tmp .flex-item img,
#head_Main_Img01 .flex-item img{
    width: 100%;
    height: auto;
}

@media (max-width: 767px) {
    #headerMainImages .flex-item,
    #headerMainImages_tmp .flex-item,
    #head_Main_Img01 .flex-item {
        -webkit-flex: 0 1 49%;
        -ms-flex: 0 1 49%;
        flex: 0 1 49%;
    }#head_Main_Img01
    #headerMainImages .flex-item:nth-child(1),
    #headerMainImages_tmp .flex-item:nth-child(1),
    #head_Main_Img01 .flex-item:nth-child(1) {
        -webkit-flex: 0 1 100%;
        -ms-flex: 0 1 100%;
        flex: 0 1 100%;
        margin: 0;
    }
    #headerMainImages .flex-item:nth-child(2),
    #headerMainImages .flex-item:nth-child(4),
    #headerMainImages_tmp .flex-item:nth-child(2),
    #headerMainImages_tmp .flex-item:nth-child(4){
        margin: 1.5% 2% 0 0;
    }
    #headerMainImages .flex-item:nth-child(3),
    #headerMainImages .flex-item:nth-child(5),
    #headerMainImages_tmp .flex-item:nth-child(3),
    #headerMainImages_tmp .flex-item:nth-child(5){
        margin: 1.5% 0 0 0;
    }
}





/*共通CSS*/
.body-title1 {
    color: #221914;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}

.body-title2 {
    color: #221914;
    text-align: center;
}

.body-title2-2 {
    color: #221914;
    text-align: center;
    margin-top: 20px;
}

.body-title2-2  span{
    color: #CA2922;
}

.body-title3 {
    color: #221914;
    font-weight: bold;
    font-size: 30px;
    text-align: left;
    display: flex;
    align-items: center;
}

.body-title3:after {
    border-top: 1px solid;
    content: "";
    flex-grow: 1;
    margin-left: 1rem;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
}
.product {
    width: 306px;
    float: left;
    margin-right: 60px;
    margin-top: 40px;
    list-style-type: none;
}

.product:nth-of-type(3n) {
    margin-right: 0;
}

.product img {
    width: 306px;
    height: auto;
}

.pickup-icon{
    width: 47px;
    height: 17px;
    border: 1px solid #C84C4C;
    font-size: 10px;
    color: #C84C4C;
    text-align: center;
    float: left;
    margin-right: 10px;
    line-height: 16px;
    margin-bottom: 3px;
}

.sale-icon{
    width: 47px;
    height: 17px;
    background-color: #e60012;
    font-size: 10px;
    color: #fff;
    text-align: center;
    float: left;
    margin-right: 5px;
    line-height: 17px;
    margin-bottom: 3px;
}

.new-icon{
    width: 47px;
    height: 17px;
    border: 1px solid #e69800;
    font-size: 10px;
    color: #e69800;
    text-align: center;
    float: left;
    margin-right: 10px;
    line-height: 16px;
    margin-bottom: 3px;
}

.re-icon{
    width: 47px;
    height: 17px;
    border: 1px solid #55bba7;
    font-size: 10px;
    color: #55bba7;
    text-align: center;
    float: left;
    margin-right: 10px;
    line-height: 16px;
    margin-bottom: 3px;
}

.reserve-icon {
  width: 47px;
  height: 17px;
  border: 1px solid #7d7d7d;
  font-size: 10px;
  color: #7d7d7d;
  text-align: center;
  line-height: 16px;
  float: left;
  margin-right: 10px;
  margin-bottom: 3px;
}

.season-icon {
  width: 47px;
  height: 17px;
  border: 1px solid #e60012;
  font-size: 10px;
  color: #e60012;
  text-align: center;
  line-height: 16px;
  float: left;
  margin-right: 10px;
  margin-bottom: 3px;
}

.free-icon {
    width: 47px;
    height: 17px;
    background-color: #6fb0dd;
    font-size: 10px;
    color: #fff;
    text-align: center;
    float: left;
    margin-right: 10px;
    line-height: 17px;
    margin-bottom: 3px;
}


.day {
    float: left;
    font-size: 12px;
}

.text-button {
    width: 238px;
    height: 45px;
    border: 1px solid #000;
    background-color: #fff;
    text-align: center;
    line-height: 45px;
    margin: 0 auto;
    margin-top: 50px;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.text-button a {
    color: #000;
    text-decoration: none;
    transition: all .5s ease;
    z-index: 2;
    position: relative;

}

.eff {
    width: 238px;
    height: 45px;
    left: -238px;
    background: #000;
    position: absolute;
    transition: all .5s ease;
}

.text-button:hover .eff {
    left: 0;
}

.text-button:hover a {
    color: #fff;
}

.name {
    clear: both;
}

.price {
    font-size: 21px;
}

.price span {
    font-size: 10px;
    margin-left: 2px;
}

/*共通CSS"SP"*/
@media (max-width: 767px) {

    .body-title1 {
        font-size: 22px;
    }

    .body-title2-2 {
        margin-top: 15px;
    }

    .body-title3 {
        font-size: 22px;
        text-align: center;
        display: block;
        align-items: center;
    }

    .body-title3:after {
        border-top: none;
        content: "";
        flex-grow: 0;
    }

    .body-title3:after {
        margin-left: 0;
    }

    .product {
        width: 49%;
        margin-right: 2%;
        margin-top: 30px;
    }

    .product:nth-of-type(3n) {
        margin-right: 2%;
    }

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

    .product img {
        width: 100%;
        height: auto;
    }

    .pickup-icon {
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .pickup-icon p {
        font-size: 10px;
    }

    .sale-icon {
        margin-right: 5px;
        margin-bottom: 5px;
    }

    .sale-icon p {
        font-size: 10px;
    }

    .new-icon {
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .new-icon p {
        font-size: 10px;
    }

    .newcolor-icon {
        font-size: 10px;
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .newcolor-icon p {
        font-size: 10px;
    }

    .re-icon {
        font-size: 10px;
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .re-icon p {
        font-size: 10px;
    }

    .reserve-icon {
        font-size: 10px;
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .reserve-icon p {
        font-size: 10px;
    }
    .season-icon {
        font-size: 10px;
        margin-right: 8px;
        margin-bottom: 5px;
    }

    .season-icon p {
        font-size: 10px;
    }

    .free-icon{
    font-size: 10px;
    margin-right: 8px;
    margin-bottom: 5px;
    }

    .free-icon p{
        font-size: 10px;
    }

    .day {
        margin-top: 1px;
        font-size: 11px;
    }

    .text-button {
        width: 160px;
        margin-top: 25px;
    }

    .eff {
        width: 0;
        height: 0;
        left: 0;
        background: #fff;
    }

    .text-button:hover .eff {
        left: -0px;
    }

    .text-button:hover a {
        color: #000;
    }

    .name {
        font-size: 12px;
    }

    .price {
        font-size: 15px;
    }

    /*共通CSS"ハンバーガー"*/
    #drawer-content .body-title1 {
        font-size: 19px;
    }


}

/*メイン商品*/
.body-main {
    width: 1038px;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

.body-main a {
    text-decoration: none;
}

/*メイン商品"SP"*/
@media (max-width: 767px) {
    .body-main {
        width: 90%;
        padding-top: 50px;
    }

}

/*イベント時*/
.event {
    width: 100%;
    height: auto;
    background-color: #f5f5f3;
    /* 石原編集コメントアウト */
    /* margin-top: 70px; */
    padding-top: 30px;
    /*padding-bottom: 100px;*/
    padding-bottom: 50px;
}

/* 石原追記 */
.event .body-main{
    padding-top: 0;
}

.coupon {
    width: 830px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

.coupon .body-title2 {
    /*margin-bottom: 30px;*/
    margin-bottom: 10px;
}

.coupon-full {
    width: 100%;
    height: auto;
    margin-top: 10px;
}

.coupon-full img {
    max-width: 100%;
    height: auto;
}

.coupon-text {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}


.limited-text {
    font-size: 18px;
    line-height: 35px;
    display: inline-block;
}

.limited-text span {
    font-weight: bold;
    border: 1px solid #000;
    padding: 2px 4px;
    margin-right: 6px;
}

.coupon-line {
    width: 100%;
    height: auto;
    display: flex;
}

.coupon-line .coupon-two-block {
    width: 100%;
}

.coupon-line .coupon-two-block a {
    width: 50%;
}

.coupon-line img {
    width: 100%;
    max-width: 100%;
    height: auto;
    float: left;
}

.coupon-term {
    width: 100%;
    height: auto;
    text-align: center;
    /*margin-top: 10px;*/
}

.sale-price-b {
    font-size: 12px;
    text-decoration: line-through;
}

.sale-price-a {
    font-size: 21px;
    color: #CA2922;
}

.sale-price-a span {
    font-size: 10px;
    margin-left: 2px;
    color: #333;
}

.sale-price-off{
    color: #CA2922;

}
.sale-price-off span{
    font-size:12px;
}

/*イベント時"SP"*/
@media (max-width: 767px) {
    .event {
        /* 石原編集コメントアウト */
        /* margin-top: 50px; */
        padding-top: 20px;
        /*padding-bottom: 50px;*/
        padding-bottom: 30px;
    }

    .coupon {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }

    .coupon .body-title2 {
        /*margin-bottom: 30px;*/
        margin-bottom: 10px;
    }

    .coupon-text {
        margin: 10px auto;
    }

    .jagged {
        width: 40px;
        height: 40px;
        margin: 10px 15px 0 9px;
    }

    .jagged a,
    .jagged a:after,
    .jagged a:before,
    .jagged a span {
        width: 40px;
        height: 40px;
    }

    .jagged a span {
        font-size: 13px;
        line-height: 16px;
        padding-top: 5px;
    }

    .limited-text {
        line-height: 25px;
    }

    .sale-price-b {
        font-size: 9px;
    }

    .sale-price-a {
        font-size: 15px;
    }

}


/*新作・再入荷*/
.new-re-arrivals {
    width: 1038px;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

.new-re-arrivals a {
    text-decoration: none;
}

/*新作・再入荷"SP"*/
@media (max-width: 767px) {
    .new-re-arrivals {
        width: 90%;
        padding-top: 50px;
    }

}

/*特集*/
.feature {
    width: 1180px;
    margin: 0 10px;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

.feature a {
    text-decoration: none;
}

.article {
    width: 320px;
    float: left;
    margin-right: 110px;
    margin-top: 40px;
}

.article:nth-of-type(3n) {
    margin-right: 0;
}

.article img {
    width: 306px;
    height: auto;
}

.feature-text1 {
    font-size: 20px;
}

.feature-text2 {
    font-size: 13px;
    font-weight: normal;
}

/*特集"SP"*/
@media (max-width: 767px) {
    .feature {
        width: 90%;
        padding-top: 50px;
    }

    .article {
        width: 49%;
        margin-right: 2%;
        margin-top: 30px;
    }

    .article:nth-of-type(3n) {
        margin-right: 2%;
    }

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

    .article img {
        width: 100%;
        height: auto;
    }

    .feature-text1 {
        font-size: 13px;
        font-weight: bold;
    }

    .feature-text2 {
        font-size: 12px;
        font-weight: normal;
    }

}

/*ランキング*/
.ranking {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

.ranking a {
    text-decoration: none;
}

.ranking label {
    cursor: pointer;
}

.tab {
    padding: 0;
    width: 70%;
    height: 40px;
    line-height: 40px;
    display: -webkit-flex;
    display: flex;
    margin: 0 auto;
    margin-top: 30px;
    list-style: none;
}

.tab li {
    width: 100%;
    background: #fff;
    margin-right: 20px;
    border-bottom: none;
    text-align: center;
    cursor: pointer;
}

.tab li:nth-of-type(3) {
    margin-right: 0;
}

.tab li input,
.tab_sub input {
    display: none;
}

.tab li label {
    display: block;
    border: 1px solid #a3a3a3;
    border-bottom: 0 none;
    font-size: 16px;
}

.tab li input:checked+label {
    border: 1px solid #FFF6D9;
    background: #FFF6D9;
}

.list {
    background: #FFF6D9;
    padding-bottom: 100px;
}

.item-area {
    min-height: 536px;
}

.list li {
    cursor: pointer;
}

.tab_sub {
    list-style: none;
    width: 70%;
    height: 65px;
    line-height: 30px;
    display: flex;
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 0;
}

.tab_sub li {
    width: 100%;
    margin-right: 20px;
    text-align: center;
}

.tab_sub li label {
    display: block;
    border: 1px solid #a3a3a3;
    border-radius: 150px;
    background: #fff;
    font-size: 16px;
}

.tab_sub li input:checked+label {
    background: #a3a3a3;
    color: #fff;
}

.item-list {
    display: flex;
    flex-wrap: wrap;
    width: 1064px;
    height: auto;
    margin: 0 auto;
}

.ranking-product {
    display: block;
    width: 240px;
    margin-right: 13px;
    margin-left: 13px;
    margin-top: 50px;
}

.ranking-product img {
    width: 100%;
    height: auto;
}

.rank-no img {
    width: 70%;
    display: block;
    margin: 0 auto;
    margin-bottom: 15px;
}

.is-hide {
    display: none;
}

.fadeIn2 {
    animation-name: fadeIn2;
    animation-duration: 1s;
    -webkit-animation-name: fadeIn2;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes fadeIn2 {
    0% {
        opacity: 0;
        margin-left: 100px;
        margin-top: 100px;
    }

    100% {
        opacity: 1;
        margin-left: 0;
        margin-top: 0;
    }
}

@keyframes fadeIn2 {
    0% {
        opacity: 0;
        margin-left: 100px;
        margin-top: 100px;
    }

    100% {
        opacity: 1;
        margin-left: 0;
        margin-top: 0;
    }
}

/*ランキング"SP"*/
@media (max-width: 767px) {
    .ranking {
        padding-top: 50px;
    }

    .sec-scene03 {
        margin-top: 0;
    }

    .tab {
        width: 90%;
        height: 30px;
        line-height: 30px;
    }

    .tab li {
        margin-right: 6px;
    }

    .tab li:nth-of-type(n+3) {
        margin-right: 0;
    }

    .tab li label {
        font-size: 12px;
    }

    .item-area {
        min-height: 125vw;
    }

    .list {
        padding-bottom: 50px;
    }

    .tab_sub {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        width: 90%;
        height: auto;
        line-height: 34px;
        padding-top: 15px;
        font-size: 9px;
        padding-bottom: 0;
    }

    .tab_sub li {
        width: 31%;
        margin-right: 3.2%;
    }

    .tab_sub li:nth-of-type(3n) {
        margin-right: 0;
    }

    .tab_sub li:nth-of-type(n+4) {
        margin-top: 10px;
    }

    .tab_sub li label {
        font-size: 12px;
    }

    .item-list {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }

    .ranking-product {
        width: 30%;
        margin: 30px 1.6% 0 1.6%;
    }

    .ranking-product .name {
        font-size: 10px;
    }

    .rank-no img {
        width: 100%;
        margin-bottom: 10px;
    }

}


/*キーワードから探す*/
.search-keyword {
    width: 1038px;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

#seartch_form {
    width: 500px;
    background: #f5f5f3;
    border-radius: 150px;
    text-align: left;
    padding: 2px 0;
    margin: 0 auto;
    margin-top: 30px;
}

#seartch_form form {
    position: relative;
}

#seartch_form input.search {
    background: none;
    border: none;
    outline: none;
    width: 500px;
    height: 36px;
    border-radius: 150px;
    color: #8c8c8c;
    font-size: 12px;
    line-height: 34px;
    padding-left: 20px
}

input::-webkit-calendar-picker-indicator {
    display: none;
}

#seartch_form button {
    border-style: none;
    position: absolute;
    width: 16px;
    height: 16px;
    top: 10px;
    right: 14px;
    background-color: inherit;
}

.search-keyword .myModal {
    display: none;
}

/*キーワードから探す"SP"*/
@media (max-width: 767px) {
    .search-keyword {
        width: 90%;
        padding-top: 50px;
    }

    #seartch_form {
        width: 90%;
    }

    #seartch_form input.search {
        width: 100%;
        font-size: 16px;
        transform: scale(0.8);
        padding-left: 0;
    }

    .seartch_form-pc {
        display: none;
    }

    .search-keyword .myModal {
        display: block;
    }


    /*キーワードから探す"ハンバーガー"*/
    #drawer-content .search-keyword {
        width: 100%;
        padding-top: 30px;
    }

    #drawer-content #seartch_form {
        width: 90%;
        margin-top: 0;
    }

    #drawer-content .fas {
        font-size: 12px;
    }

}

/*アイテムから探す*/
.search-category {
    width: 1180px;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

.search-category a {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.category-list-c {
    margin: 0 11px;
}

.category-list-l,
.category-list-c,
.category-list-r {
    width: 386px;
    height: auto;
    float: left;
    margin-top: 30px;
    box-sizing: border-box;


    border-collapse: collapse;
}

.search-category img {
    width: 220px;
    height: 80px;
    margin-left: 15px;
}

.search-category label {
    display: block;
    cursor: pointer;
    transition: all 0.5s;
    border-top: 1px solid #a3a3a3;
}
.search-category label.bottom {
    border-bottom: 1px solid #a3a3a3;
}
.category-list-l label:first-child,
.category-list-c label:first-child,
.category-list-r label:first-child {
    border-top: none;
}

.search-category input {
    display: none;
}

.search-category .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.search-category .cssacc:checked+.accshow {
    height: auto;
    padding: 0 5px 15px 5px;
    opacity: 1;
}

.search-category .cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.search-category .cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.search-category .cp_actab label {
    line-height: 3;
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    cursor: pointer;
    margin: 0 1em;
}

.more-btn{
    display: none;
}


/*アイテムから探す"SP"*/
@media (max-width: 767px) {
    .search-category {
        width: 90%;
        padding-top: 50px;
        font-size: 12px;
    }

    .category-list-l,
    .category-list-c,
    .category-list-r {
        width: 70%;
        height: auto;
        float: none;
        border: none;
        margin-right: 0;
        margin: 0 auto;
    }

    .category-list-l {
        margin-top: 15px;
    }

    .search-category img {
        width: 180px;
        height: auto;
        margin-left: 0;
    }

    .search-category label {
        border-top: none;
    }
    .search-category label.bottom {
        border-bottom: none;
    }
    .search-category .cp_actab label {
        border-top: 1px solid #a3a3a3;
    }

    /*アイテムから探す"ハンバーガー"*/
    #drawer-content .search-category {
        padding-top: 30px;
    }

    #drawer-content .category-list-l {
        width: 100%;
        margin-top: 10px;
    }

    #drawer-content .category-list-r {
        width: 100%;
    }

    #drawer-content .search-category img {

        width: 150px;
        margin-left: 20px;
    }


    /* グラデーションで続き読む */
    .more-btn{
        display: block;
    }

    /* .animated {
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both;
    } */

    @-webkit-keyframes slideDown {
      0% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
      }
    }

    @keyframes slideDown {
      0% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
      }
    }

    .slide-down {
      -webkit-animation-name: slideDown;
      animation-name: slideDown;
    }

    @-webkit-keyframes slideUp {
      0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
      }
      100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
      }
    }

    @keyframes slideUp {
      0% {
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
      }
      100% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
      }
    }

    .slide-up {
      -webkit-animation-name: slideUp;
      animation-name: slideUp;
    }

    .content-wrap {
      height: 430px;
      overflow: hidden;
      position: relative;
      margin: 0;
    }

    .close-btn, .more-btn {
      display: block;
      width: 100%;
      padding: 80px 0 0;
      position: absolute;
      bottom: 0;
      left: 0;
      text-align: center;
      background: -moz-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 60%
      );
      background: -webkit-linear-gradient(
        top,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 60%
      );
      background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 60%
      );
      filter: progid:DXImageTransform.Microsoft.gradient(
          startColorstr='#00ffffff',
          endColorstr='#ffffff',
          GradientType=0
        );
    }

    .slide-up {
      height: 430px;
      padding-bottom: 0;
      overflow: hidden;
    }

    .slide-down {
      height: auto;
      overflow: visible;
      padding-bottom: 50px;
    }

    .more-btn p {
        display: inline-block;
        cursor: pointer;
    }

    .more-btn .open:before{
        font-family: "Font Awesome 5 Free";
        content: '\f107';
        font-weight: 900;
        margin-right: 5px;
    }

    .more-btn .close:before{
        font-family: "Font Awesome 5 Free";
        content: '\f106';
        font-weight: 900;
        margin-right: 5px;
    }

    .close-btn {
        padding:0;
    }

    /*アイテムから探す"ハンバーガー/グラデーションで続き読む"*/
    #drawer-content .content-wrap {
      height: 360px;
    }

    #drawer-content .slide-up {
      height: 360px;
    }

    #drawer-content .slide-down {
      height: auto;
      overflow: visible;
      padding-bottom: 50px;
    }

}

/*性別から探す*/
.search-gender {
    width: 1038px;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
}

.search-gender a {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.genderimg {
    margin-top: 30px;
}

.genderimg label {
    display: block;
    cursor: pointer;
    transition: all 0.5s;
}

.genderimg_item + .genderimg_item {
    margin-top: 7px;
}

.genderimg img {
    width: 1038px;
    height: auto;
}

.genderimg input {
    display: none;
}

.genderimg .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

.genderimg .cssacc:checked+.accshow {
    height: auto;
    padding: 5px;
    opacity: 1;
}

.genderimg .cp_actab {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;

}

.genderimg .cp_actab input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.genderimg .cp_actab label {
    line-height: 3;
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    cursor: pointer;
    margin: 0 0 1px 0;
    border-top: 1px solid #a3a3a3;
}

.genderlabel-sub-top {
    line-height: 3;
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    cursor: pointer;
    margin: 0 0 1px 0;
}

.genderlabel-sub-free {
    line-height: 3;
    position: relative;
    display: block;
    padding: 0 0 0 1em;
    cursor: pointer;
    margin: 0 0 1px 0;
    border-top: 1px solid #a3a3a3;
}

.genderimg .cp_actab .cp_actab-content {
    overflow: hidden;
    max-height: 0;
    -webkit-transition: max-height 0.35s;
    transition: max-height 0.35s;
}

.cp_actab-content p {
    height: 30px;
    line-height: 30px;
    margin: 0 1em;
    border-bottom: 1px solid #e6e6e6;
}

.cp_actab-content :last-child p {
    border-bottom: none;
    padding-bottom: 40px;
}

.genderimg .cp_actab input:checked~.cp_actab-content {
    max-height: 30em;
}

.genderimg .cp_actab label::after {
    line-height: 3;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 3em;
    height: 3em;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    text-align: center;
}

.genderimg .cp_actab input[type=checkbox]+label::after {
    content: '+';
}

.genderimg .cp_actab input[type=checkbox]:checked+label::after {
    transform: rotate(315deg);
}

/*性別から探す"SP"*/
@media (max-width: 767px) {
    .search-gender {
        width: 90%;
        padding-top: 50px;
    }

    .genderimg {
        margin-top: 15px;
    }

    .genderimg img {
        width: 100%;
        height: auto;
    }

    .genderimg .cp_actab label {
        font-size: 12px;
    }

    /*性別から探す"ハンバーガー"*/
    #drawer-content .search-gender {
        padding-top: 30px;
    }

    #drawer-content .genderimg {
        margin-top: 10px;
    }

    #drawer-content a {
        display: block;
        height: 100%;
        width: 100%;
    }


}

/*サイズから探す*/
.search-s-p {
    width: 1180px;
    margin: 0 auto;
}

.search-size {
    width: 664px;
    height: auto;
    float: left;
    padding-top: 100px;
    line-height: 50px;
}

.search-size a {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%;
}

.search-size ul {
    list-style: none;
    margin-top: 30px;
}

.search-size li {
    width: 148px;
    height: 50px;
    background: #fff;
    border: 1px solid #a3a3a3;
    text-align: center;
    border-radius: 150px;
    float: left;
    margin-right: 19px;
    margin-bottom: 15px;
}

.search-size li:hover {
    background-color: #000;
    border: 1px solid #000;
}

.search-size a:hover {
    color: #fff;
}

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

/*サイズから探す"SP"*/
@media (max-width: 767px) {
    .search-s-p {
        width: 100%;
        padding-top: 0;
        overflow: hidden;
    }

    .search-size {
        width: 100%;
        padding-top: 50px;
    }

    .search-size ul {
        margin-top: 15px;
        border-top: 1px solid #a3a3a3;
    }

    .search-size li {
        width: 50%;
        height: 50px;
        border: none;
        border-right: 1px solid #a3a3a3;
        border-bottom: 1px solid #a3a3a3;
        border-radius: 0;
        float: left;
        margin-right: 0;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .search-size li p {
        text-align: left;
        position: relative;
    }

    .search-size li p:after {
        font-family: "Font Awesome 5 Free";
        content: '\f105';
        font-weight: 900;
        position: absolute;
        right: 20px;
    }

    .search-size li:hover {
        background-color: #fff;
        border: none;
        border-right: 1px solid #a3a3a3;
        border-bottom: 1px solid #a3a3a3;
    }

    .search-size a:hover {
        color: #000;
    }

    .search-size li:nth-of-type(2n) {
        border-right: none;
    }

}


/*金額から探す*/
.search-price {
    width: 340px;
    height: auto;
    float: right;
    padding-top: 100px;
    list-style: none;
    line-height: 50px;
}

.search-price a {
    text-decoration: none;
    display: block;
    height: 100%;
    width: 100%
}

.search-price ul {
    list-style: none;
    margin-top: 30px;
}

.search-price li {
    width: 156px;
    height: 50px;
    background: #fff;
    border: 1px solid #a3a3a3;
    text-align: center;
    border-radius: 150px;
    float: left;
    margin-right: 19px;
    margin-bottom: 15px;
}

.search-price li:hover {
    background-color: #000;
    border: 1px solid #000;
}

.search-price a:hover {
    color: #fff;
}

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

/*金額から探す"SP"*/
@media (max-width: 767px) {
    .search-price {
        width: 100%;
        padding-top: 50px;
    }

    .search-price ul {
        margin-top: 15px;
        border-top: 1px solid #a3a3a3;
    }

    .search-price li {
        width: 50%;
        height: 50px;
        border: none;
        border-right: 1px solid #a3a3a3;
        border-bottom: 1px solid #a3a3a3;
        border-radius: 0;
        float: left;
        margin-right: 0;
        margin-bottom: 0;
        padding-left: 20px;
    }

    .search-price li p {
        text-align: left;
        position: relative;
    }

    .search-price li p:after {
        font-family: "Font Awesome 5 Free";
        content: '\f105';
        font-weight: 900;
        position: absolute;
        right: 20px;
    }

    .search-price li:hover {
        background-color: #fff;
        border: none;
        border-right: 1px solid #a3a3a3;
        border-bottom: 1px solid #a3a3a3;
    }

    .search-price a:hover {
        color: #000;
    }

    .search-price li:nth-of-type(2n) {
        border-right: none;
    }

}

.item_line_bnr img {
    padding: 40px 10px;
}

/*受賞履歴*/
.award {
    width: 790px;
    height: auto;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
    clear: both;
}

.award-summary {
    width: 290px;
    height: auto;
    margin: 0 20px;
    margin-top: 40px;
    float: left;
}

.award-long{
    width: 420px;
}

.award-summary2 {
    width: 380px;
    height: auto;
    margin: 0 20px;
    margin-top: 40px;
    float: left;
}


.award-img img {
    width: auto;
    height: 85px;
    float: left;
    margin-right: 5px;
}

.award-txt {
    width: 180px;
    height: auto;
    float: left;
    margin-left: 20px;
}

.award-rank {
    font-size: 26px;
}

.award-year {
    font-size: 19px;
    text-align: left;
    display: flex;
    align-items: center;
    margin: 0 0 10px 2px;
}

.award-year:after {
    border-top: 1px solid;
    content: "";
    flex-grow: 1;
    margin-left: 1rem;
}

/*受賞履歴"SP"*/
@media (max-width: 767px) {
    .award {
        width: 90%;
        margin: 0 auto;
        padding-top: 50px;
    }

    .award-summary,
    .award-summary2 {
        width: 100%;
        height: auto;
        margin: 0;
        margin-top: 15px;
        padding-bottom: 15px;
    }

    .award-img img {
        height: 60px;
        width: auto;
        margin-right: 0;
        padding-right: 5px;
    }

    .award-txt {
        width: auto;
        height: auto;
        font-size: 12px;
        margin-left: 10px;
    }

    .award-year {
        font-size: 17px;
        margin: 0;
        margin-bottom: 10px;
    }

    .award-rank {
        font-size: 17px;
    }

}

/*レビュー・メルマガ*/
.publicity {
    width: 425px;
    height: 163px;
    overflow: hidden;
    position: relative;
    zoom: 1;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 30px;
}

.publicity a {
    text-decoration: none;
}

.publicity .fas {
    margin-right: 15px;
}

.review-text {
    float: left;
    font-size: 22px;
    font-weight: bold;
    margin-right: 40px;
}

.mail-text {
    float: left;
    font-size: 22px;
    font-weight: bold;
}

/*レビュー・メルマガ"SP"*/
@media (max-width: 767px) {
    .publicity {
        width: auto;
        height: auto;
        padding-top: 50px;
        text-align: center;
    }

    .publicity div {
        display: inline-block;
    }

    .publicity .fas {
        margin-right: 10px;
    }

    .review-text {
        font-size: 14px;
        margin-right: 5px;
        float: none;
        display: inline-block;
    }

    .mail-text {
        font-size: 14px;
        float: none;
        display: inline-block;
    }

}

/*フッター*/
.footer-max {
    width: 100%;
    height: 240px;
    background-color: #f5f5f3;
    padding: 30px 0;
}

.footer {
    width: 1180px;
    height: 180px;
    margin: 0 auto;
    position: relative;
}

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

.footer-r {
    width: 700px;
    height: 112px;
    height: 109px;
    float: left;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

.footer-r img {
    width: 300px;
    height: auto;
}

.footer-r-img {
    float: right;
    margin-left: 10px;
}

.footer-l {
    width: 480px;
    height: 180px;
    float: left;
}

.footer-nav {
    width: 800px;
    height: 24px;
    margin-bottom: 30px;
}

.footer-nav ul {
    list-style: none;
    padding-left: 0;
}

.footer-nav li {
    float: left;
}

.footer-nav li p {
    float: left;
}

.footer-nav li:not(:nth-child(4)):before {
    content: " | ";
    color: silver;
    padding: 0 5px;
}

.company {
    width: 380px;
    height: 126px;
}

.company-name {
    font-size: 19px;
    margin-bottom: 3px;
}

.company-cs {
    margin-bottom: 3px;
}

.company-holiday {
    font-size: 13px;
}

.copyright-sp {
    display: none;
}

/*フッター"SP"*/
@media (max-width: 767px) {
    .footer-max {
        width: 100%;
        height: auto;
        padding-bottom: 15px;
    }

    .footer {
        width: 90%;
        height: auto;
    }

    .footer-l {
        width: 100%;
        height: auto;
        float: none;
    }

    .footer-nav {
        width: 100%;
        height: auto;
    }

    .footer-nav li {
        float: none;
        border-bottom: 1px solid #a3a3a3;
        padding-left: 27px;
        line-height: 40px;
    }

    .footer-nav li:first-child {
        border-top: 1px solid #a3a3a3;
    }

    .footer-nav li p {
        float: none;
    }

    .footer-nav li:not(:nth-child(5)):before {
        content: "";
        color: silver;
        padding: 0;
    }

    .footer-nav li p:before {
        font-family: "Font Awesome 5 Free";
        content: '\f105';
        font-weight: 900;
        position: absolute;
        left: 10px;
    }

    .company {
        width: 100%;
        height: auto;
    }

    .company-name {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .company-cs {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .company-holiday {
        font-size: 12px;
    }

    .footer-r {
        width: 100%;
        height: auto;
        float: none;
        text-align: center;
        position: static;
    }

    .footer-r img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }

    .footer-r-img {
        float: none;
        margin-left: 0;
    }

    .footer-r p {
        display: none;
    }

    .copyright-sp {
        display: block;
        text-align: center;
        font-size: 13px;
        margin-top: 30px;
    }

}

/*ゆっくり表示*/
.showup {
    opacity: 0;
}

.inview {
    transition: 1s;
    transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
}

.show {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}

/*ゆっくり表示"SP削除"*/
@media (max-width: 767px) {
    .showup {
        opacity: 1.0;
    }

    .inview {
        transition: none;
        transform: none;
        -webkit-transform: none;
    }
}


/*200604限定*/
#girlstops-coupon{
    width: 830px;
    height: auto;
    margin: 0 auto;
    text-align: center;
}

#girlstops-coupon img{
    width: 100%;
    margin-top: 50px;
}

#girlstops-coupon .text-button{
    border: none;
    background-color: #F44694;
}

#girlstops-coupon .text-button p{
    color: #fff;
}

#girlstops-coupon .eff{
    background: none;
}

@media (max-width: 767px) {
#girlstops-coupon{
    width: 90%;
    height: auto;
    margin: 0 auto;
}
}

#head_Main_Img01
{
    max-width: 980px;
    margin: 5px auto 0 auto;
}
@media (max-width: 767px) {
  #head_Main_Img01
{
    width: 100%;
}  
}

/*ホットワード*/
    .shortcut_tag_main{
        margin-top: 80px;
    }
    .name2{
        clear: both;
        text-align: center;
    }
    .shortcut_tag{
        display: inline-block;
        background: #ffffff;
        color:#000000;
        text-decoration: none;
        font-size: 1.1rem;
        line-height: 1;
        border:1px solid #bbbbbb;
        border-radius: 21px;
        padding: 10px 18px;
        white-space: nowrap;
        margin-bottom: 5px;

    }
    @media (max-width: 767px) {
        .shortcut_tag_main{
            margin-top: 30px;
        }
        .shortcut_tag{
            font-size: 0.9rem; 
            padding: 4px 10px;
            margin-bottom: 10px;
        }
    }

/*20230131追加*/
.event_bg{
    width:100%;
    height: auto;
    background-color: #f5f5f3;
    padding-top: 10px;
    padding-bottom: 10px;
}
.coupon-text{
    margin-bottom: 10px;
}

@media (max-width: 767px) {
.event_bg{
    padding-bottom: 0px;
}
.coupon .body-title2
{
    margin-bottom: 0px;    
}
.coupon-text{
    margin-bottom: 0px;
}
}
