/* ===== リセットCSS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans", "Hiragino Sans", "ヒラギノ角ゴシック", "Yu Gothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
  line-height: 1.6;
  color: #5e3e26;
  background-color: #fff;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for multiple elements */
.scroll-animate--delay-1 {
  transition-delay: 0.1s;
}

.scroll-animate--delay-2 {
  transition-delay: 0.2s;
}

.scroll-animate--delay-3 {
  transition-delay: 0.3s;
}

.scroll-animate--delay-4 {
  transition-delay: 0.4s;
}

/* ===== フローティングハンバーガーメニュー（SP専用） ===== */
.floating-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  display: block;
}

.floating-menu__btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 13px 16px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.floating-menu__btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.floating-menu__line {
  width: 26px;
  height: 2px;
  background-color: #4a250c;
  border-radius: 1px;
  transition: all 0.3s ease;
}

.floating-menu__btn--open .floating-menu__line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.floating-menu__btn--open .floating-menu__line:nth-child(2) {
  opacity: 0;
}

.floating-menu__btn--open .floating-menu__line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== メニューモーダル（SP専用） ===== */
.menu-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.menu-modal--open {
  visibility: visible;
  opacity: 1;
}

.menu-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}

.menu-modal--open .menu-modal__overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.menu-modal__content {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: #f1e2c3;
  margin: 0 auto;
  overflow: hidden;
}

.menu-modal__language {
  position: absolute;
  top: 85px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 3;
}

.menu-modal__language-btn {
  padding: 0 12px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 2.5;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-modal__language-btn--active {
  background-color: #ffffff;
  color: #5e3e26;
}

.menu-modal__language-btn--inactive {
  background-color: #5e3e26;
  color: #ffffff;
}

.menu-modal__nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.menu-modal__nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-modal__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-modal__nav-link:hover {
  opacity: 0.7;
}

.menu-modal__nav-title {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1.38;
  text-align: center;
}

.menu-modal__nav-subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1.8;
  text-align: center;
}

.menu-modal__bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}

.menu-modal__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== ヘッダー ===== */
.header {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.header__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header__logo {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #5e3e26;
}

.header__nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
}

.header__nav-item {
  border-bottom: 1px solid #eee;
}

.header__nav-link {
  display: block;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  transition: background-color 0.3s ease;
}

.header__nav-link:hover {
  background-color: #f8f9fa;
  color: #5e3e26;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header__menu-btn span {
  width: 20px;
  height: 2px;
  background-color: #5e3e26;
  transition: all 0.3s ease;
}

.header__menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.header__menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== メインコンテンツ ===== */
.main {
  margin: 0 auto;
  background-color: #f1e2c3;
}

/* ===== メインビジュアル ===== */
.hero {
  position: relative;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #f1e2c3;
  background-image: url("../img/hero-bg.png");
  background-size: 100% 100%;
  background-position: left;
  background-repeat: repeat-y;
}

.hero__logoTop {
  margin-top: 2.1vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__logoTop img {
  width: 25.85%;
  height: auto;
}

.hero__logoCenter {
  position: relative;
  margin-top: 1.5vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero__logoCenter img {
  width: 98.5vw;
  height: auto;
}

.hero__animal {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.hero__animal img {
  width: 100%;
  height: auto;
}

.hero__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.hero__bottom img {
  width: 100%;
  height: auto;
}

@media (min-height: 800px) {
  .hero__logoCenter {
    margin-top: 5vh;
  }
}

@media (max-height: 750px) {
  .hero__logoCenter img {
    width: 85vw;
    height: auto;
  }

  .hero__animal img {
    width: 100%;
    height: auto;
  }
}

/* 画面高さが700px以下の時の画像サイズ調整 */
@media (max-height: 750px) {
  .hero__logoCenter img {
    width: 85vw;
    height: auto;
  }

  .hero__animal img {
    width: 100%;
    height: auto;
  }
}

/* 画面高さが600px以下の時の画像サイズ調整 */
@media (max-height: 700px) {
  .hero__logoTop img {
    width: 18%;
    height: auto;
  }

  .hero__logoCenter img {
    width: 80vw;
    height: auto;
  }

  .hero__animal img {
    width: 85%;
    height: auto;
  }
}

/* 画面高さが500px以下の時の画像サイズ調整 */
@media (max-height: 715px) {
  .hero__logoTop img {
    width: 20%;
    height: auto;
  }

  .hero__logoCenter img {
    width: 80vw;
    height: auto;
  }

  .hero__animal img {
    width: 85%;
    height: auto;
  }
}

/* ===== NEWS セクション ===== */
.news {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  padding: 210px 32px 64px;
  background-color: #ffffff;
  background-image: url("../img/news-bg.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
}

.news__container {
  max-width: 1200px;
  margin: 0 auto;
}

.news__header {
  text-align: center;
  margin-bottom: 32px;
}

.news__title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #5e3e26;
  margin-bottom: 4px;
}

.news__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5e3e26;
}

.news__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.news__list {
  width: 100%;
  max-width: 311px;
}

.news__item {
  margin-bottom: 16px;
}

.news__item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news__date-badge {
  display: flex;
  justify-content: flex-start;
}

.news__date {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  background-color: #5e3e26;
  padding: 4px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.news__item-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  width: 100%;
  transition: all 0.3s ease;
}
.news__item-title:hover {
  opacity: 0.7;
}

.news__divider {
  height: 1px;
  background-color: #5e3e26;
  margin: 16px 0;
  opacity: 0.3;
  border-style: dashed;
  border-width: 1px 0 0 0;
}

.news__more {
  display: flex;
  justify-content: center;
}

.news__more-btn {
  display: inline-block;
  width: 230px;
  height: 46px;
  background-color: #e9bc1c;
  border-radius: 23px;
  text-decoration: none;
  box-shadow: 0px 4px 0px 0px rgba(213, 152, 66, 1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news__more-btn:hover {
  transform: translateY(2px);
  box-shadow: 0px 2px 0px 0px rgba(213, 152, 66, 1);
}

.news__more-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== LINE UP セクション ===== */
.lineup {
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  position: relative;
  padding: 64px 0px 32px;
  background-color: #f1e2c3;
  background-image: url("../img/bg-pattern.png");
  background-size: contain;
  background-position: left -20px;
  background-repeat: repeat-y;
}

.lineup__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.lineup__header {
  text-align: center;
  margin-bottom: 32px;
}

.lineup__title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #5e3e26;
  margin-bottom: 4px;
}

.lineup__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5e3e26;
}

.lineup__product-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 343px;
  margin-left: auto;
  margin-right: auto;
}

.lineup__product-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.lineup__product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 295px;
}

.lineup__product-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background-color: #0077c6;
  padding: 8px 16px;
  border-radius: 30px;
  white-space: nowrap;
  text-align: center;
}

.lineup__product-card:nth-child(3) .lineup__product-badge {
  background-color: #dd4627;
}

.lineup__product-name {
  font-family: "Noto Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #5e3e26;
  line-height: 1.8;
  text-align: center;
  width: 100%;
}

.lineup__product-image {
  width: 150px;
  height: 268px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lineup__product-card:nth-child(4) .lineup__product-image {
  height: 260px;
}

.lineup__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.lineup__product-description {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5e3e26;
  line-height: 1.8;
  text-align: left;
  width: 100%;
  max-width: 295px;
}

.lineup__webshop-btn {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.lineup__webshop-link {
  display: inline-block;
  width: 230px;
  height: 46px;
  background-color: #e9bc1c;
  border-radius: 23px;
  text-decoration: none;
  box-shadow: 0px 4px 0px 0px rgba(213, 152, 66, 1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lineup__webshop-link_2 {
  background-color: #FF9900;
  box-shadow: 0px 4px 0px 0px rgba(193,116,0,1);
}

.lineup__webshop-link:hover {
  transform: translateY(2px);
  box-shadow: 0px 2px 0px 0px rgba(213, 152, 66, 1);
}

.lineup__webshop-link_2:hover {
  box-shadow: 0px 2px 0px 0px rgba(193,116,0,1);
}

.lineup__webshop-text {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
}

/* ===== Microwave POPCORN セクション ===== */
.microwave {
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  padding: 64px 32px;
  background-color: #ffffff;
}

.microwave__container {
  max-width: 1200px;
  margin: 0 auto;
}

.microwave__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 311px;
  margin: 0 auto;
}

.microwave__icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.microwave__icon-img {
  display: block;
  width: 126.89px;
  height: 109.59px;
}

.microwave__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.microwave__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1.8;
}

.microwave__title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1;
}

.microwave__description {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 2;
}

.microwave__instruction {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.microwave__instruction-images {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.microwave__instruction-image {
  width: 151px;
  height: 101px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.microwave__instruction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.microwave__instruction-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5e3e26;
  line-height: 1.8;
}

/* ===== 画像セクション ===== */
.before-about {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  background-color: transparent;
}

.before-about__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ===== ABOUT セクション ===== */
.about {
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  padding: 64px 0px 76px;
  background-color: #ffffff;
}

.about__container {
  max-width: 375px;
  margin: 0 auto;
  padding: 0 32px;
}

.about__header {
  text-align: center;
  margin-bottom: 64px;
}

.about__title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #5e3e26;
  margin-bottom: 4px;
}

.about__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5e3e26;
}

.about__features {
  display: flex;
  gap: 32px;
  margin-bottom: 64px;
}

.about__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.about__feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 140.55px;
  height: 32px;
}

.about__feature-title {
  width: 140px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/about-catch.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #5e3e26;
  text-align: center;
  line-height: 1.6;
}

.about__feature-icon {
  width: 140.55px;
  height: 29.64px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__feature-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about__feature-image {
  width: 82px;
  height: 147px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__feature-badge {
  width: 100px;
  height: auto;
  padding: 0 10px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__feature:nth-child(1) .about__feature-badge {
  background-color: #0077c6;
}

.about__feature:nth-child(2) .about__feature-badge {
  background-color: #dd4627;
}

.about__feature-badge-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  line-height: 1.8;
}

/* 原料について */
.about__ingredient {
  margin-bottom: 64px;
}

.about__ingredient-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__ingredient-description {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #5e3e26;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__ingredient-description .small {
  font-size: 11px;
}

.about__ingredient-location {
  text-align: center;
  padding: 0;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  margin-left: -32px;
  width: calc(100% + 64px);
  height: 682px;
}

.about__ingredient-location-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about__ingredient-location-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}

.about__ingredient-location-name {
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: #4a250c;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0;
}

.about__ingredient-location-subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 8px;
  font-weight: 400;
  color: #4a250c;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.06em;
  margin: 0;
}

.about__ingredient-location-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.about__location-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__ingredient-location-corn-1 {
  position: absolute;
  top: 291px;
  right: 24px;
  width: 200px;
  height: 150px;
  z-index: 1;
}

.about__ingredient-location-corn-1 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__ingredient-location-corn-2 {
  position: absolute;
  top: 456px;
  left: 71px;
  width: 131px;
  height: 95px;
  z-index: 1;
}

.about__ingredient-location-corn-2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__ingredient-location-character {
  position: absolute;
  bottom: 66.5px;
  right: 18px;
  width: 120px;
  height: 152px;
}

.about__ingredient-location-character img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__ingredient-location-img {
  margin-top: -131px;
  width: 100%;
}

.about__ingredient-location-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about__ingredient-location-video {
  margin-top: 32px;
  width: 100%;
}

.about__ingredient-location-video img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 生産について */
.about__production {
  margin: 64px 0;
}

.about__production-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about__production-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__production-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1.8;
  margin: 0;
}

.about__production-description {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
}

.about__production-image {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.about__production-image--right {
  margin-top: -8px;
  justify-content: flex-end;
}

.about__production-image img {
  width: 230px;
  height: auto;
  object-fit: cover;
}

.about__safety {
  background-color: #ffffff;
  padding: 0px;
  border-radius: 0px;
  box-shadow: none;
}

.about__safety-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__safety-description {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__safety-image {
  width: 100%;
}

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

.about__research {
  background-color: #ffffff;
  padding: 60px 0px 0;
  border-radius: 0px;
  box-shadow: none;
}

.about__research-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__research-title span {
  font-size: 14px;
  display: inline-block;
  line-height: 1.4;
  padding: 10px 0 0;
}

.about__research-description {
  font-family: "Noto Sans", sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about__research-image {
  width: 100%;
}

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

/* ===== 追加セクション（SHOP前） ===== */
.before-shop {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  padding: 0;
  background-color: #ffffff;
}

.before-shop__background-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.before-shop__character {
  position: absolute;
  bottom: 24px;
  left: 55px;
  width: 119px;
  height: 171px;
}

.before-shop__character-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SHOP セクション ===== */
.shop {
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  padding: 0;
  position: relative;
  background-color: #f1e2c3;
  background-image: url("../img/bg-pattern.png");
  background-size: contain;
  background-position: left -20px;
  background-repeat: repeat-y;
}

.shop__container {
  max-width: 375px;
  margin: 0 auto;
  position: relative;
}

.shop__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 173px;
  z-index: 1;
}

.shop__background-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop__content {
  position: relative;
  z-index: 2;
  padding: 64px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.shop__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.shop__title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1em;
}

.shop__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1.8;
}

.shop__soon {
  padding: 64px 0;
}

.shop__soon .shop__soon_text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1em;
}

.shop__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.shop__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.shop__name {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5e3e26;
  text-align: center;
  line-height: 1.8;
  margin: 0;
  width: 100%;
}

.shop__button {
  display: flex;
  justify-content: center;
}

.shop__link {
  display: inline-block;
  width: 190px;
  height: 36px;
  background-color: #e9bc1c;
  border-radius: 23px;
  text-decoration: none;
  box-shadow: 0px 4px 0px 0px rgba(213, 152, 66, 1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop__link:hover {
  transform: translateY(2px);
  box-shadow: 0px 2px 0px 0px rgba(213, 152, 66, 1);
}

.shop__link-text {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

.shop__divider {
  width: 100%;
  height: 1px;
  background-color: #5e3e26;
  border-style: dotted;
  border-width: 1px 0 0 0;
  opacity: 0.3;
}

/* ===== SNS セクション ===== */
.sns {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 375px;
  max-height: 488.23px;
  padding: 0;
  background-color: #ffffff;
  position: relative;
  background-image: url("../img/sns-bg.png");
  background-size: 100% 488.23px;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.sns__container {
  max-width: 375px;
  margin: 0 auto;
  position: relative;
  height: 488.23px;
}

.sns__background-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 375px;
  height: 182px;
  z-index: 1;
}

.sns__background-1-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns__background-2 {
  position: absolute;
  top: 342.23px;
  left: 0;
  width: 375px;
  height: 146px;
  z-index: 1;
}

.sns__background-2-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns__character {
  position: absolute;
  top: 282.23px;
  left: 229px;
  width: 110px;
  height: 202px;
  z-index: 3;
}

.sns__character-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sns__content {
  position: absolute;
  top: 96px;
  left: 57px;
  width: 261px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.sns__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.sns__title {
  font-family: "Montserrat", sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1em;
}

.sns__subtitle {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #5e3e26;
  margin: 0;
  line-height: 1.8;
}

.sns__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.sns__link-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sns__icon {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.sns__icon:hover {
  opacity: 0.7;
}

.sns__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== フッター ===== */
.footer {
  background-color: #f1e2c3;
  color: #ffffff;
  padding: 0;
  width: 100%;
}

.footer__container {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  background-color: #5e3e26;
}

.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__logo-img {
  width: 91px;
  height: 80px;
  object-fit: contain;
}

.footer__links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.footer__link,
.footer__link-text {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__company-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.footer__company-name {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.8;
  text-align: left;
}

.footer__address {
  font-family: "Noto Sans", sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
  line-height: 1.8;
  text-align: left;
}

.footer__copyright {
  font-family: "Noto Sans", sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0;
  line-height: 1.8;
}

/* PC専用エリア（モバイルでは非表示） */
.pc-left-area,
.pc-right-area {
  display: none;
}

/* ===== PC向けスタイル（メディアクエリ） ===== */
@media (min-width: 769px) {
  /* PC専用エリアを表示 */
  .pc-left-area,
  .pc-right-area {
    display: block;
  }

  /* PCではフローティングメニューとモーダルを非表示 */
  .floating-menu,
  .menu-modal {
    display: none;
  }
  body {
    margin: 0;
    padding: 0;
  }

  /* PCレイアウトの基本構造 */
  .main {
    display: flex;
    min-height: 100vh;
    height: 100dvh;
    position: relative;
  }

  /* PC専用左側エリア */
  .pc-left-area {
    order: 1;
    flex: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: calc((100% - 375px) / 2);
    height: 100vh;
    height: 100dvh;
    background-color: #f1e2c3;
    overflow: hidden;
  }

  .pc-left-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pc-left-popcorn.png");
    background-size: 605px 328px;
    background-position: bottom left;
    background-repeat: no-repeat;
    z-index: 1;
  }

  /* 左側の背景画像を水平反転 */
  .pc-left-area::after {
    content: "";
    position: absolute;
    top: 0;
    left: 590px;
    width: 50%;
    height: 100%;
    background: url("../img/pc-left-popcorn.png");
    background-size: 605px 328px;
    background-position: bottom left;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
  }

  .pc-left-content {
    position: relative;
    margin: 0 auto;
    width: calc(100% - 80px);
    height: 100%;
  }

  .pc-left-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
  }

  /* PC専用右側エリア */
  .pc-right-area {
    order: 3;
    flex: 1;
    position: fixed;
    top: 0;
    right: 0;
    width: calc((100% - 375px) / 2);
    height: 100vh;
    height: 100dvh;
    background-color: #f1e2c3;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .pc-right-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pc-right-popcorn.png");
    background-size: 605px 328px;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: 1;
  }

  .pc-right-area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 590px;
    width: 50%;
    height: 100%;
    background: url("../img/pc-right-popcorn.png");
    background-size: 605px 328px;
    background-position: bottom right;
    background-repeat: no-repeat;
    transform: scaleX(-1);
    z-index: -1;
  }

  .pc-right-language {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
  }

  .pc-right-nav {
    margin-top: 152px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    z-index: 2;
  }

  .pc-nav-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .pc-nav-item:hover {
    opacity: 0.7;
  }

  .pc-nav-title {
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #5e3e26;
    margin: 0;
    line-height: 1.38;
    text-align: left;
  }

  .pc-nav-subtitle {
    font-family: "Noto Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #5e3e26;
    margin: 0;
    line-height: 1.8;
    text-align: left;
  }

  /* 中央コンテンツエリア */
  .main-content {
    order: 2;
    width: 375px;
    margin: 0 auto;
    background-color: #ffffff;
    position: relative;
    z-index: 2;
  }

  .hero {
    height: 100vh;
    height: 100dvh;
  }

  /* ヘッダーの調整 */
  .header {
    height: 80px;
    background-color: #ffffff;
    position: relative;
    z-index: 3;
  }

  .header__logo {
    font-size: 24px;
  }

  .header__nav {
    display: flex;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    gap: 30px;
  }

  .header__nav-link {
    padding: 0;
    font-size: 16px;
    color: #5e3e26;
    font-weight: 500;
  }

  .header__nav-link:hover {
    background: none;
    color: #5e3e26;
    opacity: 0.7;
  }

  .header__menu-btn {
    display: none;
  }

  /* 言語切り替えボタン */
  .language-btn {
    display: block;
    padding: 0 12px;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
    background-color: #5e3e26;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    line-height: 2.5;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .language-btn--active {
    background-color: #ffffff;
    color: #5e3e26;
  }

  /* セクションの調整 */
  .news,
  .lineup,
  .about,
  .shop,
  .sns {
  }

  .news__title,
  .lineup__title,
  .about__title,
  .shop__title,
  .sns__title {
    font-size: 36px;
  }

  .news__subtitle,
  .lineup__subtitle,
  .about__subtitle,
  .shop__subtitle,
  .sns__subtitle {
    font-size: 16px;
  }
}
