h1.block-event-page--header {
    display: none;
}
.pc_block {
    display: inline-block;
}

.sp_block {
    display: none;
}

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

.earlysummer a {
    transition: 0.3s ease;
    text-decoration: none;
}

.earlysummer a:hover {
    opacity: 0.7;
    text-decoration: none;
}

.pane-left-menu {
    display: none;
}


.pane-contents {
    padding-top: 0;
}


.pane-contents .container:has(#earlysummer){
    display: block !important;
}

.pane-contents .container{
    width: 100%;
}

main.earlysummer {
    margin: 0 auto;
}

.earlysummer .block01 {
    padding-top: 32px;
    background: url("/img/usr/event/earlysummer/2026/bg_01.jpg") no-repeat center;
    background-size: cover;
}
.earlysummer .block01 .inner {
    margin: 0 auto;
    padding: 0 0 50px;
    width: 1200px;
}

.earlysummer .block01 .inner h2{
    margin: 0;
}

.earlysummer .block01 .inner h2 img {
    border-radius: 8px;
}

.earlysummer .block01 .inner h3 {
    font-size: 40px;
    text-align: center;
    color: #0188D0;
    font-weight: normal;
    line-height: 1.75;
}
.earlysummer .block01 .inner p.read {
    color: #333;
    text-align: center;
    font-size: 18px;
    line-height: 1.75;
    width: 100%;
    padding: 0 0 25px 0;
    margin-bottom: 50px;
}

.coupon_img {
    display: block;
    margin: 0 auto 30px;
    width: 759px;
}

.coupon_area {
  display: flex;
  align-items: stretch;
  width: fit-content;
  min-width: 500px;
  border: 2px solid #0188D0;
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff;
  margin: 0 auto 15px;
  padding: 0;
}

.coupon {
  flex-grow: 1;
  margin: 0;
  padding: 15px 30px;
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.coupon .bold {
  font-weight: bold;
  margin-left: 5px;
}

.block-sec-btn {
  background-color: #0188D0;
  display: flex;
}

.block-sec-btn-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.block-sec-btn-inner:hover {
  opacity: 0.8;
}

.block-sec-btn-inner::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background-image: url('/img/usr/event/earlysummer/2026/ico_window.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
}

.block01 .inner .notes{
    text-align: center;
    font-size: 12px;
    margin: 0 auto 50px;
}

a.acc_btn {
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    display: block;
    width: 850px;
    background-color: #77C2F0;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    text-align: center;
    margin: 0 auto;
}

a.acc_btn:hover {
    opacity: 1;
    cursor: pointer;
}

.acc_btn::before {
    display: block;
    height: 2px;
    background-color: #fff;
    width: 20px;
    position: absolute;
    content: "";
    right: 30px;
    bottom: 0;
    top: 0;
    margin: auto;
}

.acc_btn::after {
    display: block;
    height: 2px;
    background-color: #fff;
    width: 20px;
    position: absolute;
    content: "";
    right: 30px;
    bottom: 0;
    top: 0;
    margin: auto;
    transform: rotate(90deg);
    transition: 0.3s ease;
}

.acc_btn.active::after {
    transform: rotate(0);
}

.acc_cont {
    display: none;
    max-width: 750px;
    width: 100%;
    margin: 0 auto;
    padding: 25px 0;
}

/* リスト全体のレイアウト */
.acc_cont ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* 全てのカードの高さを揃える */
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8%; /* 矢印が入るための隙間 */
}

/* 各ステップのカード */
.acc_cont li {
  position: relative;
  flex: 1;
  background-color: #fff;
  border: 1px solid #00a0e9;
  border-radius: 15px;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  text-align: center;
}

/* 上部の青いヘッダー部分 */
.step-head {
  background-color: #71c5ef;
  color: #fff;
  padding: 10px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
  border-radius: 13px 13px 0 0;
}

/* 大きな数字の部分 */
.step-head span {
  display: block;
  font-size: 36px;
  letter-spacing: 0.05em;
}

/* 下部の説明テキスト部分 */
.acc_cont li p {
  margin: 0;
  padding: 20px 10px;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  flex-grow: 1;      /* 高さを一杯に広げる */
  display: flex;
  align-items: center; /* テキストを上下中央に */
  justify-content: center;
}

/* 右側の青い矢印 (▶︎) */
.acc_cont li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #00a0e9;
  z-index: 1;
}

/* リスト全体のスタイル */
.anker {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 20px 0;
  margin: 0;
  background-color: #D6F3FF;
}

/* 各メニュー項目 */
.anker li {
  display: flex;
  align-items: center;
}

.anker li {
  border-left: 1px solid #00a0e9; /* 青い縦線 */
}

.anker li:last-child {
  border-right: 1px solid #00a0e9;
}

/* リンクエリアのスタイル */
.anker li a {
  display: flex;
  align-items: center;
  padding: 0 25px;
  text-decoration: none;
  color: #00a0e9;
  font-size: 16px;
  transition: opacity 0.3s;
}

.anker li a:hover {
  opacity: 0.7;
}

.anker li a span {
  font-size: 20px;
}

.anker li a::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-color: #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 各メニュー個別のアイコン画像指定 */
.anker li:nth-child(1) a::before {
  background-image: url('/img/usr/event/earlysummer/2026/ico_gift2.png');
}
.anker li:nth-child(2) a::before {
  background-image: url('/img/usr/event/earlysummer/2026/ico_money2.png');
}
.anker li:nth-child(3) a::before {
  background-image: url('/img/usr/event/earlysummer/2026/ico_crown2.png');
}


/* ============== */
.scene_section{
    width: 100%;
}

.scene_section .title01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 26px;
  color: #00a0e9;
  font-weight: bold;
  margin: 40px 0 30px;
}

.scene_section .title-icon {
  width: 27px;
  height: auto;
}

.scene_section .deco-line-left,
.scene_section .deco-line-right {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.scene_section .deco-line-left {
  background-image: url('/img/usr/event/earlysummer/2026/line_left.png');
}

.scene_section .deco-line-right {
  background-image: url('/img/usr/event/earlysummer/2026/line_right.png');
}

.scene_section .sub_anker {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px; /* ボタン同士の隙間 */
}

.scene_section .sub_anker li {
  flex: 1;
  max-width: 270px;
}

.scene_section .sub_anker li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;           /* 文字の色 */
  font-size: 16px;
  height: 56px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
  position: relative;
}

.scene_section .sub_anker li a:hover {
  opacity: 0.8;
}

.scene_section .sub_anker li:nth-child(1) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_scene01.png');
}

.scene_section .sub_anker li:nth-child(2) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_scene02.png');
}

.scene_section .sub_anker li:nth-child(3) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_scene03.png');
}

.scene_section .sub_anker li a::after {
  content: "▼";
  position: absolute;
  right: 25px;
  font-size: 14px;
  color: #333;
}

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

.earlysummer .block02 {
    padding-top: 100px;
    background: url("/img/usr/event/earlysummer/2026/bg_02.jpg") no-repeat bottom center;
    background-size: cover;
}

.earlysummer .block03 {
    padding-top: 100px;
}

.earlysummer .block04 {
    padding-top: 100px;
    background: url("/img/usr/event/earlysummer/2026/bg_03.jpg") no-repeat bottom center;
    background-size: cover;
}

.earlysummer .block02 .inner {
    margin: 0 auto;
    padding: 0 0 50px;
    width: 1200px;
}

.earlysummer .block03 .inner {
    margin: 0 auto;
    padding: 0 0 50px;
    width: 1200px;
}

.earlysummer .block04 .inner {
    margin: 0 auto;
    padding: 0 0 50px;
    width: 1200px;
}

.shoulder_txt {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  margin: 0;
  font-size: 18px;
  color: #333;
  text-align: center;
  background-image: url('/img/usr/event/earlysummer/2026/line01.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  line-height: 1.5;
}

.block_title {
    font-size: 30px;
    font-weight: normal;
    line-height: 1.75;
    margin: 20px 0 15px;
}

.block02  .block_title{
    color: #0188D0;
}

.block03  .block_title{
    color: #7AACAA;
}

.block04  .block_title{
    color: #A28D6B;
}

.block_txt {
    color: #333;
    font-size: 18px;
    line-height: 1.75;
    width: 100%;
    margin: 0 0 50px;
}

.review_text {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 22px;
  color: #333;
  margin: 20px 0 40px;
  text-align: left;
}

.review_text::before {
  content: "";
  display: inline-block;
  width: 62px; 
  height: 16px;
  margin-right: 15px;
  
  background-image: url('/img/usr/event/earlysummer/2026/ico_star.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------- */

.high_reviewer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.high_reviewer li {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
  border-radius: 15px;
}

.left_item {
  flex: 0 0 290px;
  height: 195px;
}

.left_item img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
  object-fit: cover;
}

.right_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.item_name {
  display: inline-block;
  position: relative;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin: 0 0 15px 0;
  padding: 0 10px 5px 0;
  background-image: url('/img/usr/event/earlysummer/2026/line01.png');
  background-repeat: no-repeat;
  background-size: auto;
  background-position: left bottom;
}

/* 説明文 */
.item_desc {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 60px;
}

/* 性別・年代（右下に配置） */
.ages {
  position: absolute;
  right: 0;
  bottom: 60px;
  font-size: 14px;
  color: #666;
}

/* 商品はこちらボタン（右下に配置） */
.right_item a {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 163px;
  height: 48px;
  color: #0E2A3E;
  text-decoration: none;
  border-radius: 8px;
  transition: opacity 0.3s;
  font-size: 14px;
}

.block02 .right_item a {
  background-color: #C3E6FF;
}

.block03 .right_item a {
  background-color: #BAD8D7;
}

.block04 .right_item a {
  background-color: #E3D9C8;
}
.right_item a:hover {
  opacity: 0.8;
}


.block05 {
  max-width: 1026px;
  width: 100%;
  margin: 40px auto 100px;
  padding: 0 20px;
  box-sizing: border-box;
}

.block05 .inner {
  background-image: url('/img/usr/event/earlysummer/2026/review_box.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  padding: 40px 50px;
  text-align: center;
}

.block05 h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 20px;
  color: #333;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.block05 h3::before,
.block05 h3::after {
  content: "";
  display: inline-block;
  width: 60px; 
  height: 20px;
  background-image: url('/img/usr/event/earlysummer/2026/ico_star.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.review_caution {
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  margin: 0;
  display: inline-block;
  text-align: left;
}

/* ------------------ */
.price_section{
    margin: 0 auto 100px;
    width: 100%;
    padding: 50px 0 90px;
    background-color: #eafcff;
}

.price_section .title01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 26px;
  color: #00a0e9;
  font-weight: bold;
  margin: 40px 0 30px;
}

.price_section .title-icon {
  width: 31px;
  height: auto;
}

.price_section .deco-line-left,
.price_section .deco-line-right {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.price_section .deco-line-left {
  background-image: url('/img/usr/event/earlysummer/2026/line_left.png');
}

.price_section .deco-line-right {
  background-image: url('/img/usr/event/earlysummer/2026/line_right.png');
}

.price_section .sub_anker {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  gap: 15px; /* ボタン同士の隙間 */
}

.price_section .sub_anker li {
  flex: 1;
  max-width: 270px;
}

.price_section .sub_anker li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;           /* 文字の色 */
  font-size: 16px;
  height: 56px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity 0.3s ease;
  position: relative;
}

.price_section .sub_anker li a:hover {
  opacity: 0.8;
}

.price_section .sub_anker li:nth-child(1) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_price01.png');
}

.price_section .sub_anker li:nth-child(2) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_price02.png');
}

.price_section .sub_anker li:nth-child(3) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_price03.png');
}

.price_section .sub_anker li:nth-child(4) a {
  background-image: url('/img/usr/event/earlysummer/2026/btn_price04.png');
}

.price_inner{
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

/* ボタンを包むエリア */
.more_btn_area {
    display: block;
    width: 100%;
    clear: both;
    text-align: center;
    margin: 0;
    padding-bottom: 0;
}

/* ボタン自体の装飾 */
.more_btn_area a {
    display: inline-block;
    background-color: #0188D0;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    padding: 15px 60px;
    border-radius: 8px;
    transition: all 0.3s ease;
    /* border: 2px solid #333; */
    box-sizing: border-box; /* 枠線分でサイズが変わらないように */
}

/* ホバー（マウスを乗せた時）の反応 */
.more_btn_area a:hover {
    background-color: #fff;
    color: #333;
    text-decoration: none;
}



/* ------------------ */
.ranking_section{
    margin: 0 auto 100px;
    width: 100%;
}

.ranking_section .title01 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 26px;
  color: #00a0e9;
  font-weight: bold;
  margin: 40px 0 30px;
}

.ranking_section .title-icon {
  width: 31px;
  height: auto;
}

.ranking_section .deco-line-left,
.ranking_section .deco-line-right {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.ranking_section .deco-line-left {
  background-image: url('/img/usr/event/earlysummer/2026/line_left.png');
}

.ranking_section .deco-line-right {
  background-image: url('/img/usr/event/earlysummer/2026/line_right.png');
}

.ranking_section .block06 {
    max-width: 960px;
    width: 100%;
    margin: 0 auto 60px;
    /* padding: 0 20px; */
    box-sizing: border-box;
}





.block07 {
    margin: 0 auto 100px;
    width: 960px;
}
.earlysummer_attention {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  
  font-size: 18px;
  color: #333;
  font-weight: bold;
  margin: 40px 0 20px;
  text-align: center;
}

/* 左右の二重線の共通設定 */
.earlysummer_attention::before,
.earlysummer_attention::after {
  content: "";
  flex: 1;
  height: 4px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.attention_title {
    font-size: 18px;
    color: #333;
    font-weight: bold;
    margin: 0 auto 10px;
    width: 960px;
}

.attention_text {
    font-size: 14px;
    color: #333;
    line-height: 1.8;
    margin: 0 auto 20px;
    width: 960px;
}
.attention_text a {
    color: #333;
    text-decoration: underline;
}

.block-event-page--goods{
    margin: 0 auto 100px;
    width: 960px;
}
.pane-right-menu{
    width: 1200px;
    margin: 80px auto 0;
}























.m25 {
    margin-bottom: 25px;
}

.m50 {
    margin-bottom: 50px;
}

.m75 {
    margin-bottom: 75px;
}

.m100 {
    margin-bottom: 100px;
}

.m125 {
    margin-bottom: 125px;
}

.m150 {
    margin-bottom: 150px;
}

.block-sec-btn {
    text-align: center;
    margin-top: 0;
}

.subs_str {
    color: #8B715E;
    font-size: 23px;
    font-family: 'Yu mincho';
    font-weight: bold;
}

.wrapper {
    overflow: hidden;
}

.campaign{
    margin: 0 auto 50px;
    width: 960px;
}
.campaign_title{
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #0188D0;
    margin: 0 auto 30px;
}
.campaign_term,
.campaign_insentive{
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    color: #333;
    margin: 0 auto 10px;
}
.campaign_term_text,
.campaign_insentive_text {
    font-size: 16px;
    text-align: center;
    color: #333;
    margin: 0 auto 20px;
}
.campaign_insentive_text span{
    display: block;
    padding-top: 20px;
    font-size: 14px;;
    line-height: 1.8;
}




/* --- MEDIA QUERY --- */
@media only screen and (max-width: 950px) {

    .pc_block {
        display: none;
    }

    .sp_block {
        display: inline-block;
    }

    .block01 .inner h2 {
        width: 100%;
    }

    .earlysummer .block01 .inner {
        width: 100%;
    }

    .earlysummer .block01 h2 img {
        width: 100%;
        height: auto;
    }

    .earlysummer .block01 .inner h3 {
        padding: 30px 0;
        font-size: 22px;
        line-height: 1.5;
    }

    .price_section .title01 {
        margin: 10px 0 20px;
    }
    .earlysummer .price_section {
        padding: 10px 0 20px;
        margin: 0 auto 10px;
    }
    .earlysummer .price_section h3 {
        padding: 10px 0;
        font-size: 20px;
    }

    .ranking_section .title01 {
        margin: 10px 0 20px;
    }

    .earlysummer .ranking_section h3 {
        padding: 10px 0;
        font-size: 20px;
    }

    .earlysummer .ranking_section {
        padding: 10px 0 20px;
        margin: 0 auto 10px;
    }

    .earlysummer .block01 .inner p.read {
        font-size: 14px;
        padding: 0 20px 15px;
    }


    .coupon {
        flex-direction: column;
        align-items: center; 
        padding: 15px 20px;
        font-size: 14px;
    }

    .coupon .bold {
        display: block;
        margin-top: 0;
        margin-left: 0;
        font-size: 16px;
    }
    
    .coupon_img {
        width: 100%;
    }

     .coupon_area {
        width: 100%;
        min-width: unset;
    }

     .block-sec-btn-inner {
        padding: 0 20px;
        font-size: 14px;
     }

     .block-sec-btn-inner::after {
        width: 16px;
        height: 16px;
     }

     a.acc_btn {
        width: 100%;
        font-size: 16px;
     }

     .step-head {
        font-size: 14px;
     }

     .step-head span {
        font-size: 24px;
     }

     .acc_cont li p {
        font-size: 12px;
    }

    .anker {
        padding: 10px 5px;
        justify-content: space-around;
    }

    .anker li {
        width: 33.333%;
        border: none !important;
        justify-content: center;
    }

    .anker li:not(:last-child) {
        border-right: 1px solid #00a0e9 !important;
    }

    .anker li a {
        flex-direction: column;
        padding: 0 5px;
        font-size: 11px;
        line-height: 1.2;
        text-align: center;
    }

    .anker li a span {
        display: block;
        font-size: 13px;
        margin-bottom: 2px;
    }

    .anker li a::before {
        width: 30px;
        height: 30px;
        margin-right: 0;
        margin-bottom: 5px;
    }

    .scene_section .title01 {
        font-size: 20px;
    }

    .scene_section .sub_anker {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .scene_section .sub_anker li {
        width: 100%;
        max-width: 320px;
    }

    .scene_section .sub_anker li a {
        height: 60px;
        font-size: 15px;
    }

    .scene_section .sub_anker li a::after {
        right: 15px;
    }

    .earlysummer .block02 {
        padding-top: 40px;
    }

    .earlysummer .block03 ,
    .earlysummer .block04 {
        padding-top: 40px;
    }

    .earlysummer .block02 .inner,
    .earlysummer .block03 .inner,
    .earlysummer .block04 .inner {
        width: 100%;
        padding: 0 15px 20px;
        box-sizing: border-box;
    }

    .block_title {
        font-size: 22px;
        line-height: 1.4;
    }

    .block_txt {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .high_reviewer li {
        display: block;
        margin-bottom: 40px;
    }

    .left_item {
        width: 100% !important;
        height: auto !important;
        margin-bottom: 15px;
    }

    .left_item img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .right_item {
        width: 100%;
        padding: 0;
    }

    .item_name {
        width: 100% !important;
        white-space: normal;
        font-size: 18px;
        background-size: contain; 
    }

    .review_text {
        font-size: 18px;
        flex-wrap: wrap;
    }

    .item_desc{
        margin-bottom: 90px;
    }

    .block05 {
        margin: 0 auto 40px;
        box-sizing: border-box;
    }

    .block05 .inner {
        background-image: none !important;
        background-color: #fff;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 30px 20px;
        margin: 0 10px;
    }

    .block05 h3::before,
    .block05 h3::after {
        width: 40px;
        height: 12px;
    }

    .price_section .sub_anker {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 0 10px;
    }

    .price_section .sub_anker li {
        flex: none;
        width: calc(50% - 5px); 
        max-width: none;
    }

    .price_section .sub_anker li a {
        height: 50px;
        font-size: 13px;
        padding: 0 5px;
        box-sizing: border-box;
    }

    .price_section .sub_anker li a span {
        font-size: 10px;
        margin: 0 1px;
    }

    .ranking_section .block06 {
        padding: 0 10px;
        box-sizing: border-box;
        margin: 0 auto 20px;
    }

     .ranking_section .block06 .inner {
        padding: 0;
    }

     .ranking_section .block06 h3 {
        font-size: 18px;
    }

     .earlysummer_attention {
        font-size: 16px;
        gap: 10px;
    }

     .attention_title {
        font-size: 16px;
    }

     .attention_text {
        font-size: 12px;
    }

     .block-event-page--goods {
        padding: 0 10px;
        box-sizing: border-box;
    }

    .block07 {
        width: 100%;
        margin: 0 auto 60px;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .earlysummer_attention {
        font-size: 17px;
        gap: 10px;
        margin: 10px 0 15px;
    }

    .earlysummer_attention::before,
    .earlysummer_attention::after {
        min-width: 20px; 
    }

    .attention_title {
        width: 100%;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .attention_text {
        width: 100%;
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 25px;
        text-align: justify;
    }

    .block-event-page--goods,
    .pane-right-menu {
        width: 100%;
        margin: 40px auto 0;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .campaign{
        margin: 0 auto 50px;
        width: 100%;
    }
    .campaign_title{
        font-size: 20px;
        margin: 0 auto 20px;
    }
    .campaign_term,
    .campaign_insentive{
        font-size: 16px;
        margin: 0 auto 10px;
    }
    .campaign_term_text,
    .campaign_insentive_text {
        font-size: 14px;
        margin: 0 auto 10px;
    }
    .campaign_insentive_text span{
        padding-top: 10px;
        font-size: 12px;;
        line-height: 1.5;
    }

    .acc_cont li:not(:last-child)::after {
        right: -25px;
    }



}

@media screen and (min-width:769px) {
    .sp_only {
        display: none !important;
    }
    .temp_main_con {
        margin: 40px auto 0;
    }
    .temp_main_con h2 {
        font-size: 24px;
        line-height: 35px;
        font-weight: 500;
        text-align: center;
        margin: 0;
        padding: 0;
    }
    .temp_main_con p {
        margin-top: 24px;
        font-size: 15px;
        line-height: 26px;
        font-weight: 400;
        text-align: center;
    }

    .temp_anc_con {
        width: 100%;
        margin: 40px auto 0;
    }
    .temp_anc_con .temp_anc_inner {
        background-color: #F4F2E9;
        padding: 40px 30px 32px;
    }
    .temp_anc_ttl {
        text-align: center;
    }
    .temp_anc_ttl .temp_anc_ttl_image {
        margin: 0 auto;
    }
    .temp_anc_ttl .temp_anc_ttl_text {
        margin: 12px auto 0;
        font-size: 24px;
        line-height: 35px;
        font-weight: 400;
        text-align: center;
    }
    .temp_anc_con .temp_anc_list {
        display: flex;
        justify-content: center;
        margin: 24px auto 0;
        gap: 18px;
    }
    .temp_anc_con .temp_anc_list li {
        width: calc((100% - 54px) / 4);
        background-color: #FFF;
    }
    .temp_anc_con .temp_anc_list li a {
        display: inline-block;
        width: 100%;
        height: 100%;
        padding: 20px;
        color: #000;
    }
    .temp_anc_con .temp_anc_list li a:hover,
    .temp_anc_con .temp_anc_list li a:link,
    .temp_anc_con .temp_anc_list li a:active {
        color: #000;
        text-decoration: none;
    }
    .temp_anc_con .temp_anc_list li a .temp_anc_list_inner {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .temp_anc_con .temp_anc_list li a .temp_anc_list_inner::after {
        content: '';
        position: relative;
        display: inline-block;
        width: 23px;
        height: 23px;
        background: url(/img/usr/event/template/anc_arrow.png) no-repeat;
        background-size: 23px 23px;
        margin: auto auto 0;
    }
    .temp_anc_con .temp_anc_list li a .temp_anc_list_inner .temp_anc_list_image {
        width: 209px;
        height: 209px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
    }
    .temp_anc_con .temp_anc_list li a:hover .temp_anc_list_image {
        opacity: 0.7;
    }
    .temp_anc_con .temp_anc_list_desc {
        margin-top: auto;
        margin-bottom: 8px;
    }
    .temp_anc_con .temp_anc_list_desc .temp_anc_list_name {
        font-size: 16px;
        line-height: 22px;
        font-weight: 400;
        text-align: center;
        max-height: 88px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
    .temp_anc_con .temp_more {
        margin: 32px auto 0;
    }
    .temp_more {
        width: 338px;
        height: 48px;
    }
    .temp_more a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-color: #444444;
        border-radius: 60px;
        color: #FFF;
        font-size: 14px;
        line-height: 20px;
        font-weight: 400;
    }
    .temp_more a:hover {
        text-decoration: none;
        opacity: 0.7;
    }

    .temp_sec {
        margin-top: 68px;
    }
    .temp_sec + .temp_sec {
        margin-top: 60px;
    }
    .temp_sec .temp_header {
        position: relative;
        overflow: hidden;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
    }
    .temp_sec .temp_header .temp_header_inner {
        position: relative;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        padding: 60px;
    }
    .temp_header_image {
        position: relative;
        width: 570px;
        z-index: 3;
    }
    .temp_header_desc {
        position: relative;
        width: 380px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        z-index: 3;
    }
    .temp_header_desc .temp_header_name {
        color: #FFF;
        font-size: 24px;
        line-height: 34px;
        font-weight: 400;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(222,222,222,0.3);
        font-family: Noto Serif JP;
    }
    .temp_header_desc .temp_header_text {
        color: #FFF;
        font-size: 15px;
        line-height: 30px;
        font-weight: 400;
        margin-top: 32px;
        font-family: Noto Sans CJK JP;
    }
    .temp_header_desc .temp_header_price {
        color: #FFF;
        font-size: 15px;
        line-height: 30px;
        font-weight: 400;
        margin-top: 17px;
    }
    .temp_header_desc .temp_header_more {
        margin-top: 16px;
    }
    .temp_list {
        width: 100%;
        padding: 60px;
        background-color: #F4F2E9;
    }
    .temp_list_inner {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .temp_list_block {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .temp_list_block:nth-child(2n) {
        display: flex;
        flex-direction: row-reverse;
    }
    .temp_list_image {
        width: 520px;
    }
    .temp_list_desc {
        width: 430px;
    }
    .temp_list_desc .temp_list_name {
        font-size: 24px;
        line-height: 34px;
        font-weight: 400px;
        font-family: Noto Serif JP;
    }
    .temp_list_desc .temp_list_text {
        margin-top: 24px;
        font-size: 14px;
        line-height: 25.2px;
        font-weight: 400;
        font-family: Noto Sans CJK JP;
    }
    .temp_list_more {
        margin: 40px auto 0;
    }

    /* index */
    .temp_index_block {
        position: fixed;
        top: 30%;
        right: 0;
        width: auto;
        height: auto;
        z-index: 999999;
    }
    .temp_index_block .temp_index_inner {
        border-radius: 12px 0 0 12px;
        display: flex;
        flex-direction: row-reverse;
        overflow: hidden;
    }
    .temp_index_header {
        position: relative;
        z-index: 2;
        width: 60px;
        background-color: #0188D0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 17px;
        cursor: pointer;
        border-radius: 12px 0 0 12px;
        transition: border-radius 0.3s ease;
    }
    .temp_index_header.open_index {
        border-radius: 0;
    }
    .temp_index_header .temp_index_text {
        font-size: 18px;
        font-weight: bold;
        line-height: 20px;
        color: #FFF;
        writing-mode: vertical-rl;
    }
    .temp_index_main {
        position: relative;
        z-index: 1;
        background-color: #53AEEC;
        transform: translateX(430px);
        width: 325px;
        transition: transform 0.3s ease;
        padding: 24px 20px 22px;
    }
    .temp_index_main.open_index {
        transform: translateX(0);
    }
    .temp_index_main .temp_index_main_inner {
        display: flex;
        align-items: center;
    }
    .temp_index_close {
        margin-right: 18px;
        cursor: pointer;
    }
    .temp_index_close_text {
        font-size: 10px;
        line-height: 15px;
        font-weight: 400;
        color: #FFF;
        margin-top: 2px;
    }
    .temp_index_con {
        width: -webkit-fill-available;
    }
    .temp_index_anc {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .temp_index_anc li a {
        display: inline-flex;
        width: 100%;
        padding: 5px;
        background-color: #fff;
        border-radius: 4px;
    }
    .temp_index_anc li a:hover {
        opacity: 0.7;
    }
    .temp_index_anc li a:hover,
    .temp_index_anc li a:active,
    .temp_index_anc li a:link {
        text-decoration: none;
    }
    .temp_index_anc li a .temp_anc_list_inner {
        display: flex;
        align-items: center;
        gap: 17px;
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_image {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #FFF;
        width: 50px;
        height: 50px;
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_image img {
        width: 100%;
        height: 100%;
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_desc {
        width: calc(100% - 67px);
        font-size: 18px;
        line-height: 20px;
        font-weight: bold;
        color: #0188D0;
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_desc {
        max-height: 60px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }
    .temp_index_con .index_more {
        text-align: center;
        margin-top: 22px;
    }
    .temp_index_con .index_more a {
        color: #FFF;
        font-size: 14px;
        line-height: 20px;
        font-weight: bold;
        border-bottom: 1px solid #FFF;
    }
    .temp_index_con .index_more a:hover {
        opacity: 0.7;
    }
    .temp_index_con .index_more a:hover,
    .temp_index_con .index_more a:link {
        text-decoration: none;
    }


    /* fade animation */
    .fadeIn_main .ani.fadeInLeft {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    .fadeIn_main .ani.fadeInLeft.animated {
        -webkit-animation-name: fadeInLeft;
                animation-name: fadeInLeft;
        -webkit-animation-duration: 1s;
                animation-duration: 1s;
        -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
    }
    @-webkit-keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    .fadeIn_main .ani.fadeInRight {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    .fadeIn_main .ani.fadeInRight.animated {
        -webkit-animation-name: fadeInRight;
                animation-name: fadeInRight;
        -webkit-animation-duration: 1s;
                animation-duration: 1s;
        -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
    }
    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(50px);
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(50px);
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
}

@media screen and (max-width:768px) {
    .pc_only {
        display: none !important;
    }
    h2.block-event-page--header-img {
        padding: 0 !important;
    }
    .temp_main_con {
        margin: calc(32/375*100vw) auto 0;
    }
    .temp_main_con h2 {
        font-size: calc(22/375*100vw);
        line-height: calc(32/375*100vw);
        font-weight: 500;
        text-align: center;
        margin: 0 auto;
        padding: 0;
        width: calc(345/375*100vw);
    }
    .temp_main_con p {
        margin: calc(24/375*100vw) calc(16/375*100vw) 0;
        font-size: calc(15/375*100vw);
        line-height: calc(26/375*100vw);
        font-weight: 400;
        text-align: center;
    }

    .temp_anc_con {
        width: 100%;
        margin: calc(32/375*100vw) auto 0;
    }
    .temp_anc_con .temp_anc_inner {
        background-color: #F4F2E9;
        padding: calc(40/375*100vw) calc(16/375*100vw) calc(24/375*100vw);
    }
    .temp_anc_ttl {
        text-align: center;
    }
    .temp_anc_ttl .temp_anc_ttl_image {
        margin: 0 auto;
    }
    .temp_anc_ttl .temp_anc_ttl_text {
        margin: calc(10/375*100vw) auto 0;
        font-size: calc(20/375*100vw);
        line-height: calc(29/375*100vw);
        letter-spacing: calc(33/20);
        font-weight: 400;
        text-align: center;
    }
    .temp_anc_con .temp_anc_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: calc(20/375*100vw) auto 0;
        gap: calc(12/375*100vw) calc(13/375*100vw);
    }
    .temp_anc_con .temp_anc_list li {
        width: calc(165/375*100vw);
        background-color: #FFF;
    }
    .temp_anc_con .temp_anc_list li a {
        display: inline-block;
        width: 100%;
        height: 100%;
        padding: calc(12/375*100vw);
        color: #000;
    }
    .temp_anc_con .temp_anc_list li a:hover,
    .temp_anc_con .temp_anc_list li a:link,
    .temp_anc_con .temp_anc_list li a:active {
        color: #000;
        text-decoration: none;
    }
    .temp_anc_con .temp_anc_list li a .temp_anc_list_inner {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    .temp_anc_con .temp_anc_list li a .temp_anc_list_inner::after {
        content: '';
        position: relative;
        margin: auto auto 0;
        display: inline-block;
        width: calc(23/375*100vw);
        height: calc(23/375*100vw);
        background: url(/img/usr/event/template/anc_arrow.png) no-repeat;
        background-size: calc(23/375*100vw) calc(23/375*100vw);
    }
    .temp_anc_con .temp_anc_list li a .temp_anc_list_inner .temp_anc_list_image {
        width: calc(141/375*100vw);
        height: calc(141/375*100vw);
        margin-bottom: calc(10/375*100vw);
        display: flex;
        align-items: center;
    }
    .temp_anc_con .temp_anc_list li a:hover .temp_anc_list_image {
        opacity: 0.7;
    }
    .temp_anc_con .temp_anc_list_desc {
        margin-top: auto;
        margin-bottom: calc(8/375*100vw);
    }
    .temp_anc_con .temp_anc_list_desc .temp_anc_list_name {
        font-size: calc(13/375*100vw);
        line-height: calc(19.5/375*100vw);
        font-weight: 400;
        text-align: center;
        max-height: calc(78/375*100vw);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
    }
    .temp_anc_con .temp_more {
        margin: calc(24/375*100vw) auto 0;
    }
    .temp_more {
        width: calc(327/375*100vw);
        height: calc(48/375*100vw);
    }
    .temp_more a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        background-color: #444444;
        border-radius: calc(60/375*100vw);
        color: #FFF;
        font-size: calc(14/375*100vw);
        line-height: calc(20/375*100vw);
        font-weight: 400;
    }
    .temp_more a:hover {
        text-decoration: none;
        opacity: 0.7;
    }

    .temp_sec .temp_header {
        position: relative;
        overflow: hidden;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
    }
    .temp_sec .temp_header .temp_header_inner {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: calc(16/375*100vw) calc(20/375*100vw) calc(40/375*100vw);
        overflow: hidden;
    }
    .temp_header_back {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: max-content;
        height: 100%;
        z-index: 1;
    }
    .temp_header_back::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(10px);
        background: rgba(0,0,0,0.6);
        z-index: 2;
    }
    .temp_header_back img {
        width: 100%;
        height: 100%;
    }
    .temp_header_image {
        position: relative;
        width: 100%;
        z-index: 3;
    }
    .temp_header_desc {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        z-index: 3;
        margin-top: calc(20/375*100vw);
    }
    .temp_header_desc .temp_header_name {
        color: #FFF;
        font-size: calc(22/375*100vw);
        line-height: calc(31/375*100vw);
        font-weight: 400;
        width: 100%;
        padding-bottom: calc(16/375*100vw);
        border-bottom: 1px solid rgba(222,222,222,0.3);
        font-family: Noto Serif JP;
    }
    .temp_header_desc .temp_header_text {
        color: #FFF;
        font-size: calc(14/375*100vw);
        line-height: calc(25.2/375*100vw);
        font-weight: 400;
        margin-top: calc(32/375*100vw);
        font-family: Noto Sans CJK JP;
    }
    .temp_header_desc .temp_header_price {
        color: #FFF;
        font-size: calc(14/375*100vw);
        line-height: calc(25.2/375*100vw);
        font-weight: 400;
        margin-top: calc(16/375*100vw);
    }
    .temp_header_desc .temp_header_more {
        margin-top: calc(32/375*100vw);
    }
    .temp_header_desc .temp_header_more a {
        font-weight: bold;
    }
    .temp_list {
        width: 100%;
        padding: calc(20/375*100vw) calc(16/375*100vw) calc(40/375*100vw);
        background-color: #F4F2E9;
    }
    .temp_list_inner {
        display: flex;
        flex-direction: column;
        gap: calc(60/375*100vw);
    }
    .temp_list_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: calc(20/375*100vw);
    }
    .temp_list_image {
        width: 100%;
    }
    .temp_list_desc {
        width: 100%;
    }
    .temp_list_desc .temp_list_name {
        font-size: calc(22/375*100vw);
        line-height: calc(32/375*100vw);
        font-weight: 400;
        font-family: Noto Serif JP;
    }
    .temp_list_desc .temp_list_text {
        margin-top: calc(20/375*100vw);
        font-size: calc(14/375*100vw);
        line-height: calc(25.2/375*100vw);
        font-weight: 400;
        font-family: Noto Sans CJK JP;
    }
    .temp_list_more {
        margin: calc(40/375*100vw) auto 0;
    }

    /* index */
    .temp_index_block {
        position: relative;
        z-index: 999999;
    }
    .temp_index_header {
        position: fixed;
        right: 0;
        bottom: 10%;
        z-index: 2;
        width: calc(48/375*100vw);
        height: calc(85/375*100vw);
        background-color: #0188D0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: calc(8/375*100vw);
        align-items: center;
        cursor: pointer;
        border-radius: calc(12/375*100vw) 0 0 calc(12/375*100vw);
        transition: transform 0.3s ease;
    }
    .temp_index_header.open_index {
        transform: translateX(calc(50/375*100vw));
    }
    .temp_index_header .temp_index_text {
        font-size: calc(12/375*100vw);
        font-weight: bold;
        line-height: calc(15/375*100vw);
        color: #FFF;
    }
    .temp_index_main {
        z-index: 1;
        position: fixed;
        bottom: 10%;
        left: calc(327/375*100vw);
        width: 0;
        height: 0;
        overflow: hidden;
        background-color: #53AEEC;
        padding: calc(44/375*100vw) calc(26/375*100vw) calc(12/375*100vw);
        border-radius: calc(12/375*100vw) calc(12/375*100vw) 0 0;
        transform-origin: right 80%;
        transform: scale(0);
        transition: transform 0.5s ease;
    }
    .temp_index_main.open_index {
        z-index: 99999;
        bottom: 0;
        left: 0;
        width: 100%;
        height: auto;
        transform: scale(1);
    }
    .temp_index_main .temp_index_main_inner {
        display: none;
    }
    .temp_index_main.open_index .temp_index_main_inner {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        width: calc(323/375*100vw);
        height: fit-content;
        box-sizing: border-box;
    }
    .temp_index_close {
        margin: calc(40/375*100vw) auto 0;
        cursor: pointer;
    }
    .temp_index_close .temp_index_close_image {
        text-align: center;
    }
    .temp_index_close_text {
        font-size: calc(12/375*100vw);
        line-height: calc(17/375*100vw);
        font-weight: 400;
        color: #FFF;
        margin-top: calc(4/375*100vw);
    }
    .temp_index_anc {
        display: flex;
        flex-direction: column;
        gap: calc(8/375*100vw);
    }
    .temp_index_anc li a {
        display: inline-flex;
        width: calc(323/375*100vw);
        padding: calc(5/375*100vw);
        background-color: #fff;
        border-radius: calc(4/375*100vw);
    }
    #temp a:hover,
    #temp a:active,
    #temp a:link {
        text-decoration: none;
    }
    .temp_index_anc li a .temp_anc_list_inner {
        display: flex;
        align-items: center;
        gap: calc(17/375*100vw);
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_image {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #FFF;
        width: calc(50/375*100vw);
        height: calc(50/375*100vw);
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_image img {
        width: 100%;
        height: 100%;
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_desc {
        width: calc(246/375*100vw);
    }
    .temp_index_anc li a .temp_anc_list_inner .temp_anc_list_desc .temp_anc_list_name {
        font-size: calc(18/375*100vw);
        line-height: calc(20/375*100vw);
        font-weight: bold;
        color: #0188D0;
        max-height: calc(40/375*100vw);
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .temp_index_con .index_more {
        text-align: center;
        margin-top: calc(28/375*100vw);
    }
    .temp_index_con .index_more a {
        color: #FFF;
        font-size: calc(14/375*100vw);
        line-height: calc(20/375*100vw);
        font-weight: bold;
        border-bottom: 1px solid #FFF;
    }


    /* fade animation */
    .fadeIn_main .ani.fadeInLeft {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }
    .fadeIn_main .ani.fadeInLeft.animated {
        -webkit-animation-name: fadeInLeft;
                animation-name: fadeInLeft;
        -webkit-animation-duration: 1s;
                animation-duration: 1s;
        -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
    }
    @-webkit-keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes fadeInLeft {
        0% {
            opacity: 0;
            -webkit-transform: translateX(-50px);
            transform: translateX(-50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }

    .fadeIn_main .ani.fadeInRight {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }
    .fadeIn_main .ani.fadeInRight.animated {
        -webkit-animation-name: fadeInRight;
                animation-name: fadeInRight;
        -webkit-animation-duration: 1s;
                animation-duration: 1s;
        -webkit-animation-fill-mode: both;
                animation-fill-mode: both;
    }
    @-webkit-keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(50px);
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes fadeInRight {
        0% {
            opacity: 0;
            -webkit-transform: translateX(50px);
            transform: translateX(50px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
}

@media screen and (max-width: 767px) {
    /* 商品を包む親要素(li)をflexボックス化 */
    .product-content .block-thumbnail-t li {
        display: flex !important;
        flex-wrap: wrap !important;      /* 折り返し許可 */
        justify-content: space-between !important; /* 左右に振り分け */
        width: 100% !important;
        padding: 0 10px !important;      /* 画面端の余白 */
        box-sizing: border-box !important;
        float: none !important;
    }

    /* 商品個別の枠（dl）を横幅約半分に設定 */
    .product-content .block-thumbnail-t--goods {
        display: block !important;
        width: 48% !important;           /* 横に2つ並ぶサイズ */
        margin: 0 0 20px 0 !important;   /* 下にスペースを空ける */
        float: none !important;
        box-sizing: border-box !important;
    }

    /* 画像サイズの最適化 */
    .block-thumbnail-t--goods-image img {
        width: 100% !important;
        height: auto !important;
    }

    /* 商品名などのテキスト重なりを防ぐ */
    .block-thumbnail-t--goods-description,
    .block-thumbnail-t--goods-description * {
    }

    /* 5件目以降（もしあれば）を隠す設定 */
    .product-content .block-thumbnail-t--goods:nth-child(n+5) {
        display: none !important;
    }

    /* もっと見るボタンの中央配置 */
    .more_btn_area {
        display: block;
        width: 100%;
        text-align: center;
        margin: 20px 0 40px;
    }
    
    .more_btn_area a {
        display: inline-block;
        width: 80%;
        padding: 12px 0;
        color: #fff;
        text-decoration: none;
        border-radius: 25px;
    }
}