@charset "UTF-8";

html,body {
  font-size: 100%;
  color: #fff;
  font-family: "ah-hakushu-sutra-typeface", sans-serif;
  font-style: normal;
  font-weight: 200;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

li {
  list-style: none;
}

a {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
}

.text-h {
  font-size: 3.2rem;
}

.text-h span {
  opacity: 0;
  filter: blur(4px);
  display: inline-block;
  transition: opacity 0.6s, filter 0.6s;
}
.text-h span.visible {
  opacity: 1;
  filter: blur(0);
}

.text-p {
 font-size: 2rem;
 line-height: 1.5;
}




/* =================================================header */
#header .logo {
  position: absolute;
  width: 10%;
  margin-top: 1%;
  margin-left: 2%;
  z-index: 1000;
}

/* ハンバーガーメニューの三本線 */
#toggle {
  position: fixed;
  top: 3%;
  right: 2%;
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1000;
}

#toggle span {
  display: block;
  height: 4px;
  width: 100%;
  background: #000000;
  border-radius: 2px;
  transition: 0.3s;
}

#nav-menu {
  position: fixed;
  top: 0;
  right: -100vw;
  width: 35vw;
  height: 100vw;
  background: rgba(0, 0, 0, 0.95);
  transition: right 0.4s;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

#nav-menu.active {
  right: 0;
}

#nav-menu .navi {
  position: absolute;
  top: 10%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
}

#nav-menu .sns {
  position: absolute;
  top: 30%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 0;
}

#nav-menu li {
  margin: 24px 0;
}

#nav-menu a {
  color: #fff;
  font-size: 2rem;
  text-decoration: none;
}

#navi-menu img {
  width: 90%;
  max-width: 80%;

}
/* =============================================-ファーストビュー */
/* ...既存のコード... */

/* ファーストビュー画像スライダー */
.first-view-ul {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.first-view-li {
  position: absolute;
  top: 0; left: 0;
  width: 100%; 
  height: 100vh;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.first-view-li.active {
  opacity: 1;
  z-index: 1;
}

.first-view-li img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s linear;
}

.first-view-li.active img {
  transform: scale(1.1);
}

/* ===============================================background */
#background-img {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  pointer-events: none;
  z-index: -10; /* ここを-10に変更 */
  transition: opacity 2s;
  display: flex;
  justify-content: center;
  align-items: center;
  filter: brightness(0.5);
}

#background-img.visible {
  opacity: 1;
}


/* ==================================================news */
#news {
  position: relative;
  justify-content: center;
}

.news-dl {
  text-align: center;
  display: block;
  letter-spacing: 0.2em;
  font-size: 1.5rem;
  margin: 5em 6em;
}

.news-dl dt {
  text-align: center;
  letter-spacing: 0.3em;
  line-height: 1.5em;
  border-bottom: 1px solid #fff;
  font-size: 1.1em;
  padding-bottom: 4px;
}

#news .news-dl dd {
  line-height: 1.5em;
  border-bottom: 1px dotted #fff;
  text-align: center;
}

.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-top: 1em;
}

.btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #f59541; /* 下線の色はお好みで */
  transition: width 0.4s cubic-bezier(0.45, 0, 0.55, 1);
  transform: translateX(-50%);
}

.btn:hover::after {
  width: 100%;
}
/* ===================================================about */
.sec-title {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60vh;
  line-height: 1.3;
}

.sec-title h2 {
  writing-mode: vertical-rl;
  margin: 0;
  height: auto;
}

.text-area {
  text-align: center;
  line-height: 1.5;
}

.text-area .text {
  letter-spacing: 0.2em;
  line-height: 1.8;
}

/* .li-1, .li-2, .li-3 を自由な位置に配置 */
.about-list {
  position: relative;
  width: 100%;
  height: 100vh;
  margin-bottom: 15%;
}

.li-1, .li-2, .li-3 {
  position: absolute;
  width: 30%;
}

.li-1 {
  top: 10%;
  left: 10%;
}

.li-2 {
  top: 0%;
  left: 60%;
}

.li-3 {
  top: 0%;
  left: 27%;
}

.about-list li {
  position: relative;
}

.about-list li img {
  opacity: 0;
  transition: opacity 2s;
}

/* .fadein クラスが付いたときに表示 */
.about-list li img.fadein {
  opacity: 1;
}

.about-text {
  position: absolute;
  top: -4rem;
  left: 0;
  padding: 4px 8px;
  font-size: 1em;
  z-index: 2;
  white-space: nowrap;
  text-shadow: 2px 2px 6px rgba(0,0,0,1.2);
}

.area2 {
  margin-top: 15%;
}

/* =============================================================shop */
.shop-img {
  position: relative;
  width: 75%;
  height: 55vh; /* 必要に応じて調整 */
  overflow: hidden;
  margin: 0 auto;
  padding: 0;
}

.shop-img li {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  transition: opacity 2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

.shop-img li.active {
  opacity: 1;
  z-index: 1;
  transition: opacity 2s linear;
}

.shop-img li img {
  width: 100vw;
  height: 60vh;
  object-fit: cover;
  display: block;
}

.shop-text {
  text-align: center;
  margin-bottom: 15vh;
}

#shop .text-h {
  margin: 1em 0;
}
/* ==================================================slider */

.scroll-infinity {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.scroll-infinity_wrap {
  display: flex;
  width: max-content;
}

.scroll-infinity_list {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scroll-infinity_item {
  flex: 0 0 400px; /* 画像の横幅を指定 */
  height: 200px;
}

.scroll-infinity_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 左方向へのスクロールアニメーション */
.scroll-infinity_list-left {
  animation: scroll-left 60s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-2400px); /* 6枚 × 400px */
  }
}



/* ===================================================access */
#access .access-info {
  display: flex;
  gap: 32px; /* テキストと地図の間隔 */
  align-items: flex-start;
  margin-top: 24px;
}

#access .access-text {
  flex: 1;
}

#access .access-map {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  margin: auto 10% auto 20%;
}

.sec-map {
  margin-top: 10%;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 500;
    border-top: 3px solid;
    border-bottom: 3px solid;
}

#access dl {
  font-size: 1.5rem;
  padding-bottom: 16px;
}

#access dl dt {
  font-weight: 700;
  margin-top: 3%;
}

#access dd {
  margin-left: 2.5em;
  margin-bottom: 5%;
  border-bottom: 1px solid #000;
}
/* ===================================================footer */
#footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 24px 0;
  font-size: 14px;
  margin-top: 40px;
  bottom: 0;
  width: 100%;
}

.sns-list {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 16px 0 0 0;
  padding: 0;
  justify-content: center;
}

small {
  font-size: 1.2rem;
}

#footer .name {
  margin-left: 1em;
  padding: 2%;
  color: cornsilk;
}
/* ===============================================レスポンシブ */
/* ============================================================= */
/* ============================================================= */
@media screen and (max-width: 1024px) {
  html, body {
    font-size: 1.5rem;
    width: 100vw;
    margin: 0;
    padding: 0;
    color: #000;
  }


body {
  background-image: url('img/bg/sora.jpg'); /* 画像パスは適宜変更 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}


#background-img {
  display: none;
}


.news-dl dt {
  font-size: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid #000;
}

.news-dl dd {
  font-size: 1.2rem;
  border-bottom: 1px dotted #000;
}

a {
  color: #000;
}

.text-p {
  margin: 0 2em;
  line-height: 1.5;
}
/* ===================================== */

   #header .logo {
    width: 30%;
    margin-top: 3%;
    margin-left: 3%;
  }

  #toggle {
    top: 5%;
    right: 3%;
    width: 80px;
    height: 48px;
  }

 #toggle span {
    background: #fff;
  }

  #nav-menu {
    height: 100%;
  }

  #nav-menu .sns {
    top: 55%;
  }

  .first-view {
    width: 100vw;
    object-fit: cover;
    display: block;
  }

  .first-view-ul {
    height: 40vh;
  }
  .first-view-li img {
    width: 100vw;
    height: 40vh;
  }

  .sec-title h2 {
    font-size: 1.4em;
    height: 30vh;
    margin-right: 0;
    writing-mode: horizontal-tb;
  }

  .text {
    font-size: 0.9rem;
  }

  .shop-img {
    width: 100vw;
  }



.about-list {
  height: 55vh;
  margin-top: 30vh;
}

/* ==================================================
============================================--shop */
#shop .text-h {
  margin: 1em 0;
}


/* =================================================== 
========================slider====================-==*/

  .slide img {
    width: 120%;
  }


  #access .access-info {
    flex-direction: column;      /* 縦並びに変更 */
    gap: 16px;               
  }
  #access .access-map {
    max-width: 100%;             /* 地図を幅いっぱいに */
    min-width: 0;
    width: 80vw;
    margin: 0 auto;
  }
  #access .access-text {
    width: 100%;                 /* テキストも幅いっぱいに */
  }
  #access dl {
    padding-bottom: 8px;
  }

  #access dl dt {
    border: none !important;
  }

  small {
    font-size: 1.8rem;
  }

  #footer .name {
    font-size: 1.8rem;
    padding: 2%;
    color: cornsilk;
  }

  #footer .sns-list {
    font-size: 2rem;
  }

  #footer .sns-list a {
    color: #fff;
}
}


@media screen and (max-width: 640px) {
  html, body {
    font-size: 0.9rem;
    width: 100vw;
    margin: 0;
    padding: 0;
    color: #000;
  }
body {
  background-image: url('img/bg/sora.jpg'); /* 画像パスは適宜変更 */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  background-blend-mode: lighten;
}

#background-img {
  display: none;
}

a {
  color: #000;
}
.text-h {
  font-size: 1.2rem;
}

.text-p {
  font-size: 0.8rem;
  line-height: 1.6;
  padding: 2em;
}

#news .news-dl {
  padding: 3%;
  margin: 0;
}

#news .news-dl dt {
  font-weight: 500;
  border-bottom: 1px solid #000;
  font-size: 0.8em;
  line-height: 1.8em;
}
#news .news-dl dd {
  border-bottom: 1px dotted #000;
  font-size: 0.7em;
  line-height: 1.8;
}

#news .btn {
  font-size: 0.7em;
}

/* ====================================header */
  #header .logo {
    width: 30%;
    margin-top: 3%;
    margin-left: 3%;
  }

  #toggle span {
    background: #fff;
  }

  #nav-menu .nav {
    font-size: 0.8em;
  }

  #nav-menu {
    height: 100%;
    width: 70vw;
  }

  #nav-menu .sns {
    top: 55%;
  }

  #toggle {
    top: 3%;
    right: 5%;
    width: 32px;
    height: 24px;
  }

  .first-view {
    width: 100vw;
    object-fit: cover;
    display: block;
  }

  .first-view-ul {
    height: 40vh;
  }
  .first-view-li img {
    width: 100vw;
    height: 40vh;
  }

  /* .sec-title .text-h {
    font-size: 1.4em;
    height: 30vh;
    margin-right: 60%;
    writing-mode: horizontal-tb;
  } */
/* =================================--about */
.about-list li {
  position: static !important;
  left: auto !important;
  top: auto !important;
  width: 100%;
  margin: 16px 0;
}

.about-list {
  display: contents;
  flex-direction: column;   /* 縦並びにする */
  align-items: center;      /* 中央揃えにする */
  margin-top: 20%;
}

.about-list img {
  display: flex;
  margin: 26px 0;           /* 上下の間隔を調整 */
}

/* ======================================-shop */
  .shop-img {
    width: 100vw;
    height: 24vh;
  }
  .shop-img li img {
    width: 100vw;
    height: 24vh;
  }

  .shop-text {
    text-align: center;
    margin: 1em;
  }

  #shop .text-h {
    text-align: center;
  }
/* ========================================access */


#access-text dl {
  text-align: left;
}

#access-text dt {
  font-size: 1.1rem !important;
}

#access-text dd {
  font-size: 0.9rem !important;
}

#access .access-info {
  text-align: left;
  flex-direction: column;      /* 縦並びに変更 */
  gap: 16px;                   /* 間隔を調整 */
  }
  #access .access-map {
    max-width: 100%;             /* 地図を幅いっぱいに */
    min-width: 0;
  }
  #access .access-text {
    width: 100%;                 /* テキストも幅いっぱいに */
  }
  #access dt {
    padding-bottom: 8px;         /* 下余白を調整 */
  }
  #access iframe {
    height: 200px;               /* 地図の高さを調整（お好みで） */
  }
/* ========================================slider */
  #slider {
    height: 350px;
  }
  .custom-slider-free {
    height: 100%;
    width: 100vw;
  }
  .slide {
    width: 60vw;
    height: 100%;
  }

  .slide-text {
    position: absolute;
    top: 8px;
    left: 8px;
    writing-mode: vertical-rl;
    /* background: rgba(0, 0, 0, 0.4); */
    color: #000000;
    padding: 8px 4px;
  }

  #footer {
    font-size: 0.7rem;
    padding: 16px 0;
    margin-top: 24px;
  }

  #footer .sns-list {
    flex-direction: column;
  }

  #footer .sns-list a {
    font-size: 1em;
    color: #fff;
  }

  small {
    display: flex;
    flex-direction: column;
  }

  #footer .name {
    font-size: 1.2em;
    padding: 2%;
    color: cornsilk;
  }
}