@charset "UTF-8";

.btn_section {
  width: 100%;
  margin-block: 100px;
  /* 必要に応じてmin-heightを調整 */
}

.section_inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}
.section_title {
  position: relative;
  font-size: min(2.78vw, 40px);
  font-weight: bold;
  color: var(--text-color);
  text-align: left;
  margin-bottom: min(1.39vw, 20px);
  padding-left: 15px;
}
.section_title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--black--);
}

.section_subtitle {
  font-size: min(2.22vw, 32px);
  font-weight: bold;
  color: var(--text-color);
  text-align: left;
  margin-bottom: min(1.11vw, 16px);
  padding-left: 10px;
  margin-top: 30px;
}

/*---------------ボタンの詳細設定--------------------*/

.btn_samples {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* 基本ボタン */
.btn_basic {
  display: inline-block;
  padding: 12px 32px;
  background-color: #3498db;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease;
}

.btn_basic:hover {
  background-color: #2980b9;
}

/* ホバーエフェクトボタン */
.btn_hover_effect {
  display: inline-block;
  padding: 12px 32px;
  background-color: #e74c3c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn_hover_effect:hover {
  background-color: #f1cfa9;
  color: #000000;
}

/* 3Dエフェクトボタン */
.btn_3d_effect {
  display: inline-block;
  padding: 12px 32px;
  background-color: #2ecc71;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 0 #27ae60;
  transition: all 0.1s ease;
  position: relative;
  top: 0;
}

.btn_3d_effect:hover {
  top: 2px;
  box-shadow: 0 4px 0 #27ae60;
}

.btn_3d_effect:active {
  top: 6px;
  box-shadow: 0 0 0 #27ae60;
}

/* 丸みのあるボタン */
.btn_rounded {
  display: inline-block;
  padding: 12px 32px;
  background-color: #9b59b6;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

.btn_rounded:hover {
  background-color: #8e44ad;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.4);
}

/* LPボタン集 */
/*カートに入れると詳細を見るのセット*/
.cart_set_detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
/* カートに入れるボタン */
.btn_cart_v1 {
  display: inline-block;
  padding: 16px 80px;
  max-width: 100%;
  width: 300px; /*サイズ変更時に調整*/
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/*
.btn_cart_v1:hover {
  background-color: #ff4c3b;
  transform: translateY(-3px);
}*/ /*ホバー効果無効*/

/* 詳細リンクボタン */
.btn_detail {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding-bottom: 4px;
  border-bottom: 2px solid #333;
  position: relative;
  padding-inline: 50px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.btn_detail::after {
  content: "";
  position: absolute;
  right: 15%;
  top: 42%;
  width: 8px; /*矢印の大きさ調整*/
  height: 8px; /*矢印の大きさ調整*/
  border-top: 2px solid #333; /*矢印の太さと色調整*/
  border-right: 2px solid #333; /*矢印の太さと色調整*/
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease, border-color 0.3s ease;
}

/*.btn_detail:hover {
  color: #e74c3c;
  border-bottom-color: #e74c3c;
}

.btn_detail:hover::after {
  right: -4px;
  border-color: #e74c3c;
}*/ /*ホバー効果無効*/

/*---------------LPボタン2--------------------*/

/* カートに入れるボタン */
.btn_cart_v3 {
  display: inline-block;
  position: relative;
  padding: 16px 80px;
  max-width: 100%;
  width: 300px; /*サイズ変更時に調整*/
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn_cart_v3::after {
  content: "";
  position: absolute;
  right: 15%;
  top: 50%;
  width: 8px; /*矢印の大きさ調整*/
  height: 8px; /*矢印の大きさ調整*/
  border-top: 2px solid #ffffff; /*矢印の太さと色調整*/
  border-right: 2px solid #ffffff; /*矢印の太さと色調整*/
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.3s ease, border-color 0.3s ease;
}

/*---------------LPボタン3--------------------*/

/* カートに入れるボタン */
.btn_cart_v4 {
  display: inline-block;
  position: relative;
  padding: 16px 80px;
  max-width: 100%;
  width: 300px; /*サイズ変更時に調整*/
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn_cart_v4::after {
  content: "";
  position: absolute;
  right: 15%;
  top: 50%;
  width: 10px; /* 三角の横幅 */
  height: 12px; /* 三角の縦幅 */
  background: #ffffff; /* 三角の色 */
  clip-path: polygon(0 0, 100% 50%, 0 100%); /* 右向き三角形 */
  transform: translate(0, -50%);
}

.btn_cart_v4:hover::after {
  animation: btn-cart-arrow 0.6s ease-in-out infinite;
}

@media (hover: none) {
  .btn_cart_v4:hover::after {
    animation: none;
  }
}

@keyframes btn-cart-arrow {
  0% {
    transform: translate(0, -50%);
  }
  50% {
    transform: translate(6px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}

/*---------------LPボタン4--------------------*/

/* カートに入れるボタン */
.btn_cart_v5 {
  display: inline-block;
  position: relative;
  padding: 16px 80px;
  max-width: 100%;
  width: 300px; /*サイズ変更時に調整*/
  background-color: #ff0000;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn_cart_v5::before {
  content: "";
  position: absolute;
  left: 85%;
  top: 50%;
  width: 22px;
  height: 22px;
  border: 2px solid #ffffff; /* 円の線色 */
  background-color: #ffffff; /* 円の背景色 */
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.btn_cart_v5::after {
  content: "";
  position: absolute;
  left: 84.5%;
  top: 50%;
  width: 8px; /*矢印の大きさ調整*/
  height: 8px; /*矢印の大きさ調整*/
  border-top: 2px solid #ff0000; /*矢印の太さと色調整*/
  border-right: 2px solid #ff0000; /*矢印の太さと色調整*/
  transform: translate(-50%, -50%) rotate(45deg);
  transition: transform 0.2s ease, border-color 0.3s ease;
  z-index: 1; /* 円の上に矢印を表示 */
}

.btn_cart_v5:hover::before {
  animation: btn-cart-circle 0.6s ease-in-out infinite;
}

.btn_cart_v5:hover::after {
  animation: btn-cart-arrow-v5 0.6s ease-in-out infinite;
}

@keyframes btn-cart-circle {
  0% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(calc(-50% + 6px), -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}

@keyframes btn-cart-arrow-v5 {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  50% {
    transform: translate(calc(-50% + 6px), -50%) rotate(45deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}

@media (hover: none) {
  .btn_cart_v5:hover::before {
    animation: none;
  }

  .btn_cart_v5:hover::after {
    animation: none;
  }
}

/*---------------LPボタン5--------------------*/

/* オレンジ問い合わせボタン（画像風） */
.btn_inquiry_wrap {
  display: inline-flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn_inquiry_main {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px;
  background: linear-gradient(90deg, #f6902f 0%, #f8aa3c 60%, #fdbc54 100%);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
}

.btn_inquiry_sub {
  position: relative;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  padding: 0 16px;
  white-space: nowrap;
}

.def_color {
  color: #fff200;
}

.btn_inquiry_arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  position: relative;
}

.btn_inquiry_arrow::before {
  content: "";
  position: absolute;
  right: 30%;
  top: 50%;
  width: 10px; /* 三角の横幅 */
  height: 12px; /* 三角の縦幅 */
  background: #fdbc54; /* 三角の色 */
  clip-path: polygon(0 0, 100% 50%, 0 100%); /* 右向き三角形 */
  transform: translate(0, -50%);
}

.btn_inquiry_main:hover {
  filter: brightness(1.05);
}

.btn_inquiry_main:active {
  filter: brightness(0.95);
}
