@charset "UTF-8";
/*メモ：各パーツをコンパイルするときはここを保存*/
.wrapper {
  position: relative;
  width: 100vw; /*後で変えるかも*/
  height: 100vh;
}

.pc-content {
  display: none !important;
}

.content__scroll {
  width: 100%;
  margin: auto;
  overflow: hidden;
  background-color: #222454;
  position: relative;
  z-index: 2;
}

.content__left {
  display: none;
}

.content__right {
  display: none;
}

/*-------------------------------------
PCのみ上書き
-------------------------------------*/
@media screen and (min-width: 768px) {
  .pc-content {
    display: block !important;
  }
  .content__scroll {
    width: 100%;
    max-width: 30vw;
    max-width: 420px;
    margin: auto;
    border-left: solid 1px #fff;
    border-right: solid 1px #fff;
    overflow: hidden;
    background-color: #222454;
    position: relative;
    z-index: 2;
  }
  .content__left {
    width: 34.7%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-image: url("../images/common/bg-left__recordplayer.png");
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
  }
  .content__left > .inner {
    height: 100%;
  }
  .content__right {
    width: 34.7%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-image: url("../images/common/bg-right__records.png");
    background-size: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
  }
  .content__right > .inner {
    height: 100%;
  }
}
/*----------------------------------------
共通設定
-----------------------------------------*/
html {
  font-size: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Shippori Mincho", sans-serif;
}

body {
  background-color: #222454;
  /* サイト全体のフォント指定：游ゴシック優先 → ヒラギノ角ゴシック → 基本フォント群 → 最後に sans-serif */
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic", "Meiryo", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

section {
  position: relative;
}

/*---------------------------------------
ヘルパークラス
---------------------------------------*/
.hp_mincho {
  font-family: "Shippori Mincho", serif;
}

.hp_small {
  font-size: 0.75em;
}

.hp_symbol {
  display: none !important;
}

/*-------------------------------------
ボタン(共通)
--------------------------------------*/
.btn {
  display: block;
  border: solid 0.5px #fff;
  text-decoration: none;
  box-shadow: 4px 4px 0 0 #fff;
  transition: 0.5s all;
}
.btn:hover {
  transition: 0.5s all;
  transform: translateY(4px);
  box-shadow: none;
}
.btn:focus {
  transition: 0.5s all;
  transform: translateY(4px);
  box-shadow: none;
}
.btn > .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
}
.btn .text {
  width: auto;
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  line-height: 1.2;
  flex: 0 1 auto;
}
.btn .icon {
  width: 2%;
  flex: 0 1 auto;
}

/*---------------------------------------
ヘッダー
-----------------------------------------*/
.header {
  width: 100%;
  min-height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header > .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: relative;
}
.header .logoBox {
  width: 100%;
  max-width: 84px;
  position: relative;
  z-index: 1001;
}
.header .navBox {
  width: 10%;
  max-width: 56px;
  padding: 0;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
}
.header .navBtn > .text {
  display: block;
  color: #fff;
  font-weight: normal;
  font-size: clamp(8px, 2.5vw, 10px);
  letter-spacing: 0.06rem;
}
.header .navListBox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}
.header .navListBox.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.header .navListBox.is-closing {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
}
.header .globalNav {
  display: block;
  width: 100%;
  padding: 6rem 1.5rem 0;
  position: relative;
  z-index: 1000;
}
.header .globalNav .navList > .item {
  border-bottom: solid 1px #fff;
}
.header .globalNav .navList > .item:nth-of-type(1) {
  border-top: solid 1px #fff;
}
.header .globalNav .navList > .item > a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
}
.header .globalNav .navList > .item .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.07rem;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
.header .navBg {
  display: block;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
}
.header .navBg.is-active {
  pointer-events: auto;
}

/*-------------------------------------
セクション直下の見出し
--------------------------------------*/
.headingBox {
  text-align: center;
  margin-bottom: 2.5rem;
}
.headingBox > .heading {
  font-size: clamp(21px, 5.5vw, 24px);
  font-weight: bold;
  color: #fff;
}
.headingBox > .heading > .ttl {
  display: block;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
.headingBox > .heading > .subttl {
  display: block;
  font-weight: normal;
  font-size: 0.8em;
}

/*-------------------------------------
テキストのリスト(共通)
--------------------------------------*/
.textListBox {
  margin-bottom: 3.5rem;
}
.textListBox > .ttlBox {
  border-bottom: solid 1px #fff;
}
.textListBox > .ttlBox .ttl {
  color: #fff;
  font-size: clamp(16px, 4.1vw, 18px);
  font-weight: normal;
}
.textListBox .textList > .item {
  border-bottom: solid 0.5px #fff;
  padding: 1rem 0;
  color: #fff;
  font-size: clamp(16px, 4.1vw, 18px);
}
.textListBox .textList > .item > .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
.textListBox .textList > .item > .inner > .ttl {
  min-width: 76px;
  color: #fff;
  font-size: clamp(16px, 4.1vw, 18px);
}
.textListBox .textList > .item > .inner .text {
  color: #fff;
  font-size: clamp(16px, 4.1vw, 18px);
}

/*-------------------------------------
画像のリスト(共通2カラム)
--------------------------------------*/
.imgListBox {
  margin-bottom: 3.5rem;
}
.imgListBox > .ttlBox {
  border-bottom: solid 1px #fff;
  margin-bottom: 1rem;
}
.imgListBox > .ttlBox .ttl {
  color: #fff;
  font-size: clamp(16px, 4.1vw, 18px);
  font-weight: normal;
}
.imgListBox .imgListWrap .imgList {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.imgListBox .imgListWrap .imgList > .item {
  width: 47%;
  flex: 0 1 auto;
}
.imgListBox .imgListWrap .imgList .thumbBox {
  margin-bottom: 0.5rem;
}
.imgListBox .imgListWrap .imgList .textBox {
  color: #fff;
  font-size: clamp(16px, 4.1vw, 18px);
}

/*----------------------------------------------
複数ページでの汎用パーツ(優先度による上書きあり)
 ----------------------------------------------*/
.mapBox {
  margin: 2rem auto;
}
.mapBox iframe {
  display: block;
  width: 100%;
}

.addressBox > .text {
  color: #fff;
  font-size: clamp(8px, 2vw, 10px);
  letter-spacing: 0.06rem;
}

.rootBox {
  margin: 1rem auto;
}
.rootBox > .text {
  color: #fff;
  font-size: clamp(8px, 2vw, 10px);
}

/*見出しと画像のセット(紹介する形のテンプレ)*/
.showcaseBox {
  margin-bottom: 2rem;
}
.showcaseBox .ttlBox {
  text-align: center;
  margin-bottom: 0.5rem;
}
.showcaseBox .ttl {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.06rem;
}
.showcaseBox > .inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}
.showcaseBox > .inner.inner__flexwrap {
  flex-wrap: wrap;
}
.showcaseBox > .inner .imgBox {
  width: 100%;
  flex: 0 1 auto;
}
.showcaseBox > .inner .imgBox.imgBox__half {
  width: 48%;
}
.showcaseBox > .inner .imgBox.imgBox__kanban {
  width: 70%;
}
.showcaseBox > .inner .imgBox.imgBox__entrance {
  width: 61%;
}
.showcaseBox .leadBox {
  margin: 1rem auto;
}
.showcaseBox .leadBox .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}

/*リスト内に一行以外のテキストが入りそうな左右の表*/
.infoList {
  margin-bottom: 2rem;
}
.infoList > .item {
  border-bottom: solid 1px #fff;
  padding: 1rem 0;
}
.infoList > .item > .inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}
.infoList > .item .ttlBox {
  width: 30%;
  max-width: 74px;
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.infoList > .item .hourBox {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.infoList > .item .hourBox:nth-of-type(n + 2) {
  margin-top: 1rem;
}
.infoList > .item .hourBox > .ttl {
  width: 40%;
  max-width: 90px;
  flex: 0 1 auto;
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.infoList > .item .contBox {
  width: 100%;
  flex: 0 1 auto;
}
.infoList > .item .contBox .textBox {
  width: 100%;
  flex: 0 1 auto;
}
.infoList > .item .contBox .text {
  display: block;
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.infoList > .item .contBox .text:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.noteBox {
  border: solid 0.5px #fff;
  padding: 1rem;
}
.noteBox .ttlBox .ttl {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  margin-bottom: 1rem;
}
.noteBox .noteList > .item {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  text-indent: -0.8rem;
  padding-left: 0.8rem;
}

/*----------------------------------------------
 footer
 ----------------------------------------------*/
.footer {
  background-color: #0c0c0c;
  position: relative;
}
.footer > .inner {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 0rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  margin: 0 auto;
}
.footer .upperBox {
  padding: 1.2rem 0;
}
.footer .upperBox .imgBox {
  width: 50%;
  max-width: 100px;
  margin: 0 auto;
}
.footer .navListBox {
  margin: 2rem auto;
}
.footer .navList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer .navList > .item {
  width: auto;
  flex: 0 1 auto;
  text-align: center;
}
.footer .navList > .item a {
  text-decoration: none;
}
.footer .navList > .item .text {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.06rem;
  font-family: "Shippori Mincho", serif;
}
.footer .lowerBox {
  padding: 1.2rem 0;
  border-top: solid 0.5px #fff;
}
.footer .shopNameBox {
  margin-bottom: 0.5rem;
}
.footer .shopNameBox > .text {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.06rem;
}
.footer .shopNameBox > .text .mapLink {
  display: inline-block;
  vertical-align: middle;
  width: 5%;
  margin-left: 0.1rem;
}
.footer .addressBox > .text {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.06rem;
}
.footer .snsBox {
  padding: 1.2rem 0;
  border-top: solid 0.5px #fff;
}
.footer .snsBoxList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .snsBoxList > .item {
  width: auto;
  max-width: 40px;
  flex: 0 1 auto;
}
.footer .copyrightBox {
  text-align: center;
  padding: 1rem 0;
}
.footer .copyrightBox > .text {
  color: #fff;
  font-size: clamp(8px, 2vw, 10px);
  letter-spacing: 0.06rem;
}
.footer .decoBox {
  width: 100%;
  position: absolute;
  top: -17px;
  left: 0;
  z-index: 2;
}

/*----------------------------------------------
 PC版右側エリア
 ----------------------------------------------*/
.content__right > .inner {
  width: 60%;
  max-width: 282px;
  height: 100vh;
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.content__right .navListBox {
  margin-bottom: 1.5rem;
}
.content__right .globalNav {
  display: block;
  width: 100%;
  position: relative;
}
.content__right .globalNav .navList > .item {
  width: 100%;
  border-top: solid 1px #fff;
}
.content__right .globalNav .navList > .item:last-of-type {
  border-bottom: solid 1px #fff;
}
.content__right .globalNav .navList > .item > a {
  display: block;
  padding: 0.5rem 0;
  text-decoration: none;
}
.content__right .globalNav .navList > .item .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.07rem;
  font-family: "Shippori Mincho", serif;
  font-weight: normal;
  letter-spacing: 0.1rem;
}
.content__right .logoBox {
  width: 100%;
  max-width: 155px;
  margin: 0 auto 2.6rem;
}
.content__right .lowerBox {
  padding: 1.2rem 0;
  border-top: solid 0.5px #fff;
}
.content__right .shopNameBox {
  margin-bottom: 0.5rem;
}
.content__right .shopNameBox > .text {
  color: #fff;
  font-size: clamp(8px, 2vw, 10px);
  letter-spacing: 0.06rem;
}
.content__right .shopNameBox > .text .mapLink {
  display: inline-block;
  vertical-align: middle;
  width: 5%;
  margin-left: 0.1rem;
}
.content__right .addressBox > .text {
  color: #fff;
  font-size: clamp(8px, 2vw, 10px);
  letter-spacing: 0.06rem;
}
.content__right .rootBox {
  margin: 1rem auto;
}
.content__right .rootBox > .text {
  color: #fff;
  font-size: clamp(8px, 2vw, 10px);
}
.content__right .snsBox {
  padding: 1.2rem 0;
}
.content__right .snsBoxList {
  display: flex;
  justify-content: center;
  align-items: center;
}
.content__right .snsBoxList > .item {
  width: auto;
  max-width: 40px;
  flex: 0 1 auto;
}

/*----------------------------------------------
 イコイライザパーツ(decoration)
 ----------------------------------------------*/
#decoline path {
  opacity: 1;
}

#decoline path:not(.static-line),
#scrollLine path {
  animation: waveMotion 1.5s ease-in-out infinite;
}

#decoline path:nth-child(odd),
#scrollLine path:nth-child(odd) {
  animation-delay: 0.3s;
}

#decoline path:nth-child(3n),
#scrollLine path:nth-child(3n) {
  animation-delay: 0.6s;
}

#decoline path:nth-child(4n),
#scrollLine path:nth-child(4n) {
  animation-delay: 0.9s;
}

#decoline path:last-child {
  opacity: 1;
}

/* ==== 波打つアニメーション ==== */
@keyframes waveMotion {
  0%, 100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(1.2);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  #decoline path:not(.static-line) {
    animation: none !important;
  }
}
/*----------------------------------------------
 PC（>=768px）ではナビを表示、メニューボタンは隠す 
 ----------------------------------------------*/
@media screen and (min-width: 768px) {
  .header {
    display: none;
  }
  .navBox {
    display: none !important;
  }
} /*media query end*/
[class^=sec_] > .inner {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  margin: 0 auto;
}

/*---------------------------------
FV
---------------------------------*/
.fv {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 9rem 0;
  background-image: url("../images/top/bg-fv.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
.fv > .inner {
  width: 75%;
  margin: 0 auto;
}
.fv > .inner .fvContBox {
  text-align: center;
}
.fv > .inner .fvContBox .txt {
  color: #fff;
  font-weight: normal;
  font-size: clamp(16px, 6vw, 24px);
  letter-spacing: 0.1em;
}
.fv > .inner .fvContBox .txt:nth-of-type(1) {
  letter-spacing: 0.59rem;
}
.fv > .inner .fvContBox .imgBox {
  margin: 0.4rem auto;
}
.fv > .inner .fvContBox .imgBox img {
  aspect-ratio: 1/1;
}
.fv .sepLineBox {
  position: absolute;
  bottom: 1.313rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 16%;
  z-index: 1;
}

/*---------------------------
about
---------------------------*/
.sec_about {
  position: relative;
}
.sec_about::after {
  display: block;
  content: "";
  width: 100%;
  height: 40%;
  background-image: url("../images/top/bg-record.jpg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
.sec_about > .inner .heading .txt {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.2rem;
  font-size: clamp(16px, 6vw, 21px);
}
.sec_about .leadBox {
  position: relative;
  margin-bottom: 3rem;
}
.sec_about .leadBox::after {
  display: block;
  content: "";
  width: 70%;
  height: 160%;
  background-image: url("../images/top/bg-onair.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  right: -1.5rem;
  z-index: 1;
}
.sec_about .textBox .text {
  color: #fff;
  font-size: clamp(12px, 3.2vw, 14px);
  letter-spacing: 0.06rem;
  line-height: 2.1;
  font-family: "Shippori Mincho", serif;
  text-shadow: 0 0 5px #222454;
  margin-bottom: 1rem;
}

/*---------------------------
shopPhoto
---------------------------*/
.sec_shopPhoto {
  position: relative;
}
.sec_shopPhoto > .inner {
  padding: 0;
}
.sec_shopPhoto .photoList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}
.sec_shopPhoto .photoList > .item {
  width: 50%;
  flex: 0 1 auto;
}
.sec_shopPhoto .sepLineBox {
  width: 100%;
  position: absolute;
  top: -1rem;
  left: 0;
  z-index: 1;
}

/*---------------------------
information
---------------------------*/
.sec_information {
  position: relative;
}
.sec_information::before {
  display: block;
  content: "";
  width: 80%;
  height: 100%;
  background-image: url("../images/top/bg-turntable.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

/*---------------------------
price
---------------------------*/
.sec_price {
  background-color: #0c0c0c;
  position: relative;
  z-index: 1;
}
.sec_price::before {
  display: block;
  content: "";
  width: 70%;
  height: 100%;
  background-image: url("../images/top/bg-drink.png");
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 2rem;
  right: -0.5rem;
  z-index: -1;
}
.sec_price .chargeBox {
  margin-bottom: 2.5rem;
  text-align: center;
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.sec_price .textList > .item > .inner {
  justify-content: space-between;
}

/*---------------------------
gallery(TOP)
---------------------------*/
.sec_gallery {
  z-index: 1;
}
.sec_gallery::after {
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background-image: url("../images/top/bg-gallery.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.sec_gallery .galleryImgBox {
  width: 110vw;
  height: 100%;
  max-height: 220px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
}
.sec_gallery .leadBox > .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.sec_gallery .btnBox {
  width: 80%;
  margin: 2rem auto;
}

/*---------------------------
ACCESS(map.top)
---------------------------*/
.sec_access {
  background-color: #0c0c0c;
}
.sec_access .leadBox {
  margin: 1rem auto;
}
.sec_access .leadBox > .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.sec_access .addressBox {
  margin: 1em auto;
}
.sec_access .addressBox > .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  letter-spacing: 0.06rem;
}
.sec_access .rootBox {
  margin: 1rem auto;
}
.sec_access .rootBox > .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.sec_access .accessImgBox {
  width: 80%;
  margin: 1.313rem auto;
}
.sec_access .accessImgBox > .inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0.5rem;
}
.sec_access .accessImgBox .imgBox:nth-of-type(2) {
  margin-top: 4rem;
}
.sec_access .leadBox > .text {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
}
.sec_access .btnBox {
  width: 80%;
  margin: 2rem auto;
}

/*----------------------------------------------
 PC（>=768px）ではナビを表示、メニューボタンは隠す 
 ----------------------------------------------*/
@media screen and (min-width: 768px) {
  .fv > .inner {
    width: 70%;
  }
  .sec_about > .inner {
    padding-top: 8rem;
  }
  .sec_about .leadBox::after {
    width: 70%;
    height: 190%;
  }
} /*media query end*/
/**/
/*---------------------------------
下層FV(共通)
---------------------------------*/
.fv_lower > .inner {
  margin-top: 5rem;
  position: relative;
}
.fv_lower .headingBox.headingBox__center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
  z-index: 1;
}

/*---------------------------------
ACCESS(店舗情報)
---------------------------------*/
.lower_access > .inner .leadBox.leadBox__first {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  margin-bottom: 4rem;
}
.lower_access .addressBox {
  display: block;
  margin-bottom: 1rem;
}
.lower_access .addressBox > .text {
  font-size: clamp(14px, 3.6vw, 16px);
}
.lower_access .rootBox {
  display: block;
  margin-bottom: 1rem;
}
.lower_access .rootBox > .text {
  font-size: clamp(14px, 3.6vw, 16px);
}

/*---------------------------------
Gallery(貸しギャラリー)
---------------------------------*/
.lower_gallery > .inner .leadBox.leadBox__first {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  margin-bottom: 4rem;
}
.lower_gallery .infoList > .item .hourBox > .ttl {
  width: 45%;
}
.lower_gallery .btnBox {
  margin: 4rem auto;
}
.lower_gallery .addressBox {
  display: block;
  margin-bottom: 1rem;
}
.lower_gallery .addressBox > .text {
  font-size: clamp(14px, 3.6vw, 16px);
}
.lower_gallery .noteBox {
  margin-top: 1rem;
  border: dotted 2px rgba(255, 255, 255, 0.5);
}
.lower_gallery .noteBox.noteBox__border0 {
  border-style: none;
  padding: 0;
}
.lower_gallery .noteBox .noteList > .item {
  font-size: clamp(12px, 3.2vw, 14px);
}

/*---------------------------------
404ページ
---------------------------------*/
.sec_notfound > .inner .leadBox.leadBox__first {
  color: #fff;
  font-size: clamp(14px, 3.6vw, 16px);
  margin-bottom: 4rem;
}
.sec_notfound .btnBox {
  margin: 4rem auto;
}

/**//*# sourceMappingURL=main.css.map */