@charset "UTF-8";
.binchotan {
  /* ==============================================
  天然備長炭の特徴
  ============================================== */
  /* ==============================================
  メッセージ
  ============================================== */
  /* ==============================================
  数字でみる
  ============================================== */
  /* ==============================================
  スライダー
  ============================================== */
  /* ==============================================
  備長炭について
  ============================================== */
  /* ==============================================
  比較表
  ============================================== */
  /* ==============================================
  YouTube
  ============================================== */
}
.binchotan .pc_none {
  display: none;
}
@media screen and (max-width: 576px) {
  .binchotan .pc_none {
    display: block;
  }
}
.binchotan_wrapper {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
.binchotan .MV {
  padding-top: 150px;
}
@media screen and (max-width: 576px) {
  .binchotan .MV {
    padding-top: 60px;
  }
}
.binchotan .mv {
  position: relative;
  width: 100%;
  height: 720px;
  overflow: hidden;
  /* 各スライドの表示タイミング */
  /* フェードアニメーション */
  /* スマホ時の高さ調整 */
  /* テキスト部分 */
}
.binchotan .mv_slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.binchotan .mv_slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-animation: fadeShow 20s infinite ease-in-out;
          animation: fadeShow 20s infinite ease-in-out;
}
.binchotan .mv_slide picture,
.binchotan .mv_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.binchotan .mv_slide:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.binchotan .mv_slide:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.binchotan .mv_slide:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.binchotan .mv_slide:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
@-webkit-keyframes fadeShow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  } /* ゆっくりフェードイン */
  25% {
    opacity: 1;
  } /* 落ち着いて表示 */
  30% {
    opacity: 0;
  } /* ゆっくりフェードアウト */
  100% {
    opacity: 0;
  }
}
@keyframes fadeShow {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  } /* ゆっくりフェードイン */
  25% {
    opacity: 1;
  } /* 落ち着いて表示 */
  30% {
    opacity: 0;
  } /* ゆっくりフェードアウト */
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .mv {
    height: 375px; /* 任意。画像比率に合わせて調整 */
  }
}
.binchotan .mv .mv_text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .binchotan .mv .mv_text {
    top: 65%;
  }
}
.binchotan .mv .mv_text_main {
  font-size: clamp(32px, 10vw, 82px);
  font-weight: 700;
  margin-bottom: 5%;
}
.binchotan .mv .mv_text_sub {
  font-size: clamp(16px, 3vw, 30px);
  font-weight: 700;
  margin-bottom: 10%;
  position: relative;
  display: inline-block;
}
.binchotan .mv .mv_text_sub::before, .binchotan .mv .mv_text_sub::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #fff;
  vertical-align: middle;
  margin: 0 12px;
}
@media screen and (max-width: 576px) {
  .binchotan .mv .mv_text_sub::before, .binchotan .mv .mv_text_sub::after {
    width: 13px;
    margin: 0 5px;
  }
}
.binchotan .mv .mv_text_desc {
  line-height: 1.5;
  font-size: clamp(14px, 4vw, 24px);
}
.binchotan .feature {
  max-width: 1750px;
  width: 90%;
  margin: 0 auto;
  background: url("./images/binchotan/gray_back.jpg") center/cover;
  padding: 80px 0;
  border-radius: 30px;
}
@media screen and (max-width: 576px) {
  .binchotan .feature {
    padding: 40px 0;
  }
}
.binchotan .feature_head {
  margin-bottom: 40px;
}
.binchotan .feature_head_label {
  font-size: clamp(14px, 3vw, 18px);
  color: #bf3030;
  font-weight: 500;
  margin-bottom: 15px;
}
.binchotan .feature_head_title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .binchotan .feature_head {
    text-align: center;
  }
}
.binchotan .feature_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-content: center;
  align-items: start;
  /* タブレットで2カラム */
  /* スマホで1カラム */
}
@media screen and (max-width: 1024px) {
  .binchotan .feature_list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .feature_list {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 50px;
  }
}
.binchotan .feature_item {
  text-align: center;
}
.binchotan .feature_subtitle {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
.binchotan .feature_text {
  text-align: left;
  margin: 0 auto;
  max-width: 342px;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.6;
  color: #444;
}
.binchotan .message {
  margin-top: 120px;
  background: url("./images/binchotan/message_back.jpg") center/cover;
  height: 1145px;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .binchotan .message {
    margin-top: 60px;
    height: 900px;
  }
}
.binchotan .message_inner {
  max-width: 1300px;
  position: relative;
}
.binchotan .message_textbox {
  width: 55%;
  padding-top: 130px;
  max-width: 548px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 876px) {
  .binchotan .message_textbox {
    padding-top: 80px;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .message_textbox {
    padding-top: 40px;
    width: 100%;
  }
}
.binchotan .message_title {
  display: flex;
  gap: 3px;
  flex-direction: column;
  align-items: flex-start;
}
.binchotan .message_title .line {
  display: inline-block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 2px solid #fff;
}
.binchotan .message_lead {
  margin-top: 75px;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 576px) {
  .binchotan .message_lead {
    margin-top: 35px;
    margin-bottom: 10px;
  }
}
.binchotan .message_text {
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.8;
  color: #ddd;
  font-weight: 700;
}
.binchotan .message_images_first {
  position: absolute;
  top: 35%;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .binchotan .message_images_first {
    width: 30%;
    top: 75%;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .message_images_first {
    top: auto;
    bottom: -43%;
    width: 50%;
  }
}
.binchotan .message_images_second {
  position: absolute;
  top: 450px;
  right: 5%;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .binchotan .message_images_second {
    width: 40%;
    top: 110%;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .message_images_second {
    top: auto;
    bottom: -77%;
    right: 30%;
    width: 65%;
  }
}
.binchotan .numbers {
  position: relative;
  background: url("./images/binchotan/gray_back.jpg") center/cover;
  padding: 100px 0;
}
@media screen and (max-width: 576px) {
  .binchotan .numbers {
    padding: 50px 0;
  }
}
.binchotan .numbers_image {
  position: absolute;
  right: 0;
  top: -200px;
}
@media screen and (max-width: 1000px) {
  .binchotan .numbers_image {
    width: 80%;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .numbers_image {
    top: -95px;
  }
}
.binchotan .numbers_inner {
  position: relative;
}
.binchotan .numbers_head {
  position: absolute;
  top: -50%;
  left: -2%;
}
@media screen and (max-width: 1200px) {
  .binchotan .numbers_head {
    top: -80%;
  }
}
@media screen and (max-width: 820px) {
  .binchotan .numbers_head {
    top: -210px;
  }
  .binchotan .numbers_head img {
    width: 65%;
  }
}
.binchotan .numbers_list {
  max-width: 1200px;
  margin: 160px auto 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .binchotan .numbers_list {
    margin: 100px auto 0;
    gap: 10px;
    justify-content: center;
  }
}
.binchotan .numbers_item {
  flex: 1 1 31.333%;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
}
@media screen and (max-width: 576px) {
  .binchotan .numbers_item {
    padding: 5px;
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.binchotan .numbers_label {
  font-size: clamp(11px, 1.2vw, 15px);
  color: #fff;
  background: #bf3030;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .binchotan .numbers_label {
    padding: 2px 5px;
  }
}
.binchotan .numbers .numbers_headline {
  margin-top: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 820px) {
  .binchotan .numbers .numbers_headline {
    margin-top: 15px;
  }
  .binchotan .numbers .numbers_headline img {
    width: 30%;
  }
}
.binchotan .numbers .numbers_headline .numbers_value {
  font-size: clamp(14px, 2vw, 35px);
  font-weight: 700;
  color: #444;
}
.binchotan .numbers .numbers_headline .numbers_value span {
  padding-right: 5px;
}
.binchotan .numbers .numbers_headline .numbers_value strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(35px, 4vw, 84px);
  font-weight: 700;
}
.binchotan .numbers_note {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  font-size: clamp(12px, 1vw, 16px);
  color: #444;
  text-align: end;
}
.binchotan .slider {
  width: 100%;
  overflow: hidden;
  margin-top: -165px;
}
@media screen and (max-width: 820px) {
  .binchotan .slider {
    margin-top: -135px;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .slider {
    margin-top: -80px;
  }
}
.binchotan .slider .slider_track {
  display: flex;
  gap: 15px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: slideLoop 60s linear infinite;
          animation: slideLoop 60s linear infinite;
}
@media screen and (max-width: 576px) {
  .binchotan .slider .slider_track {
    gap: 5px;
  }
}
.binchotan .slider .slider_item img {
  height: auto;
  display: block;
}
@media screen and (max-width: 820px) {
  .binchotan .slider .slider_item img {
    width: 300px;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .slider .slider_item img {
    width: 170px;
  }
}
@-webkit-keyframes slideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes slideLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.binchotan .about {
  background: #f9f9f9;
  padding: 120px 0;
}
@media screen and (max-width: 576px) {
  .binchotan .about {
    padding: 30px 0;
  }
}
.binchotan .about_head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .binchotan .about_head {
    margin-bottom: 30px;
  }
}
.binchotan .about_head .about_label {
  font-family: "Montserrat", sans-serif;
  color: #bf3030;
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 15px;
}
.binchotan .about_head .about_title {
  line-height: 1.5;
  font-size: clamp(24px, 3vw, 45px);
  font-weight: 700;
}
.binchotan .about_kishu, .binchotan .about_laos {
  background: #fff;
  border-radius: 20px;
  padding: 60px 10%;
  box-sizing: border-box;
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .binchotan .about_kishu, .binchotan .about_laos {
    margin-bottom: 40px;
    padding: 10% 10%;
  }
}
.binchotan .about_subtitle {
  text-align: center;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 576px) {
  .binchotan .about_subtitle {
    margin-bottom: 35px;
  }
}
.binchotan .about_group {
  display: flex;
  justify-content: space-between;
  gap: 5%;
}
@media screen and (max-width: 820px) {
  .binchotan .about_group {
    flex-direction: column;
  }
}
.binchotan .about .second_group {
  margin-top: 70px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 820px) {
  .binchotan .about .second_group {
    flex-direction: column;
    margin-top: 35px;
  }
}
.binchotan .about_text {
  font-size: clamp(14px, 1.5vw, 18px);
}
@media screen and (max-width: 820px) {
  .binchotan .about_text {
    margin-bottom: 30px;
  }
}
.binchotan .about figure {
  width: 48%;
}
@media screen and (max-width: 820px) {
  .binchotan .about figure {
    width: 100%;
  }
}
.binchotan .about_col {
  min-width: 300px;
  flex: 1;
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.8;
}
@media screen and (max-width: 576px) {
  .binchotan .about_col {
    line-height: 1.6;
    min-width: auto;
  }
}
.binchotan .about_col .about_coltitle {
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  margin-bottom: 25px;
}
@media screen and (max-width: 576px) {
  .binchotan .about_col .about_coltitle {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 576px) {
  .binchotan .about_col p {
    margin-bottom: 20px;
  }
}
.binchotan .about_col .about_list {
  margin-bottom: 20px;
  list-style: none;
  padding-left: 0;
}
.binchotan .about_col .about_list li {
  display: flex;
  gap: 1em;
  position: relative;
  padding-left: 1.2em;
}
.binchotan .about_col .about_list li::before {
  content: "•";
  position: absolute;
  left: 0;
}
.binchotan .about_col .about_list .label {
  width: 3em;
  flex-shrink: 0;
}
.binchotan .about_col .about_list .desc {
  flex: 1;
}
.binchotan .product {
  padding-bottom: 40px 0 120px;
  background: #f9f9f9;
  /* 星評価セクション */
}
.binchotan .product_inner {
  display: flex;
  justify-content: center;
  gap: 3%;
}
@media screen and (max-width: 820px) {
  .binchotan .product_inner {
    flex-direction: column;
    gap: 30px;
  }
}
.binchotan .product_card {
  width: 50%;
  border: 5px solid #d4c1bc;
  border-radius: 30px;
  padding: 55px 6%;
  background: #fff;
}
@media screen and (max-width: 820px) {
  .binchotan .product_card {
    width: 100%;
  }
}
.binchotan .product .laos_card {
  border: 5px solid #bcd2d4;
}
.binchotan .product_title {
  font-size: clamp(20px, 5vw, 40px);
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  color: #bf3030;
}
.binchotan .product_title span {
  position: relative;
  display: block;
  font-weight: 700;
  font-size: clamp(15px, 5vw, 18px);
  margin-top: 15px;
  color: #222;
  padding: 0 50px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.binchotan .product_title span::before, .binchotan .product_title span::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 1px;
  background-color: #222;
}
.binchotan .product_title span::before {
  left: -5px;
}
.binchotan .product_title span::after {
  right: -5px;
}
.binchotan .product_title.is-laos {
  color: #17737c;
}
.binchotan .product_image {
  margin-bottom: 50px;
}
.binchotan .product_image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.binchotan .product_stars {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
  border-top: 1px solid #d4c1bc;
}
.binchotan .product_stars li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d4c1bc;
  padding: 15px 0;
  font-size: clamp(14px, 2vw, 18px);
}
.binchotan .product_stars li .label {
  flex: 1;
}
.binchotan .product_stars li .stars {
  color: #bf3030;
  font-weight: 600;
  letter-spacing: 0.2em;
}
.binchotan .product_detail {
  margin-bottom: 55px;
}
.binchotan .product_detail dl {
  line-height: 1.3;
  margin: 0;
  display: grid;
  grid-template-columns: 60px 1fr; /* 左カラム固定幅・右は可変 */
  row-gap: 15px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  font-size: clamp(14px, 2vw, 18px);
}
.binchotan .product_detail dt {
  position: relative;
  padding-left: 12px;
}
.binchotan .product_detail dt::before {
  content: "・";
  position: absolute;
  left: 0;
}
.binchotan .product_detail dd {
  margin: 0;
}
.binchotan .product_detail dt:nth-of-type(1),
.binchotan .product_detail dd:nth-of-type(1) {
  align-self: center; /* ← 下揃え */
}
.binchotan .product_detail .price {
  color: #bf3030;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 38px);
}
.binchotan .product_detail .price small {
  font-size: 20px;
}
.binchotan .product_btn {
  text-align: center;
}
.binchotan .product_btn .button_red {
  width: 100%;
  position: relative;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  display: inline-block;
  padding: 25px 0;
  border-radius: 40px;
  background: #bf3030;
  color: #fff;
}
@media screen and (max-width: 576px) {
  .binchotan .product_btn .button_red {
    padding: 18px 0;
  }
}
.binchotan .product_btn .button_red:hover {
  opacity: 0.7;
}
.binchotan .product_btn .button_red::after {
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 0.5em;
  height: 0.5em;
  margin-top: -0.25em;
  border-right: 2px solid #fff; /* 少し太くする場合は2px */
  border-bottom: 2px solid #fff;
  content: "";
  transform: rotate(-45deg);
  transition: 0.2s opacity;
}
.binchotan .youtube {
  margin-bottom: 120px;
  width: 100%;
  height: auto;
  padding: 120px 0;
  background: #f9f9f9 url("./images/binchotan/youtube_back.png") center/cover no-repeat;
}
@media screen and (max-width: 576px) {
  .binchotan .youtube {
    padding: 60px 0;
  }
}
.binchotan .youtube_head {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 820px) {
  .binchotan .youtube_head {
    margin-bottom: 30px;
  }
}
.binchotan .youtube_label {
  font-family: "Montserrat", sans-serif;
  color: #bf3030;
  font-size: clamp(15px, 3vw, 18px);
  margin-bottom: 15px;
}
.binchotan .youtube_title {
  line-height: 1.5;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
}
.binchotan .youtube_list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  /* PCでは1行4列 */
  flex-wrap: nowrap;
  /* 820px以下で2列×2段に */
}
@media screen and (max-width: 820px) {
  .binchotan .youtube_list {
    flex-wrap: wrap;
  }
}
.binchotan .youtube_item {
  width: 23%;
  text-align: center;
  /* 820px以下で2列 */
}
@media screen and (max-width: 820px) {
  .binchotan .youtube_item {
    width: 45%;
  }
}
.binchotan .youtube_speech {
  width: 100%;
  height: auto;
  margin-bottom: 3%;
}
.binchotan .youtube_thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16; /* Shorts対応の縦型比率 */
  overflow: hidden;
  border-radius: 12px;
}
.binchotan .youtube_thumb iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}
@media screen and (max-width: 820px) {
  .binchotan .youtube_thumb {
    aspect-ratio: 5/9; /* ← 横長に */
  }
}
/*# sourceMappingURL=products-binchotan.css.map */