@charset "UTF-8";

/* =========================================
   Top Page Specific Styles
   ========================================= */

/* Slideshow */
.slideshow-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* Concept Area (#section0) */
#section0 {
  display: flex;
  justify-content: center;
}

.image-text-container {
  display: flex;
  gap: 50px;
  background-image: url('../images/haikei.png');
  background-size: 100%;
  background-repeat: no-repeat;
  justify-content: center;
}

.imageconcept {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 50px;
  font-family: 'Noto Serif JP';
  font-size: clamp(2.1rem, 4vw, 6.0rem);
  letter-spacing: 3.92px;
  font-weight: 900;
}
.imageconcept span {
  background-color: var(--main-color);
  color: var(--main-inverse-color);
  padding: 2px 10px;
}
.imageconcept img {
  width: 80%;
  margin-left: auto;
}
.imageconcept-text { transform: translate(50px, 40px); }

.textconcept {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 50px;
}
.textconcept span { color: var(--main-color); }

.textconcept-h2 {
  height: 50%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  letter-spacing: -1px;
  padding-bottom: clamp(0px, calc(80px - (100vw - 769px) * 0.0695), 80px);
}
.textconcept-h2 h2 {
  font-size: clamp(25.6px, calc(25.6px + 10.4* (100vw - 769px) / 1151), 36px);
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.textconcept-p {
  height: 50%;
  display: flex;
  justify-content: flex-end; /* 復活 */
  align-items: flex-start;
  flex-direction: column;
  gap: clamp(8px, calc(8px + (100vw - 769px) * 0.0452), 60px);
}
.textconcept-p p {
  width: clamp(80%, calc(100% - (100vw - 769px) * 0.01738%), 100%);
  font-size: clamp(16px, calc(16px + (100vw - 769px) * 0.003475), 20px);
}

@media (max-width: 768px) {
  #section0 {
    align-items: center;
    background-image: url('../images/haikei.png');
    background-size: 200%;
    background-repeat: repeat;
  }
  .image-text-container {
    flex-direction: column;
    align-items: center;
    gap: 0;
    background-size: 75%;
  }
  .imageconcept, .textconcept { width: 75%; }
  .imageconcept { font-size: clamp(36px, calc(36px + (100vw - 375px) * 0.06107), 60px); }
  .imageconcept-text { transform: translate(5px, 30px); }
  .textconcept-h2 { padding-bottom: 20px; }
  .textconcept-h2 h2 { font-size: clamp(21px, calc(21px + (11 * ((100vw - 320px) / 448))), 32px); font-weight: 900; }
}

/* Campaign (#campaign) */
#campaign { margin: 2rem auto; max-width: min(1200px, 90%); }
.campaign-card {
  display: flex; flex-direction: column; gap: 1rem;
  background: #fff; box-shadow: 0 6px 24px rgba(0,0,0,.06);
  overflow: hidden;
}
.campaign-imglink { 
  display: block; width: clamp(320px, 60vw, 720px); margin: 0 auto;
}
.campaign-card img { width: 100%; height: auto; display: block; }
.campaign-body { padding: clamp(12px, 2vw, 20px); text-align: center; }
.campaign-body h2 {
  font-family: 'noto serif jp'; font-weight: 900;
  font-size: clamp(1.4rem, 4vw, 2rem); line-height: 1.3;
}

@media (max-width: 768px) {
  .campaign-imglink { pointer-events: none; width: 90vw; max-width: 500px; }
}
@media (min-width: 769px) {
  .campaign-body { padding: clamp(24px, 3vw, 36px); }
  .campaign-imglink { cursor: pointer; }
}

/* Menu Grid (#section1) */
#section1 {
  display: flex;
  justify-content: center;
  align-items: center;
  /* section1の背景をクリーム色にする */
  background-color: var(--background-color);
}
.flex-container {
  display: flex; flex-wrap: wrap; justify-content: center;
  width: 83%; gap: 40px; margin-top: 50px; margin-bottom: 30px;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-template-areas:
    "sangamiryoku sangamiryoku menu1 menu1"
    "sangamiryoku sangamiryoku menu1 menu1"
    "menu2 menu2 menu1 menu1"
    "menu2 menu2 menu3 menu3"
    "menu2 menu2 menu3 menu3"
    "menu2 menu2 menu3 menu3";
}
.sangamiryoku {
  grid-area: sangamiryoku;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.sangamiryoku-text h1 {
  font-family: 'Noto Serif JP'; font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem); white-space: nowrap;
}
.span-haikei {
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  background-color: var(--main-color);
  color: var(--main-inverse-color);
}
.narrow { letter-spacing: -0.2em; }

.menu1 { grid-area: menu1; width: 80%; margin-left: 40px; margin-bottom: 50px; }
.menu2 { grid-area: menu2; width: 80%; margin-left: 15%; margin-top: 10px; }
.menu3 { grid-area: menu3; width: 80%; margin-left: 40px; }
.menu1, .menu2, .menu3 { display: flex; align-items: center; flex-direction: column; }
.menu1 p, .menu2 p, .menu3 p { width: 80%; padding: 10px; margin-top: 10px; }
.menu1 img, .menu2 img, .menu3 img { box-shadow: -15px 15px 0px 0 #E3D2C1; width: 100%; }
.menu1 h2, .menu2 h2, .menu3 h2 {
  color: var(--main-inverse-color); background-color: var(--main-color);
  padding: 15px 22px 15px 15px; transform: translateY(-20px);
  font-size: clamp(1.2rem, 2vw, 1.6rem); white-space: nowrap;
}

@media (max-width: 768px) {
  .flex-container { width: 85%; }
  
  /* 【修正】スマホで中央揃えにする設定を追加 */
  .grid-container { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
    width: 100%; 
    justify-content: center; /* 追加 */
    align-items: center;     /* 追加 */
  }

  .menu1, .menu2, .menu3 { margin: 0; width: 90%; }
  .menu1 h2, .menu2 h2, .menu3 h2 {
    font-size: clamp(18px, calc(18px + 2 * ((100vw - 360px) / 408)), 20px);
  }
  .menu1 img, .menu2 img, .menu3 img { box-shadow: -8px 10px 0px 0 #E3D2C1; }
  .menu1 p, .menu2 p, .menu3 p { width: 100%; padding: 0; margin: 0; }
  .sangamiryoku h1 {
    font-size: clamp(24px, calc(24px + 16 * ((100vw - 320px) / 448)), 40px);
  }
}

/* Menu Button Area (#section2) */
.menu-buttons {
  display: flex; justify-content: center; padding: 40px 0;
  background-image: url('../images/haikeilong.png');
  background-size: 100%; background-repeat: repeat;
}
.menu-btn {
  margin: 0 20px; padding: 10px 20px;
  font-family: 'Noto Sans JP';
  font-size: clamp(1.5rem, calc(25px + (100vw - 768px) * 0.0158), 2.7rem);
  font-weight: 700;
  background-color: var(--main-color); color: #ffffff;
  display: flex; align-items: center; gap: 10px;
}
.menup { text-align: center; display: flex; justify-content: center; }

@media (max-width: 768px) {
  .menu-buttons { padding: 5px 0; }
  .menu-btn { font-size: 18px; padding: 10px; margin: 10px 5px; }
}

/* Reason Area (#section3) */
#section3 {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  background-color: var(--background-color);
}
.sangakumo {
  display: flex; flex-direction: column; align-items: center; width: 100%;
  background-image: url('../images/kumo1.png'), url('../images/kumo2.png');
  background-position: right top, left bottom;
  background-repeat: no-repeat; background-size: 40%; gap: 20px;
}
.sangariyu-text {
  display: flex; flex-direction: column; margin: 20px 0 20px 40px; width: 80%;
}
.sangariyu-text h1 {
  font-size: clamp(1.8rem, 4vw, 4.0rem);
  font-family: 'Noto Serif JP'; font-weight: 900;
}
.sangariyu-text span { color: var(--main-color); font-size: clamp(2.2rem, 6vw, 6.0rem); }

.sangariyu-image { display: flex; justify-content: flex-end; width: 80%; }
.sangariyu-image img { width: 75%; margin-bottom: 50px; }

.flexbox {display: flex;flex-direction: column;justify-content: center;align-items: center;gap: 20px;}
#section3 .image-text-container { background-image: none; }
#section3 .image-text-container:nth-child(2) { flex-direction: row-reverse; }
#section3 .textconcept-p { gap: 0; justify-content: center; }
#section3 .textconcept-h2 { padding-bottom: clamp(0px, calc(70px - (100vw - 769px) * 0.0461), 70px); }
#section3 .textconcept-h2 h2 { font-weight: 900; font-size: clamp(1.8rem, 4vw, 3.2rem); }
#section3 .textconcept-h2 h3 { font-weight: 800; }
#section3 .imageconcept img { width: 100%; }

@media (max-width: 768px) {
  .sangariyu-text { margin: 30px 0 0; align-items: center; }
  .sangariyu-text h1 {font-size: clamp(22px, calc(22px + (40 - 22) * ((100vw - 375px) / (768 - 375))), 40px);white-space: nowrap;}
  .sangariyu-text span {font-size: clamp(28px, calc(22px + (40 - 22) * ((100vw - 375px) / (768 - 375)))*1.3, 52px);}
  .sangariyu-image { justify-content: center; }
  .sangariyu-image img { width: 100%; }
  #section3 .image-text-container:nth-child(2) { flex-direction: column; }
  #section3 .textconcept-h2 {padding-bottom: 10px !important;}
}

/* Shop Guide (#section4) */
#section4 {
  background-color: #ffffff; padding: 80px 0; text-align: center;
}
.shop-guide-container {
  max-width: 800px; margin: 0 auto; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; gap: 25px;
}
.shop-guide-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.0rem); font-weight: 900; color: #000;
}
.shop-guide-action { width: 50%; display: flex; justify-content: center; }
.shop-guide-btn {
  display: flex; justify-content: center; align-items: center; gap: 15px;
  width: 100%; max-width: 600px; padding: 20px;
  background-color: var(--main-color); color: #fff;
  font-size: 1.2rem; font-weight: bold; border-radius: 4px;
  box-shadow: 0 4px 10px rgba(225, 36, 30, 0.3);
  transition: transform 0.2s, box-shadow 0.2s; line-height: 1;
}
.shop-guide-btn::after {
  content: ""; display: block; width: 8px; height: 8px;
  border-top: 2px solid #fff; border-right: 2px solid #fff;
  transform: rotate(45deg); margin-bottom: 2px;
}
.shop-guide-btn:hover {
  transform: translateY(-2px); box-shadow: 0 6px 15px rgba(225, 36, 30, 0.4); opacity: 0.9;
}
.shop-guide-note { font-size: 0.8rem; color: #888; }

@media (max-width: 768px) {
  #section4 { padding: 50px 0; }
  .shop-guide-action { width: 70%; }
  .shop-guide-btn { width: 100%; max-width: none; padding: 20px 15px; }
}


