@charset "UTF-8";
body {
  color: #333;
  background-color: #FBFBFB;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

img {
  width: 100%;
}

.sp {
  display: none;
}

/* header */
.header {
  height: 100vh;
  width: 300px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #8FC325;
  overflow: auto;
}
.header .logo {
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  width: 130px;
  height: 100px;
}
.header .logo img {
  height: 100%;
}
.header .contactIcon {
  color: #fff;
}

.headerNav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.headerNav__list li {
  margin-bottom: 30px;
}
.headerNav__list li > a {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.headerNav__list li > a span {
  font-size: 14px;
  margin-top: 10px;
}

.main {
  margin-left: 300px;
}

section {
  width: 100%;
}

h2 {
  padding-top: 70px;
  font-weight: bold;
  text-align: center;
  font-size: 24px;
  margin-bottom: 40px;
}

.en_green {
  font-family: "Montserrat";
  color: #8fc325;
  display: block;
  font-size: 20px;
  margin-bottom: 17px;
}

h3 {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 40px;
}

.wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fv {
  height: 76vh;
  display: flex;
  justify-content: center;
  padding-top: 145px;
  background-image: url(../img/fv.jpg);
  background-repeat: no-repeat;
  background-size: 128%;
  background-position: right;
}
.fv__text {
  width: calc(100% - 300px);
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
  position: relative;
}
.fv__text::before {
  position: absolute;
  content: "";
  width: 124px;
  height: 90px;
  top: -44px;
  left: 116px;
  background-image: url(../img/loof.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.fv__text span {
  display: block;
  font-size: 48px;
  margin-top: 40px;
}
.fv__image {
  height: 100%;
}
.fv__image img {
  height: 100%;
}

.slick-dots {
  text-align: right;
  bottom: -35px;
}
.slick-dots li.slick-active button::before {
  color: #8FC325;
}

/*追随予約ボタン*/
.reserveBtn {
  display: inline-block;
  position: fixed;
  z-index: 999;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  line-height: 50px;
  background-color: #8fc325;
  transition: all 0.5s;
  border-radius: 20px 0 0 20px;
  color: #fff;
  padding: 30px 0;
  letter-spacing: 0.5em;
  font-size: 15px;
  font-weight: bold;
}
.reserveBtn:hover {
  background-color: #a5d743;
}

/*==================================================
背景色が伸びてテキスト出現
===================================*/
/*全共通*/
.bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  -webkit-animation-name: bgextendAnimeSecond;
          animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  -webkit-animation-name: bgLRextendAnime;
          animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #666; /*伸びる背景色の設定*/
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

/* フッター*/
footer .footer {
  padding-top: 150px;
  padding-bottom: 26px;
}
footer .footer p {
  text-align: center;
  font-size: 14px;
}

/* -------------
----------------
レスポンシブ
----------------
-------------
*/
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .wrapper {
    width: 90%;
  }
  .header {
    width: 90%;
    position: fixed;
    z-index: 9999;
    text-align: center;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: -120%;
    transition: all 0.6s;
  }
  .header.panelactive {
    left: 0;
  }
  /*========= ボタンのためのCSS ===============*/
  .menuBtn {
    position: fixed;
    z-index: 99999; /*ボタンを最前面に*/
    top: 10px;
    left: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .menuBtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #333;
    width: 45%;
  }
  .menuBtn span:nth-of-type(1) {
    top: 15px;
  }
  .menuBtn span:nth-of-type(2) {
    top: 23px;
  }
  .menuBtn span:nth-of-type(3) {
    top: 31px;
  }
  .menuBtn.active {
    /*  ×に変化  */
  }
  .menuBtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .menuBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menuBtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .header__bg {
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgb(233, 239, 222);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.5s;
  }
  .header__bg.active {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  h2 {
    padding-top: 40px;
    margin-bottom: 20px;
  }
  .en_green {
    font-size: 18px;
    margin-bottom: 10px;
  }
  h3 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .main {
    margin-left: 0px;
  }
  .fv {
    height: 80vh;
    background-size: cover;
    background-position: center;
  }
  .fv__text {
    width: 95%;
    font-size: 30px;
  }
  .fv__text::before {
    left: 43px;
  }
  /*追随予約ボタン*/
  .reserveBtn {
    position: fixed;
    z-index: 99;
    top: initial;
    right: 0;
    left: 0;
    bottom: -30px;
    line-height: 60px;
    writing-mode: horizontal-tb;
    display: inline-block;
    border-radius: 20px 20px 0 0;
    text-align: center;
    padding: 0;
  }
  /* フッター*/
  footer .footer {
    padding-top: 80px;
    padding-bottom: 70px;
  }
  footer .footer p {
    text-align: center;
    font-size: 14px;
  }
}
.about {
  padding-bottom: 70px;
  /* -------------
  ----------------
  レスポンシブ
  ----------------
  -------------
  */
}
.about__text {
  text-align: center;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 70px;
}
.about__list {
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.about__list > li {
  width: 28%;
}
.about__list > li figure {
  margin: 10px;
  padding: 30px;
  background-color: #8FC325;
  border-radius: 50%;
}
.about__list > li > p {
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  color: #8FC325;
  margin-top: 20px;
}
.about__list > li > p span {
  display: block;
  font-weight: bold;
  margin-top: 16px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about .about {
    padding-bottom: 40px;
  }
  .about .about__text {
    text-align: center;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 40px;
  }
  .about .about__list {
    width: 90%;
  }
  .about .about__list > li {
    width: 35%;
  }
  .about .about__list > li figure {
    padding: 10px;
  }
  .about .about__list > li > p {
    font-size: 15px;
    margin-top: 15px;
  }
  .about .about__list > li > p span {
    display: none;
  }
}

.floor__2 {
  background-image: url(../img/2nd_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 70px;
  padding-top: 5px;
}
.floor__2_cap {
  text-align: center;
  position: relative;
  font-size: 18px;
  top: -15px;
}
.floor__2_cap span {
  display: inline-block;
  margin-top: 10px;
}
.floor__3 {
  background-color: #E9EFDE;
  padding-bottom: 70px;
}

.slider_1 > .slick-arrow::before {
  color: #FBFBFB;
  font-weight: bold;
  font-size: 36px;
}
.slider_1 > .slick-prev {
  left: 20px;
  z-index: 3;
}
.slider_1 > .slick-prev::before {
  content: "<";
}
.slider_1 > .slick-next {
  right: 20px;
  z-index: 4;
}
.slider_1 > .slick-next::before {
  content: ">";
}

/*==================================================
アコーディオンで間取り図表示(２階)
===================================*/
/*アコーディオンタイトル*/
.floorPlan {
  background-color: #8fc325;
}
.floorPlan__title {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  line-height: 100px;
  padding: 0px 30px;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.5s ease;
}
.floorPlan__title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #8fc325;
  top: 48%;
  left: 42px;
  transform: rotate(0deg);
}
.floorPlan__title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #8fc325;
  top: 48%;
  left: 42px;
  transform: rotate(90deg);
}
.floorPlan__title.close::before {
  transform: rotate(45deg);
}
.floorPlan__title.close::after {
  transform: rotate(-45deg);
}
.floorPlan__title > span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  margin-right: 30px;
}
.floorPlan__box {
  display: none; /*はじめは非表示*/
  background: #8fc325;
  margin: 0 3% 0% 3%;
  padding: 3%;
}

/*==================================================
アコーディオンで間取り図表示（３階）
===================================*/
/*アコーディオンタイトル*/
.floorPlan3nd {
  background-color: #688E1B;
}
.floorPlan3nd__title {
  display: flex;
  align-items: center;
  color: #fff;
  position: relative;
  cursor: pointer;
  font-size: 1rem;
  font-weight: normal;
  line-height: 100px;
  padding: 0 30px;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.5s ease;
}
.floorPlan3nd__title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #688E1B;
  top: 48%;
  left: 42px;
  transform: rotate(0deg);
}
.floorPlan3nd__title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #688E1B;
  top: 48%;
  left: 42px;
  transform: rotate(90deg);
}
.floorPlan3nd__title.close::before {
  transform: rotate(45deg);
}
.floorPlan3nd__title.close::after {
  transform: rotate(-45deg);
}
.floorPlan3nd__title > span {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #fff;
  margin-right: 30px;
}
.floorPlan3nd__box {
  display: none; /*はじめは非表示*/
  background: #688E1B;
  margin: 0 3% 0% 3%;
  padding: 3%;
}

.service {
  max-width: 900px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
}
.service__list {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.service__list > li {
  width: 100px;
  height: 100px;
  background-color: #fff;
  border-radius: 22px;
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
.service__list > li > figure {
  height: 45px;
  margin-bottom: 5px;
}
.service__list > li > figure img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.service__list > li p {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}
.service__list > li p span {
  display: block;
}

/* -------------
----------------
レスポンシブ
----------------
-------------
*/
@media screen and (max-width: 767px) {
  .floor__2 {
    padding-bottom: 40px;
    padding-top: 5px;
    background-position: center;
  }
  .floor__2_cap {
    font-size: 14px;
    top: 8px;
  }
  .floor__2_cap span {
    display: inline-block;
    margin-top: 5px;
    line-height: 1.5;
  }
  .floor__3 {
    background-color: #E9EFDE;
    padding-bottom: 40px;
  }
  .service {
    margin-top: 40px;
  }
  .service__list {
    gap: 15px;
    justify-content: center;
  }
  .slider_1 > .slick-arrow::before {
    font-size: 15px;
  }
  .slider_1 > .slick-prev {
    left: 15px;
  }
  .slider_1 > .slick-next {
    right: 20px;
  }
}
.price {
  background-color: #FBFBFB;
}
.price h2 {
  background-size: auto auto;
  background-color: rgb(251, 251, 251);
  background-image: repeating-linear-gradient(135deg, transparent, transparent 30px, rgb(233, 239, 222) 30px, rgb(233, 239, 222) 35px);
}
.price h2 span.bgappearTrigger.bgappear {
  position: relative;
  bottom: 30px;
}
.price__title {
  text-align: center;
  color: #688e1a;
}
.price__title span {
  display: block;
}
.price__inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 66px 41px 55px;
  background: #F5F9E8;
  margin-bottom: 70px;
}
.price__table {
  width: 100%;
}
.price__table .non {
  background-color: #F5F9E8;
}
.price__table .th {
  border: #F5F9E8 1px solid;
  border-radius: 13px 13px 0 0;
  background-color: #8FC325;
  height: 82px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}
.price__table .th__sub {
  background-color: #E9EFDE;
  height: 52px;
}
.price__table .halhDay {
  background-color: #8fc325;
  border-radius: 0 0 13px 13px;
  overflow: hidden;
  border-top: 3px solid #F5F9E8;
}
.price__table .halhDay > th {
  background-color: #8fc325;
  color: #fff;
}
.price__table .halhDay > td {
  color: #fff;
}
.price__table thead {
  background-color: #e9efde;
}
.price__table thead th {
  text-align: center;
}
.price__table tbody tr th {
  background-color: #e9efde;
}

.tableTitle {
  font-size: 24px;
  text-align: center;
  color: #8FC325;
  padding-bottom: 55px;
  border-bottom: 1px solid #8FC325;
}

tbody {
  border-radius: 10px 0 10px 10px;
}
tbody th {
  font-size: 18px;
  font-weight: bold;
}
tbody td {
  font-size: 18px;
  font-weight: bold;
}
tbody td span {
  font-size: 14px;
  vertical-align: bottom;
}

th {
  vertical-align: middle;
  text-align: center;
}

td {
  vertical-align: middle;
  text-align: center;
}

.corner_l {
  border-radius: 10px 0 0 0;
}

.thTime {
  padding: 45px 0 33px;
}

.trTop th, .trTop td {
  padding-top: 47px;
}
.trTop td:nth-last-child(-n+2) {
  padding-top: 20px;
}

.halhDay {
  background-color: #8FC325;
}
.halhDay th {
  padding: 22px;
}

.corner_rb {
  border-radius: 0 0 13px 0;
}

.corner_lb {
  border-radius: 0 0 0 13px;
}

.price__other {
  background: no-repeat;
  padding: 35px 0 0;
  text-align: center;
  position: relative;
}
.price__other .outTitle {
  position: absolute;
  color: #8FC325;
  top: 7px;
  left: 75px;
}
.price__other__inner {
  padding: 35px 0 55px;
}
.price__other__inner h4 {
  font-size: 22px;
  color: #688E1A;
  font-weight: bold;
}
.price__other__inner h4 span {
  display: block;
  font-weight: normal;
  color: #333;
  font-size: 16px;
  margin-top: 10px;
}

.priceOther_top {
  background-image: url(../img/flame_bg.png);
  margin-bottom: 70px;
  background-size: 100% 100%;
}
.priceOther_top ul {
  margin-top: 40px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: left;
  margin-right: auto;
  margin-left: auto;
}
.priceOther_top ul li {
  font-size: 18px;
  font-weight: bold;
}
.priceOther_top ul li:last-child {
  margin-top: 8px;
}
.priceOther_bottom {
  background-image: url(../img/flame_bg2.png);
}
.priceOther_bottom p {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.7;
  text-align: left;
  display: inline-block;
}

/* -------------
----------------
レスポンシブ
----------------
-------------
*/
@media screen and (max-width: 767px) {
  .price h2 {
    margin-bottom: 30px;
  }
  .price h2 span.bgappearTrigger.bgappear {
    bottom: 20px;
  }
  .price__inner {
    padding: 20px 15px;
    margin-bottom: 40px;
  }
  .price__table .th {
    height: 70px;
    font-size: 15px;
    padding: 0px 3px;
  }
  .price__table .th__sub {
    height: 50px;
    font-size: 15px;
    width: 25%;
  }
  .tableTitle {
    font-size: 18px;
    padding-bottom: 20px;
  }
  tbody {
    border-radius: 10px 0 10px 10px;
  }
  tbody th {
    font-size: 15px;
    font-weight: bold;
  }
  tbody td {
    font-size: 15px;
    font-weight: bold;
  }
  tbody td span {
    font-size: 14px;
    vertical-align: bottom;
  }
  th {
    vertical-align: middle;
    text-align: center;
  }
  td {
    vertical-align: middle;
    text-align: center;
  }
  .corner_l {
    border-radius: 10px 0 0 0;
  }
  .thTime {
    padding: 45px 0 33px;
  }
  .trTop th, .trTop td {
    padding-top: 30px;
  }
  .trTop td:nth-last-child(-n+2) {
    padding-top: 0px;
  }
  .halhDay {
    background-color: #8FC325;
  }
  .halhDay th {
    padding: 15px 8px;
  }
  .price__other__inner {
    padding: 30px;
    border-radius: 13px;
  }
  .price__other__inner h4 {
    font-size: 18px;
  }
  .price__other__inner h4 span {
    font-size: 14px;
    margin-top: 8px;
  }
  .priceOther_top {
    margin-bottom: 50px;
    background-image: url(../img/flame_top.png);
    background-size: 100% 100%;
  }
  .priceOther_top .outTitle {
    left: 80px;
  }
  .priceOther_top ul {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .priceOther_top ul li {
    font-size: 16px;
    text-align: center;
    line-height: 1.7;
  }
  .priceOther_top ul li:last-child {
    margin-top: 30px;
  }
  .priceOther_bottom {
    padding-top: 40px;
    background-image: url(../img/flame_bottom.png);
    background-size: 100% 100%;
  }
  .priceOther_bottom .outTitle {
    top: -15px;
    left: 85px;
  }
  .priceOther_bottom p {
    font-size: 16px;
  }
  .priceOther_bottom p .pc {
    display: none;
  }
}
.option {
  padding-left: 10vw;
}
.option h2 {
  text-align: left;
}
.option__list {
  display: flex;
  align-items: center;
}

.slider_2 {
  width: 55%;
}
.slider_2 > .slick-arrow::before {
  color: #3d3d3d;
}
.slider_2 > .slick-prev {
  left: 20px;
  z-index: 3;
}
.slider_2 > .slick-prev::before {
  content: "<";
}
.slider_2 > .slick-next {
  right: 20px;
  z-index: 4;
}
.slider_2 > .slick-next::before {
  content: ">";
}
.slider_2 li img {
  -o-object-fit: cover;
     object-fit: cover;
}

.slider_2.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.optionList {
  background-color: #8FC325;
  border-radius: 20px;
  padding: 35px 30px;
  margin-right: 30px;
}
.optionList li {
  color: #fbfbfb;
  font-size: 18px;
  margin-bottom: 20px;
  white-space: nowrap;
}
.optionList li:last-child {
  margin-bottom: 0;
}

/* -------------
 ----------------
 レスポンシブ
 ----------------
 -------------
 */
@media screen and (max-width: 767px) {
  .option {
    padding-left: 0;
  }
  .option h2 {
    margin-left: 10%;
  }
  .option__list {
    flex-direction: column-reverse;
    width: 90%;
    padding-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  .slider_2 {
    width: 100%;
    height: 350px;
  }
  .slider_2 > .slick-arrow::before {
    color: #3d3d3d;
  }
  .slider_2 > .slick-prev {
    left: 20px;
    z-index: 3;
  }
  .slider_2 > .slick-prev::before {
    content: "<";
  }
  .slider_2 > .slick-next {
    right: 20px;
    z-index: 4;
  }
  .slider_2 > .slick-next::before {
    content: ">";
  }
  .slider_2 li img {
    height: 350px;
  }
  .optionList {
    padding: 40px 10px;
    margin-right: 0px;
    margin-top: 50px;
  }
  .optionList li {
    color: #fbfbfb;
    font-size: 18px;
    margin-bottom: 20px;
    white-space: nowrap;
  }
  .optionList li:last-child {
    margin-bottom: 0;
  }
}
.map {
  text-align: center;
  margin-bottom: 20px;
}
.map__add {
  font-size: 16px;
  color: #688E1A;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 40px;
}
.map ul {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  margin-bottom: 90px;
}
.map ul li {
  font-weight: bold;
  margin-bottom: 20px;
}
.map ul li:last-child {
  margin-bottom: 0;
}

.btnArea a {
  display: inline-block;
  color: #fbfbfb;
  width: 303px;
  line-height: 63px;
  font-weight: bold;
  border-radius: 13px;
  box-shadow: 3px 3px 0px 0px rgb(235, 234, 229);
  transition: all 0.5s;
}
.btnArea .kiyaku {
  background-color: #8FC325;
  margin-right: 30px;
}
.btnArea .kiyaku:hover {
  background-color: #a5d743;
}
.btnArea .yoyaku {
  background-color: #688E1B;
}
.btnArea .yoyaku:hover {
  background-color: #7ca42d;
}

/* -------------
----------------
レスポンシブ
----------------
-------------
*/
@media screen and (max-width: 767px) {
  .map__add {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .map ul {
    margin-bottom: 40px;
  }
  .map ul li {
    margin-bottom: 10px;
  }
  .map ul li:last-child {
    margin-bottom: 0;
  }
  .btnArea a {
    line-height: 55px;
  }
  .btnArea .kiyaku {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .btnArea .kiyaku:hover {
    background-color: #a5d743;
  }
}
.qa__list li {
  margin-bottom: 20px;
}
.qa__list li .q {
  padding: 3%;
  font-size: 18px;
  color: #333;
  font-weight: bold;
  background-color: #F5F9E8;
  position: relative;
}
.qa__list li .q::after {
  position: absolute;
  content: "";
  right: 30px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-bottom: #6A7A5F 2px solid;
  border-right: #6A7A5F 2px solid;
  transform: rotate(45deg) translateY(-50%);
}
.qa__list li .a {
  display: none;
  background: #f3f3f3;
  font-size: 18px;
  letter-spacing: 1.5;
  padding: 3%;
}

/* -------------
----------------
レスポンシブ
----------------
-------------
*/
@media screen and (max-width: 767px) {
  .qa__list li {
    margin-bottom: 20px;
  }
  .qa__list li .q {
    padding: 10% 3%;
    font-size: 16px;
  }
  .qa__list li .q::after {
    right: 15px;
  }
  .qa__list li .a {
    font-size: 16px;
    padding: 5% 3%;
  }
}
.gallery__box {
  display: grid;
  grid-template-columns: 200px 200px 200px 200px;
  grid-template-rows: 200px 200px;
  justify-content: center;
  gap: 20px;
}
.gallery__box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -------------
----------------
レスポンシブ
----------------
-------------
*/
@media screen and (max-width: 767px) {
  .gallery__box {
    grid-template-columns: 150px 150px;
    grid-template-rows: 150px 150px 150px 150px;
    gap: 10px;
  }
}
/*# sourceMappingURL=style.css.map */