@charset "utf-8";

/* ============= 共通設定 ============= */
* {
  margin: 0;
  padding: 0;
}

ul,
li {
  list-style-type: none;
}

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

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  margin: 0 auto;
}

/* ========= JS用Loadingスタイル =========== */

#loading {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  background: #426337;
}

.loading_box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.loading-line {
  margin: 0;
  display: inline-block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}

.loading-line p {
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.25em;
  line-height: 2;
  padding: 2em 0;
}

/* ============== ヘッダー ============= */
header {
  background-color: #e9e2d9;
}

.inner {
  max-width: 1440px;
  height: 150px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  @media (width <= 600px) {
    margin: 0 10% 0;
  }
}

.logo img {
  display: block;
  height: 100px;
  &:hover {
    transform: scale(1.2);
    transition: 0.1s;
  }
}

/* navの設定 */
header .header-site-menu {
  display: flex;
  margin: 0 0 0 auto;
}

.site-menu {
  display: flex;
  /* burger横並びへ */
  align-items: center;
  margin: 0 0 0 auto;
  img {
    display: block;
    height: 60px;
    text-align: center;
  }
  ul {
    display: flex;
    align-items: center;
    gap: 50px;
  }
}

/* ====== ハンバーガーメニュー ===== */
.burger {
  width: 40px;
  height: 40px;
  background-image: url(../images/burger.svg);
  margin: 0 0 0 80px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  margin: 0 0 0 80px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  display: none;
  @media (width <= 800px) {
    display: flex;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
  }
}

.burger.is-active {
  background-image: url(../images/close.svg);
}

/* ====== ハンバーガーメニューリスト ===== */
.burger-menu {
  color: floralwhite;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin: 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #555353;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
  ul li {
    border-bottom: 1px solid #fff;
    text-align: center;
    margin-bottom: 50px;
  }
}

.bueger-menu ul li:hover {
  transform: scale(1.2); /* 拡大 */
  transition: 0.1s;
  color: #c16479;
}

.burger-menu.is-active {
  display: flex;
}

/* ====== レスポンシブ800px以下でnav消える ====== */
.nav-all,
.footer-nav {
  @media (width <= 800px) {
    display: none;
  }
}

/*  ====== ハンバーガーメニュー  ここまで ======== */

nav {
  ul {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-bottom: 0;
  }
  a {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    &:hover {
      color: #426337;
      font-size: 800;
      text-decoration: underline;
      transform: scale(1.2);
      transition: 0.1s;
    }
  }
}

/* ========= heroエリア ========== */
.hero {
  color: #fff;
  text-align: center;
  height: 640px;
  background-image: url(../images/main.jpg);
  background-size: cover;
  /* 2つのテキストを縦に並べて中央揃えに */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  @media (width <= 800px) {
    max-width: 100%;
    height: 400px;
    background-size: cover;
    background-repeat: no-repeat;
  }

  /* ========= hero テキスト ============ */
  h2 {
    font-size: 48px;
    font-weight: 700;
    text-shadow: 5px 5px 2px rgb(34, 19, 2);
  }

  p {
    font-size: 20px;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 10px;
    text-shadow: 3px 3px 2px rgb(34, 19, 2);
  }
}

/* ======== メイン共通セクション ========== */

.container {
  max-width: 1160px;
  margin: 0 auto 0;
  padding: 60px 0 60px 0;
}

.main-section {
  margin: 0;
  padding: 0 0 30px 0;
  /* ========== 見出しグループ ==========*/
  .heading-group {
    text-align: center;
    margin: 0 0 60px;
    h2 {
      color: #8b7452;
      font-size: 40px;
      font-weight: 700;
      @media (width <= 800px) {
        font-size: 30px;
        font-weight: 500;
      }
    }
    span {
      color: #222;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.08em;
      display: block;
      margin-top: 10px;
    }
    &::after {
      content: "";
      display: block;
      width: 40px;
      height: 4px;
      background-color: #426337;
      border-radius: 4px;
      margin: 30px auto 0;
    }
  }
}

/* ============= About usのエリア============= */

.about {
  /* ========== 2カラムのレイアウト========== */
  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    @media (width <= 800px) {
      grid-template-columns: 1fr;
      gap: 10px;
      max-width: 400px;
      margin: 0 auto;
    }
  }
  .image {
    /* =========== 画像サイズ指定 ========== */
    border-radius: 40px;
    overflow: hidden;
    img {
      width: 100%;
      aspect-ratio: 5 / 4;
      object-fit: cover;
    }
  }
}
/* =========== テキストスタイル=========== */
.text {
  img {
    height: 100px;
    @media (width <= 800px) {
      margin-left: 40%;
    }
  }
  h3 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    @media (width <= 800px) {
      font-size: 24px;
      font-weight: 500;
      text-align: center;
    }
  }
  p {
    margin-top: 30px;
    letter-spacing: 1.5px;
    line-height: 1.5;
    @media (width <= 800px) {
      font-size: 16px;
      text-align: center;
    }
  }
}

/* ========== menu エリア ========== */

.menu {
  background-color: #f3f1ee;
}
.menu-h2 {
  &:hover {
    transform: scale(1.2);
    transition: 0.1s;
  }
}

.menu-card {
  /* ======== カードの内側の余白と角丸 ========= */
  padding: 10px;
  background-color: #fff;
  border-radius: 20px;
  width: 300px;
  height: 350px;
  /* ======== カード内のレイアウト =========== */
  display: grid;
  gap: 5px;
  img {
    width: 300px;
    height: 250px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 12px;
    display: block;
  }
  .name {
    font-size: 14px;
    text-align: center;
  }
  .price {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: right;
  }
}

.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  @media (width <= 800px) {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 10% 0 30%;
  }
}

.menu-list li {
  @media (width <= 600px) {
    display: inline-block;
    max-width: 500px;
    /* background-color: #fff; */
    margin: 0 -18% 0;
  }
}

.card {
  /* ====== カード1枚ずつ表示のため ====== */
  opacity: 0;
  @media (width <= 800px) {
    width: 100%;
  }
}

/* ====== 画像ズーム ====== */
.zoom-box {
  display: inline-block;
  overflow: hidden;
}
.c-bnr.zoom {
  display: block;
  transition-duration: 0.5s;
}
.c-bnr.zoom:hover {
  transform: scale(1.2);
  transition: 0.1s;
}

a.button-more {
  display: block;
  margin: 50px auto;
  font-size: 16px;
  display: block;
  color: #fff;
  background-color: #6a9631;
  border: none;
  width: 200px;
  text-align: center;
  padding: 1em 2em;
  border-radius: 15px;
  transition-duration: 0.4s;
  @media (width <= 800px) {
    max-width: 200px;
  }
  &:hover {
    color: #8b7452;
    background-color: #e9e2d9;
    font-weight: 700;
    transform: scale(1.1);
    transition: 0.1s;
  }
}

/* ========== お知らせ ========== */
.container {
  @media (width <= 800px) {
    padding-left: 10%;
    padding-right: 10%;
  }
}
.heading-group-news {
  text-align: center;
  margin: 0 0 100px;
  @media (width <= 600px) {
    margin-bottom: 20px;
  }

  h2 {
    color: #8b7452;
    font-size: 40px;
    font-weight: 700;
    @media (width <= 800px) {
      font-size: 30px;
      font-weight: 500;
      margin-bottom: 0;
    }
  }
  span {
    color: #222;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.08em;
    display: block;
    margin-top: 10px;
  }
  &::after {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background-color: #426337;
    border-radius: 4px;
    margin: 30px auto 0;
  }
}

.news {
  @media (width <= 800px) {
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }
  @media (width <= 600px) {
    max-width: 500px;
    display: inline-block;
    margin: 0 -18% 0;
  }

  @media (width <= 480px) {
    max-width: 80%;
    margin-left: 0;
  }

  li {
    font-size: 20px;
    font-weight: 400;
    line-height: 3;
    letter-spacing: 1;
    padding-left: 100px;
    border-bottom: 50px;
    @media (width <= 800px) {
      font-size: 14px;
      font-weight: 400;
      margin-left: -10%;
    }
    @media (width <= 600px) {
      /* display: inline-block; */
      max-width: 80%;
      font-size: 12px;
    }

    @media (width <= 480px) {
      width: 400px;
      margin: 0;
      padding: 0;
    }

    &:hover {
      color: #426337;
      text-decoration: underline;
      transition: 0.1s;
    }
  }

  span {
    margin-right: 15%;
    margin-left: 10%;
    text-align: center;
    letter-spacing: 0;
  }
}

.more {
  font-size: 20px;
  font-weight: 500;

  a {
    display: block;
    margin: 10% auto 5%;
    font-size: 16px;
    display: block;
    color: #fff;
    background-color: #6a9631;
    border: none;

    width: 200px;
    text-align: center;
    padding: 1em 2em;
    border-radius: 15px;
    transition-duration: 0.4s;
    @media (width <= 800px) {
      margin: 80px auto 0;
    }

    &:hover {
      color: #8b7452;
      font-weight: 700;
      background-color: #e9e2d9;
      transform: scale(1.1);
      transition: 0.1s;
    }
  }
}

.news-list {
  @media (width <= 600px) {
    width: 600px;
    display: inline-block;
    max-width: 100%;
    font-size: 12px;
    margin-left: 25%;
  }
  @media (width <= 480px) {
    width: 100%;
    margin: 0;
  }
}
/* ========= アクセスエリア ========= */

.access {
  background-color: #f3f1ee;
  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
    @media (width <= 800px) {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }
  .text {
    h3 {
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      margin: 50px 0 50px;
      display: flex;
      align-items: baseline;
      gap: 1em;
      @media (width <= 800px) {
        margin-left: 42%;
      }
      span {
        font-size: 0.6em;
      }
    }
  }
}

/* ============ 情報エリア ========== */

dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  @media (width <= 800px) {
    max-width: 400px;
    margin: 0 auto;
  }
  dt,
  dd {
    font-size: 16px;
    padding: 10px;
    border-bottom: 1px solid #ccc;
    @media (width <= 800px) {
      font-size: 14px;
    }
  }
}

/* ========== 地図エリア =========== */
.map {
  border-radius: 40px;
  overflow: hidden;
  @media (width <= 800px) {
    max-width: 400px;
    height: 300px;
    margin: 50px auto 0;
  }
  iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
  }
}

/* ======== contactエリア ========== */

.contact {
  text-align: center;

  .layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    margin-inline: auto;
    max-width: 700px;
    @media (width <= 800px) {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }
  .label {
    margin-bottom: 20px;
  }

  /* ========= 電話番号エリア ==========*/

  .number {
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    transition-duration: 0.4s;
    &:hover {
      color: #e6c260;
      font-weight: 900;
      transform: scale(1.1);
      transition: 0.1s;
    }
    img {
      width: 1em;
    }
  }

  .hour {
    margin-top: 20px;
  }
  .button {
    display: block;
    margin: 40px 50px 40px auto;
    font-size: 16px;
    display: block;
    color: #fff;
    background-color: #6a9631;
    border: none;
    width: 200px;
    text-align: center;
    padding: 1em 2em;
    border-radius: 15px;
    transition-duration: 0.4s;
    @media (width <= 800px) {
      margin: 0 auto;
    }
    &:hover {
      color: #8b7452;
      background-color: #e9e2d9;
      font-weight: 700;
      transform: scale(1.1);
      transition: 0.1s;
    }
  }
}

.label a {
  &:hover {
    color: #8b7452;
    background-color: #e9e2d9;
    font-weight: 900;
    transform: scale(1.1);
    transition: 0.1s;
  }
}

/* ========== footer エリア ========== */

footer {
  padding: 10px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #e9e2d9;

  .logo {
    display: block;
    img {
      display: block;
      height: 100px;
      padding-top: 16px;
    }
  }
}

.footer-nav {
  ul {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  a {
    font-size: 14px;
    font-weight: 600;
    /* color: #fff; */
    &:hover {
      color: #426337;
      font-size: 800;
      text-decoration: underline;
      transform: scale(1.2);
      transition: 0.1s;
    }
  }
}

a.anchor::before {
  content: "";
  padding-top: 60px;
  margin-top: -60px;
}

.a {
  width: 200px;
  align-items: center;
  margin: 0 auto;
}

/* ====== topにもどるボタン ====== */

html {
  scroll-behavior: smooth;
}
.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background: #fff;
  border: solid 2px #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0.5;
}

.pagetop__arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: translateY(20%) rotate(-45deg);
}
