@charset "UTF-8";

/* ベースのリセット + ルート設定 */
html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;  /* 1rem = 10px */
  /* scroll-behavior: smooth; */
  box-sizing: border-box;
}

*, 
*::before, 
*::after {
  box-sizing: inherit;
}

/* * {kaw
  border: 1px solid;
} */

/* ボディ設定（フォントや色） */
body {
  height: 100%;
  /* position: relative; */
  min-height: 100vh;
  margin: 0;
  padding: 0;
  font-family: 'EB Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #B4A189;
  background-color: #fff;
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* リンクの基本スタイル */
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

/* 見出しのリズム感（必要に応じて調整） */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: normal;
	margin: 0;
}

/* 画像が親要素からはみ出ないようにする */
img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  /* display: block; */
}

/* リストの余白を整える */
ul,
ol {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* ボタンのリセット */
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* セクションのベース余白 */
/* section {
padding: 4rem 2rem;
} */

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

.title {
  display: inline-block;
  position: relative;
  margin: 7rem auto 0;
  padding-bottom: 5rem; /* 下線と本文の間隔 */
  text-align: center;
  font-size: 2.4rem;
  text-transform: uppercase;
  z-index: 1;
}

.title::after {
  content: "";
  position: absolute;
  width: 150%;
  height: 0.1rem;
  top: 50%;
  left: -25%;
  /* bottom: 0; */
  background-color: #B4A189; /* 線の色 */
}

:root {
  --main-color: #3f3b6c;
  --accent-color: #d4af37;
  --text-color: #333;
  --bg-color: #fff;
  --spacing: 2rem;
}

/* ----------------------------------
header
---------------------------------- */

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-wrapper {
  /* position: relative; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 300;
  /* background-color: green; */
  /* background-color: rgba(90, 55, 11, 0.8); */
}

.header-title {
  display: flex;
  /* width: 15rem; */
  align-items: center;
}

.header-title img {
  display: block;
  width: auto;
  height: auto;
  max-height: 7.5rem;
  margin-left: 2.5rem;
  /* padding-left: 2.5rem; */
  /* z-index: 1; */
  /* border: 1px solid red; */
}

/* 親liに position: relative をつける */
.navi-menu {
  /* position: relative; */
  display: flex;
  align-items: center;
  /* border: 1px solid pink; */
}

.navi-menu li {
  padding-right: 2.5rem;
  font-size: 2rem;
}

/* ドロップダウンは絶対配置＆非表示 */
.dropdown-list {
	display: none;
	position: absolute;
	top: 100%;
	left: -100px;
	background-color: transparent;
	padding: 10px 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	white-space: nowrap;
	z-index: 999;
	flex-direction: column;
}

/* ホバーで表示する */
.navi-menu li:hover .dropdown-list {
	display: flex;
}

.navi-menu li {
	position: relative;
}

@media (max-width: 768px) {
  .header-title img {
    /* height: 7rem; */
    margin-left: 0;
  }

  /* .navi {
    display: none;
  } */
}

@media (max-width: 480px) {
  .header-title img {
    height: 5rem;
  }

  .navi {
    display: none;
  }
}

/* -------------------------
ハンバーガーメニュー
------------------------- */

.hamburger {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 30px;
  height: 22px;
  /* justify-content: space-between; */
  /* flex-direction: column; */
  cursor: pointer;
  z-index: 1001;
}

.hamburger-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.hamburger-inner span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #B4A189;
  border-radius: 2px;
  transition: 0.3s;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(315deg);
  top: 10px;
  background-color:#B4A189;
  z-index: 20;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-315deg);
  top: 50%;
  background-color: #B4A189;
  z-index: 10px;
}

/* レスポンシブ表示制御 */
@media screen and (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navi-menu {
    display: none;
  }
}

/* マスク */
.menu-mask {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px); /* ← ぼかしを強く */
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(1.05); /* ← ふわっと感のために最初は拡大 */
  pointer-events: none; /* 非表示時クリック不可に */
  transition: opacity 0.5s ease, transform 0.5s ease;
  /* ここ追加 */
  visibility: hidden;
}

.menu-mask.show {
  opacity: 1;
  transform: scale(1); /* ← 元のサイズに戻す */
  pointer-events: auto;
  /* ここ追加 */
  visibility: visible;
}

/* モバイル用メニュー */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-menu ul li {
  margin: 1.5rem 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  /* ここ追加 */
  transition-delay: 0s;
}

.mobile-menu ul li a {
  font-family: 'EB Garamond', serif;
  font-size: 2.2rem;
  color: #B4A189;
  text-decoration: none;
}



.menu-mask.show .mobile-menu ul li {
  opacity: 1;
  transform: translateY(0);
}

.menu-mask.show .mobile-menu ul li:nth-child(1) { transition-delay: 0.1s; }
.menu-mask.show .mobile-menu ul li:nth-child(2) { transition-delay: 0.2s; }
.menu-mask.show .mobile-menu ul li:nth-child(3) { transition-delay: 0.3s; }
.menu-mask.show .mobile-menu ul li:nth-child(4) { transition-delay: 0.4s; }
.menu-mask.show .mobile-menu ul li:nth-child(5) { transition-delay: 0.5s; }
.menu-mask.show .mobile-menu ul li:nth-child(6) { transition-delay: 0.6s; }
.menu-mask.show .mobile-menu ul li:nth-child(7) { transition-delay: 0.7s; }
.menu-mask.show .mobile-menu ul li:nth-child(8) { transition-delay: 0.8s; }
.menu-mask.show .mobile-menu ul li:nth-child(9) { transition-delay: 0.9s; }
.menu-mask.show .mobile-menu ul li:nth-child(10) { transition-delay: 1.0s; }

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


/* ----------------------------------
headerここまで
---------------------------------- */


/* ----------------------------------
mainvisual
---------------------------------- */

#mainvisual {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 768px) {
  #mainvisual {
    height: 100dvh; /* モダンな高さ指定 */
  }
}

@media (max-width: 480px) {
  #mainvisual {
    height: 100dvh; /* モダンな高さ指定 */
  }
}

/* ----------------------------------
mainvisualここまで
---------------------------------- */


/* ----------------------------------
ABOUT
---------------------------------- */

#about {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #130B06;
}

.about-text {
  display: flex;
}

.messages {
  width: 40%;
  padding: 5% 0 5% 10%;
  /* display: inline-block; */
  /* margin: 0 0 0 25rem; */
  /* border: 1px solid red; */
}

.about-bg {
  width: 65%;
  /* z-index: 0; */
}
.about-bg img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

#about h3 {
  margin-bottom: 5rem;
}

.message01,
.message02,
.message03,
.message04,
.message05,
.message06,
.message07 {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-out;
}

/* スマホサイズのときのスタイル */
@media (max-width: 768px) {
  .about-text {
    width: 70%;
    flex-direction: column;
    margin: 0 auto;
  }
  .messages {
    width: 100%;
    padding: 0 0 0 5%;
    font-size: 1.4rem;
    z-index: 1;
    /* border: 1px solid red; */
  }

  .message01,
  .message02,
  .message03 {
    background-color: #130b06;
    background: rgb(19, 11, 6, 0.3);
}

  .about-bg {
    position: absolute;
    /* width: 100%; */
    /* height: 100vh; */
    top: 50;
  }
  .about-bg img {
    height: 20%;
  }
}

/* ----------------------------------
ABOUTここまで
---------------------------------- */

/* ----------------------------------
gallery
---------------------------------- */

#gallery {
  height: calc(100vh - 10rem);
  min-height: 100vh;
  background: linear-gradient(to bottom, #130B06, #746b77, #edeee7);
}

.slide-items {
  display: flex;
  max-width: 100%;
  width: 100%;
  /* margin-top: 15rem; */
  /* border: 1px solid red; */
}

.slide-items img {
  /* width: 25%; */
  width: 100%;
  height: 50vh;
  object-fit: cover;
  /* border: 1px solid blue; */
}

/* ----------------------------------
gallery個別ページ
---------------------------------- */

#gallery-box {
  /* height: calc(100vh - 30px); */
  background-color: #fff;
}

.gallery-wrapper {
  display: flex;
  max-width: 120rem;
  height: 50%;
  margin: 15rem auto;
  /* padding-top: 15rem; */
  gap: 10rem;
  /* border: 1px solid red; */
}

.gallery-page-left {
  flex: 1;
  min-width: 0;
  /* width: 40%; */
  /* margin-left: 25rem; */
  /* border: 1px solid blue; */
}

.gallery-page-left img {
  width: 100%;
  object-fit: cover;
  /* display: block; */
}

.gallery-page-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  min-width: 0;
  align-items: flex-start;
  flex: 1;
  /* margin: 0 40rem; */
  /* border: 1px solid; */
}

.page-title {
  padding-bottom: 1rem;
  font-size: 2.8rem;
}

.page-title-sub {
  padding-bottom: 3rem;
}

.gallery-price {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 24px; /* 行間・列間の余白 */
  padding-top: 3rem;
  /* margin: 0 25rem; */
  /* font-family: 'EB Garamond', serif; */
  /* font-size: 16px; */
  /* line-height: 1.6; */
  /* max-width: 700px; */
  /* padding: 24px 16px; */
}

@media (max-width: 768px) {
  .gallery-wrapper {
    max-width: 60rem;
    flex-direction: column;
    margin: 0 auto;
    gap: 0;
  }

  .gallery-page-right {
    width:100%;
    /* border: 1px solid red; */
  }
}

@media (max-width: 480px) {
    .gallery-page-right{
      width: 80%;
      margin: 0 auto;
    }

    .gallery-page-left img {
      height: 200px;
    }

  .explain {
    /* width: 80%; */
    font-size: 14px;
  }
}

/* ----------------------------------
galleryここまで
---------------------------------- */


/* ----------------------------------
information
---------------------------------- */

#information {
	position: relative;
	height: auto;
}

.information-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.information-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.7;
	z-index: -1;
}

.section-title, 
.information-container {
	position: relative;
	/* ← またはstaticでもOK */
	z-index: 2;
	/* 背景の上に来ればOK */
	margin: 0 auto;
	padding: 2rem 1rem;
	max-width: 80rem;
}

.information-wrapper {
  display: grid;
  width: 100%;
  height: 30%;
  gap: 3rem;
}

.information-inner {
  display: none; /* ← まずは全部非表示 */
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  background-color: rgba(180,161,137,0.5);
}

/* View Moreで表示される */
.information-inner.show {
  display: flex;
}

/* 最初の2つにだけつけるクラス */
.information-inner.initial {
  display: flex;
}

/* スクロールでアニメーションをかける */
.information-inner.fadein {
  opacity: 1;
  transform: translateY(0);
}

.information-img {
  width: 30%;
  height: 200px;
  overflow: hidden;
}

.information-text {
  width: 100%;
  text-align: center;
}

.information-title {
  padding-top: 2%;
  font-size: 2.4rem;
}

.view-more-wrapper {
  /* position: relative; */
  /* display: none; */
  text-align: center;
  margin-top: 4rem;
}

.read-more {
  cursor: pointer;
  padding-top: 15%;
}

.view-more {
  /* position: absolute; */
  align-items: center;
  color: #B4A189;
  /* border: 1px solid; */
  /* z-index: 10; */
}

@media (max-width: 768px) {
  .information-img {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .information-container {
    width: 70%;
    padding: 0 1rem;
    /* border: 1px solid red; */
  }

  #information {
    height: 100%;
  }

  .information-bg {
    display: none;
  }

  .information-inner.show,
  .information-inner.hidden {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    margin-bottom: 2.5rem;
  }

  .information-img {
    width: 100%;
    height: auto;
    max-width: 240px;
    margin: 0 auto;
  }

  .information-img img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 320px;
    object-fit: cover; /* 必要であれば */
  }

  .information-title{
    font-size: 1.4rem;
  }
}

/* ----------------------------------
information個別ページ
---------------------------------- */

#information-box {
  /* height: 100%; */
  /* height: calc(100vh - 30px); */
  height: 100vh;
}

.information-page-wrapper {
  display: flex;
  max-width: 120rem;
  height: 60%;
  margin: 5rem auto;
  /* padding-top: 15rem; */
  gap: 10rem;
  /* border: 1px solid red; */
}

.information-page-left {
  flex: 1;
  margin: auto;
  /* min-width: 0; */
  /* width: 40%; */
  /* border: 1px solid blue; */
}

.information-page-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 40%;
  min-width: 0;
  align-items: flex-start;
  flex: 1;
  /* margin: 0 40rem; */
  /* border: 1px solid; */
}

.information-page-right img {
  /* width: auto; */
  height: auto;
  max-height: 60rem;
}

.page-title {
  padding-bottom: 5rem;
  font-size: 2.8rem;
}

.information-address {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 24px; /* 行間・列間の余白 */
  padding-top: 6rem;
  /* margin: 0 25rem; */
  /* font-family: 'EB Garamond', serif; */
  /* font-size: 16px; */
  /* line-height: 1.6; */
  /* max-width: 700px; */
  /* padding: 24px 16px; */
}

@media (max-width: 768px) {
  #information-box{
    height: 100%;
  }
  .information-container {
    width: 70%;
    /* border: 1px solid red; */

  }
  .information-page-wrapper {
    /* max-width: 60rem; */
    width: 70%;
    flex-direction: column-reverse;
    margin: 0 auto;
    gap: 0;
  }

  .page-title {
    padding-top: 2rem;
    text-align: center;
  }

  /* .view-more-wrapper {
    display: none;
  } */

  .information-page-right {
    margin: 0 auto;
  }
}



@media (max-width: 480px) {
  #information-box {
    height: 100%;
  }
    .information-container {
      width: 80%;
    }

  .information-page-wrapper {
    flex-direction: column-reverse;
    width: 80%;
    margin: 0 auto;
  }

  .information-img img {
    width: 100%;
    height: auto;
    /* object-fit: cover; */
  }

  .view-more-wrapper {
    display: block;
  }
  
  .page-title {
    font-size: 1.6rem;
  }

  .information-page-right {
    width: 80%;
    /* background-color: pink; */
    /* height: 200px; */
    /* margin: 0 auto; */
  }

  .information-page-right img {
    width: 100%;
    height: auto;
  }
}


/* ----------------------------------
informationここまで
---------------------------------- */


/* ----------------------------------
rim.
---------------------------------- */

#rim {
  height: 100%;
}

.c-text {
  overflow: hidden;
  display: flex;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.c-text__item {
  flex-shrink: 0;
  white-space: nowrap;
  color: #5A370B;
  /* font-size: 120px; */
}

.tick-word {
  display: inline-block;
  margin-right: 7rem; /* ←ここで余白調整！ */
  white-space: nowrap;
}

  .c-text:not(.no-tick) .c-text__item:nth-child(odd) {
    animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
  }
  .c-text:not(.no-tick) .c-text__item:nth-child(even) {
    animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
  }

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.rim-announce {
  margin-top: 2rem;
  background-color: #B4A189;
  overflow: hidden;
  opacity: 0.6;
}

.rim-announce-img {
  display: flex;
  height: 240px;
  overflow: hidden;
  /* width: 20%; */
  /* padding-top: 10rem; */
}

.rim-announce-img img {
  height: 100%;
  object-fit: cover;
}

.rim-announce-add {
  display: flex;
  width: 70%;
  justify-content: space-between;
  /* margin: 0 auto; */
  margin: 10rem auto;
  /* border: 1px solid green; */
}

.rim-address {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 24px; /* 行間・列間の余白 */
  /* margin: 0 auto; */
  /* font-family: 'EB Garamond', serif; */
  /* font-size: 16px; */
  /* line-height: 1.6; */
  /* max-width: 700px; */
  /* padding: 24px 16px; */
  /* border: 1px solid; */
}

.rim-announce-message-bottom {
  margin-top: 5rem;
}

.rim-announce-top,
.rim-announce-bottom {
  overflow: hidden;
  white-space: nowrap;
  font-size: 2.4rem;
  /* position: relative; */
  color: #5A370B;
}

.rim-announce-top span,
.rim-announce-bottom span {
  display: inline-block;
  padding-left: 100%;  /* 最初は右から出現させる用 */
  animation: scroll-left 20s linear infinite;
  z-index: 1;
}

@keyframes scroll-left {
  0% {
  transform: translateX(0);
  }
  100% {
  transform: translateX(-100%);
  }
}

.bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 4rem;
}

.bg .bg-wrap.is-animated::before {
  animation: bg 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  background: linear-gradient(to right, #784f1e 0%,#a07b4b 50%,#b8a285 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  /* border: 1px solid red; */
}

.bg .bg-wrap .inn {
  color: #fff;
  display: inline-block;
  /* font-size: 36px; */
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}

@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }

  30% {
    transform: scaleX(1) translateX(0);
  }

  100% {
    transform: scaleX(1) translateX(0);
  }

  30%, 100% {
    opacity: 1;
  }
}

/* スマホサイズのときのスタイル */
@media (max-width: 768px) {

  .rim-announce-img img {
    height: 240px;
  }

  .rim-announce-add {
    /* width: 70%; */
    /* margin: 0 auto; */
    flex-direction: column;
    /* border: 1px solid red; */
  }
  
  .rim-address {
    padding-bottom: 2.5rem;
    /* text-align: left; */
    /* background-color: pink; */
  }
  
  .bg {
    text-align: center;
  }
}

@media (max-width: 480px) {

  #rim {
    height: 100%;
  }

    .rim-announce-img {
    height: 150px;
  }


  .rim-address {
    width: 100%;
    font-size: 1.4rem;
    /* border: 1px solid red; */
  }
  
  .rim-announce-add {
    margin-top: 5rem;
  }
  
  .rim-announce-messages {
    width: 100%;
    font-size: 1.4rem;
    padding-top: 3rem;
    /* margin: 0 auto; */
    /* border: 1px solid blue; */
  }

  .address-right {
    max-width: 100%;
  }
}


/* ----------------------------------
rim.ここまで
---------------------------------- */


/*======================
404 page
=======================*/

body {
  position: relative;
}

.page-404 img {
  height: 100vh;
  object-fit: cover;
  opacity: 0.5;
}

.text-center {
  text-align: center;
  color: #5A370B;
}

.text-center01 {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
}

.text-center02 {
  position: absolute;
  top: 400px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.link-404 {
  display: inline-block;
}

.home-btn .home-btn-wrap {
  position: relative;
  display: inline-block;
  margin-top: 4rem;
}
.home-btn .home-btn-wrap.home-animate::before {
  animation: bg 3s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  background: linear-gradient(to right, #5a370b 0%,#6f4715 50%,#9b6b31 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  /* border: 1px solid red; */
}

.home-btn .home-btn-wrap .home-animate-btn {
  color: #fff;
  display: inline-block;
  /* font-size: 36px; */
  font-weight: bold;
  padding: 5px 15px;
  position: relative;
  z-index: 1;
}

@keyframes home-btn {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }

  30% {
    transform: scaleX(1) translateX(0);
  }

  100% {
    transform: scaleX(1) translateX(0);
  }

  30%, 100% {
    opacity: 1;
  }
}

.page-404-PC {
  display: block;
}


.page-404-SP {
  display: none;
}

/* スマホサイズのときのスタイル */
@media (max-width: 480px) {
    .page-404-PC {
    display: none;
  }

  .page-404-SP {
    display: block;
  }
}


/* ----------------------------------
access
---------------------------------- */

#access {
  height: 100vh;
  margin-bottom: -1px;
  background-color: #958e8b;
  overflow: hidden;
}

.access {
  /* display: flex; */
  margin-top: 3rem;
}

.address {
  display: flex;
  width: 70%;
  margin: 0 auto;
  justify-content: space-between;
  width: 90%;
  margin: 0 0 0 10%;
  /* border: 1px solid red; */
}

.address-left {
  /* padding-left: 5%; */
}

.address-left dl {
  /* position: absolute; */
  /* top: 55rem; */
  /* left: 25rem; */
  color: #5A370B;
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.8rem 2.4rem; /* 行間・列間の余白 */
  padding-top: 15rem;
}

.address-right {
  width: 60%;
  /* border: 1px solid pink; */
  /* padding: 5% 0 5% 10%; */
  /* margin: 0 0 0 20%; */
}

.address-right img {
  /* height: 80vh; */
  object-fit: cover;
}

/* スマホサイズのときのスタイル */
@media (max-width: 768px) {
  #access {
    height: 100%;
  }

  .address {
    width: 70%;
    flex-direction: column-reverse;
    margin: 0 auto;
    /* border: 1px solid red; */
  }

  .map iframe {
    width: 100%;
    height: auto;
    border: 1px solid red;
  }


  .map {
    /* position: absolute; */
    width: 100%;
    top: 50;
  }

    .address-left dl {
    padding-top: 3rem;
  }

  .address-right {
    width: 100%;
    margin: 0 auto;
  }

  .about-bg img {
    height: 20%;
  }

  .access-bg {
    /* position: absolute; */
    /* top: 0; */
    /* right: 3rem; */
    width: 55%;
    /* padding: 5% 0 5% 10%; */
  }
}

@media (max-width: 480px) {
  .address-left {
    margin: 0 auto;
    padding: 0;
  }

  .address-left dl {
    font-size: 1.4rem;
  }

  .map iframe {
    width: 100%;
    height: 50%;
  }
  
  .map {
    width: 100%;
    height: auto;
  }

  .access-bg {
    /* display: block; */
    /* position: absolute; */
    width: 100%;
    /* top: 0; */
    /* left: 10; */
    margin: 0 auto;
  }
  
  .access-bg img {
    widows: 100%;
    height: 30%;
  }
}

/* ----------------------------------
accessここまで
---------------------------------- */


/* ----------------------------------
footer
---------------------------------- */

.main-footer {
  /* height: 20vh; */
  margin: 0;
  padding: 2rem 0 1rem;
  text-align: center;
  background-color: #958e8b;
  /* border: 1px solid red; */
}

.single-gallery footer,
.single-information footer {
  /* position: absolute; */
  /* bottom: 0; */
  width: 100%;
  padding-top: 5rem;
  text-align: center;
  font-size: 12px;
  background-color: white;
}


/* ----------------------------------
footerここまで
---------------------------------- */
