@charset "UTF-8";

/* CSS Document */
.iceSampLPv2 {
  font-family: "A1ゴシック R", "A1 Gothic R", sans-serif !important;
  color: #333;
  line-height: 1.6 !important;
  margin: 0;
  padding: 0;
}
.iceSampLPv2 img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
}
.iceSampLPv2 .ttl {
  color: #64002d;
  font-size: 1rem;
}
.iceSampLPv2
  .ttl:not(.islp2_trust .ttl, .islp2_reviews .ttl, .islp2_voice .ttl) {
  display: inline-block;
}
.iceSampLPv2 h1 {
  display: block;
  color: #64002d;
  font-size: 2.5rem;
  margin: 0 auto 40px;
}
.iceSampLPv2 h2 {
  display: inline-block;
  color: #64002d;
  font-size: 2rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin: 1em auto 0.2em;
}
.iceSampLPv2 h3 {
  color: #64002d;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto 5px;
}
.iceSampLPv2 h4 {
  color: #64002d;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 20px auto 0;
}
.iceSampLPv2 p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 auto;
}
.iceSampLPv2 ul {
  font-size: 1.8rem;
  margin: 0 auto;
}
.iceSampLPv2 .cmt {
  font-size: 1.6rem;
}
.iceSampLPv2 .note {
  font-size: 0.9rem;
}
.iceSampLPv2 .en {
  font-family: "din-2014-rounded-variable", sans-serif !important;
  font-variation-settings: "wght" 600;
}
.islp2_mv h1 strong,
.islp2_limited p strong {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.6;
  color: #fff98b;
  margin: 0.4em auto;
}
.iceSampLPv2 ul,
.iceSampLPv2 ol {
  list-style: none;
  padding-inline-start: 0;
}
.iceSampLPv2 a:hover {
  text-decoration: none !important;
}
.iceSampLPv2 .cmt {
  display: block;
  font-size: 20px;
  color: #64002d;
  text-align: center;
  margin: 0 auto 20px;
}
.iceSampLPv2 section {
  margin: 0 auto 120px;
}
.iceSampLPv2
  section:not(
    .islp2_mv,
    .islp2_trust,
    .islp2_top-voice,
    .islp2_reviews,
    .islp2_other-reviews,
    .islp2_voice,
    .islp2_eligible,
    .islp2_flavor
  ) {
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.iceSampLPv2 .inner {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.iceSampLPv2 .inner .txt_box {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 4%;
}
.iceSampLPv2 .inner img {
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: 90% 0;
}
.iceSampLPv2 .ttl_container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.iceSampLPv2 .ttl_container .photo_box {
  width: 65%;
  height: 32%;
  max-height: 380px;
}
.iceSampLPv2 .ttl_container .photo_box img {
  width: 100%;
  height: 32%;
  max-height: 380px;
  object-fit: cover;
}
.iceSampLPv2 .ttl_container .txt_box {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 30px;
}
.iceSampLPv2 .desc_container {
  width: 94%;
  background: #f5f0e6;
  margin: -3% 0 auto auto;
  padding: 30px;
  position: relative;
  z-index: 2;
}
.iceSampLPv2 .right {
  flex-flow: row-reverse;
}
.iceSampLPv2 .desc_container.right {
  margin: -3% auto auto 0;
}

/* marker */
.iceSampLPv2 .marker {
  background: linear-gradient(rgba(255, 242, 3, 0.6), rgba(255, 242, 3, 0.6))
    no-repeat;
  background-size: 0 40%;
  background-position: 0 90%;
  padding: 0 0 5px;
  transition: 0.8s;
}
.iceSampLPv2 .marker.active {
  background-size: 100% 40%;
}

/* fadein（ページ読み込み時とスクロール時ふわっと上に出てくる）*/
.fadein {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 1.3s ease,
    transform 1.3s ease;
}
.fadein.scrollin {
  opacity: 1;
  transform: translateY(0);
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* fadeUp（順番にふわっと上に出てくる） */
.fadeUp {
  opacity: 0;
  transform: translateY(40px);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeBox {
  opacity: 0;
  transform: translateY(100px);
}

/* scrolldown */
.scrolldown {
  height: 30px;
  position: absolute;
  left: 50%;
  bottom: 0;
}
.scrolldown span {
  color: #eee;
  font-size: 1rem;
  letter-spacing: 0.05em;
  position: absolute;
  left: -1.5em;
  top: -20px;
}
.scrolldown:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  /* height: 30px; */
  background: #eee;
  animation: pathmove 2.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    top: 0;
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  35% {
    top: 0;
    height: 30px;
    opacity: 1;
  }
  60% {
    top: 0;
    height: 30px;
    opacity: 1;
  }
  90% {
    top: 30px;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 30px;
    height: 0;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .scrolldown {
    display: none;
  }
}

/* list */
.iceSampLPv2 .list li {
  width: calc((100% - 60px) / 3);
  align-content: flex-start;
  line-height: 1.8;
  background: #fff;
  border-radius: 25px;
  padding: 25px;
}
.iceSampLPv2 .list li p {
  text-align: left;
  margin: 0 auto;
}
.iceSampLPv2 .list p img {
  display: inline-block;
  width: 1em;
  vertical-align: text-top;
}
.iceSampLPv2 .list:last-child {
  width: 100%;
}
.iceSampLPv2 .list li:not(:first-of-type, .inner-box ul li) {
  margin: 0 0 0 30px;
}
.iceSampLPv2 .list:last-child strong {
  font-size: 22px;
}
.iceSampLPv2 .list .num {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  background: #64002d;
  border-radius: 50% 50% 0 50%;
  margin: 0;
  position: relative;
}

/* btn */
.iceSampLPv2 .cv_btn p {
  text-align: center;
  margin: 0 auto;
}
.iceSampLPv2 .cv_btn p.cmt {
  font-size: 17px;
  margin: 0 auto 8px;
}
.iceSampLPv2 .cv_btn a {
  display: block;
  width: 450px;
  height: 60px;
  font-size: 24px;
  color: #fff;
  line-height: 55px;
  text-align: center;
  border: 3px solid #64002d;
  background: #64002d;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.5);
  margin: 40px auto 20px;
  position: relative;
  z-index: 1;
  transition:
    color 0.3s,
    background-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.iceSampLPv2 .cv_btn a:after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6%;
  transition: 0.3s;
}
.iceSampLPv2 .cv_btn span.note {
  display: inline-block;
  color: #fff;
  line-height: 1.4;
  background: #0057b8;
  margin: 0 auto 0 0.6em;
  padding: 0.5em 0.8em;
}
.iceSampLPv2 .cv_btn a:hover {
  color: #64002d;
  background: #fff;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
  opacity: 1;
  transform: translateY(5px);
}
.iceSampLPv2 .cv_btn a:hover:after {
  content: "";
  border-top: 2px solid #64002d;
  border-right: 2px solid #64002d;
  right: 3%;
}

/* Modal */
/* モーダルウィンドウ全体のスタイル */
.iceSampLPv2 .islp2_modal_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.iceSampLPv2 .modal_content {
  background: #fff;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.iceSampLPv2 .modal_content h2 {
  margin: 0 0 20px;
  font-size: 1.5rem;
  text-align: center;
}
.iceSampLPv2 .modal_scroll_area {
  height: 250px;
  font-size: 0.9rem;
  line-height: 1.6;
  background: #f9f9f9;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  padding: 15px;
  overflow-y: auto;
  overscroll-behavior: contain; /* スクロール貫通防止 */
}
.iceSampLPv2 .modal_scroll_area p {
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
  border: 2px solid #64002d;
  padding: 1rem;
}
.iceSampLPv2 .modal_scroll_area p span {
  font-size: 1.3rem;
  color: #64002d;
  background: linear-gradient(transparent 50%, #fff98b 50%);
  padding: 0 0 2px;
}
.iceSampLPv2 .modal_scroll_area ol {
  font-size: 1rem;
  list-style: decimal !important;
  padding-left: 1em;
}
.iceSampLPv2 .modal_scroll_area span.down {
  display: block;
  width: 40px;
  height: calc(40px / 2);
  background: #e0e0e0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto 5px;
}
.iceSampLPv2 .modal_buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.iceSampLPv2 .modal_buttons button,
.iceSampLPv2 .modal_buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  border: none;
  box-sizing: border-box;
}
.iceSampLPv2 .btn_cancel {
  background: #e0e0e0;
}
.iceSampLPv2 .btn_cancel:hover {
  background: #ccc;
}
.iceSampLPv2 .btn_agree {
  background: #64002d;
  color: #fff;
}
.iceSampLPv2 .iceSampLPv2 .btn_agree:hover {
  background: #64002d;
}
/* 「最後まで読んでいない時」の同意ボタンのスタイル */
.iceSampLPv2 .btn_agree.is_disabled {
  color: #fff;
  background: #aaa !important;
  pointer-events: none !important;
  cursor: not-allowed;
}
/* LPのスクロールをロックするクラス */
.iceSampLPv2.is_scroll_locked {
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .iceSampLPv2 .modal_content {
    padding: 20px;
  }
  .iceSampLPv2 .modal_scroll_area {
    height: 200px;
  }
  .iceSampLPv2 .modal_buttons {
    flex-direction: column-reverse;
    gap: 10px;
  }
}

.iceSampLPv2 .flow_link {
  display: flex;
  justify-content: center;
}
.iceSampLPv2 .flow_link a {
  text-align: center;
  color: #64002d;
  font-size: 18px;
  text-decoration: none;
  position: relative;
}
.iceSampLPv2 .textlink a {
  padding-right: 30px;
  transition: 0.3s;
}
.iceSampLPv2 .textlink a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 2px solid #64002d;
  border-radius: 50%;
  transition: 0.3s;
}
.iceSampLPv2 .textlink a::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 9px;
  transform: rotate(135deg);
  width: 4px;
  height: 4px;
  border-width: 2px 2px 0 0;
  border-style: solid;
  border-color: #64002d #64002d transparent transparent;
  transition: 0.3s;
}
.iceSampLPv2 .flow_link a:hover {
  color: #be915a;
}
.iceSampLPv2 .textlink a:hover::before {
  border: 3px solid #be915a;
  top: 65%;
}
.iceSampLPv2 .textlink a:hover::after {
  border-color: #be915a #be915a transparent transparent;
  top: 60%;
}
.iceSampLPv2 .textlink a:hover::before {
  border: 3px solid #be915a;
}
.iceSampLPv2 .textlink a:hover::after {
  border-color: #be915a #be915a transparent transparent;
}

.iceSampLPv2 .flow {
  background: #fff;
  margin: 0 auto;
  padding: 40px 30px 30px;
}
.iceSampLPv2 .flow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.iceSampLPv2 .flow li {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8;
  background: #eee;
  position: relative;
}
.iceSampLPv2 .flow li:not(:last-of-type):after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 15px solid transparent;
  border-left: 15px solid #eee;
}

#slider,
.islp2_mv {
  width: 100%;
  height: calc(var(--vh, 1vh) * 100 - 121px);
}
.islp2_mv {
  width: 100%;
  height: calc(100vh - 121px);
  background-size: cover;
  padding: 60px 3%;
  position: relative;
  z-index: 0;
}
.islp2_mv .inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.islp2_mv::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.islp2_mv .txt_box {
  width: 30%;
  min-width: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.islp2_mv h1 {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
}
.islp2_mv h1 strong {
  display: inline-block;
  font-size: 3.8rem;
  color: #fff98b;
  line-height: 1.9;
  margin: 0 auto;
}
.islp2_mv h1 .note-anchor {
  position: relative;
  display: inline;
}
.islp2_mv h1 .sub-note {
  font-size: 0.4em;
  line-height: 1;
  white-space: nowrap;
  font-weight: normal;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.2em;
}
.islp2_mv span {
  display: inline-block;
}
.islp2_mv .icon_box {
  width: 100%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.4;
  border-bottom: 4px solid #fff;
  padding: 0.4em 0.8em;
  margin: 0 auto 1em;
}
.islp2_mv .icon {
  color: #be915a;
  font-size: 1.4rem;
  background: #fff;
  margin: 0 0.3em 0 0;
  padding: 0 0　0.8em;
}
.islp2_mv .under {
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  padding: 0 0 0.25em;
}
.islp2_mv h1 > span:last-of-type {
  color: #fff;
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  padding: 0 0 0.25em;
}
.islp2_mv p {
  font-size: 20px;
  color: #fff;
  font-weight: normal;
  line-height: 1.9;
  margin: 0 auto 20px;
}
.islp2_mv p strong {
  display: inline-block;
  font-size: 30px;
  line-height: 1.6;
  text-shadow: #3d0c22 1px 0 6px;
  background: rgba(255, 249, 139, 0.3);
  margin: 0.6em auto;
  padding: 0.4em;
}
.islp2_mv h1 img {
  max-width: 100%;
  height: auto;
}
/* ulとliをGridでピッタリ重ねる */
.islp2_mv .txt_box ul {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}
.islp2_mv .text {
  /* 2つのliを「1行目の1列目」にピッタリ重ねる */
  grid-area: 1 / 1;
  /* 最初からCSSで透明にしておく（ロード時のチラつき消滅） */
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
/* is-active が付いた時だけフワッと表示 */
.islp2_mv .text.is-active {
  opacity: 1;
  visibility: visible;
}

.islp2_mv .photo_box {
  width: calc(100% - 240px);
  height: calc(100% - 1.25rem);
  position: absolute;
  top: 1.25rem;
  right: 0;
  -webkit-transition-delay: 0.4s !important;
  transition-delay: 0.4s !important;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
  z-index: 0;
  overflow: hidden;
}
.islp2_mv .photo_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-duration: 5s;
  transition-duration: 5s;
}
.islp2_mv .photo_box img.action {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.action {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #slider,
  .islp2_mv {
    height: calc(var(--vh, 1vh) * 100 - 65px);
  }
  .islp2_mv .txt_box {
    width: 90%;
    min-width: auto;
  }
}

.islp2_intro {
  max-width: inherit !important;
  background: #f5f0e6;
}
.islp2_intro h2 {
  font-size: 26px;
}

.islp2_story {
  max-width: inherit !important;
}
.islp2_story .inner {
  max-width: 1180px;
  display: flex;
  justify-content: center;
  width: 75%;
  min-width: 762px;
  margin: 0 auto;
}
.islp2_story .inner .photo_box {
  width: 50%;
  min-width: 360px;
}
.iceSampLPv2 .inner .txt_box {
  margin: 0 4% 0;
}
.islp2_story h3 {
  margin: 0 0 1em auto;
}
.islp2_story .inner .txt_box p {
  margin: 0 auto 1em 0;
}
.islp2_story .storytxt:first-of-type {
  display: inline-block;
}
.islp2_story .storytxt {
  margin: 0 auto 40px;
}
.islp2_story .note {
  color: #64002d;
}
.islp2_story .storytxt:first-of-type .note {
  background: #eee;
  margin: 0 auto;
  padding: 20px;
}
.islp2_story .divider {
  width: 200px;
  margin: 0 auto 30px;
}
.islp2_story .divider img {
  width: 100%;
}

.islp2_trust {
  width: 94%;
  margin: 0 auto 120px 0 !important;
}
.islp2_trust .photo_box {
  -webkit-transition-delay: 0.4s !important;
  transition-delay: 0.4s !important;
  -webkit-transition-duration: 2s;
  transition-duration: 2s;
  z-index: 0;
  overflow: hidden;
}
.islp2_trust .photo_box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: bottom;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition-duration: 5s;
  transition-duration: 5s;
}
.islp2_trust .photo_box img.action {
  -webkit-transform: scale(1);
  transform: scale(1);
}
.action {
  opacity: 1;
}
.islp2_trust .txt_box {
  align-items: flex-start !important;
}
.islp2_trust .txt_box h2 {
  margin: 1em auto 0 0;
}
.islp2_trust .txt_box p {
  margin: 0 auto 0 0;
}

.islp2_point .cmt {
  display: inline-block;
  font-size: 18px;
  margin: 0 auto 40px;
}
.iceSampLPv2 .list {
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.islp2_point .other-reviews h3 {
  line-height: 1.8;
  margin: 0 auto 30px;
}

.islp2_limit p {
  text-align: center;
}

.islp2_limited {
  max-width: inherit !important;
  margin: 0 auto !important;
  position: relative;
}
.islp2_limited div {
  position: relative;
  z-index: 2;
}
.islp2_limited .desc_container h3 {
  text-align: left;
}
.islp2_limited p.cmt strong {
  font-size: 17px;
  margin: 0 auto 8px;
}
.islp2_limited .inner {
  display: flex;
  justify-content: center;
  width: 75%;
  min-width: 762px;
  margin: 0 auto;
}
.islp2_limited .photo_box {
  width: 50%;
  min-width: 360px;
}
.islp2_limited .txt_box {
  width: 42%;
  margin: 0 3% 0 0;
}
.islp2_limited .txt_box p {
  text-align: left;
}
.islp2_limited .desc_container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 0;
}
.islp2_limited .desc_container .photo_box {
  width: 46.5vw !important;
  max-width: 558px !important;
  position: relative;
  top: -3.33333vw;
}

/* 棒グラフ */
.islp2_limited .txt_box,
.modern-chart-section {
  align-self: stretch;
}
.modern-chart-section {
  width: 55%;
  max-width: 450px;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  display: flex;
}
.modern-chart-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 65px;
  position: relative !important;
  transform: translateY(10px);
}
/* 背景のグリッド線と数字・Y軸 */
.grid-lines-area {
  position: absolute !important;
  top: 0;
  left: 65px;
  right: 0;
  height: calc(100% - 50px); /* グラフ本体の高さ */
  z-index: 1;
  border-left: 2px solid #ddd; /* Y軸（縦線）*/
  border-bottom: 2px solid #ddd;
}
.grid-line {
  position: absolute !important;
  left: 0;
  width: 100%;
  border-top: 1px solid #ddd;
}
.grid-line span {
  position: absolute !important;
  left: -10px;
  top: 0;
  transform: translate(-100%, -50%);
  color: #a3a3a7;
  font-size: 14px;
  white-space: nowrap;
}
/* Y軸の省略マーク（SVG画像配置用） */
.axis-break {
  position: absolute !important;
  left: -13px; /* Y軸の真上に配置 */
  top: 87%;
  transform: translateY(-50%);
  width: 24px;
  height: 40px;
  z-index: 2;
}
.axis-break svg {
  display: block;
  width: 100%;
  height: 100%;
}
/* 棒グラフ本体 */
.chart-bars-area {
  flex-grow: 1;
  display: flex;
  justify-content: space-around;
  z-index: 2;
  position: relative !important;
}
.bar-group {
  width: 40%;
  max-width: 130px;
  display: flex;
  flex-direction: column;
}
.bar-track {
  width: 100%;
  flex-grow: 1;
  display: flex;
  align-items: flex-end;
}
/* アニメーション設定 */
.bar-fill {
  width: 100%;
  height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: height 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.modern-chart-container.is_active .bar-fill {
  height: 100%;
}
/* グラフの配色・テキスト */
.bar-top {
  background-color: #e8e8e9;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bar-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.color-other {
  background-color: #e5c072;
}
.color-brand {
  background-color: #64002d;
}
.txt-gray {
  color: #7f7f85;
  font-size: 14px;
  font-weight: bold;
}
.txt-white {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.2;
}
.txt-white strong {
  font-size: 20px;
}
/* X軸（社名ラベル） */
.bar-label-x {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e6e74;
  font-size: 15px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
}
.bar-label-x img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .islp2_limited .desc_container {
    flex-direction: column;
  }
  .islp2_limited .txt_box {
    width: 100%;
    margin: 0 0 40px 0;
  }
  .modern-chart-section {
    width: 100%;
    min-height: 280px;
  }
}

/* top-voice */
.islp2_top-voice {
  width: 100%;
  background: linear-gradient(to bottom, transparent 60%, #f5f0e6 40%);
  margin: 0 auto 100px !important;
  padding: 30px;
  position: relative;
}
.islp2_top-voice .inner {
  display: flex;
  padding: 30px;
}
.islp2_top-voice .inner_box {
  width: 75%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
.islp2_top-voice .ttl_container {
  max-width: 1180px;
  justify-content: center;
  width: 100%;
  min-width: 762px;
  margin: 0 auto;
}
.islp2_top-voice .photo_box {
  width: 65%;
  min-width: 360px;
  height: 90%;
  max-height: 100%;
}
.islp2_top-voice .photo_box img {
  height: 100%;
  height: 90%;
  max-height: 600px;
  margin: 0 auto;
  object-position: 0 60%;
}
.islp2_top-voice .inner .txt_box {
  width: 35%;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 0 4%;
}
.islp2_top-voice .inner .shop_inner {
  margin: 0 auto 0 -30%;
}
.islp2_top-voice .desc_container {
  width: 35%;
  max-height: 460px !important;
  background: #f5f0e6;
  margin-top: -100px;
  box-sizing: border-box;
  width: 46.5vw !important;
  max-width: 558px !important;
  background: none;
  margin: -3% 0 auto auto;
  padding-top: 60px;
  position: relative;
  top: -40px;
  z-index: 0;
}
.islp2_top-voice .shop_box {
  display: inline-block;
  color: #fff;
  background: #64002d;
  padding: 20px;
}
.islp2_top-voice .shop_box p {
  font-size: 1.2rem;
  line-height: 1.3;
  text-align: left;
  margin: 0 auto;
}
.islp2_top-voice .shop_box p:last-of-type {
  margin: 0.4em auto 0;
}
.islp2_top-voice .shop_box p span {
  font-size: 0.9rem;
  margin: 0 auto 0 0.4em;
}
.islp2_top-voice .txt_box h3 {
  display: inline-block;
  background: #fff;
  margin: 0 auto;
  padding: 20px;
}
.islp2_top-voice h3 {
  color: #333;
  font-size: 1.06667rem;
  text-align: left;
}

/* reviews */
.islp2_reviews {
  margin: 0 auto !important;
}
.islp2_reviews .inner {
  text-align: center;
  margin: 0 auto 30px;
}
.islp2_reviews .inner .txt_box {
  width: 42%;
  margin: 0 3% 0 0;
}
.islp2_reviews .inner h3 {
  font-size: 1.8rem;
}
.islp2_reviews .inner address {
  font-style: normal;
  margin: 0 auto 20px;
}
.islp2_reviews .stars {
  display: flex;
  justify-content: center;
  align-items: self-end;
  font-size: 18px;
  margin: 0 auto 20px;
}
.islp2_reviews .stars img {
  width: 120px;
  margin-bottom: 2px;
}
.islp2_reviews .stars span {
  font-size: 38px;
  line-height: 1;
  margin: 0 3px;
}
.islp2_reviews p {
  text-align: center;
  margin: 0 auto 30px;
}
.islp2_reviews .inner .cat {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.2;
  margin: 0 0 0 0.5em;
}
.islp2_reviews .inner h4 {
  font-size: 1.6rem;
  color: #fbbc04;
  margin: 0.3em auto;
}
.islp2_reviews .inner .cat_box {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.islp2_reviews .inner .cat:not(.active) span {
  font-size: 0.9rem;
  background: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 18px;
  margin: 0 2px 4px;
  padding: 4px 6px;
}
.islp2_reviews .inner .cat.active {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  background: #fbbc04;
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.6);
  border-radius: 18px;
  margin: 0 0 15px;
  padding: 12px;
}
.islp2_reviews .inner .cat.active span {
  font-size: 1.8rem;
}
.islp2_reviews .reviews-list {
  display: flex;
  max-width: 1180px;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
.islp2_reviews .reviews-list li {
  line-height: 1.8;
  background: #fff;
  border-radius: 15px;
  padding: 14px 20px;
  margin-bottom: 10px;
}
.islp2_reviews .reviews-list li p {
  text-align: left;
  margin: 0 auto;
}
.islp2_reviews .reviews-list p img {
  display: inline-block;
  width: 1em;
  vertical-align: text-top;
}
.islp2_reviews .cmt {
  display: inline-block;
  font-size: 18px;
  margin: 0 auto 40px;
}
.islp2_reviews .reviews-list:last-child {
  width: 60%;
}
.islp2_reviews .other-reviews h3 {
  line-height: 1.8;
  margin: 0 auto 30px;
}
.islp2_reviews .reviews-list:last-child li {
  align-content: center;
}
.islp2_reviews .reviews-list:last-child strong {
  font-size: 1.2rem;
}

/* other-reviews */
.islp2_other-reviews {
  width: 100%;
  background: linear-gradient(to bottom, transparent 60%, #f5f0e6 40%);
  margin: 0 auto 100px !important;
  padding: 30px 30px 30px 0;
  position: relative;
}
.islp2_other-reviews .photo_box {
  width: 65%;
  height: 32%;
  max-height: 380px;
}
.islp2_other-reviews .txt_box {
  width: 100%;
  margin: 0 0 0 4% !important;
}
.islp2_other-reviews .list li {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.8;
  background: #fff;
  padding: 30px;
}
.islp2_other-reviews .list:last-child li {
  width: calc((100% - 60px) / 3);
  align-content: flex-start;
}
.islp2_other-reviews .list strong {
  font-size: 1.5rem !important;
}

/* support */
.islp2_support .desc_container > h3 {
  margin-bottom: 30px;
}
.islp2_support .list {
  display: flex;
  flex-wrap: wrap; /* スマホで落ちた時のための安全装置 */
  align-items: stretch; /* 3つのカード自体の高さを一番大きいものに合わせる */
}
.islp2_support .list li {
  display: flex;
  flex-direction: column;
}
.islp2_support .list li h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4em;
}
.islp2_support .criteriatxt p {
  margin: 0 auto 60px;
}
.islp2_support .inner-box ul li {
  width: 100%;
  padding: 0 0 0.2em;
}
.islp2_support .list li ul,
.islp2_support .list li > p {
  width: 100%;
  text-align: left;
  margin-left: 0;
  padding-left: 0;
}
.islp2_support .list li ul li p {
  text-align: left;
  width: 100%;
}
.islp2_support .list > li:nth-child(2) ul {
  font-size: 1rem;
  list-style: disc !important;
  padding-left: 1.5em !important;
}
.islp2_support .list > li:nth-child(2) ul li {
  display: list-item !important;
  text-align: left;
  line-height: 1.8;
  padding-bottom: 0.5em !important; /* 行と行の隙間 */
  /* ▼ ul側で余白を取ったので、li側の余白はゼロにリセット */
  padding-left: 0 !important;
  margin: 0 !important;
}
.islp2_support .list > li:nth-child(2) ul li::before {
  display: none !important;
}

/* voice */
.islp2_voice {
  max-width: inherit !important;
  margin: 0 auto 100px !important;
}
.islp2_voice .voice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}
.islp2_voice .voice-list li {
  width: calc(100% / 3 - 2%);
  align-content: normal;
  background: none;
  margin: 0 auto !important;
  padding: 0 !important;
}
.islp2_voice .voice-list li h3 {
  font-size: 1rem;
  color: #333;
  font-weight: normal;
  text-align: justify;
  line-height: 1.8;
  letter-spacing: 0;
}
.islp2_voice .voice-list li h3 strong {
  font-size: 1.2rem !important;
}
.islp2_voice .voice-list li p {
  min-height: 98px;
  font-size: 16px;
  font-weight: bold;
  color: #f5f0e6;
  line-height: 1.2;
  text-align: center;
  align-content: center;
  background: #64002d;
  margin: 0 0 10px;
  padding: 10px 0;
}
.islp2_voice .voice-list li p span {
  font-size: 12px;
}
.islp2_voice > p.cmt {
  font-size: 18px;
  margin: 0 auto 40px;
}

/* criteria */
.islp2_criteria {
  display: inline-block;
  max-width: inherit !important;
  text-align: center;
  line-height: 2;
  margin: 100px auto !important;
}
.islp2_criteria .desc_container .txt_box {
  margin: 0 3% 0 0;
}
.islp2_criteria .desc_container .photo_box:first-of-type {
  width: 46.5vw !important;
  max-width: 558px !important;
  position: relative;
  top: -3.33333vw;
}
.islp2_criteria .criteriatxt {
  background: rgba(255, 255, 255, 0.7);
  margin: 0 auto 40px;
  padding: 20px;
}
.islp2_criteria .criteriatxt p:first-child {
  color: #64002d;
  font-size: 20px;
  line-height: 1.7;
  margin: 0 auto 20px;
}
.islp2_criteria .criteriatxt p:last-child {
  line-height: 1.7;
  margin: 0 auto;
}
.islp2_criteria .criteriatxt p:last-child strong {
  background: linear-gradient(transparent 50%, #fff98b 50%);
  padding: 0 0 2px;
}
.islp2_criteria > ul > li,
.islp2_support > ul > li {
  margin: 0 0 30px;
}
.islp2_criteria > ul > li:last-child,
.islp2_support > ul > li:last-child {
  margin: 0 0 10px;
}
.islp2_criteria h3,
.islp2_support h3 {
  line-height: 1.7;
}
.islp2_criteria h3 + ul {
  display: flex;
  flex-direction: column;
  list-style: inside;
  margin: 0 auto 0 0.25em;
}
.islp2_criteria h3 + ul li {
  text-align: left;
  line-height: 1.7;
  text-indent: -1.25em;
  padding-left: 1em;
  margin: 0 0 8px;
}
.islp2_criteria h3 + ul li p {
  display: inline-block;
}
.islp2_criteria h3 + ul li span.ice-order {
  display: block;
  text-align: center;
  background: none;
  margin: 15px auto 0;
  padding: 0;
}
.islp2_criteria h3 + ul li span,
.islp2_support h3 + ul li span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  text-indent: 0;
}
.islp2_criteria .list li p > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
}
.islp2_criteria .list li p > span > span {
  display: inline-block;
  background: #f5f0e6;
  padding: 5px 15px;
  border-radius: 4px;
  text-indent: 0;
}

.islp2_eligible {
  width: 100%;
  background: linear-gradient(to bottom, transparent 30%, #f5f0e6 30%);
  margin: 0 auto 100px !important;
  position: relative;
}
.islp2_eligible .inner {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 30px;
}
.islp2_eligible .inner .txt_box {
  padding: 30px;
}
.islp2_eligible .list li p > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px; 
  margin-top: 15px;
}
.islp2_eligible .list li p > span > span {
  display: inline-block;
  background: #f5f0e6;
  padding: 5px 15px;
  border-radius: 4px;
  text-indent: 0;
}


.islp2_msg {
  width: 94%;
  max-width: inherit !important;
  height: 100vh;
  text-align: center;
  margin: 0 auto 120px 0 !important;
  position: relative;
  z-index: 0;
}
.islp2_msg .inner {
  height: 100%;
  display: block;
  position: relative;
}
.islp2_msg p {
  color: #fff;
}
.islp2_msg p:first-child {
  font-size: 24px;
  line-height: 2;
  margin: 0 auto;
}
.islp2_msg .cv_btn p.cmt {
  color: #fff;
}
.islp2_msg .flow_link a {
  color: #fff;
}
.islp2_msg .textlink a::before {
  border: 2px solid #fff;
}
.islp2_msg .textlink a::after {
  border-color: #fff #fff;
}

/* swiper */
.islp2_msg {
  background-color: var(--color-gray-10);
  border-radius: min(0.544218vw + 15.2925px, 24px);
  max-width: 1600px;
  margin-inline: auto;
  padding-block: min(5.11565vw + 38.1497px, 120px);
  overflow: hidden;
}
.islp2_msg .ttl_container {
  --ttl_container-size: min(85.3061vw + 15.102px, 1380px);
}
.islp2_msg .ttl_container {
  inline-size: 100%;
  max-inline-size: var(
    --ttl_container-size,
    min(70.6122vw + 70.2041px, 1200px)
  );
}
.islp2_msg .ttl_container .txt_box {
  text-align: left;
  position: relative;
}
.islp2_msg .ttl_container .photo_box img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* .islp2_msg .ttl_container.-xs {
  max-inline-size: min(28.8163vw + 226.939px, 688px);
}

.islp2_msg .ttl_container.-s {
  max-inline-size: min(53.8776vw + 132.959px, 995px);
}

.islp2_msg .ttl_container.-l {
  max-inline-size: min(88.5714vw + 2.85714px, 1420px);
} */

@media (width<=567px) {
  .islp2_msg .ttl_container {
    max-inline-size: var(--ttl_container-min-size, var(--container-min-size));
  }
}

/* flavor */
.islp2_flavor {
  max-width: inherit !important;
  margin: 0 auto !important;
}
.islp2_flavor h2 {
  margin: 0 auto 20px;
}
.islp2_flavor h3 {
  margin: 0 auto 20px;
}
.islp2_flavor .flavor-list {
  display: flex;
  max-width: 820px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  box-sizing: border-box;
}
.islp2_flavor .flavor-list li h4 {
  height: 60px;
  font-size: 16px;
  color: #64002d;
  line-height: 1.3;
  margin: 10px 0;
}
.islp2_flavor .flavor-list li h4 span {
  display: block;
  font-size: 14px;
  margin: 0 auto 3px;
}
.islp2_flavor .flavor-list li {
  width: calc(100% / 3);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.islp2_flavor .flavor-list h4 {
  font-size: 16px;
  color: #64002d;
  margin: 10px 0;
  height: 42px;
  line-height: 1.3;
}
.flavor-img {
  position: relative;
}
.flavor-img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.flavor-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
}
.islp2_flavor .flavor-list li h2 {
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 10px;
  height: 50px;
}
.islp2_flavor .flavor-ttl {
  font-size: 24px;
  color: #64002d;
  text-align: center;
  margin: 50px auto 10px;
}
.islp2_flavor .flavor-list li h4 {
  height: 40px;
  font-size: 16px;
  color: #64002d;
  line-height: 1.3;
  margin: 10px 0;
}
.islp2_flavor .flavor-list li h4 span {
  display: block;
  font-size: 14px;
  margin: 0 auto 3px;
}
.islp2_flavor .flavor-list li p {
  font-size: 14px;
  width: 90%;
  margin: 0 5%;
  text-align: justify;
  line-height: 1.5;
}
.islp2_flavor .flavor-list .set-img {
  max-width: 45px;
  width: 20%;
  position: absolute;
  top: 9%;
  left: 10px;
}
.islp2_flavor .flavor-list .set-img img {
  width: 100%;
  margin: 0 0 5px;
}

.islp2_size h2 {
  display: block;
  text-align: center;
}
.islp2_size h3 {
  display: block;
  font-size: 18px;
  color: #64002d;
  font-weight: normal;
  text-align: center;
  margin: 0 auto 20px;
}
.islp2_size .size-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
}
.islp2_size .size-list h3 {
  font-weight: 700;
  margin: 0 auto 10px;
}
.islp2_size .size-list li {
  width: 49%;
}
.islp2_size .size-list li p {
  font-size: 14px;
  margin: 0 auto;
}
.islp2_size .size-list li a {
  display: block;
  color: #64002d;
  position: relative;
  margin: 10px 0 0;
}
.islp2_size .size-list li a::after {
  content: ">";
  padding: 0 0 0 5px;
}
.islp2_size .size-list li a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

@media only screen and (min-width: 821px) {
  .sp821 {
    display: none;
  }
}
@media only screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .iceSampLPv2 section {
    max-width: 100%;
    padding: 0 25px !important;
  }
  .iceSampLPv2 h1 {
    font-size: 24px;
    margin: 0 0 30px;
  }
  .iceSampLPv2 h2 {
    font-size: 22px;
    margin: 0 auto 20px;
  }
  .iceSampLPv2 h3 {
    font-size: 18px;
  }
  .iceSampLPv2 p {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .iceSampLPv2 .note {
    font-size: 14px;
  }
  .iceSampLPv2 ul {
    font-size: 16px;
  }
  .iceSampLPv2 .pc768 {
    display: none;
  }
  .iceSampLPv2 .cmt {
    font-size: 18px;
  }
  .iceSampLPv2 .cv_btn a {
    width: 90%;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    border: 2px solid #64002d;
    margin: 30px auto 20px;
  }
  .iceSampLPv2 .cv_btn p {
    width: 90%;
    font-size: 12px;
  }
  .iceSampLPv2 .cv_btn p.cmt {
    font-size: 14px;
  }
  .iceSampLPv2 .cv_btn a:hover {
    border: 2px solid #64002d;
  }

  .islp2_reviews .reviews-list:last-child {
    width: 100%;
  }

  .islp2_flavor .flavor-list h4 {
    height: 30px;
  }
  .islp2_flavor .flavor-list li {
    width: 50%;
    margin: 0 0 20px;
  }
  .islp2_flavor .flavor-list li:nth-child(even),
  .islp2_flavor .flavor-list li:nth-child(4n) {
    margin: 0 0 20px;
  }
  .islp2_flavor .flavor-list li h2 {
    font-size: 16px;
    height: 40px;
  }
  .islp2_flavor .flavor-list li p {
    font-size: 13px;
  }
  .islp2_flavor h3,
  .islp2_size h3 {
    font-size: 16px;
  }
  .islp2_flavor .flavor-list .set-img {
    min-width: 30px;
    width: 20%;
    position: absolute;
    top: 10px;
    left: 0px;
  }
  .islp2_flavor .flavor-ttl {
    margin: 10px auto 0;
  }

  .islp2_mv h1 strong,
  .islp2_limited p strong {
    font-size: 22px;
  }
  .islp2_mv h1 {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .islp2_mv h1 strong {
    font-size: 28px;
    line-height: 1.5;
  }
  .islp2_mv p {
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .islp2_mv p strong {
    width: 100%;
    font-size: 21px;
  }
  .islp2_mv h1 .note-anchor {
    display: inline-flex;
    flex-direction: column;
  }
  .islp2_mv h1 .sub-note {
    display: block;
    font-size: 0.5em;
    position: static;
    transform: none;
    margin: 0 0 0.7em;
  }
  .islp2_mv img {
    width: 120px;
  }
  .islp2_story .txt_box {
    text-align: center;
  }
  .islp2_story h2 {
    text-align: left;
  }
  .islp2_story .inner .txt_box p {
    text-align: center;
    margin: 0 auto;
  }
  .iceSampLPv2 .islp2_trust {
    width: 94%;
    margin: 0 auto 0 0 !important;
    padding: 0 !important;
  }
  .iceSampLPv2 .islp2_trust .ttl_container .txt_box {
    text-align: center;
    padding: 30px 0 30px 25px !important;
    margin: 0 auto !important;
  }
  .iceSampLPv2 .islp2_trust .txt_box .ttl {
    text-align: center;
    margin: 0 auto;
  }
  .islp2_trust .txt_box h2 {
    text-align: left;
    margin: 0 auto;
  }
  .iceSampLPv2 .islp2_trust .txt_box p {
    margin: 0 auto;
  }

  .islp2_intro h2 {
    font-size: 20px;
  }

  .islp2_story h3 {
    font-size: 20px;
  }
  .islp2_story .storytxt {
    margin: 0 auto 20px;
  }
  .islp2_story p {
    font-size: 16px;
    margin: 0 auto 30px;
  }
  .islp2_story img {
    min-width: 300px;
    /* width: 80%; */
  }
  .islp2_story .divider {
    width: 150px;
    margin: 0 auto 15px;
  }
  .islp2_story .divider img {
    width: 100%;
    min-width: 120px;
  }

  .islp2_reviews {
    padding: 40px 25px 10px !important;
  }
  .islp2_reviews .reviews-list {
    display: block;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    padding: 0;
  }
  .islp2_reviews .reviews-list li {
    width: 100%;
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
  }
  .islp2_reviews .reviews-list li:nth-of-type(2n) {
    margin-left: 0;
  }
  .islp2_reviews .cmt {
    display: inline-block;
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .islp2_reviews .reviews-list:last-child li {
    width: 100%;
    align-content: center;
  }
  .islp2_reviews .reviews-list:last-child li:not(:first-of-type) {
    margin: 0 auto 20px;
  }
  .islp2_reviews .other-reviews h3 {
    margin: 0 auto 20px;
  }

  .islp2_support > ul > li:last-child {
    margin: 0;
  }
  .islp2_support .criteriatxt p {
    margin: 0 auto 30px;
  }
  .islp2_support ul p:last-child {
    margin: 0 auto;
  }

  .islp2_criteria {
    line-height: 1.8;
  }
  .islp2_criteria .criteriatxt p:first-child {
    font-size: 18px;
  }
  .islp2_criteria .criteriatxt {
    margin: 0 auto 25px;
  }
  .islp2_criteria > ul > li {
    margin: 0 0 20px;
  }

  .islp2_limited p {
    font-size: 16px;
  }
  .islp2_limited p {
    font-size: 16px;
  }
  .islp2_limited p.cmt {
    margin: 0 auto;
  }
  .islp2_limited p.cmt strong {
    font-size: 14px;
    margin: 0 auto;
  }

  .islp2_flavor {
    padding: 30px 25px 0 !important;
  }
  .islp2_size .size-list li {
    width: 80%;
    max-width: 400px;
  }
  .islp2_msg p:first-child {
    font-size: 16px;
  }

  .islp2_voice > p.cmt {
    font-size: 16px;
    margin: 0 auto 20px;
  }
}

/* =======================================================
   レスポンシブ（スマホ用）追加・上書きCSS
   ※既存のCSSの一番下に追記してください
======================================================= */
@media screen and (max-width: 768px) {
  /* ▼ 1. 左右分割（Flex）の大枠をすべて「縦積み」に変更 ▼ */
  .iceSampLPv2 .ttl_container,
  .iceSampLPv2 .inner,
  .iceSampLPv2 .ttl_container.right,
  .iceSampLPv2 .desc_container.right {
    flex-direction: column !important;
  }

  /* ▼ 2. 65%や35%などの横幅を100%にし、画面幅いっぱいに使う ▼ */
  .iceSampLPv2 .ttl_container .photo_box,
  .iceSampLPv2 .ttl_container .txt_box,
  .iceSampLPv2 .inner .photo_box,
  .iceSampLPv2 .inner .txt_box,
  .islp2_story .inner .photo_box,
  .islp2_top-voice .photo_box,
  .islp2_top-voice .inner .txt_box,
  .islp2_other-reviews .photo_box,
  .islp2_other-reviews .txt_box,
  .islp2_criteria .desc_container .txt_box,
  .islp2_criteria .desc_container .photo_box:first-of-type {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    top: 0 !important; /* PC用のズラし指定をリセット */
  }

  /* ▼ 3. スマホで画像が潰れないように高さ制限を解除 ▼ */
  .iceSampLPv2 .ttl_container .photo_box {
    height: auto !important;
    min-height: auto !important;
  }
  .iceSampLPv2 .ttl_container .photo_box img {
    /* height: auto !important; */
    max-height: 350px !important; スマホで画像が長くなりすぎるのを防ぐ
    /* object-position: center !important; */
  }

  /* ▼ 4. PC特有の「重なり（ネガティブマージン）」を解除 ▼ */
  .iceSampLPv2 .desc_container {
    width: 100% !important;
    margin: 0 auto !important; /* -3% などの食い込みを消す */
    box-sizing: border-box !important;
  }
  .islp2_top-voice .desc_container {
    margin-top: 20px !important; /* -100px の食い込みを消す */
    width: 100% !important;
  }
  .islp2_top-voice .inner .shop_inner {
    margin: 20px auto 0 !important; /* -30% の食い込みを消す */
    width: 100% !important;
  }

  /* ▼ 5. POINTやSUPPORTなどの3列カードを1列の縦並びに ▼ */
  .iceSampLPv2 .list {
    flex-direction: column !important;
  }
  .iceSampLPv2 .list li,
  .islp2_other-reviews .list:last-child li {
    width: 100% !important;
    margin: 0 0 20px 0 !important; /* 横の余白を消して、下の余白に変更 */
  }
  .iceSampLPv2 .list li:not(:first-of-type, .inner-box ul li) {
    margin: 0 0 20px 0 !important; /* 2番目以降のカードの左余白を消す */
  }

  /* ▼ 6. テキストボックスの内側の余白を整える ▼ */
  .iceSampLPv2 .ttl_container .txt_box,
  .iceSampLPv2 .inner .txt_box {
    padding: 30px 0 0 0 !important;
  }

  /* ▼ 7. MESSAGEセクション（Swiper）特有の調整 ▼ */
  .islp2_msg .ttl_container .txt_box {
    padding: 30px 10px !important;
  }

  .iceSampLPv2 section {
    margin: 0 auto 30px;
  }
  .iceSampLPv2 .islp2_mv img {
    width: 65%;
  }
  .islp2_story .inner {
    min-width: auto;
  }
}

@media only screen and (max-width: 719px) {
  .islp2_flavor h3 {
    font-size: 16px;
  }
  .islp2_flavor .flavor-list li {
    width: calc(100% / 3);
  }
  .islp2_flavor .flavor-list li h4 {
    height: auto;
    min-height: 60px;
  }
  .islp2_flavor .flavor-list li h4 span {
    font-size: 13px;
    margin: 0 auto 3px;
  }
  .islp2_size h3 {
    margin: 0 0 20px;
    padding: 0;
  }
  .islp2_size .size-list h3 {
    margin: 0 auto 5px;
  }
  .islp2_size .size-list li p {
    font-size: 13px;
  }
  .islp2_size .size-list li a {
    font-size: 12px;
    line-height: 1.2;
  }
  .islp2_size ul.size-list,
  .islp2_voice ul.voice-list {
    padding: 0;
  }
  .islp2_voice .voice-list li {
    width: 100%;
    margin: 0 0 30px;
    font-size: 12px;
  }
  .islp2_voice .voice-list li:last-child {
    margin: 0;
  }
  .islp2_voice .voice-list li h3 {
    margin: 0;
  }
  .islp2_voice .voice-list li h3 span {
    font-size: 12px;
  }
  .islp2_voice .voice-list li p {
    min-height: auto;
    margin: 0 0 10px;
  }
}

@media only screen and (min-width: 600px) {
  .iceSampLPv2 .sp {
    display: none;
  }
}
@media only screen and (max-width: 599px) {
  .iceSampLPv2 .pc {
    display: none;
  }
  .iceSampLPv2 .sp {
    display: block;
  }
}

@media only screen and (min-width: 560px) {
  .iceSampLPv2 .pc560 {
    display: none;
  }
}
@media only screen and (max-width: 560px) {
  .iceSampLPv2 .islp2_criteria h3 + ul li span.ice-order {
    margin: 7px auto 0;
  }
  .iceSampLPv2 .islp2_criteria h3 + ul li span {
    margin: 3px auto;
    padding: 3px 10px;
  }
}
@media only screen and (min-width: 480px) {
  .iceSampLPv2 .sp480 {
    display: none;
  }
}
@media only screen and (max-width: 479px) {
  .iceSampLPv2 .sp479 {
    display: none;
  }
}
@media only screen and (max-width: 419px), only screen and (min-width: 530px) {
  .iceSampLPv2 .pc530 {
    display: none;
  }
}
@media only screen and (min-width: 450px) {
  .iceSampLPv2 .sp450 {
    display: none;
  }
}
@media only screen and (min-width: 430px) {
  .iceSampLPv2 .sp430 {
    display: none;
  }
}
@media only screen and (max-width: 429px) {
  .iceSampLPv2 .pc429 {
    display: none;
  }
}
@media (max-width: 420px) {
  .iceSampLPv2 section {
    padding: 40px 15px;
  }
  .islp2_reviews {
    padding: 40px 15px 10px !important;
  }
  .islp2_reviews .inner h3 {
    font-size: 25px;
  }
  .islp2_reviews .inner .cat span {
    margin: 0 2px 10px;
  }
  .islp2_flavor {
    padding: 40px 15px 0 !important;
  }
  .islp2_flavor .flavor-ttl {
    font-size: 18px;
  }
}
@media (max-width: 419px) {
  .iceSampLPv2 .pc419 {
    display: none;
  }
}
@media only screen and (max-width: 380px) {
  .islp2_mv h1 strong {
    font-size: 26px;
  }
}
@media only screen and (max-width: 350px) {
  .islp2_mv h1 strong {
    font-size: 24px;
  }
}

/* Bカートメモ
@media only screen and (min-width: 1280px) {
}
@media only screen and (max-width: 1279px) {
}
@media only screen and (min-width: 960px) {
}
@media only screen and (max-width: 959px) {
}
@media only screen and (min-width: 600px) and (max-width: 959px) {
}
@media only screen and (min-width: 600px) {
}
@media only screen and (max-width: 599px) {
} */
