* {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/*snsBtn
-----------------------------------------------------*/
#sns_button {
  width: 90%;
  max-width: 636px;
  height: 25px;
  margin: 20px auto 10px;
  overflow: hidden;
  _zoom: 1;
}
#sns_button li {
  margin-right: 10px;
  float: right;
}

/*--- clearfix ---*/
.cf:after,
#wrap ul.tab:after {
  content: "";
  display: block;
  clear: both;
}

#wrap *,
#wrap *:before,
#wrap *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

#wrap {
  width: 100%;
  overflow: hidden;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Helvetica Neue", Helvetica, Arial, Verdana, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: #343638;
  background-color: #fff;
}


#wrap a {
  text-decoration: none;
  display: block;
}

#wrap img {
  width: 100%;
  height: auto;
}

.mincho {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

h1 {
  font-size: 0.1cqw;
  margin: 0;
  color: #fff;
  font-weight: 400;
  text-align: left;
}

.kv img {
  width: 100%;
}

.orange {
  color: #ea9a91;
}

.blue {
  color: #2e81c5;
}


/* .lead_area */
.lead_area {
  width: 92%;
  margin: 5% auto 7%;
}

.lead_tx1 {
  font-size: 4.2cqw;
  font-weight: bold;
  text-align: center;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  padding-bottom: 2%;
}

.lead_tx2 {
  font-size: 3.6cqw;
  font-weight: 600;
  text-align: center;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  padding-top: 1.5%;
}

.lead_link {
  font-size: 3.6cqw;
  font-weight: 600;
  text-align: center;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  text-decoration: underline;
  margin-top: 4%;
  color: #919191;
}


/* survey */
#survey {
  width: 95%;
  margin: 0 auto;
  background-color: #def2fa;
  border-radius: 15px;
  padding: 2.2% 2.5% 3.5%;
}

.survey_h2_wrap {
  width: 60%;
  margin: 0 auto 6.5%;
}

.survey_h2 {
  position: relative;
  font-size: 7cqw;
  line-height: 1.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: -1.5cqw;
}

.survey_h2::before {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/kira.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11cqw;
  height: 7cqw;
  left: -5.6cqw;
}

.survey_h2::after {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/kira.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 11cqw;
  height: 7cqw;
  right: -10.2cqw;
}

.survey_h3 {
  font-size: 3.6cqw;
  font-weight: bold;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  padding-bottom: 1.8%;
}

.survey_box {
  margin-top: 6%;
}

.survey_ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.survey_ul li {
  width: 49%;
}


/* アコーディオン */
.accordion {
  width: 90%;
  margin: 6% auto 5%;
  max-width: 90vw;
  }
.toggle {
  display: none;
}
/* .option {
  position: relative;
  margin-bottom: 1em;
} */

.title {
  position: relative;
}

.title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}
.title {
  padding: 2.5% 0 2.6%;
  display: block;
  font-weight: bold;
  background-color: #2e81c5;
  border-radius: 5px;
}
.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 1.8em;
  top: 2.8em;
  width: 5px;
  height: 1.75em;
  background-color: #fff;
  transition: all 0.3s;
}
.title::after {
  transform: rotate(90deg);
}
.content {
  max-height: 0;
  overflow: hidden;
}
.content p {
  font-size: 3.3cqw;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  padding-right: 8%;
}
.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}
.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

.accordion_psub_wrap {
  width: 60%;
  margin: 0 auto;
}

.accordion_psub {
  position: relative;
  font-size: 3.5cqw;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
  padding-bottom: 1%;
}

.accordion_psub::before {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/slash_wh_lt.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5cqw;
  height: 5cqw;
  left: 2.6cqw;
}

.accordion_psub::after {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/slash_wh_rt.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5cqw;
  height: 5cqw;
  right: 0.5cqw;
}

.accordion_p {
  font-size: 4.8cqw;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}

.accordion_ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 3.5%;
}

.accordion_ul li {
  text-align: center;
  position: relative;
  margin: 0 0 2%;
  width: 48%;
  display: flex;
}

.accordion_ul li a {
  text-decoration: none;
  display: inline-block;
  border: #2e81c5 solid 2px;
  color: #2e81c5;
  font-size: 4cqw;
  font-weight: bold;
  border-radius: 8px;
  width: 100%;
}

.accordion_ul li:not(:nth-child(4)) a {
  padding: 9% 2%;
}

.accordion_ul li:nth-of-type(4) a {
  padding: 14% 2%;
}

.accordion_ul li:not(:nth-child(2n)) {
  margin-right: 2%;
}

.sankaku_bl1 {
  position: absolute;
  width: 3.8cqw;
  right: 2cqw;
  top: 4.8cqw;
  bottom: 0;
  margin: auto;
}

.sankaku_bl2 {
  position: absolute;
  width: 3.8cqw;
  right: 2cqw;
  top: 6.5cqw;
  bottom: 0;
  margin: auto;
}

.sankaku_bl1 img,.sankaku_bl2 img {
  width: 3.8cqw;
}


/* .favorite_cp_btn */
.favorite_cp_btn {
  text-align: center;
  position: relative;
  margin: 0 0 8.5%;
}

.favorite_cp_btn a {
  text-decoration: none;
  display: inline-block;
  padding: 3.4% 3% 3.5% 3%;
  background-color: #eb9b92;
  color: #fff;
  font-size: 4.3cqw;
  font-weight: bold;
  border-radius: 5px;
  width: 90%;
  margin: 0 auto;
}

.sankaku_pk {
  position: absolute;
  width: 5.1cqw;
  right: 7cqw;
  top: 8cqw;
  bottom: 0;
  margin: auto;
}

.sankaku_pk img {
  width: 5.1cqw;
}

.favorite_cp_btn_psub_wrap {
  width: 90%;
  margin: 0 auto;
}

.favorite_cp_btn_psub {
  position: relative;
  font-size: 3.5cqw;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}

.favorite_cp_btn_psub::before {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/slash_wh_lt.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5cqw;
  height: 5cqw;
  left: 2.6cqw;
}

.favorite_cp_btn_psub::after {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/slash_wh_rt.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5cqw;
  height: 5cqw;
  right: 0.5cqw;
}

.favorite_cp_btn_p {
  font-size: 4.8cqw;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
  text-align: center;
}


/* #recommend_list */
.recommend_list_h2 {
  font-size: 7.4cqw;
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  margin-bottom: 3.4%;
}

.recommend_list_h2sub {
  font-size: 5cqw;
  display: block;
}

.recommend_list_h2main {
  margin-right: 3.2%;
}

.listbox {
  width: 95%;
  margin: 0 auto 2.5%;
  background-color: #def2fa;
  border-radius: 15px;
  padding: 3.6% 2% 7%;
}

.num {
  color: #fff;
  background-color: #eb9b92;
  padding: 0.7% 1% 0.4% 1.4%;
  border-radius: 3px;
  font-size: 3cqw;
  font-weight: 600;
}

.numbig {
  font-size: 4.1cqw;
}

.listbox_h3 {
  font-size: 7.3cqw;
  font-weight: bold;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  padding-left: 1.5%;
}

.listbox_h3sub {
  display: block;
  font-size: 4.1cqw;
  font-weight: bold;
  line-height: 1.8em;
  letter-spacing: 0.03em;
}

.listbox_h3main {
  position: relative;
  padding-left: 13.7%;
  padding-bottom: 1%;
}

.listbox_h3main::before {
  content: '';
  position: absolute;
  display: inline-block;
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10.6cqw;
  height: 10.6cqw;
  left: 0;
}

.icon_water::before {
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/icon_water.png);
}

.icon_sweat::before {
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/icon_sweat.png);
}

.icon_uv::before {
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/icon_uv.png);
}

.icon_cool::before {
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/icon_cool.png);
}

.icon_dry::before {
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/icon_dry.png);
}

.listbox_h3main2 {
  display: flex;
  flex-wrap: nowrap;
}

.listbox_h3main2 li:nth-of-type(1) {
  width: 11cqw;
  position: relative;
}

.listbox_h3main2 li:nth-of-type(1) img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.listbox_h3main2 li:nth-of-type(2) {
  font-size: 7.3cqw;
  font-weight: bold;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  padding-left: 2.2%;
}


.item_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 3.5% auto 0;
  width: 98%;
}

.item_box li {
  width: 48.8%;
  margin-bottom: 3.5%;
  border-radius: 5px;
  padding: 1.5%;
  background-color: #fff;
}

.item_name {
  font-size: 3cqw;
  font-weight: 500;
  line-height: 1.65em;
  padding: 3% 2% 1.5%;
}


.point_box {
  width: 98%;
  margin: 3.5% auto 0;
  background-color: #fff;
  border-radius: 5px;
  border: 2px solid #eb9b92;
  padding-bottom: 1%;
}

.fukidashi_wrap {
  position: relative;
  margin: 3.5% auto -1.3%;
}

.fukidashi {
  width: 57%;
  margin: 3.5% auto;
}

.point_box_h4 {
  position: absolute;
  /* z-index: 100; */
  top: 38%;
  left: 44%;
  font-size: 5.35cqw;
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  transform: translate(-44%, -50%);
}

.point_box_h5 {
  font-size: 3.7cqw;
  font-weight: bold;
  line-height: 1.78em;
  margin-left: -1.5%;
}

.when,.merit {
  width: 90%;
  margin: 0 auto 4%;
}

.point_box_ul1 li,.point_box_ul2 li {
    font-size: 3.4cqw;
    font-weight: 600;
    line-height: 1.92em;
    text-indent: -1.3em;
    padding-left: 1em;
}

.point_box_ul1 li::before {
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/check.png);
  content: "";
  display: inline-block;
  width: 3.6cqw;
  height: 3.9cqw;
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
}

.point_box_ul2 li::before {
  content: "◎";
  background-size: contain;
  vertical-align: bottom;
  background-repeat: no-repeat;
  color: #eb9b92;
  font-size: 4cqw;
}

.more_btn {
  text-align: center;
  position: relative;
  margin: 6% 0 0;
}

.more_btn a {
  text-decoration: none;
  display: inline-block;
  padding: 3.5% 6% 4% 3%;
  background-color: #2e81c5;
  font-size: 4.2cqw;
  font-weight: 600;
  border-radius: 1000px;
  width: 81%;
  margin: 0 auto;
  color: #fff;
}

.more_sankaku {
  position: absolute;
  width: 4.6cqw;
  right: 14cqw;
  top: 0;
  bottom: 0;
  margin: auto;
}

.more_sankaku img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}


/* お気に入り登録キャンペーン */
#favorite_cp {
  background-color: #fcefed;
  padding-bottom: 0.01%;
}

.favorite_cp_h2 {
  padding: 4.5% 0 4.6%;
  margin-top: 5.5%;
}

.favorite_cp_h2sub1 {
  position: relative;
  display: block;
  font-size: 4.6cqw;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  width: 71%;
  margin: 0 auto;
  padding-bottom: 1.5%;
}

.favorite_cp_h2sub1::before {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/slash_blk_lt.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0.8cqw;
  margin: auto;
  width: 5cqw;
  height: 5.5cqw;
  left: 2.6cqw;
}

.favorite_cp_h2sub1::after {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/slash_blk_rt.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0.8cqw;
  margin: auto;
  width: 5cqw;
  height: 5.5cqw;
  right: 1.5cqw;
}

.favorite_cp_h2sub2 {
  display: block;
  background-color: #fff;
  border-radius: 1000px;
  font-size: 3.9cqw;
  font-weight: bold;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 1% 0 1%;
  width: 89%;
  margin: 0.7% auto 0;
}

.favorite_cp_h2main {
  font-size: 6.7cqw;
  margin: 0 auto;
  width: 95%;
  font-weight: bold;
  text-align: center;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  display: block;
  padding: 1.7% 0 0;
}


.favorite_cp_inner {
  width: 95%;
  margin: 0 auto 3%;
  background-color: #fff;
  border-radius: 15px;
  padding: 4% 2% 6%;
}

.favorite_cp_lead1 {
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.favorite_cp_lead1 p {
  font-size: 4.2cqw;
  font-weight: bold;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  background: linear-gradient(transparent 70%, #a1d8f0 70%);
  display: inline;
}

.favorite_cp_lead2 {
  font-size: 3.6cqw;
  font-weight: 600;
  text-align: center;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  padding: 3.5% 0 2%;
}


.present_period,.present_period2,.present_period3,.present_period4,.present_period5 {
  position: relative;
  width: 95%;
  border: 2px solid #eb9b92;
  background-color: #def2fa;
  border-radius: 5px;
}

.present_period,.present_period2,.present_period3,.present_period4 {
  margin: 10% auto 0;
}

.present_period5 {
  margin: 10% auto 0;
}

.present_period {
  padding: 8.5% 3.7% 4.3% 4%;
}

.present_period2 {
  padding: 3.5% 3.7% 2.8% 3%;
}

.present_period3 {
  padding: 9.5% 3.2% 5% 3%;
}

.present_period4 {
  padding: 8.8% 3.2% 5% 3%;
}

.present_period5 {
  padding: 8% 3.2% 5% 3%;
}

.present_period_h,.present_period_h2,.present_period_h3,.present_period_h4,.present_period_h5 {
  position: absolute;
  width: 50%;
  border-radius: 1000px;
  background-color: #eb9b92;
  padding: 1.3% 0 1.5%;
  left: 0;
  right: 0;
  margin: auto;
  font-size: 3.6cqw;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.present_period_h {
  top: -16%;
}

.present_period_h2 {
  top: -5%;
}

.present_period_h3 {
  top: -1.1%;
}

.present_period_h4 {
  top: -7.5%;
}

.present_period_h5 {
  top: -13.5%;
}


.present_period_tx {
  font-size: 4.3cqw;
  font-weight: bold;
  text-align: center;
  line-height: 1.75em;
  letter-spacing: 0.03em;
}

.present_period_tx2 {
  font-size: 3.6cqw;
  font-weight: bold;
  line-height: 1.85em;
  letter-spacing: 0.03em;
  color: #ff0000;
  padding-top: 3.5%;
}

.present_period_tx2kome,.present_period_tx2kome2 {
  font-size: 3.3cqw;
  font-weight: 500;
  line-height: 1.88em;
  padding-top: 1.5%;
}

.present_period_tx2kome {
  color: #ff0000;
}

.box1 {
  margin: 6% 0 0;
}

.present_note_tx2 {
  font-size: 3.5cqw;
  font-weight: 600;
  line-height: 1.88em;
  letter-spacing: 0.03em;
  text-indent: -1em;
  padding-left: 1em;
  padding-bottom: 3%;
}

.step_wrap {
  position: relative;
}

.step_sen {
  position: absolute;
  width: 2px;
  background-color: #eb9b92;
  left: 7.9%;
  top: 2%;
  height: calc(100% - 34%);
}

.icon_step img {
  width: 100%;
}

.step_flex {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.step_flex li:nth-of-type(1) {
  width: 16%;
  z-index: 100;
}

.step_flex li:nth-of-type(2) {
  width: 80%;
}

.step_ttl {
  font-size: 4cqw;
  font-weight: bold;
  padding-bottom: 4%;
}

.step_tx {
  line-height: 1.9em;
  font-size: 3.4cqw;
  font-weight: 500;
  padding-bottom: 7%;
}

.step_tx2 {
  line-height: 1.85em;
  font-size: 3.6cqw;
  font-weight: 500;
  padding: 10% 0 5%;
}

.step_img {
  width: 85%;
}

.step_img2 {
  width: 51%;
  margin: 2% 0 0 8%;
}

.step_img img,.step_img2 img {
  width: 100%;
}


.ol_btn {
  position: relative;
  text-align: center;
  margin: 8% 0 0;
}

.ol_btn a {
  text-decoration: none;
  display: inline-block;
  padding: 6% 8% 6% 3%;
  background-color: #fff;
  border: 2px solid #2e81c5;
  font-size: 4cqw;
  font-weight: 600;
  border-radius: 1000px;
  width: 92%;
  margin: 0 auto;
  color: #2e81c5;
}

.ol_sankaku {
  position: absolute;
  width: 4.4cqw;
  right: 9cqw;
  top: 0;
  bottom: 0;
  margin: auto;
}

.ol_sankaku img {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}


.download_subtx {
  width: 96%;
  margin: 10% auto 2.2%;
  font-size: 3.6cqw;
  font-weight: bold;
  line-height: 1.85em;
  letter-spacing: 0.03em;
  text-align: center;
}

.download {
  width: 96%;
  background-color: #fff;
  border: 2px solid #0090d5;
  border-radius: 5px;
  margin: 0 auto;
}

.download_ttl {
  font-size: 3.8cqw;
  font-weight: 500;
}

.logo,.logo img {
  display: block;
  width: 78%;
  margin: 5% auto;
}

.mile_btn {
  text-align: center;
  position: relative;
}

.mile_btn a {
  text-decoration: none;
  display: inline-block;
  padding: 3.8% 5.7% 3.8% 3%;
  background-color: #0090d5;
  color: #fff;
  font-size: 4.5cqw;
  font-weight: bold;
  border-radius: 1000px;
  width: 78%;
  margin: 0 auto;
}

.mile_sankaku {
  position: absolute;
  width: 4.5cqw;
  right: 14.1cqw;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mile_sankaku img {
  position: absolute;
  width: 4.5cqw;
  top: 0;
  bottom: 0;
  margin: auto;
}

.mile_tx {
  font-size: 3.4cqw;
  font-weight: 500;
  text-align: center;
  line-height: 1.75em;
  letter-spacing: 0.03em;
  margin: 8.5% 0 5%;
}

.download_flex {
  width: 90%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding: 0 0 5%;
  margin: 0 auto;
}

.download_ttl {
  font-size: 3.8cqw;
  text-align: center;
  font-weight: 600;
  background-color: #0090d5;
  padding: 2.2% 0 3%;
  line-height: 1.6em;
  color: #fff;
  border-top-left-radius: 1px;
  border-top-right-radius: 1px;
}

.download_flex li {
  width: 48%;
}

.download_flex li img {
  width: 100%;
}


.favorite_cp_how_h2sub {
  font-size: 3.8cqw;
  font-weight: 600;
  text-align: center;
  line-height: 1.8em;
  letter-spacing: 0.03em;
  padding: 0 0 3%;
  display: block;
  width: 80%;
  margin: 0 auto;
}

.favorite_cp_how_h2main {
  font-size: 4.8cqw;
  font-weight: bold;
  text-align: center;
  line-height: 1.7em;
  letter-spacing: 0.03em;
  display: block;
}

.favorite_cp_how_tx {
  width: 95%;
  margin: 6% auto 2.2%;
  font-size: 3.6cqw;
  font-weight: bold;
  line-height: 1.85em;
  letter-spacing: 0.03em;
  text-align: center;
}

.favorite_cp_how_ul {
  width: 96%;
  margin: 0 auto;
}

.favorite_cp_how_li {
  position: relative;
  border: 2px solid #eb9b92;
  border-radius: 5px;
  background-color: #def2fa;
  margin-bottom: 3%;
}

.favorite_cp_how_num,.favorite_cp_how_num img {
  position: absolute;
  width: 14%;
  top: 0;
  left: 0;
}

.favorite_cp_how_litx {
  line-height: 1.9em;
  font-size: 3.6cqw;
  font-weight: 600;
  text-align: center;
  padding: 3% 3% 4%;
}

.favorite_cp_how_iphone {
  width: 45%;
  margin: 0 auto 0;
}

.favorite_cp_how_iphone2 {
  width: 27%;
  margin: 0 auto 0;
}


.info_wrap {
  width: 94%;
  margin: 7% auto 0;
}

.info_h3 {
  position: relative;
  font-size: 5cqw;
  font-weight: bold;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  text-align: center;
}

.info_h3::before,.info_h3::after {
  content: '';
  position: absolute;
  display: inline-block;
  background-image: url(https://cdn.lumine.jp/contents/design/2026/260611_earlysummer_mustbuy_fvcp/img/icon_light.png);
  background-size: contain;
  vertical-align: sub;
  background-repeat: no-repeat;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 5cqw;
  height: 7cqw;
}

.info_h3::before {
  left: 8.4cqw;
}

.info_h3::after {
  right: 8.8cqw;
}

.info_tx {
  width: 95%;
  margin: 2.5% auto 2%;
  text-align: center;
}

.info_tx p {
  font-size: 4.2cqw;
  font-weight: bold;
  line-height: 1.9em;
  letter-spacing: 0.03em;
  background: linear-gradient(transparent 70%, #a1d8f0 70%);
  display: inline;
}

.login {
  text-align: center;
  color: #0090d5;
  font-size: 3.8cqw;
  font-weight: 500;
  line-height: 1.9em;
  letter-spacing: 0.03em;
}

.info_kome {
  font-size: 3.3cqw;
  font-weight: 500;
  line-height: 1.88em;
  margin: 3% 0 0;
}


/* バナー掲載アイテム */
#used_item {
  margin-top: 8%;
}

.h2_used {
  font-size: 6.3cqw;
  line-height: 1.25em;
  font-weight: bold;
  text-align: center;
  padding-top: 1.4%;
  padding-bottom: 1.3%;
}

.h2_sen {
  width: 22%;
  margin: 0.5% auto 2.3%;
  border-bottom: #eb9b92 2px solid;
}


/*スライダー//////////////////////////////////////////////////*/
#wrap .sliderBox_3 {
  width: 100%;
  margin-top: 6.5%;
}

#wrap .sliderBox_3 .contents {
  overflow-x: scroll;
  overflow-y: hidden;
  margin: 0 2% 12%;
}

#wrap .sliderBox_3 #itemSlide {
  width: fit-content;
  display: inline-grid;
  /* grid-template-rows: repeat(2, auto); */
  grid-auto-flow: column;
  overflow: hidden;
  margin-bottom: 6%;
  position: relative;
}

#wrap .sliderBox_3 #itemSlide li {
  width: 170px;
  margin: 0 8px 0 0;
}

/* #wrap .sliderBox_3 #itemSlide li a {
  padding: 2%;
} */

#wrap .sliderBox_3 a {
  text-decoration: none;
}


.itembox_img_slider {
  position: relative;
}

.icon_ranking_slider {
  position: absolute;
  width: 26%;
  top: 0;
  left: 0;
  z-index: 100;
}

.item_img_slider {
  padding: 2%;
}

.detailbox_slider {
  margin: 1% 3% 0;
}

.name_slider {
  font-size: 3.1cqw;
  font-weight: 500;
  line-height: 1.7em;
}



/* 移行区分E：mobile_firstテンプレートのstyle */
.mobile_first_to_page_top {
  display: block;
}