@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap');

/*
Theme Name: kaoru-lp
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --main-color: #002978;
  --sub-color-y: #FFF100;
  --white-color: #FFFFFF;
  --gray-color: #EBEEF2;
  --text-color: #003567;
  --black-color: #000000;
}

@font-face {
    font-family: 'Tsukushi B Round Gothic';
    src: url('assets/fonts/TsukushiBRoundGothic-Bold.woff2') format('woff2'),
         url('assets/fonts/TsukushiBRoundGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Tsukushi B Round Gothic';
    src: url('assets/fonts/TsukushiBRoundGothic-Bold.woff2') format('woff2'),
         url('assets/fonts/TsukushiBRoundGothic-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


body {
  font-family: 'Yu Gothic Pr6N', sans-serif;
  color: var(--text-color);
  background-color: var(--white-color);
  margin: 0;
  overflow-x: hidden;
}
img{
  width: 100%;
}
.lp-main {
  overflow-x: hidden;
}

.lp-container {
  width: 100%;
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}


.lp-section-title {
  font-family: 'Tsukushi B Round Gothic', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: 0.07em;
  color: var(--main-color);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-award__text .lp-section-title {
  display: block;
}

.lp-button {
  display: inline-block;
  padding: 13px 48px;
  border: 2px solid var(--main-color);
  background: transparent;
  color: var(--main-color);
  font-family: 'Yu Gothic Pr6N', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.lp-button:hover {
  background-color: var(--main-color);
  color: #fff;
}

.lp-button--outline {
  display: inline-block;
  padding: 5px 28px;
  border: 2px solid var(--white-color);
  background-color: transparent;
  color: var(--white-color);
  font-family: 'Yu Gothic Pr6N', sans-serif;
  font-weight: 500;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
}

.lp-button--outline:hover {
  background-color: var(--white-color);
  color: var(--main-color);
}

/* Header */
.lp-header {
  position: relative;
  width: 100%;
  height: 500px;
  background: url('assets/images/header-bg.webp') no-repeat center center/cover;
}

.lp-header__logo-container {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 453px;
}

.lp-header__logo {
  width: 100%;
  display: block; /* Ensure image is a block element within the container */
  animation: fadeIn 2s ease-in-out forwards;
}

.kaoru-inline img{
  max-width: 138px;
}

.lp-header__tagline {
  position: absolute;
  bottom: 100%;
  left: 0;
  margin-bottom: 20px;
  margin-left: -20px;
  width: 100%;
  max-width: 216px;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  animation: revealFromLeft 1s ease-in-out 1s forwards;
}

.lp-header__symbol {
  position: absolute;
  top: 24px;
  left: 24px;
}

.lp-header__symbol img {
  width: 95.57px;
}

/* Scroll Animation */
.lp-header__scroll {
  position: absolute;
  width: 39px;
  height: 328px;
  right: 50px;
  bottom: 27%;
  color: var(--white-color);
  overflow: hidden;
}

.lp-header__scrolltext {
  position: absolute;
  right: 50px;
  bottom: 23%;
  font-family: 'Yu Mincho Pr6N', serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: var(--white-color);
  width: 100%;
  text-align: center;
  width: fit-content;
}
@media (max-width: 768px) {
  .lp-header__scrolltext {
    right: 18px;
    bottom: 23%;
  }
}
.shooting-star-container {
  position: absolute;
  top: 0;
  left: 26%;
  width: 18px;
  animation: shooting-star 2.5s linear infinite;
  z-index: 1;
}

.star-tail {
  width: 1px;
  height: 275px;
  background: linear-gradient(180deg, rgba(142, 146, 155, 0) 0%, rgba(254, 254, 255, 1) 100%);
  margin: 0 auto;
}

.star-head {
  display: block;
  margin: -2px auto 0;
  animation: spin 2s linear infinite;
}

@keyframes shooting-star {
  0% {
    transform: translateY(-100%);
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateY(261px); /* End animation 5px above the text area */
    opacity: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* FV Movie */
.lp-fv-movie {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 0 80px;
  margin-top: -13%;
  position: relative;
}
@media (min-width: 769px) {
  .lp-fv-movie div{
    gap: 34px;
    justify-content: center;
  }
}
.lp-fv-movie img {
  width: 100%;
  display: block;
}

.lp-fv-movie__item {
  position: relative;
  width: 224px;
  height: 389px;
  border: 6px solid;
  border-image: linear-gradient(180deg, #FFE1ED 0%, #FBB7D0 52.88%, #7D74B0 100%) 1;
  flex-shrink: 0;
}

.lp-fv-movie__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
}

.play-button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-top: 17px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 30px solid var(--sub-color-y);
}

/* Concept */
.lp-concept {
  padding: 48px 0;
}
.lp-concept > .lp-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 43px;
}

.lp-concept__text-content {
  max-width: 542px;
}

.lp-concept__title {
  position: relative;
  padding-left: 24px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 43px;
  letter-spacing: 5%;
  color: var(--main-color);
  opacity: 0;
  transition: opacity 1s ease-in-out;
}



.lp-concept__title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--sub-color-y);
}


.lp-concept__description {
  font-size: 16px;
  line-height: 1.875;
  margin: 12px 0;
  max-width: 466px;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}



.lp-concept__image-content {
  position: relative;
  width: fit-content;
  height: auto;
  text-align: left;
}
@media (max-width: 768px) {
  .lp-concept__image-content {
      text-align: center;
  }
  .star-head{
    width: 13px;
  }
  .lp-header__scroll{
    height: 228px;
    left: 33px;
    bottom: 43%;
  }
  .lp-button--outline{
    padding: 3px 15px;
  }
}
.lp-concept__image-content img {
  height: 346px;
  width: auto;
}

/* Project & Award */
.lp-project-award {
  position: relative;
  padding: 60px 0;
  background: url('assets/images/project-award-bg.webp') no-repeat center center/cover;
  color: var(--white-color);
}

.lp-project-award::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #BBA951 0%, #FFFFFF 28.85%, #F5F5F5 75%, #BBA951 100%);
}

.lp-project-award::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 7px;
  background: linear-gradient(90deg, #BBA951 0%, #FFFFFF 28.85%, #F5F5F5 75%, #BBA951 100%);
}

.lp-project {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 0 140px 59px;
}

.lp-project__image img {
  width: 145px;
}

.lp-project__text h2 {
  font-family: 'Yu Mincho Pr6N', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 41px;
  letter-spacing: 0;
  color: var(--sub-color-y);
  text-align: center;
}

.lp-project__text p {
  font-size: 16px;
  line-height: 1.875;
  color: var(--white-color);
  text-align: center;
}

.fade-in-on-scroll {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.is-visible {
  opacity: 1;
}

.lp-divider {
  border: 0;
  height: 1px;
  background-color: var(--gray-color);
  margin: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s ease-in-out;
}

.lp-divider.is-visible {
  transform: scaleX(1);
}

.lp-award {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  padding: 80px 30px 30px;
}

.lp-award__text {
  text-align: center;
  width: 45%;
}

.lp-award__text .lp-section-title {
  color: var(--white-color);
}

.lp-award__text p {
  font-family: 'Yu Mincho Pr6N', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 41px;
  letter-spacing: 0;
  text-align: center;
  color: var(--white-color);
}

.lp-award__logos {
  width: 55%;
}

.lp-award__logo-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.lp-award__logo-images img {
  height: 98px;
  width: calc(20% - 6px); /* Force 5 items per row, accounting for gap */
  object-fit: contain;
}

.lp-award__list {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-color);
  padding: 0 10px;
  margin-top: 12px;
  text-align: center;
}

/* Feature */
.lp-feature {
  position: relative;
  padding: 65px 0;
}

.lp-feature > .lp-container {
  position: relative;
  display: flex;
}

.lp-feature__intro {
  width: 50%;
  padding: 0;
  margin: 68px auto 0;
}

.lp-feature__intro-content {
  text-align: center;
  position: relative;
}


.lp-feature__intro-tag {
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 30px;
  padding: 0 18.5px;
  display: inline-block;
}

.lp-feature__intro-content h4 {
  font-family: 'Yu Gothic Pr6N', sans-serif;
  font-size: 24px;
  line-height: 2;
  color: var(--main-color);
  font-weight: 600;
}
.lp-feature__intro-content img{
      max-width: 320px;
}
.lp-feature__details {
  width: 50%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background-color: var(--gray-color);
  border-radius: 60px 0 0 60px;              /* 左側の丸みは維持 */
}

.lp-feature__details-inner {
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 60px 0 100px 100px;
}

.lp-feature__details-inner::-webkit-scrollbar {
  display: none;
}

/*
.lp-feature__details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: -1000px;
  bottom: 0;
  background-color: var(--gray-color);
  z-index: -1;
  padding-right: 1000px;
}
*/
.lp-feature__item {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 10px 10px 0;
}

.lp-feature__item-add-ons {
  position: absolute;
  top: 110%;
  right: 15%;
  transform: translateY(-50%);
  z-index: 10;
}

.lp-feature__item-add-on {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background-color: var(--sub-color-y);
  border: 2px solid var(--main-color);
}

.lp-feature__item-add-on p {
  margin: 0;
  font-family: 'Yu Gothic Pr6N', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--main-color);
  line-height: 1.3;
}

.lp-feature__item-divider {
  width: 50px;
  height: 19px;
  background: linear-gradient(180deg, #3D5D86 0%, #061A34 100%);
  margin: 5px auto;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.lp-feature__animation {
  position: absolute;
  top: -39px;
  left: 45%;
  width: 115px;
  height: 115px;
  z-index: 20;
}

.lp-feature__animation-circle {
  width: 115px;
  height: 100%;
  animation: spin 10s linear infinite;
}

/* Recipe */
.lp-recipe {
  padding: 85px 0;
  background-color: var(--gray-color);
  position: relative;
}
.lp-recipe > .lp-container {
  display: flex;
  position: relative;
}

.lp-recipe__content {
  width: 50%;
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
  height: 640px;
}

.lp-feature__details{
  width: 50%;
  background-color: var(--gray-color);
  padding: 0;
  position: relative;
  z-index: 1;
}
.lp-feature__details::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  right: -1000px;
  bottom: 0;
  background-color: var(--gray-color);
  border-radius: 0 60px 60px 0;
  z-index: -1;
  padding-right: 1000px;
}

.lp-recipe__content::-webkit-scrollbar {
  display: none;
}

.lp-recipe__content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: -1000px;
  bottom: 0;
  background-color: var(--white-color);
  border-radius: 0 60px 60px 0;
  z-index: -1;
  padding-left: 1000px;
}

.lp-recipe__content-inner {
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 60px 50px 60px 0;
}

.lp-recipe__content h3 {
  font-size: 24px;
  text-align: center;
}

.lp-recipe__bartender {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 202px;
}

.lp-recipe__bartender > div:first-of-type {
  max-width: 258px;
  flex-shrink: 0;
}

.lp-recipe__steps {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.lp-recipe__steps li {
  border-bottom: 4px solid var(--gray-color);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
  font-weight: 600;          /* D = DemiBold（やや太め） */
  font-style: normal;        /* D は太さ指定なので normal でOK */
  font-size: 16px;
  line-height: 26px;         /* 固定値。比率なら約1.625 */
  letter-spacing: 0em;       /* 0% = 0em */
}
.lp-recipe__steps li:first-child {
  border-top: 4px solid var(--gray-color);
}
.lp-recipe__steps span {
  background-color: var(--sub-color-y);
  color: var(--main-color);
  border-radius: 70px;
  padding: 10px 20px;
  font-size: 18px;
}

.lp-recipe__visual {
  width: 50%;
  padding: 24px 0 10px 97px;
  text-align: center;
  position: relative;
}

.lp-recipe__main-drink {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lp-recipe__main-drink img {
  max-width: 159px;
}

.lp-recipe__tag {
  background-color: var(--main-color);
  color: var(--white-color);
  font-size: 30px;
  padding: 0 18px;
  display: inline-block;
  margin-bottom: 11px;
}
.lp-recipe__tag.s-text{
  width: 100%;
  font-size: 18px;
  font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
  font-weight: 500;          /* M = Medium（中太） */
  font-style: normal;        /* FigmaのMはスタイルではなく太さ */
  line-height: 51px;         /* 固定値指定。比率なら約2.83 */
  letter-spacing: -0.06em;   /* -6% = -0.06em */
  text-align: center;

}
.lp-recipe__other-drinks {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.lp-recipe__other-drinks p {
  line-height: 1.714;
  text-align: left;
  font-weight: 600;
}
.lp-recipe__other-drinks > div {
  width: 50%;
}

/* Movie Gallery */
.lp-movie-gallery {
  position: relative;
  padding: 80px 0 10%;
  text-align: center;
  background: url('assets/images/movie-gallery-bg.webp') no-repeat center center/cover;
}

@media (min-width: 769px) {
  .lp-movie-gallery .lp-container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.lp-movie-gallery__title {
  margin-bottom: 40px;
}

.lp-movie-gallery__title-line {
  flex-grow: 1;
  height: 1px;
  background-color: #fff;
}

.lp-movie-gallery__title h2 {
  font-family: 'Tsukushi B Round Gothic', sans-serif;
  font-size: 42px;
  color: var(--main-color);
  margin: 0;
  white-space: nowrap;
}

.lp-movie-gallery__title h2 span {
  font-family: 'hanatotyoutyo', sans-serif;
}

.lp-movie-gallery__slider {
  padding: 40px 0;
  overflow: hidden;
}

.lp-movie-gallery__slider .swiper-wrapper {
  transition-timing-function: linear;
}

.is-odd {
  margin-top: 80px;
}

@media (min-width: 769px) {
  .lp-movie-gallery__slider .swiper-slide {
    width: 224px;
  }
}

.lp-movie-gallery__item {
  position: relative;
  display: block;
  border-width: 6px;
  border-style: solid;
}

.lp-movie-gallery__slider .swiper-slide:nth-child(3n+1) .lp-movie-gallery__item {
  border-color: #738FC4; /* blue2 */
}
.lp-movie-gallery__slider .swiper-slide:nth-child(3n+2) .lp-movie-gallery__item {
  border-color: #FFF100; /* sub_y */
}
.lp-movie-gallery__slider .swiper-slide:nth-child(3n) .lp-movie-gallery__item {
  border-color: #EBEEF2; /* gray */
}


.lp-movie-gallery__item .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}

.lp-movie-gallery__item:hover .play-button {
  background-color: rgba(255, 255, 255, 0.8);
}

.lp-movie-gallery__bottom-line {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #98999B;
  margin: 40px auto 0;
  border-radius: 50px;
  max-width: 680px;
}

.lp-movie-gallery__scrollbar-thumb {
  position: absolute;
  top: -3px;
  left: 0;
  width: 106px; /* Figma design width */
  height: 10px; /* Figma design height */
  background-color: var(--main-color);
  border-radius: 5px;
}

@media (max-width: 768px) {
  .lp-recipe__tag.s-text{
    font-size: 16px;
  }
  .lp-header__tagline{
    max-width: 178px;
    bottom: -20%;
    left: 57%;
  }
  .lp-award__text,
  .lp-award__logos{
    width: 100%;
  }
  .lp-movie-gallery__slider {
    overflow: visible;
    padding-top: 0;
  }
  .lp-movie-gallery {
    padding: 80px 0 130px;
  }

  .lp-movie-gallery__title {
    gap: 10px;
  }

  .lp-movie-gallery__title h2 {
    font-size: 32px;
  }

  .lp-movie-gallery__bottom-line {
    width: 100%;
    max-width: 340px;
  }
  .lp-recipe__tag{
    width: 100%;
    padding: 0;
  }
  .lp-recipe__other-drinks p{
    font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
    font-weight: 600;          /* D = DemiBold（やや太め）に相当 */
    font-style: normal;        /* Figmaの「D」はスタイルではなく太さなので normal */
    font-size: 12px;
    line-height: 24px;         /* → 行送り 24px */
    letter-spacing: 0em;       /* 0% = 0em */
  }
}

/* Event */
.lp-event {
  padding: 80px 0;
  background-color: var(--gray-color);
  text-align: center;
}
.lp-event .lp-container .lp-section-title{
  padding: 10px 0;
}
.lp-event .lp-section-title,
.lp-movie-gallery .lp-section-title {
  display: flex;  
  width: fit-content;
  margin: auto;
  position: relative;
  align-items: center;
  justify-content: center;
}
.lp-recipe__content-inner p{
  line-height: 1.4;
  margin: 2px 0;
}
.lp-movie-gallery .lp-section-title::before,
.lp-event .lp-section-title::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #fff;
  top: 0;
}
.lp-movie-gallery .lp-section-title {
  
}
.lp-event .lp-section-title .lp-section-title-event{
  max-width: 164px;
}
.lp-movie-gallery .lp-section-title .lp-section-title-left{
    max-width: 177px;
}
.lp-movie-gallery .lp-section-title .lp-section-title-rigth{
  max-width: 263px;
}
.lp-event .lp-section-title .lp-section-title-insta{
    max-width: 280px;
}
@media (min-width: 768px) {
  .lp-section-title-insta{
    max-width: 221px;
  }
  .lp-section-title::before {
    left: -31px;
  }
  .lp-section-title::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: #fff;
    top: 0;
    right: -31px; /* 右に10px離す */
  }
}

/* SP（例:767px以下）の場合：左側のみ */
@media (max-width: 767px) {
  .lp-section-title::before {
    left: -10px; /* 左に10px離す */
  }
  .lp-section-title::after {
    content: none;
  }
}

.lp-event__hashtag {
  background: linear-gradient(transparent 50%, var(--sub-color-y) 50%);
  display: inline;
  padding: 0 5px;
  font-size: 18px;
  margin: 0 5px;
}

.lp-event__gallery {
  justify-content: center;
  gap: -5px;
  margin: 28px 0;
}

/* Instagram */
.lp-instagram {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.lp-instagram__bg-circle {
  position: absolute;
  top: 27%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 500px; /* Adjust size as needed */
  height: 500px; /* Adjust size as needed */
  z-index: -1;
  animation: spin 20s linear infinite;
}
.lp-instagram > .lp-container {
  display: flex;
}
.lp-instagram .lp-container .lp-section-title{
  justify-content: center;
}
.lp-instagram__text-content {
  width: 30%;
}
.lp-instagram__text-content p{
  font-family: Yu Gothic Pr6N;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0%;
  text-align: center;

}
.lp-instagram .lp-container{
  text-align: center;
  align-items: center;
}
.lp-instagram__gallery {
  width: 70%;
}

.lp-instagram__tabs {
  display: flex;
  border-bottom: 4px solid var(--sub-color-y);
}

.lp-instagram__tabs button {
  flex: 1;
  padding: 10px;
  border: none;
  background-color: var(--gray-color);
  font-size: 16px;
  cursor: pointer;
  color: rgba(0, 41, 120, 0.5); /* ← テキストのみ50%透過 */

}

.lp-instagram__tabs button.active {
  color:#002978;
  background-color: var(--sub-color-y);
}

.lp-instagram__posts {
  margin-top: 25px;
}

.lp-instagram__posts img {
  width: 100%;
}
.text_KAORU_yellow {
  max-width: 141px;
}

/* Footer */

.lp-footer .lp-container{
  padding-bottom: 94px;
  background-image: url(assets/images/footer-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;          /* 要素を必ず覆う */
  background-position: center bottom; /* ← 下端を基準に表示 */
  color: var(--white-color);
  padding-top: 10%;
  z-index: 1;
  max-width: 100%;
}
.lp-footer__logo,
.lp-footer__products{
  max-width: 1090px;
}
.lp-footer__logo {
  text-align: center;
  margin: auto auto 14px;
}
.lp-footer__logo img{
  max-width: 453px;
}
.lp-footer__products {
  display: flex;
  justify-content: flex-start;
  gap: 19px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 20px 15px;
  box-sizing: border-box;
  align-items: self-end;
  margin: auto;
}

.lp-footer__product-item {
  flex: 5;
  flex-shrink: 0;
  box-sizing: border-box;
  text-align: center;
}

.lp-footer__product-item img {
  /*height: 378px;*/
  width:  100px;
  object-fit: contain;
}
.bottle900 {

}
.lp-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 20px;
}

.lp-footer__company-info {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  
}

.lp-footer__legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.footer-takahashi-logo{
  max-width: 200px;
}
.footer-copyright{
  max-width: 319px;
}
.lp-footer__legal-icons{
  display: flex;
  gap:5px;
}
.lp-footer__legal p{
  max-width: 492px;
  font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
  font-weight: 600;          /* D = DemiBold（やや太め） */
  font-style: normal;        /* Figmaの「D」は太さ指定なので normal */
  font-size: 14px;
  line-height: 24px;         /* 固定値。比率なら約1.71 */
  letter-spacing: 0em;       /* 0% = 0em */
}
  .text-01{
    font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
    font-weight: 600;          /* D = DemiBold 相当 */
    font-style: normal;        /* FigmaのDはスタイルではなく太さなので normal */
    font-size: 24px;
    line-height: 35px;         /* → 20pxに対して約1.75倍の行間 */
    letter-spacing: 0em;       /* 0% = 0em */
    text-align: center;
  }
  .text-02{
    font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
    font-weight: 600;          /* D = DemiBold 相当 */
    font-style: normal;        /* FigmaのDはスタイルではなく太さなので normal */
    font-size: 24px;
    line-height: 35px;         /* → 20pxに対して約1.75倍の行間 */
    letter-spacing: 0em;       /* 0% = 0em */
    text-align: center;
  }
  .lp-recipe__bartender .company{
    font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
    font-weight: 600;          /* D = DemiBold（やや太め） */
    font-style: normal;        /* FigmaのDは太さ指定で、styleではない */
    font-size: 12px;
    line-height: 19px;         /* 固定値指定。比率なら約1.58 */
    letter-spacing: 0em;       /* 0% = 0em */
  }  
  .lp-recipe__bartender .name{
    font-family: "Yu Mincho Pr6N", "Yu Mincho", serif;
    font-weight: 500;          /* M = Medium（中太） */
    font-style: normal;        /* FigmaのMは太さ指定であり、スタイルではない */
    font-size: 26px;
    line-height: 51px;         /* 固定指定。比率なら約1.96 */
    letter-spacing: 0em;       /* 0% = 0em */
  }
  .mincho-s{
    font-size: 21px;
  }
  .history{
    font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
    font-weight: 600;          /* D = DemiBold（やや太め） */
    font-style: normal;        /* FigmaのDは太さ指定で、styleではない */
    font-size: 14px;
    line-height: 24px;         /* 固定値指定。比率なら約1.71 */
    letter-spacing: 0em;       /* 0% = 0em */
  }

/* SP */
@media (max-width: 768px) {
  .lp-footer__legal p{
    text-align: left;
  }
  .lp-footer__logo{
    max-width: 312px;
  }
  .text-01{
    font-size: 20px;
  }
  .lp-header {
    padding: 60px 0 0;
    height: 670px;
  }

  .lp-header__logo-container {
    width: 60%; /* Adjust width to scale the logo down */
    max-width: 300px;
    top: 28%;
  }
.lp-header__logo {
  width: 100%;
  display: block; /* Ensure image is a block element within the container */
  height: 310px;
}

  .lp-header__symbol img {
    width: 60px;
  }
  .lp-fv-movie {
    margin-top: -60%;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
  }
  .lp-fv-movie.swiper { 
    overflow:visible; 
    padding-left: 5%;
    padding-right: 5%;
 }

  .lp-fv-movie__item {
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .lp-fv-movie .swiper-slide{ 
    width:70%; 
  }

  .lp-concept {
    padding: 40px;
  }
  .lp-concept > .lp-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
  }

  .lp-concept__text-content {
    text-align: center;
  }
  .lp-concept__text-content p{
    max-width: 100%;
  }

  .lp-concept__title {
    display: inline-block;
    padding-left: 15px;
    font-size: 20px;
    line-height: 39px;
    letter-spacing: 5%;
    text-align: left;
  }
  .lp-concept__description{
    text-align: left;
  }
  

  .lp-project-award {
    padding: 30px 0;
  }

  .lp-project-award .lp-container {
    height: 100%;
    padding-right: 15px; /* scrollbar space */
  }

  .lp-project {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }

  .lp-project__text h2 {
    font-size: 22px;
  }

  .lp-project__text p {
    font-family: 'Yu Gothic Pr6N', sans-serif;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
  }

  .lp-divider {
    margin: auto;
  }

  .lp-award {
    flex-direction: column;
    padding: 20px;
  }

  .lp-award__text p {
    font-size: 20px;
  }

  .lp-award__logo-images img {
    height: 60px;
    width: calc(50% - 6px); /* Force 2 items per row, accounting for gap */
    object-fit: contain;
  }

  .lp-feature {
    padding: 0;
  }
  .lp-feature .lp-container{
    padding: 60px 35px;
  }

  .lp-feature > .lp-container {
    flex-direction: column;
  }

  
.lp-feature__details {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  background-color: var(--gray-color);
  border-radius: 60px 0 0 60px;
  box-shadow: 1000px 0 0 var(--gray-color);
}
.lp-feature__details,
.lp-feature__intro{
  width: 100%;
}

.lp-feature__details-inner {
  height: 100%;
  padding: 60px 0 60px 30px;
}

.lp-feature__details-inner::-webkit-scrollbar {
  display: none;
}

.lp-feature__details-inner::-webkit-scrollbar {
  display: none;
}

  .lp-recipe > .lp-container {
    flex-direction: column;
    padding: 0 40px;
    gap:30px;
  }

  .lp-recipe__content,
  .lp-recipe__visual {
    width: 100%;
    padding: 0px;
  }
  .lp-recipe__visual{
    margin-top: 80px;
  }
  .lp-recipe__content {
    border-radius: 0;
    height: 500px;
    padding: 0;
  }

  .lp-recipe__content::before {
  }

  .text_KAORU_yellow{
    max-width: 112px;
  }
  .lp-recipe__content-inner {
    padding: 60px 57px 60px 0;
  }

  .lp-recipe__bartender {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }

  .lp-recipe__other-drinks {
    
  }

  .lp-instagram {
    padding: 40px 0 77px;
  }
  .lp-instagram > .lp-container {
    flex-direction: column;
  }

  .lp-instagram__text-content,
  .lp-instagram__gallery {
    width: 100%;
  }
  .lp-movie-gallery__title .lp-section-title,
  .lp-event .lp-section-title {
    display: block;
    text-align: left;
  }

  .lp-instagram__text-content {
    text-align: center;
    margin-bottom: 100px;
  }

  .lp-footer__products {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    overflow-x: visible;
  }

  .lp-footer {
    position: relative;
  }

  .lp-footer .lp-container {
    padding-right: 15px; /* scrollbar space */
  }

  .lp-footer__product-item {
    flex: 0 0 calc(50% - 10px); /* Do not grow, do not shrink, set basis */
    width: calc(50% - 10px);
    margin-top: 24px;
  }

  .lp-footer__product-item img {
    height: auto;
    width: 100px;
  }

  .lp-footer__bottom {
    flex-direction: column-reverse;
    gap: 20px;
    text-align: center;
    padding-bottom: 63px;
  }

  .lp-footer__company-info {
    flex-direction: column;
    align-items: center;
  }

  .lp-footer__legal {
    flex-direction: column;
  }
  .s-text{
    font-family: "Yu Gothic Pr6N", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    line-height: 3.1875; 
    letter-spacing: -0.06em;
    text-align: center;
  }
  .lp-recipe__content-inner .history{
    text-align: left;
  }
}

/* Utility Classes for PC/SP Display */
.sp_only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}

/* Utility Classes for PC/SP Display */
.sp_only {
  display: none !important;
}

@media (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}








/* ========== Swiper スライド基本 ========== */
.swiper-slide {
  position: relative;
  overflow: hidden;
}

/* スライド内のクリック領域（サムネ＋再生ボタン） */
.lp-movie-gallery__item {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* サムネ（常に16:9で中央トリミング） */
.lp-movie-gallery__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* （必要なら）再生ボタンの位置合わせ例
.play-button {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;  // 画像自体はクリック透過
}
*/

/* ========== モーダル再生 ========== */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;                 /* デフォルト非表示 */
  justify-content: center;
  align-items: center;
}
.video-modal.is-open {
  display: flex;
}

.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.video-modal__content {
  position: relative;
  width: 80%;
  max-width: 400px;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 1;
}

/* モーダル内のiframeをフィット */
.video-modal__content iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 40px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
}

/* サムネ箱そのものを9:16に固定。背景は中央トリミング */
.lp-movie-gallery__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;          /* ← これで縦長固定（対応ブラウザが多い） */
  background-size: cover;        /* 全面に敷き詰める */
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* 既存のダミー比率要素は無効化・非表示でOK */
.lp-movie-gallery__ratio {
  display: none;
}

/* もし古めのブラウザ対策が必要ならフォールバック（aspect-ratio未対応向け） */
@supports not (aspect-ratio: 1 / 1) {
  .lp-movie-gallery__thumb {
    height: auto;
  }
  .lp-movie-gallery__thumb::before {
    content: "";
    display: block;
    padding-top: 177.7778%; /* 9:16 = 高さ/幅 = 16/9 = 177.7778% */
  }
  .lp-movie-gallery__thumb > * {
    position: absolute;
    inset: 0;
  }
}



/* ドットのコンテナ */
.lp-movie-gallery__pagination {
  display: flex;
  justify-content: center;
  margin-top: 14px;
  width: 70%!important;
  left: 50%!important;
  transform: translateX(-50%);
}

/* ドット */
.lp-bullet {
  width: 20%;              /* ← 横幅を指定して線っぽく */
  height: 4px;            /* ← 縦を小さく */
  background: #98999B;         /* ← 非アクティブ色 */
  opacity: 0.5;
  cursor: pointer;
  /*transition: all 0.3s ease;*/
}

.lp-bullet.is-active {
  background: #738FC4;         /* ← アクティブ色 */
  opacity: 1;
  width: 23%;
  height: 10px;
  border-radius: 20px;
  transform: translateY(-3px); /* ← ここで上に2px移動 */
}

@media (min-width: 1280px) {
  .lp-header {
    height: 600px;
  }
}


@media (min-width: 769px) and (max-width: 936px) {
  .lp-header__scrolltext,
  .lp-header__scroll {
    display: none;
  }
}


/*
.lp-feature__details {
  width: 50%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative; 
  height: 640px;
  background-color: var(--gray-color);
  border-radius: 60px 0 0 60px;
  z-index: 1;         
  overflow: visible;
}

.lp-feature__details::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;   
  left: 100%; 
  width: 100vw;  
  background: var(--gray-color);
  pointer-events: none;
  z-index: -1; 
}
  */

.kaoru-text-white{
    width: 133px;
    vertical-align:-2px;
}

.lp-feature__intro-content h4 .accent-text{
  font-size: 30px;
}
.feature_text{
  width: 219px;
  position: absolute;
  top: -14%;
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  transition: clip-path 1s ease-in-out;
}

.is-visible {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}


.oyuwari,
.jasmine{
  width: 96px;
}

.text-recipe{
    position: absolute;
    top: -6%;
    max-width: 168px;
    width: 100%;
    left: 17%;
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: clip-path 1s ease-in-out;
}

.is-visible {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.lp-movie-gallery__pagination{
  bottom: 80px!important;
}


.text-instagram{
  max-width: 195px;
}


@media (max-width: 768px) {
  .lp-movie-gallery__pagination{
      bottom: 55px!important;
  }
  .text-recipe{
    top: -11%;
    left: -9%;
  }
  .lp-recipe{
    padding: 100px 0;
  }
}







@media (max-width: 768px) {
  /* 画像を広げない＆縦並びのレイアウト用にリセット */
  .lp-movie-gallery .lp-section-title img {
    display: block;
    width: auto !important;
    height: auto;
  }

  /* PC/タブ共通：h3 を “内容幅だけ” にして縦積み */
  .lp-event  .lp-container .lp-section-title,
  .lp-movie-gallery  .lp-container .lp-section-title {
    display: inline-flex !important;   /* 行内にして shrink-to-fit を効かせる */
    flex-direction: column;            /* ← 画像を縦並び */
    align-items: flex-start;           /* 左寄せ（中央にしたいなら center に） */
    gap: 8px;                          /* 画像間の縦の余白。お好みで */
    width: fit-content;     /* 内容幅にぴったり */
    flex: 0 0 auto !important;         /* 親がflexでも伸びない */
    align-self: flex-start !important; /* 親がgrid/flexのstretch対策 */
    margin: auto;
    padding: 13px;
  }
  .lp-movie-gallery .lp-section-title .lp-section-title-rigth{
    max-width: 200px;
    margin-top: 7px;
  }
  /* 既存の「セクション内中央寄せ」をしたい場合は、親に text-align:center を当てる */
  .lp-movie-gallery__title,
  .lp-event {
    text-align: center;                 /* 任意。左寄せ維持なら削除 */
  }

  /* SPのメディアクエリで block を強制しているのを打ち消す */

  .lp-movie-gallery__title .lp-section-title,
  .lp-event .lp-section-title {
    display: inline-flex !important;  /* ← display:block の上書き */
    flex-direction: column;           
    width: max-content !important;
    text-align: left;                 /* 必要なら left/center を明示 */
    margin: 0;                        /* 親の text-align で位置を決める */
    align-items: flex-start;
  }
  .lp-event__hashtag{
    width: fit-content;
    margin: auto;
    display: block;
  }
  .lp-event .lp-section-title .lp-section-title-insta{
    max-width: 221px;
  }

  .lp-instagram__bg-circle{
    position: relative;
    max-width: 324px;
    max-height: 325px;
    transform: translateX(-50%); /* 左右中央寄せ */
    top:0;
    left:0;
  }
  .lp-instagram > .lp-container{
    padding-top: 27%;
  }
  .circle_kaoru-rap{
    position: absolute;
    top: 14%;
    left: 50%;
    transform: translate(-50%, -50%);  /* ← 水平・垂直の中央 */
    width: 100%;
    height: auto;
    z-index: -1;
    text-align: center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes revealFromLeft {
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}


.fade-rise {
  opacity: 0;
  transition: opacity 1.8s ease-out; /* ← 時間長め */
  will-change: opacity;}

.fade-rise.is-visible {
  opacity: 1;
}

/* キラキラ星レイヤー */
/* ヘッダーは position:relative 必須 */
.lp-header {
  position: relative;
  overflow: hidden;
}

/* 星はヘッダー上部40%に表示 */
.stars-layer {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  overflow: hidden;
}

/* 星（発光） */
.stars-layer span {
  position: absolute;
  border-radius: 50%;
  opacity: 0;

  /* ✨中心白く→外側青の自然な光 */
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 1) 0%,
    rgba(130, 170, 255, 0.85) 30%,
    rgba(130, 170, 255, 0.25) 60%,
    rgba(130, 170, 255, 0) 100%
  );

  /* ✨自然な滲み（控えめ・美しく） */
  filter: drop-shadow(0 0 6px rgba(130, 170, 255, .6));

  animation: twinkle 4.5s infinite ease-in-out;
}

/* 大きい星は太くゆっくり */
.stars-layer span.big {
  filter:
    drop-shadow(0 0 10px rgba(130, 170, 255, .9))
    drop-shadow(0 0 28px rgba(130, 170, 255, .5));
  animation-duration: 5.5s;
}

/* 点滅アニメーション */
@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50%     { opacity: 1; }
}
