@charset "UTF-8";
@media (min-width: 768px) {
  .hiddenPC {
    display: none;
  }
}

@media (max-width: 768px) {
  .hiddenSP {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}
@keyframes heroImageFade {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  42% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  color: #2c2416;
  background-color: #fefdfb;
  line-height: 1.8;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.04;
  z-index: -1;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 10 Q70 30 60 50 Q50 30 60 10' fill='%23b98b31' opacity='0.4'/%3E%3Cpath d='M60 10 Q50 30 60 50 Q70 30 60 10' fill='%23b98b31' opacity='0.3'/%3E%3Ccircle cx='60' cy='10' r='3' fill='%23d4a853'/%3E%3Cpath d='M20 70 Q15 75 20 80 Q25 75 20 70' fill='%23b98b31' opacity='0.3'/%3E%3Cpath d='M100 40 Q105 50 100 60 Q95 50 100 40' fill='%23b98b31' opacity='0.3'/%3E%3Cpath d='M40 100 Q35 105 40 110 Q45 105 40 100' fill='%23b98b31' opacity='0.2'/%3E%3Cpath d='M80 90 Q75 95 80 100 Q85 95 80 90' fill='%23b98b31' opacity='0.3'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  pointer-events: none;
}
body.is-navOpen {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.Header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  background: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #e8dfd3;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(0);
}
@media (max-width: 768px) {
  .Header {
    padding: 1rem 0;
  }
}
.Header.is-hidden {
  transform: translateY(-100%);
}
.Header_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .Header_container {
    padding: 0 1rem;
  }
}
.Header_logo {
  text-align: center;
}
.Header_logoImage {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .Header_logoImage {
    height: 40px;
  }
}
.Header_nav {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .Header_nav {
    display: none;
  }
}
.Header_navLink {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: #2c2416;
  position: relative;
  padding: 0.5rem 0;
}
.Header_navLink::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #b98b31;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.Header_hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}
@media (max-width: 768px) {
  .Header_hamburger {
    display: flex;
  }
}
.Header_hamburger span {
  width: 25px;
  height: 2px;
  background-color: #b98b31;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.Header_hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.Header_hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.Header_hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.MobileNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fefdfb;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.MobileNav.is-active {
  opacity: 1;
  pointer-events: auto;
}
.MobileNav_menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  gap: 2rem;
}
.MobileNav_link {
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: #2c2416;
  opacity: 0;
  transform: translateY(20px);
}
.MobileNav.is-active .MobileNav_link {
  animation: fadeInUp 0.6s ease-out forwards;
}
.MobileNav.is-active .MobileNav_link:nth-child(1) {
  animation-delay: 0.1s;
}
.MobileNav.is-active .MobileNav_link:nth-child(2) {
  animation-delay: 0.2s;
}
.MobileNav.is-active .MobileNav_link:nth-child(3) {
  animation-delay: 0.3s;
}
.MobileNav.is-active .MobileNav_link:nth-child(4) {
  animation-delay: 0.4s;
}

.ReservationButtons {
  position: fixed;
  right: 2rem;
  top: 70%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 900;
}
@media (max-width: 768px) {
  .ReservationButtons {
    bottom: 0;
    top: auto;
    left: 0;
    right: 0;
    transform: none;
    flex-direction: row;
    gap: 0;
    background: #ffffff;
    padding: 0;
  }
}

.ReservationButton {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (max-width: 768px) {
  .ReservationButton {
    flex: 1;
    padding: 1.2rem;
    border-radius: 0;
    margin: 0;
  }
}
.ReservationButton.-phone {
  background: #ffffff;
  color: #b98b31;
  border: 1px solid #b98b31;
}
@media (max-width: 768px) {
  .ReservationButton.-phone {
    border: none;
    border-right: 1px solid #e8dfd3;
  }
}
.ReservationButton.-web {
  background: linear-gradient(135deg, #b98b31, #d4a853);
  color: #ffffff;
}
@media (max-width: 768px) {
  .ReservationButton.-web {
    border-radius: 0;
  }
}
@media (max-width: 480px) {
  .ReservationButton_text {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .ReservationButton svg {
    width: 20px;
    height: 20px;
  }
}

.PageTop {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b98b31;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  pointer-events: none;
  z-index: 800;
}
.PageTop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.PageTop.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .PageTop {
    right: 1rem;
    bottom: 6rem;
    width: 45px;
    height: 45px;
  }
}

.Hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.Hero_image {
  position: absolute;
  inset: 0;
}
.Hero_imageItem {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: heroImageFade 12s ease-in-out infinite;
}
.Hero_imageItem:nth-child(1) {
  animation-delay: 0s;
}
.Hero_imageItem:nth-child(2) {
  animation-delay: 6s;
}
.Hero_imageItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.Hero_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 139, 49, 0.3) 0%, rgba(139, 111, 63, 0.4) 50%, rgba(44, 36, 22, 0.5) 100%);
  z-index: 1;
}
.Hero_content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.Hero_subtitle {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 0.3s forwards;
}
@media (max-width: 768px) {
  .Hero_subtitle {
    font-size: 0.85rem;
  }
}
.Hero_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 7rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 0.6s forwards;
}
@media (max-width: 1024px) {
  .Hero_title {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .Hero_title {
    font-size: 3.5rem;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 480px) {
  .Hero_title {
    font-size: 2.5rem;
    letter-spacing: 0.15em;
  }
}
.Hero_text {
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 0.9s forwards;
}
.Hero_catchphrase {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  font-weight: 400;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 1.2s forwards;
}
@media (max-width: 768px) {
  .Hero_catchphrase {
    font-size: 1.5rem;
  }
}
.Hero_scroll {
  position: absolute;
  bottom: 3rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out 1.5s forwards;
  z-index: 2;
}
.Hero_scrollText {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: #ffffff;
}
.Hero_scrollLine {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, #ffffff, transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

.About {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 50%, #ffffff 100%);
  position: relative;
}
@media (max-width: 768px) {
  .About {
    padding: 5rem 0;
  }
}
.About::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(185, 139, 49, 0.3), transparent);
}
.About::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 2%;
  width: 150px;
  height: 150px;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='150' height='150' viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M75 30 Q85 50 75 70 Q95 60 105 75 Q90 85 75 75 Q60 85 45 75 Q55 60 75 70 Q65 50 75 30' fill='none' stroke='%23b98b31' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='75' cy='30' r='4' fill='%23d4a853'/%3E%3Cpath d='M75 75 L75 100' stroke='%23b98b31' stroke-width='2' opacity='0.4'/%3E%3Cpath d='M70 85 Q65 90 70 95' fill='none' stroke='%23b98b31' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M80 85 Q85 90 80 95' fill='none' stroke='%23b98b31' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .About::after {
    width: 100px;
    height: 100px;
    opacity: 0.04;
  }
}
.About_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .About_container {
    padding: 0 1rem;
  }
}
.About_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  color: #b98b31;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .About_title {
    font-size: 2.5rem;
  }
}
.About_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.About_content {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
}
.About_text {
  font-size: 1.1rem;
  line-height: 2;
  color: #2c2416;
  max-width: 800px;
  margin: 0 auto;
}
.About_imageSection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
@media (max-width: 768px) {
  .About_imageSection {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.About_imageCard {
  min-width: 0;
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(40px);
}
.About_imageCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.About_imageCardLabel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(185, 139, 49, 0.9), transparent);
  color: #ffffff;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
}
.About_ownerSection {
  background: #faf8f3;
  padding: 4rem;
  border-radius: 5px;
  border: 1px solid #e8dfd3;
  opacity: 0;
  transform: translateY(40px);
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 768px) {
  .About_ownerSection {
    padding: 2.5rem 1rem;
  }
}
.About_ownerTitle {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-align: center;
  color: #8b6f3f;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .About_ownerTitle {
    font-size: 1.6rem;
  }
}
.About_ownerContent {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 1024px) {
  .About_ownerContent {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .About_ownerContent {
    gap: 2rem;
  }
}
.About_ownerImage {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1024px) {
  .About_ownerImage {
    max-width: 400px;
    margin: 0 auto;
  }
}
.About_ownerImage img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.About_ownerImageCaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 60%, transparent 100%);
  color: #ffffff;
  text-align: center;
}
.About_ownerName {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: #ffffff;
}
.About_ownerExperience {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.About_ownerTextContent {
  min-width: 0;
}
.About_ownerText {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
  text-align: left;
  color: #2c2416;
}
@media (max-width: 768px) {
  .About_ownerText {
    font-size: 0.95rem;
    line-height: 1.9;
  }
}
.About_ownerText:last-child {
  margin-bottom: 0;
}

.SpecialCampaign {
  background: linear-gradient(135deg, rgba(185, 139, 49, 0.95) 0%, rgba(212, 168, 83, 0.9) 50%, rgba(185, 139, 49, 0.95) 100%);
  padding: 5rem 2rem;
  margin: 4rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .SpecialCampaign {
    padding: 3rem 1rem;
    margin: 3rem 0;
  }
}
.SpecialCampaign_decorLeft {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg width='250' height='250' viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3C!-- メインの花 --%3E%3Cpath d='M125 80 Q135 95 125 110 Q150 100 165 115 Q150 130 125 115 Q100 130 85 115 Q100 100 125 110 Q115 95 125 80' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='0.7'/%3E%3Ccircle cx='125' cy='80' r='6' fill='%23ffffff' opacity='0.8'/%3E%3Ccircle cx='125' cy='115' r='8' fill='%23fefdfb' opacity='0.6'/%3E%3C!-- 茎 --%3E%3Cpath d='M125 115 Q120 140 125 165 Q130 140 125 115' fill='none' stroke='%23ffffff' stroke-width='2.5' opacity='0.6'/%3E%3C!-- 左の葉 --%3E%3Cpath d='M120 130 Q95 135 85 145 Q100 140 120 135' fill='%23ffffff' opacity='0.3'/%3E%3C!-- 右の葉 --%3E%3Cpath d='M130 145 Q155 150 165 160 Q150 155 130 150' fill='%23ffffff' opacity='0.3'/%3E%3C!-- 小さな花芽 --%3E%3Ccircle cx='90' cy='100' r='4' fill='%23ffffff' opacity='0.5'/%3E%3Ccircle cx='160' cy='105' r='3.5' fill='%23ffffff' opacity='0.5'/%3E%3Ccircle cx='110' cy='170' r='3' fill='%23fefdfb' opacity='0.4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .SpecialCampaign_decorLeft {
    width: 150px;
    height: 150px;
    opacity: 0.08;
    top: 5%;
    left: 2%;
  }
}
.SpecialCampaign_decorRight {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg width='280' height='280' viewBox='0 0 280 280' xmlns='http://www.w3.org/2000/svg'%3E%3C!-- 大きな葉のグループ --%3E%3Cpath d='M140 140 Q120 160 110 185 Q130 170 140 150' fill='%23ffffff' opacity='0.4'/%3E%3Cpath d='M140 140 Q160 155 175 175 Q155 165 140 145' fill='%23ffffff' opacity='0.35'/%3E%3Cpath d='M140 140 Q135 170 130 195 Q140 175 145 155' fill='%23ffffff' opacity='0.3'/%3E%3C!-- 装飾的な小枝 --%3E%3Cpath d='M100 120 Q105 130 115 135' stroke='%23ffffff' stroke-width='2' fill='none' opacity='0.5'/%3E%3Cpath d='M180 160 Q175 170 165 175' stroke='%23ffffff' stroke-width='2' fill='none' opacity='0.5'/%3E%3C!-- 小さな葉 --%3E%3Cellipse cx='118' cy='138' rx='8' ry='12' fill='%23fefdfb' opacity='0.4' transform='rotate(-30 118 138)'/%3E%3Cellipse cx='162' cy='148' rx='7' ry='11' fill='%23fefdfb' opacity='0.35' transform='rotate(25 162 148)'/%3E%3Cellipse cx='135' cy='180' rx='9' ry='13' fill='%23ffffff' opacity='0.3' transform='rotate(-15 135 180)'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .SpecialCampaign_decorRight {
    width: 170px;
    height: 170px;
    opacity: 0.06;
    bottom: 5%;
    right: 2%;
  }
}
.SpecialCampaign::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.SpecialCampaign::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.SpecialCampaign_header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}
.SpecialCampaign_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .SpecialCampaign_title {
    font-size: 2rem;
  }
}
.SpecialCampaign_subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: #ffffff;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .SpecialCampaign_subtitle {
    font-size: 1.1rem;
  }
}
.SpecialCampaign_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .SpecialCampaign_grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.SpecialCampaign_card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.SpecialCampaign_cardImage {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .SpecialCampaign_cardImage {
    height: 220px;
  }
}
.SpecialCampaign_cardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.SpecialCampaign_cardBadge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: #ffffff;
  padding: 0.6rem 1.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  border-radius: 5px;
  z-index: 2;
}
.SpecialCampaign_cardContent {
  padding: 2.5rem 1.5rem;
}
@media (max-width: 768px) {
  .SpecialCampaign_cardContent {
    padding: 2rem 1.5rem;
  }
}
.SpecialCampaign_cardTitle {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #b98b31;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #e8dfd3;
}
@media (max-width: 768px) {
  .SpecialCampaign_cardTitle {
    font-size: 1.5rem;
  }
}
.SpecialCampaign_cardDescription {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #2c2416;
  margin-bottom: 2rem;
  min-height: 95px;
}
@media (max-width: 1024px) {
  .SpecialCampaign_cardDescription {
    min-height: auto;
  }
}
.SpecialCampaign_cardPriceArea {
  background: linear-gradient(135deg, #faf8f3 0%, rgb(254.5, 254.3, 253.8) 100%);
  padding: 1.8rem;
  border-radius: 5px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(185, 139, 49, 0.1);
}
.SpecialCampaign_cardDuration {
  font-size: 1rem;
  color: #8b6f3f;
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.SpecialCampaign_cardPriceOriginal {
  font-size: 0.95rem;
  color: #8b6f3f;
  text-decoration: line-through;
  opacity: 0.7;
  margin-bottom: 1rem;
}
.SpecialCampaign_cardPriceOriginal small {
  font-size: 0.85em;
  margin-left: 0.2rem;
}
.SpecialCampaign_cardPriceSpecial {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.SpecialCampaign_cardPriceLabel {
  font-size: 1rem;
  color: #e74c3c;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.SpecialCampaign_cardPriceValue {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #b98b31;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 768px) {
  .SpecialCampaign_cardPriceValue {
    font-size: 2.6rem;
  }
}
.SpecialCampaign_cardPriceValue small {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 0.3rem;
}
.SpecialCampaign_cardNote {
  font-size: 0.8rem;
  color: #8b6f3f;
  opacity: 0.8;
  line-height: 1.6;
}

.KeyVisual {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .KeyVisual {
    height: 60vh;
    min-height: 450px;
  }
}
.KeyVisual_parallax {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.KeyVisual_image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease-out;
}
@media (max-width: 768px) {
  .KeyVisual_image {
    background-size: cover;
    background-position: center center;
  }
}
.KeyVisual_content {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  padding: 3rem;
  background: rgba(254, 253, 251, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 5px;
  border: 1px solid rgba(185, 139, 49, 0.2);
}
@media (max-width: 768px) {
  .KeyVisual_content {
    padding: 2rem;
    margin: 0 1rem;
  }
}
.KeyVisual_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: #b98b31;
  margin-bottom: 1.5rem;
  position: relative;
}
@media (max-width: 768px) {
  .KeyVisual_title {
    font-size: 2rem;
  }
}
.KeyVisual_title::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4a853, transparent);
}
.KeyVisual_text {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: #2c2416;
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .KeyVisual_text {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
}
.KeyVisual_image {
  background: url("../img/bg_002.jpg") no-repeat 50% 50%/cover;
}
@supports (background-image: url("../img/bg_002.webp")) {
  .KeyVisual_image {
    background-image: url("../img/bg_002.webp");
  }
}

.Interior {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .Interior {
    padding: 5rem 0;
  }
}
.Interior::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 139, 49, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.Interior::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(185, 139, 49, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.Interior_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1400px;
}
@media (max-width: 768px) {
  .Interior_container {
    padding: 0 1rem;
  }
}
.Interior_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  color: #b98b31;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .Interior_title {
    font-size: 2.5rem;
  }
}
.Interior_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.Interior_subtitle {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #8b6f3f;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
}
@media (max-width: 768px) {
  .Interior_subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.Interior_gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 768px) {
  .Interior_gallery {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.Interior_item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 5px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(80px) scale(0.85);
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.Interior_item.is-animated {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.Interior_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.95);
}
.Interior_caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}
@media (max-width: 768px) {
  .Interior_caption {
    font-size: 1rem;
    padding: 2rem 1.5rem;
  }
}

.Gallery {
  padding: 8rem 0;
  background: linear-gradient(135deg, #f5f1ea 0%, rgb(248.2903225806, 245.6064516129, 240.9096774194) 50%, #f5f1ea 100%);
  position: relative;
}
@media (max-width: 768px) {
  .Gallery {
    padding: 5rem 0;
  }
}
.Gallery::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(185, 139, 49, 0.03), transparent);
  pointer-events: none;
}
.Gallery::after {
  content: "";
  position: absolute;
  top: 40%;
  left: 1%;
  width: 180px;
  height: 180px;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M90 60 Q100 75 95 90 Q105 85 115 95 Q105 105 95 100 Q90 115 85 100 Q75 105 65 95 Q75 85 85 90 Q80 75 90 60' fill='none' stroke='%23b98b31' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='90' cy='60' r='4' fill='%23d4a853' opacity='0.7'/%3E%3Cpath d='M90 100 Q85 110 80 115' fill='none' stroke='%23b98b31' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M90 100 Q95 110 100 115' fill='none' stroke='%23b98b31' stroke-width='1.5' opacity='0.4'/%3E%3Ccircle cx='80' cy='115' r='2.5' fill='%23d4a853' opacity='0.5'/%3E%3Ccircle cx='100' cy='115' r='2.5' fill='%23d4a853' opacity='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .Gallery::after {
    width: 100px;
    height: 100px;
    opacity: 0.04;
  }
}
.Gallery_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .Gallery_container {
    padding: 0 1rem;
  }
}
.Gallery_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  color: #b98b31;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .Gallery_title {
    font-size: 2.5rem;
  }
}
.Gallery_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.Gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}
@media (max-width: 768px) {
  .Gallery_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.Gallery_slider {
  position: relative;
  padding-bottom: 4rem;
}
.Gallery_slider .splide__track {
  overflow: visible;
}
.Gallery_slider .splide__slide {
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
.Gallery_slider .splide__slide.is-active {
  opacity: 1;
}
.Gallery_slider .splide__arrow {
  background: linear-gradient(135deg, #b98b31, #d4a853);
  width: 3rem;
  height: 3rem;
  border: none;
  opacity: 1;
}
.Gallery_slider .splide__arrow svg {
  fill: #ffffff;
}
.Gallery_slider .splide__arrow--prev {
  left: -1rem;
}
@media (max-width: 768px) {
  .Gallery_slider .splide__arrow--prev {
    left: 0;
  }
}
.Gallery_slider .splide__arrow--next {
  right: -1rem;
}
@media (max-width: 768px) {
  .Gallery_slider .splide__arrow--next {
    right: 0;
  }
}
.Gallery_slider .splide__pagination {
  bottom: 0;
}
.Gallery_slider .splide__pagination__page {
  background: rgba(185, 139, 49, 0.3);
  width: 10px;
  height: 10px;
}
.Gallery_slider .splide__pagination__page.is-active {
  background: #b98b31;
  transform: scale(1.3);
}

.GalleryCard {
  background: linear-gradient(to bottom, #ffffff 0%, rgb(254.5, 254.3, 253.8) 100%);
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e8dfd3;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform: scale(0.95);
}
.GalleryCard_comparison {
  padding: 1rem;
  background: #faf8f3;
  position: relative;
}
.GalleryCard_comparison.splide .splide__arrow {
  background: rgba(185, 139, 49, 0.9);
  width: 2.5rem;
  height: 2.5rem;
}
.GalleryCard_comparison.splide .splide__arrow svg {
  fill: #ffffff;
}
.GalleryCard_comparison.splide .splide__arrow--prev {
  left: 0.5rem;
}
.GalleryCard_comparison.splide .splide__arrow--next {
  right: 0.5rem;
}
.GalleryCard_comparison.splide .splide__pagination {
  bottom: 0.5rem;
}
.GalleryCard_comparison.splide .splide__pagination__page {
  background: rgba(185, 139, 49, 0.4);
  width: 8px;
  height: 8px;
}
.GalleryCard_comparison.splide .splide__pagination__page.is-active {
  background: #b98b31;
}
.GalleryCard_arrow {
  font-size: 2rem;
  color: #b98b31;
  font-weight: bold;
  padding: 0 1rem;
}
.GalleryCard_imageWrapper {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: linear-gradient(135deg, #faf8f3, #e8dfd3);
  border-radius: 5px;
}
.GalleryCard_imageWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.GalleryCard_label {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 2;
}
.GalleryCard_label.-before {
  color: #8b6f3f;
}
.GalleryCard_label.-after {
  color: #b98b31;
  font-weight: 600;
}
.GalleryCard_info {
  padding: 2rem;
  text-align: center;
}
.GalleryCard_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #2c2416;
  margin-bottom: 0.5rem;
}
.GalleryCard_detail {
  font-size: 0.9rem;
  color: #8b6f3f;
  letter-spacing: 0.05em;
}

.Access {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #faf8f3 30%, #faf8f3 70%, #ffffff 100%);
  position: relative;
}
@media (max-width: 768px) {
  .Access {
    padding: 5rem 0;
  }
}
.Access::before {
  content: "";
  position: absolute;
  top: 3%;
  right: 3%;
  width: 160px;
  height: 160px;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M80 40 Q90 55 85 70 Q95 65 105 75 Q95 85 85 80 Q80 95 75 80 Q65 85 55 75 Q65 65 75 70 Q70 55 80 40' fill='none' stroke='%23b98b31' stroke-width='2' opacity='0.5'/%3E%3Ccircle cx='80' cy='40' r='4' fill='%23d4a853' opacity='0.7'/%3E%3Cpath d='M80 80 L80 105' stroke='%23b98b31' stroke-width='2' opacity='0.4'/%3E%3Cpath d='M75 90 Q70 95 75 100' fill='none' stroke='%23b98b31' stroke-width='1.5' opacity='0.4'/%3E%3Cpath d='M85 90 Q90 95 85 100' fill='none' stroke='%23b98b31' stroke-width='1.5' opacity='0.4'/%3E%3Ccircle cx='75' cy='100' r='2.5' fill='%23d4a853' opacity='0.5'/%3E%3Ccircle cx='85' cy='100' r='2.5' fill='%23d4a853' opacity='0.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}
@media (max-width: 768px) {
  .Access::before {
    width: 100px;
    height: 100px;
    opacity: 0.04;
  }
}
.Access::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(185, 139, 49, 0.3), transparent);
}
.Access_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .Access_container {
    padding: 0 1rem;
  }
}
.Access_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  color: #b98b31;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .Access_title {
    font-size: 2.5rem;
  }
}
.Access_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.Access_top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}
@media (max-width: 1024px) {
  .Access_top {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
}
.Access_sectionTitle {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8b6f3f;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .Access_sectionTitle {
    font-size: 1.5rem;
  }
}
.Access_info {
  min-width: 0;
  opacity: 0;
  transform: translateY(30px);
}
.Access_infoCard {
  background: #ffffff;
  border: 1px solid #e8dfd3;
  border-radius: 5px;
  padding: 3rem;
}
@media (max-width: 768px) {
  .Access_infoCard {
    padding: 2rem 1.5rem;
  }
}
.Access_infoList {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.Access_infoRow {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e8dfd3;
}
.Access_infoRow:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.Access_infoRow:first-child {
  padding-top: 0;
}
.Access_infoLabel {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #d4a853;
  margin-bottom: 0.8rem;
}
.Access_infoText {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c2416;
  letter-spacing: 0.03em;
}
.Access_infoNote {
  display: inline-block;
  font-size: 0.9rem;
  color: #8b6f3f;
  margin-left: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(212, 168, 83, 0.1);
  border-radius: 5px;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Access_infoNote {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}
.Access_route {
  min-width: 0;
  opacity: 0;
  transform: translateY(30px);
}
.Access_routeCard {
  background: #ffffff;
  border: 1px solid #e8dfd3;
  border-radius: 5px;
  padding: 3rem;
}
.Access_routeCard + .Access_routeCard {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .Access_routeCard {
    padding: 2rem 1.5rem;
  }
}
.Access_routeHeader {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #e8dfd3;
}
.Access_routeBadge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: linear-gradient(135deg, #d4a853, #8b6f3f);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border-radius: 5px;
}
.Access_routeBadge.-car {
  background: linear-gradient(135deg, #4CAF50, #388E3C);
}
.Access_routeTitle {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #2c2416;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Access_routeTitle {
    font-size: 1.1rem;
  }
}
.Access_routeSteps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.Access_routeStep {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.Access_routeStepNumber {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4a853, #8b6f3f);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50%;
}
.Access_routeStepText {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #2c2416;
  letter-spacing: 0.03em;
}
.Access_carInfo {
  padding: 0.5rem 0;
}
.Access_carText {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c2416;
  letter-spacing: 0.03em;
}
.Access_carNote {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #8b6f3f;
  font-style: italic;
}
.Access_mapSection {
  opacity: 0;
  transform: translateY(30px);
}
.Access_mapWrapper {
  width: 100%;
  height: 450px;
  background: #faf8f3;
  border: 1px solid #e8dfd3;
  border-radius: 5px;
  overflow: hidden;
}
.Access_mapWrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 768px) {
  .Access_mapWrapper {
    height: 350px;
  }
}

.Footer {
  background: linear-gradient(to top, #2c2416, #3a3020);
  color: #faf8f3;
  padding: 4rem 0 2rem;
}
.Footer_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .Footer_container {
    padding: 0 1rem;
  }
}
.Footer_logo {
  margin-bottom: 2rem;
}
.Footer_logoText {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #b98b31;
  margin-bottom: 0.5rem;
}
.Footer_logoSubtext {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: #faf8f3;
  opacity: 0.7;
}
.Footer_social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.Footer_socialLink {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(185, 139, 49, 0.1);
  color: #b98b31;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.Footer_socialLink svg {
  width: 24px;
  height: 24px;
}
.Footer_copyright {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: #faf8f3;
  opacity: 0.6;
  padding-top: 2rem;
  border-top: 1px solid rgba(185, 139, 49, 0.2);
}

.is-animated {
  animation: fadeInUp 0.8s ease-out forwards;
}

.is-animated-scale {
  animation: scaleIn 0.8s ease-out forwards;
}

.is-animated-left {
  animation: slideInLeft 0.8s ease-out forwards;
}

.is-animated-right {
  animation: slideInRight 0.8s ease-out forwards;
}

.Courses {
  padding: 8rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .Courses {
    padding: 5rem 0;
  }
}
.Courses_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .Courses_container {
    padding: 0 1rem;
  }
}
.Courses_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-align: center;
  color: #b98b31;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .Courses_title {
    font-size: 2.5rem;
  }
}
.Courses_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.Courses_category {
  margin-bottom: 5rem;
}
.Courses_category:last-of-type {
  margin-bottom: 3rem;
}
.Courses_categoryTitle {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  color: #8b6f3f;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
}
.Courses_categoryTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: #d4a853;
}
.Courses_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
}
.Courses_grid > * {
  min-width: 0;
}
@media (max-width: 1024px) {
  .Courses_grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.Courses_note {
  text-align: center;
  font-size: 0.9rem;
  color: #8b6f3f;
  margin-top: 2rem;
}

.CourseCard {
  min-width: 0;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, rgb(254.5, 254.3, 253.8) 100%);
  border: 1px solid #e8dfd3;
  border-radius: 5px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(30px);
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .CourseCard {
    padding: 2rem;
  }
}
.CourseCard_badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 5px;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
}
.CourseCard_badge.-new {
  background: linear-gradient(135deg, #d4a853 0%, rgb(222.2, 188.6372093023, 123.8) 100%);
  color: #ffffff;
}
.CourseCard_badge.-campaign {
  background: linear-gradient(135deg, #b98b31 0%, rgb(207.8846153846, 163.6538461538, 77.1153846154) 100%);
  color: #ffffff;
}
.CourseCard_title {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #2c2416;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .CourseCard_title {
    font-size: 1.2rem;
  }
}
.CourseCard_duration {
  font-size: 0.95rem;
  color: #8b6f3f;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8dfd3;
}
.CourseCard_price {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #faf8f3 0%, rgb(254.5, 254.3, 253.8) 100%);
  border-radius: 5px;
  border: 1px solid rgba(185, 139, 49, 0.1);
}
@media (max-width: 480px) {
  .CourseCard_price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem;
  }
}
.CourseCard_priceOriginal {
  font-size: 0.9rem;
  color: #8b6f3f;
  text-decoration: line-through;
  opacity: 0.7;
}
.CourseCard_priceOriginal small {
  font-size: 0.85em;
  margin-left: 0.2rem;
}
.CourseCard_priceGroup {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.CourseCard_priceLabel {
  font-size: 0.85rem;
  color: #e74c3c;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.CourseCard_priceSpecial {
  font-family: "A1 Mincho", serif, "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #b98b31;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 768px) {
  .CourseCard_priceSpecial {
    font-size: 2rem;
  }
}
.CourseCard_priceSpecial small {
  font-size: 0.9rem;
  font-weight: 400;
  margin-left: 0.3rem;
}
.CourseCard_description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #2c2416;
  padding-top: 1.5rem;
  border-top: 1px solid #e8dfd3;
}

.RedShot {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .RedShot {
    padding: 5rem 0;
  }
}
.RedShot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(185, 139, 49, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.RedShot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, #b98b31 20%, #d4a853 50%, #b98b31 80%, transparent 100%);
}
.RedShot_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1200px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .RedShot_container {
    padding: 0 1rem;
  }
}
.RedShot_title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  background: linear-gradient(135deg, #b98b31 0%, #d4a853 50%, #b98b31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .RedShot_title {
    font-size: 2.5rem;
  }
}
.RedShot_title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
}
.RedShot_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.RedShot_subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 5rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .RedShot_subtitle {
    font-size: 1.1rem;
  }
}
.RedShot_description {
  margin-bottom: 5rem;
}
.RedShot_descTitle {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .RedShot_descTitle {
    font-size: 1.5rem;
  }
}
.RedShot_descText {
  font-size: 1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3rem;
  text-align: center;
}
.RedShot_features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .RedShot_features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.RedShot_feature {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(185, 139, 49, 0.3);
  border-radius: 5px;
}
.RedShot_featureTitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b98b31;
  margin-bottom: 0.8rem;
  letter-spacing: 0.05em;
}
.RedShot_featureText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}
.RedShot_benefits {
  padding: 2rem;
  background: rgba(185, 139, 49, 0.1);
  border: 1px solid rgba(185, 139, 49, 0.3);
  border-radius: 5px;
  margin-bottom: 5rem;
}
.RedShot_benefitsTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4a853;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.RedShot_benefitsList {
  list-style: none;
  padding: 0;
}
.RedShot_benefitsList li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}
.RedShot_benefitsList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b98b31;
  font-weight: bold;
  font-size: 1.2rem;
}
.RedShot_galleryWrapper {
  margin-bottom: 5rem;
}
.RedShot_gallery.splide {
  padding: 0;
}
.RedShot_gallery .splide__slide {
  padding: 0 0.5rem;
}
.RedShot_gallery .splide__arrow {
  background: linear-gradient(135deg, #b98b31, #d4a853);
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.RedShot_gallery .splide__arrow svg {
  fill: #ffffff;
}
.RedShot_gallery .splide__pagination {
  bottom: -2.5rem;
}
.RedShot_gallery .splide__pagination__page {
  background: rgba(255, 255, 255, 0.2);
}
.RedShot_gallery .splide__pagination__page.is-active {
  background: #b98b31;
  transform: scale(1.4);
}
.RedShot_item {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(185, 139, 49, 0.3);
}
.RedShot_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}
.RedShot_itemCaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.08em;
  pointer-events: none;
}
.RedShot_itemZoom {
  display: none;
}
.RedShot_lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.RedShot_lightbox.is-active {
  display: flex;
}
.RedShot_lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}
.RedShot_lightboxContent {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.RedShot_lightboxClose {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.RedShot_lightboxClose svg {
  width: 100%;
  height: 100%;
  stroke: #ffffff;
}
@media (max-width: 768px) {
  .RedShot_lightboxClose {
    top: 10px;
    right: 10px;
  }
}
.RedShot_lightboxPrev, .RedShot_lightboxNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.RedShot_lightboxPrev svg, .RedShot_lightboxNext svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}
@media (max-width: 768px) {
  .RedShot_lightboxPrev, .RedShot_lightboxNext {
    width: 40px;
    height: 40px;
  }
  .RedShot_lightboxPrev svg, .RedShot_lightboxNext svg {
    width: 20px;
    height: 20px;
  }
}
.RedShot_lightboxPrev {
  left: 20px;
}
@media (max-width: 768px) {
  .RedShot_lightboxPrev {
    left: 10px;
  }
}
.RedShot_lightboxNext {
  right: 20px;
}
@media (max-width: 768px) {
  .RedShot_lightboxNext {
    right: 10px;
  }
}
.RedShot_lightboxImage {
  max-width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.RedShot_lightboxImage img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 5px;
}
.RedShot_lightboxCaption {
  margin-top: 1.5rem;
  color: #ffffff;
  font-size: 1.1rem;
  text-align: center;
  letter-spacing: 0.05em;
}
.RedShot_lightboxCounter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  backdrop-filter: blur(10px);
}
.RedShot_lightboxCurrent {
  font-weight: 600;
}
.RedShot_process {
  margin-bottom: 5rem;
}
.RedShot_processTitle {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .RedShot_processTitle {
    font-size: 1.6rem;
    margin-bottom: 3rem;
  }
}
.RedShot_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .RedShot_steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.RedShot_step {
  min-width: 0;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(185, 139, 49, 0.25);
  border-radius: 5px;
  position: relative;
}
@media (max-width: 768px) {
  .RedShot_step {
    padding: 2rem 1.5rem;
  }
}
.RedShot_stepNumber {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(185, 139, 49, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .RedShot_stepNumber {
    font-size: 2.5rem;
  }
}
.RedShot_stepTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4a853;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .RedShot_stepTitle {
    font-size: 1.2rem;
  }
}
.RedShot_stepText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .RedShot_stepText {
    font-size: 0.9rem;
  }
}
.RedShot_faq {
  margin-bottom: 5rem;
}
.RedShot_faqTitle {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .RedShot_faqTitle {
    font-size: 1.6rem;
  }
}
.RedShot_faqList {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.RedShot_faqItem {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(185, 139, 49, 0.3);
  border-left: 4px solid #b98b31;
  border-radius: 5px;
}
.RedShot_faqQuestion {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.RedShot_faqQuestion::before {
  content: "Q. ";
  color: #b98b31;
  font-weight: bold;
}
.RedShot_faqAnswer {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 1.5rem;
  margin-bottom: 0;
}
.RedShot_faqAnswer::before {
  content: "A. ";
  color: #d4a853;
  font-weight: bold;
  margin-left: -1.5rem;
  margin-right: 0.5rem;
}
.RedShot_cta {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(185, 139, 49, 0.2) 0%, rgba(212, 168, 83, 0.15) 100%);
  border: 2px solid rgba(185, 139, 49, 0.4);
  border-radius: 5px;
  text-align: center;
}
.RedShot_ctaTitle {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .RedShot_ctaTitle {
    font-size: 1.6rem;
  }
}
.RedShot_ctaText {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}
.RedShot_ctaButtons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .RedShot_ctaButtons {
    flex-direction: column;
  }
}
.RedShot_ctaButton {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.3rem 3rem;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid transparent;
}
.RedShot_ctaButton svg {
  flex-shrink: 0;
}
.RedShot_ctaButton.-primary {
  background: linear-gradient(135deg, #b98b31, #d4a853);
  color: #ffffff;
}
.RedShot_ctaButton.-secondary {
  background: #00B900;
  color: #ffffff;
}

.Highlight {
  padding: 8rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .Highlight {
    padding: 5rem 0;
  }
}
.Highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(185, 139, 49, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(212, 168, 83, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.Highlight::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent 0%, #b98b31 20%, #d4a853 50%, #b98b31 80%, transparent 100%);
}
.Highlight_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  max-width: 1000px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .Highlight_container {
    padding: 0 1rem;
  }
}
.Highlight_title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-align: center;
  background: linear-gradient(135deg, #b98b31 0%, #d4a853 50%, #b98b31 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .Highlight_title {
    font-size: 2.5rem;
  }
}
.Highlight_divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(to right, transparent, #b98b31, transparent);
  margin: 0 auto 4rem;
  opacity: 0;
  transform: scaleX(0);
}
.Highlight_subtitle {
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .Highlight_subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
}
.Highlight_content {
  max-width: 900px;
  margin: 0 auto;
}
.Highlight_lead {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .Highlight_lead {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
}
.Highlight_features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  .Highlight_features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
}
.Highlight_feature {
  text-align: center;
}
.Highlight_featureIcon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(185, 139, 49, 0.2), rgba(212, 168, 83, 0.15));
  border: 2px solid rgba(185, 139, 49, 0.4);
}
.Highlight_featureIcon svg {
  width: 32px;
  height: 32px;
  stroke: #d4a853;
}
@media (max-width: 768px) {
  .Highlight_featureIcon {
    width: 50px;
    height: 50px;
  }
  .Highlight_featureIcon svg {
    width: 28px;
    height: 28px;
  }
}
.Highlight_featureTitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #d4a853;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Highlight_featureTitle {
    font-size: 1rem;
  }
}
.Highlight_cta {
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(185, 139, 49, 0.15) 0%, rgba(212, 168, 83, 0.1) 100%);
  border: 2px solid rgba(185, 139, 49, 0.4);
  border-radius: 5px;
  text-align: center;
}
@media (max-width: 768px) {
  .Highlight_cta {
    padding: 3rem 2rem;
  }
}
.Highlight_ctaTitle {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .Highlight_ctaTitle {
    font-size: 1.6rem;
  }
}
.Highlight_ctaText {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .Highlight_ctaText {
    font-size: 1rem;
  }
}
.Highlight_ctaButton {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 4rem;
  background: linear-gradient(135deg, #b98b31, #d4a853);
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.Highlight_ctaButton svg {
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .Highlight_ctaButton {
    font-size: 1.1rem;
    padding: 1.3rem 3rem;
  }
}

.RedShotLP {
  background: linear-gradient(180deg, #1a0a0f 0%, #2d1520 50%, #1a0a0f 100%);
}

.RedShotHero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.RedShotHero_background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 0, 41, 0.9) 0%, rgba(212, 20, 90, 0.7) 50%, rgba(139, 0, 41, 0.9) 100%);
}
.RedShotHero_background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.3;
  background: url("/assets/img/photo_redshot_001.jpg") no-repeat 50% 50%/cover;
}
.RedShotHero_background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 20%, rgba(212, 20, 90, 0.3) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 96, 144, 0.2) 0%, transparent 50%);
}
.RedShotHero_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}
.RedShotHero_content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}
.RedShotHero_label {
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: #ffd4e5;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .RedShotHero_label {
    font-size: 0.9rem;
  }
}
.RedShotHero_title {
  font-size: 6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: linear-gradient(135deg, #ff6090 0%, #ffffff 50%, #ff6090 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .RedShotHero_title {
    font-size: 3.5rem;
  }
}
.RedShotHero_subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 300;
}
@media (max-width: 768px) {
  .RedShotHero_subtitle {
    font-size: 1.2rem;
  }
}
.RedShotHero_features {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.RedShotHero_feature {
  padding: 0.8rem 2rem;
  background: rgba(212, 20, 90, 0.3);
  border: 2px solid #ff6090;
  border-radius: 5px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .RedShotHero_feature {
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
  }
}
.RedShotHero_scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .RedShotHero_scroll {
    bottom: 30px;
  }
}
.RedShotHero_scrollLine {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #ff6090, transparent);
  margin-top: 10px;
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}
.RedShotAbout {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a0a0f 0%, #2d1520 100%);
}
@media (max-width: 768px) {
  .RedShotAbout {
    padding: 5rem 0;
  }
}
.RedShotAbout_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .RedShotAbout_container {
    padding: 0 1rem;
  }
}
.RedShotAbout_title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .RedShotAbout_title {
    font-size: 2rem;
  }
}
.RedShotAbout_lead {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}
.RedShotAbout_lead p {
  font-size: 1.1rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .RedShotAbout_lead p {
    font-size: 1rem;
  }
}
.RedShotAbout_lead p:last-child {
  margin-bottom: 0;
}
.RedShotAbout_catchcopy {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #ff6090 !important;
  margin-top: 2rem !important;
  letter-spacing: 0.1em !important;
}
@media (max-width: 768px) {
  .RedShotAbout_catchcopy {
    font-size: 1.3rem !important;
  }
}
.RedShotAbout_flyers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 4rem 0;
}
@media (max-width: 1024px) {
  .RedShotAbout_flyers {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .RedShotAbout_flyers {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
  }
}
.RedShotAbout_flyerItem {
  min-width: 0;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.RedShotAbout_flyerItem img {
  width: 100%;
  height: auto;
  display: block;
}
.RedShotAbout_features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .RedShotAbout_features {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.RedShotAbout_feature {
  min-width: 0;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: rgba(212, 20, 90, 0.1);
  border: 2px solid rgba(255, 96, 144, 0.3);
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.RedShotAbout_feature:hover {
  border: 2px solid rgba(255, 96, 144, 0.8);
}
.RedShotAbout_featureTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6090;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.RedShotAbout_featureText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}

.RedShotGallery {
  padding: 8rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .RedShotGallery {
    padding: 5rem 0;
  }
}
.RedShotGallery_container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .RedShotGallery_container {
    padding: 0 1rem;
  }
}
.RedShotGallery_title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #8b0029;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .RedShotGallery_title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.RedShotGallery_slider {
  margin-bottom: 6rem;
}
.RedShotGallery_slider .splide__slide {
  padding: 0 0.5rem;
}
.RedShotGallery_slider .splide__arrow {
  background: linear-gradient(135deg, #d4145a, #ff6090);
  width: 3rem;
  height: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.RedShotGallery_slider .splide__arrow svg {
  fill: #ffffff;
}
.RedShotGallery_slider .splide__arrow:hover {
  background: linear-gradient(135deg, #ff6090, #d4145a);
  transform: scale(1.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.RedShotGallery_slider .splide__pagination {
  bottom: -2.5rem;
}
.RedShotGallery_slider .splide__pagination__page {
  background: rgba(212, 20, 90, 0.3);
}
.RedShotGallery_slider .splide__pagination__page.is-active {
  background: #d4145a;
  transform: scale(1.4);
}
.RedShotGallery_item {
  aspect-ratio: 4/5;
  border-radius: 5px;
  overflow: hidden;
}
.RedShotGallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.RedShotGallery_item:hover img {
  transform: scale(1.05);
}

.RedShotBenefits {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a0a0f 0%, #2d1520 100%);
}
@media (max-width: 768px) {
  .RedShotBenefits {
    padding: 5rem 0;
  }
}
.RedShotBenefits_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .RedShotBenefits_container {
    padding: 0 1rem;
  }
}
.RedShotBenefits_title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .RedShotBenefits_title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.RedShotBenefits_intro {
  text-align: center;
  margin-bottom: 4rem;
}
.RedShotBenefits_intro p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .RedShotBenefits_intro {
    margin-bottom: 3rem;
  }
  .RedShotBenefits_intro p {
    font-size: 1rem;
  }
}
.RedShotBenefits_list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .RedShotBenefits_list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.RedShotBenefits_item {
  min-width: 0;
  padding: 2.5rem 2rem;
  background: rgba(212, 20, 90, 0.08);
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .RedShotBenefits_item {
    padding: 2rem 1.5rem;
  }
}
.RedShotBenefits_itemTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ff6090;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .RedShotBenefits_itemTitle {
    font-size: 1.2rem;
  }
}
.RedShotBenefits_itemText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
}
@media (max-width: 768px) {
  .RedShotBenefits_itemText {
    font-size: 0.9rem;
  }
}

.RedShotFlow {
  padding: 8rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .RedShotFlow {
    padding: 5rem 0;
  }
}
.RedShotFlow_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .RedShotFlow_container {
    padding: 0 1rem;
  }
}
.RedShotFlow_title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #8b0029;
  margin-bottom: 5rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .RedShotFlow_title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
}
.RedShotFlow_steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .RedShotFlow_steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.RedShotFlow_step {
  min-width: 0;
  padding: 2.5rem 1.5rem;
  background: #ffffff;
  border: 2px solid rgba(212, 20, 90, 0.3);
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .RedShotFlow_step {
    padding: 2rem 1.5rem;
  }
}
.RedShotFlow_step:hover {
  border: 2px solid rgba(212, 20, 90, 0.8);
}
.RedShotFlow_stepNumber {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212, 20, 90, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .RedShotFlow_stepNumber {
    font-size: 2.5rem;
  }
}
.RedShotFlow_stepTitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #d4145a;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .RedShotFlow_stepTitle {
    font-size: 1.2rem;
  }
}
.RedShotFlow_stepText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}
@media (max-width: 768px) {
  .RedShotFlow_stepText {
    font-size: 0.9rem;
  }
}

.RedShotFAQ {
  padding: 8rem 0;
  background: linear-gradient(180deg, #1a0a0f 0%, #2d1520 100%);
}
@media (max-width: 768px) {
  .RedShotFAQ {
    padding: 5rem 0;
  }
}
.RedShotFAQ_container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .RedShotFAQ_container {
    padding: 0 1rem;
  }
}
.RedShotFAQ_title {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4rem;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .RedShotFAQ_title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }
}
.RedShotFAQ_list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.RedShotFAQ_item {
  padding: 2.5rem;
  background: rgba(212, 20, 90, 0.08);
  border: 2px solid rgba(255, 96, 144, 0.3);
  border-left: 4px solid #d4145a;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .RedShotFAQ_item {
    padding: 2rem 1.5rem;
  }
}
.RedShotFAQ_question {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.RedShotFAQ_question::before {
  content: "Q. ";
  color: #ff6090;
  font-weight: bold;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .RedShotFAQ_question {
    font-size: 1.1rem;
  }
}
.RedShotFAQ_answer {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 2rem;
}
.RedShotFAQ_answer::before {
  content: "A. ";
  color: #d4a853;
  font-weight: bold;
  margin-left: -2rem;
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .RedShotFAQ_answer {
    font-size: 0.95rem;
  }
}

.RedShotCTA {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(139, 0, 41, 0.9) 0%, rgba(212, 20, 90, 0.6) 50%, rgba(139, 0, 41, 0.9) 100%);
  position: relative;
  overflow: hidden;
}
.RedShotCTA::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(255, 96, 144, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 50%, rgba(212, 20, 90, 0.15) 0%, transparent 50%);
}
@media (max-width: 768px) {
  .RedShotCTA {
    padding: 5rem 0;
  }
}
.RedShotCTA_container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .RedShotCTA_container {
    padding: 0 1rem;
  }
}
.RedShotCTA_title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .RedShotCTA_title {
    font-size: 2rem;
  }
}
.RedShotCTA_text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .RedShotCTA_text {
    font-size: 1.1rem;
  }
}
.RedShotCTA_buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
}
@media (max-width: 768px) {
  .RedShotCTA_buttons {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.RedShotCTA_button {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.5rem 3.5rem;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.RedShotCTA_button svg {
  flex-shrink: 0;
}
.RedShotCTA_button.-phone {
  background: linear-gradient(135deg, #b98b31, #d4a853);
  color: #ffffff;
  border: 2px solid transparent;
}
.RedShotCTA_button.-phone:hover {
  background: linear-gradient(135deg, #d4a853, #b98b31);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(185, 139, 49, 0.4);
}
.RedShotCTA_button.-web {
  background: linear-gradient(135deg, #d4145a, #ff6090);
  color: #ffffff;
  border: 2px solid transparent;
}
.RedShotCTA_button.-web:hover {
  background: linear-gradient(135deg, #ff6090, #d4145a);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 20, 90, 0.4);
}
@media (max-width: 768px) {
  .RedShotCTA_button {
    font-size: 1.1rem;
    padding: 1.3rem 3rem;
  }
}

.RedShotIngredients {
  padding: 8rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .RedShotIngredients {
    padding: 5rem 0;
  }
}
.RedShotIngredients_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .RedShotIngredients_container {
    padding: 0 1rem;
  }
}
.RedShotIngredients_title {
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
  color: #8b0029;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .RedShotIngredients_title {
    font-size: 1.8rem;
  }
}
.RedShotIngredients_subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #d4145a;
  margin-bottom: 5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .RedShotIngredients_subtitle {
    font-size: 1.2rem;
    margin-bottom: 4rem;
  }
}
.RedShotIngredients_main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .RedShotIngredients_main {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
.RedShotIngredients_item {
  min-width: 0;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(212, 20, 90, 0.05), rgba(255, 96, 144, 0.03));
  border: 2px solid rgba(212, 20, 90, 0.2);
  border-radius: 5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.RedShotIngredients_item:hover {
  border: 2px solid rgba(212, 20, 90, 0.8);
}
.RedShotIngredients_itemTitle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #d4145a;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.RedShotIngredients_itemTitle span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #8b0029;
  margin-top: 0.3rem;
}
@media (max-width: 768px) {
  .RedShotIngredients_itemTitle {
    font-size: 1.3rem;
  }
}
.RedShotIngredients_itemText {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #333;
}
.RedShotIngredients_plus {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .RedShotIngredients_plus {
    margin-top: 4rem;
  }
}
.RedShotIngredients_plusTitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: #8b0029;
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .RedShotIngredients_plusTitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
.RedShotIngredients_plusList {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.RedShotIngredients_plusItem {
  display: flex;
  gap: 0.8rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .RedShotIngredients_plusItem {
    gap: 0.6rem;
  }
}
.RedShotIngredients_plusNumber {
  flex-shrink: 0;
  font-weight: 600;
  color: #d4145a;
  font-size: 1rem;
}
.RedShotIngredients_plusText {
  color: #555;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .RedShotIngredients_plusText {
    font-size: 0.9rem;
  }
}

/*# sourceMappingURL=redshot.css.map */
