@charset "utf-8";

/* 共通設定 */

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

/* ヘッダー */

header {
  position: absolute;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
  border-bottom: 12px solid #282928;
  background-color: #b3b3b3;
}

h1 {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 12px;
  }
}

/* ナビ */
.nav-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  gap: 24px; /* ナビ項目の間隔 */
  padding-right: 80px; /* ← インスタ分のスペースを確保 */
}

.nav-list {
  margin: 0 20px;
}

.nav-fixed {
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 10001;
}

.nav-fixed img {
  width: 30px;
  height: 30px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  position: absolute;
  right: 60px;
  top: 22px;
  z-index: 10000;
}

.nav-toggle-label span {
  display: block;
  width: 25px;
  height: 4px;
  background: #282928;
  border-radius: 2px;
}

.nav-slide {
  display: flex;
}

@media screen and (max-width: 768px) {
  .nav-slide {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #b3b3b3;
    flex-direction: column;
    align-items: center;
    z-index: 9999;
  }

  .nav-toggle-label {
    display: flex;
  }

  .nav-toggle:checked + .nav-toggle-label + .nav-slide {
    display: flex;
  }

  .nav-top {
    flex-direction: column;
    padding: 20px 0;
  }

  .nav-list {
    margin: 10px 0;
  }
}

/* メインビジュアル */

.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-bottom: 12px solid #282928;
  background: url(../img/Top.png) center center / cover no-repeat;
}

/* コンセプト・あいさつ */

body {
  font-family: "Klee One", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.greeting-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 20px;
  padding: 20px;
  margin: 30px 0;
}

.concept-text {
  font-size: 40px;
}

/* カレンダーとinfo */
/* infoの全体 */

.info {
  background-color: #b3b3b3;
  padding: 20px 24px 0px;
}

.info__container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  /* align-items: flex-start;
  */
}

/* ▼ カレンダー部分（1コマ） */
.info__calendar {
  flex: 1 1 26%;
  background-color: #282928;
  color: #cbb994;
  padding: 12px 0 0 0;
  border-radius: 6px;
}

.info__calendar-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 12px;
}

.info__calendar-img {
  width: 60%;
  height: auto;
}
/* ▼ カレンダー 2ヶ月縦並び */
.calendar__months {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 10px 10px;
}

.calendar__month-title {
  text-align: center;
  font-size: 16px;
  margin-bottom: 8px;
  color: #cbb994;
  letter-spacing: 1px;
}
/* ▼ カレンダー画像を小さめに */
.info__calendar-img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

/*  Info（2コマ） */

.info__news {
  flex: 1 1 60%;
  background-color: #ffffff;
  border-radius: 6px;
}

.info__news-title {
  background-color: #282928;
  color: #cbb994;
  text-align: center;
  padding: 16px 24px;
  font-size: 24px;
  border-radius: 6px 6px 0px 0px;
  margin: 0;
}

.info__news-content {
  font-size: 16px;
  padding: 24px;
  color: #282928;
}

.info__news-item {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ▼ レスポンシブ（タブレット以下） */
@media screen and (max-width: 768px) {
  .info__calendar,
  .info__news {
    flex: 1 1 100%;
    font-size: 12px;
  }
}

/* ▼ スマホ最適化（768px以下） */
@media screen and (max-width: 768px) {
  .info {
    padding: 16px;
  }

  .info__calendar,
  .info__news {
    flex: 1 1 100%;
  }

  .info__calendar-title,
  .info__news-title {
    font-size: １８px;
  }

  .info__news-content {
    font-size: 12px;
    padding: 16px;
    line-height: 1.7;
  }

  .info__news-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }

  .info__news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* 日付を強調 */
  .info__news-item p:first-child {
    font-weight: bold;
    color: #8b7a55;
    margin-bottom: 8px;
  }

  .info__news-item a:active {
    opacity: 0.8;
  }
}

/* アイコン一覧 */

.icon__container {
  display: grid;
  justify-content: center;
  gap: 24px;
  padding: 0px 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background-color: #b3b3b3;
}

@media screen and (max-width: 768px) {
  .icon__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }
}

.icon__item {
  background-color: #ffffff;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
}

.icon__item:hover {
  transform: translateY(-8px);
}

/* icon タイトル部だけ背景黒 */
.icon__title {
  background-color: #282928;
  color: #cbb994;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 0;
  margin: 0;
}

.icon__item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  padding: 12px;
  display: block;
}

/* 共通 HOMEボタン */

.home-link-area {
  background-color: #ffffff;
  margin: 50px;
  padding: 50px;
  text-align: center;
}

.btn--home {
  display: inline-block;
  background-color: #282928;
  color: #cbb994;
  text-decoration: none;
  font-size: 18px;
  padding: 12px 32px;
  border-radius: 4px;
}

/* 共通 フッター */

footer {
  width: 100%;
  background-color: #282928;
  padding: 48px 0;
  text-align: center;
  color: #cbb994;
}

.footer-inner {
  width: 100%;
  background-color: #282928;
}

.footer-inner img {
  width: 60px;
  height: auto;
  display: block;
  margin: 0 auto 16px auto;
}

address {
  margin: 8px;
  font-size: 16px;
}

.footer-inner nav ul {
  font-size: 18px;
  color: #cbb994;
  list-style: none;
}

/* 商品紹介 共通 */
.product-section {
  padding: 40px 20px;
  margin: 80px 50px 0px 50px;
  background-color: #ffffff;
}

.section-title {
  background-color: #282928;
  color: #cbb994;
  padding: 12px 20px;
  font-size: 24px;
  margin-bottom: 24px;
  display: inline-block;
  border-radius: 6px;
}
/* 商品カードのグリッド（レスポンシブ対応） */
.product-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(3, 1fr); /* PCは3列 */
}

/* タブレット（1024px以下）は2列 */
@media screen and (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ（600px以下）は1列 */
@media screen and (max-width: 600px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  text-align: center;
  background-color: #ffffff;
  font-size: 18px;
}

.product-card img {
  background-color: #282928;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.product-title {
  background: #282928;
  color: #cbb994;
  padding: 10px;
  border-radius: 4px;
}

.product-comment {
  padding: 20px 0px;
}

/* SHOP ボタン */
.btn-area {
  text-align: center;
  margin-top: 80px;
}

.btn--shop {
  background-color: #282928;
  color: #cbb994;
  text-decoration: none;
  padding: 24px 40px;
  border-radius: 4px;
}

/* アクセスページ全体 */
.access__page {
  background-color: #ffffff;
  color: #282928;
  padding: 80px 0px 20px 0px;
}

.icon__item img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 12px;
  display: block;
}

/* Map */

.Map__section {
  background-color: #282928;
  color: #cbb994;
  padding: 20px;
}

.access__section h2 {
  font-size: 28px;
  text-align: center;
  padding: 15px;
}

.access__map-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .access__section h2 {
    font-size: 24px;
  }
  .access__map-image {
    width: 90%;
    max-width: 700px;
  }
}

@media screen and (max-width: 480px) {
  .access__section h2 {
    font-size: 20px;
  }
  .access__map-image {
    width: 80%;
    max-width: 600px;
  }
}

/* 問い合わせ */

.contact {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.contact__heading {
  background-color: #282928;
  color: #cbb994;
  font-size: 28px;
  text-align: center;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 4px;
}

.contact__form label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  margin-top: 24px;
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.optional {
  font-size: 14px;
  color: #888;
}

.btn--submit,
.btn--edit {
  margin-top: 24px;
  padding: 12px 24px;
  font-size: 20px;
  background-color: #282928;
  color: #cbb994;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 12px;
  transition: background-color 0.3s ease;
}

.btn--submit:hover,
.btn--edit:hover {
  background-color: #444;
}

.contact__confirm,
.contact__thanks {
  background-color: #f9f9f9;
  padding: 24px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact__back-button {
  text-align: center;
  margin: 40px 0;
}

.btn--close {
  background-color: #282928;
  color: #cbb994;
  font-size: 16px;
  padding: 12px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn--close:hover {
  background-color: #444;
}

/* アイコン一覧（PC:3列 / タブレット:2列 / スマホ:1列） */
.icon__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* デフォルトはPC用：3列 */
  gap: 24px;
  padding: 24px;
  background-color: #b3b3b3;
}
/* タブレット：2列 */
@media screen and (max-width: 1024px) {
  .icon__container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* スマホ：1列 */
@media screen and (max-width: 600px) {
  .icon__container {
    grid-template-columns: 1fr;
  }
}

.nav-top a {
  color: #000000;
}

.footer-nav a {
  color: #cbb994;
}

a:hover {
  color: #444444;
}
