@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?&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
@import url(https://fonts.googleapis.com/icon?family=Material+Icons);
:root {
  --kadomaru: 20px;
}

.kadomaru {
  border-radius: 20px;
}

@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;
  font-weight: 400;
}

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

h3 {
  font-size: 1.3rem;
  letter-spacing: 0.2rem;
  margin-bottom: 2rem;
  font-weight: bold;
  line-height: 1.7;
  padding-left: 15px;
}
h3.about {
  background-color: #f6f5ef;
  padding: 0.7rem 1.2rem;
  font-size: 1.4rem;
}
h3.kon-obi {
  text-align: center;
  background-color: #68aaa2;
  color: white;
  font-size: 1.2rem;
  font-weight: normal;
  padding: 0.7rem 1.2rem;
}
@media (max-width: 768px) {
  h3.kon-obi {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0;
  }
}

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: #ac2d26;
  /*動き*/
  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: 43%;
  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: #ce342b;
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 3px;
  right: 6px;
  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: 0.4rem;
  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 {
  text-align: center;
  padding: 0 2rem;
  text-transform: uppercase;
  border-left: 1px solid #dbdbdb;
  transition: 0.3s;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
}
ul.g-menu a li:hover {
  color: #ce342b;
}
@media (max-width: 768px) {
  ul.g-menu {
    display: none;
  }
}
ul.g-menu span {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.2rem;
}

#top-logo {
  width: 200px;
}

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

#intro {
  height: 90vh;
  width: 100vw;
}
#intro .bg1 {
  background-position: center center;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/topbg1.jpg);
}
#intro .bg2 {
  background-position: center bottom;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/topbg2.jpg);
}
#intro .bg3 {
  background-position: center bottom;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/topbg3.jpg);
}
#intro .bg4 {
  background-position: center center;
  background-size: cover;
  height: 90vh;
  background-image: url(../img/topbg4.jpg);
}
@media (max-width: 768px) {
  #intro {
    margin-top: 60px;
  }
}

.top-copy {
  color: white;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: 4rem;
  line-height: 1.2;
  border-bottom: white solid 2px;
  padding-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .top-copy {
    font-size: 3rem;
    line-height: 1;
  }
}

.top-copy2 {
  color: white;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  margin-top: 1.5rem;
  line-height: 1.9;
}

.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;
}
@media (max-width: 768px) {
  p {
    text-align: left;
  }
}

.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: "Barlow", sans-serif;
  color: #ce342b;
  text-transform: uppercase;
  font-size: 3rem;
  letter-spacing: 0.2rem;
  margin-bottom: 4rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}
h2 span {
  color: #000;
  display: block;
  font-family: "Noto Sans JP", serif;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
h2::after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 2px;
  background-color: #ce342b;
}

.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: #ce342b;
}
@media (max-width: 768px) {
  .table th {
    border-bottom: 0px;
    padding-bottom: 0;
  }
}

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

.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  border-radius: 0;
  padding: 10px 30px;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  letter-spacing: 0.15rem;
}

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

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

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #ce342b; /*背景色*/
  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-image: url(../img/footer.jpg);
  background-size: cover;
  color: white;
  padding: 3rem 0 0.5rem;
  text-align: center;
}
#footer a {
  color: white;
}
@media (max-width: 768px) {
  #footer {
    margin-bottom: 60px;
  }
}

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

.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;
  line-height: 2;
  margin-top: 60px;
}
#kaso-head h1 {
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.15rem;
}
@media (max-width: 768px) {
  #kaso-head h1 {
    font-size: 1.55rem;
  }
}
#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: #ce342b;
  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 p {
  font-size: 1.5rem;
  letter-spacing: 0.15rem;
  text-align: center;
}

#service-top {
  background-image: url(../img/service-back.png);
  background-repeat: no-repeat;
  background-position: right top;
}
@media (max-width: 768px) {
  #service-top {
    background-size: cover;
  }
}
#service-top p {
  padding: 2rem;
}
@media (max-width: 768px) {
  #service-top p {
    background-color: rgba(0, 0, 0, 0.5764705882);
    color: white;
    text-shadow: 0px 0px 7px rgb(0, 0, 0);
  }
}

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

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

.zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img {
  /*hoverした時の変化*/
  transform: scale(1.2); /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/
.sv-box img {
  transform: scale(1);
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
  border-radius: var(--kadomaru);
}
.sv-box a:hover img {
  transform: scale(1.2); /*拡大の値を変更したい場合はこの数値を変更*/
}
.sv-box .mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}
.sv-box .sv-box-inner {
  border-left: 4px solid #ce342b;
  margin-left: 1rem;
}
.sv-box .sv-box-inner h3 {
  padding: 1rem;
  font-weight: normal;
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  font-family: "Barlow", "Noto Sans JP", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sv-box .sv-box-inner h3 {
    font-size: 1.3rem;
  }
}
.sv-box .sv-box-inner h3 span {
  display: block;
  font-size: 1rem;
}
.sv-box .sv-box-inner p {
  padding: 0 2rem;
}

.sv-box-inner2 {
  position: relative;
}
.sv-box-inner2 h3 {
  position: absolute;
  top: -20px;
  left: 10px;
  background-color: #ce342b;
  color: white;
  padding: 0.4rem 1.3rem;
  font-weight: normal;
  font-size: 1.25rem;
  letter-spacing: 0.3rem;
  text-align: center;
}
.sv-box-inner2 p {
  padding: 3rem 2rem 2rem;
}

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

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

.dark-bg {
  background-color: #68aaa2;
  color: white;
}
.dark-bg h2,
.dark-bg h2 span {
  color: white;
}

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

ul {
  text-align: left;
  line-height: 2;
  margin: auto;
}

@media (max-width: 768px) {
  .sp-scroll {
    overflow-x: scroll;
  }
}
.rinen {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 3rem;
}

.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: #ce342b;
}
@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;
}

#photos {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 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;
  border-radius: var(--kadomaru);
}

.shaze {
  position: relative;
  background-color: #f7f8f8;
  text-align: center;
  padding: 2rem;
  width: min(90vw, 650px);
  margin: auto;
  margin-bottom: 2rem;
}
.shaze .naiyou {
  font-size: 3rem;
  letter-spacing: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: "Kosugi Maru", sans-serif;
}
.shaze h3 {
  font-family: "Kosugi Maru", sans-serif;
  letter-spacing: 0.9rem;
  border-bottom: 2px #ce342b solid;
  font-size: 1.6rem;
}
.shaze h4 {
  margin-top: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 2px #ce342b solid;
  font-size: 1.1rem;
  padding-bottom: 0.6rem;
}

.kyoryoku {
  position: relative;
  background-color: #f7f8f8;
  text-align: center;
  padding: 2rem;
  margin: auto;
  margin-bottom: 2rem;
}
.kyoryoku h4 {
  margin-top: 2.5rem;
  letter-spacing: 0.2rem;
  border-bottom: 2px #ce342b solid;
  font-size: 1.1rem;
  padding-bottom: 0.6rem;
}

.pom {
  background-image: url(../img/bg-beige.jpg);
  text-align: center;
  padding: 2rem;
  margin: auto;
  margin-bottom: 2rem;
}
.pom h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.9rem;
  border-bottom: 1px #b28247 dotted;
}

.bg-beige {
  background-image: url(../img/bg-beige.jpg);
}

.fukuri h4 {
  border-radius: 20px;
  background-color: #68aaa2;
  color: white;
  padding: 0.8rem 1.6rem;
  margin: 2rem 0 1.5rem;
}
.fukuri dl {
  line-height: 2;
}
.fukuri dt {
  color: #ce342b;
  letter-spacing: 0.1rem;
  padding: 1rem 1rem 1 1rem;
}
.fukuri dd {
  border-bottom: 1px solid gray;
  padding: 0.5rem 1rem 1rem 1rem;
}

.balloon_l,
.balloon_r {
  margin: 30px 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start; /*縦位置を上揃え*/
  /*align-items: center; */ /*縦位置を真ん中揃え*/
}

.balloon_r {
  justify-content: flex-end;
}

.says {
  max-width: 600px; /*最大幅は任意*/
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 17px 13px 15px 18px;
  border-radius: 12px;
  background: white; /*色は任意*/
  box-sizing: border-box;
  margin: 0 30px;
  line-height: 1.5;
  /*   align-items: center; */
}

.says p {
  margin: 8px 0 0 !important;
}

.says p:first-child {
  margin-top: 0 !important;
}

.says:after {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  /*   margin-top:-3px;  */
}

.balloon_l .says:after {
  left: -26px;
  border-right: 22px solid white;
}

.balloon_r .says:after {
  right: -26px;
  border-left: 22px solid white;
}

#interview h3 {
  margin: 3rem 0 0;
  font-size: 1.2rem;
}
#interview h3 span {
  color: #ce342b;
  font-size: 1.4rem;
}

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

/*== ボタン共通設定 */
.btn-ouka {
  margin: 2rem;
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 3px solid #ce342b; /* ボーダーの色と太さ */
  background-color: #ce342b;
  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: white;
}

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

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: white; /*背景色*/
  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);
}

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

.cap {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

#fixed-btn {
  display: none;
}
@media (max-width: 768px) {
  #fixed-btn {
    background-color: #ce342b;
    width: 100vw;
    text-align: center;
    padding: 1rem;
    display: grid;
    position: fixed;
    justify-content: space-around;
    bottom: 0;
    left: 0;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}
#fixed-btn .fb {
  border-right: 1px rgba(255, 255, 255, 0.555) solid;
}
#fixed-btn .fb img {
  width: 30px;
}

.rinen2 {
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding: 1rem;
  letter-spacing: 0.2rem;
}
.rinen2 span {
  display: block;
  font-size: 1.1rem;
}
@media (max-width: 768px) {
  .rinen2 {
    text-align: left;
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
  }
}
.rinen2::before, .rinen2::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
}
.rinen2::before {
  border-left: solid 3px #67a59e;
  border-top: solid 3px #67a59e;
  top: 0;
  left: 0;
}
.rinen2::after {
  border-right: solid 3px #67a59e;
  border-bottom: solid 3px #67a59e;
  bottom: 0;
  right: 0;
}

#rc-top {
  position: relative;
  overflow: hidden;
}
#rc-top img {
  border-radius: 30px;
  width: 30vw;
}
@media (max-width: 768px) {
  #rc-top img {
    width: 100vw;
  }
}
#rc-top .photo1 {
  margin-left: -50px;
  position: absolute;
  top: 30px;
}
@media (max-width: 768px) {
  #rc-top .photo1 {
    display: none;
  }
}
#rc-top .photo2 {
  position: absolute;
  right: -5%;
  bottom: 25%;
}
@media (max-width: 768px) {
  #rc-top .photo2 {
    display: none;
  }
}

.rc-position {
  margin-left: -150px;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .rc-position {
    margin-left: 0;
    margin-bottom: 2rem;
  }
}

.bs-box-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .bs-box-area {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bs-box-area .bs-box {
  background-color: #67a59e;
  color: white;
  padding: 1.3rem;
  border-radius: 15px;
}
.bs-box-area .bs-box h3 {
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}
.bs-box-area .bs-box h3::after {
  content: "";
  width: 110px;
  height: 3px;
  display: inline-block;
  background-color: white;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 50px);
}
.bs-box-area .bs-box p {
  text-align: justify;
}

#point {
  background-color: #e0edeb;
}
#point .point-box-area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 768px) {
  #point .point-box-area {
    grid-template-columns: repeat(1, 1fr);
  }
}
#point .point-box-area .card h5 {
  color: #67a59e;
  text-align: center;
  line-height: 1.8;
}
#point .point-box-area .card p {
  font-size: 14px;
}/*# sourceMappingURL=leafhotel.css.map */