
/* ==================================================== */
/* 共通 */

* { 
  margin: 0px; 
  padding: 0px; 
}

body {
  font-family: 'EB Garamond', 'Shippori Mincho', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

h1, h2, h3, h4, h5, h6, p {
  line-height: 1.5;
}

h6, p {
  line-height: 1.9;
}

.container {
  margin: 0 40px;
  /* outline: 1px solid blue; */
}

h1 {
  font-size: 40px;
}

.h1_jp {
  font-size: 32px;
  font-family: 'Hina Mincho', serif;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 14px;
}

.p-small {
  font-size: 12px;
}

.br-sp {
  display: none;
}

.pic-pc {
  display: block;
}

.pic-sp {
  display: none;
}

img {
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity .3s;
}

a:hover {
  opacity: .7;
}

.btn-store {
  display: block;
  width: 320px;
  background: #8B6545;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  transition: background-color .5s;
}

.btn-store:hover {
  background: #000;
  color: #fff;
}

.btn-reserve {
  display: block;
  width: 320px;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  transition: background-color .5s;
}

.btn-reserve:hover {
  background: #8B6545;
  color: #fff;
}

.btn-detail {
  display: block;
  width: 320px;
  background: #a3a3a3;
  color: #fff;
  text-align: center;
  padding: 12px 0;
  font-size: 16px;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: .1em;
  transition: background-color .5s;
}

.btn-detail:hover {
  background: #000;
  color: #fff;
}




.page-fadein {
  animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

.txt-small {
  font-size: 80%;
}


/* ==================================================== */
/* ヘッダー */

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  color: #000;
  background-color: #fff;
  padding: 16px 0;
  border-bottom: #E2D9CF 1px solid;
  /* outline: 1px solid orange; */
}

.header-menu-logo-season-wrap {
  display: flex;
  /* justify-content: space-between; */
  align-items: center;
  position: relative;
}

.header-menu img {
  width: 40px;
  text-align: left;
}

.header-logo {
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-logo img {
  height: 40px;
}

.header-season {
  margin: 0 0 0 auto;
}

.header-season p {
  font-size: 15px;
  font-family: 'Cormorant', serif;
  line-height: 1.2em;
  text-align: right;
}


/* ハンバーガー */

/* ハンバーガー クリック前 */

.nav_toggle {
  display: block;
  position: relative;
  width: 2.5rem;
  height: 1rem;
  cursor: pointer;
  margin-left: auto;
}
.nav_toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  transition: transform .5s, opacity .5s;
}
.nav_toggle i:nth-child(1) {
  top: 0;
}
.nav_toggle i:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.nav_toggle i:nth-child(3) {
  bottom: 0;
}

/* ハンバーガー クリック後 */

.nav_toggle.show i:nth-child(1) {
  transform: translateY(6.5px) rotate(-45deg);
}
.nav_toggle.show i:nth-child(2) {
  opacity: 0;
}
.nav_toggle.show i:nth-child(3) {
  transform: translateY(-8.5px) rotate(45deg);
}


/* メニューリスト オーバーレイ */

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 16px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s;
  z-index: 99;
  overflow-y: scroll;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.overlay #close {
  cursor: pointer;
}

.overlay nav {
  margin: 48px auto 80px;
  width: 288px;
  max-height: calc(100vh - 100px);
  /* overflow-y: scroll; */
}

.overlay ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: left;
}

.overlay li {
  margin-top: 32px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .3s, transform .3s;
}

.overlay.show li {
  opacity: 1;
  transform: none;
}

.overlay.show li:nth-child(1) {
  transition-delay: .1s;
}

.overlay.show li:nth-child(2) {
  transition-delay: .2s;
}

.overlay.show li:nth-child(3) {
  transition-delay: .3s;
}

.overlay.show li:nth-child(4) {
  transition-delay: .4s;
}

.overlay.show li:nth-child(5) {
  transition-delay: .5s;
}

.overlay.show li:nth-child(6) {
  transition-delay: .6s;
}

.overlay.show li:nth-child(7) {
  transition-delay: .7s;
}

.overlay.show li:nth-child(8) {
  transition-delay: .8s;
}

.overlay.show li:nth-child(9) {
  transition-delay: .9s;
}

.overlay.show li:nth-child(10) {
  transition-delay: 1s;
}

.overlay-chou-logo {
  height: 36px;
  margin-top: 40px;
}

.about {
  margin: 64px auto 0;
  width: 280px;
  text-align: left;
}

.about p {
  font-size: 20px;
}

.season {
  font-size: 16px;
  color: #8B6545;
}


/* ==================================================== */
/* トップスライド */

.swiper {
  /*スライダーの幅と高さを調整*/
  width: 100%;
  height: 100vh;
  padding: 68px 0 0 0;
  position: relative;
}

.swiper-catch {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  margin:0;
  padding:0;
  color: #fff;
  font-size: 32px;
  z-index: 50;
  text-align: center;
  text-shadow: 2px 4px 8px rgba(0,0,0, .5);
}

.swiper-slide {
  /*スライド要素の幅と高さを調整*/
  width: 100%;
  height: 100%;
  /*テキストの色を指定*/
  color: #fff;
  padding: 108px 40px 40px 40px;
}

.swiper-slide-1 {
  background-image: url(../img/24apr_chourakukan-1320_t.jpg);
  background-size: cover;
  background-position: center;
}
.swiper-slide-2 {
  background-image: url(../img/_I7A0978_t2.jpg);
  background-size: cover;
  background-position: center;
}
.swiper-slide-3 {
  background-image: url(../img/_DSC5249-2.jpg);
  background-size: cover;
  background-position: center;
}
.swiper-slide-4 {
  background-image: url(../img/_DSC0329_t.jpg);
  background-size: cover;
  background-position: center;
}
.swiper-slide-5 {
  background-image: url(../img/_50A0718_t.jpg);
  background-size: cover;
  background-position: center;
}
.swiper-slide-6 {
  background-image: url(../img/v_t.jpg);
  background-size: cover;
  background-position: center;
}
/* .swiper-slide-7 {
  background-image: url(../img/24apr_chourakukan-475.jpg);
  background-size: cover;
  background-position: center;
} */
/* .swiper-slide-8 {
  background-image: url(../img/AKK11560347.jpg);
  background-size: cover;
  background-position: center;
} */
.swiper-slide-9 {
  background-image: url(../img/15-5-20-162_t2.jpg);
  background-size: cover;
  background-position: 0 64px;
}

.swiper [class^="swiper-button-"]::after{
  font-size: 32px;
  color: #fff;
}

.swiper-pagination-bullet {
  width: 6px !important;
  height: 6px !important;
  margin: 0 0 0 8px !important;
  background: gray !important;
}

/*div要素全体にリンクをつけるために必要な要素*/

.linkbox {
  position: relative;
}

.linkbox a {
  position: absolute;
  top: 0;
  left: 0;
  height:100%;
  width: 100%;
}

.swiper-slide:hover {
  opacity: .9;
}

.swiper-logo-text-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.swiper-logo img {
  height: 36px;
}

.swiper-logo-jubun img {
  height: 48px;
}

.swiper-text-wrap {
  text-align: right;
  margin-top: auto;
}

.swiper-no {
  font-size: 80px;
  font-family: 'Cormorant', serif;
  line-height: 1;
}

.swiper-title {
  font-size: 28px;
}

.swiper-title-jp {
  font-size: 24px;
}


/* ==================================================== */
/* レガロについて */

.about-txt-wrap .lead-deco {
  margin: 40px 0 40px;
}

.about-txt-wrap {
  max-width: 720px;
  margin: 80px auto 0;
}

.about_nav {
  margin-bottom: 80px;
}

.about_nav .container {
  text-align: center;
}

.about_nav_wrap {
  display: flex;
  gap: 120px;
  text-align: left;
  justify-content: center;
}

.about_nav li {
  font-size: 18px;
  margin-top: 32px;
}

.BN {
  margin-bottom: 160px;
}

.BN-nav ul {
  display: flex;
  gap: 48px;
}

.BN-nav li {
  font-size: 16px;
  border: #E2D9CF 1px solid;
  padding: 4px 12px;
  border-radius: 13px;
}

.about_nav_wrap_bn {
  flex-direction: column;
  gap: 8px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.about-footer-logo-address {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: -40px;
}



/* ==================================================== */
/* ヒーロー */

.hero {
  padding: 68px 0 0 0;
  width: 100%;
  height: 100vh;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero01 img {
  object-position: center;
}

.hero02 img {
  object-position: center;
}

.hero04 img {
  object-position: center;
}


/* ==================================================== */
/* リード */

.lead .container {
  padding: 80px 0;
}

.lead-contents {
  text-align: center;
  max-width: 834px;
  margin: 0 auto;
}

.lead-store-logo {
  height: 32px;
  margin-bottom: 72px;
}

.lead-store-logo-jubun {
  height: 48px;
  margin-bottom: 72px;
}

.lead h1 {
  font-family: 'Cormorant', serif;
  letter-spacing: .025em;
  margin-bottom: 16px;
}

.lead-deco {
  width: 80px;
  margin: 80px 0 80px;
}

.lead h6 {
  text-align: left;
  margin-top: 40px;
}

.h5-date {
  text-align: left;
  margin-top: 8px;
}

.h3-small {
  font-size: 80%;
}

.SPR25_05_h3 {
  text-align: left;
  width: 700px;
  margin: 0 auto;
}



/* ==================================================== */
/* リピート */

.repeat-contents {
  width: 834px;
  margin: 0 auto;
}

.repeat-content {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 80px;
}

.repeat-content-reverse {
  flex-direction: row-reverse;
}

.repeat-content-pic {
  width: calc((100% - 40px) / 2);
}

.repeat-content-pic img {
  width: 100%;
}

.repeat-content-text-wrap {
  width: calc((100% - 40px) / 2);
  border-top: 1px solid #AA8344;
  padding-top: 24px;
}

.deco-text {
  font-family: 'Tangerine', serif;
  font-size: 20px;
  color: #AA8344;
  margin-top: -4px;
  margin-bottom: 16px;
}

.repeat-content-text-wrap p {
  font-size: 13px;
}

.repeat-content-logo {
  height: 32px;
  margin-bottom: 24px;
}

.rclogo-rcp {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.rclogo {
  display: inline-block;
  width: 25%;
  height: auto;
  border-right: #000 1px solid;
  padding-right: 12px;
}

.rcp {
  line-height: 1.2em;
}






/* ==================================================== */
/* リピート内 スライド画像 */

  .visual {
    background-color: #9f9f9f;
    margin-bottom: 60px;
  }

 .slick-dots li button:before{
	font-size: 10px!important;
  }

  .slick-dots li{
    width: 12px!important;
  }



/* ==================================================== */
/* バナー */

.banner-contents-wrap {
  width: 834px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 100px;
}

.banner-contents-wrap a {
  width: calc((100% - 32px) / 2);
  padding: 24px;
  background-color: #e1d8ceb4;
}

.banner-pic {
  width: 100%;
}

.banner-txt {
  margin-top: 12px;
}

.banner-content-logo {
  margin: 24px auto 20px;
  display: block;
}










/* ==================================================== */
/* ボタンセクション */

.btn-sec {
  padding-top: 40px;
  margin-bottom:120px;
}

.btn-sec .btn-store  {
  margin: 0 auto;
} 

.btn-sec .btn-reserve  {
  margin: 0 auto;
} 

.btn-sec .btn-detail  {
  margin: 0 auto;
} 

.insert-brn-sec {
  padding-top: 0px;
  margin-top: -24px;
  margin-bottom: 80px;
}

.insert-brn-sec-2 {
  margin-top: 0px;
}



/* ==================================================== */
/* フッター */

footer {
  background-color: #E2D9CF;
  padding: 120px 0 80px;
}

.footer-contents {
  width: 834px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  gap: 32px;
}

.footer-content img {
  width: 320px;
}

.footer-content-text-wrap {
  width: 522px;
}

.annotation {
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 16px;
}

.footer-logo-address {
  display: flex;
  gap: 24px;
  margin-top: 80px;
}

.footer-logo img {
  height: 32px;
}

.footer-address p {
  font-size: 11px;
  line-height: 1.5;
}

.footer_adress_only {
  padding-top: 8px;
}


/* ==================================================== */
/* レガシー */

.cl-body {
  background-image: url(../img/cl-back.jpg);
  object-fit: cover;
}

.btn-cl {
  background: #640125;
}


/* クロスフェード スライド */

.slider-area {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 4;
}

.slider-item-3 {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow3 30s linear infinite 0s;
}

.slider-item-3:nth-child(2) {
  animation-delay: 10s;
}

.slider-item-3:nth-child(3) {
  animation-delay: 20s;
}

.slider-item-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.slider-item-2 {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  animation: slideShow2 20s linear infinite 0s;
}

.slider-item-2:nth-child(2) {
  animation-delay: 10s;
}

.slider-item-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes slideShow3 {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }

  8% {
      opacity: 1;
      animation-timing-function: ease-out;
  }

  /* 20% {
      opacity: 1;
  } */

  32% {
      opacity: 1;
  }

  40%,
  100% {
      opacity: 0;
  }
}

@keyframes slideShow2 {
  0% {
      opacity: 0;
      animation-timing-function: ease-in;
  }

  8% {
      opacity: 1;
      animation-timing-function: ease-out;
  }

  /* 25% {
      opacity: 1;
  } */
  
  40% {
      opacity: 1;
  }

  50%,
  100% {
      opacity: 0;
  }
}


.h3-wrap {
  text-align: left;
  max-width: 440px;
  margin: 0 auto;
}








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

/* medium screen */

@media (max-width: 834px) {

/* ==================================================== */
/* 共通 レスポンシブ */

.container {
  margin: 0 20px;
  /* outline: 1px solid blue; */
}

h1 {
  font-size: 32px;
}

.h1_jp {
  font-size: 26px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 12px;
}

.p-small {
  font-size: 10px;
}

.br-sp {
  display: block;
}

.pic-pc {
  display: none;
}

.pic-sp {
  display: block;
}

.btn-store {
  width: 100%;
}

.btn-reserve {
  width: 100%;
}

.btn-detail {
  width: 100%;
}



/* ==================================================== */
/* ヘッダー レスポンシブ */

header {
  padding: 10px 0;
}

.header-logo img {
  height: 32px;
}

.header-season p {
  font-size: 12px;
}


/* メニューリスト オーバーレイ */

.overlay {
  padding: 10px 0;
}

.season {
  font-size: 14px;
}


/* ==================================================== */
/* レガロについて レスポンシブ */

.about-txt-wrap .lead-deco {
  margin: 40px 0 0px;
}

.about-txt-wrap {
  width: 100%;
  margin: 64px auto 0;
}

.about_nav {
  margin-bottom: 64px;
}

.about_nav_wrap {
  flex-direction: column;
  gap: 0px;
}

.about_nav ul {
  width: 320px;
  margin: 0 auto;
}

.about_nav li {
  font-size: 16px;
  margin-top: 28px;
}

.BN {
  margin-bottom: 144px;
}

.BN-nav ul {
  justify-content: center;
}

.BN-nav li {
  font-size: 14px;
}

.about-footer-logo-address {
  flex-direction: column;
  width: 250px;
  margin: -8px auto 0;
}



/* ==================================================== */
/* トップスライド レスポンシブ */

.swiper {
  /*スライダーの幅と高さを調整*/
  padding: 54px 0 0 0;
}

.swiper-catch {
  position: absolute;
  font-size: 20px;
  line-height: 1.5;
  text-align: left;
  writing-mode: vertical-rl;
}

.swiper-slide {
  padding: 86px 24px 40px 24px;
}

.swiper [class^="swiper-button-"]::after{
  font-size: 20px;
}

.swiper-logo img {
  height: 32px;
}

.swiper-logo-jubun img {
  height: 44px;
}

.swiper-no {
  font-size: 72 px;
  line-height: 1.2;
}

.swiper-title {
  font-size: 24px;
}

.swiper-title-jp {
  font-size: 20px;
}



/* ==================================================== */
/* ヒーロー レスポンシブ */

.hero {
  padding: 54px 0 0 0;
}



/* ==================================================== */
/* リード レスポンシブ */

.lead-store-logo {
  height: 28px;
}

.lead-store-logo-jubun {
  height: 44px;
}

.lead-deco {
  width: 64px;
}

.SPR25_05_h3 {
  width: 305px;
}


/* ==================================================== */
/* リピート レスポンシブ */

.repeat-contents {
  width: auto;
}

.repeat-content {
  flex-direction: column-reverse;
  margin-bottom: 40px;
}

.repeat-content-reverse {
  flex-direction: column-reverse;
}

.repeat-content-pic {
  width: 100%;
}

.repeat-content-text-wrap {
  width: 100%;
  margin-bottom: 24px;
}

.deco-text {
  font-family: 'Tangerine', serif;
  font-size: 20px;
  color: #AA8344;
  margin-bottom: 12px;
}

.repeat-content-logo {
  height: 28px;
  display: block;
  margin: 12px auto 32px;
}

.rclogo {
  width: 20%;
}


/* ==================================================== */
/* リピート内 スライド画像 レスポンシブ */

/* カルーセル内容 */
.contains {
  /* サイズは自由に変更してください。*/
  /* 下の.slideも同じサイズにしてください。 */
  width: 100%;
}

/* 各スライド */
.slide {
  /* サイズは自由に変更してください。*/
  /* 上の.containsも同じサイズにしてください。 */
  width: 100%;
}



/* ==================================================== */
/* バナー レスポンシブ*/

.banner-contents-wrap {
  width: auto;
  flex-direction: column;
  margin-bottom: 80px;
}

.banner-contents-wrap a {
  width: 90%;
  margin: 0 auto;
}

.banner-content-logo {
  margin: 24px auto 20px;
}




/* ==================================================== */
/* ボタンセクション レスポンシブ */

.btn-sec {
  margin-bottom:80px;
}

.insert-brn-sec {
  margin-top: 8px;
  margin-bottom: 64px;
}

/* ==================================================== */
/* フッター レスポンシブ */

footer {
  padding: 64px 0 48px;
}

.footer-contents {
  max-width: 320px;
  width: 100%;
}

.footer-content {
  flex-direction: column;
  gap: 24px;
}

.footer-content img {
  width: 100%;
}

.footer-content-text-wrap {
  width: 100%;
}

.annotation {
  font-size: 11px;
}

.footer-logo-address {
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.footer-logo img {
  height: 32px;
}

.footer-address p {
  font-size: 11px;
}



.h3-wrap {
  max-width: 360px;
}




}