@charset "utf-8";

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

html,
body {
  height: 100%;
  font-family: sans-serif;
  line-height: 1.5;
  color: #3a2f2b;
  background-color: #fff;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

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

ul,
ol {
  list-style: none;
}

body {
  font-family: "Shippori Mincho", sans-serif;
  background-image: url(../images/contens-bg-img.png);
}

/* ここからヘッダーの装飾 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(184, 18, 38, 1); /* 元の色 */
  height: 90px;
  z-index: 999;
  transition:
    background-color 0.3s ease,
    backdrop-filter 0.3s ease;
}

.header.scrolled {
  background-color: rgba(184, 18, 38, 0.4);
  backdrop-filter: blur(4px);
}

/* コンテンツ部分 */
.header-inner {
  max-width: 1440px;
  padding-left: 130px;
  padding-right: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ロゴ */
.logo img {
  width: auto;
  height: 60px;
}

/* ナビリスト */
ul {
  display: flex;
  gap: 60px;
  /* リスト間の余白 */
  color: #fff;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.nav a:hover {
  opacity: 0.7;
}

.btn-reserve {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  padding: 10px 25px;
  background-color: #6a8c49;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-reserve:hover {
  background-color: #55753c; /* ← ホバー時の色（少し濃い緑） */
  color: #fff;
}

.wrapper {
  background-image: url(../images/contents-bg-img.png);
  background-size: cover;
  background-repeat: repeat;
  background-position: center;
}

/* 全体 */
.main {
  background-color: #b81226;
  position: relative;
  overflow: visible;
  z-index: 1;
}

.main::before {
  content: "";
  position: absolute;
  inset: 0;

  opacity: 0.5;
  z-index: -1;
}

/* ヒーローセクション */
.hero {
  width: 100%;
  height: 800px;
  position: relative;
  z-index: 0;
  overflow: visible;
  padding-top: 100px;
}

.hero-inner {
  display: flex;
  width: 100%;
  height: 100%;
}

/* 左側背景画像 */
.hero-left {
  flex: 1;
  background-image: url("../images/main-img.png");
  background-repeat: no-repeat;
  background-position: center 20%;
  background-size: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 700px;
}

/* 右側背景画像 */
.hero-right {
  flex: 1;
  background-image: url("../images/main-img-sub.png");
  background-repeat: no-repeat;
  background-position: right 80px bottom 100px;
  background-size: auto;
}

/* キャッチコピー */
.catchcopy {
  position: absolute;
  font-weight: medium;
  top: 55%;
  left: 28%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  gap: 20px;
  color: #959392;
  /* text-shadow: 1px 1px 1px #ffffff; */
}

.catchcopy .line {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 44px;

  letter-spacing: 0.28em;
}

.catchcopy .line.left {
  position: relative;
  top: 50px;
}

.line {
  display: inline-block;
  position: relative;
  padding: 30px 10px;
}

.another-color {
  color: #d5142b;
}

.line.left::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  opacity: 0.9;
  z-index: -1;
  height: 550px;
  box-shadow: 1px 1px 3px #fff;
}

.line.right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  opacity: 0.9;
  z-index: -1;
  height: 350px;
  box-shadow: 1px 1px 3px #fff;
}

.hero-inner {
  -webkit-animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: text-focus-in 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}

.asirai-kumo-left {
  position: absolute;
  top: 750px;
  right: 1500px;
  width: 200px;
  height: auto;
  z-index: 2;
}

.asirai-kumo-right {
  position: absolute;
  top: 150px;
  right: 300px;
  width: 200px;
  height: auto;
  z-index: 2;
}

.asirai-wafuu {
  width: 400px;
  position: absolute;
  top: 200px;
  right: 0px;
  z-index: -1;
  transform: rotate(360deg);
  opacity: 0.6;
}

.ichimatsu {
  width: 100%;
  height: 200px; /* 上下の高さは市松帯の高さ */
  background-image: url("../images/ichimatsu4.png");
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: auto; /* ★ 元の画像サイズのまま表示 */
  background-position: left bottom;
}

/* 雲のアニメーション共通 */
@keyframes cloud-move-left {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(40px);
  } /* 右へ */
  100% {
    transform: translateX(0);
  }
}

@keyframes cloud-move-right {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-40px);
  } /* 左へ */
  100% {
    transform: translateX(0);
  }
}

/* 左の雲を右へフワっと */
.asirai-kumo-left {
  animation: cloud-move-left 12s ease-in-out infinite;
}

/* 右の雲を左へフワっと */
.asirai-kumo-right {
  animation: cloud-move-right 12s ease-in-out infinite;
}

/* セクション全体（和紙風背景が入るエリア） */
.news-section {
  width: 100%;
  padding: 100px 0;
}

/* 白い大きなカード */
.news-container {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 80px;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* お知らせタイトル */
.news-title {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
}

.news-title {
  -webkit-animation: focus-in-expand-fwd 0.8s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: focus-in-expand-fwd 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* リスト全体 */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 35px; /* 各行の余白 */
}

/* 1項目ごと */
.news-item {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* 日付部分 */
.news-date {
  display: flex;
  flex-direction: column;
  align-items: left;
  font-weight: bold;
  min-width: 80px;
  border-right: 1px solid #aaa;
  padding-right: 20px;
  font-family: "Noto Serif JP", serif;
}

.news-date .year {
  font-size: 14px;
  letter-spacing: 1px;
}

.news-date .day {
  font-size: 24px;
}

.news-text {
  font-size: 16px;
  color: #3a2f2b;
  text-decoration: none;
  transition: 0.2s;
}

.news-text:hover {
  opacity: 0.7;
}

/* セクション全体 */
/* セクションタイトル */
/* 見出し */
/* 見出し */
.murayan-title {
  text-align: center;
  font-size: 32px;
  margin: 100px 0 200px;
  letter-spacing: 0.28em;
}

/* カードの行 */
.murayan-cards {
  display: flex;
  justify-content: center;
  gap: 70px; /* 少し広げる */
  max-width: 1300px;
  margin: 0 auto 150px;
}

/* カード本体（本家完全再現） */
.murayan-card {
  position: relative;
  width: 30%;
  background: #fff;
  border-radius: 200px 200px 40px 40px; /* ← アーチをもっと強く */
  padding: 180px 55px 70px; /* ← 上の余白を広げる */
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: visible;
}

/* 円画像（少しだけ上に） */
.murayan-img {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: -100px; /* ← ここを上に */
  left: 50%;
  transform: translateX(-50%);
}

/* .murayan-number {
  position: absolute;
  top: -150px; 
  left: 50px; 
  font-size: 96px;
  color: #c25353;
  font-family: "Yu Mincho", serif;

  opacity: 0.7;
  z-index: 3;
} */

.murayan-number {
  font-weight: medium;
  font-size: 28px;

  position: relative;
  display: inline-block;
  font-family: "Noto Serif JP", serif;
}

.murayan-number::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4px;
  width: 50px;
  height: 2px;
  background-color: #3a2f2b;
  border-radius: 2px;
}

.murayan-heading {
  font-size: 20px;
  font-weight: bold;
  margin: 30px 0 0px 0;
  letter-spacing: 0.28em;
}

/* テキスト整形 */
.murayan-text {
  line-height: 2.1;
  margin-bottom: 40px;
  white-space: pre-line;
  font-family: "Noto Serif JP", serif;
}

/* ボタン */
.murayan-btn {
  display: inline-block;
  padding: 10px 30px;
  background-color: #6a8c49;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}

.murayan-btn:hover {
  opacity: 0.8;
}

/* ===========================
   アクセス セクション
=========================== */
.access-section {
  padding: 80px 0;
}

.access-title {
  text-align: left;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.28em;
  margin-bottom: 30px;
}

.access-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* 地図 */
.access-map iframe {
  width: 675px;
  height: 500px;
  border: none;
  border-radius: 10px;
}

/* 右側の文章 */
.access-info {
  flex: 1;
  font-size: 16px;
  line-height: 1.9;
}

.access-address {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.28em;
  font-family: "Noto Serif JP", serif;
}

/* 各項目 */
.access-item {
  padding-top: 25px;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.28em;
}

.access-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  letter-spacing: 0.28em;
}

.access-item h3 {
  position: relative;
  padding-bottom: 12px; /* 点線を出すスペース */
}

.access-item h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px dotted #8b8b8b; /* ← 点線 */
}

.access-item h3 img {
  width: 26px;
  height: auto;
  margin-right: 10px;
}

/* よくある質問セクション */
.faq-section {
  background-color: rgba(168, 163, 163, 0.5);
  position: relative;
  padding: 120px 0 150px;
  overflow: visible;
  z-index: 1;
  min-height: 900px;
  margin-top: 100px;
}

.faq-section.open {
  min-height: 1100px; /* 好きな高さに調整 */
  transition: min-height 0.4s ease; /* アニメーションも可能 */
}

/* 六角形あしらい */
.faq-bg {
  position: absolute;
  top: 150px;
  left: 50px;
  width: 420px;
  opacity: 0.3;
  pointer-events: none;
}

/* 内側中央寄せ */
.faq-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

/* タイトル */
.faq-title {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.28em;
  display: inline-block; /* ←アイコンがはみ出さない */
  margin-bottom: 80px;
}

.faq-icon {
  position: absolute;
  top: -30px; /* ← 上下の位置を調整（ここを変える） */
  left: 250px; /* ← 左右の位置を調整（ここを変える） */
  width: 50px; /* 本家と似せるなら大きさ調整 */
  height: auto;
}

/* カード配置 */
.faq-cards,
.faq-hidden {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* カード本体 */
.faq-card {
  width: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
  z-index: 3;
  font-family: "Noto Serif JP", serif;
}

.faq-card h3 {
  background-color: #b62325;
  color: #fff;
  font-size: 16px;
  padding: 18px 10px;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.faq-card p {
  padding: 18px 15px 24px;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  text-align: left;
}

/* もっと見るボタン */
.faq-more-area {
  text-align: center;
  margin-top: 80px;
}

.faq-more-btn {
  font-size: 18px;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.2em;
  font-weight: 600;
  padding: 10px;
}

/* 非表示部分 */
.faq-hidden {
  margin-top: 40px;
  display: none;
}

/* 表示時 */
.faq-hidden.show {
  display: flex;
}

/* ===========================
   FOOTER
=========================== */

.site-footer {
  width: 100%;
  color: #fff;
  margin-top: 0;
  font-family: "Yu Mincho", serif;
  position: relative;
}

/* 背景画像 */
.footer-bg {
  background-image: url("../images/footer-img.png");
  background-size: cover;
  background-position: center top;
  height: 700px;
  position: relative;
  z-index: 2;
  margin-top: -300px;
}

/* 中身を重ねる */
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  margin-top: -500px;
  padding-bottom: 40px;
  z-index: 3;
}

/* 左右2カラム */
.footer-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* 左側 */
.footer-left {
  max-width: 500px;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 80px;
}

.footer-address {
  font-size: 16px;
  line-height: 3;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
}

/* 右側 */
.footer-right {
  padding-top: 100px;
  text-align: right;
}

/* ナビ */
.footer-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;
  display: flex;
  gap: 20px 35px;
  max-width: 400px;
}

.footer-nav a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.12em;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.footer-nav a:hover {
  opacity: 0.7;
}

/* SNSエリア */
.footer-sns {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}

.footer-instagram {
  width: 32px;
}

/* ボタン */
.footer-reserve-btn {
  background: #b81226;
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
}

.footer-reserve-btn:hover {
  opacity: 0.7;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  margin-top: 50px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ▼ ふわっと表示する基本アニメーション */
.fadein {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease-out;
}

/* ▼ 表示されるときの状態 */
.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

.murayan-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.murayan-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* 左から順番に遅延を付ける */
.murayan-card:nth-child(1) {
  transition-delay: 0s;
}
.murayan-card:nth-child(2) {
  transition-delay: 0.5s;
}
.murayan-card:nth-child(3) {
  transition-delay: 0.7s;
}

.access-info {
  opacity: 0;
  transform: translateX(60px);
  transition: all 1.5s ease-out;
}

.access-info.show {
  opacity: 1;
  transform: translateX(0);
}

.catchcopy .line {
  opacity: 0;
  transform: translateY(40px); /* 下から上へ */
}

/* 表示開始 */
.catchcopy.show .line {
  opacity: 1;
  transform: translateY(0);
  transition: all 3s ease-out;
}

/* 右 → 左へ順番に出す */
.catchcopy.show .right {
  transition-delay: 0s; /* 最初 */
}

.catchcopy.show .left {
  transition-delay: 0.3s; /* 0.3秒遅れて出る */
}

.hamburger {
  display: none;
}

.mobile-menu {
  display: none;
}

.footer-mobile {
  display: none;
}

/* =========================
SP レスポンシブ
=========================*/

@media (max-width: 768px) {
  /* =================
共通
================= */

  body {
    font-size: 16px;
  }

  .wrapper {
    overflow: hidden;
  }

  /* =================
HEADER
================= */

  .header {
    height: 70px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .nav {
    display: none;
  }

  .btn-reserve {
    display: none;
  }

  .logo img {
    height: 40px;
  }

  /* ハンバーガー */

  .hamburger {
    width: 28px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
  }

  .hamburger span {
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

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

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

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

  /* =================
モバイルメニュー
================= */

  .mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    right: 0;
    width: 80%;
    height: 100vh;
    background: rgba(184, 18, 38, 0.95);
    padding: 40px 30px;
  }

  .mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .mobile-menu a {
    color: #fff;
    font-size: 18px;
  }

  .mobile-menu.open {
    display: block;
  }

  /* 予約ボタン */

  .mobile-menu .reserve-btn {
    display: block;
    margin-top: 40px;
    padding: 12px;
    background: #6a8c49;
    border-radius: 6px;
    text-align: center;
    color: #fff;
  }

  /* =================
HERO
================= */

  .hero {
    height: 300px;
    padding-top: 70px;
  }

  .hero-inner {
    flex-direction: column;
    height: 350px;
  }

  .hero-left {
    height: 80vw;
    background-size: cover;
    background-position: center;
    padding: 0;
  }

  .hero-right {
    display: none;
  }

  .catchcopy {
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    display: none;
  }

  .catchcopy .line {
    font-size: 28px;
  }

  .asirai-kumo-left {
    display: none;
  }

  .asirai-kumo-right {
    display: none;
  }

  .asirai-wafuu {
    display: none;
  }

  /* =================
NEWS
================= */

  .news-container {
    width: 90%;
    margin: auto;
    padding: 25px;
  }

  .news-title {
    text-align: center;
  }

  .news-item {
    flex-direction: row;
    align-items: center;
    text-align: center;
    gap: 5px;
  }

  .news-list {
    text-align: center;
  }

  .news-date {
    margin-right: 10px;
  }

  /* =================
村やんカード
================= */

  .murayan-cards {
    flex-direction: column;
    align-items: center;
    gap: 120px;
    padding: 0;
    margin-top: -40px;
  }

  .murayan-card {
    width: 85%;
    max-width: 320px;
    margin: auto;
    padding: 140px 25px 40px;
  }

  .murayan-img {
    width: 150px;
    height: 150px;
    top: -70px;
  }

  .murayan-heading {
    font-size: 18px;
  }

  /* =================
ACCESS
================= */

  .access-address {
    text-align: left;
  }

  .access-item p {
    text-align: left;
  }

  .access-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
  }

  .access-map iframe {
    width: 100%;
    height: 250px;
  }

  .access-info {
    text-align: center;
  }

  /* =================
FAQ
================= */

  .faq-bg {
    display: none;
  }

  .faq-cards,
  .faq-hidden {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .faq-card {
    width: 85%;
    max-width: 320px;
  }

  /* =================
FOOTER
================= */

  .site-footer {
   
    display: none;
  }

  .footer-mobile {
    display: block;
    height: 200px;
    background-color: #b81226;
  }

  .footer-mobile-inner {
    height: auto;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer-mobile-logo img {
    height: 50px;
  }

  .footer-mobile-logo {
    margin-bottom: 30px;
  }

  .footer-mobile-address {
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
  }

  .footer-mobile-copy {
    text-align: center;
    color: #fff;
    font-size: 12px;
  }
}
