/* 共通表示切替 */
.spOnly {
  display: block;
}
.pcOnly {
  display: none;
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
  .pcOnly {
    display: block;
  }
}

/* KV */
.kvimg {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
  object-fit: cover;
}
.kvimg img {
  display: block;
  height: auto;
  object-fit: cover;
}

/* コンテンツ全体 */
.contentarea {
  max-width: 1104px;
  margin: 0 auto 20px;
  padding: 0 40px 20px;
}



@media screen and (max-width: 768px) {
  .contentarea {
    padding: 0 20px;
  }
}

@media screen and (max-width: 480px) {
  .contentarea {
    padding: 0 10px;
  }
}

/* ボタンエリア */
.image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 40px 0;
  width: 87.9%;
}
.image-container a {
  position: relative;
  display: block;
  text-align: center;
}
.image-container a.disabled {
  pointer-events: none;
  cursor: default;
}
.img-button {
  width: 100%;
  height: auto;
  display: block;
}
.caption {
  position: absolute;
  top: -3px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-align: center;
  pointer-events: none;
  font-size: 18px;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-break: break-word;
  flex-direction: column;
}
.caption span {
  font-size:0.7em;
}
.image-container a::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 8px solid #fff;
}

.image-container a.disabled::after {
  display: none;
}

@media only screen and (max-width: 900px) {
  .caption {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .image-container {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 9px;
    padding: 20px 0;
  }
  .caption {
    font-size: clamp(14px, 2.86vw, 22px);
  }
  .image-container a::after {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #fff;
  }
}

@media only screen and (max-width: 480px) {
  .caption {
    font-size: 11px;
  }
  .image-container a::after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #fff;
  }
}

/* 案件一覧 */
.planListArea {
  width: 100%;
  padding: 20px 15px 40px;
}
.planListArea h2 {
  line-height:0;
  text-align: center;
  margin-bottom: 30px;
}
.planListArea h2 img {
  height:25px;
  margin: 0 auto;
}
@media only screen and (max-width: 480px) {
  .planListArea {
    padding: 15px 20px;
  }
  .planListArea h2 {
    margin-bottom: 20px;
    line-height: 0;
  }
  .planListArea h2 img {
    height: 17px;
  }
}
.planList {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.planList ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: space-between; /*均等に間隔をあける*/
  align-content: stretch;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .planList ul {
    padding: 0;
  }
}

.planList ul li {
  align-items: center;
  position: relative;
  width: 32%;
  margin-bottom: 25px;
  border: 0;
  box-sizing: border-box;
}

.planList ul li a {
  background: none;
  display: block;
  border: 0;
  box-sizing: border-box;
  position: relative;
  padding: 1px;
  }
.planList .planImage {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
}
.planList ul li a.disabledBtn {
  pointer-events:none;
  cursor:default;
}

/* 画面外にいる状態 */
.planList ul li.fadein {
  opacity : 0;
  transform : translate(0, 50px);
  transition : all 400ms ease-out;
}
/* 画面内に入った状態 */
.planList ul li.fadein.scrollin {
  opacity : 1;
  transform : translate(0, 0);
}
/* 2つ目の要素に200msのdelayをかける */
.planList ul li.fadein:nth-of-type(3n+2) {
  -moz-transition-delay:200ms;
  -webkit-transition-delay:200ms;
  -o-transition-delay:200ms;
  -ms-transition-delay:200ms;
}
/* 3つ目の要素に400msのdelayをかける */
.planList ul li.fadein:nth-of-type(3n) {
  -moz-transition-delay:400ms;
  -webkit-transition-delay:400ms;
  -o-transition-delay:400ms;
  -ms-transition-delay:400ms;
}

.planList .archive_btn {
  display: flex;
  justify-content: space-around;
}
.planList .archive_btn a {
  display: block;
  width: 33%;
}

@media only screen and (max-width: 768px) {
  .planList ul li.fadein:nth-of-type(2n+1) {
    -moz-transition-delay:200ms;
    -webkit-transition-delay:200ms;
    -o-transition-delay:200ms;
    -ms-transition-delay:200ms;
  }
  .planList ul li.fadein:nth-of-type(2n) {
    -moz-transition-delay:400ms;
    -webkit-transition-delay:400ms;
    -o-transition-delay:400ms;
    -ms-transition-delay:400ms;
  }
  .planList .archive_btn a {
    display: block;
    width: 70%;
  }
}


.planList ul li:nth-child(3n+2):last-child {
  margin-right: 33.3%;
}
.planList ul li:nth-child(3n+1):last-child {
  margin-right: 67%;
}
@media only screen and (max-width: 768px) {
  .planList ul li:nth-child(3n+2):last-child {
    margin-right: 0;
  }

}

.planList ul li .planDetail {
  position: relative;
  box-sizing: border-box;
  padding: 0;
}
/* 案件ステータス */
.planStatus {
  padding: 6px 7px 5px 10px;
  font-size: 12px;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
  line-height: 16px;
  letter-spacing: 3px;
}
.nowonsale {
  background:url(/common/img/label_nowonsale_bg.png) left top repeat-x;
  background-size:auto 100%;
}
.comingsoon {
  background:url(/common/img/label_pickup_bg.png) left top repeat-x;
  background-size:auto 100%;
}
.pickup {
  background:url(/common/img/label_comingsoon_bg.png) left top repeat-x;
  background-size:auto 100%;
}
.closed {
  background:url(/common/img/label_closed_bg.png) left top repeat-x;
  background-size:auto 100%;
}
.otherNews {
  background-color: #64c055;
  box-shadow: 0 0 0 2px #64c055;
  border-top: dashed 1px #fff;
  border-bottom: dashed 1px #fff;
}
/* 案件名 */
.planTitle {

line-height: 1.4;

color: #4c4948;

font-weight: bold;
}
.planTitle span {
  font-size: 15px;
  font-weight: bold;
}
/* 案件日程 */
.planSchedule {
  font-weight:bold;
  text-align: left;
  color: #e97795;
  box-sizing: border-box;
}
.planSchedule span {

}
.planSchedule i {
  font-size: 1.2em;
  position: relative;
  top: 3px;
  padding-right: 3px;
  color:  #333;
}

@media only screen and (max-width: 768px) {
  .planList ul li {
    width: 49%;
    max-width: 360px;
    }
  .planList ul li .planDetail {
    padding: 0;
  }
  .planList ul li:nth-child(2n+1):last-child {
    margin-right: 50%;
  }
  .planList ul li:nth-child(2n):last-child {
    margin-right: 0;
  }
  .planStatus {
    font-size: 14px;
  }

  .planTitle {
    line-height: 26px;
    font-size: 20px;
  }

  .planSchedule {
    font-size: 16px;
  }
}

@media only screen and (max-width: 580px) {
  .planList ul li .planDetail {
    padding: 0;
  }

  .planStatus {
    font-size: 11px;
  }

  .planTitle {
    line-height: 24px;
    font-size: 18px;
  }

  .planSchedule {
    font-size: 15px;
  }
}
@media only screen and (max-width: 440px) {
  .planSchedule i {
    font-size: 0.9em;
    position: relative;
    top: 2px;
    padding-right: 2px;
    color:  #333;
  }
  .prizeList ul li:nth-child(2n+1):last-child {
  margin-right: 53%;
  }
  .planList ul li {
      width: 48%;
      margin-bottom: 13px;
  }
  .planList ul li .planDetail {
    padding: 0;
  }

  .planStatus {

  }
  .comingSoon span {
    font-size: 10px;
  }
  .planTitle {
    line-height: 1.3;
    padding: 0;
    font-size: 11px;
  }

  .planSchedule {
    font-size: 11px;
  }
}
@media only screen and (max-width: 340px) {
  .planList ul li .planDetail {
    height: 128px;
  }
}
.morePlanBtn a {
  width: 425px;
  margin: 27px auto 0;
  padding: 0;
  line-height: 50px;
  text-align: center;
  background: none;
  display: block;
  box-sizing: border-box;
  box-shadow: inset 0px 0px 0px 1px #d2d2d2;
  position: relative;
}
.morePlanBtn .fa-caret-right {
  position: absolute;
  top: 14px;
  right: 12px;
  font-size: 26px;
  transition-duration:0.25s;
}
.morePlanBtn a {
  display: block;
  color: #333;
  font-size: 15px;
  letter-spacing: 0.3rem;
}
.morePlanBtn a:hover {

}
.morePlanBtn a:hover .fa-caret-right {
  position: absolute;
  top: 14px;
  right: 6px;
  font-size: 26px;
}

.morePlanBtn a::before, .morePlanBtn a::after {
  box-sizing: inherit;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
}
.morePlanBtn a.center::before, .morePlanBtn a.center::after {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-origin: center;
  transform-origin: center;
  transition: transform 250ms;
  transition: transform 250ms, -webkit-transform 250ms;
}
.morePlanBtn a.center::before {
  border-top: 1px solid #f7af10;
  border-bottom: 1px solid #f7af10;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
}
.morePlanBtn a.center::after {
  border-left: 1px solid #f7af10;
  border-right: 1px solid #f7af10;
  -webkit-transform: scale3d(1, 0, 1);
      transform: scale3d(1, 0, 1);
}
.morePlanBtn a.center:hover::before, .morePlanBtn a.center:hover::after {
  -webkit-transform: scale3d(1, 1, 1);
      transform: scale3d(1, 1, 1);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media only screen and (max-width: 768px) {
  .morePlanBtn {
    width: 94%;
    margin: 0 auto 46px;
    padding: 0;
    line-height: 56px;
  }
  .morePlanBtn .fa-caret-right {
    top: 16px;
    right: 18px;
    font-size: 24px;
  }
  .morePlanBtn a {
    font-size: 18px;
  }
  .morePlanBtn a {
    width: 100%;
  }
}
@media only screen and (max-width: 440px) {
  .morePlanBtn {
    width: 95%;
     margin-bottom: 15px;
    line-height: 48px;
  }
  .morePlanBtn .fa-caret-right {
    top: 13px;
    right: 13px;
  }
  .morePlanBtn a {
    font-size: 14px;
    margin: 0 auto;
  }
}


/* コンテンツ枠 */
.cparea {
  padding: 40px 60px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 15px;
}
.cparea {
  position: relative;
}
#playback {
  border: 3px solid #eb6d5e;
}
#freegacha {
  border: 3px solid #9c9a9a;
}
#linecoupon {
  border: 3px solid #07b53b;
  background: url(../img/line_kami.png) no-repeat left -1% bottom 0 / 23%,
    url(../img/line_koma.png) no-repeat right -20px bottom 0 / 30%;
  background-color:#FFF;
}
#fiveyearcp {
  border: 3px solid #9c9a9a;
}
#shipping {
  border: 3px solid #22a9a7;
}
#ambassador {
  border: 3px solid #9c9a9a;
  margin-bottom: 0;
  border-radius: 20px 20px 0 0;
  border-bottom: 2px solid #9c9a9a;
}
#repost {
  border: 3px solid #9c9a9a;
  border-radius: 0 0 20px 20px;
  border-top: none;
}
#comingsoon {
  border: 3px solid #9c9a9a;
}


h2 {
  position:relative;;
}
h2:before {
   content: none;
   display: inline-block;
   position: absolute;
   top: -18%;
   left: -3%;
   background: url(../img/5thaniv_logo.svg) center top / 100% auto no-repeat;
   width: 8.5%;
   height: 80px;
}
#freegacha h2 {
  margin-bottom:30px;
}
#comingsoon h2::before {
  content:none;
}
.cparea .text {
  margin: 0 auto;
  width: 100%;
  padding: 30px 0;
  font-size: 23px;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
.text p {
  display: inline-block;
  max-width: 100%;
  width: auto;
  word-break: break-word;
  text-align: left;
}

.cparea img.lineup_img.pcOnly {
  width: 72.7%;
  margin: 0 auto;
}
.nextbtn {
  width: 47%;
  margin: 0 auto;
}

.planListArea {
  padding: 0;
}

.planList.single ul li:last-child {
  margin: 0 auto 0 auto;
}

.planList ul {
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .cparea {
    padding: 40px 37px;
  }
  .cparea .text {
    padding: 20px 0;
    font-size: 23px;
  }
  .nextbtn {
    width: 89%;
  }
  h2:before {
   top: -18%;
   left: -3%;
   background: url(../img/5thaniv_logo.svg) center top / 100% auto no-repeat;
   width: 10.5%;
   height: 80px;
 }
  #linecoupon {
    border: 3px solid #07b53b;
    background: none;
    background-color:#FFF;
  }
}

@media only screen and (max-width: 600px) {
  .cparea .text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .cparea {
    padding: 20px 17px;
  }
  .cparea .text {
    font-size: clamp(12.5px, 2.92vw, 14px);
  }
  h2:before {
   top: -24%;
   left: -4%;
   background: url(../img/5thaniv_logo.svg) center top / 100% auto no-repeat;
   width: 12.5%;
   height: 80px;
 }
}

/* スライダー調整 */
.productslider {
  padding-top: 40px;
  width: 72.7%;
  margin: 0 auto;
  position: relative;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("../img/arrow_prev.png");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("../img/arrow_next.png");
}
.swiper-button-next .swiper-slide {
  width: calc(100% / 3);
  flex-shrink: 0;
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media only screen and (max-width: 480px) {
  .swiper-container {
    padding: 0 0 20px;
  }

  .swiper-slide {
    width: calc(100% / 2);
  }
  .swiper-slide img {
    height: auto;
  }
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 20;
}

.swiper-button-prev {
  left: -80px;
}

.swiper-button-next {
  right: -80px;
}

@media only screen and (max-width: 480px) {
  .swiper-button-prev {
    left: -42px;
  }
  .swiper-button-next {
    right: -39px;
  }
  .swiper-button-prev,
  .swiper-button-next {
    position: absolute;
    top: 60%;
  }
}

/* LINE友達追加 */
.down-arrow {
  display: flex;
  justify-content: center;
  margin: -50px 0 -10px;
  font-family: "FontAwesome";
  font-size: 70px;
  color: #595757;
}

.down-arrow::after {
  content: "\f0d7";
}

.lineqr {
  margin: 40px auto 0;
  width: 61%;
  border: 4px solid #e37751;
  border-radius: 20px;
  overflow: hidden;
  padding: 19px 30px 19px 40px;
  display: flex;
  align-items: center;
  gap: 35px;
  background-color: #FFF;
}
.lineqr img {
  max-width: 110px;
  height: auto;
  flex-shrink: 0;
}
.lineqr p {
  margin: 0;
  line-height: 1.4;
  font-size: 19px;
}

.postageTxt {
  margin: 0 auto;
}
.examplePostage dl {
  
}
.examplePostage dl dt {
  font-weight: bold;
  font-feature-settings: "palt";
  font-size: 1.1em;
  margin-bottom: 3px;
}
.examplePostage dl dt::before {
  content:"【";
}
.examplePostage dl dt::after {
  content:"】";
}

.examplePostage dl dd {
  margin-bottom: 15px;
  margin-left: 0;
  text-indent: 0;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .lineqr {
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .lineqr img {
    margin-bottom: 0;
  }
  .lineqr p {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .down-arrow {
    margin: -32px 0 -10px;
    font-size: 40px;
  }
  .lineqr {
    margin: 20px auto 0;
    border: 2px solid #e37751;
  }
  .postageTxt {
    margin: 0 auto;
    padding:15px 20px;
  }
}

/* 案件一覧調整 */
.pAreaInner {
  padding: 40px 80px 0;
}
@media screen and (max-width: 768px) {
  .pAreaInner {
    padding: 25px 0 0;
  }
}

/* 5周年記念クーポン */
.coupon_koma {
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 25%;
  z-index: 1;
}
.couponinfo {
  position: relative;
  margin: 0 auto;
  width: 79.3%;
  border: 4px solid #ef9a23;
  padding: 70px 46.5px 40px;
  background-color: #fff;
  font-size: 14px;
}
.couponinfo img {
  position: absolute;
  top: 0;
  width: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.couponinfo_text dl dt {
  font-weight:bold;
  font-feature-settings:"palt";
  font-size:1.1em;
}
.couponinfo_text dl dt::before {
  content:"【";
}
.couponinfo_text dl dt::after {
  content:"】";
}
.couponinfo_text dl dd {
  margin-bottom:10px;
}
.couponinfo_text dl dd:last-child {
  margin-bottom:0;
  padding-right: 50px;
}
.couponinfo_text p {
  font-size: 17px;
  margin-bottom: 15px;
}
strong {
  font-weight: bold;
  font-size: 19px;
}

.cparea .text.coupon {
  padding: 30px 0 50px;
}

.specialsetsumei {
  padding-left: 0px;
}

@media screen and (max-width: 768px) {
  .couponinfo {
    width: 100%;
    padding: 32.5px 20px;
    font-size: 12px;
  }
  .couponinfo_text p {
    font-size: 19px;
  }
  .couponinfo_text dl dd:nth-of-type(6) {
    padding-right:60px;
  }
  .couponinfo_text dl dd:nth-of-type(8) {
    padding-right:100px;
  }
  .cparea .text.coupon {
    padding: 20px 0 30px;
  }
  strong {
    font-size: 21px;
  }
  .coupon_koma {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 25%;
    z-index: 1;
  }
}

@media screen and (max-width: 480px) {
  .couponinfo_text p {
    font-size: 11px;
    margin-bottom: 11px;
  }
  .couponinfo_text dl dd:last-child {
    margin-bottom:0;
    padding-right: 50px;
  }
  strong {
    font-size: 13px;
  }
  .coupon_koma {
    position: absolute;
    right: -10px;
    bottom: 0;
    width: 31%;
    z-index: 1;
  }
}

/* 送料キャンペーン */
.shipping_kami {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 20%;
  z-index: 1;
}
.notice {
  padding: 40px 0 0;
  font-size: 14px;
}
.shippingcp_banner2,
.notice {
  display: block;
  width: 70%;
  margin: 0 auto;
}
.notice dl {
  
}
.notice dl dt {
  font-weight: bold;
  font-feature-settings: "palt";
  font-size: 1.1em;
  margin-bottom: 3px;
}
.notice dl dt::before {
  content:"【";
}
.notice dl dt::after {
  content:"】";
}
.notice dl dd {
   margin-bottom:15px; 
}
.notice ul {
  padding-left:1em;
}
.notice ul li {
  text-indent:-1em;
}
.notice ul li.txtR {
  color:#FF0000;
}
@media screen and (max-width: 768px) {
  .shippingcp_banner2,
  .notice {
    width: 100%;
    font-size: 14px;
  }
  .shipping_kami {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20%;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .notice {
    font-size: 1em;
  }
  #shipping .notice {
    
padding-left: 100px;
  }
  .shipping_kami {
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20%;
    z-index: 1;
  }
}

@media screen and (max-width: 480px) {
  #shipping .notice {
    padding-left: 0px;
    padding-top: 20px;
    font-size: 12px;
  }
  #shipping .notice ul li {
    padding-left: 70px;
  }
  #shipping .notice ul li:nth-child(1) {
    padding-left: 0;
  }
  #shipping .notice ul li:nth-child(2) {
    padding-left: 30px;
  }
  #shipping .notice ul li:nth-child(3) {
    padding-left: 60px;
  }
  .shipping_kami {
    position: absolute;
    left: -10px;
    bottom: 0;
    width: 22%;
    z-index: 1;
  }
}


/* 特別アンバサダー */
.special_kami {
  position: absolute;
  left: -30px;
  bottom: 0;
  width: 27%;
  z-index: 1;
}
.special_koma {
  position: absolute;
  right: -35px;
  bottom: 0;
  width: 28%;
  z-index: 1;
}

#special h3 {
  margin: 0 auto 25px;
  width: 60%;
  
}

.specialsetsumei {
  padding-left:20px;
  width: 68%;
}

.specialsetsumei h4 {
  font-weight:700;
  color:#FFF;
  font-size:1.2em;
  line-height:1;
  margin-bottom:12px;
  position:relative;
  background:#587fc0;
  padding:.5em .3em;
}

.specialsetsumei h4:after {
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:0;
  height:0;
  border-style:solid;
  border-color:transparent #fff transparent transparent;
  border-width: 17px 17px 17px 0px;
}

.specialsetsumei dl dt {
  font-weight:700;
  font-size:1.3em;
  line-height:1.4;
  border-bottom:none;
  margin-bottom:10px;
}
.specialsetsumei dl dd {
  line-height:1.6;
  margin-bottom: 10px;
}
.specialsetsumei dl dd a {
  line-height:1.6;
  vertical-align:middle;
}
.specialsetsumei dl dd.sozai {
  line-height:1.6;
  margin-bottom: 15px;
  font-size:0.9em;
}
.specialsetsumei dl dd.shareBtn {
  text-align:left;
  margin: 0 0 5px;
  line-height: 0.9;
}
.specialsetsumei dl dd.shareBtn a {
  display: inline-flex;
  color:#4c4948;
  font-weight:bold;
  font-size: 18px;
  text-decoration:none;
  align-items: center;
}
.specialsetsumei dl dd.shareBtn .tw-icon {
  margin-right:2px;
  color:#000;
  font-size:1.5em;
}
.specialsetsumei dl dd.campaignBtn {
  margin-bottom: 0;
  padding-top: unset;
  vertical-align: middle;
}
.specialsetsumei dl dd.campaignBtn a {
  display: inline-flex;
  color:#4c4948;
  font-weight:bold;
  font-size: 18px;
}
.specialsetsumei dl dd.campaignBtn  .fa-dot-circle-o {
  margin-right:2px;
  color:#f7b32c;
  font-size:1.5em;
}

.specialsetsumei dl dd.campaignBtn a:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 990px) {
  #special {
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 768px) {
  #special {
  }
  .special_inner {
    padding: 0px 0 25px;
    box-sizing:border-box;
    position: relative;
    max-width: 750px;
    width: 100%;
    margin: 0 auto 25px;
  }
  .specialsetsumei dl dd.campaignBtn a:hover {
  opacity: 1.0;
  }
  #itemDetail10 {
    padding: 25px;
  }
}
  @media only screen and (max-width: 480px) {
  #special {
    
padding: 0;
    
width: 100%;
  }
  .special_inner {
    padding: 0px 0 25px;
    box-sizing:border-box;
    position: relative;
    max-width: 750px;
    width: 80%;
    margin: 0 auto 25px;
  }
  #special:last-child .special_inner {
    padding: 0px;
  }
  #special h3 {
    max-width: 750px;
    width: 100%;
    margin: 0 auto 25px;
  }
  #special h3 img {
    /* height: 41px; */
  }
  #special.lucky h3 img {
    /* height: 59px; */
  }
  .ribbon {
    font-size: 1.2em;
    margin: 0 -37px 15px;
    padding: 5px 5px 5px 77px;
  }
  .campaigntext {
    display:block;
  }
  .specialimage {
  width: 100%;
  margin-bottom:7px;
  }

  .specialsetsumei {
    padding:0;
    width: 100%;
  }
.specialsetsumei dl dd.shareBtn a,.specialsetsumei dl dd.campaignBtn a  {
  font-size: 14px;
}

  .specialsetsumei h4 {
    margin:0 -20px 5px;
    padding: 0.5em 0.3em;
    text-align:center;
  }
  
  .specialsetsumei h4:before {
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:0;
    border-style:solid;
    border-color:transparent transparent transparent #fff;
    border-width: 17px 0 16px 15px;
  }
  
  .specialsetsumei h4:after {
    border-width: 17px 15px 16px 0;
  }
  
  .specialsetsumei dl dt {
    font-size: 1.2em;
  }
}


/* YouTube埋め込み */
.youtube-container {
  position: relative;
  width: 70%;
  padding-bottom: 39.4%;
  height: 0;
  margin: 0 auto;
}
.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .youtube-container {
    width: 100%;
    padding-bottom: 56.25%;
  }
  .special_kami {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 27%;
    z-index: 1;
  }
  .special_koma {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 28%;
    z-index: 1;
  }
}
@media screen and (max-width: 480px) {
  .special_kami {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 32%;
    z-index: 1;
  }
  .special_koma {
    position: absolute;
    right: -20px;
    bottom: 0;
    width: 34%;
    z-index: 1;
  }
}

/* COMING SOON */
#comingsoon {
  position: relative;
  background-image: url("../img/comingsoon_pc.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
}

#comingsoon .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 20px;
}

#comingsoon .text p:first-child {
  font-size: 60px;
  margin: 0;
}

#comingsoon .text p:last-child {
  font-size: 20px;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #comingsoon {
    padding: 20px;
    background-image: url("../img/comingsoon_sp.png");
  }

  #comingsoon .text p:first-child {
    font-size: 40px;
  }

  #comingsoon .text p:last-child {
    font-size: 14px;
    margin-top: 0px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 480px) {
  #comingsoon .text p:first-child {
    font-size: 33px;
  }

  #comingsoon .text p:last-child {
    font-size: 11px;
    margin-top: 0px;
    line-height: 1.8;
  }
}
