@charset "UTF-8";
/* var */
/* color*/
/* media query(break point) */
/* animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* font */
html,
body {
  font-family: "Yu Gothic", "游ゴシック", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-weight: 500;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  font-size: 16px;
}

.sponly {
  display: none !important;
}

@media screen and (max-width: 767px) {
  html,
  body {
    font-size: 14px;
  }
  .pconly {
    display: none !important;
  }
  .sponly {
    display: block !important;
  }
}
/* ------------------------------------------------
  共通パーツ
 ------------------------------------------------ */
/* コンテンツ幅設定 */
.inner {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 15px;
  width: 100%;
}

.content {
  margin-bottom: 3rem;
}

@media screen and (max-width: 991px) {
  .inner {
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }
  .content {
    margin-bottom: 1.5rem;
  }
}
.fc-secondcolor {
  color: #ED436A;
}

.attention {
  color: #808486;
  font-size: 13px;
  line-height: 1.4;
}

.btn-default {
  background-color: #fff;
  border: #30af41 3px solid;
  color: #30af41;
  display: inline-block;
  font-size: 0.9rem;
  padding: 0.5em 1.5rem 0.5em;
  transition: 0.3s;
  font-weight: bold;
}

.btn-default:hover {
  background-color: #30af41;
  color: #fff;
}

.btn-default.turned {
  background-color: #30af41;
  color: #fff;
}

.btn-default.turned:hover {
  opacity: 0.7;
}

.btn-fav::before {
  content: "\f004";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  margin-right: 5px;
  vertical-align: text-bottom;
}

@media screen and (max-width: 767px) {
  .btn-default {
    border-width: 2px;
    padding: 1em 1rem 0.9em;
  }
}
.title-basic {
  background-color: #EEF4ED;
  border-radius: 24px;
  color: #30af41;
  font-size: 22px;
  font-weight: 600;
  margin: 3rem 0 2rem;
  padding: 0.8rem;
  text-align: center;
}
.title-basic .sm {
  font-size: 16px;
}

.text-lead {
  color: #6c6c6c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

@media screen and (max-width: 767px) {
  .btn-default {
    border-width: 2px;
    padding: 1em 1rem 0.9em;
  }
  .title-basic {
    font-size: 18px;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}
/*
入力系
------------------------------------------ */
input {
  transition: 0.3s;
}

input[type=text]:focus,
input[type=number]:focus,
textarea:focus {
  background-color: #EEF4ED;
  outline: none;
}

input[type=text]::placeholder,
input[type=number]::placeholder,
textarea::placeholder {
  color: #999;
}

/* キーワード検索 */
.wordsrch {
  display: flex;
  margin: auto;
  overflow: hidden;
  width: 65%;
}

.wordsrch__input {
  background-color: #fff;
  border: 2px solid #30af41;
  border-bottom-left-radius: 20px;
  border-top-left-radius: 20px;
  flex-basis: 80%;
  padding: 1rem;
}

.wordsrch__btn {
  background-color: #30af41;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
  color: #fff;
  flex-basis: 20%;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 10px;
  outline: none;
  padding: 1rem;
  transition: 0.3s;
}
.wordsrch__btn:hover {
  background-color: #35c348;
}
.wordsrch__btn:focus {
  outline: none;
}

@media screen and (max-width: 767px) {
  .wordsrch {
    width: 100%;
  }
  .wordsrch__input {
    border-width: 1px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    flex-basis: 75%;
    padding: 1rem;
  }
  .wordsrch__btn {
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    flex-basis: 25%;
    font-size: 14px;
    padding: 0.8rem;
  }
}
.header {
  align-content: center;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2%;
}

.header__logo {
  margin-top: 1rem;
  width: 270px;
}

.header__topmenu {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.header__tel {
  margin-right: 1rem;
  text-align: right;
}

.header__tel-num {
  color: #000;
  font-family: "PT Sans Caption";
  font-size: 1.5rem;
  font-weight: 600;
}

.header__tel-num::before {
  color: #30af41;
  content: "\f87b";
  font-family: "Font Awesome 5 Pro";
  font-weight: 600;
  margin-right: 5px;
}

.header__tel-hour {
  font-size: 0.7rem;
  line-height: 1.4;
}

.header__mainmenu {
  align-items: center;
  display: flex;
}

.header__nav {
  display: flex;
  margin-right: 1.5rem;
}

.header__nav-item:not(:last-child)::after {
  content: "｜";
  color: #ccc;
}

.header__nav-item a {
  color: #000;
  font-weight: 600;
  padding: 0 3px;
  transition: 0.3s;
}

.header__nav-item a:hover {
  color: #30af41;
  opacity: 0.7;
}

.header__applybtn {
  display: flex;
}

.header__applybtn .btn-default {
  border-width: 1px;
  padding: 0.5em 1em;
}
.header__applybtn .btn-default:not(:last-child) {
  margin-right: 12px;
}
.header__applybtn .btn-cancel,
.header__applybtn .btn-renew,
.header__applybtn .btn-userguide {
  font-weight: 600;
}
.header__applybtn .btn-cancel {
  background-color: #d9edd6;
  border-color: #d9edd6;
  color: #30af41;
}
.header__applybtn .btn-cancel:hover {
  background-color: #30af41;
  border-color: #30af41;
  color: #d9edd6;
}
.header__applybtn .btn-renew {
  background-color: #e1e9ef;
  border-color: #e1e9ef;
  color: #59768b;
}
.header__applybtn .btn-renew:hover {
  background-color: #59768b;
  border-color: #59768b;
  color: #e1e9ef;
}
.header__applybtn .btn-userguide {
  background-color: #efebe1;
  border-color: #efebe1;
  color: #7b7b7b;
}
.header__applybtn .btn-userguide:hover {
  background-color: #7b7b7b;
  border-color: #7b7b7b;
  color: #efebe1;
}

.header__contactbtn {
  display: flex;
}

.header__contactbtn .btn-default:not(:last-child) {
  margin-right: 12px;
}

@media screen and (max-width: 767px) {
  .header {
    background-color: #fff;
    height: 60px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
  }
  .header__logo {
    margin-top: 0;
    padding: 0.8rem;
  }
  .header__logo img {
    max-height: 100%;
  }
  .header__menu {
    background-color: #fff;
    box-shadow: 0 3px 5px rgba(150,150,150,0.3);
    display: none;
    padding-bottom: 1rem;
    position: fixed;
    top: 60px;
    width: 100%;
  }
  .header__topmenu,
  .header__mainmenu {
    flex-direction: column;
  }
  .header__topmenu {
    padding-top: 1rem;
  }
  .header__tel {
    margin-right: 0;
    margin-bottom: 1rem;
    text-align: center;
  }
  .header__tel-num {
    font-size: 32px;
  }
  .header__tel-hour {
    font-size: 0.9rem;
    margin-top: 0.5rem;
  }
  .header__spmenu {
    background-color: #fff;
    padding: 1.25rem;
    height: 60px;
    width: 60px;
  }
  .header__spmenu-bar {
    width: 100%;
    height: 3px;
    background-color: #30af41;
  }
  .header__spmenu-bar:not(:last-child) {
    margin-bottom: 6px;
  }
  .header__nav {
    display: block;
    margin-bottom: 1rem;
    margin-right: 0;
    width: 100%;
  }
  .header__nav-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
  }
  .header__nav-item:not(:last-child)::after {
    display: none;
  }
  .header__nav-item a {
    display: block;
    padding: 1rem;
    text-align: center;
    font-size: 16px;
  }
  .header__applybtn {
    justify-content: space-around;
    width: 100%;
  }
  .header__applybtn .btn-default:not(:last-child) {
    margin-right: 0;
  }
  .header__applybtn .btn-default {
    padding: 1em 1rem 0.9em;
    text-align: center;
    width: 46%;
  }
}
.headbanner {
  background-color: #30af41;
  margin-bottom: 0rem;
}

.headbanner a {
  display: block;
  padding: 1rem 0;
  transition: 0.3s;
}

.headbanner a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .headbanner {
    margin-bottom: 0;
    margin-top: 60px;
  }
}
/*------------------------------------------------
  フォームほか　ヘッダー
------------------------------------------------ */
.header-short {
  background-color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
.header-short a {
  transition: 0.3s;
}
.header-short a:hover {
  opacity: 0.8;
}
.header-short img {
  max-width: 260px;
}

@media screen and (max-width: 767px) {
  .header-short {
    padding: 1rem;
  }
  .header-short img {
    max-width: 50%;
  }
}
/*------------------------------------------------
  下層ページヘッダ
------------------------------------------------ */
.headimg {
  background-image: url("./../../../img/common/header/headimg_seconds.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 3.5rem 0 3rem;
}

.headimg__title {
  align-items: flex-end;
  display: flex;
}

.headimg__title-main {
  font-family: "Josefin Sans";
  font-size: 48px;
  font-style: italic;
  margin-right: 1.5rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.headimg__title-sub {
  font-weight: 600;
  line-height: 1.4;
  padding: 0 0 0.5rem 1rem;
}

.srchlist__result {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .headimg {
    padding: 1.5rem 0;
  }
  .headimg.srchlist .inner {
    flex-wrap: wrap;
  }
  .headimg__title {
    align-items: center;
    flex-basis: 100%;
  }
  .headimg__title-main {
    flex-basis: 50%;
    flex-shrink: 0;
    font-size: 24px;
    line-height: 1.2;
    white-space: unset;
  }
  .headimg__title-sub {
    flex-basis: 50%;
    font-size: 10px;
    padding: 0;
  }
  .srchlist__result {
    flex-basis: 100%;
    font-size: 12px;
    text-align: right;
  }
  .srchlist__result .large {
    font-size: 24px;
  }
}
/*------------------------------------------------
  パンくず
------------------------------------------------ */
.breadcrumb {
  background-color: #EEF4ED;
  padding: 0.8rem 0;
  margin-bottom: 3rem;
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: flex-start;
}

.breadcrumb-list li:not(:last-child)::after {
  color: #30af41;
  content: ">";
  margin: 0 0.8rem;
  font-family: "Consolas";
}

.breadcrumb-list li a {
  color: #30af41;
  font-size: 14px;
  transition-duration: 0.3s;
}

.breadcrumb-list li a:hover {
  text-decoration: underline;
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 1.5rem;
    overflow-x: scroll;
  }
  .breadcrumb-list {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .breadcrumb-list li a {
    font-size: 10px;
  }
}
/*------------------------------------------------
  街づくりのお手伝い
------------------------------------------------ */
.aboutus {
  background-color: #30af41;
  color: #fff;
  padding: 8rem 0;
}

.aboutus__title {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2.5rem;
}

.aboutus__text {
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2.8rem;
  text-align: center;
}

.aboutus__list {
  display: flex;
  justify-content: space-between;
}

.aboutus__item {
  display: flex;
  flex-basis: 31.5%;
}
.aboutus__item:hover .aboutus__content {
  opacity: 0.8;
}

.aboutus__img {
  flex-basis: 35%;
}

.aboutus__content {
  background-color: #fff;
  flex-basis: 65%;
  padding: 2.2rem 1rem 2rem 2rem;
  transition: 0.3s;
}

.aboutus__subtitle {
  color: #30af41;
  font-family: "Josefin Sans";
  font-size: 12px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.aboutus__maintitle {
  color: #30af41;
  font-size: 20px;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .aboutus {
    padding: 2.5rem 0;
  }
  .aboutus__title {
    font-size: 18px;
    margin-bottom: 1.5rem;
  }
  .aboutus__text {
    font-size: 13px;
    font-weight: normal;
    margin-bottom: 1.5rem;
  }
  .aboutus__list {
    flex-direction: column;
  }
  .aboutus__item {
    flex-basis: 100%;
  }
  .aboutus__item:not(:last-child) {
    margin-bottom: 1rem;
  }
  .aboutus__img {
    height: 60px;
    overflow: hidden;
  }
  .aboutus__img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .aboutus__content {
    align-items: center;
    display: flex;
    padding: 1rem;
    padding-right: 0;
  }
  .aboutus__subtitle {
    font-size: 10px;
    margin-bottom: -5px;
    margin-right: 1rem;
    white-space: nowrap;
  }
  .aboutus__maintitle {
    font-size: 15px;
  }
}
/*------------------------------------------------
  チラシ
------------------------------------------------ */
.flyer {
  text-align: center;
  margin-top: 2rem;
}
.flyer__item{
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
}
.flyer a {
  text-decoration-line: underline;
  color: #666;
  width: 32%;
}
.flyer a:hover {
  text-decoration: none;
}

.flyer__item:nth-child(1) {
  flex-basis: auto;
  line-height: 1.6;
}
.flyer__item img {
  transition: 0.3s;
}
.flyer__item img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .flyer {
    flex-wrap: wrap;
    text-align: center;
    margin-top: 2rem;
  }
  .flyer__item:not(:last-child) {
    margin-bottom: 1rem;
  }
}
/*------------------------------------------------
  バナー
------------------------------------------------ */
.banners {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

.banners__item:nth-child(1) {
  flex-basis: auto;
}
.banners__item:nth-child(2) {
  flex-basis: auto;
}
.banners__item img {
  transition: 0.3s;
}
.banners__item img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .banners {
    flex-wrap: wrap;
    margin-top: 1rem;
  }
  .banners__item:nth-child(1), .banners__item:nth-child(2) {
    flex-basis: 100%;
  }
  .banners__item:not(:last-child) {
    margin-bottom: 1rem;
  }
}
/*------------------------------------------------
  tiktok
------------------------------------------------ */
.tiktok_flame {
  margin-top: 5rem;
}
.tiktok_flame .tiktok__maintitle,
.tiktok_flame .tiktok__subtitle {
  color: #30af41;
  text-align: center;
}
.tiktok_flame h2 {
  text-align: center;
}
.tiktok_flame .tiktok__maintitle {
  font-family: "Josefin Sans";
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-right: 1rem;
}
.tiktok_flame .tiktok__subtitle {
  font-size: 18px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .tiktok_flame .tiktok {
    margin-top: 2rem;
    padding: 2rem 0;
  }
  .tiktok_flame span.tiktok__maintitle {
    font-size: 28px;
    margin-bottom: 0.5rem;
    display: block;
  }
  .tiktok_flame span.tiktok__subtitle {
    font-size: 14px;
    margin-bottom: 1.5rem;
    display: block;
  }
}

/*------------------------------------------------
  topics
------------------------------------------------ */
/* お知らせトピックス */
.topics {
  background-color: #EEF4ED;
  margin-top: 4rem;
  padding: 5rem 0;
}

.topics__maintitle,
.topics__subtitle {
  color: #30af41;
  text-align: center;
}

.topics__maintitle {
  font-family: "Josefin Sans";
  font-size: 48px;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.topics__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 2.5rem;
}

.topics__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.topics__item {
  flex-basis: 31.5%;
  margin-bottom: 3rem;
  margin-right: 2.75%;
  transition: 0.3s;
}
.topics__item:nth-child(3n) {
  margin-right: 0;
}
.topics__item:nth-last-child(-n+3) {
  margin-bottom: 0;
}
.topics__item:hover {
  opacity: 0.8;
}

.topics__img {
  height: 230px;
  margin-bottom: 1rem;
}
.topics__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.topics__date {
  color: #808486;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.topics__date .num {
  letter-spacing: 1px;
}
.topics__date .category {
  background-color: #fff;
  border: 1px solid #30af41;
  color: #30af41;
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2rem;
}

.topics__title {
  color: #000;
  font-weight: 600;
  line-height: 1.4;
}

.topics__links {
  text-align: center;
}
.topics__links a {
  background-color: #fff;
  border: 1px solid #30af41;
  border-radius: 20px;
  color: #30af41;
  display: inline-block;
  margin-right: 1rem;
  padding: 0.8rem 1rem;
  transition: 0.3s;
}
.topics__links a:last-child {
  margin-right: 0;
}
.topics__links a:hover {
  background-color: #30af41;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .topics {
    margin-top: 2rem;
    padding: 2rem 0;
  }
  .topics__maintitle {
    font-size: 28px;
    margin-bottom: 0.5rem;
  }
  .topics__subtitle {
    font-size: 14px;
    margin-bottom: 1.5rem;
  }
  .topics__item {
    flex-basis: 48%;
    margin-bottom: 1rem;
    margin-right: 4%;
  }
  .topics__item:nth-last-child(-n+3) {
    margin-bottom: 1rem;
  }
  .topics__item:nth-child(3n) {
    margin-right: 4%;
  }
  .topics__item:nth-child(2n) {
    margin-right: 0;
  }
  .topics__img {
    height: 100px;
  }
  .topics__list {
    margin-bottom: 0.5rem;
  }
  .topics__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: -0.8rem;
  }
  .topics__links a {
    display: block;
    flex-basis: 48.5%;
    font-weight: 600;
    margin-bottom: 0.8rem;
    margin-right: 0;
    padding: 0.6rem;
  }
}
/*------------------------------------------------
  おすすめ物件
------------------------------------------------ */
.recomend__btn {
  text-align: center;
}
.recomend__btn .btn-default {
  box-shadow: 0 3px 5px rgba(150,150,150,0.3);
  font-size: 17px;
  font-weight: 600;
  padding: 1rem 4rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  width: 100%;
}

.recslider {
  margin-right: -15px;
  margin-left: -15px;
  position: relative;
}

.recslider__item {
  border: 1px solid #ddd;
  display: block;
  margin-left: 15px;
  margin-right: 15px;
  outline: none;
  transition: 0.3s;
}
.recslider__item:hover {
  opacity: 0.8;
}

.recslider__img {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.recslider__img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.recslider__img .recslider__label {
  background-color: #fff;
  border: 1px solid #30af41;
  border-radius: 16px;
  color: #30af41;
  display: inline-block;
  font-size: 12px;
  padding: 0.3rem 0.5rem;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}

.recslider__content {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  padding: 1.2rem 1.5rem 1.5rem;
}

.recslider__title {
  color: #30af41;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.8rem;
  min-height: 75px;
}

.recslider__add {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.recslider__price {
  color: #000;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.recslider__price .price {
  color: #30af41;
}
.recslider__price .large {
  font-size: 22px;
  margin-right: 3px;
}
.recslider__price .small {
  font-size: 10px;
}

.recslider__deposit {
  color: #000;
  font-weight: 600;
  line-height: 1.4;
}

.recslider__arrow {
  background-color: #30af41;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(150, 150, 150, 0.5);
  cursor: pointer;
  display: block;
  height: 80px;
  width: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  z-index: 2;
}
.recslider__arrow:hover {
  background-color: #35c348;
}
.recslider__arrow i {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  line-height: 80px;
}

.recslider__arrow.prev {
  left: -25px;
}

.recslider__arrow.next {
  right: -25px;
}

.slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.slick-dots li button {
  background-color: #30af41;
  border-radius: 50%;
  color: transparent;
  width: 18px;
  height: 18px;
  padding: 5px;
  transition: 0.3s;
}
.slick-dots li button:hover {
  opacity: 0.7;
}
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li:not(:last-child) {
  margin-right: 12px;
}

@media screen and (max-width: 767px) {
  .recslider {
    margin-left: 0;
    margin-right: 0;
  }
  .recslider__item {
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
  }
  .recslider__img {
    float: left;
    height: auto;
    width: 120px;
  }
  .recslider__img .recslider__label {
    display: none;
  }
  .recslider__content {
    float: left;
    min-height: unset;
    padding: 0.5rem 1rem;
    width: calc(100% - 120px);
  }
  .recslider__title {
    font-size: 13px;
    margin-bottom: 0.3rem;
    min-height: unset;
  }
  .recslider__add {
    margin-bottom: 0.3rem;
  }
  .recslider__price {
    line-height: 1.4;
  }
  .recslider__price .large {
    font-size: 18px;
  }
  .recslider__add,
  .recslider__price,
  .recslider__deposit {
    font-size: 12px;
  }
  .recslider__arrow {
    box-shadow: none;
    height: 40px;
    width: 40px;
    top: 40%;
  }
  .recslider__arrow i {
    font-size: 24px;
    line-height: 40px;
  }
  .recslider__arrow.prev {
    left: -10px;
  }
  .recslider__arrow.next {
    right: -10px;
  }
  .slick-dots {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }
  .slick-dots li button {
    height: 10px;
    width: 10px;
  }
  .slick-dots li:not(:last-child) {
    margin-right: 5px;
  }
}
/*------------------------------------------------
  footer上コンテンツ
------------------------------------------------ */
.foottext {
  color: #7b7b7b;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.footcontent {
  display: flex;
}

.footcontent__item {
  display: flex;
  flex-direction: column;
  flex-basis: 50%;
  justify-content: space-between;
  padding: 5rem 1.5rem;
  text-align: center;
}

.footcontent__contact {
  background-color: #30af41;
  color: #fff;
}

.footcontent__title {
  margin-bottom: 1rem;
}

.footcontent__title-main {
  font-family: "Josefin Sans";
  font-size: 42px;
  font-style: italic;
  margin-bottom: 1rem;
}

.footcontent__title-sub {
  font-weight: 600;
}

.footcontent__useful {
  padding-left: 3%;
  padding-right: 3%;
}

.footcontent__useful .footcontent__title-main {
  color: #30af41;
}

.footcontent__useful .footcontent__title-sub {
  color: #3b4043;
}

.footcontent__links {
  display: flex;
  margin-top: 3.5rem;
}

.footcontent__links-item {
  align-items: flex-start;
  display: flex;
  flex-basis: 50%;
}

.footcontent__links-img {
  width: 35%;
}

.footcontent__links-text {
  padding-left: 1rem;
  text-align: left;
}

.footcontent__links-label {
  border: 1px solid #707070;
  color: #3b4043;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding: 0.3rem 1.2rem;
  text-align: center;
}

.footcontent__links-title {
  color: #30af41;
  font-size: 22px;
  font-weight: 600;
}

.footcontent__contact-text {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.footcontent__contact-tel {
  color: #fff;
  display: block;
  font-family: "PT Sans Caption";
  font-size: 38px;
  margin-bottom: 1rem;
}

.footcontent__contact-tel::before {
  content: "\f87b";
  font-family: "Font Awesome 5 Pro";
  font-size: 0.8em;
  font-weight: 600;
  margin-right: 10px;
}

.footcontent__contact-hour {
  font-size: 15px;
  margin-bottom: 2rem;
}

.footcontent__contact-add {
  margin-bottom: 2.5rem;
}

.footcontent__item-btn {
  text-align: center;
}

.footcontent__item-btn .btn {
  background-color: #fff;
  color: #30af41;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  padding: 1.2rem 1rem;
  transition: 0.3s;
  width: 45%;
  border-radius: 8px;
  font-weight: bold;
}

.footcontent__item-btn .btn:hover {
  opacity: 0.8;
  transform: translate(1px, 1px);
}

.footcontent__useful .footcontent__item-btn .btn {
  background-color: #30af41;
  box-shadow: 0 3px 5px rgba(150,150,150,0.3);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .foottext {
    font-size: 11px;
    margin-bottom: 1rem;
  }
  .footcontent {
    flex-direction: column;
  }
  .footcontent__item {
    flex-basis: 100%;
    padding: 2.5rem 1rem;
  }
  .footcontent__title-main {
    font-size: 30px;
    margin-bottom: 0.5rem;
  }
  .footcontent__item-btn .btn {
    font-size: 16px;
    font-weight: normal;
    width: 80%;
  }
  .footcontent__links {
    margin-bottom: 2rem;
    margin-top: 1.5rem;
  }
  .footcontent__links-text {
    padding-left: 0.5rem;
  }
  .footcontent__links-label {
    font-size: 12px;
    margin-bottom: 0.8rem;
    padding: 0.3rem;
  }
  .footcontent__links-title {
    font-size: 15px;
  }
  .footcontent__contact-text {
    font-size: 14px;
    margin-bottom: 1rem;
  }
  .footcontent__contact-tel {
    font-size: 24px;
    margin-bottom: 0.8rem;
  }
  .footcontent__contact-hour {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0.8rem;
  }
  .footcontent__contact-add {
    font-size: 12px;
    margin-bottom: 1rem;
  }
}
/*------------------------------------------------
  検索ボタン
------------------------------------------------ */
.linkbtns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.linkbtns__item {
  background-color: #fff;
  border: 2px solid #30af41;
  border-radius: 20px;
  color: #30af41;
  display: block;
  font-size: 18px;
  font-weight: 600;
  padding: 2rem 1rem;
  text-align: center;
  transition: 0.3s;
  width: 24%;
}

.linkbtns__item:hover {
  background-color: #EEF4ED;
}

.linkbtns.srch .linkbtns__item::before {
  content: "\f002";
  font-family: "Font Awesome 5 Pro";
  font-size: 1.1em;
  font-weight: 600;
  margin-right: 5px;
}
.linkbtns.srch .linkbtns__item.linkbtns-contact::before {
  content: "\f0e0";
}

@media screen and (max-width: 767px) {
  .linkbtns {
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
  }
  .linkbtns__item {
    border-radius: 10px;
    border-width: 1px;
    font-size: 15px;
    padding: 1.6rem 0.5rem;
    width: 48%;
  }
  .linkbtns__item:not(:nth-last-child(-n+2)) {
    margin-bottom: 1rem;
  }
}
/*------------------------------------------------
  footer
------------------------------------------------ */
.footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
}

.footer__text {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.footer__link {
  display: flex;
  justify-content: flex-start;
}
.footer__link a {
  color: #fff;
}
.footer__link a:hover {
  text-decoration: underline;
}

.footer__link-block {
  flex-basis: 20%;
}

.footer__link-title {
  margin-bottom: 1rem;
}

.footer__link-title::before {
  background-color: #30af41;
  border-radius: 50%;
  content: "\f105";
  display: inline-block;
  font-family: "Font Awesome 5 Pro";
  font-size: 0.7em;
  font-weight: 600;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  vertical-align: text-top;
  text-align: center;
}

.footer__link-item {
  padding-left: 1.5rem;
}
.footer__link-item a {
  font-size: 13px;
}
.footer__link-item a::before {
  content: "・";
  display: inline-block;
  text-decoration: none;
}
.footer__link-item:not(:last-of-type) {
  margin-bottom: 0.6rem;
}

.footcopy {
  background-color: #30af41;
  color: #fff;
  padding: 1.5rem 0;
}
.footcopy .foot-mark {
  display: block;
  margin-bottom: 0.5rem;
}

.footcopy__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.footcopy__text {
  font-family: "Josefin Sans";
  font-size: 14px;
  letter-spacing: 1px;
}

.footcopy__link {
  display: flex;
}

.footcopy__link a {
  color: #fff;
  font-size: 12px;
  transition: 0.3s;
}

.footcopy__link a:hover {
  opacity: 0.7;
}

.footcopy__link a:not(:last-child)::after {
  content: "｜";
  margin-left: 5px;
  margin-right: 5px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 1rem;
  }
  .footer__text {
    border-bottom: 1px solid #666;
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  .footer__link {
    flex-wrap: wrap;
  }
  .footer__link-block {
    flex-basis: 33.33%;
    flex-shrink: 0;
    font-size: 14px;
  }
  .footer__link-title a {
    font-size: 12px;
  }
  .footer__link-title::before {
    height: 12px;
    width: 12px;
    line-height: 12px;
    vertical-align: middle;
  }
  .footer__link-item {
    display: none;
  }
  .footcopy__inner {
    flex-wrap: wrap;
  }
  .footcopy {
    text-align: center;
    padding: 1rem 0;
  }
  .footcopy .foot-mark {
    margin: 0 auto 0.5rem;
  }
  .footcopy__text {
    font-size: 10px;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    width: 100%;
  }
  .footcopy__link {
    margin: auto;
  }
  .footcopy__link a {
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */