/* =======================================================
index__
======================================================= */
/*
 * 本ページのみで使用・定義するスタイルシートを使用する場合は
 * クラス名の頭に「index__」をつけてください。
*/

.index__banner_2col {
  margin: 0 30px;
}

.index__image_link_area {
  position: relative;
}

.index__image_link_area img {
  position: relative;
  z-index: 1;
}

.index__image_link_area .index__text_link {
  display: block;
  position: absolute;
  bottom: 242px;
  left: 136px;
  width: 136px;
  height: 44px;
  z-index: 2;
}

.index__anchor_text {
  padding-bottom: 10px;
  background: linear-gradient(
    to bottom,
    transparent calc(100% - 2px),
    #222222 calc(100% - 1px)
  );
  position: relative;
}

.sp_view .index__anchor_text {
  font-size: calc(28px * 1.3);
}

.index__anchor_text::after {
  content: '';
  display: inline-block;
  width: calc(22px * 1.3);
  height: calc(18px * 1.3);
  margin-left: 8px;
  background: url(../images/icon_arrow.svg) no-repeat center;
  background-size: contain;
}

.index__text-pink {
  color: #d25e6d;
}

.index__text-brown {
  color: #995426;
}

.index__text-red {
  color: #a50519;
}

.index__bg--purple {
  background-color: #f5f5f5 !important;
}

.index__bg--pink {
  background-color: #f7ecea !important;
}

.cart_item_box .item_text {
  display: block;
}

.hover-effect {
  display: block;
  transition: 0.2s linear;
}

.hover-effect:hover {
  opacity: 0.8;
}

.index__border-none {
  border: none;
}

.index__accordion-item {
  background: #eef4fa;
  background: linear-gradient(
    180deg,
    rgba(238, 244, 250, 1) 0%,
    rgba(255, 255, 255, 1) 27%
  );
  overflow: hidden;
}

.index__accordion-header {
  position: relative;
  cursor: pointer;
  line-height: 0;
  min-height: 80px; 
}

.index__accordion-header img {
  display: block;
  width: 100%;
  height: auto;
  min-height: inherit; 
  object-fit: contain;
}

.index__accordion-button {
  position: absolute !important;
  width: 50px !important;
  height: 50px !important;
  background-color: #c1d3e5 !important;
  right: 0 !important;
  top: 0;
  transform: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  z-index: 100;
}

.index__accordion-button span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.index__accordion-button span::before,
.index__accordion-button span::after {
  content: '' !important;
  position: absolute;
  background-color: #fff !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}

.index__accordion-button span::before {
  width: 24px;
  height: 2px;
}

.index__accordion-button span::after {
  width: 2px;
  height: 24px;
}

.index__accordion-button.is-active span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.index__accordion-content {
  display: none;
  padding: 30px;
  padding-bottom: 40px;
}

.index__accordion-item.is-active .index__accordion-content {
  display: block;
}

.index_block {
  display: block;
}

.index__relative {
  position: relative;
}

.index__absolute {
  position: absolute;
  bottom: calc(86px * 1.3);
  left: calc(31px * 1.3);
  width: calc(695px * 1.3);
  height: calc(130px * 1.3);
  transition: background-color 0.3s ease;
}

.index__absolute:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.index__ttl {
  color: #222222;
  font-size: calc(32px * 1.3);
}

.campaign_caution_box {
  max-width: 100%;
  width: auto;
}

.campaign_caution_box_left {
  width: 100%;
  background-size: 36px auto;
}

.campaign_small__caution_text {
  font-size: calc(28px * 1.3);
  text-align: left;
  margin: 0 auto;
  /* padding: 80px 0; */
  width: 100%;
  display: block;
  box-sizing: border-box;
}

.bold_text {
  font-weight: bold;
  font-size: calc(34px * 1.3);
  text-align: left;
}

.index__tab {
  display: flex;
  flex-direction: column;
  gap: calc(24px * 1.3);
}

.index__tab_item {
  cursor: pointer;
  position: relative;
  color: #222222;
  background: #fff;
  padding: calc(20px * 1.3) calc(30px * 1.3);
  font-size: calc(36px * 1.3);
  border: calc(3px * 1.3) solid #e5e5e5;
  border-radius: calc(8px * 1.3);
  transition: opacity 0.3s ease;
}

.index__tab_item.is-active {
  pointer-events: none;
}

.index__tab_item:hover {
  opacity: 0.8;
}

.index__tab_item::before {
  content: '';
  position: absolute;
  width: calc(34px * 1.3);
  height: calc(34px * 1.3);
  top: 50%;
  left: calc(30px * 1.3);
  transform: translateY(-50%);
  border: calc(3px * 1.3) solid #cdcdcd;
}

.index__tab_item.is-active::before {
  border-color: #fff;
}

.index__tab_item.is-active::after {
  content: '';
  position: absolute;
  width: calc(28px * 1.3);
  height: calc(23px * 1.3);
  top: 50%;
  left: calc(36px * 1.3);
  transform: translateY(-50%);
  background: url(../images/icon_check.svg) no-repeat center;
  background-size: contain;
}

.index__tab_item.is-active {
  border: none;
  background-color: #a50519;
  color: #fff;
}

.index__tab_item span {
  padding-left: calc(54px * 1.3);
  font-weight: bold;
}

.index__badge {
  margin-bottom: 20px;
  background-color: #a50519;
  color: #fff;
  font-weight: bold;
  padding: calc(10px * 1.3);
  font-size: calc(30px * 1.3);
}

.index__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.index__card {
  max-width: calc(50% - 10px);
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e5e5e5;
  box-sizing: border-box;
  position: relative;
  background-color: #fff;
}
.index__card.disabled::before,
.index__card.selected::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
    z-index: 10;
    opacity: 0.7;
}

.index__card.selected::after {
    content: "選択されました";
    font-weight: bold;
    font-size: 32px;
    color: #fff;
    z-index: 10;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: auto;
    text-align: center;
}

.index__card_img {
  width: 100%;
  margin-bottom: 16px;
}

.index__card_badge {
  width: max-content;
  font-size: calc(20px * 1.3) !important;
  background-color: #222;
  padding: calc(6px * 1.3) calc(16px * 1.3);
  color: #fff;
  margin-bottom: 8px;
  border-radius: 50px;
}

.index__card_title {
  font-size: calc(25px * 1.3) !important;
  font-weight: bold;
  margin-bottom: 16px;
}

.index__card_price {
  font-size: calc(25px * 1.3) !important;
  margin-bottom: 20px;
}

.index__card_price .tax {
  font-size: calc(18px * 1.3) !important;
}

.index__card_btn {
  margin-top: auto;
  justify-self: flex-end;
  width: 100%;
  border: none;
  outline: none;
  padding: 20px 10px;
  background-color: #a50519;
  color: #fff;
  font-size: calc(26px * 1.3) !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: opacity 0.3s ease;
}

.index__card_btn:hover {
  opacity: 0.8;
}

.index_polygon {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 34px solid #a50519;
  margin: 0 auto 30px;
}

.index__list-select {
  position: relative;
  padding: 20px;
  border: 2px solid #2c3a52;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
  background-color: #fff;
}

.index__list-select-item {
  padding: 30px 20px 20px;
  border: 2px solid #e5e5e5;
  display: flex;
  gap: 10px;
  background-color: #fff;  
  flex-basis: 201px;
}

.index__list-select-item:first-child {
  position: relative;
}

.index__list-select-item:first-child::before {
  content: '';
  position: absolute;
  width: 42px;
  height: 42px;
  background-color: #2c3a52;
  border-radius: 50%;
  bottom: -7.5px;
  left: 50%;
  transform: translate(-50%, 50%);
}

.index__list-select-item:first-child::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  bottom: -7.5px;
  left: 50%;
  transform: translate(-50%, 50%);
  background:
    linear-gradient(#fff, #fff) no-repeat center / 22px 3px,
    linear-gradient(#fff, #fff) no-repeat center / 3px 22px;
  z-index: 2;
}

.index__list-select-item.no-choice {
    background-color: #F5F5F5;
    justify-content: center;
    align-items: center;
}

.index__list-select-item.no-choice p {
    text-align: center;
    font-size: calc(28px * 1.3);
    font-weight: bold;
    color: #A50519;
}

.index__list-select-img {
  max-width: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.index__list-select-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.index__list-select-ttl {
  font-weight: bold;
  font-size: calc(25px * 1.3) !important;
}

.index__list-select-txt {
  font-size: calc(22px * 1.3) !important;
}

.index__cartBtn {
  max-width: 690px;
  width: 100%;
  margin: 0 auto;
  background-color: #a50519;
  padding: 27px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
  font-size: calc(28px * 1.3);
}

.index__cartBtn:hover {
  opacity: 0.8;
}

.index__reselectBtn {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  background-color: #222;
  padding: 18px;
  display: flex;
  justify-content: center;
  font-size: calc(28px * 1.3);
  align-items: center;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-bottom: 80px;
}

.index__reselectBtn:hover {
  opacity: 0.8;
}

#groupBtn {
  display: none;
}
