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

* { 
  margin: 0px; 
  padding: 0px; 
  /* outline: 2px red solid; */
}

body {
  font-family: "Marcellus", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #5e5e5e;
  letter-spacing: .1em;
}

.container {
  margin: 0 40px;
}

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

p {
  line-height: 2.1;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 23px;
}

h6 {
  font-size: 16px;
}

p {
  font-size: 14px;
}

small {
  font-size: 12px;
}

.br-pc {
  display: block;
}

.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;
}

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

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

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

.sp-show {
  display: none;
}

.santen {
  letter-spacing: 0em;
  vertical-align: 4px;
}

.displaynone {
  display: none;
}


@media (max-width: 1280px) {

  .container {
    margin: 0 24px;
  }
  
  h1 {
    font-size: 34px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  h3 {
    font-size: 26px;
  }
  
  h4 {
    font-size: 22px;
  }
  
  h5 {
    font-size: 21px;
  }
  
  h6 {
    font-size: 14px;
  }
  
  p {
    font-size: 12px;
  }
  
  small {
    font-size: 10px;
  }
  
  .br-pc {
    display: none;
  }

  .br-sp {
    display: block;
  }
  
  .pic-pc {
    display: none;
  }
  
  .pic-sp {
    display: block;
  }
  
  .sp-show {
    display: block;
  }
  
  .pc-show {
    display: none;
  }

}



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

header {
  position: fixed;
  z-index: 10;
  top: -88px;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  padding: 20px 0;
  transition: .5s; /* アニメーションタイミング */
}

#fixed-header.is-show {
  top: 0;
}

.header-logo-txt-menu-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-txt {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header-logo img {
  height: 48px;
  margin-left: 4px;
}

.header-txt-wrap {
  display: flex;
  gap: 40px;
}

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

.header-txt-wrap a {
  position: relative;
}

.header-txt-wrap a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #5e5e5e;
  bottom: -1px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
  
.header-txt-wrap a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
 }


 @media (max-width: 1280px) {

  header {
    padding: 16px 0;
    top: -72px;
  }
  
  .header-logo img {
    height: 40px;
  }
  
  .header-txt p {
    font-size: 9px;
  }
  
  .header-logo-txt {
    gap: 24px;
  }

 }



/* ハンバーガー */

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

.hamburger {
  width: 50px;
  margin-left: 40px;
}

.nav_toggle {
  display: block;
  position: relative;
  width: 2rem;
  height: 1rem;
  cursor: pointer;
  margin-left: auto;
  text-align: right;
}

.nav_toggle i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  transition: transform .6s, opacity .6s;
}

.nav_toggle i:nth-child(1) {
  top: 4px;
  width: 125%;
  right: 0;
}

.nav_toggle i:nth-child(2) {
  bottom: 4px;
  width: 85%;
  right: 0;
}

#open.hide {
  display: none;
}



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

.nav_toggle.show i:nth-child(1) {
  transform: translateY(3.5px) rotate(-30deg);
  width: 100%;
}

.nav_toggle.show i:nth-child(2) {
  transform: translateY(-3.5px) rotate(30deg);
  width: 100%;
}



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

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  padding: 20px 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: 80px auto;
  width: 300px;
  max-height: calc(100vh - 100px);
}

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

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

.overlay li span {
  font-size: 70%;
  vertical-align: -4px;
}

.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;
}


@media (max-width: 1280px) {
  
  .overlay {
    padding: 16px 0;
  }

}




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

.hero {
  /* padding-top: 88px; */
  padding-top: 0px;
  position: relative;
}

.hero-img-txt {
  position: relative;
}

.hero-img-txt h4 {
  position: absolute;
  top:50%;
  left: 50%;
 -ms-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  -webkit-transform: translate(-50%,-50%);/*ベンダープレフィックス*/
  transform: translate(-50%,-50%);/*センター寄せの修正*/
  color: #fff;
  margin: 0!important;/*文字がずれている場合や*/
  padding: 0!important;/*文字が折り返される場合*/
}

.slider {
  overflow: hidden;
}

.slider img {
  width: 100%;
  /* height: calc(100vh - 88px); */
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.slick-active,
.slick-slide:has(+ .slick-active),
.slick-slide:last-child {
  animation: zoom-out 24s ease-out infinite;  
}

.slick-active + .slick-slide:last-child {
  animation: none;
}

@keyframes zoom-out {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

.hero-logo {
  position: absolute;
  top: 40px;
  left: 64px;
  width: 160px;
}

.hero p {
  position: absolute;
  bottom: 80px;
  right: 160px;
  font-size: 24px;
  letter-spacing: .3em;
  color: #fff;
  text-align: right;
}


@media (max-width: 1280px) {
  
  .hero {
    /* padding-top: 72px; */
    padding-top: 0px;
  }
  
  .slider img {
    /* height: calc(100vh - 72px); */
    height: 54vh;
  }
  
  .hero-logo {
    top: 20px;
    left: 32px;
    width: 100px;
  }
  
  .hero p {
    bottom: 40px;
    right: 40px;
    font-size: 16px;
  }

}


/* ==================================================== */
/* jQuery フェードイン */

.element {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.element2 {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.element3 {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.element4 {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.element5 {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.element6 {
  /* 最初は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translate(24px, 24px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}





/* ==================================================== */
/* リード・目次 */

.lead-index {
  padding: 100px 0 80px;
}

.lead {
  text-align: center;
}

.lead .h5-jp {
  margin-top: 14px;
}

.index {
  padding-top: 100px;
  width: 840px;
  margin: 0 auto;
}

.index ul {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  /* justify-content: space-between; */
}

.index a {
  width: calc((100% - 160px) / 3);
  position: relative;
}

.index li {
  font-size: 14px;
}

.index span {
  font-size: 80%;
  vertical-align: -4px;
}

.lead-sp {
  display: none;
}


.index a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #5e5e5e;
  bottom: -10px;               /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
  
.index a:hover::after {
  transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
 }


 @media (max-width: 1280px) {
  
  .lead-index {
    padding: 24px 0 40px;
  }
  
  .index {
    display: none;
  }
  
  .lead-pc {
    display: none;
  }
  
  .lead-sp {
    display: block;
  }
  

 }



 /* ==================================================== */
 /* 概要 */

.overview {
  width: 1180px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.overview-en {
  display: flex;
  gap: 40px;
}

.overview-en img {
  width: 400px;
  height: auto;
}

.overview-jp {
  display: flex;
  gap: 40px;
}

.overview-jp img {
  width: 400px;
  height: auto;
}

@media (max-width: 1280px) {
  
  .overview {
    width: 100%;
  }

  .overview-en {
    flex-direction: column-reverse;
  }

  .overview-en-pic {
    margin: 0 auto;
  }

  .overview-en img {
    width: 300px;
  }

  .overview-jp {
    flex-direction: column;
  }

  .overview-jp-pic {
    margin: 0 auto;
  }

  .overview-jp img {
    width: 300px;
  }


}



/* ==================================================== */
/* コンテンツ */

.h5-jp {
  font-size: 15px;
  line-height: 1.75;
}

.btn-sec-wrap {
  display: flex;
  gap: 48px;
  justify-content: center;
}

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

.btn {
  display: block;
  width: 336px;
  background: #fff;
  color: #1D4931;
  border: #1D4931 1px solid;
  text-align: center;
  padding: 12px 0;
  font-size: 15px;
  transition: background-color .5s;
  margin: 0 auto;
}

.btn-phone {
  width: 400px;
}

.btn:hover {
  background: #1D4931;
  color: #fff;
}

.page-link {
  height: 88px;
}

.btn-sec3 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.btn-pdf {
  width: 400px;
  background-color: #1D4931;
  color: #fff;
}

.btn-pdf:hover {
  background-color: #fff;
  color: #1D4931;
}


@media (max-width: 1280px) {

  .h5-jp {
    font-size: 13px;
  }

  .btn-sec-wrap {
    flex-direction: column;
    gap: 0;
  }

  .btn {
    max-width: 320px;
    font-size: 14px;
  }
  
  .btn-phone {
    max-width: 360px;
  }

  .btn-pdf {
    max-width: 360px;
  }

  .btn-sec {
    margin-top: 40px;
    margin-bottom: 80px;
  }
  
  .btn-sec-2 {
    margin-top: 32px;
  }

  .page-link {
    height: 72px;
  }

}


/* オールデイダイニング */

.contents-p1-add-container {
  width: 1180px;
  height: 1600px;
  /* padding-top: 40px; */
  padding-bottom: 160px;
  margin: 32px auto 0;
  position: relative;
}

.contents-p1-add-title {
  position: absolute;
  top: 80px;
  left: 0;
}

.contents-p1-add-title h6 {
  display: inline-block;
  padding: 3px 12px;
  background-color: #1D4931;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.contents-p1-add-title h5 {
  margin-top: 14px;
}

.p1-add-main-pic {
  position: absolute;
  top: 0;
  right: 0;
}

.p1-add-main-pic img {
  width: 720px;
}

.p1-add-sub-pic-1 {
  position: absolute;
  top: 320px;
  left: 0;
}

.p1-add-sub-pic-1 img {
  width: 360px;
}

.conents-p1-add-txt-info-wrap {
  position: absolute;
  top: 580px;
  right: 0;
  width: 720px;
}

.contents-p1-add-txt p {
  line-height: 1.75;
}

.contents-p1-add-txt p + p {
  line-height: 2;
  margin-top: 24px;
}

.contents-p1-add-info {
  color: #1D4931;
  margin-top: 32px;
}

.contents-p1-add-info p {
  line-height: 1.75;
}

.contents-p1-add-info-p-small {
  font-size: 12px;
  margin-top: 12px;
}

.p1-add-sub-pic-2 {
  position: absolute;
  top: 1100px;
  right: 180px;
}

.p1-add-sub-pic-2 img {
  height: 360px;
}

.p1-add-illust {
  position: absolute;
  top: 1140px;
  left: 160px;
  z-index: -10;
}

.p1-add-illust-img {
  width: 320px;
}

.p1-add-main-pic p {
  font-size: 12px;
  margin-top: 12px;
  color: #1D4931;
}

.p1-add-main-pic p + p {
  margin-top: 2px;
}

.p1-add-sub-pic-1 p {
  font-size: 12px;
  margin-top: 12px;
  color: #1D4931;
}

.p1-add-sub-pic-1 p + p {
  margin-top: 2px;
}

.p1-add-sub-pic-2 p {
  font-size: 12px;
  margin-top: 12px;
  color: #1D4931;
}

.p1-add-sub-pic-2 p + p {
  margin-top: 2px;
}


@media (max-width: 1280px) {

  .contents-p1-add-container {
    width: 100%;
    height: auto;
    /* padding-top: 20px; */
    padding-bottom: 40px;
    position: relative;
  }
  
  .contents-p1-add-title {
    position: initial;
  }
  
  .contents-p1-add-title h6 {
    display: inline-block;
    padding: 3px 12px;
    background-color: #1D4931;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
  }
  
  .p1-add-main-pic {
    position: initial;
    margin-top: 40px;
    text-align: right;
  }
  
  .p1-add-main-pic img {
    width: 80%;
  }
  
  .p1-add-sub-pic-1 {
    position: initial;
    margin-top: 40px;
    margin-left: 16px;
  }
  
  .p1-add-sub-pic-1 img {
    width: 40%;
  }
  
  .conents-p1-add-txt-info-wrap {
    position: initial;
    width: 90%;
    margin-left: auto;
    margin-top: 40px;
  }
  
  .contents-p1-add-info-p-small {
    font-size: 11px;
    margin-top: 11px;
  }
  
  .p1-add-sub-pic-2 {
    position: initial;
    text-align: right;
    margin-top: 40px;
  }
  
  .p1-add-sub-pic-2 img {
    width: 60%;
    height: auto;
  }
  
  .p1-add-illust {
    position: absolute;
    left: 56px;
    top: initial;
    bottom: 24px;
    width: 40%;
  }
  
  .p1-add-illust-img {
    width: 100%;
  }
  
  .p1-add-main-pic p {
    font-size: 11px;
    margin-top: 11px;
  }
  
  .p1-add-sub-pic-1 p {
    font-size: 11px;
    margin-top: 11px;
  }
  
  .p1-add-sub-pic-2 p {
    font-size: 11px;
    margin-top: 11px;
  }

}


/* アフタヌーンティー */

.contents-p2-at-container {
  width: 1180px;
  height: 1550px;
  /* padding-top: 40px; */
  padding-bottom: 160px;
  margin: 32px auto 0;
  position: relative;
}

.contents-p2-at-title {
  position: absolute;
  top: 80px;
  right: -16px;
}

.contents-p2-at-title h6 {
  display: inline-block;
  padding: 3px 12px;
  background-color: #1D4931;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.contents-p2-at-title h5 {
  margin-top: 14px;
}

.p2-at-main-pic {
  position: absolute;
  top: 0;
  left: 0;
}

.p2-at-main-pic img {
  width: 720px;
}

.p2-at-sub-pic-1 {
  position: absolute;
  top: 320px;
  right: 0;
}

.p2-at-sub-pic-1 img {
  width: 360px;
}

.conents-p2-at-txt-info-wrap {
  position: absolute;
  top: 580px;
  left: 0;
  width: 720px;
}

.contents-p2-at-txt p {
  line-height: 1.75;
}

.contents-p2-at-txt p + p {
  line-height: 2;
  margin-top: 24px;
}

.contents-p2-at-info {
  color: #1D4931;
  margin-top: 32px;
}

.contents-p2-at-info p {
  line-height: 1.75;
}

.contents-p2-at-info-p-small {
  font-size: 12px;
  margin-top: 12px;
}

.p2-at-sub-pic-2 {
  position: absolute;
  top: 1050px;
}

.p2-at-sub-pic-2 img {
  height: 360px;
}

.p2-at-illust {
  position: absolute;
  top: 720px;
  right: 320px;
  z-index: -10;
}

.p2-at-illust-img {
  width: 296px;
}

.p2-at-main-pic p {
  font-size: 12px;
  margin-top: 12px;
  color: #1D4931;
}

.p2-at-main-pic p + p {
  margin-top: 2px;
}

.p2-at-sub-pic-1 p {
  font-size: 12px;
  margin-top: 12px;
  color: #1D4931;
}

.p2-at-sub-pic-1 p + p {
  margin-top: 2px;
}

.p2-at-sub-pic-2 p {
  font-size: 12px;
  margin-top: 12px;
  color: #1D4931;
}

.p2-at-sub-pic-2 p + p {
  margin-top: 2px;
}


@media (max-width: 1280px) {

  .contents-p2-at-container {
    width: 100%;
    height: auto;
    /* padding-top: 20px; */
    padding-bottom: 80px;
    position: relative;
  }
  
  .contents-p2-at-title {
    position: initial;
    margin-top: 40px;
  }
  
  .contents-p2-at-title h6 {
    display: inline-block;
    padding: 3px 12px;
    background-color: #1D4931;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
  }
  
  .p2-at-main-pic {
    position: initial;
    margin-top: 40px;
    text-align: left;
  }
  
  .p2-at-main-pic img {
    width: 80%;
  }
  
  .p2-at-sub-pic-1 {
    position: initial;
    margin-top: 40px;
    /* margin-left: 16px; */
    text-align: right;
  }
  
  .p2-at-sub-pic-1 img {
    width: 40%;
  }
  
  .p2-at-sub-pic-2 {
    position: initial;
    text-align: left;
    margin-top: 40px;
  }
  
  .p2-at-sub-pic-2 img {
    width: 60%;
    height: auto;
  }

  .conents-p2-at-txt-info-wrap {
    position: initial;
    width: 90%;
    margin-right: auto;
    margin-top: 40px;
  }
  
  .contents-p2-at-info-p-small {
    font-size: 11px;
    margin-top: 11px;
  }
  
  .p2-at-illust {
    position: absolute;
    left: 100px;
    top: initial;
    bottom: 560px;
    width: 40%;
  }
  
  .p2-at-illust-img {
    width: 100%;
  }
  
  .p2-at-main-pic p {
    font-size: 11px;
    margin-top: 11px;
  }
  
  .p2-at-sub-pic-1 p {
    font-size: 11px;
    margin-top: 11px;
  }
  
  .p2-at-sub-pic-2 p {
    font-size: 11px;
    margin-top: 11px;
  }

}



/* スケジュール */

.schedule-back {
  background-color: #f1f1f1;
  width: 100%;
  padding: 80px 0 80px;
}

.schedule-back-2 {
  background-color: #e8e7e7;
}

.schedule-back-title {
  background-color: #e8e7e7;
  padding: 40px 0 40px;
}

.schedule-title h5 {
  text-align: center;
  color: #1D4931;
}

.schedule-wrap {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.time-event {
  display: flex;
  gap: 19px;
}
.time-event-1 {
  display: flex;
  gap: 23px;
}
.time-event-2 {
  display: flex;
  gap: 23px;
}
.time-event-3 {
  display: flex;
  gap: 19px;
}
.time-event-4 {
  display: flex;
  gap: 27px;
}
.time-event-5 {
  display: flex;
  gap: 26px;
}
.time-event-6 {
  display: flex;
  gap: 13px;
}
.time-event-7 {
  display: flex;
  gap: 20px;
}
.time-event-8 {
  display: flex;
  gap: 17px;
}
.time-event-9 {
  display: flex;
  gap: 12px;
}


.time-event_2 {
  display: flex;
  gap: 19px;
}
.time-event-1_2 {
  display: flex;
  gap: 23px;
}
.time-event-2_2 {
  display: flex;
  gap: 23px;
}
.time-event-3_2 {
  display: flex;
  gap: 15px;
}
.time-event-4_2 {
  display: flex;
  gap: 27px;
}
.time-event-5_2 {
  display: flex;
  gap: 14px;
}
.time-event-6_2 {
  display: flex;
  gap: 22px;
}
.time-event-7_2 {
  display: flex;
  gap: 19px;
}
.time-event-8_2 {
  display: flex;
  gap: 14px;
}



@media (max-width: 1280px) { 
  
  .schedule-wrap {
    width: 80%;
    flex-direction: column;
    gap: 80px;
  }
  
}


/* プラン */

.plan-wrap {
  width: 1000px;
  margin: 120px auto 0;
  color: #1D4931;
}

@media (max-width: 1280px) { 
  
  .plan-wrap {
    width: 80%;
  }
  
}


/* 予約ボタン */

.btn-sec-gion {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn-phone-gion {
  background-color: #edf0ee;
}


@media (max-width: 1280px) { 
  
  .btn-sec-gion {
    gap: 24px;
  }
  
}


/* PDF Download */

.pdf-download {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #dcdcdc;
}



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

footer {
  width: 100%;
  background-color: #1D4931;
  color: rgba(255, 255, 255, 0.8);
  padding: 80px 0;
  /* margin-top: 120px; */
}

.footer-contents {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.footer-logo-address {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.hotel-name {
  font-size: 16px;
  line-height: 2.5;
}

.address {
  font-size: 12px;
  line-height: 1.5;
}

.attention {
  font-size: 11px;
  line-height: 1.5;
  margin-top: 40px;
}

.footer-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.info-title {
  font-size: 14px;
  line-height: 2.5;
}

.info {
  font-size: 12px;
  line-height: 1.5;
}

.info a {
  border-bottom: rgba(255, 255, 255, 0.3) solid 1px;
}

.hours {
  font-size: 12px;
  line-height: 1.5;
  margin-top: 10px;
}


@media (max-width: 1280px) {
  
  footer {
    padding: 56px 0;
    /* margin-top: 80px; */
  }
  
  .footer-contents {
    flex-direction: column;
    gap: 40px;
    max-width: 320px;
  }
  
  .hotel-name {
    font-size: 14px;
  }
  
  .address {
    font-size: 11px;
  }
  
  .attention {
    font-size: 10px;
  }
  
  .info-title {
    font-size: 13px;
  }
  
  .info {
    font-size: 11px;
  }

}



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

@media (max-width: 1280px) {
  .header-nav {
    display: none;
  }
}



