@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP&display=swap&subset=japanese');

body {
  position: relative;
  color: #1b1b1b;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  transition: 1s;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

p {
  line-height: 1.8;
}
a {
  color: #1b1b1b;
  transition: all 0.25s;
  text-decoration: none !important;
}
a:hover {
  color: inherit;
}
.about-wrap a,
.topics-slide-wrap .topics-slide a {
  transition: all 0.25s;
}
.topics-slide-wrap .topics-slide a:hover {
  display: block;
  opacity: .7;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
section h2 {
  letter-spacing: .15em;
  line-height: 1;
  font-size: 43px;
}
section h2 small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0;
  font-family: 'Noto Sans JP', sans-serif;
}
section h2::after {
  display: block;
  content: '';
  border-bottom: 1px solid #2f2f2f;
  width: 24px;
  margin: 40px auto;
}
section h3 {
  letter-spacing: .1em;
}
section h3 small {
  letter-spacing: .1em;
}
section p {
  font-size: 13px;
  line-height: 2.5;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.font-noto {
  font-family: 'Noto Sans JP', sans-serif;  
}

.about-wrap a,
.cuisine-wrap .cuisine-cont ul li a {
  display: block;
}

/*スクロール動作*/
.effect_first,
.effect_second {
  opacity: 0;
  transform: translate(0,40px);
  -webkit-transform: translate(0,40px);
  transition: all 1s;
}
.motion01,
.motion02 {
  opacity: 1.0;
  transform: translate(0,0);
  -webkit-transform: translate(0,0);
}
.motion02 {
  transition-delay: .5s;
}

/* ヘッダー */
.header-inner {
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 50px 40px 0;
  width: 100%;
  z-index: 9998;
}
header h1 a {
  display: block;
}
header h1 {
  width: 126px;
  transition: all .3s;
  -webkit-transition: all .3s;
}
header h1 img {
  width: 100%;
}
header h1 .svg {
  fill: #fff;
}
header h1 .svg.svg-00 {
  fill: #000;
}
header .navigation {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  font-size: 14px;
  width: 68%;
}

header .navigation .about {
  width: 90px;
}
header .navigation .restaurant {
  width: 92px;
}
header .navigation .residence {
  width: 82px;
}
header .navigation .experience {
  width: 82px;
}
header .navigation .shop {
  width: 115px;
}
header .navigation .cuisine {
  width: 55px;
}
header .navigation .plan {
  width: 50px;
}
header .navigation .gallery {
  width: 70px;
}
header .navigation .access {
  width: 60px;
}
header .navigation li {
  display: flex;
  align-items: flex-start;
  text-align: center;
  /*font-family: 'Lato', Calibri, Arial, sans-serif;*/
}
header .navigation li a {
  position: relative;
  transition: all 0.3s;
  display: inline-block;
  width: 100%;
  color: #fff;
}
header .navigation a span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  transition: all 0.3s;
  color: black;
  text-shadow: 0px 0px 4px white;
}
header .navigation li a.hover::after {
  position: absolute;
  content: '';
  height: 1px;
  left: 50%;
  bottom: -7px;
  width: 90%;
  transform: translateX(-50%);
  background: #1c3c66;
}
.header-inner.nav-sticky h1 {
  width: 79px;
}

.navigation a .is-jp {
  opacity: 0;
}

.navigation a:hover .is-jp {
  opacity: 1;
}

.navigation a:hover .is-jp::after {
  position: absolute;
  content: '';
  height: 1px;
  left: 50%;
  bottom: -7px;
  width: 90%;
  transform: translateX(-50%);
  background: #1c3c66;
}

.navigation a:hover .is-en {
  opacity: 0;
}

/* スクロール表示 START */
/* 画面外にいる状態 */
.fadein {
  opacity : 0;
  transform: translate3d(0, 50px, 0);
  transition : all 500ms;
}
/* 画面内に入った状態 */
.fadein.scrollin {
  opacity : 1;
  transform: translate3d(0, 0, 0);
}
/* 左から */
.fadeleft {
  opacity : 1;
  transform: translate3d(-50px, 0, 0);
  transition : all 500ms;
}
/* 右から */
.faderight {
  opacity : 1;
  transform: translate3d(50px, 0, 0);
  transition : all 500ms;
}

/* 2つ目の要素に200msのdelayをかける */
#effect2 > div .fadein:nth-of-type(2) {
  -moz-transition-delay:200ms;
  -webkit-transition-delay:200ms;
  -o-transition-delay:200ms;
  -ms-transition-delay:200ms;
}
/* 3つ目の要素に400msのdelayをかける */
#effect2 > div .fadein:nth-of-type(3) {
  -moz-transition-delay:400ms;
  -webkit-transition-delay:400ms;
  -o-transition-delay:400ms;
  -ms-transition-delay:400ms;
}
/* 4つ目の要素に600msのdelayをかける */
#effect2 > div .fadein:nth-of-type(4) {
  -moz-transition-delay:600ms;
  -webkit-transition-delay:600ms;
  -o-transition-delay:600ms;
  -ms-transition-delay:600ms;
}

/* div無しの時用 */
/* 2つ目の要素に200msのdelayをかける */
#effect2 > .fadein:nth-of-type(2) {
  -moz-transition-delay:200ms;
  -webkit-transition-delay:200ms;
  -o-transition-delay:200ms;
  -ms-transition-delay:200ms;
}
/* 3つ目の要素に400msのdelayをかける */
#effect2 > .fadein:nth-of-type(3) {
  -moz-transition-delay:400ms;
  -webkit-transition-delay:400ms;
  -o-transition-delay:400ms;
  -ms-transition-delay:400ms;
}
/* 4つ目の要素に600msのdelayをかける */
#effect2 > .fadein:nth-of-type(4) {
  -moz-transition-delay:600ms;
  -webkit-transition-delay:600ms;
  -o-transition-delay:600ms;
  -ms-transition-delay:600ms;
}

#effect3 > div .fadein:nth-of-type(2) {
  -moz-transition-delay:200ms;
  -webkit-transition-delay:200ms;
  -o-transition-delay:200ms;
  -ms-transition-delay:200ms;
}
/* 3つ目の要素に400msのdelayをかける */
#effect3 > div .fadein:nth-of-type(3) {
  -moz-transition-delay:400ms;
  -webkit-transition-delay:400ms;
  -o-transition-delay:400ms;
  -ms-transition-delay:400ms;
}
/* 4つ目の要素に600msのdelayをかける */
#effect3 > div .fadein:nth-of-type(4) {
  -moz-transition-delay:600ms;
  -webkit-transition-delay:600ms;
  -o-transition-delay:600ms;
  -ms-transition-delay:600ms;
}

/* スクロール表示 END */


/* ハンバーガーメニュー */
.nav-toggle-wrap {
  display: none;
  position: fixed;
  top: 50px;
  right: 40px;
  display: flex;
  justify-content: space-between;
  height: 20px;
  cursor: pointer;
  z-index: 9999;
}
.nav-toggle-wrap .menu-text {
  margin-right: 8px;
  font-size: 14px;
  font-weight: bold;
}
.nav-toggle-wrap.active .menu-text {
  display: none;
}
.nav-toggle {
  position: relative;
  width: 26px;
  height: 100%;
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  opacity: inherit;
}
.nav-toggle span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  position: absolute;
  right: 0;
  height: 2px;
  background: #1c3c66;
  border-radius: 4px;
}
.nav-toggle span:nth-of-type(1) {
  top: 0;
  width: 100%;
}
.nav-toggle span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  width: 75%;
}
.nav-toggle span:nth-of-type(3) {
  bottom: 0;
  width: 85%;
}

.nav-toggle-wrap.active .nav-toggle span:nth-child(1) {
  top: 40%;
  left: 10%;
  width: 100%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-toggle-wrap.active .nav-toggle span:nth-child(2) {
  width: 0;
  top: 2px;
  left: 3px;
  -webkit-transform: translate(10px,0);
  -ms-transform: translate(10px,0);
  transform: translate(10px,0);
}
.nav-toggle-wrap.active .nav-toggle span:nth-child(3) {
  top: 40%;
  left: 10%;
  width: 100%;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* メニューオープン */
.hamburger-navigation {
  position: fixed;
  display: none;
  background: #fff;
  width: 100%;
  height: 160px;
  opacity: .8;
  padding: 50px 40px 0;
  z-index: 9998;
}
.hamburger-navigation h1 {
  width: 79px;
}
.hamburger-navigation h1 a {
  display: block;
}
.hamburger-navigation h1 img {
  width: 100%;
}
.hamburger-navigation-inner {
  display: flex;
}
.hamburger-navigation-inner ul {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  width: 100%;
}
.hamburger-navigation-inner ul li {
  padding: 0 18px;
}
.hamburger-navigation-inner ul li a:hover {
  opacity: .7;
}

/* ご予約・お問合せ 追従ボタン */
.reservations-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  /*padding: 40px 0 0;*/
  /*background: #1c3c66 url('/assets/img/reservations_phone_img.png') no-repeat top 25px center;*/
  background: #1c3c66;
  border: solid 1px #000;
  z-index: 3;
  width: 58px;
  height: 174px;
  color: #fff;
  font-size: 12px;
  letter-spacing: .2em;
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-text-orientation: upright;
  text-orientation: upright;
}
.reservations-btn:hover {
  color: #1c3c66;
  /*background: #fff url('/assets/img/reservations_phone_img_hover.png') no-repeat top 25px center;;*/
  background: #fff;
  opacity: 0.7;
}
.reservations-btn img {
  margin-bottom: 13px;
}
.reservations-restaurant-btn {
  bottom: 348px;
  background: #977F59;
}
.reservations-hotel-btn {
  bottom: 174px;
}
.for-foreigners-btn {
  background-color: #FFFFFF;
  color: #000;
  height: 58px;
  transform: rotate(90deg);
  width: 174px;
  writing-mode: horizontal-tb;
  right: -58px;
  bottom: 58px;
}
.for-foreigners-btn:hover {
  color: #fff;
  /*background: #fff url('/assets/img/reservations_phone_img_hover.png') no-repeat top 25px center;;*/
  background: #000;
}
.reservations-text-1 {
  letter-spacing: 0.5px;
}

/* スクロールダウン */
.scroll {
  position: absolute;
  bottom: -10%;
  right: 90px;
  z-index: 1;
}
.scroll::after {
  display: block;
  position: absolute;
  bottom: 2px;
  left: -4px;
  content: '';
  width: 4px;
  height: 1px;
  -ms-transform: skewY(40deg);
  -webkit-transform: skewY(40deg);
  transform: skewY(40deg);
  animation: bg-color 1.5s infinite;
  -webkit-animation: bg-color 1.5s infinite;
}

@-webkit-keyframes bg-color {
  0% { background-color: #2f2f2f; }
  29% { background-color: #2f2f2f; }
  100% { background-color: #fff; }
}
@keyframes bg-color {
  0% { background-color: #2f2f2f; }
  29% { background-color: #2f2f2f; }
  100% { background-color: #fff; }
}

.scroll-text {
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 0;
  transform: rotate(-90deg);
  position: absolute;
  top: 40px;
  left: -62px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .1rem;
}
.scrolldown {
  position: relative;
  bottom: 0;
  right: 50%;
  width: 1px;
  height: 252px;
  overflow: hidden;
  background: #fff;
}
.scrollline {
  display: block;
  width: 1px;
  height: 252px;
  transform: translateY(-50px);
  -webkit-animation: scrolldownline 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards infinite;
  animation: scrolldownline 1.5s cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards infinite ;
  background: #2f2f2f;
  background-size: 100% 200%;
}

@-webkit-keyframes scrolldownline {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  49% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  99% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
}

@keyframes scrolldownline {
  0% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  49% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  50% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  99% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
}

/* メインビジュアル */
.main-visual {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  margin-top: -1px;
}
#movieWrap {
  overflow: hidden;
  width: 100%;
  height: 100vh;
  position: relative;
}
#mainMovie {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100vw;
  min-height: 100vh;
}
.sp-main {
  display: none;
}
.main-slide-wrap {
  position: relative;
  height: 100vh;
  width: 100vw;
  z-index: 1;
  text-align: center;
}
.main-visual .main-text {
  position: absolute;
  left: 10%;
  top: 70%;
  z-index: 2;
  font-size: 2rem;
  color: #fff;
  line-height: 1.3;
  /*font-family: 'Lato', Calibri, Arial, sans-serif;*/
  text-shadow: 1px 1px 1px #7d7d7d;
  opacity: .9;
  text-align: left;
}
.main-slide-wrap ul {
  padding: 0;
}
.swiper-button-prev,
.swiper-button-next {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: none;
  background: #fff;
  width: 40px;
  height: 40px;
  top: auto;
  bottom: 0;
  transition: all 0.25s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #000;
}
.swiper-button-prev i,
.swiper-button-next i {
  color: #000;
}
.swiper-button-prev:hover i,
.swiper-button-next:hover i {
  color: #fff;
}
.main-slide-wrap .swiper-button-prev {
  left: 0;
}
.main-slide-wrap .swiper-button-next {
  left: 40px;
}
.swiper-button-prev i,
.swiper-button-next i {
  font-size: 12px;
  transition: all 0.25s;
}

/* MOREボタン */
.more-btn {
  position: relative;
}
.more-btn span {
  font-size: 12px;
  letter-spacing: .1em;
  font-weight: bold;
}
.more-btn::after {
  position: absolute;
  display: block;
  content: '';
  width: 47px;
  height: .3em;
  display: block;
  border-right: 1px solid;
  border-bottom: 1px solid;
  position: absolute;
  top: 35px;
  bottom: 0;
  right: -3%;
  transform: translateX(-50%);
  margin: auto;
  -ms-transform: skewX(45deg);
  -webkit-transform: skewX(45deg);
  transform: skewX(45deg);
  opacity: 1;
  transition: all 0.25s;
}
section a:hover .more-btn::after {
  right: -42%;
  width: 200%;
  -ms-transform: skewX(45deg);
  -webkit-transform: skewX(45deg);
  transform: skewX(45deg);
  -webkit-animation: lineLoopAnim 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: lineLoopAnim 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.restaurant-cont .more-btn,
.residence-cont .more-btn,
.gallery-cont .more-btn,
.experience-cont .more-btn {
  display: inline-block;
  overflow: hidden;
  height: 40px;
  width: 100px;
}
.restaurant-cont .more-btn::after,
.residence-cont .more-btn::after,
.gallery-cont .more-btn::after,
.experience-cont .more-btn::after {
  top: 20px;
  left: -1px;
  right: auto;
}
.restaurant-cont .more-btn:hover::after,
.residence-cont .more-btn:hover::after,
.gallery-cont .more-btn:hover::after,
.experience-cont .more-btn:hover::after {
  left: 0;
  width: 82%;
  -webkit-animation: lineLoopAnim 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
  animation: lineLoopAnim 0.6s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.restaurant-cont .more-btn,
.restaurant-cont .more-btn:hover::after,
.restaurant-cont .more-btn:hover::before,
.residence-cont .more-btn,
.residence-cont .more-btn:hover::after,
.residence-cont .more-btn:hover::before,
.gallery-cont .more-btn,
.gallery-cont .more-btn:hover::after,
.gallery-cont .more-btn:hover::before,
.experience-cont .more-btn,
.experience-cont .more-btn:hover::after,
.experience-cont .more-btn:hover::before {
  color: #fff;
}
.about-wrap .about-cont .more-btn-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.cuisine-wrap .cuisine-cont ul li .more-btn-wrap {
  display: flex;
  justify-content: center;
}
/* .cuisine-wrap .cuisine-cont ul li a:hover .more-btn::after {
  -ms-transform: skewX(0deg);
  -webkit-transform: skewX(0deg);
  transform: skewX(0deg);
} */

@-webkit-keyframes lineLoopAnim {
  0% {
    border-right: none;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  49% {
    border-right: none;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  50% {
    border-right: none;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  99% {
    border-right: none;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    border-right: none;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

@keyframes lineLoopAnim {
  0% {
    border-right: none;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  49% {
    border-right: none;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  50% {
    border-right: none;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  99% {
    border-right: none;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  100% {
    border-right: none;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
}

/* topics */
.topics-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #2f2f2f;
  color: #fff;
}
.topics-inner {
  display: flex;
  align-items: center;
  width: 100%;
}
.topics-inner .title-wrap {
  width: 35%;
  text-align: right;
}
.topics-inner .title-wrap h2 {
  font-size: 30px;
  margin: 0 80px 0 0;
  letter-spacing: .05em;
}
.topics-inner .title-wrap h2::after {
  display: none;
}
.swiper-container.topics-slide-wrap {
  padding: 70px 0 50px;
  width: 65%;
}
.topics-slide-wrap .topics-slide a {
  color: #fff;
}
.topics-slide-wrap .topics-slide dl {
  display: flex;
  font-size: 11px;
  letter-spacing: .1rem;
}
.topics-slide-wrap .topics-slide dl:nth-child(3) {
  margin-bottom: 0;
}
.topics-slide-wrap .topics-slide dl dt {
  position: relative;
  font-weight: normal;
  margin-right: 20px;
}
.topics-slide-wrap .topics-slide dl dt::after {
  position: absolute;
  display: inline-block;
  content: '・';
  top: 50%;
  transform: translateY(-50%);
  left: 120%;
}
.topics-slide-wrap .topics-slide dl dd {
  margin: 0 0 0 20px;
}
.topics-slide-wrap .swiper-button-prev,
.restaurant-slide-wrap .swiper-button-prev,
.residence-slide-wrap .swiper-button-prev,
.gallery-slide-wrap .swiper-button-prev,
.experience-slide-wrap .swiper-button-prev {
  left: auto;
  right: 40px;
}
.topics-slide-wrap .swiper-button-next,
.restaurant-slide-wrap .swiper-button-next,
.residence-slide-wrap .swiper-button-next,
.gallery-slide-wrap .swiper-button-next,
.experience-slide-wrap .swiper-button-next {
  right: 0;
}

/* about */
.about-wrap .about-bg-wrap {
  height: 468px;
  overflow: hidden; 
}
.about-wrap .about-bg {
  position: relative;
  width: 100%;
  height: 100%;
  background: url('../img/20230623/about_img.png') no-repeat center/cover;
  -moz-transition: -moz-transform 0.3s linear;
  -webkit-transition: -webkit-transform 0.3s linear;
  -o-transition: -o-transform 0.3s linear;
  -ms-transition: -ms-transform 0.3s linear;
  transition: transform 0.3s linear;
}
.about-wrap a:hover .about-bg {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -o-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.about-wrap .about-cont {
  padding: 100px 30px;
  text-align: center;
}
.about-wrap .about-cont h2 {
  font-size: 36px;  
}

/* RESTAURANT */
.restaurant-wrap,
.residence-wrap,
.gallery-wrap,
.experience-wrap {
  position: relative;
}
.restaurant-wrap .swiper-slide,
.residence-wrap .swiper-slide,
.gallery-wrap .swiper-slide,
.experience-wrap .swiper-slide {
  cursor: pointer;
}
.restaurant-wrap a > div,
.residence-wrap a > div,
.gallery-wrap a > div,
.experience-wrap a > div {
  -moz-transition: -moz-transform 0.3s linear;
  -webkit-transition: -webkit-transform 0.3s linear;
  -o-transition: -o-transform 0.3s linear;
  -ms-transition: -ms-transform 0.3s linear;
  transition: transform 0.3s linear;
}
.restaurant-wrap a:hover > div,
.residence-wrap a:hover > div,
.gallery-wrap a:hover > div,
.experience-wrap a:hover > div {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -o-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03) !important;
}
.restaurant-slide-wrap a.swiper-slide,
.residence-slide-wrap a.swiper-slide,
.gallery-slide-wrap a.swiper-slide,
.experience-slide-wrap a.swiper-slide {
  width: 100%;
}
.restaurant-slide-wrap a.swiper-slide div,
.residence-slide-wrap a.swiper-slide div {
  height: 750px;
}
.restaurant-cont,
.residence-cont,
.experience-cont {
  position: absolute;
  top: 115px;
  left: 115px;
  width: 30%;
  z-index: 1;
}
.gallery-cont {
  position: absolute;
  top: 115px;
  left: 115px;
  width: 30%;
  z-index: 1;
}
.restaurant-cont {
  color: #fff;
}
.restaurant-cont h2::after,
.residence-cont h2::after {
  margin: 70px 0;
}

/* residence */
.residence-cont {
  left: auto;
  right: 115px;
  color: #fff;
}
.residence-cont h2::after {
  margin: 70px 0;
  border-bottom: 1px solid #fff;
}

/* cuisine */
.cuisine-wrap .cuisine-cont {
  padding: 100px 30px;
  text-align: center;
}
.cuisine-wrap .cuisine-cont h2 {
  text-align: center;
}
.cuisine-wrap .cuisine-cont ul {
  display: flex;
  justify-content: center;
}
.cuisine-wrap .cuisine-cont ul li {
  position: relative;
  width: 30%;
  max-width: 303px;
  text-align: left;
}
.cuisine-wrap .cuisine-cont ul li:not(:last-child) {
  margin-right: 5%;
}
.cuisine-wrap .cuisine-cont ul li .img-wrap {
  overflow: hidden;
  width: 303px;
  height: 481px;
    box-shadow:0px 0px 17px 2px rgba(27,27,27,0.4);
}
.cuisine-wrap .cuisine-cont ul li a:hover {
  display: block;
  opacity: .7;
}
.cuisine-wrap .cuisine-cont ul li .img-wrap img {
  -moz-transition: -moz-transform 0.3s linear;
  -webkit-transition: -webkit-transform 0.3s linear;
  -o-transition: -o-transform 0.3s linear;
  -ms-transition: -ms-transform 0.3s linear;
  transition: transform 0.3s linear;
  width: 100%;
}
.cuisine-wrap .cuisine-cont ul li a:hover .img-wrap img {
  -webkit-transform: scale(1.03);
  -moz-transform: scale(1.03);
  -o-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
}
.cuisine-wrap .cuisine-cont ul li h3 {
  margin: 20px 0 30px;
  font-size: 26px;
}
.cuisine-wrap .cuisine-cont ul li h3 small {
  margin-left: 7px;
  font-size: 15px;
}
.cuisine-wrap .cuisine-cont ul li p {
  font-size: 12px;
}
.cuisine-wrap .cuisine-cont .more-btn-wrap {
  margin: 0 auto;
}

/* gallery */
.gallery-slide-wrap a.swiper-slide div {
  height: 623px;
}
.gallery-wrap .gallery-cont {
  display: flex;
  align-items: start;
  flex-direction: column;
  top: 430px;
  right: 115px;
  left: unset;
  color: #fff;
}
.gallery-wrap .gallery-cont h2 {
  margin-bottom: 0;
}
.gallery-wrap .gallery-cont h2::after {
  display: none;
}
.gallery-wrap .gallery-cont .more-btn {
  bottom: -2rem;
}

/* experience */
.experience-slide-wrap a.swiper-slide div {
  height: 623px;
}
.experience-wrap .experience-cont {
  display: flex;
  align-items: start;
  flex-direction: column;
  top: 430px;
  left: 115px;
  color: #fff;
}
.experience-wrap .experience-cont h2 {
  margin-bottom: 0;
}
.experience-wrap .experience-cont h2::after {
  display: none;
}
.experience-wrap .experience-cont .more-btn {
  bottom: -2rem;
}

/* contact */
.contact-wrap {
  padding: 100px 0;
  background: #2f2f2f;
  color: #fff;
}
.contact-wrap .contact-cont {
  text-align: center;
}
.contact-wrap .contact-cont h2 {
  margin-bottom: 60px;
  font-size: 36px;
}
.contact-wrap .contact-cont h2::after {
  display: none;
}
.contact-wrap .contact-cont h2 .pc-only {
  display: inline-block;
}
.contact-wrap .contact-cont p {
  margin-bottom: 70px;
}
.contact-wrap .contact-cont ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: solid 1px #bfbfbf;
  border-bottom: solid 1px #bfbfbf;
  max-width: 796px;
  margin: auto;
  padding: 40px 0;
  font-size: 12px;
  letter-spacing: .1em;
}
.contact-wrap .contact-cont ul li {
  width: 49%;
}
.contact-wrap .contact-cont .phone-number {
  display: block;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: .1em;
  background: url('../img/phone_img.png') no-repeat top 7px left/35px;
  color: #fff;
  pointer-events: none;
}
.contact-wrap .contact-cont .contact-btn {
  display: inline-block;
  position: relative;
  padding: 15px 0;
  margin: 5px 0;
  width: 100%;
  border: 1px solid #fff;
  color: #fff;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 0;
}
.contact-wrap .contact-cont .contact-btn::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.contact-wrap .contact-cont .contact-btn:hover {
  color: #1b1b1b;
  z-index: 0;
}
.contact-wrap .contact-cont .contact-btn:hover::after {
  left: 0;
  width: 100%;
}

.contact-wrap .contact-cont .reception-place, .contact-wrap .contact-cont .reception-time {
  display: block;
  text-align: left;
}

/* footer */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 27px 70px;
  color: #535353;
  background: #232323;
}
.footer .footer-logo-wrap {
  font-size: 10px;
  display: flex;
}
.footer .footer-logo-wrap span {
  margin-left: 12px;
  padding: 13px;
}
.footer .footer-logo-wrap a {
  padding: 8px 8px 8px 18px;
}
.footer .footer-logo-wrap .sns-icon {
  width: 12px;
}
.footer .footer-logo-wrap .instagram {
  width: 28px;
  height: auto;
}
.footer ul {
  display: flex;
  align-items: center;
}
.footer ul li {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  line-height: 1;
}
.footer ul li a {
  font-size: 12px;
  color: #535353;  
}
.footer ul li a:hover {
  color: #fff;
}
.footer .footmenu ul {
  padding: 14px 0px;
}
.footer .footmenu ul li:not(:last-child) {
  border-right: solid 1px #535353;
}


/* スライダー画像 */
/* メインビジュアルスライダー */
.main-slide01 {
  background: url('/assets/img/20230623/main_img01.png') no-repeat center/cover;
}
.main-slide02 {
  background: url('/assets/img/20230623/main_img02.png') no-repeat center/cover;
}
.main-slide03 {
  background: url('/assets/img/20230623/main_img03.png') no-repeat center/cover;
}
.main-slide04 {
  background: url('/assets/img/20230623/main_img04.png') no-repeat center/cover;
}
.main-slide05 {
  background: url('/assets/img/20230623/main_img05.png') no-repeat center/cover;
}
.main-slide06 {
  background: url('/assets/img/main_img06.png') no-repeat center/cover;
}
.main-slide07 {
  background: url('/assets/img/main_img07.png') no-repeat center/cover;
}
/* RESTAURANTスライダー */
.restaurant-slide01 {
  background: url('/assets/img/restaurant_img01.png') no-repeat center/cover;
}
.restaurant-slide02 {
  background: url('/assets/img/restaurant_img02.png') no-repeat center/cover;
}
.restaurant-slide03 {
  background: url('/assets/img/restaurant_img03.png') no-repeat center/cover;
}
.restaurant-slide04 {
  background: url('/assets/img/20230623/restaurant_img01.png') no-repeat center/cover;
}
/* residenceスライダー */
.residence-slide01 {
  background: url('/assets/img/residence_img02.png') no-repeat center/cover;
}
.residence-slide02 {
  background: url('/assets/img/residence_img03.png') no-repeat center/cover;
}
.residence-slide03 {
  background: url('/assets/img/residence_img01.png') no-repeat center/cover;
}
/* galleryスライダー */
.gallery-slide01 {
  background: url('/assets/img/20230623/gallery_photo_img01.png') no-repeat center/cover;
}
.gallery-slide02 {
  background: url('/assets/img/20230623/gallery_photo_img02.png') no-repeat center/cover;
}
.gallery-slide03 {
  background: url('/assets/img/photo_img02.png') no-repeat center/cover;
}
/* experienceスライダー */
.experience-slide01 {
  background: url('/assets/img/20230623/experience_img01.png') no-repeat center/cover;
}
.experience-slide02 {
  background: url('/assets/img/20230623/experience_img02.png') no-repeat center/cover;
}
.experience-slide03 {
  background: url('/assets/img/20230623/experience_img03.png') no-repeat center/cover;
}

@media (min-width: 1546px) {
  #mainMovie {
    height: auto;
    width: 100vw;
  }
}

@media (max-width: 1070px) {
  /* cuisine調整用 */
  .cuisine-wrap .cuisine-cont ul li .img-wrap {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  /* header調整用 */
  header .navigation {
    width: 70%;
  }
}

@media (max-width: 990px) {
  .restaurant-cont,
  .residence-cont,
  .gallery-cont,
  .experience-cont {
    width: 40%;
  }
  /* SP版メニュー */
  .hamburger-navigation {
    height: 100vh;
    opacity: 1;
    overflow-y: scroll;
    z-index: 9998;
  }
  .hamburger-navigation-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .hamburger-navigation-inner h1,
  .navToggle_close {
    display: none;
  }
  .hamburger-navigation-inner ul {
    display: block;
    text-align: center;
    font-size: 4vw;
    width: 100%;
  }
  .hamburger-navigation-inner ul li {
    padding: 20px 0;
  }
}

@media (max-width: 986px) {
  .header-inner {
    padding: 25px 20px 0;
    z-index: 9999;
  }
  header h1 {
    width: 140px;
  }
  header .navigation {
    display: none !important;
  }
  .nav-toggle-wrap {
    display: block;
    top: 30px;
    right: 20px;
    z-index: 9999;
  }
  .nav-toggle-wrap .menu-text {
    font-size: 12px;
  }
}

@media (max-width: 920px) {
  /* hamburger-navigation調整用 */
  .hamburger-navigation-inner ul {
    width: 90%;
  }
  .hamburger-navigation-inner ul li {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  section {
    overflow: hidden;
  }
  /* SP版ヘッダー */
  .header-inner {
    padding: 25px 20px 0;
    z-index: 9999;
  }
  header h1 {
    width: 22vw;
  }
  header .navigation {
    display: none !important;
  }
  .nav-toggle-wrap {
    display: block;
    top: 30px;
    right: 20px;
    z-index: 9999;
  }
  .nav-toggle-wrap .menu-text {
    font-size: 12px;
  }
  .about-wrap .about-cont,
  .contact-wrap {
    padding: 40px 30px 70px;
  }
  .cuisine-wrap .cuisine-cont {
    padding: 60px 30px 40px;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  section h2,
  .about-wrap .about-cont h2 {
    font-size: 8vw;
    text-align: center;
  }
  section h2::after,
  .restaurant-cont h2::after {
    margin: 30px auto 40px;
  }
  section h2 small {
    font-size: 34%;
  }
  section p {
    text-align: left;
    line-height: 2.2;
  }
  
  /* SP版MOREボタン */
  .more-btn span {
    font-size: 14px;
    text-align: center;
  }
  .more-btn::after {
    top: 27px;
    right: 5%;
  }
  section a:hover .more-btn::before,
  .restaurant-cont .more-btn:hover::before,
  .residence-cont .more-btn:hover::before,
  .gallery-cont .more-btn:hover::before,
  .experience-cont .more-btn:hover::before {
    right: -2px;
  }
  section a:hover .more-btn::after,
  .restaurant-cont .more-btn:hover::after,
  .residence-cont .more-btn:hover::after,
  .gallery-cont .more-btn:hover::after,
  .experience-cont .more-btn:hover::after {
    border-right: 1px solid;
    width: 47px;
    right: 5%;
    animation: none;
  }
  .restaurant-wrap .restaurant-cont .more-btn-wrap,
  .residence-wrap .residence-cont .more-btn-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .restaurant-cont .more-btn,
  .residence-cont .more-btn,
  .gallery-cont .more-btn,
  .experience-cont .more-btn {
    text-align: center;
  }
  .restaurant-cont .more-btn::after,
  .residence-cont .more-btn::after,
  .cuisine-cont .more-btn::after,
  .gallery-cont .more-btn::after,
  .experience-cont .more-btn::after {
    top: 15px;
    left: 24px;
  }
  .restaurant-wrap .restaurant-cont .more-btn {
    color: #fff;
  }
  .restaurant-wrap .restaurant-cont .more-btn-wrap {
    bottom: -250px;
  }
  .residence-wrap .residence-cont .more-btn-wrap {
    bottom: -230px;
  }
  .cuisine-cont .more-btn {
    display: inline-block;
    overflow: hidden;
    height: 40px;
    width: 100px;
    text-align: center;
  }
  .cuisine-cont .more-btn::after {
    left: 1px;
  }
  .cuisine-wrap .cuisine-cont ul li a:hover .more-btn::after {
    -ms-transform: skewX(45deg);
    -webkit-transform: skewX(45deg);
    transform: skewX(45deg);
    animation: none;
  }
  
  .nav-toggle-wrap.active .nav-toggle span:nth-child(1) {
    top: 40%;
    left: 10%;
    width: 100%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .nav-toggle-wrap.active .nav-toggle span:nth-child(2) {
    width: 0;
    top: 2px;
    left: 3px;
    -webkit-transform: translate(10px,0);
    -ms-transform: translate(10px,0);
    transform: translate(10px,0);
  }
  .nav-toggle-wrap.active .nav-toggle span:nth-child(3) {
    top: 40%;
    left: 10%;
    width: 100%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  
  /* SP版メニュー */
  .hamburger-navigation {
    height: 100vh;
    opacity: 1;
    overflow-y: scroll;
    z-index: 9998;
  }
  .hamburger-navigation-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .hamburger-navigation-inner h1,
  .navToggle_close {
    display: none;
  }
  .hamburger-navigation-inner ul {
    display: block;
    text-align: center;
    font-size: 4vw;
    width: 100%;
  }
  .hamburger-navigation-inner ul li {
    padding: 20px 0;
  }
  
  /* SP版メインビジュアル */
  #mainMovie {
    display: none;
  }
  .main-visual .main-text {
    left: 7%;
    right: 0;
    bottom: 20%;
    font-size: 1.4rem;
    color: #fff;
    top: 58%;
  }
  .sp-main {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
  }
  .main-slide-wrap .swiper-button-prev,
  .main-slide-wrap .swiper-button-next,
  .restaurant-slide-wrap .swiper-button-prev,
  .restaurant-slide-wrap .swiper-button-next,
  .residence-slide-wrap .swiper-button-prev,
  .residence-slide-wrap .swiper-button-next,
  .gallery-slide-wrap .swiper-button-prev,
  .gallery-slide-wrap .swiper-button-next,
  .experience-slide-wrap .swiper-button-prev,
  .experience-slide-wrap .swiper-button-next {
    display: none;
  }
  .reservations-btn {
    bottom: 40px;
    padding: 0;
    width: 50px;
    height: 150px;
    /*background: #1c3c66 url('../img/reservations_phone_img.png') no-repeat top 15px center/12px;*/
  }
  .reservations-btn:hover {
    color: #1c3c66;
    /*background: #1c3c66 url('../img/reservations_phone_img.png') no-repeat top 15px center/12px;*/
  }
  .reservations-restaurant-btn {
    bottom: 340px;
    background: #977F59;
  }
  .reservations-hotel-btn {
    bottom: 190px;
  }
  .for-foreigners-btn {
    height: 50px;
    width: 150px;
    right: -50px;
    bottom: 90px;
  }
  .scroll {
    display: none;
  }
  
  /* SP版topics */
  .topics-wrap {
    padding: 30px 0 0;
  }
  .topics-inner {
    flex-wrap: wrap;
  }
  .topics-inner .title-wrap {
    width: 100%;
    text-align: center;
  }
  .topics-inner .title-wrap h2 {
    margin: 0;
  }
  .swiper-container.topics-slide-wrap {
    padding: 20px 0 70px;
    width: 100%;
  }
  .topics-slide-wrap .topics-slide dl {
    font-size: 11px;
    padding: 0px 22px;
    letter-spacing: .1rem;
  }
  .topics-slide-wrap .topics-slide dl dt {
    margin-right: 10px;
  }
  .topics-slide-wrap .topics-slide dl dt::after {
    top: 0%;
    transform: translateY(0);
    left: 107%;
  }
  .topics-slide-wrap .topics-slide dl dd {
    margin: 0 0 0 10px;
  }
  .topics-navigation-wrap {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 35px;
  }
  .topics-slide-wrap .swiper-button-prev,
  .topics-slide-wrap .swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .topics-slide-wrap .swiper-button-prev {
    right: 35px;
  }
  .topics-slide-wrap .swiper-button-prev i,
  .topics-slide-wrap .swiper-button-next i {
    font-size: 10px;
  }

  /* SP版about */
  .about-wrap .about-bg-wrap {
    height: 300px;
  }
  .about-wrap .about-bg {
    background: url('../img/20230623/about_img_sp.png') no-repeat center/cover;
  }
  .about-wrap a:hover .about-bg,
  .restaurant-wrap a:hover > div,
  .residence-wrap a:hover > div,
  .gallery-wrap a:hover > div,
  .experience-wrap a:hover > div {
    -webkit-transform: none !important;
    -moz-transform: none !important;
    -o-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  /* SP版RESTAURANT */
  .restaurant-cont,
  .residence-cont {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 30px;
    color: #fff;
  }
  .restaurant-cont h2::after,
  .residence-cont h2::after {
    margin: 30px auto;
    border-bottom: 1px solid #fff;
  }
  .restaurant-slide-wrap a.swiper-slide div,
  .residence-slide-wrap a.swiper-slide div {
    height: 640px;
  }

  /* SP版cuisine */
  .cuisine-wrap .cuisine-cont ul {
    flex-wrap: wrap;
  }
  .cuisine-wrap .cuisine-cont ul li {
    width: 100%;
    max-width: 100%;
  }
  .cuisine-wrap .cuisine-cont ul li {
    margin: 0 0 50px;
  }
  .cuisine-wrap .cuisine-cont ul li:not(:last-child) {
    margin-right: 0;
  }
  .about-wrap a:hover,
  .cuisine-wrap .cuisine-cont ul li a:hover {
    opacity: 1;
  }
  .cuisine-wrap .cuisine-cont ul li img {
    width: 100%;
        box-shadow: 0px 0px 17px 2px rgba(27,27,27,0.4);
  }
  .cuisine-wrap .cuisine-cont ul li h3 {
    margin: 20px 0 5px;
  }
  .cuisine-wrap .cuisine-cont ul li p {
    margin-bottom: 30px;
  }

  /* SP版gallery */
  .gallery-slide-wrap a.swiper-slide div {
    height: 320px;
  }
  .gallery-wrap .gallery-cont {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .gallery-wrap .gallery-cont h2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .gallery-wrap .gallery-cont .more-btn-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -170px;
  }

  /* SP版experience */
  .experience-slide-wrap a.swiper-slide div {
    height: 320px;
  }
  .experience-wrap .experience-cont {
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
  .experience-wrap .experience-cont h2 {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .experience-wrap .experience-cont .more-btn-wrap {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -170px;
  }

  /* SP版contact */
  .contact-wrap .contact-cont h2 {
    margin-bottom: 30px;
  }
  .contact-wrap .contact-cont h2::after {
    display: block;
    border-bottom: 1px solid #fff;
  }
  .contact-wrap .contact-cont h2 .pc-only {
    display: none;
  }
  .contact-wrap .contact-cont p {
    margin-bottom: 40px;
    font-size: 12px;
  }
  .contact-wrap .contact-cont ul {
    flex-wrap: wrap;
    padding: 20px 0;
    width: 100%;
  }
  .contact-wrap .contact-cont ul li {
    width: 100%;
  }
  .contact-wrap .contact-cont ul li:not(:last-child) {
    margin-bottom: 20px;
  }
  .contact-wrap .contact-cont .phone-number {
    font-size: 9.2vw;
    padding-left: 12%;
    white-space: nowrap;
    background: url('../img/phone_img.png') no-repeat top 7px left/10%;
    pointer-events: auto;
  }
  .contact-wrap .contact-cont .contact-btn {
    padding: 20px 0;
    border: none;
    background: #1e1e1e;
    font-size: 14px;
  }
  .contact-wrap .contact-cont .contact-btn:hover {
    color: #fff;
  }
  .contact-wrap .contact-cont .contact-btn:hover::after {
    background: #1e1e1e;
  }

  /* SP版footer */
  .footer {
    justify-content: center;
    flex-wrap: wrap-reverse;
    padding: 40px 30px 50px;
  }
  .footer ul {
    flex-wrap: wrap;
  }
  .footer ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .footer .footmenu ul li:not(:last-child) {
    border-right: none;
  }
  .footer .footer-logo-wrap {
    margin-top: 20px;
  }

  .footer .sns {
    display: flex;
    justify-content: center;
  }
  .footer img.fb {
    width: 14px;
    margin: 0 20px;
  }
  .footer img.instagram {
    width: 30px;
    margin: 0 20px;
  }

  /* SP版スライダー画像 */
  /* SP版メインビジュアルスライダー */
  .main-slide01 {
    background: url('/assets/img/20230623/main_img01_sp.png') no-repeat center/cover;
  }
  .main-slide02 {
    background: url('/assets/img/20230623/main_img02_sp.png') no-repeat center/cover;
  }
  .main-slide03 {
    background: url('/assets/img/20230623/main_img03_sp.png') no-repeat center/cover;
  }
  .main-slide04 {
    background: url('/assets/img/20230623/main_img04_sp.png') no-repeat center/cover;
  }
  .main-slide05 {
    background: url('/assets/img/20230623/main_img05_sp.png') no-repeat center/cover;
  }
  /* SP版RESTAURANTスライダー */
  .restaurant-slide01 {
    background: url('/assets/img/restaurant_img01_sp.png') no-repeat center/cover;
  }
  .restaurant-slide02 {
    background: url('/assets/img/restaurant_img02_sp.png') no-repeat center/cover;
  }
  .restaurant-slide03 {
    background: url('/assets/img/restaurant_img03_sp.png') no-repeat center/cover;
  }
  .restaurant-slide04 {
    background: url('/assets/img/20230623/restaurant_img01_sp.png') no-repeat center/cover;
  }
  /* SP版residemceスライダー */
  .residence-slide01 {
    background: url('/assets/img/residence_img01_sp.png') no-repeat center/cover;
  }
  .residence-slide02 {
    background: url('/assets/img/residence_img02_sp.png') no-repeat center/cover;
  }
  .residence-slide03 {
    background: url('/assets/img/residence_img03_sp.png') no-repeat center/cover;
  }
  /* SP版galleryスライダー */
  .gallery-slide01 {
    background: url('/assets/img/20230623/gallery_photo_img01_sp.png') no-repeat center/cover;
  }
  .gallery-slide02 {
    background: url('/assets/img/20230623/gallery_photo_img02_sp.png') no-repeat center/cover;
  }
  .gallery-slide03 {
    background: url('/assets/img/photo_img02_sp.png') no-repeat center/cover;
  }
  /* SP版experienceスライダー */
  .experience-slide01 {
    background: url('/assets/img/20230623/experience_img01_sp.png') no-repeat center/cover;
  }
  .experience-slide02 {
    background: url('/assets/img/20230623/experience_img02_sp.png') no-repeat center/cover;
  }
  .experience-slide03 {
    background: url('/assets/img/20230623/experience_img03_sp.png') no-repeat center/cover;
  }
}

@media (max-width: 617px) {
  .sp-main {
    width: auto;
    height: 100vh;
  }
}

/* firefox */
.firefox section h2,
.firefox .cuisine-wrap .cuisine-cont ul li h3,
.firefox .contact-wrap .contact-cont .phone-number {
  font-weight: 600;
}
.firefox .about-wrap .about-cont .more-btn,
.firefox .cuisine-wrap .cuisine-cont ul li .more-btn {
  position: static;
}
.firefox .about-wrap .about-cont .more-btn::after,
.firefox .cuisine-wrap .cuisine-cont ul li .more-btn::after {
  top: 29px;
}

/* IE */
body.ie-11,
.ie-11 section {
  overflow-x: hidden;
}
/* .ie-11 #mainMovie {
  height: auto;
} */
.ie-11 section h2,
.ie-11 .cuisine-wrap .cuisine-cont ul li h3,
.ie-11 .contact-wrap .contact-cont .phone-number {
  font-weight: 600;
}
.ie-11 section h2 small,
.ie-11 .cuisine-wrap .cuisine-cont ul li h3 small {
  font-weight: normal;
}
.ie-11 .restaurant-slide-wrap a.swiper-slide,
.ie-11 .residence-slide-wrap a.swiper-slide,
.ie-11 .gallery-slide-wrap a.swiper-slide {
  display: block;
}
.ie-11 .restaurant-slide-wrap a.swiper-slide div,
.ie-11 .residence-slide-wrap a.swiper-slide div,
.ie-11 .gallery-slide-wrap a.swiper-slide div {
  overflow-y: hidden;
}

/* firefox */
/* .firefox #mainMovie {
  height: auto;
} */


/* --------------- */
/* page_all */
/* --------------- */
h1 {
  /*font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"*/
  /*font-family: 'Lato', Calibri, Arial, sans-serif;*/
  font-weight: 500;
  letter-spacing: .10em;
}

.lead-wrap {
  padding: 100px 30px 60px;
  text-align: center;
  background: #fff;
}

.main-ttl {
}
  .main-ttl .main-ttl-bg {
    background-repeat: no-repeat;
    background-size: cover;
    height: 480px;
    position: relative;
  }
  .main-ttl .main-ttl-bg .main-ttl-box {
    position: absolute;
    left: 90px;
    bottom: 0;
    padding: 30px 35px;
    background: #fff;
  }
  .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner {
  }
  .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner h1 {
    line-height: 0.9;
    font-size: 40px;
  }
  .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner span {
    font-size: 13px;
    display: block;
  }
  .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner span::before {
    display: block;
    content: '';
    border-bottom: 1px solid #000;
    width: 24px;
    margin: 20px 0;
  }

.photo-wrap {
  padding: 0 30px;
  text-align: center;
}
  .photo-wrap .photo-wrap-inner {
    padding: 0 60px;
    margin: 0 auto;
  }
  .photo-wrap .photo-wrap-inner ul {
  }
  .photo-wrap .photo-wrap-inner li:first-child {
    width: 30%;
    float: left;
    margin-bottom: 5%;
  }
  .photo-wrap .photo-wrap-inner li:nth-child(2) {
    width: 65%;
    float: left;
    margin-left: 5%;
    margin-bottom: 5%;
  }
  .photo-wrap .photo-wrap-inner li:nth-child(3) {
    width: 30%;
    float: left;
    margin: 0 0 5% 5%;
  }
  .photo-wrap .photo-wrap-inner li:nth-child(4) {
    width: 30%;
    float: right;
  }
  .photo-wrap .photo-wrap-inner li:nth-child(5) {
    width: 65%;
  }
  .photo-wrap .photo-wrap-inner li img {
    width: 100%;
  }

  .cont-left-wrap {
  }
  .cont-left-wrap .cont-left-inner {
    padding: 100px;
    display: flex;
  }
  .cont-left-wrap .cont-left-inner .head-left {
    width: 35%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .cont-left-wrap .cont-left-inner .head-left .cont-logo {
    height: 150px;
    width: 150px;
    margin: auto 0 0;
  }
  .cont-left-wrap .cont-left-inner .head-left .cont-logo.fixed1 {
    height: 200px;
    width: unset;
  }
  .cont-left-wrap .cont-left-inner .head-left h2 {
    align-self: flex-start;
  }
  .cont-left-wrap .cont-left-inner .head-left h2::after {
    margin: 40px 0;
  }
  .cont-left-wrap .cont-left-inner .head-left a {
    text-decoration: underline;
    transition: .3s;
  }
  .cont-left-wrap .cont-left-inner .head-left a:hover {
    text-decoration: none;
  }
  .cont-left-wrap .cont-left-inner .head-left .btn-left.pc-only {
    display: flex;
  }
  .cont-left-wrap .cont-left-inner .head-left a .no-underline {
    text-decoration: none !important;
  }
  .cont-left-wrap .cont-left-inner .img-left {
    width: 65%;
    margin-left: 100px;
  }
  .cont-left-wrap .cont-left-inner .btn-left {
    position: relative;
    background: #1C3C66;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 70%;
    max-width: 300px;
    margin-top: 2rem;
    cursor: pointer;
    transition: all .3s;
  }
  .cont-left-wrap .cont-left-inner .btn-left.sp-only {
    display: none;
  }
  .cont-left-wrap .cont-left-inner .btn-left img {
    position: absolute;
    top: auto;
    bottom: auto;
    right: 0;
    width: 30px;
    height: 25px;
    padding: 7px 5px 5px;
    margin-right: 10px;
  }
  .cont-left-wrap .cont-left-inner .btn-left:hover {
    opacity: 0.7;
  }
  .cont-left-wrap .cont-left-inner .btn-left {
    font-size: 13px;
    font-family: 'Noto Sans JP', sans-serif;
    color: white;
    text-align: left;
    letter-spacing: 0.1rem;
  }
  .cont-left-wrap .cont-left-inner .img-left img {
    width: 100%;
  }
  .cont-right-wrap {
  }
  .cont-right-wrap .cont-right-inner {
    padding: 100px;
    display: flex;
  }
  .cont-left-wrap .cont-left-inner.cont-right-inner {
    flex-direction: row-reverse;
  }
  .cont-left-wrap .cont-left-inner.cont-right-inner .img-left {
    margin-left: 0;
    margin-right: 100px;
  }

/* --------------- */
/* about */
/* --------------- */
#page-about {
}
  #page-about header .navigation li a {
    color: #1b1b1b;
  }
  #page-about header .navigation a span {
    color: #1b1b1b;
  }
  #page-about .main-ttl .main-ttl-bg {
    background: url(/assets/img/about/title.png);
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-about .logo-wrap {
    padding: 100px 60px;
    text-align: center;
  }
  #page-about .logo-wrap .logo-img {
    width: 9%;
    margin: 0 auto 60px;
  }
  #page-about .logo-wrap .logo-img h2 {
    display: block;
  }
  #page-about .logo-wrap .logo-img h2::after {
    content: none;
  }
  #page-about .logo-wrap .logo-img img {
    width: 100%;
  }
  #page-about .logo-wrap .logo-wrap-inner {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  #page-about .logo-wrap .logo-wrap-inner .cont-box {
    width: 42%;
    margin: 0 auto;
  }
  #page-about .logo-wrap .logo-wrap-inner .cont-box h3 {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }
  #page-about .logo-wrap .logo-wrap-inner .cont-box p {
    text-align: left;
  }

/* --------------- */
/* RESTAURANT */
/* --------------- */
#page-restaurant {
}
  #page-restaurant header .navigation li a {
    color: #1b1b1b;
  }
  #page-restaurant header .navigation a span {
    color: #1b1b1b;
  }
  #page-restaurant .lead-wrap {
    padding: 4rem 30px 2rem;
  }
  #page-restaurant .cont-left-wrap.pdg-80 {
    padding-top: 80px;
  }
  #page-restaurant .main-ttl .main-ttl-bg {
    background: url('/assets/img/20230623/restaurant_title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-restaurant .main-ttl .main-ttl-bg .restaurant-bg {
    background: url('/assets/img/restaurant/ph1.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-restaurant .summary-wrap {
    text-align: center;
  }
  #page-restaurant .summary-wrap .summary-wrap-bg {
    overflow: hidden; 
  }
  #page-restaurant .main-ttl .restaurant-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('/assets/img/restaurant/ph1.png') no-repeat center/cover;
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
  }
  #page-restaurant .summary-wrap .summary-wrap-bg .restaurant-bg-list {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  #page-restaurant .summary-wrap .summary-wrap-bg .restaurant-bg-list img {
    width: 32%;
  }

  #page-restaurant .summary-wrap .summary-wrap-bg .restaurant-bg-list img:nth-child(n+4) {
    margin-top: 2%;
  }
  
  #page-restaurant .summary-wrap .summary-wrap-inner {
    padding: 60px 40px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
  }
  #page-restaurant .summary-wrap .summary-wrap-inner .cont-box {
    margin: 0 auto 50px;
  }
  #page-restaurant .summary-wrap .summary-wrap-inner .cont-box h3 {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }
  #page-restaurant .summary-wrap .summary-wrap-inner .cont-box p {
  }
  #page-restaurant .dish {
    text-align: center;
    padding:100px 60px 80px;
  }
  #page-restaurant .dish .head-center h2 {
    font-size: 36px;
  }
  #page-restaurant .dish .head-center h2::after {
    margin: 40px auto;
  }
  #page-restaurant .dish p {
    margin-bottom: 80px;
  }
  #page-restaurant .dish .dish-inner {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    margin: 0 auto;
  }
  #page-restaurant .dish .dish-inner p {
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  #page-restaurant .dish .dish-inner .dish-box {
    width: 30.333333%;
    margin: 0 1.5% 0;
  }
  #page-restaurant .dish .dish-inner .dish-box .dish-box-img {
    margin-bottom: 40px;
  }
  #page-restaurant .dish .dish-inner .dish-box .dish-box-img img {
    width: 100%;
  }
  #page-restaurant .dish .dish-inner .dish-box h3 {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }
  #page-restaurant .dish .dish-inner .dish-box h3 {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
  }
  #page-restaurant .dish .dish-inner .dish-comment {
    margin-top: 60px;
  }
  
  #page-restaurant .course-wrap {
    text-align: center;
  }
  #page-restaurant .course-wrap .course-wrap-inner {
    padding: 0 60px 100px;
    text-align: center;
    margin: 0 auto;
  }
  #page-restaurant .course-wrap .course-wrap-inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #page-restaurant .course-wrap .course-wrap-inner li {
    width: 27%;
    margin: 0 3% 6%;
  }
  #page-restaurant .course-wrap .course-wrap-inner li:first-child {
  }
  #page-restaurant .course-wrap .course-wrap-inner li:nth-child(16) {
    margin-bottom: 0;
  }
  #page-restaurant .course-wrap .course-wrap-inner li:nth-child(17) {
    margin-bottom: 0;
  }
  #page-restaurant .course-wrap .course-wrap-inner li:nth-child(18) {
    margin-bottom: 0;
  }
  #page-restaurant .course-wrap .course-wrap-inner li img {
    width: 100%;
  }
  #page-restaurant .cuisine-wrap {
    text-align: center;
    margin-top: 100px;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner {
    padding: 0 60px 100px;
    text-align: center;
    margin: 0 auto;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner .head-center {
    margin-bottom: 60px;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li {
    width: 29%;
    margin: 0 2.1% 6%;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:first-child {
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(7) {
    margin-bottom: 60px;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(8) {
    margin-bottom: 60px;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(9) {
    margin-bottom: 60px;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(10) {
    margin-bottom: 0;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(11) {
    margin-bottom: 0;
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li img {
    width: 100%;
    /*-webkit-box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);
    -moz-box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);
    box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);*/
  }
  #page-restaurant .cuisine-wrap .cuisine-wrap-inner li span {
    display: block;
    margin-top: 14px;
    font-size: 16px;
    text-align: left;
  }

/* --------------- */
/* residence */
/* --------------- */
#page-residence {
}
  #page-residence header .navigation li a {
    color: #1b1b1b;
  }
  #page-residence header .navigation a span {
    color: #1b1b1b;
  }
  #page-residence .main-ttl .main-ttl-bg {
    background: url('/assets/img/residence/title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-residence .summary-wrap {
  }
  #page-residence .summary-wrap .summary-wrap-bg {
    margin-bottom: 140px;
    /*height: 468px;*/
    height: 38.6vw;
    overflow: hidden;
  }
  #page-residence .summary-wrap .summary-wrap-bg .residence-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('/assets/img/residence/ph1.png') no-repeat center/cover;
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
  }
  #page-residence .room-wrap {
    text-align: center;
    padding: 100px 0 40px;
    background: #ddd;
    margin-top: 140px;
  }
  #page-residence .room-wrap .room-wrap-inner {
    padding: 0 60px;
    text-align: center;
    margin: 0 auto;
  }
  #page-residence .room-wrap .room-wrap-inner ul {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
  }
  #page-residence .room-wrap .room-wrap-inner li {
    width: 27%;
    margin: 0 3% 19%;
  }
  #page-residence .room-wrap .room-wrap-inner .cont-left-wrap {
    text-align: left;
  }
  #page-residence .room-wrap .room-wrap-inner .cont-left-wrap h2 {
    font-size: 34px;
  }
  #page-residence .room-wrap .room-wrap-inner .cont-left-wrap .img-left {
    width: 45%;
  }
  #page-residence .room-wrap .room-wrap-inner .cont-left-wrap .head-left {
    width: 65%;
  }
  #page-residence .room-wrap .room-wrap-inner .room-box {
    display: flex;
    flex-wrap: wrap;
  }
  #page-residence .room-wrap .room-wrap-inner .room-box .roomset {
    width: 50%;
    padding: 50px;
  }
  #page-residence .room-wrap .room-wrap-inner .room-box .roomset h2 {
    font-size: 24px;
  }
  #page-residence .room-wrap .room-wrap-inner .room-box .roomset h2::after {
    margin: 25px auto;
  }
  #page-residence .room-wrap .room-wrap-inner .room-box .roomset img {
    width: 100%;
    margin-bottom: 40px;
  }
  #page-residence .room-wrap .room-wrap-inner .room-box .roomset p {
    text-align: left;
    padding: 0 40px;
  }

/* --------------- */
/* shop */
/* --------------- */
#page-shop {
}
  #page-shop header .navigation li a {
    color: #1b1b1b;
  }
  #page-shop header .navigation a span {
    color: #1b1b1b;
  }
  #page-shop .main-ttl .main-ttl-bg {
    background: url('/assets/img/shop/title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-shop .summary-wrap {
  }
  #page-shop .summary-wrap .summary-wrap-bg {
    margin-bottom: 140px;
    /*height: 468px;*/
    height: 38.6vw;
    overflow: hidden;
  }
  #page-shop .summary-wrap .summary-wrap-bg .shop-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('/assets/img/20230623/gallery_photo_ph01.png') no-repeat center/cover;
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
  }

/* --------------- */
/* cuisine */
/* --------------- */
#page-cuisine {
}
  #page-cuisine header .navigation li a {
    color: #1b1b1b;
  }
  #page-cuisine header .navigation a span {
    color: #1b1b1b;
  }
  #page-cuisine .main-ttl .main-ttl-bg {
    background: url('/assets/img/cuisine/title.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 60px;
  }
  #page-cuisine .cont-left-wrap .cont-left-inner {
    padding-bottom: 60px;
  }
  #page-cuisine .cuisine-wrap {
    text-align: center;
    margin-top: 100px;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner {
    padding: 0 60px 100px;
    text-align: center;
    margin: 0 auto;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner .head-center {
    margin-bottom: 60px;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li {
    width: 29%;
    margin: 0 2.1% 6%;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:first-child {
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(7) {
    margin-bottom: 60px;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(8) {
    margin-bottom: 60px;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(9) {
    margin-bottom: 60px;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(10) {
    margin-bottom: 0;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(11) {
    margin-bottom: 0;
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li img {
    width: 100%;
    /*-webkit-box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);
    -moz-box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);
    box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);*/
  }
  #page-cuisine .cuisine-wrap .cuisine-wrap-inner li span {
    display: block;
    margin-top: 14px;
    font-size: 16px;
    text-align: left;
  }

/* --------------- */
/* experience */
/* --------------- */
#page-experience {
}
  #page-experience header .navigation li a {
    color: #1b1b1b;
  }
  #page-experience header .navigation a span {
    color: #1b1b1b;
  }
  #page-experience .main-ttl .main-ttl-bg {
    background: url('/assets/img/20230623/experience_title.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 60px;
  }
  #page-experience .summary-wrap .summary-wrap-bg {
    margin-bottom: 140px;
    /*height: 468px;*/
    height: 38.6vw;
    overflow: hidden;
  }
  #page-experience .summary-wrap .summary-wrap-bg .experience-bg {
    position: relative;
    width: 100%;
    height: 100%;
    background: url('/assets/img/20230623/experience/experience_ph01.png') no-repeat center/cover;
    -moz-transition: -moz-transform 0.3s linear;
    -webkit-transition: -webkit-transform 0.3s linear;
    -o-transition: -o-transform 0.3s linear;
    -ms-transition: -ms-transform 0.3s linear;
    transition: transform 0.3s linear;
  }
  #page-experience .cont-left-wrap .cont-left-inner {
    padding-bottom: 60px;
  }
  #page-experience .cuisine-wrap {
    text-align: center;
    margin-top: 100px;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner {
    padding: 0 60px 100px;
    text-align: center;
    margin: 0 auto;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner .head-center {
    margin-bottom: 60px;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li {
    width: 29%;
    margin: 0 2.1% 6%;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li:first-child {
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(7) {
    margin-bottom: 60px;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(8) {
    margin-bottom: 60px;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(9) {
    margin-bottom: 60px;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(10) {
    margin-bottom: 0;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(11) {
    margin-bottom: 0;
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li img {
    width: 100%;
    /*-webkit-box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);
    -moz-box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);
    box-shadow: 0px 0px 22px 0px rgba(110,110,110,1);*/
  }
  #page-experience .cuisine-wrap .cuisine-wrap-inner li span {
    display: block;
    margin-top: 14px;
    font-size: 16px;
    text-align: left;
  }

/* --------------- */
/* plan */
/* --------------- */
#page-plan {
}
  #page-plan header .navigation li a {
    color: #1b1b1b;
  }
  #page-plan header .navigation a span {
    color: #1b1b1b;
  }
  #page-plan .main-ttl .main-ttl-bg {
    background: url('/assets/img/plan/title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }

/* --------------- */
/* gallery */
/* --------------- */
#page-gallery {
}
  #page-gallery header .navigation li a {
    color: #1b1b1b;
  }
  #page-gallery header .navigation a span {
    color: #1b1b1b;
  }
  #page-gallery .main-ttl .main-ttl-bg {
    background: url('/assets/img/photo/title.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 140px;
  }
  #page-gallery .photo-wrap {
    margin-bottom: 5%;
  }
  #page-gallery .photo-wrap .photo-wrap-inner .head-center {
    padding-top: 140px;
  }
  #page-gallery .photo-wrap.end {
    margin-bottom: 160px;
  }

/* --------------- */
/* access */
/* --------------- */
#page-access {
}
  #page-access header .navigation li a {
    color: #1b1b1b;
  }
  #page-access header .navigation a span {
    color: #1b1b1b;
  }
  #page-access .main-ttl .main-ttl-bg {
    background: url('/assets/img/access/title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-access .access-wrap {
    padding: 80px 60px;
  }
  #page-access .access-wrap .access-wrap-inner {
    padding: 55px;
    background: #1c3c66;
  }
  #page-access .access-wrap .access-wrap-inner .map-wrap {
    display: flex
  }
  #page-access .access-wrap .access-wrap-inner .map-wrap .map {
    width: 65%;
    margin-right: 40px;
  }
  #page-access .access-wrap .access-wrap-inner .map-wrap .map img {
    width: 100%;
  }
  #page-access .access-wrap .access-wrap-inner .head-left {
    color: #fff;
    font-size: 13px;
  }
  #page-access .access-wrap .access-wrap-inner .head-left p {
    margin-bottom: 15px;
  }
  #page-access .access-wrap .access-wrap-inner .head-left p.number a {
    display: inline-block;
  }
  #page-access .access-wrap .access-wrap-inner .head-left a {
    color: #fff;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
    text-decoration: underline !important;
    transition: .3s;
  }
  #page-access .access-wrap .access-wrap-inner .head-left a:hover {
    text-decoration: none !important;
  }
  #page-access .access-wrap .access-wrap-inner .head-left h2 {
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
  }
  #page-access .access-wrap .access-wrap-inner .head-left h2::after {
    margin: 20px 0;
    border-color: #fff; 
  }
  #page-access .access-wrap .access-wrap-inner .explain-wrap {
    margin-top: 70px;
  }
  #page-access .access-wrap .access-wrap-inner .explain {
    color: #fff;
    margin-bottom: 25px;
  }
  #page-access .access-wrap .access-wrap-inner .explain h3 {
    font-size: 13px;
    color: #fff;
    font-family: 'Noto Sans JP', sans-serif;
  }
  #page-access .access-wrap .access-wrap-inner .explain p {
    font-size: 11px;
    line-height: 2;
  }
  #page-access .access-wrap .access-wrap-inner .explain a {
    color: #fff;
    text-decoration: underline !important;
    transition: .3s;
    font-size: 12px;
  }

/* --------------- */
/* topics */
/* --------------- */
#page-topics {
}
  #page-topics .main-ttl .main-ttl-bg {
    background: url('/assets/img/about/title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-topics .topics-wrap {
    background: #fff;
    color: #1b1b1b;
  }
  #page-topics .topics-wrap .topics-wrap-inner {
    padding: 100px 80px 60px;
    display: flex;
    flex-wrap: wrap;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box {
    width: 29.333333%;
    margin: 0 2% 40px;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box a {
    transition: .3s;
    display: block;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box a:hover {
    opacity: .6;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box .topics-img {
    margin-bottom: 20px;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box .topics-img img {
    width: 100%;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box .topics-contents {
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box .topics-contents h3 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 0;
    min-height: 3em;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box .topics-contents span.date {
    display: inline-block;
    font-size: 12px;
    margin-bottom: 20px;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box .topics-contents p {
    line-height: 2.1;
  }
/* --------------- */
/* topics-detail */
/* --------------- */
#page-topics-detail {
}
  #page-topics-detail .main-ttl .main-ttl-bg {
    background: url('/assets/img/about/title.png');
    background-size: cover;
    background-repeat: no-repeat;
  }
  #page-topics-detail .topics-detail-inner {
    padding: 100px 160px 140px;
    text-align: center;
  }
  #page-topics-detail .topics-detail-inner .topics-box {
    margin: 0 auto;
    text-align: left;
    position: relative;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-img {
    margin-bottom: 30px
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-img img {
    width: 100%;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents {
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents span.date {
    margin-bottom: 50px;
    display: inline-block;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents img {
    width: 100%;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents .contents-inner h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
  }
  #page-topics-detail .topics-detail-inner .btn-top-back {
    width: 10em;
    margin: 0 auto;
  }
  #page-topics-detail .topics-detail-inner .btn-top-back a {
    margin-top: 80px;
    display: block;
    font-size: 14px;
  }
  #page-topics-detail .topics-detail-inner .btn-top-back a::after {
    content: '';
    position: absolute;
    border: 0.5px solid #1b1b1b;
    width: 5.5em;
    left: 0;
    right: 0;
    margin: 30px auto 0;
  }
  #page-topics-detail .topics-detail-inner .btn-top-back a:hover {
    opacity: .6;
  }


/* ------------------------------ */
/* sp */
/* ------------------------------ */
@media only screen and (max-width: 1250px) {
    .footer {
      justify-content: center;
      flex-wrap: wrap-reverse;
      padding: 40px 30px 50px;
    }
    .footer ul {
      flex-wrap: wrap;
    }
}

@media only screen and (min-width: 1200px) {
  header .navigation {
    width: 58%;
  }
}

@media only screen and (max-width: 1100px) {
    .footer {
      justify-content: center;
      flex-wrap: wrap-reverse;
      padding: 40px 30px 50px;
    }
    .footer ul {
      flex-wrap: wrap;
    }
}

@media only screen and (max-width: 930px) {
    .footer .footer-logo-wrap {
      margin-top: 30px;
    }
}

@media only screen and (max-width: 900px) {
  section h2, .about-wrap .about-cont h2 {
    font-size: 36px;
    text-align: center;
}
  .main-ttl {
  }
    .main-ttl .main-ttl-bg {
      position: relative;
    }
    .main-ttl .main-ttl-bg .main-ttl-box {
      left: 0;
      right: 0;
      bottom: -1px;
      width: 290px;
      margin: 0 auto;
      text-align: center; 
      padding: 40px 10px 30px;
    }
    .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner h1 {
      font-size: 36px;
    }
    .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner span::before {
      margin: 20px auto;
    }
    .lead-wrap {
      padding: 60px 30px 20px;
    }
    .cont-left-wrap .cont-left-inner {
      padding: 30px 30px 80px;
      display: block;
    }
    .cont-left-wrap .cont-left-inner .head-left {
      width: 100%;
      align-items: flex-start;
    }
    .cont-left-wrap .cont-left-inner .head-left h2 {
      align-self: center;
    }
    .cont-left-wrap .cont-left-inner .head-left .cont-logo {
      height: 100px;
      width: 100px;
      align-self: flex-start;
      margin: auto 0 2rem;
    }
    .cont-left-wrap .cont-left-inner .head-left .cont-logo.fixed1 {
      height: 130px;
      width: unset;
    }
    .cont-left-wrap .cont-left-inner .head-left .btn-left.pc-only {
      display: none;
    }
    .cont-left-wrap .cont-left-inner .img-left {
      width: 100%;
      margin: 0;
    }
    .cont-left-wrap .cont-left-inner .btn-left.sp-only {
      display: flex;
    }
    .cont-left-wrap .cont-left-inner .head-left h2::after {
      margin: 30px auto;
    }

  /* --------------- */
  /* sp_about */
  /* --------------- */
  #page-about .main-ttl .main-ttl-bg {
    background: url('/assets/img/about/title_sp.png') no-repeat center/cover;
  }
    #page-about .photo-wrap .photo-wrap-inner {
      padding: 0;
    }
    #page-about .logo-wrap {
      padding: 100px 30px;
    }
    #page-about .logo-wrap .logo-img {
      width: 30%;
      margin-bottom: 80px;
    }
    #page-about .logo-wrap .logo-wrap-inner {
      display: block;
    }
    #page-about .logo-wrap .logo-wrap-inner .cont-box {
      width: 100%;
    }
    #page-about .logo-wrap .logo-wrap-inner .cont-box p {
      margin-bottom: 60px;
    }

  /* --------------- */
  /* sp_restaurant */
  /* --------------- */
  #page-restaurant .main-ttl .main-ttl-bg {
    background: url('/assets/img/20230623/restaurant_title_sp.png') no-repeat center/cover;
  }
    #page-restaurant .summary-wrap .summary-wrap-inner {
      display: block;
      padding: 60px 30px 0;
    }
    #page-restaurant .summary-wrap .summary-wrap-inner .cont-box {
      width: 100%;
      margin-bottom: 100px;
    }
    #page-restaurant .summary-wrap .summary-wrap-inner .cont-box p {
    }
    #page-restaurant .dish {
      padding: 70px 30px 60px;
    }
    #page-restaurant .dish p {
      margin-bottom: 40px;
    }
    #page-restaurant .dish .dish-inner {
      display: block;
    }
    #page-restaurant .dish .dish-inner .dish-box {
      width: 100%;
      margin: 0 0 50px;
    }
    #page-restaurant .dish .dish-inner .dish-box .dish-box-img {
      margin-bottom: 30px;
    }
    #page-restaurant .dish .dish-inner .dish-box h3 {
      margin-bottom: 20px;
    }
    #page-restaurant .dish .dish-inner .dish-box p {
      margin-bottom: 30px;
    }
    #page-restaurant .dish .dish-inner .dish-comment {
      margin-top: 0px;
    }

    #page-restaurant .course-wrap .course-wrap-inner {
      padding: 0 0 30px;
    }
    #page-restaurant .course-wrap .course-wrap-inner li {
      width: 44%;
    }
    #page-restaurant .course-wrap .course-wrap-inner li:nth-child(5) {
      margin-bottom: 0;
    }
    #page-restaurant .course-wrap .course-wrap-inner li:nth-child(6) {
      margin-bottom: 0;
    }
    #page-restaurant .cuisine-wrap {
      padding-top: 50px;
      margin-top: 0;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner {
      padding: 0 20px 100px;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li {
      margin-bottom: 6%;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(7) {
      margin-bottom: 6%;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(8) {
      margin-bottom: 6%;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(9) {
      margin-bottom: 6%;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(10) {
      margin-bottom: 0;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li:nth-child(11) {
      margin-bottom: 0;
    }
    #page-restaurant .cuisine-wrap .cuisine-wrap-inner li span {
      font-size: 13px;
    }

  /* --------------- */
  /* sp_residence */
  /* --------------- */
  #page-residence .main-ttl .main-ttl-bg {
    background: url('/assets/img/residence/title_sp.png') no-repeat center/cover;
  }
    #page-residence .summary-wrap .summary-wrap-bg {
      margin-bottom: 80px;
      height: 468px;
    }
    #page-residence .summary-wrap .summary-wrap-bg .residence-bg {
      position: relative;
      width: 100%;
      height: 100%;
      background: url('/assets/img/20230623/residence/residence_sp.png') no-repeat center/cover;
      -moz-transition: -moz-transform 0.3s linear;
      -webkit-transition: -webkit-transform 0.3s linear;
      -o-transition: -o-transform 0.3s linear;
      -ms-transition: -ms-transform 0.3s linear;
      transition: transform 0.3s linear;
    }
    #page-residence .room-wrap {
      padding: 70px 30px 20px;
    }
    #page-residence .room-wrap .room-wrap-inner {
      padding: 0;
    }
    #page-residence .room-wrap .room-wrap-inner .room-box {
      display: block;
    }
    #page-residence .room-wrap .room-wrap-inner .room-box .roomset {
      padding: 0;
      width: 100%;
      margin-bottom: 70px;
    }
    #page-residence .room-wrap .room-wrap-inner .room-box .roomset h2 small {
      font-size: 12px;
    }
    #page-residence .room-wrap .room-wrap-inner .room-box .roomset p {
      padding: 0 20px;
    }
    #page-residence .room-wrap .room-wrap-inner .room-box .roomset img {
      margin-bottom: 30px;
    }

    #page-restaurant .summary-wrap .summary-wrap-bg .restaurant-bg-list {
    }

    #page-restaurant .summary-wrap .summary-wrap-bg .restaurant-bg-list img {
      width: 49%;
    }

    #page-restaurant .summary-wrap .summary-wrap-bg .restaurant-bg-list img:nth-child(n+3) {
      margin-top: 2%;
    }

  /* --------------- */
  /* sp_shop */
  /* --------------- */
  #page-shop .main-ttl .main-ttl-bg {
    background: url('/assets/img/20230623/gallery_photo_img01_sp.png') no-repeat center/cover;
  }
    #page-shop .summary-wrap .summary-wrap-bg {
      margin-bottom: 80px;
      /*height: 468px;*/
      /* height: 38.6vw; */
      height: 468px;
    }
    #page-shop .summary-wrap .summary-wrap-bg .shop-bg {
      position: relative;
      width: 100%;
      height: 100%;
      background: url('/assets/img/20230623/main_img05_sp.png') no-repeat center/cover;
      -moz-transition: -moz-transform 0.3s linear;
      -webkit-transition: -webkit-transform 0.3s linear;
      -o-transition: -o-transform 0.3s linear;
      -ms-transition: -ms-transform 0.3s linear;
      transition: transform 0.3s linear;
    }
    #page-shop .main-ttl .main-ttl-bg .main-ttl-box {
      width: 330px;
    }

  /* --------------- */
  /* sp_cuisine */
  /* --------------- */
  #page-cuisine .main-ttl .main-ttl-bg {
    background: url('/assets/img/cuisine/title.png') no-repeat center/cover;
  }
    #page-cuisine .lead-wrap {
      margin-bottom: 40px;
    }
    #page-cuisine .cuisine-wrap {
      padding-top: 50px;
      margin-top: 0;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner {
      padding: 0 20px 100px;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li {
      margin-bottom: 6%;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(7) {
      margin-bottom: 6%;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(8) {
      margin-bottom: 6%;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(9) {
      margin-bottom: 6%;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(10) {
      margin-bottom: 0;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li:nth-child(11) {
      margin-bottom: 0;
    }
    #page-cuisine .cuisine-wrap .cuisine-wrap-inner li span {
      font-size: 13px;
    }

  /* --------------- */
  /* sp_experience */
  /* --------------- */
    #page-experience .main-ttl .main-ttl-bg {
      background: url('/assets/img/20230623/experience_title_sp.png') no-repeat center/cover;
    }
    #page-experience .summary-wrap .summary-wrap-bg {
      height: 468px;
      overflow: hidden;
    }
    #page-experience .summary-wrap .summary-wrap-bg .experience-bg {
      position: relative;
      width: 100%;
      height: 100%;
      background: url('/assets/img/20230623/experience/experience_img02_sp.png') no-repeat center/cover;
      -moz-transition: -moz-transform 0.3s linear;
      -webkit-transition: -webkit-transform 0.3s linear;
      -o-transition: -o-transform 0.3s linear;
      -ms-transition: -ms-transform 0.3s linear;
      transition: transform 0.3s linear;
    }
    #page-experience .summary-wrap .summary-wrap-bg {
      margin-bottom: 80px;
    }
    #page-experience .lead-wrap {
      margin-bottom: 40px;
    }
    #page-experience .cuisine-wrap {
      padding-top: 50px;
      margin-top: 0;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner {
      padding: 0 20px 100px;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li {
      margin-bottom: 6%;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(7) {
      margin-bottom: 6%;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(8) {
      margin-bottom: 6%;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(9) {
      margin-bottom: 6%;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(10) {
      margin-bottom: 0;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li:nth-child(11) {
      margin-bottom: 0;
    }
    #page-experience .cuisine-wrap .cuisine-wrap-inner li span {
      font-size: 13px;
    }

  /* --------------- */
  /* sp_gallery */
  /* --------------- */
  #page-gallery .main-ttl .main-ttl-bg {
    background: url('/assets/img/photo/title.png') no-repeat center/cover;
  }
    #page-gallery .photo-wrap {
      margin-bottom: 8%;
    }
    #page-gallery .photo-wrap .photo-wrap-inner .head-center {
      padding-top: 70px;
    }
    #page-gallery .photo-wrap .photo-wrap-inner {
      padding: 0;
    }
    #page-gallery .main-ttl .main-ttl-bg {
      margin-bottom: 70px;
    }

  /* --------------- */
  /* sp_access */
  /* --------------- */
  #page-access .main-ttl .main-ttl-bg {
    background: url('/assets/img/access/title.png') no-repeat center/cover;
  }
  #page-access .access-wrap {
    padding: 60px 30px;
  }
  #page-access .access-wrap .access-wrap-inner {
    padding: 50px 20px 30px;
  }
  #page-access .access-wrap .access-wrap-inner .map-wrap {
    display: block;
  }
  #page-access .access-wrap .access-wrap-inner .map-wrap .map {
    width: 100%;
    margin: 0 auto;
  }
  #page-access .access-wrap .access-wrap-inner .head-left {
    padding: 40px 10px 0;
  }
  #page-access .access-wrap .access-wrap-inner .explain h3 {
    font-size: 12px;
  }

  /* --------------- */
  /* sp_topics */
  /* --------------- */
  #page-topics .main-ttl .main-ttl-bg {
    background: url('/assets/img/access/title.png') no-repeat center/cover;
  }
  #page-topics .topics-wrap .topics-wrap-inner {
    padding: 60px 40px 30px;
    display: block;
  }
  #page-topics .topics-wrap .topics-wrap-inner .topics-box {
    margin: 0 0 60px;
    width: 100%;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents .contents-inner h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }

  /* --------------- */
  /* sp_topics-detail */
  /* --------------- */
  #page-topics-detail .topics-detail-inner {
    padding: 80px 30px;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-img {
    margin-bottom: 20px;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents .contents-inner {
    padding: 0;
  }
  #page-topics-detail .topics-detail-inner .topics-box .topics-contents h3 {
    font-size: 26px;
  }
}


@media only screen and (max-width: 768px) {
  .main-ttl .main-ttl-bg .main-ttl-box .main-ttl-inner h1 {
    font-size: 2em;
  }
}

/*week_special_USEUM-SAGA-バナー*/
/*アリタハウス　バナー*/
.arita_ban 
{
  width: 100%;
  background-color: #2f2f2f;
  height: auto;
  padding-top: 6vh;
  padding-bottom: 6vh;
}
.arita_ban_inner_pc
{
  display: block;
  margin: auto;
  width: 80%;
  background: #ffffff;
height: auto;
}
.arita_ban_inner_pc a:hover
{
  opacity: .8;
}
.arita_ban_inner_pc a
{
  width: 100%;
  display: block;
  transition: .25s;
  opacity: 1;
}
.arita_ban_inner_pc img{
  width: 100%;
}
.arita_ban_inner_sp
{
  display: none;
}
@media only screen and (max-width: 768px)
{
  .arita_ban 
{
  height: auto;
  padding-top: 3vh;
  padding-bottom: 3vh;
}
  .arita_ban_inner_sp 
{
  display: block;
width: 100%;
height: auto;
}
.arita_ban_inner_sp img
{
width: 100%;
transition: .25s;
background-color: transparent;
}
.arita_ban_inner_pc
{
  display: none;
}
}

