@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Work+Sans");
body {
  /* Addresses a small issue inw ebkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

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

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

.fadeIn {
  animation-name: fadeIn;
}

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

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    transform: translateY(0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

/* bBootstrap v3.3.7の変数のみinclude */
/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
/* Component */
.sd-btn {
  border: 0;
  color: #FFFFFF;
  background-color: #337ab7;
  border-radius: 4px;
  display: inline-block;
  padding: 5px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.44;
}

.sd-btn a, .sd-btn:hover, .sd-btn:focus,
.sd-btn a:hover,
.sd-btn a:focus {
  color: #FFFFFF;
}

.zoom:hover {
  -ms-transform: scale(1.2, 1.2);
      transform: scale(1.2, 1.2);
  transition: all 0.5s ease 0s;
}

.ol--reset,
.ul--reset {
  padding: 0;
  list-style-type: none;
}

.ol,
.ul {
  padding: 0;
  list-style-type: none;
}

.ol li,
.ul li {
  border-bottom: 1px dotted #cccccc;
}

.ol li:last-child,
.ul li:last-child {
  border-bottom: none;
}

.hr {
  clear: both;
  border: 0;
  height: 1px;
  border-bottom: 1px solid #000000;
}

.form textarea,
.form input {
  border: 1px solid #000000;
}

.form label {
  margin-right: 15px;
}

.form textarea,
.form input[type="text"] {
  padding: 5px;
  width: 100%;
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {
  .form textarea,
  .form input[type="text"] {
    font-size: 1.6rem;
  }
}

.form textarea {
  min-height: 200px;
}

.form input[type="submit"] {
  padding: 5px;
  margin: 5px;
}

.sd-table {
  width: 100%;
  max-width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #CCCCCC;
  border-right: 1px solid #CCCCCC;
  border-collapse: collapse;
}

.sd-table caption {
  font-weight: bold;
  font-size: 110%;
}

.sd-table > thead tr > th,
.sd-table > tbody tr > th,
.sd-table > tfoot tr > th {
  background: #f2f2f2;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
}

.sd-table > thead tr > th, .sd-table > thead tr > td,
.sd-table > tbody tr > th,
.sd-table > tbody tr > td,
.sd-table > tfoot tr > th,
.sd-table > tfoot tr > td {
  vertical-align: middle;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  padding: 15px;
}

/*グラデーション*/
.gradation {
  background-color: transparent;
  background-image: linear-gradient(to bottom, #FFFFFF 0%, rgba(250, 250, 250, 0.4) 100%);
}

/*テキストシャドウ*/
.text-shadow--gray {
  text-shadow: 0 1px 0 rgba(150, 150, 150, 0.6);
}

.text-shadow--white {
  text-shadow: 0 1px 0 #FFFFFF;
}

/*ボックスシャドウ*/
.box-shadow--gray {
  box-shadow: 0 0 10px 1px #CCCCCC;
}

.box-shadow--white {
  box-shadow: 0 0 15px #FFFFFF #CCCCCC;
}

.sd-label {
  padding: 5px;
  font-size: 85%;
  border-radius: 6px;
  color: #FFFFFF;
  background-color: #000000;
}

.sd-picture {
  border: 5px solid #FFFFFF;
}

/**
 * animation
 */
/*点滅設定*/
@keyframes sdKeyframes--opacity-flashing {
  0% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}

/*点滅*/
.sd-flashing {
  animation: sdKeyframes--opacity-flashing 1s infinite;
}

/* Project */
.btn--sml {
  text-align: center;
  background-color: #333333;
  padding: 0px 2px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  position: relative;
  color: #FFFFFF;
  padding: 12px 0;
  background-image: url("https://ds-assets.s3.amazonaws.com/e-look.jp/2017/look/2017_fall_one_piece/arrow.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
  max-width: 450px;
}

@media screen and (min-width: 980px) {
  .btn--sml {
    background-position: right 20px center;
    font-size: 18px;
    padding: 17px 0;
    margin: 0 auto;
  }
}

.btn--sml:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

.item-light-outer .btn--sml {
  font-size: 13px;
}

@media screen and (min-width: 980px) {
  .item-light-outer .btn--sml {
    font-size: 18px;
  }
}

.btn--sml__outer {
  margin-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width: 980px) {
  .btn--sml__outer {
    padding: 0;
  }
}

.btn--big {
  text-align: center;
  background-color: #FFFFFF;
  padding: 12px 14px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 12px 0px 12px 0px;
  display: block;
  margin: 0 10px 10px 10px;
  position: relative;
  color: #000000;
  border: 2px solid #000000;
  background-image: url("https://ds-assets.s3.amazonaws.com/e-look.jp/2017/look/2017_fall_one_piece/arrow-bk.png");
  background-repeat: no-repeat;
  background-position: right 10px center;
}

@media screen and (min-width: 980px) {
  .btn--big {
    margin: 0 auto 60px auto;
    background-position: right 20px center;
    font-size: 18px;
    padding: 30px 15px 30px 45px;
    max-width: 690px;
    margin-top: -60px;
  }
}

.btn--big:hover {
  color: rgba(0, 0, 0, 0.8) !important;
}

.content_wrap {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  margin: 0 auto;
  padding: 0;
  font-smoothing: antialiased;
  font-size: 14px;
  line-height: 1.8 !important;
}

.img01{
  display: inline-block;
  max-width: 45%;
  margin: 0.5%;
}

.link-campgaign{
  margin: 4% auto;
  background-color: #f5f5f5;
  padding: 3%;
  max-width: 100%;
  text-align: center;
}

.haloween_coupon{
  margin: 4% auto;
  padding: 0 0 40px 0;
  max-width: 100%;
  text-align: center;
}


.main_text{
  background: #fff;
  margin: 4% auto 0;
  padding: 5% 0;
  text-align: center;
  font-size: 0.9em;
  letter-spacing: 2px;
}

.info_sub{
  padding-bottom: 0px;
}

@media screen and (min-width: 980px) {
  .info_sub{
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 980px) {
  .content_wrap {
    font-size: 19px;
  }
}

.content_wrap * {
  box-sizing: border-box;
}

.main-img {
  margin: 0 -5px 20px -5px;
  text-align: center;
}

@media screen and (min-width: 980px) {
  .main-img {
    margin: 0 -5px 30px -5px;
    margin:0 0 40px 0;
  }
}

.sub-navigation-outer_3 {
  max-width: 666px;
  margin: 0 auto 60px auto;
}

@media screen and (min-width: 980px) {
  .sub-navigation-outer_3 {
    margin: 0 auto 60px auto;
  }
}

.sub-navigation-outer_4 {
  margin: 0 auto 0px auto;
}


.sub-navigation-outer_2 {
  margin: 0 auto 50px auto;
}

@media screen and (min-width: 980px) {
  .sub-navigation-outer_2 {
    margin: 0 auto 130px auto;
  }
}

.sub-navigation-outer {
  max-width: 840px;
  margin: 0 auto 60px auto;
}

@media screen and (min-width: 980px) {
  .sub-navigation-outer {
    margin: 0 auto 40px auto;
  }
}

.sub-navigation {
  margin-top: 40px;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
}

.sub-navigation li {
  text-align: center;
  -ms-flex-positive: 1;
      flex-grow: 1;

}

.sub-navigation li:last-child {
  border: none;
}

.sub-navigation a {
  display: block;
  padding: 2px 2px;
}


@media screen and (min-width: 980px) {
  .sub-navigation a {
    padding: 0;
    min-height: 35px;
  }
}

.item {
  padding-top: 5px;
  margin-bottom: 50px;
}

@media screen and (min-width: 980px) {
  .item {
    margin: 0 50px 70px;
  }
}

.item__body {
  margin: 0 10px;
}


@media screen and (min-width: 980px) {
  .item__body {
    margin: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

  }
}

@media screen and (min-width: 980px) {
  .item__body.item__body--rev {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}

.item__body .item__body__child {
  text-align: center;
}

.item__body .item__body__child h3,
.item__body .item__body__child h4,
.item__body .item__body__child  .check_btn a {
  color: #383b60;
}

.item__body .item__body__child h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 20px;
}

.item__body .item__body__child h4 {
  font-size: 23px;
  line-height: 32px;
  margin-bottom: 30px;
}

@media screen and (min-width: 980px) {
  .item__body .item__body__child h3 {
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .item__body .item__body__child h4 {
    font-size: 30px;
    line-height: 45px;
    margin-bottom: 30px;
  }
}

.item__body .item__body__child p {
  font-size: 15px;
}

.item__body .item__body__child .price p {
  margin: 10px 0 0;
  text-align: right;
  font-size: 23px;
}

.item__body .item__body__child .price .tax {
  font-size: 19px;
}

.item__body .item__body__child .deliver_data p {
  margin: 0 0 20px;
  text-align: right;
  font-size: 15px;
  color: #a81a19;
}
.item__body .item__body__child .check_btn a {
  display: block;
  width: 100%;
  padding: 15px 0;
  background: #48282f;
  color: #ffffff;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.item__body .item__body__child .item_btn a {
  margin-bottom: 3%;
  background: #c2b394;
}
.item__body .item__body__child .item_btn_2 a {
  margin-bottom: 3%;
  background: #896646;
}
.item__body .item__body__child .item_btn_3 a {
  margin-bottom: 3%;
  background: #bd9999;
}

.item__body .item__body__child  .check_btn a:hover {
  text-decoration: none;
  background: #9c9c9c;
  color: #ffffff;
}

#attention {
  background: #ebebea;
  margin-bottom: 8%;
  padding: 25px 0;
  text-align: center;
}

#attention .item__body .item__body__child {
  width: 90%;
  margin: 0 auto;
}

#attention .item__body .item__body__child h3 {
  margin: 0 0 20px;
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W6","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",MS PGothic,sans-serif;
  color: #333333;
  font-size: 22px;
}

.coupon__information {
  text-align:center;
  margin: 4% auto 12%;
}

.coupon_block {
  position: relative;
  text-align: center;
  background-color: #a71919;
  padding:7px;
  max-width: 1024px;
  width: 90%;
  margin: 0 auto;
  /*background-image: url("//ds-assets.s3.amazonaws.com/e-look.jp/2019/elook/0419_mothers/coupon_top.png")/*, url("//ds-assets.s3.amazonaws.com/e-look.jp/2018/elook/2018_mothersday/campaign-ribon-under.png")*/
  background-position: top/*,bottom right*/;
  background-repeat: no-repeat;
  background-size: 88%;*/
}

.coupon_block .coupon_block_outter {
  position:relative;
}

.coupon_block .coupon_block_outter .coupon_subtitle {
  position:absolute;
  top:-1.4%;
  left: 7%;
  text-align: center;
  margin: 0 auto;
}

.coupon_block .coupon_block_outter .coupon_subtitle img {
  width: 100%;
  margin:0 auto;
  text-align:center;
}

.coupon_block .coupon_block_inner {
  border:2px solid #fff;
}

.coupon_block .coupon_code {
  margin: 20% -0.5% 0;
  padding: 2% 0 0.3%;
  background-color:#fff;
  border-top: 4px #a71919 solid;
  border-bottom: 4px #a71919 solid;
  /* border-left: 0px #a71919 solid; */
  /* border-right: 0px #a71919 solid; */
}

.coupon_block .coupon_code h4 {
  font-size:14px;
}

.coupon_block .coupon_code h4 img {
  width:2.5%;
}

.coupon_block .coupon_code p {
  font-size:40px;
}

.coupon_block .coupon_terms {
  color:#fff;
  margin: 4% auto;
}

.coupon_block .coupon_terms p {
  font-size:18px;
  font-weight:500;
}

.coupon_block .coupon_terms ul {
  font-size:12px;
  font-weight:100;
  letter-spacing: 1px;
}

.coupon_block .coupon_terms ul li {
  margin:0 auto 0.5%;
}

.coupon__information .coupon__information__title {
  color: #685b00;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 75px;
}

.coupon__information .information_text + .information_text {
  margin-top: 50px;
}

.coupon__information .information_text .p-content-block-utility {
    margin: 30px 0 0 0;
    padding: 0;
}

.coupon__information .information_text a {
  padding-bottom: 5px;
  border-bottom: 1px solid #333333;
}

.coupon__information .information_text a:hover {
  text-decoration: none;
}

.coupon__information .information_text-label {
  width: auto;
  position: absolute;
  top: -15px;
  left: 10px;
  margin-top: 0;
}

.coupon__information .information_text__title {
  color: #d1243d;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 28px;
}

@media (max-width: 1200px) {
  .coupon_block .coupon_block_outter .coupon_subtitle {
    top:-1.5%;
    left: 0;
  }
  .coupon_block .coupon_block_outter .coupon_subtitle img{
  width: 83%;
  }
}

@media (max-width: 768px) {
  .coupon__information{
    margin:0 auto 18%; 
  }
  .coupon_block .coupon_block_outter .coupon_subtitle{
    top: -1.8%;
  }
  .coupon_block .coupon_block_outter .coupon_subtitle img{
    width: 90%;
  }
  .coupon_block .coupon_code{
    padding: 5% 0 0;
    border-top: 4px #a71919 solid;
    border-bottom: 4px #a71919 solid;
    border-left: 1px #a71919 solid;
    border-right: 1px #a71919 solid;
    margin: 35% -1% 0;
  }
  .coupon_block .coupon_code h4{
    font-size:12px;
  }
  .coupon_block .coupon_code h4 img{
    width: 6%;
  }
  .coupon_block .coupon_code p{
    font-size: 24px;
  }
  .coupon_block .coupon_terms{
    margin:3% auto 6%;
  }
  .coupon_block .coupon_terms p{
    font-size: 14px;
  }
  .coupon_block .coupon_terms ul{
    font-size:11px;
    font-weight: normal;
    text-align:left;
    width:90%;
    margin:0 auto;
  }
  .coupon_block .coupon_terms ul li{
    margin:0 auto 0.5%;
    padding-left:1em;
    text-indent:-1.5em;
  }
  .coupon__information {
    padding: 0;
  }
  .coupon__information .coupon__information__title {
    margin-bottom: 35px;
  }
  .coupon__information .information_text-label {
    margin: -140px auto 30px auto;
    width: 140px;
    top: initial;
    left: initial;
    position: initial;
  }
  .coupon__information .information_text__title {
    font-size: 22px;
  }
}

@media (max-width: 544px) {
  .coupon__information .information_text .p-content-block-utility {
  margin: 10px 0 0 0;
  padding: 15px 0;
  }
  .coupon_block .coupon_code{
    padding: 5% 0 0;
    border-top: 4px #a71919 solid;
    border-bottom: 4px #a71919 solid;
    border-left: 1px #a71919 solid;
    border-right: 1px #a71919 solid;
    margin: 27% -2% 0;
  }
  .item__body .item__body__child p {
  font-size: 12px;
}
.item__body .item__body__child .price p {
  font-size: 18px;
}
.item__body .item__body__child .price .tax {
  font-size: 15px;
}
}

.link-banner{
  margin: 20px;
  text-align: center;
}

@media screen and (min-width: 980px) {
  .link-banner{
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }
}
a.lb-btn{
  margin: 5px 0;
  display: block;
}

@media screen and (min-width: 980px) {
  a.lb-btn{
    margin: 0 5px;
  }
}

.link-banner a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}

@media screen and (min-width: 980px) {
  .item__body .item__content--left {
    text-align: right;
    margin-top: 70px;
  }
}

@media screen and (min-width: 980px) {
  .item__body .item__content--left-narrow_2 {
    text-align: right;
  }
}


@media screen and (min-width: 980px) {
  .item__body .item__content--left-narrow {
    text-align: left;
    width: 590px;
  }
}

@media screen and (min-width: 980px) {
  .item__body .item__content--right {
    text-align: left;
    width: 430px;
  }
}

@media screen and (min-width: 980px) {
  .item__body .item__content--right-narrow {
    text-align: left;
    margin-left: 45px;
  }
}

.item__body .nom {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

@media screen and (min-width: 480px) {
  .item__body .nom {
    max-width: 30%;
  }
}

@media screen and (min-width: 980px) {
  .item__body .nom {
    max-width: none;
  }
}

.item__body .nom-logo_2 {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.item__body .nom-logo {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 25px;
}

@media screen and (min-width: 480px) {
  .item__body .nom-logo {
    max-width: 40%;
  }
}

@media screen and (min-width: 980px) {
  .item__body .nom-logo {
    max-width: none;
  }
}

.item__body .item__img {
  position: relative;
  max-width: 590px;
  margin: 0 auto;
}

.item__body .item__img {
    margin-bottom: 30px;
}

@media screen and (min-width: 980px) {
  .item__body .item__img {
    margin-bottom: 60px;
  }
}

@media screen and (min-width: 980px) {
  .item__body .item__img_2 {
    margin-bottom: 35px;
  }
}


.item__body .item__text_2 {
  text-align: left;
  padding: 22px 35px;
  margin-bottom: 50px;
  letter-spacing: 0.05em;
}

.item__body .item__text {
  text-align: left;
  padding: 22px 35px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 980px) {
  .item__body .item__text {
    letter-spacing: 0.05em;
  }
}

.item__body .item__text-rr {
  margin: 10px auto;
  font-size: 11px;
}

@media screen and (min-width: 980px) {
  .item__body .item__text-rr {
    margin: 50px auto;
  }
}

@media screen and (min-width: 980px) {
  .item__body .item__text-rr {
    margin-left: auto;
    margin-right: 0;
    font-size: 13px;
  }
}

.item__body .item-data {
  margin: 30px 0 10px 0;
  font-size: 85%;
}

.item__body .item-buy {
  font-weight: bold;
  font-size: 85%;
}



@keyframes auto-fade_kf {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.item__body .auto-fade {
  position: absolute;
  top: 0;
  right: 24px;
  animation-name: auto-fade_kf;
  animation-duration: 12s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-delay: 2s;
}

/* Utility */
.hide_text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

.fluid_img {
  max-width: 100%;
  height: auto;
}

.none {
  display: none;
}

.flo-left {
  float: left;
}

.flo-right {
  float: right;
}

.text_left {
  text-align: left;
  padding-bottom: 10px;
}

@media screen and (min-width: 980px) {
  .text_left--md {
    text-align: left !important;
  }
}

.text_right {
  text-align: right;
}

@media screen and (min-width: 980px) {
  .text_right--md {
    text-align: right !important;
  }
}

.text_center {
  text-align: center;
}

.font_small {
  font-size: 80%;
}

.opa-0,
.ani-fadeIn,
.ani-fadeInLeft {
  opacity: 0;
}

.flex-outer {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.flex-child {
  width: 50%;
}

.u-none {
  display: none;
}

@media screen and (min-width: 980px) {
  .u-md-block {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sm-block {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sm-inline {
    display: inline;
  }
}

@media screen and (min-width: 980px) {
  .u-md-inline {
    display: inline;
  }
}

.u-table {
  display: table;
}

@media screen and (min-width: 980px) {
  .u-md-table {
    display: table;
  }
}

@media screen and (min-width: 480px) {
  .u-xs-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sm-none {
    display: none;
  }
}

@media screen and (min-width: 980px) {
  .u-md-none {
    display: none;
  }
}

@media screen and (min-width: 980px) {
  .mt-md_-35px {
    margin-top: -35px !important;
  }
}

@media screen and (min-width: 980px) {
  .md-mt-80 {
    margin-top: 80px;
  }
}

@media screen and (min-width: 980px) {
  .md-mt-170 {
    margin-top: 170px;
  }
}

.abs-left {
  left: 0;
}

.u-max-486px {
  max-width: 486px !important;
}

@media screen and (min-width: 980px) {
  .u-max-486px {
    max-width: 540px !important;
  }
}

.u-max-464px {
  max-width: 464px !important;
}

@media screen and (min-width: 980px) {
  .u-max-464px {
    max-width: 540px !important;
  }
}


/*================================================================================

state

================================================================================*/
.is-fade-in {
  transition: opacity 0.2s linear;
  opacity: 1 !important;
}

.is-fade-out {
  transition: opacity 0.6s ease-in-out;
  opacity: 0 !important;
}

.is-fade-out--long {
  transition: opacity 1s ease-in-out;
  opacity: 0 !important;
}

.is-nav-on {
  display: table-cell !important;
  vertical-align: middle;
  height: 100vh;
  padding: 20vh 0;
}

.txt_magin{
  margin-bottom: 50px;
}

.item_list{
  text-align: center;
  margin-bottom: 20px;
}

.item__text-rr li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -ms-flex-pack: justify;
   justify-content: space-between;
  margin-bottom: 10px;
}

.item__text-rr .licon {
  border: solid 1px #717171;
  padding: 0px 5px;
  font-size: 0.7em;
  margin-right: 3px;
  margin-left: 10px;
  vertical-align: text-bottom;
}

.ttl_l{
  text-align: center;
  margin-bottom: 50px; 
}

@media screen and (min-width: 980px) {
  .ttl_l{
    text-align: left;
    margin-bottom: 50px; 
  }
}

.flex-direction-nav{
  display: none;
}

.flex-control-nav{
  display: none;
}

.flex-next{
  display: none;
}

.campaign_text {
  width: 90%;
  max-width: 772px;
  margin: 60px auto 60px;
  text-align: center;
  font-size: 12px;
}

@media screen and (min-width: 980px) {
  .campaign_text {
    margin: 140px auto 60px;
    text-align: center;
    font-size: 18px;
  }
}

.campaign_text img {
  margin: 5px auto 10px;
}

@media screen and (min-width: 980px) {
  .campaign_text img {
    margin: 15px auto 30px;
  }
}

.campaign_text a.p-btn--mypage {
  border: 0;
  color: #FFFFFF;
  background: #bc0078;
  border-radius: 0;
  display: inline-block;
  padding: 6px 24px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.44;
  font-size: 12px;
  display: block;
  padding: 26px 5px;
  text-align: center;
  margin: 10px auto;
  width: 100%;
}

@media screen and (min-width: 980px) {
 .campaign_text a.p-btn--mypage {
  border: 0;
  color: #FFFFFF;
  background: #bc0078;
  background-position: right 2% center;
  border-radius: 0;
  display: inline-block;
  padding: 6px 24px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1.44;
  display: block;
  padding: 35px 5px;
  font-size: 18px;
  text-align: center;
  margin: 50px auto;
}
}

.campaign_text a.p-btn--mypage a, ..campaign_text a.p-btn--mypage:hover, ..campaign_text a.p-btn--mypage:focus,
.campaign_text a.p-btn--mypage a:hover,
.campaign_text a.p-btn--mypage a:focus {
  color: #FFFFFF;
}

.campaign_text a.p-btn--mypage:hover {
  text-decoration: none;
  opacity: 1;
  background: #d845a3;
}

.banner-coupon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
}

@media screen and (min-width: 690px) {
  .banner-coupon {
    top: 20%;
    left: auto;
    right: 0;
  }
}

/* couponここから */
.p-main .coupon__information{
  width: 100%;
  max-width: 780px;
  background: #c7b357;
  text-align: center;
  margin: 0 auto;
  padding: 4% 0 1%;
  color: #ffffff;
}
.p-main .coupon__information .coupon__information h3 {
  width: 50%;
  margin: 0 auto 5%;
  text-align: center;
}
.coupon__information .coupon_code{
  width: 90%;
  background-color: #ffffff;
  margin: 3% auto;
  padding: 2% 0 2%;
  color: #4a4a4a;
  font-size: 18px;
  line-height: 1.8em;
}
.coupon__information .coupon_code span.btn-clipboard {
  font-size: 45px;
  letter-spacing: 0.15em;
}
.coupon__information .coupon_terms {
  margin: 0 auto 4%;
  width: 90%;
}
.coupon__information .coupon_terms p {
  font-size: 23px;
  font-weight: bold;;
}
.coupon__information .coupon_terms ul {
  font-size: 13px;
  font-weight: 300;
}
.coupon__information .coupon_terms ul li {
  margin:0 auto 0.5%;
  font-size: 15px;
  letter-spacing: 0.08em;
}
.coupon__information img{
  margin: 0 auto;
}
@media (max-width: 768px) {
  .p-main .coupon__information {
    padding: 7% 0 3%;
    width: 95%;
  }
  .coupon__information .coupon_code {
    font-size: 12px;
  }
  .coupon__information .coupon_code span.btn-clipboard {
    font-size: 25px;
  }
  .coupon__information .coupon_terms p {
    font-size: 14px;
  }
  .coupon__information .coupon_terms ul li {
    font-size: 12px;
  }
  .coupon__information img{
    width: 80%;
  }
}
/* クリップボードにコピー */
.btn-clipboard {
  display: inline-block;
}
.btn-clipboard:hover {
  cursor:pointer;
  color: #c7b357;
}
.clipboard-success {
  display: none;
  margin: 0 0 0 8px;
  font-size: .9em;
}

.p-main h5 {
  text-align: center;
  margin: 1% auto 8%;
  max-width: 1040px;
}
@media (max-width: 768px) {
 .p-main h5 {
  margin: 1% auto 6%;;
} 
}
/* couponここまで */



.link-banner-all{
  display: block;
  margin: 2% auto 0;
}
.link-banner-all a:hover{
  opacity:0.6;
}
a.lb-btn-all{
  display: block;
  text-align: center;
  /* font-weight: bold; */
  font-size: 18px;
  letter-spacing: 3px;
  padding: 15px 0;
  color: #fff;
  width: 60%;
  margin: 0 auto;
  background-color: #444444;
}
a.lb-btn-all:hover,a.lb-btn-all:visited,a.lb-btn-all:link{
  text-decoration: none;
}

@media(max-width: 640px){
  .link_to_all_2{
    margin: 5% auto 0;
  }

  .link-banner-all{
    display: block;
    margin: 0 auto;
  }

  a.lb-btn-all{
    font-size: 14px;
    letter-spacing: 0px;
    padding: 20px 0;
    width: 100%;
  }
  a.lb-btn-all{
  display: block;
  text-align: center;
  /* font-weight: bold; */
  font-size: 15px;
  letter-spacing: 1px;
  padding: 15px 0;
  color: #fff;
  width: 95%;
  margin: 0 auto;
  background-color: #444444;
}
  }