/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}
 
body {
  font-family: "Noto Sans JP", sans-serif;/*フォントの指定*/
  line-height: 1.4;/*行間の指定*/
  margin: 0;
  padding: 0;
  color: #333;/*サイトのデフォルトとなる文字の色を指定*/
}
 
/*見出しを全て太字で表示 + 文字色を黒に*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}
 
img {
  max-width: 100%;
  height: auto;
}

.sp{
  display: none;
}

.inner{
  margin: 0 12.9vw;
}

.bg-beige{
  background-color: #F3F1E9;
}

.bg-brown{
  background-color: #e3e1dc;
}

h2{
  font-size: 3.3vw;
  letter-spacing: 0.3vw;
  color: #635f5c;
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 300;
  font-style: normal;
  margin-bottom: 3.5vw;
  margin-left: 0.5vw;
}

.footerfixed{
  min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
  position: relative;/* ←相対位置 */
  padding-bottom: 20%; /* ←フッターの高さを指定 */
  box-sizing: border-box;
  /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
  background-color: #f3f1e9;
}

.footer{
  position: absolute;/* ←絶対位置 */
  bottom: 0;
  width: 100%;
}


@media(max-width:768px){
  .footerfixed{
    padding-bottom: 62.4%;
  }
  .inner{
    margin: 0 8.5vw;
  }

  h2{
    font-size: 5.1vw;
  }
  
  .pc{
    display: none !important;
  }
  .sp{
    display: block;
  }
}

/* header */

.pc-head{
  position: fixed;
  z-index: 2;
  top: 8%;
  right: 6%;
}

.pc-head nav ul{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5vw;
}

.pc-head nav ul li{
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
  font-size: 1.5vw;
}

.pc-head nav ul li a{
  font-family: "Hina Mincho", serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.2vw;
  color: #635f5c;
}

.pc-head nav ul li a:hover{
  opacity: 0.5;
}

@media(max-width:768px){
  .sp-head {
    position: sticky; /* headerを追従にする */
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #f3f1e9;
    z-index: 999;
  }
  .sp-head .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 3vw 6vw;
  }
  .sp-head .logo{
    padding-left: 2vw;
  }

  .sp-head .logo img{
    width: 36%;
  }
  
  /* ハンバーガーボタンのデザイン */
  .sp-head .drawer__button {
    position: relative;
    width: 14%;
    height: 9vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent; /* iOSのグレー反応を消す */
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  }
  /* ハンバーガーボタン内の線 */
  .sp-head .drawer__button > span {
    display: block;
    position: absolute;
    top: 3vw;
    left: 50%;
    width: 59%;
    height: 0.2vw;
    background-color: black;
    transform: translateX(-50%);
  }
  .sp-head .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .sp-head .drawer__button > span:nth-child(2) {
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
  }
  .sp-head .drawer__button > span:last-child {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  /* 展開時のデザイン */
  .sp-head .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #fff;
  }
  .sp-head .drawer__button.active > span:nth-child(2) {
    opacity: 0;
  }
  .sp-head .drawer__button.active > span:last-child {
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #fff;
  }
  /* メニューのデザイン */
  .sp-head .drawer__nav {
    position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
  }
  .sp-head .drawer__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .sp-head .drawer__nav__inner {
    position: relative;
    width: 80%;
    height: 100%;
    background-color: #A38A77;
    padding: 14vw 6.5vw 7vw;
    margin: 0 0 0 auto;
    overflow: scroll;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    opacity: 90%;
  }
  .sp-head .drawer__nav.active .drawer__nav__inner {
    transform: translateX(0);
  }
  .sp-head .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
  }
  .sp-head .drawer__nav__link {
    display: block;
    text-decoration: none;
    padding: 5vw 2vw;
    border-bottom: solid 1px #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .sp-head .drawer__nav__link .navi-title{
    font-family: "Hina Mincho", serif;
    font-style: normal;
    font-weight: lighter;
    letter-spacing: 0.3vw;
    font-size: 4vw;
    color: #fff;
  }

  .sp-head .drawer__nav__link .navi-link-icon{
    display: block;
    padding-right: 2vw;
    color: #fff;
    font-weight: 500;
    font-size: 3vw;
    transform: scale(0.8, 1);
  }
  
  /* ハンバーガーメニュー展開時、背景を固定 */
  body.active {
    height: 100%;
    overflow: hidden;
  }
}

/* mv */

#mv .mv-box{
  display: flex;
}

.mv-box .left-content{
  position: relative;
  width: 73%;
}

.mv-box .left-content img{
  width: 100%;
}

/* スクロールダウンの位置 */
.mv-box .left-content .scroll-bar{
  position: absolute;
  left: -1%;
  top: 65%;
  writing-mode: vertical-rl;
}

.mv-box .left-content .scroll-bar span{
  font-family: "Hina Mincho", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.1vw;
  color: #595757;
  font-size: 0.7vw;
}
/* 線のアニメーション部分 */
.mv-box .left-content .scroll-bar::before {
  animation: scroll 2s infinite;
  background-color: #595757;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 33%;
  margin: auto;
  position: absolute;
  width: 1px;
  z-index: 2;
}
/* 線の背景色 */
.mv-box .left-content .scroll-bar::after {
  background-color: #ccc;
  bottom: -115px;
  content: "";
  height: 100px;
  left: 33%;
  margin: auto;
  position: absolute;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

#mv .mv-box .right-content{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 5.7vw;
  width: 27%;
}

#mv .mv-box .right-content .h1-box{
  text-align: center;
  width: 60%;
}

#mv .mv-box .right-content .h1-box h1{
  text-align: center;
  margin-top: 1.3vw;
}

#mv .mv-box .right-content .h1-box img{
  width: 78%;
  margin: 0 auto;
  display: block;
}

#mv .mv-box .right-content .h1-box h1 img{
  width: 26%;
  margin: 0 auto;
}

#mv .mv-box .right-content span{
  width: 27%;
  margin-top: 6.6vw;
  padding-right: 1vw;
  font-size: 1.24vw;
  line-height: 2.1vw;
  letter-spacing: 0.25vw;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #635f5c;
}

@media(max-width:768px){
  #mv .inner{
    padding-top: 10vw;
    margin: 0;
  }
  .mv-box .left-content{
    width: 60%;
    position: static;
  }
  #mv .mv-box .right-content{
    padding-top: 0;
    width: 40%;
    display: block;
    position: relative;
  }
  #mv .mv-box .right-content .flex-inline{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #mv .mv-box .right-content .flex-inline .h1-box{
    width: 26%;
    margin-left: 6vw;
  }
  #mv .mv-box .right-content .flex-inline .h1-box h1{
    margin-top: 0;
  }
  #mv .mv-box .right-content .flex-inline .h1-box h1 img{
    width: 73%;
  }
  #mv .mv-box .right-content span{
    width: 41%;
    margin-top: 0;
    font-size: 3.1vw;  
    line-height: 5.5vw;
    letter-spacing: 0.6vw;
  }
   /* スクロールダウンの位置 */
   #mv .mv-box .right-content .scroll-bar{
    position: absolute;
    left: 35%;
    top: 88%;
    writing-mode: horizontal-tb;
  }

  #mv .mv-box .right-content .scroll-bar span{
    font-family: "Hina Mincho", serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.1vw;
    color: #595757;
    font-size: 2.3vw;
    writing-mode: horizontal-tb;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
  }
  /* 線のアニメーション部分 */
  #mv .mv-box .right-content .scroll-bar::before {
    animation: scroll 2s infinite;
    background-color: #595757;
    bottom: -5vw;
    content: "";
    right: 22.5vw;
    left: auto;
    height: 16vw;
    margin: auto;
    position: absolute;
    width: 1px;
    z-index: 2;
  }
  /* 線の背景色 */
  #mv .mv-box .right-content .scroll-bar::after {
    background-color: #ccc;
    bottom: -5vw;
    content: "";
    right: 22.5vw;
    left: auto;
    height: 16vw;
    margin: auto;
    position: absolute;
    width: 1px;
  }
  /* 線のアニメーション */
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }
  
}

/* news */

#news .inner{
  padding-top: 6.8vw;
}

#news .little-h2{
  margin-bottom: 1.4vw;
  color: #635f5c;
  font-size: 1.9vw;
  letter-spacing: 0.1vw;
  margin-left: 0;
}

#news .blog-list{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#news .blog-list li{
  width: 23%;
}

#news .blog-list li:nth-child(n+2){
  margin-left: 2vw;
}

#news .blog-list li a:hover{
  opacity: 0.7;
}

#news .blog-list li small{
  font-size: 1.4vw;
  letter-spacing: 0.1vw;
  color: #595757;
  font-weight: 300;
  margin-top: 0.6vw;
  display: block;
  font-family: 'Noto Serif JP', sans-serif;
}

#news .blog-list li .title{
  font-size: 1vw;
  line-height: 1.6vw;
  margin-top: 0.5vw;
  letter-spacing: 0.1vw;
  color: #595757;
  font-weight: 300;
}

#news .news-link{
  position: relative;
  height: 7vw;
}

#news .news-link a{
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  right: -0.2vw;
  top: 1.8vw;
}

#news .news-link a:hover{
  opacity: 0.7;
}

#news .news-link a .news-link-text{
  font-size: 1.1vw;
  font-weight: 500;
  padding-bottom: 0.6vw;
  padding-right: 4.5vw;
  display: block;
  border-bottom: 1px solid #595757;
}

#news .news-link a .news-link-icon{
  display: block;
  background-color: #595757;
  padding: 1vw;
}

#news .news-link a .news-link-icon img{
  width: 1vw;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media(max-width:768px){
  #news .inner{
    padding-top: 9.1vw;
  }
  #news .blog-list{
    display: block;
  }
  #news .little-h2{
    margin-bottom: 3.5vw;
    font-size: 5.2vw;
  }
  #news .blog-list li{
    width: 100%;
    border-top: 1px solid #888888;
    padding: 2vw 0;
  }
  #news .blog-list li:last-child{
    border-bottom: 1px solid #888888;
  }
  #news .blog-list li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #news .blog-list li a img{
    width: 30%;
    display: block;
  }
  #news .blog-list li a .txt{
    width: 70%;
    padding-left: 5.5vw;
  }
  #news .blog-list li small{
    font-size: 2.8vw;
    letter-spacing: 0.2vw;
    padding-bottom: 1vw;
    font-weight: 200;
  }
  #news .blog-list li .title{
    font-size: 3.5vw;
    line-height: 5vw;
    margin-top: 0vw;
    font-weight: 100;
  }
  #news .news-link{
    height: 13.5vw;
  }
  #news .news-link a{
    top: 6vw;
  }
  #news .news-link a .news-link-text{
    font-size: 3.1vw;
    padding-bottom: 1.5vw;
    padding-right: 7.2vw;
  }
  #news .news-link a .news-link-icon{
    padding: 2.5vw;
  }
  #news .news-link a .news-link-icon img{
    width: 2.5vw;
  }
  #news .blog-list li:nth-child(n+2){
    margin-left: 0;
  }
}

/* 概要 */

#summary .top-flex{
  display: flex;
  padding-top: 3.4vw;
}

#summary .top-flex .right-summary{
  width: 28%;
  padding-left: 1vw;
}

#summary .top-flex .right-summary strong{
  width: 100%;
}

#summary .top-flex .right-summary strong img{
  display: block;
  width: 75%;
}

#summary .top-flex .left-summary{
  width: 72%;
  margin-top: -0.5vw;
}

#summary .top-flex .left-summary p{
  padding-bottom: 2.7vw;
  font-size: 1.1vw;
  line-height: 2vw;
  letter-spacing: 0.15vw;
  color: #635f5c;
  font-weight: 400;
}

#summary .top-flex .left-summary img{
  display: block;
  width: 80%;
}

#summary .summary-images{
  width: 100%;
  position: relative;
  height: 40.5vw;
}

#summary .summary-images .left-images{
  position: absolute;
  display: block;
  width: 36%;
  top: 0.8vw;
  left: 0.8vw;
}

#summary .summary-images .right-images{
  position: absolute;
  display: block;
  width: 61.5%;
  top: 4vw;
  right: 0;
}

@media(max-width:768px){
  #summary .inner{
    margin: 0;
  }
  #summary .top-flex{
    display: block;
    padding-top: 9.5vw;
  }
  #summary .top-flex .right-summary{
    width: 100%;
  }
  #summary .top-flex .right-summary strong img{
    width: 24%;
    margin: 0 auto;
  }
  #summary .top-flex .left-summary{
    width: 100%;
    margin-top: 7vw;
  }
  #summary .top-flex .left-summary p{
    width: 85%;
    margin: 0 auto;
    font-size: 3.4vw;
    line-height: 5.8vw;
    padding-bottom: 5vw;
    font-weight: 300;
  }
  #summary .top-flex .left-summary img{
    width: 55%;
  }
  #summary .summary-images{
    height: 46.5vw;
  }
  #summary .summary-images .left-images{
    width: 35%;
    top: auto;
    bottom: 100%;
    left: 57%;
  }
  #summary .summary-images .right-images{
    width: 59.5%;
    top: 1vw;
    right: 0;
  }
}


/* 店舗のご案内 */

#store .inner{
  padding-top: 2.6vw;
  padding-bottom: 11.5vw;
}

#store .store-content{
  background-color: #4e4d49;
  padding: 0 4vw;
}

#store .store-content h3{
  padding: 4vw 0 2.8vw;
  text-align: center;
}

#store .store-content h3 img{
  width: 66%;
}

#store .store-content .store-box{
  display: flex;
  align-items: flex-start;
  border-top: 3px solid #fff;
  padding: 2vw 0 3.5vw;
}

#store .store-content .store-box .store-left{
  width: 36.5%;
}

#store .store-content .store-box .store-left img{
  width: 100%;
}

#store .store-content .store-box .store-right{
  width: 63.5%;
}

#store .store-content .store-box .store-right ul{
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  padding-left: 7.2vw;
  padding-right: 0.5vw;
  gap: 2vw 0;
  margin-top: 2.3vw;
}

#store .store-content .store-box .store-right ul li{
  width: 47%;
}

#store .store-content .store-box .store-right ul li img{
  width: 74%;
}

#store .store-content .store-box .store-right ul li a:hover{
  opacity: 0.7;
}

#store .store-content .store-box .store-right ul li .store-detail{
  margin-left: 0.6vw;
}

#store .store-content .store-box .store-right ul li .store-detail .room-number{
  display: block;
  margin-top: 0.2vw;
  font-size: 1.05vw;
  letter-spacing: 0;
  color: #fff;
  font-family: din-2014, sans-serif;
  font-style: normal;
  font-weight: 600;
}

#store .store-content .store-box .store-right ul li .store-detail .room-info{
  display: block;
  letter-spacing: 0.05vw;
  font-size: 1vw;
  color: #fff;
}

#store .store-content .store-box .store-right ul li .store-detail p{
  font-size: 1.25vw;
  color: #fff;
  font-weight: 400;
}

#store .store-content .store-last{
  padding: 1.5vw 0 2.5vw;
}

#store .store-content .store-last img{
  width: 8%;
}

#store .store-content .store-last p{
  width: 92%;
  text-align: center;
  padding-right: 4vw;
  font-size: 2.2vw;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.4vw;
}

@media(max-width:768px){
  #store::before{
    content: "";
  }
  #store .inner{
    padding-top: 7vw;
  }
  #store .store-content{
    padding: 0 7vw;
  }
  #store .store-content h3{
    padding: 7.4vw 0 5.5vw;
  }
  #store .store-content h3 img{
    width: 91%;
  }
  #store .store-content .store-box{
    display: block;
    border-top: 1.5px solid #fff;
    padding: 3.5vw 0 9.5vw;
  }
  #store .store-content .store-box .store-left{
    width: 100%;
  }
  #store .store-content .store-box .store-right{
    width: 100%;
    margin-top: 6.5vw;
  }
  #store .store-content .store-box .store-right ul{
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
    gap: 7vw 0;
    margin: 15vw 0 10vw;
  }
  #store .store-content .store-box .store-right ul li{
    width: 100%;
    text-align: center;
  }
  #store .store-content .store-box .store-right ul li img{
    width: 70%;
    margin: 0 auto;
    display: block;
  }
  #store .store-content .store-box .store-right ul li .store-detail{
    width: 70%;
    margin: 0 auto;
    text-align: left;
  }
  #store .store-content .store-box .store-right ul li .store-detail .room-number{
    margin-top: 1.2vw;
    font-size: 2.7vw;
  }
  #store .store-content .store-box .store-right ul li .store-detail .room-info{
    font-size: 3vw;
  }
  #store .store-content .store-box .store-right ul li .store-detail p{
    font-size: 3.8vw;
  }
  #store .store-content .store-last{
    padding: 2.5vw 0 5.5vw;
    display: flex;
    align-items: center;
  }
  #store .store-content .store-last img{
    width: 14%;
  }
  #store .store-content .store-last p{
    width: 86%;
    text-align: right;
    padding-right: 27vw;
    font-size: 4vw;
  }
}

/* 施設情報 */

#info .inner{
  padding: 4.4vw 0 10vw;
}

#info .inner h2{
  margin-bottom: 1.9vw;
  margin-left: 0.5vw;
  font-size: 3.4vw;
}

#info .info-box{
  border-top: 1px solid #595757;
  padding: 5.4vw 2vw 5.4vw 3.6vw;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#info .info-box .title-left{
  width: 12%;
}

#info .info-box .title-left p{
  font-size: 1.3vw;
  letter-spacing: 0.2vw;
  color: #635f5c;
  font-weight: 500;
}

#info .info-box .info-right{
  width: 85%;
}

#info .info-box .info-right dl{
  margin-left: 2vw;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 1.25vw 0;
}

#info .info-box .info-right dl dt{
  font-size: 1.23vw;
  color: #635f5c;
  letter-spacing: 0.05vw;
}

#info .info-box .info-right dl dd{
  font-size: 1.23vw;
  color: #635f5c;
  letter-spacing: 0.05vw;
}

#info .info-box .info-right .place dt{
  width: 19%;
  font-weight: 400;
}

#info .info-box .info-right .place dd{
  width: 81%;
  font-weight: 400;
}

#info .info-box .info-right .store-time dt{
  width: 41%;
  font-weight: 500;
}

#info .info-box .info-right .store-time dd{
  width: 59%;
  font-weight: 500;
}

#info .info-box .info-right .store-time .line2{
  padding-left: 3.6vw;
  text-indent: -3.6vw;
}

#info .info-box .info-right .store-time dd .indent1{
  display: inline-block;
  padding-left: 2.6vw;
}

#info .info-box .info-right .store-time dd .indent2{
  display: inline-block;
  padding-left: 7.7vw;
}

#info .info-box .info-right .store-time dd .indent3{
  display: inline-block;
  padding-left: 3.8vw;
}

#info .info-box .info-right .store-time dd .attention-span{
  font-size: 1.1vw;
  font-weight: 300;
  letter-spacing: 0;
}

#info .info-last{
  padding-top: 8.5vw;
  border-top: 1px solid #595757;
}

#info .root-content{
  margin-top: 9.5vw;
}

#info .root-content .access-h3-box{
  background-color: #EFDFC3;
  text-align: center;
  padding: 0.5vw 0;
}

#info .root-content .access-h3-box h3{
  font-size: 2.2vw;
  color: #595757;
  display: flex;
  justify-content: center;
}

#info .root-content .access-h3-box h3 .access-icon{
  width: 8%;
  margin-right: 0.5vw;
}

#info .root-content .access-h3-box h3 .access-icon img{
  width: 100%;
}

#info .root-content .root-step{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 4.5vw;
  gap: 4.8vw 0;
}

#info .root-content .root-step li{
  width: 47.5%;
}

#info .root-content .root-step li img{
  width: 100%;
}

#info .root-content .root-step li p{
  font-size: 1.2vw;
  margin-top: 1vw;
  color: #635f5c;
}

#info .root-content .root-step li p .number-red{
color: #E73828;
font-weight: 600;
}

@media(max-width:768px){
  #info .inner{
    padding: 15vw 0 10vw;
    margin: 0 6vw;
  }
  #info .inner h2{
    margin-bottom: 5vw;
    font-size: 5.1vw;
  }
  #info .info-box{
    display: block;
    border-top: 1px solid #6f6f6f;
    padding: 9.5vw 1vw;
  }
  #info .info-box .title-left{
    width: 100%;
  }
  #info .info-box .title-left p{
    font-size: 3.8vw;
  }
  #info .info-box .info-right{
    width: 100%;
    margin-top: 6.5vw;
  }
  #info .info-box .info-right dl{
    margin-left: 0;
  }
  #info .info-box .info-right dl dt{
    font-size: 3vw;
  }
  #info .info-box .info-right dl dd{
    font-size: 3vw;
  }
  #info .info-box .info-right .place dt{
    width: 100%;
  }
  #info .info-box .info-right .place dd{
    width: 100%;
    margin-bottom: 4.5vw;
  }
  #info .info-box .info-right .store-time dt{
    width: 100%;
  }
  #info .info-box .info-right .store-time dd{
    width: 100%;
    margin-bottom: 4.5vw;
  }
  #info .info-box .info-right .store-time .line2{
    padding-left: 8.2vw;
    text-indent: -8.2vw;
  }
  #info .info-box .info-right .store-time dd .indent1{
    padding-left: 6.1vw;
  }
  #info .info-box .info-right .store-time dd .indent2{
    padding-left: 18.3vw;
  }
  #info .info-box .info-right .store-time dd .indent3{
    padding-left: 9.1vw;
  }
  #info .info-box .info-right .store-time dd .attention-span{
    font-size: 2.6vw;
    font-weight: 300;
    letter-spacing: 0;
  }
  #info .info-last iframe{
    height: 300px;
  }
  #info .root-content{
    margin-top: 12vw;
  }
  #info .root-content .access-h3-box{
    padding: 1.2vw 0;
  }
  #info .root-content .access-h3-box h3{
    font-size: 3.8vw;
  }
  #info .root-content .access-h3-box h3 .access-icon{
    width: 11%;
    margin-right: 0.8vw;
  }
  #info .root-content .root-step{
    display: block;
    width: 70%;
    margin: 7vw auto 0;
  }
  #info .root-content .root-step li{
    width: 100%;
  }
  #info .root-content .root-step li:nth-child(n+2){
    margin-top: 12vw;
  }
  #info .root-content .root-step li p{
    font-size: 3.3vw;
    margin-top: 1.4vw;
  }
}

/* お知らせ一覧 */

#archive1 .inner{
  padding: 5vw 0 9vw;
}

#archive1 .title-wrapper .h2-title{
  margin-bottom: 6vw;
}

#archive1 .title-wrapper .h2-title h2{
  margin-left: 0;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
}

#archive1 .title-wrapper .h2-title h2 .slug-name{
  font-size: 3.5vw;
  margin-bottom: 0;
  margin-left: 0;
  font-weight: lighter;
  display: inline-block;
}

#archive1 .title-wrapper .h2-title h2 .slash-icon{
  display: block;
  font-size: 1.5vw;
  padding-top: 1vw;
  color: #595757;
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 400;
  font-style: normal;
}

#archive1 .title-wrapper .h2-title h2 .archive-main-title{
  display: block;
  padding-top: 1vw;
  font-size: 2vw;
  color: #595757;
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.archive1-content .archive-news{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 6vw 2.5vw;
}

.archive1-content .archive-news li{
  width: 31%;
}


.archive1-content .archive-news li a .txt{
  margin-top: 1vw;
  margin-bottom: 0.8vw;
}

.archive1-content .archive-news li a .txt .top small{
  font-size: 1.4vw;
  letter-spacing: 0.1vw;
  color: #595757;
  font-weight: 300;
  margin-top: 0.6vw;
  display: block;
  font-family: 'Noto Serif JP', sans-serif;
}

.archive1-content .archive-news li a .txt .title{
  font-size: 1.4vw;
  line-height: 1.6vw;
  margin-top: 0.5vw;
  letter-spacing: 0.1vw;
  color: #595757;
  font-weight: 300;
}

.archive_pagenation{
  text-align: center;
  margin-top: 6vw;
}

.archive_pagenation span{
  font-size: 1.1vw;
  padding: 0 0.5vw;
  color: #635f5c;
}

.archive_pagenation a{
  font-size: 1.1vw;
  padding: 0 0.5vw;
  color: #635f5c;
}

.archive_pagenation .next{
  position: relative;
}

.archive_pagenation .next img{
  position: absolute;
  width: 40%;
  height: auto;
  top: 26%;
}

.archive_pagenation .prev{
  position: relative;
}

.archive_pagenation .prev img{
  position: absolute;
  width: 40%;
  height: auto;
  top: 26%;
  transform: rotate(180deg);
}

@media(max-width:1200px){
  .archive_pagenation .next img{
    top: 38%;
  }
  .archive_pagenation .prev img{
    top: 38%;
  }
}

@media(max-width:768px){
  #archive1 .inner{
    padding: 8vw 0 10vw;
  }
  .archive1-content .archive-news{
    flex-direction: column;
    justify-content: flex-start;
    gap: 12vw 0;
  }
  #archive1 .title-wrapper .h2-title{
    margin-bottom: 7.5vw;
  }
  #archive1 .title-wrapper .h2-title h2 .slug-name{
    font-size: 6.5vw;
  }
  #archive1 .title-wrapper .h2-title h2 .slash-icon{
    font-size: 3.5vw;
  }
  #archive1 .title-wrapper .h2-title h2 .archive-main-title{
    font-size: 3.5vw;
  }
  .archive1-content .archive-news li{
    width: 100%;
  }
  .archive1-content .archive-news li a .txt .top small{
    font-size: 4vw;
    letter-spacing: 0.2vw;
  }
  .archive1-content .archive-news li a .txt .title{
    font-size: 4.5vw;
    letter-spacing: 0.2vw;
    margin-top: 1.5vw;
    line-height: 6vw;
  }
  .archive1-content .archive-news li a .txt{
    margin-top: 3vw;
    margin-bottom: 0;
  }
  .archive_pagenation{
    margin-top: 13vw;
  }
  .archive_pagenation span{
    font-size: 3.5vw;
    padding: 0 1vw;
  }
  .archive_pagenation a{
    font-size: 3.5vw;
    padding: 0 1vw;
  }
  .archive_pagenation .next img{
    width: 64%;
    height: 32%;
    top: 40%;
  }
  .archive_pagenation .prev img{
    width: 64%;
    height: 32%;
    left: 0%;
  }
}

/* 投稿ページ */

#single1 .inner{
  padding-top: 5vw;
}

#single1 .inner .title-wrapper .h2-title{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5vw;
}

#single1 .inner .title-wrapper .h2-title h2{
  font-size: 3.5vw;
  margin-bottom: 0;
  margin-left: 0;
  font-weight: lighter;
}

#single1 .inner .title-wrapper .h2-title strong{
  display: block;
  font-size: 1.5vw;
  padding-top: 1vw;
  color: #595757;
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 400;
  font-style: normal;
}

#single1 .inner .title-wrapper .h2-title span{
  display: block;
  padding-top: 1vw;
  font-size: 2vw;
  color: #595757;
  font-family: 'Noto Serif JP', sans-serif;
  font-weight: 400;
  font-style: normal;
}

#single2 .inner{
  padding: 6vw 0 8vw;
}

#single2 .single2-content .content{
  font-size: 1.4vw;
  letter-spacing: 0.1vw;
  line-height: 2.4vw;
  margin: 4vw 0 7vw;
}

#single2 .single2-content .post-title-wrapper{
  border-bottom: 1px solid #595757;
}

#single2 .single2-content .post-title-wrapper .top{
  margin-left: 0.5vw;
  font-size: 1.1vw;
  color: #635f5c;
  font-weight: 700;
}

#single2 .single2-content .post-title-wrapper h2{
  margin: 1vw 0;
  font-size: 2.6vw;
}

#single2 .single2-content .postlinks-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

#single2 .single2-content .postlinks-wrapper .to_archive{
  width: 15%;
  text-align: center;
}

#single2 .single2-content .postlinks-wrapper .to_archive a{
  font-size: 1.1vw;
  font-weight: 300;
  color: #635f5c;
}

#single2 .single2-content .postlinks-wrapper .to_archive a:hover{
  opacity: 0.6;
}

#single2 .single2-content .postlinks-wrapper .previous-one{
  width: 15%;
  text-align: right;
  position: relative;
}

#single2 .single2-content .postlinks-wrapper .previous-one a:hover{
  opacity: 0.6;
}

#single2 .single2-content .postlinks-wrapper .previous-one img{
  position: absolute;
  width: 4%;
  top: 30%;
  height: auto;
  transform: rotate(180deg);
}

#single2 .single2-content .postlinks-wrapper .previous-one span{
  font-size: 1.1vw;
  padding-left: 1vw;
  font-weight: 300;
  color: #635f5c;
}

#single2 .single2-content .postlinks-wrapper .next-one{
  width: 15%;
  text-align: left;
  position: relative;
}

#single2 .single2-content .postlinks-wrapper .next-one:hover{
  opacity: 0.6;
}

#single2 .single2-content .postlinks-wrapper .next-one img{
  position: absolute;
  width: 4%;
  top: 30%;
  height: auto;
}

#single2 .single2-content .postlinks-wrapper .next-one span{
  font-size: 1.1vw;
  padding-right: 0.6vw;
  font-weight: 300;
  color: #635f5c;
}

@media(max-width:1200px){
  #single2 .single2-content .postlinks-wrapper .previous-one img{
    top: 38%;
  }
  #single2 .single2-content .postlinks-wrapper .next-one img{
    top: 38%;
  }
}

@media(max-width:768px){
  #single1 .inner .title-wrapper .h2-title{
    gap: 1.5vw;
  }
  #single1 .inner .title-wrapper .h2-title h2{
    font-size: 6.5vw;
    margin-bottom: 0;
    margin-left: 0;
    font-weight: lighter;
  }
  #single1 .inner .title-wrapper .h2-title strong{
    font-size: 3.5vw;
    padding-top: 2vw;
  }
  #single1 .inner .title-wrapper .h2-title span{
    font-size: 3.5vw;
    padding-top: 2vw;
  }
  #single2 .single2-content .post-title-wrapper .top{
    font-size: 3vw;
  }
  #single2 .single2-content .post-title-wrapper h2{
    font-size: 4.5vw;
    margin-top: 2vw;
    margin-bottom: 1.8vw;
  }
  #single2 .single2-content .content{
    font-size: 2.8vw;
    line-height: 7vw;
  }
  #single2 .single2-content .postlinks-wrapper .previous-one{
    width: 25%;
  }
  #single2 .single2-content .postlinks-wrapper .previous-one img{
    width: 4%;
    top: 54%;
    left: 33%;
    height: 25%;
  }
  #single2 .single2-content .postlinks-wrapper .previous-one span{
    font-size: 2.5vw;
  }
  #single2 .single2-content .postlinks-wrapper .to_archive{
    width: 25%;
  }
  #single2 .single2-content .postlinks-wrapper .to_archive a{
    font-size: 2.5vw;
  }
  #single2 .single2-content .postlinks-wrapper .next-one{
    width: 25%;
    margin-left: 2.2vw;
  }
  #single2 .single2-content .postlinks-wrapper .next-one span{
    font-size: 2.5vw;
  }
  #single2 .single2-content .postlinks-wrapper .next-one img{
    width: 4%;
    top: 52%;
    right: 33%;
    height: 25%;
  }
}

/* footer */

.footer{
  background-color: #A38A77;
}

.footer .footer-flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 3vw 0;
  position: relative;
}

.footer .footer-flex .left-footer{
  width: 55%;
  text-align: center;
}

.footer .footer-flex .left-footer img{
  width: 37%;
  display: inline-block;
}

.footer .footer-flex .left-footer .footer-info{
  margin-top: 1.5vw;
  font-size: 1.1vw;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.15vw;
}

.footer .footer-flex .left-footer .copyright{
  font-size: 0.9vw;
  margin-top: 1.8vw;
  color: #fff;
  letter-spacing: 0.05vw;
  font-weight: 100;
}

.footer .footer-flex .right-footer{
  width: 45%;
}

.footer .footer-flex .right-footer .footer-navi{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0 3.2vw;
}

.footer .footer-flex .right-footer .footer-navi li a{
  font-family: "Hina Mincho", serif;
  font-weight: lighter;
  font-style: normal;
  color: #fff;
  letter-spacing: 0.15vw;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  font-size: 1.3vw;
}

.footer .footer-flex .right-footer .footer-navi li a:hover{
  opacity: 0.6;
}

/* スクロールダウンの位置 */
.footer .footer-flex .f-scroll-bar{
  position: absolute;
  left: -1%;
  top: 41%;
  writing-mode: vertical-rl;
}

.footer .footer-flex .f-scroll-bar span{
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1vw;
  color: #fff;
  font-size: 0.9vw;
}
/* 線のアニメーション部分 */
.footer .footer-flex .f-scroll-bar::before {
  animation: f-scroll 2s infinite;
  background-color: #595757;
  bottom: 5.5vw;
  content: "";
  height: 4.5vw;
  left: 33%;
  margin: auto;
  position: absolute;
  width: 1px;
  z-index: 2;
}
/* 線の背景色 */
.footer .footer-flex .f-scroll-bar::after {
  background-color: #ccc;
  bottom: 5.5vw;
  content: "";
  height: 4.5vw;
  left: 33%;
  margin: auto;
  position: absolute;
  width: 1px;
}
/* 線のアニメーション */
@keyframes f-scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
}

@media(max-width:768px){
  .footer .footer-flex{
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    padding: 2vw 0;
    gap: 3vw 0;
  }
  .footer .footer-flex .f-scroll-bar{
    left: 17%;
    top: 25%;
  }
  .footer .footer-flex .f-scroll-bar span{
    font-size: 2.5vw;
  }
  .footer .footer-flex .f-scroll-bar::before{
    bottom: 13.5vw;
    height: 10.5vw;
    left: 43%;
  }
  .footer .footer-flex .f-scroll-bar::after{
    bottom: 13.5vw;
    height: 10.5vw;
    left: 43%;
  }
  .footer .footer-flex .left-footer{
    width: 100%;
  }
  .footer .footer-flex .left-footer img{
    width: 35%;
  }
  .footer .footer-flex .left-footer .footer-info{
    margin-top: 2.7vw;
    font-size: 2.9vw;
  }
  .footer .footer-flex .left-footer .copyright{
    font-size: 2.3vw;
  }
  .footer .footer-flex .right-footer{
    width: 70%;
  }
  .footer .footer-flex .right-footer .footer-navi{
    gap: 0 6.2vw;
  }
  .footer .footer-flex .right-footer .footer-navi li a{
    letter-spacing: 0.4vw;
    font-size: 3.5vw;
  }
}

/* パンくず */

.breadcrumb{
  margin: 0 12.9vw;
  padding-top: 2vw;
}
.breadcrumb-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0.4vw;
}
.breadcrumb-list .breadcrumb-link:hover {
  opacity: 0.5;
}
.breadcrumb-list li:nth-child(n+2){
  margin-top: 0.1vw;
}
.breadcrumb-list .breadcrumb-arrow span{
  font-size: 0.7vw;
  font-weight: 500;
  transform: scale(0.8, 1);
  color: #635f5c;
}
.breadcrumb-list .breadcrumb-li span{
  font-size: 0.7vw;
  font-weight: 300;
  color: #635f5c;
  font-family: 'Noto Serif JP', sans-serif;
}

@media(max-width:768px){
  .breadcrumb{
    display: none;
  }
}