@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500&family=Roboto:wght@400;700&?family=Noto+Serif+JP:wght@400;700?family=Bebas Neue:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
@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: "Noto Sans JP", "Roboto", sans-serif;
  font-weight: 400;
}

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

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: #0093e9;
  background-image: linear-gradient(300deg, #0093e9 0%, #80d0c7 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: #45b4d6;
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1px;
  right: 1px;
  cursor: poBebas Neue;
  width: 55px;
  height: 55px;
  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: 1rem;
  display: flex;
  justify-content: space-between;
}

ul.g-menu {
  display: flex;
  justify-content: center;
  list-style: none;
  letter-spacing: 0.1rem;
  font-weight: 500;
  margin: 0;
  font-size: 14px;
}
ul.g-menu a li {
  padding: 0 1.2rem;
  border-left: 1px solid #dbdbdb;
  transition: 0.3s;
}
ul.g-menu a li:hover {
  color: #45b4d6;
}
@media (max-width: 768px) {
  ul.g-menu {
    display: none;
  }
}

#top-logo {
  width: 200px;
}

#intro-outer {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#intro {
  width: 100vw;
}
#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 .box {
  background-color: rgba(0, 147, 233, 0.6);
  background-image: linear-gradient(300deg, rgba(0, 147, 233, 0.6) 0%, rgba(128, 208, 199, 0.6) 100%);
  padding: 1.5rem;
  color: white;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  line-height: 2;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  #top-copy .box {
    font-size: 0.9rem;
    padding: 1rem;
  }
}

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

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

.ar-box {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.ar-box h3 {
  font-family: "Staatliches", sans-serif;
  font-size: 3rem;
  letter-spacing: 0.2rem;
}
.ar-box h4 {
  border-bottom: 2px rgba(255, 255, 255, 0.4) solid;
  padding-bottom: 1rem;
}

h2 {
  text-align: center;
  margin: auto;
  font-family: "Bebas Neue", sans-serif;
  color: #45b4d6;
  text-transform: uppercase;
  font-size: 4rem;
  letter-spacing: 0.3rem;
  margin-bottom: 2.5rem;
  line-height: 1;
}
h2 span {
  color: #000;
  display: block;
  font-family: "Noto Sans JP", serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  margin-top: 0.6rem;
}
h2::after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 2px;
  background-color: #45b4d6;
}

.h2-left {
  text-align: left;
}
.h2-left::after {
  margin: 0;
}

h2.withzei {
  margin-bottom: 0.5rem;
}

h2.withzei + p {
  margin-bottom: 4rem;
}

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

.table th {
  white-space: nowrap;
  letter-spacing: 0.1rem;
  color: #45b4d6;
}
@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: #00639c;
  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-ouka {
  margin: 2rem;
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 3px solid #45b4d6; /* ボーダーの色と太さ */
  padding: 15px 40px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  letter-spacing: 0.1rem;
}

/*ボタン内spanの形状*/
.btn-ouka span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #333;
}

.btn-ouka:hover span {
  color: #fff;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #45b4d6; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

#footer {
  background-color: #0093e9;
  background-image: linear-gradient(300deg, #0093e9 0%, #80d0c7 100%);
  color: white;
  padding: 3rem 0 0.5rem;
}

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

.sign {
  font-size: 1.6rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: right;
  letter-spacing: 0.4rem;
}
.sign span {
  font-size: 1rem;
  letter-spacing: 0;
  padding-right: 1rem;
}

.zure {
  position: relative;
}
.zure::after {
  position: absolute;
  background-color: #f4f4f4;
  right: -70px;
  bottom: -40px;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.kariphoto {
  background-color: gray;
  width: 100%;
  height: 100%;
}

#kaso-head {
  color: white;
  padding: 4rem 2.5rem;
  text-align: center;
  margin-top: 60px;
}
#kaso-head h1 {
  font-family: "Bebas Neue", "Noto Sans JP", sans-serif;
  letter-spacing: 0.15rem;
  font-size: 3rem;
}
#kaso-head span {
  padding-top: 0.5rem;
  display: block;
  font-size: 1rem;
  letter-spacing: 0.15rem;
}

.sv-title {
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Raleway", sans-serif;
  color: #45b4d6;
  font-size: 1.3rem;
  letter-spacing: 0.4rem;
  font-weight: bold;
  border-bottom: #2c6f6d 1px dotted;
}
.sv-title span {
  padding-top: 0.2rem;
  display: block;
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #000;
}
.sv-title img {
  width: 50px;
  margin-right: 1.5rem;
}

#mission {
  background-image: url(../img/service-photo.png), url(../img/pale-ouka.svg);
  background-repeat: no-repeat;
  background-position: right center, left 40% bottom 20%;
  background-size: 100vh, 50vh;
}
@media (max-width: 768px) {
  #mission {
    background-image: url(../img/pale-ouka.svg);
    background-repeat: no-repeat;
    background-position: right top 30%;
    background-size: 80vw;
  }
}

#service {
  background-color: #dee6eb;
  background-image: url(../img/town.png);
  background-position: right -30px bottom;
  background-repeat: no-repeat;
}

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

.sv-box {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.sv-box .sv-box-inner {
  position: relative;
}
.sv-box h3 {
  position: absolute;
  display: block;
  width: 100%;
  left: -10px;
  top: -20px;
  color: white;
  background-color: #0093e9;
  background-image: linear-gradient(300deg, #80d0c7 0%, #0093e9 100%);
  padding: 0.4rem 1rem;
  font-weight: normal;
  margin-bottom: 0;
  font-size: 1.24rem;
  letter-spacing: 0.2rem;
}
.sv-box p {
  padding: 3rem 1rem 1rem;
}

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

.fl-box2 {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  padding: 1.5rem;
  position: relative;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .fl-box2 {
    text-align: center;
  }
}
.fl-box2 img {
  max-width: 140px;
}
@media (max-width: 768px) {
  .fl-box2 img {
    margin-bottom: 1.3rem;
  }
}
.fl-box2 h3 {
  font-family: "EB Garamond", "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  font-size: 1.3rem;
  line-height: 1.6;
}
.fl-box2 h3 span {
  color: #45b4d6;
}
.fl-box2:after {
  position: absolute;
  font-family: "Material Icons";
  content: "\e5cf";
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: inline-block;
  font-size: 30px;
}
@media (max-width: 768px) {
  .fl-box2:after {
    bottom: -18%;
  }
}
.fl-box2.last:after {
  content: none;
}

.rs-box {
  background: white;
  margin-bottom: 3rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.rs-box .no {
  position: absolute;
  top: -50px;
  left: 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 3.5rem;
  color: #45b4d6;
  display: inline;
  padding: 0.8rem;
  text-align: center;
}
@media (max-width: 768px) {
  .rs-box .no {
    top: -45px;
    left: 10px;
  }
}
.rs-box h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15rem;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.p-relative {
  position: relative;
}

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

.bg-aqua {
  background-color: #dee6eb;
}

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

.seiri-pt {
  margin-top: 100px;
  position: relative;
}
.seiri-pt .ptno {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.seiri-pt h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  margin-top: 1.5rem;
  line-height: 1.6;
}

.price-box {
  text-align: center;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 3rem;
}
.price-box img.ico-size {
  width: 60px;
  margin-bottom: 1rem;
  margin-right: auto;
  margin-left: auto;
}
.price-box h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.price-box h3 span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 1rem;
}
.price-box ul {
  text-align: left;
  line-height: 2;
  margin: auto;
}

.price {
  letter-spacing: 0.1rem;
  font-size: 1rem;
  font-weight: bold;
}
.price span {
  font-family: "Roboto", sans-serif;
  color: #45b4d6;
  font-size: 1.8rem;
}

.ryui {
  background-color: #fff;
  padding: 1.6rem;
}
.ryui h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2rem;
  font-size: 1.2rem;
  border-bottom: 1px dotted gray;
}

.wa-i {
  position: relative;
  text-align: center;
  line-height: 1.3;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .wa-i {
    font-size: 1rem;
  }
}
.wa-i:before, .wa-i:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #fabe00;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
.wa-i:before {
  transform: rotate(-35deg);
}
.wa-i:after {
  transform: rotate(35deg);
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .sp-scroll {
    overflow-x: scroll;
  }
}
ul.checklist {
  list-style: none;
}
ul.checklist li {
  border-bottom: 1px dotted rgb(255, 255, 255);
  line-height: 1.8;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}
ul.checklist li:before {
  font-family: "Material Icons";
  content: "\e834";
  color: #45b4d6;
  padding-right: 0.5rem;
}

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

.yuigon-kinds {
  border-radius: 6px;
  background-color: #f1f8f5;
  padding: 1.2rem;
}
.yuigon-kinds h3 {
  text-align: center;
  color: #45b4d6;
}

#will-kaisetsu {
  background-image: url(../img/texture.png);
  text-align: center;
}
#will-kaisetsu p {
  text-align: left;
}

.price-cell {
  border-bottom: 1px gray dotted;
  font-size: 1.1em;
  letter-spacing: 0.1rem;
  padding: 1rem;
}

.price-cell .price {
  text-align: right;
}

.price-cell .row > .col-md {
  align-self: center;
}

.inin-list {
  background-color: #fff;
  padding: 2rem 1rem;
  margin-bottom: 3rem;
}
.inin-list h3 {
  color: #45b4d6;
}
.inin-list ul {
  margin-right: 5rem;
  margin-left: 5rem;
  padding-inline-start: 0;
  list-style: none;
  text-align: left;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .inin-list ul {
    margin: 0;
    font-size: 0.95rem;
  }
}
.inin-list ul li {
  display: flex; /* 点とリストを横並びに */
  align-items: center; /* 垂直方向に中央揃い */
  border-bottom: 1px dotted gray;
  padding: 1rem;
}
.inin-list ul li::before {
  content: "⚫︎"; /* 記号(黒丸)を挿入 */
  color: #45b4d6; /* 好きな色にする */
  font-size: 1em; /* 黒丸の大きさに差異があるので調整 */
  margin-right: 1em; /* 余白 */
}

.voice {
  margin-bottom: 3rem;
}

.face {
  text-align: center;
}
.face img {
  margin: auto;
  display: block;
  margin-bottom: 0.8rem;
}

.hukidashi {
  background-color: #e5f2f2;
  padding: 1rem 1.8rem;
  border-radius: 13px;
}

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

.officebox {
  margin: 3rem;
  line-height: 1.9;
}
.officebox h4 {
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px dotted gray;
  padding-bottom: 0.5rem;
}
.officebox a {
  color: #45b4d6;
}
@media (max-width: 768px) {
  .officebox {
    margin: 2rem 0;
  }
}

#system-top {
  background-image: url(../img/system-head.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
}
@media (max-width: 768px) {
  #system-top {
    background-image: url(../img/system-head-sp.jpg);
    background-position: center;
  }
}

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

.fuchi {
  box-shadow: 15px 15px 0 #45b4d6;
}

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

.tate {
  margin-right: 1.5rem;
  background-color: #dee6eb;
  padding: 2rem 1rem 1rem;
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  letter-spacing: 1rem;
  padding-top: 2rem;
}
@media (max-width: 768px) {
  .tate {
    writing-mode: horizontal-tb;
    padding-top: 1rem;
  }
}
.tate span {
  padding-left: 2rem;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
}
@media (max-width: 768px) {
  .tate span {
    display: block;
    padding-left: 0;
  }
}

.form-label {
  color: #00639c;
  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;
}/*# sourceMappingURL=leafhotel.css.map */