/* 共通表示切替 */
.spOnly {
  display: block !important;
}
.pcOnly {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none !important;
  }
  .pcOnly {
    display: block !important;
  }
}

/* KV */
.kvimg {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  overflow: hidden;
  /* object-fit: cover; */
}
.kvimg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 480px) {
  .kvimg img {
    height: 260px;
    object-fit: cover;
    object-position: center;
  }
}

/* コンテンツ全体 */
.contentarea {
  max-width: 1104px;
  margin: 0 auto;
  padding: 0 40px;
}

@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(3, 1fr);
    width: 100%;
    gap: 9px;
    padding: 20px 0;
  }
  .caption {
    font-size: 14px;
  }
  .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: 9px;
  }
  .image-container a::after {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #fff;
  }
}


/* コンテンツ枠 */
.cparea {
  padding: 40px 60px;
  border-radius: 20px;
  background-color: #fff;
  margin-bottom: 40px;
}
.cparea {
  position: relative;
}
#linepresent {
  background-color:#FFF;
}
#summercp .text p,
#freegacha .text p,
#linepresent .text p {
  text-align: center;
}
.caution {
  font-size: 80%;
}
.action-list {
  margin: 30px auto 40px;
  max-width: 750px;
  justify-content: center;
}
.action-item {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 20px;
}
.action-item a img {
  max-width: 300px;
  height: auto;
  margin-right: 10px;
}
.action-text {
  font-weight: bold;
  font-size: 19px;
  color: #333;
  margin-right: 20px;
}
.info-box {
  border: 2px solid #7bc6e8;
  border-radius: 10px;
  max-width: 720px;
  margin: 0px auto 40px;
  padding: 8px;
  background-color: #FFF;
}
.info-box dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  gap: 15px 0;
}
.info-box dt {
  width: 12%;
  color: #4dc2f1;
  font-weight: bold;
  font-size: 19px;
  text-align: center;
  /* border-right: 2px solid #333; */
  padding-right: 5px;
  margin: 0;
  letter-spacing: 2px;
}
.info-box dt::before,
.info-box dt::after {
  content: none;
}
.info-box dd {
  width: 88%;
  padding-left: 20px;
  margin: 0;
  font-weight: normal;
  font-size: 19px;
  color: #595757;
  box-sizing: border-box;
  border-left: 2px solid #333;
}
.apply-btn-area {
  text-align: center;
  margin-top: 40px;
}
/* #linepresent .info-box {
  max-width: 600px;
} */
#linepresent .info-box dt {
  width: 18%;
  line-height: 1.6;
}
#linepresent .info-box dd {
  width: 82%;
  line-height: 1.6;
}
#repost {
  border-radius: 0 0 20px 20px;
  border-top: none;
}
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;
}
#comingsoon h2::before {
  content:none;
}
.cparea .text {
  margin: 0 auto;
  width: 100%;
  padding: 30px 0;
  font-size: 22px;
  line-height: 1.7;
  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;
    margin-bottom: 20px;
  }
  .cparea .text {
    padding: 20px 0 15px;
    font-size: 20px;
  }
  .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;
 }
  #linepresent {
    background: none;
    background-color:#FFF;
  }
  .action-item {
    flex-direction: column;
    gap: 15px;
  }
  .action-item a img {
  max-width: 350px;
  height: auto;
  margin-right: 0px;
  }
  .action-text {
    text-align: center;
    font-size: 18px;
    margin-right: 0px;
  }
  .info-box dt {
  font-size: 17px;
  }
  .info-box dd {
  font-size: 17px;
  }
}

@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;
 }
 .info-box {
  margin: 0px auto 20px;
  }
 .info-box dt {
  width: 15%;
  font-size: 12px;
  }
  .info-box dd {
  width: 85%;
  font-size: 12px;
  padding-left: 10px;
  }
  #linepresent .info-box dt {
  width: 25%;
  }
  #linepresent .info-box dd {
  width: 75%;
  }
  .action-list {
  margin: 30px auto 20px;
  }
  .action-item {
  gap: 10px;
  }
  .action-item a img {
  max-width: 250px;
  height: auto;
  }
  .action-text {
  font-size: 12px;
  }
}

/* スライダー調整 */
.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) {
  .productslider {
  padding-top: 20px;
  }
  .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: -40px 0 -40px;
  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) {
  .down-arrow {
  margin: -40px 0 -50px;
  }
  .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: -30px 0 -40px;
    font-size: 40px;
  }
  .lineqr {
    margin: 20px auto 0;
    border: 2px solid #e37751;
  }
  .postageTxt {
    margin: 0 auto;
    padding:15px 20px;
  }
}

/* 夏の大感謝クーポン */
.couponinfo {
  position: relative;
  margin: 0 auto;
  width: 79.3%;
  border: 4px solid #ef9a23;
  padding: 70px 46.5px 40px;
  background-color: #fff;
  font-size: 17px;
}
.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:28px;
  line-height: 1.5;
}
.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;
}
.campaignBtn {
	margin-bottom: 0;
	padding-top: unset;
	vertical-align: middle;
}
.campaignBtn a {
	display: inline-flex;
	color:#4c4948;
	font-weight:bold;
	font-size: 17px;
}
.campaignBtn  .fa-dot-circle-o {
	margin-right:-2px;
  padding-right: 15px;
	color:#f7b32c;
	font-size:1.5em;
}
.campaignBtn a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .couponinfo {
    width: 100%;
    padding: 40px 30px;
    font-size: 16px;
  }
  .couponinfo_text p {
    font-size: 19px;
  }
  .couponinfo_text dl dd {
  margin-bottom:18px;
  }
  .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: 30px 0 45px;
  }
  strong {
    font-size: 21px;
  }
  .campaignBtn a {
	font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .couponinfo {
    width: 100%;
    padding: 32.5px 20px;
    font-size: 12px;
  }
  .cparea .text.coupon {
    padding: 20px 0 25px;
  }
  .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;
  }
  .campaignBtn a {
	font-size: 13px;
  }
}

/* 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;
  }
}

/* 背景 */
.navy-bg-area {
  position: relative;
  background-color: #1a365d;
  width: 100%;
  padding-top: 105px;
  padding-bottom: 15px;
}

.navy-bg-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-image: url('../img/back.svg');
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
}

@media screen and (max-width: 768px) {
  .navy-bg-area {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  
  .navy-bg-area::before {
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .navy-bg-area {
    padding-top: 60px;
    padding-bottom: 10px;
  }
}

footer.lppage,
footer.lppage * {
  -webkit-text-size-adjust: 100% !important;
  text-size-adjust: 100% !important;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
}

@media screen and (max-width: 480px) {
  footer.lppage ul li a,
  footer.lppage .copyright p {
    font-size: 9px; /* ← 実機で読みやすいサイズに調整してください */
  }
}