@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200..900&family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400..800&display=swap");
:root {
  --kadomaru: 15px;
  --marrymade-color: #eb7b75;
  --souji-color: #b1d79f;
  --basic-color: #222222;
  --main-color: #1a285a;
  --bg-body: #f8f7f3;
}

.bg-gray {
  background-color: #f4f4f0;
}

@media screen and (min-width: 680px) {
  .pc {
    display: inline-block;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
}
body {
  font-size: 15px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #222222;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  letter-spacing: 0.15rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.4rem;
  padding-bottom: 1rem;
  background-image: url("../img/wave-line.svg");
  background-repeat: repeat-x;
  background-size: 420px;
  background-position: bottom;
  text-align: center;
  letter-spacing: 0.9rem;
  margin-bottom: 1.5rem;
}
h3 span {
  display: block;
  font-size: 0.9rem;
  color: #806b58;
}
h3 img {
  width: 90px;
  display: block;
  margin: 0 auto 1.5rem;
}

h4 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1.1rem;
  padding-bottom: 0.6rem;
  background-repeat: repeat-x;
  background-size: 160px;
  background-position: bottom;
}
@media (max-width: 768px) {
  h5 {
    margin-top: 2rem;
  }
}
h5.blue {
  color: #2090a3;
  background-image: none;
  padding-bottom: 0;
  font-weight: 600;
  margin-top: 1.5rem;
}

#main {
  overflow: hidden;
  background-color: #f8f7f3;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
ul {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.04rem;
}

p.wide {
  line-height: 2.5;
}

ul li::marker {
  color: #886f69;
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
    margin-right: 0.7rem;
    margin-left: 0.7rem;
  }
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 30%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  height: 100vh; /*ナビの高さ*/
  background-color: #c5c4bb;
  /*動き*/
  transition: all 0.6s;
}
@media (max-width: 768px) {
  #g-nav {
    width: 90%;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 30%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 90%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-inline-start: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  font-size: 16px;
  color: rgb(63, 63, 63);
  text-decoration: none;
  padding: 17px 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
#g-nav li a span {
  font-size: 0.8rem;
  display: block;
  color: rgba(255, 255, 255, 0.822);
}
#g-nav li a:hover {
  color: #b49f8a;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  background-color: var(--main-color);
  height: 70px;
  cursor: pointer;
  width: 70px;
  color: white;
  text-align: center;
  font-size: 0.8rem;
  padding-top: 6px;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1rem;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 16px;
  height: 1px;
  background-color: white;
  width: 55%;
}

.openbtn span:nth-of-type(1) {
  top: 32px;
}

.openbtn span:nth-of-type(2) {
  top: 40px;
}

.openbtn span:nth-of-type(3) {
  top: 48px;
}

.openbtn.active span:nth-of-type(1) {
  top: 30px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 45%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
  top: 42px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 45%;
}

#header {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 200;
  position: absolute;
  z-index: 950;
  width: 98vw;
  height: 70px;
}
#header h1 {
  line-height: 0;
  margin-left: 1rem;
}
#header h1 img {
  width: 200px;
}

#pc-menu {
  display: flex;
  list-style: none;
  align-items: center;
  margin-right: 90px;
  margin-top: 20px;
  font-family: "EB Garamond", "Noto Serif JP", serif;
}
#pc-menu a {
  text-decoration: none !important;
  position: relative; /*アンダーラインの位置を決めるための基準 */
}
#pc-menu a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: white;
  bottom: -1px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
#pc-menu a li {
  color: white;
  text-align: center;
  text-transform: lowercase;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.15rem;
  transition: 0.3s;
  line-height: 1.2;
}
#pc-menu a li span {
  display: block;
}
#pc-menu a:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}
@media (max-width: 768px) {
  #pc-menu {
    display: none;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadein3 {
  animation-name: fadein;
  animation-duration: 3s;
}

.fadein6 {
  animation-name: fadein6;
  animation-duration: 3s;
  animation-delay: 1s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadein6 {
  100% {
    opacity: 1;
  }
}
#intro {
  position: relative;
}

.top-copy {
  position: absolute;
  width: min(80vw, 420px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 40%;
  text-shadow: 0px 1px 3px rgb(0, 0, 0);
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }
}

.table > :not(caption) > * > * {
  padding: 1.5rem;
  background-color: transparent;
  border-top: #dee2e6 1px solid;
}
@media (max-width: 768px) {
  .table > :not(caption) > * > * {
    padding: 1rem;
    border-top: none;
  }
}

.table th {
  white-space: nowrap;
  color: #2090a3;
  letter-spacing: 0.15rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .table th {
    border-bottom: 0px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .table th,
  .table td {
    display: block;
    width: 100%;
  }
}

#footer {
  position: relative;
  background: #000428; /* fallback for old browsers */ /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
  padding-top: 5rem;
  padding-bottom: 1rem;
  text-align: center;
}

.jiffa {
  padding: 0.5rem;
  background-color: #fff;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 2rem;
}

.copyright {
  opacity: 0.8;
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
}

.custom-shape-divider-top-1749023819 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1749023819 svg {
  position: relative;
  display: block;
  width: calc(124% + 1.3px);
  height: 68px;
}

.custom-shape-divider-top-1749023819 .shape-fill {
  fill: #f8f7f3;
}

.narrow {
  width: min(85vw, 600px);
  margin: auto;
}

.photos2 {
  display: flex;
}
.photos2 img {
  width: 33.3%;
}
@media (max-width: 768px) {
  .photos2 {
    flex-direction: column;
  }
  .photos2 img {
    width: 100%;
  }
}

.btn-top {
  padding: 1rem;
}
.btn-top img {
  width: 20px;
  transform: rotate(180deg);
}

.btn {
  text-align: center;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 10px;
  transition: 0.3s;
  letter-spacing: 0.05rem;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  background-color: #2090a3;
  padding: 1rem 2rem;
  font-size: 1rem;
  margin: 1rem;
}
.btn:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #fff;
  background-color: #2898ac;
}
.btn img {
  width: 25px;
  margin-left: 0.4rem;
  margin-right: 0.4rem;
}

.btn-large {
  text-align: center;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 10px;
  transition: 0.3s;
  letter-spacing: 0.05rem;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  background-color: #2090a3;
  padding: 2rem 3rem;
  font-size: 1.2rem;
  margin: 1rem;
  width: 450px;
}
.btn-large:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #fff;
  background-color: #2898ac;
}
@media (max-width: 768px) {
  .btn-large {
    width: 80vw;
    padding: 0.5rem;
    font-size: 1rem;
    margin: 0.3rem;
  }
}
.btn-large img {
  margin: 0 1rem;
}
@media (max-width: 768px) {
  .btn-large img {
    height: 35px;
  }
}

.btn-small {
  text-align: center;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 10px;
  transition: 0.3s;
  letter-spacing: 0.05rem;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  background-color: #2090a3;
  padding: 0.2rem 0.6rem;
  font-size: 0.8rem;
  margin: 0.5rem;
  border: 0;
  letter-spacing: 0;
  border-radius: 4px;
}
.btn-small:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  color: #fff;
  background-color: #2898ac;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 20vw;
  padding-right: 1rem;
}
.scroll-infinity__item:nth-child(odd) {
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .scroll-infinity__item {
    width: 50vw;
  }
}

.scroll-infinity__item > img {
  width: 100%;
  border-radius: 10px;
}

.kadomaru {
  border-radius: 20px;
}

.mb-6 {
  margin-bottom: 6rem;
}

#copyandtop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.copy {
  font-size: 0.6rem;
  letter-spacing: 0.05rem;
  color: #9c9595;
}

#kasou-head {
  padding: 8rem 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-image: url(../img/lower-topbg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}
@media (max-width: 768px) {
  #kasou-head {
    padding: 6rem 0;
  }
}
#kasou-head h1 {
  font-size: 4rem;
  text-align: center;
  letter-spacing: 1rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}
#kasou-head h1 span {
  display: block;
  font-size: 1rem;
}
@media (max-width: 768px) {
  #kasou-head h1 {
    font-size: 3rem;
    letter-spacing: 0.5rem;
  }
}
#kasou-head p {
  width: min(700px, 85vw);
}

#privacy-policy h4 {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.form-control {
  padding: 1rem;
}

.omakase-box {
  text-align: center;
  background-color: #fff;
  border-radius: var(--kadomaru);
  padding: 1.3rem;
  transition: 0.3s;
  height: 100%;
  margin-bottom: 1rem;
}
.omakase-box:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.omakase-box .logo {
  max-width: 70%;
  margin: auto;
  margin-bottom: 1.5rem;
}
.omakase-box p {
  text-align: left;
}

a .banner {
  padding: 1.4rem;
  border-radius: var(--kadomaru);
  background-color: white;
  width: min(500px, 90vw);
  margin: auto;
  transition: 0.3s;
}
a .banner:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.menu-box {
  position: relative;
  text-align: center;
  display: flex;
  color: white;
  justify-content: center;
  flex-direction: column;
  margin: 1rem 2rem;
  padding: 2rem 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.1rem;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .menu-box {
    margin: 1rem 0;
  }
}
.menu-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.menu-box h4 {
  font-weight: 400;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.6;
}
.menu-box h4 span {
  font-size: 1rem;
  display: block;
  letter-spacing: 0.8rem;
}
.menu-box p {
  text-align: left;
  padding: 1.5rem;
}
.menu-box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 30px;
  height: 5px;
  border: none;
  border-right: 2px solid #fff;
  border-bottom: 1px solid #fff;
  transform: skew(45deg);
  transition: 0.3s;
}
.menu-box:hover::after {
  right: 30px;
  width: 40px;
}

.viewmore {
  font-size: 0.9rem;
  position: absolute;
  right: 80px;
  bottom: 10px;
  font-family: "EB Garamond", "Noto Serif JP", serif;
}

.zoom-fade {
  overflow: hidden;
  height: 100vh;
  margin: 0 auto;
}

.zoom-fade__item {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/*
ズーム（ズームイン）させるためのアニメーション
コメントアウト部分を入れ替えれば、ズームアウトになります。

拡大率（scale()）はお好みで！
*/
.add-animation {
  /* アニメーション名 アニメーションにかかる時間 アニメーションの実行前後の状態 */
  /* zoom-fade 10秒 [実行前]最初のキーフレーム（0%） → [実行後]最後のキーフレーム（100%） */
  animation: zoom-fade 10s both;
}

@keyframes zoom-fade {
  0% {
    /*transform: scale(1.05);*/
    transform: scale(1);
  }
  100% {
    /*transform: scale(1);*/
    transform: scale(1.05);
  }
}
.grade_btn {
  margin: auto;
  font-family: "EB Garamond", "Noto Serif JP", serif;
  flex-direction: column;
  width: min(300px, 80vw);
  text-align: center;
  text-decoration: none;
  padding: 1rem;
  align-items: center;
  outline: none;
  color: #ffffff;
  background: linear-gradient(to right, #000046, #1cb5e0);
  background-position: 0% 50%;
  background-size: 200% auto;
  transition: all 0.3s ease-out;
  font-size: 1.5rem;
  letter-spacing: 0.3rem;
  border-radius: 6px;
  line-height: 1.5;
}
.grade_btn span {
  font-size: 0.9rem;
  letter-spacing: 0.5rem;
}
.grade_btn img {
  width: 20px;
}

.grade_btn:hover {
  color: #fff;
  background-position: 100% 51%;
}

#totop {
  position: absolute;
  right: 3%;
  top: -20%;
  z-index: 100;
  transition: 0.3s;
}
#totop:hover {
  translate: 0 -10px;
}

.svbox {
  color: white;
  padding: 1rem;
  height: 270px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  margin-bottom: 1.3rem;
}
.svbox h4 {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.svbox h4 span {
  font-size: 1.9rem;
  display: block;
  line-height: 1;
}

.svbox + p {
  padding: 0 1rem;
}

#bg01 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg01.jpg);
  background-size: cover;
}

#bg02 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg02.jpg);
  background-size: cover;
}

#bg03 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg03.jpg);
  background-size: cover;
}

#bg04 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg04.jpg);
  background-size: cover;
}

#bg05 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg05.jpg);
  background-size: cover;
}

#bg06 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg06.jpg);
  background-size: cover;
}

#bg07 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg07.jpg);
  background-size: cover;
}

#bg08 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg08.jpg);
  background-size: cover;
}

#bg09 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg09.jpg);
  background-size: cover;
}

#bg10 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/sv-bg10.jpg);
  background-size: cover;
}

#bg11 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/dx1.jpg);
  background-size: cover;
}

#bg12 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/dx2.jpg);
  background-size: cover;
}

#bg13 {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0) 60%), url(../img/dx3.jpg);
  background-size: cover;
}

#greeting {
  background: url(../img/greeting-bg.jpg) no-repeat center center;
  background-size: cover;
  background-position: center bottom;
}

.tate-title {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  font-size: 4rem;
  letter-spacing: 0.5rem;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .tate-title {
    font-size: 2rem;
  }
}
.tate-title::before {
  content: "";
  display: block;
  width: 6px;
  height: 342px;
  background-image: url(../img/wave-tate.png);
  background-position: center;
  background-size: contain;
}
.tate-title span {
  display: block;
  font-size: 1rem;
}

.greeting-content {
  margin: 5rem;
}
@media (max-width: 768px) {
  .greeting-content {
    margin: 1rem;
  }
}

.sign {
  font-family: "Noto Serif JP", serif;
  text-align: right;
  font-size: 1rem;
  letter-spacing: 0.2rem;
}

.logos {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .logos {
    flex-direction: column;
    justify-items: center;
    align-items: center;
  }
  .logos img {
    margin: 1rem;
  }
}
.logos img {
  max-width: 220px;
}

.col-md-3 > p,
.col-md-4 > p {
  margin-bottom: 2.5rem;
}

.shikaku {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.shikaku img {
  width: 100%;
  max-width: 15%;
  margin: 0.5rem;
  height: auto;
}
@media (max-width: 768px) {
  .shikaku img {
    max-width: 45%;
  }
}/*# sourceMappingURL=leafhotel.css.map */