/**
 * Reset and Base Styles
 *
 * @format
 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
	font-family: "FOT-筑紫Aオールド明朝 Pr6 R", TsukuOldMinPro-R, 游明朝, YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
	font-family: "FOT-筑紫オールド明朝 Pro R";
  background-color: #1e3a3a;
  color: white;
  line-height: 1.6;
}

a {
  color: white;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   Header Styles
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(30, 58, 58, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 55px 0 20px;
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Mobile Menu Button */
.sp-menu {
  display: flex;
  align-items: center;
  position: absolute;
  top: 28px;
  right: 25px;
  z-index: 100;
  justify-content: center;
  width: 60px;
  height: 60px;
  text-align: center;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  appearance: none;
}

.hamburger-button {
  background-color: transparent;
  position: relative;
  width: 60px;
  height: 60px;
  z-index: 9999;
}

.hamburger-button span {
  display: block;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  height: 2px;
  background: #fff;
  border-radius: 5%;
  width: 50px;
}

.hamburger-button span:nth-of-type(1) {
  top: 21px;
}

.hamburger-button span:nth-of-type(2) {
  top: 32px;
}

.hamburger-button span:nth-of-type(3) {
  top: 43px;
}

.hamburger-button.is-active span:nth-of-type(1) {
  top: 30px;
  transform: rotate(45deg);
}

.hamburger-button.is-active span:nth-of-type(2) {
  opacity: 0;
}

.hamburger-button.is-active span:nth-of-type(3) {
  top: 30px;
  transform: rotate(-45deg);
}

/* Mobile Navigation */
.sp-header__nav {
  position: fixed;
  top: 101.594px;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.5);
  height: 300px;
  width: 200px;
  max-width: 55%;
  padding: 66px 32px 60px 36px;
  z-index: 3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 300ms ease-out;
  -o-transition: all 300ms ease-out;
  transition: all 300ms ease-out;
  transform: translateZ(0) translateX(100%);
  overflow: hidden;
}

.sp-header__nav.is-show {
  transform: translateZ(0) translateX(0);
  pointer-events: auto;
}

.sp-header__nav-list {
  list-style-type: none;
}

.sp-header__nav-list-item {
  margin-bottom: 33px;
}

.sp-header__nav-list-item::before {
  content: "●";
  color: #000;
}

.sp-header__nav-list-item a {
  color: #000;
  text-decoration: none;
}

.sp-header__nav-list-item a:hover {
  text-decoration: underline;
}

/* ========================================
   Background Styles
   ======================================== */
.article-bg {
  background-image: url(../img/bg.png), url(../img/bg2.png);
  background-position: top, top;
  background-size: min(100%, 1200px) auto, min(100%, 1200px) auto;
  background-color: #15322c;
  background-repeat: no-repeat, repeat-y;
  min-height: 100vh;
}

/* ========================================
   Main Visual Section
   ======================================== */
.mv {
  display: flex;
  flex-direction: column;
  gap: 220px;
  align-items: center;
  padding-top: 600px;
  position: relative;
  overflow: hidden;
  min-height: 1067px;
}

.mv-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.mv-title {
  font-size: 8rem;
  font-weight: bold;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.mv-title img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


/* ========================================
   Product Introduction Section
   ======================================== */
.product-intro {
  padding: 120px 0 60px;
}

.product-text {
  padding-bottom: 130px;
}

.product-text p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: center;
}

.image-slider {
  position: relative;
  width: 860px;
  max-width: 100%;
  height: 505px;
  max-height: 100%;
}

.image-slider .swiper-slide {
  text-align: center;
}

.swiper-wrapper {
  height: 455px!important;
  overflow: hidden;
}

.placeholder-image {
  width: 860px;
  max-width: 100%;
  height: 455px;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  color: white;
}

.placeholder-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom;
}

/* Swiper Pagination Styles */
.image-slider .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.image-slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  margin: 0 10px!important;
}

.image-slider .swiper-pagination-bullet-active {
  background-color: white;
}

.lp-divider {
  border-top: 3px dotted #9f8245;
  border-bottom: none;
  border-right: none;
  border-left: none;
}

.lp-divider-wrapper {
  height: 3px;
}

/* ========================================
   Product Details Section
   ======================================== */
.product-title {
  font-size: 2.1rem;
  padding-left: 6px;
  margin-bottom: 25px;
  font-weight: 300;
}

.details-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  padding: 60px 60px 0;
  gap: 60px;
}

.product-image {
  max-width: 90%;
	margin: 0 auto;
}

.details-product-image {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.details-product-image img {
  width: 100%;
  height: auto;
}

.details-desc {
  padding-top: 60px;
}

.specifications {
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  padding: 3px 6px;
  border-radius: 8px;
}

.spec-label {
  max-width: 100%;
  width: 120px;
}

.price {
  margin-top: 20px;
  padding: 6px;
}

.price p {
  line-height: 1.8;
}

.tasting-comment-content {
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 160px;
}

.tasting-comment-title {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
}

.profile-section-button {
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
  text-align: right;
  padding-bottom: 10px;
  cursor: pointer;
}

.profile-section-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #fff;
}

.tasting-sliders {
  margin-bottom: 40px;
}

.slider-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  margin-block-start: auto;
  margin-bottom: 16px;
}


.slider-item label {
  display: block;
  font-weight: bold;
  font-size: 18px;
}

.slider-container {
  border-radius: 8px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 20px;
  position: relative;
}

.slider-note {
  color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: -12px;
  left: 20px;
  font-size: 14px;
}


.slider-track {
  position: relative;
  height: 1px;
  background-color: rgba(255, 255, 255, 1);
  border-radius: 2px;
  margin: 20px 0;
  width: 100%;
}

.slider-dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 50%;
}

.slider-label {
  word-break: keep-all;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.slider-label:first-child {
  left: 0;
}

.slider-label:last-child {
  right: 0;
}


.release-info {
	background-color: rgba(158, 127, 64, 0.7);
  color: #fff;
  text-align: center;
  font-size: 22px;
	padding: 12px 0px 10px 140px;
  margin-top: -40px;
}

.expert-content {
  padding: 60px 0 0;
}

.expert-content .content-box {
  padding-bottom: 40px;
}

/* Expert Profile */

.profile-section-title {
  padding-bottom: 10px;
  font-weight: normal;
}

.profile-content {
  margin-bottom: 50px;
}

.profile-content-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.profile-content.show .profile-content-inner {
  opacity: 1;
  transform: translateY(0);
}

.profile-content-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
}

.profile-image {
  text-align: center;
}

.profile-photo {
  width: 200px;
  max-width: 100%;
  height: 200px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
  margin: 0 auto;
}

.profile-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.profile-text p {
  margin-bottom: 20px;
  line-height: 2;
}

.profile-close {
  width: 170px;
  border-bottom: 1px solid #fff;
  margin: 0 0 auto 0;
  position: relative;
  justify-self: self-end;
  padding-bottom: 10px;
  text-align: right;
  cursor: pointer;
  position: relative;
}

.profile-close::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 1px solid #fff;
}

.profile-close p {
  margin-bottom: 0;
}


.content-box {
  border-radius: 8px;
  min-height: 150px;
  margin-bottom: 12px;
}

.content-box h2 {
  font-weight: normal;
  margin-bottom: 12px;
}

.content-box p {
  line-height: 1.6;
  margin-bottom: 12px;
}

/* ========================================
   Release Bonus Section
   ======================================== */
.release-bonus {
  padding: 80px 0;
}


.bonus-image {
  text-align: center;
}

.bonus-placeholder {
  width: 660px;
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  position: relative;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.bonus-placeholder img {
  width: 100%;
  height: auto;
}

.bonus-text {
  text-align: center;
}

.bonus-text .section-title {
  font-weight: normal;
  font-size: 24px;
  margin-bottom: 20px;
}

.bonus-text p {
  font-size: 18px;
  line-height: 1.8;
}

/* ========================================
   Retailers Section
   ======================================== */
.retailers {
  padding: 80px 0;
}

.retailer-text {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.shop-button {
  background-color: rgba(158, 127, 64, 0.7);
  color: white;
  border: none;
  padding: 15px 0;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  margin: 0 auto 20px;
  width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-button:hover {
  background-color: #b8941f;
}

.retailer-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ========================================
   Shop Table Styles
   ======================================== */
.shop-table-container {
  margin-top: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.shop-table-container.show {
  opacity: 1;
  transform: translateY(0);
}

.shop-section {
  margin-bottom: 40px;
}

.shop-section:last-child {
  margin-bottom: 0;
}

.shop-section .section-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 15px;
  padding-bottom: 8px;
  letter-spacing: 0.1em;
}

.shop-table-title:first-child {
  margin-top: 0;
}

.shop-table-title {
  margin: 63px 0 21px 8px;
  font-size: 17px;
}

.shop-table-title::after {
  content: '｜';
}

/* 統一テーブルスタイル */
.shop-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.shop-table th {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 12px 15px;
  text-align: left;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.shop-table td {
  padding: 12px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}

/* 店舗情報の個別スタイル */
.shop-table .store-item-title {
  color: white;
  width: 300px;
}

.shop-table .store-item-address {
  color: rgba(255, 255, 255, 0.8);
  width: 432px;
}

.shop-table .store-item-tel {
  color: rgba(255, 255, 255, 0.8);
  font-family: monospace;
}

/* テーブルの最後の行のボーダーを削除 */
.shop-table tbody tr:last-child td {
  border-bottom: none;
}


/* ========================================
   Footer Styles
   ======================================== */
.footer {
  padding: 120px 0 40px;
  position: relative;
}

.footer-content {
  margin-bottom: 40px;
}

.footer-logo {
  text-align: center;
  margin-bottom: 45px;
}


.company-info {
  margin-bottom: 60px;
  font-size: 14px;
  text-align: center;
}

/* ========================================
   Utility Classes
   ======================================== */
.font-english {
  font-family: "Cormorant Garamond", "EB Garamond", "Adobe Garamond Pro", "Adobe Garamond", "Garamond", serif;
}

/* 会社情報の個別スタイル */
.company-name {
  font-size: 16px;
  margin-bottom: 8px;
  letter-spacing: 0.25em;
}

.company-name-en {
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
  letter-spacing: 0.1em;
}

.legal-disclaimers {
  text-align: center;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 2;
}

.copyright {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.back-to-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  font-size: 12px;
}

.back-to-top::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(../img/back-to-top.png);
  background-size: contain;
  vertical-align: middle;
}

.back-to-top:hover {
  transform: translateY(-2px);
}


/* ========================================
   Responsive Design
   ======================================== */

/* Large screens (max-width: 1200px) */
@media screen and (max-width: 1200px) {
  .article-bg {
    margin-top: 100px;
  }

  .mv {
    padding-top: 300px;
  }
}

/* Medium and small screens (max-width: 768px) */
@media (max-width: 768px) {
  .hamburger-button span {
    width: 30px;
  }

  .mv {
    padding-top: 180px;
  }

  .mv-title {
    width: 5rem;
  }

  .mv-subtitle {
    font-size: 1.5rem;
  }

  .details-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 0;
  }

  .slider-item {
    grid-template-columns: 1fr;
  }

  .release-info {
    padding: 12px 0px;
    margin-top: 8px;
  }

  .release-info span {
    display: block;
  }

  .product-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tasting-comment-content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .profile-section-button {
    width: 210px;
    margin-left: auto;
  }

  .profile-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }


  .profile-content-inner {
    grid-template-columns: 1fr;
  }

  .bonus-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .expert-content {
    margin-top: 80px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .specifications {
    grid-template-columns: 1fr;
  }

  /* Shop table responsive styles */
  .shop-table {
    font-size: 12px;
  }

  .shop-table th,
  .shop-table td {
    padding: 10px 8px;
  }

  .shop-table td {
    display: block;
    width: 100% !important;
    max-width: 100%;
    border-bottom: none;
    padding: 2px;
  }

  .shop-table tr {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .shop-section .section-title {
    font-size: 16px;
  }
}
