@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,500;0,700;1,700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lora&display=swap");
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.barlow {
  font-family: "Barlow", sans-serif;
}

@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: "Barlow", "Noto Sans JP", sans-serif;
}

a {
  color: #000000;
  text-decoration: none;
  transition: 1s;
}

.hover-style {
  transition: 0.4s;
}
.hover-style:hover {
  filter: drop-shadow(0 0 5px rgb(168, 167, 159));
}

h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1.7;
}
h3.about {
  background-color: #f6f5ef;
  padding: 0.7rem 1.2rem;
  font-size: 1.4rem;
}

h4 {
  font-size: 1.2rem;
  letter-spacing: 0.15rem;
}

h5 {
  font-size: 1.15rem;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 90vh; /*ナビの高さ*/
  background-color: #147a53;
  background-image: linear-gradient(300deg, #147a53 0%, #093a27 100%);
  /*動き*/
  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: 50%;
  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: 40%;
  transform: translate(-30%, -50%);
  padding-left: 0;
}

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

#g-nav li a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  padding: 17px 10px;
  display: block;
  letter-spacing: 0.2em;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  letter-spacing: 0.1rem;
  background-color: #147a53;
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1px;
  right: 1px;
  width: 60px;
  height: 54px;
  color: white;
  text-align: center;
  font-size: 0.6rem;
  padding-top: 4px;
}

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

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

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

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

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

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

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

#head {
  position: relative;
}

.fixed {
  position: fixed;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8784313725);
  z-index: 100;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 4px;
  top: 0;
}

.shadow-box {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 4px 4px;
}

.head-up {
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

ul.g-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  letter-spacing: 0.1rem;
  font-weight: 700;
  margin: 0;
  font-size: 14px;
  text-align: center;
}
ul.g-menu a li {
  padding: 0 1.2rem;
  border-left: 1px solid #dbdbdb;
  transition: 0.3s;
}
ul.g-menu a li span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 0.7rem;
  font-weight: normal;
}
ul.g-menu a li:hover {
  color: #147a53;
}
@media (max-width: 768px) {
  ul.g-menu {
    display: none;
  }
}

#top-logo {
  width: 200px;
}

#intro-outer {
  width: 100vw;
  position: relative;
}

#intro .bg1 {
  background-position: center center;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/top_1.jpg);
}
#intro .bg2 {
  background-position: center bottom;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/top_2.jpg);
}
#intro .bg3 {
  background-position: center bottom;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/top_3.jpg);
}

#top-copy {
  text-align: center;
  position: absolute;
  z-index: 10;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  #top-copy {
    left: 40%;
    transform: translateX(-35%);
  }
}
#top-copy .bun {
  color: white;
  font-size: 2rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  font-weight: 600;
}
@media (max-width: 768px) {
  #top-copy .bun {
    font-size: 1.3rem;
    padding: 1rem;
  }
}

.top-copy-svg {
  margin-bottom: 2.5rem;
  max-width: 200px;
  filter: drop-shadow(0px 0px 5px rgba(255, 255, 255, 0.8));
}

#mission {
  background-image: url(../img/logo-pale.svg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 30vw;
}
@media (max-width: 768px) {
  #mission {
    background-position: center;
    background-size: 80vw;
  }
}

.lead p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  font-weight: 700;
  width: min(80vw, 650px);
  margin: auto;
  letter-spacing: 0.1rem;
  line-height: 2;
}

section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

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

h2 {
  text-align: center;
  margin: auto;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  margin-bottom: 3.5rem;
  line-height: 1;
}
@media (max-width: 768px) {
  h2 {
    font-size: 2rem;
  }
}
h2::first-letter {
  color: #147a53;
}
h2 span {
  color: #000;
  display: block;
  font-family: "Noto Sans JP", serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  margin-top: 0.6rem;
}
h2::after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 2px;
  background-color: #147a53;
}

.table > :not(caption) > * > * {
  padding: 1.5rem;
}

.table th {
  white-space: nowrap;
  letter-spacing: 0.1rem;
  color: #147a53;
}
@media (max-width: 768px) {
  .table th {
    border-bottom: 0px;
    padding-bottom: 0;
  }
}

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

ul.info {
  line-height: 2;
  list-style: none;
}
ul.info a {
  color: #000;
  text-decoration: none;
}
ul.info li {
  border-bottom: 1px solid rgb(238, 228, 228);
  padding: 1rem;
  transition: 0.3s;
  position: relative;
}
ul.info li:hover {
  background-color: #eef2f5;
}
ul.info li:after {
  content: url(../img/arrow.svg);
  position: absolute;
  top: 40%;
  right: 10px;
  padding-right: 5px;
}
@media (max-width: 768px) {
  ul.info li:after {
    content: none;
  }
}
ul.info .date {
  font-family: "Staatliches", sans-serif;
  margin-right: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
}

#contact {
  background-image: url(../img/main-back.jpg);
  background-size: cover;
  background-position: center top;
}

.btn-submit {
  background-color: #093a27;
  color: white;
  font-size: 1.2rem;
  letter-spacing: 0.2rem;
  padding: 1rem 2rem;
  border: 0;
  margin: 1rem;
}
.btn-submit span {
  font-size: 0.8rem;
  display: block;
}
.btn-submit:hover {
  opacity: 0.8;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #ffffff;
  font-size: 15px;
  border-radius: 3px;
  padding: 1rem 1.2rem;
  transition: 0.3s;
  background-color: #147a53;
  letter-spacing: 0.15rem;
  margin: 1.5rem;
}

.btn:hover {
  background-color: #1eac75;
  color: white;
}

#footer {
  background-color: #147a53;
  color: white;
  padding: 3rem 0 0.5rem;
}
@media (max-width: 768px) {
  #footer {
    margin-bottom: 48px;
  }
}

.copyright {
  font-size: 0.8rem;
  padding: 1rem;
  letter-spacing: 0.1rem;
  color: rgba(255, 255, 255, 0.7882352941);
}

.ct-icon img {
  height: 25px;
}

.ct-area {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .ct-area {
    flex-direction: column;
  }
}

#photos {
  display: flex;
}
#photos img {
  width: 50vw;
  height: auto;
}
@media (max-width: 768px) {
  #photos img {
    width: 100vw;
  }
}
#photos .p2 {
  margin-top: 3rem;
}

.fl-area {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  .fl-area {
    grid-template-rows: repeat(1, 1fr);
    grid-template-columns: repeat(1, 1fr);
  }
}

.fl-box {
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
  transition: 0.3s;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.fl-box .step {
  font-family: "Bebas Neue", sans-serif;
  line-height: 1.2;
}
.fl-box .step span {
  display: block;
  font-size: 3rem;
}
.fl-box h3 {
  font-size: 1.2rem;
}
.fl-box img {
  margin: 0 auto 1rem;
  display: block;
}
.fl-box p {
  font-weight: 400;
  text-align: left;
}

.rs-box {
  margin-bottom: 3rem;
}
.rs-box h3 {
  font-weight: 700;
  letter-spacing: 0.15rem;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}
.rs-box h3 span {
  font-family: "Barlow", sans-serif;
  color: #147a53;
  font-size: 3rem;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  .rs-box h3 span {
    display: block;
  }
}

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

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

@media (max-width: 768px) {
  .sp-scroll {
    overflow-x: scroll;
  }
}
.mb-6 {
  margin-bottom: 6rem;
}

.rinen {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 1rem;
}
.rinen::before, .rinen::after {
  position: absolute;
  width: 30px;
  height: 30px;
  content: "";
}
.rinen::before {
  border-left: solid 1px;
  border-top: solid 1px;
  top: 0;
  left: 0;
}
.rinen::after {
  border-right: solid 1px;
  border-bottom: solid 1px;
  bottom: 0;
  right: 0;
}

.table > :not(caption) > * > * {
  padding: 1.5rem;
}

.table th {
  white-space: nowrap;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .table th {
    border-bottom: 0px;
    padding-bottom: 0;
  }
}

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

#photos {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
@media (max-width: 768px) {
  #photos {
    grid-template-rows: 2fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
#photos img {
  max-width: 100%;
  height: auto;
}

.bgline-container {
  position: relative;
  height: 300px;
}

.bgline-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-clip-path: inset(0);
          clip-path: inset(0);
}

.bgline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../img/bgline.jpg);
  background-size: cover;
  background-position: center right;
  z-index: -1;
}
@media (max-width: 768px) {
  .bgline {
    background-image: url(../img/bgline-sp.jpg);
  }
}

.boshu-title {
  display: flex;
}
@media (max-width: 768px) {
  .boshu-title {
    flex-direction: column;
  }
}

.form-label {
  color: #093a27;
  font-weight: bold;
  letter-spacing: 0.1rem;
}

.form-control::-moz-placeholder {
  color: #bbbbbb;
}

.form-control::placeholder {
  color: #bbbbbb;
}

.material-symbols-outlined {
  display: inline-flex;
  vertical-align: middle;
}

.tensen {
  border-bottom: dotted 1px gray;
  letter-spacing: 0.15rem;
}

.btns {
  text-align: center;
}

.sv-box {
  padding: 1.2rem;
  background-color: #fff;
  margin-bottom: 1.5rem;
}
.sv-box h3 {
  padding-left: 1.2rem;
  border-left: 5px solid #147a53;
}
.sv-box h3 span {
  font-weight: normal;
  font-family: "Lora", serif;
  display: block;
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
}
.sv-box p {
  padding: 1.5rem;
}

#sp-fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  background-color: #093a27;
  width: 100vw;
}
@media (min-width: 768px) {
  #sp-fixed {
    display: none;
  }
}
#sp-fixed .btn {
  margin: 0;
  background-color: #093a27;
  text-align: center;
  width: 49vw;
  border-radius: 0;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
}
#sp-fixed .btn:hover {
  background-color: #147a53 !important;
}/*# sourceMappingURL=leafhotel.css.map */