@charset "UTF-8";
/*!!!! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします  */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bilbo+Swash+Caps&display=swap");
html {
  font-size: 16px;
}
@media only screen and (max-width: 1024px) {
  html {
    font-size: 15px;
  }
}

body {
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #1A1A1A;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 1024px) {
  img {
    border: 0;
    max-width: 100%;
    height: auto;
  }
}

a {
  color: #1A1A1A;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a img {
  border: none;
}

i {
  padding: 0 5px;
}

ul li {
  list-style: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 1024px) {
  .pc {
    display: none;
  }
}

.tablet {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .tablet {
    display: block;
  }
}
@media only screen and (max-width: 600px) {
  .tablet {
    display: none;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp {
    display: block;
  }
}

.ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .ssp {
    display: block;
  }
}

/*PC改行加える*/
.br-pc {
  display: inherit;
}
@media only screen and (max-width: 1024px) {
  .br-pc {
    display: none;
  }
}

/*PC改行無効*/
.br_sp {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .br_sp {
    display: block;
  }
}

.br_ssp {
  display: none;
}
@media only screen and (max-width: 600px) {
  .br_ssp {
    display: block;
  }
}

/************************************

wrapper

************************************/
.wrapper {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
.wrapper::after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 1024px) {
  .wrapper {
    width: 84%;
  }
}

/*ズームイン表示*/
.zoomin {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  transform: scale(0, 0);
  -webkit-transform: scale(0, 0);
}

.mv01 {
  transform: scale(1, 1);
  -webkit-transform: scale(1, 1);
}

/*フェードイン表示*/
.fadein {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
}

.fadein:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv02 {
  opacity: 1;
}

/*移動＋フェードイン表示*/
.fadeup {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
}

.fadeup:not(:target) {
  opacity: 1\9 ;
  /*IE9対策*/
}

.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}

@media print {
  .zoomin, .fadein, .fadeup {
    opacity: 1;
  }
}
/************************************

.list(flexbox)

************************************/
.list {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.list::after {
  content: "";
  display: block;
  clear: both;
}

/************************************

header

************************************/
header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 85px;
  padding-top: 32px;
}
@media print {
  header {
    position: relative;
  }
}
@media only screen and (max-width: 1024px) {
  header {
    height: 75px;
  }
}
@media only screen and (max-width: 600px) {
  header {
    padding-top: 25px;
  }
}
header .wrapper {
  width: 92%;
  max-width: 94%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1024px) {
  header .wrapper {
    width: 92%;
  }
}
@media only screen and (max-width: 600px) {
  header .wrapper {
    width: 84%;
  }
}
header h1 {
  width: 210px;
}
@media only screen and (max-width: 1024px) {
  header h1 {
    width: 170px;
  }
}
header h1 a {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-decoration: none;
  background-image: url("../images/common/logo_w.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  display: block;
  height: 0;
  width: 100%;
  padding-top: 17%;
}
header nav {
  width: calc(100% - 210px);
  padding-left: 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 15px;
}
@media only screen and (max-width: 1024px) {
  header nav {
    display: none;
  }
}
header ul {
  width: calc(100% - 150px);
  padding-right: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header ul li {
  margin: 0 0 0 20px;
  cursor: pointer;
}
header ul li a, header ul li span {
  color: #fff;
  position: relative;
  display: inline-block;
  text-decoration: none;
}
header ul li a::after, header ul li span::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
header ul li a:hover::after, header ul li span:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
header .contact {
  width: 150px;
}
header .contact a {
  background-color: #1A1A1A;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: hidden;
}
header .contact a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #7FA827;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
header .contact a:hover {
  opacity: 1;
  background-color: #7FA827;
}
header .contact a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
header.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background-color: #fff;
  height: 70px;
  padding-top: 12px;
}
@media only screen and (max-width: 1024px) {
  header.fixed {
    position: relative;
  }
}
header.fixed h1 a {
  background-image: url("../images/common/logo_c.svg");
}
header.fixed ul li a, header.fixed ul li span {
  color: #1A1A1A;
}
header.fixed ul li a::after, header.fixed ul li span::after {
  background: #1A1A1A;
}
header .modal-container {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.9);
  padding: 80px 0;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .modal-container.active {
  opacity: 1;
  visibility: visible;
}
header .modal-body {
  position: relative;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}
header .modal-close {
  position: absolute;
  top: -70px;
  right: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
}
header .modal_title {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}
header .modal_title h2 {
  font-size: 1.5rem;
}
header .modal_title .eng {
  color: #D9D9D9;
  font-size: 60px;
  position: absolute;
  top: 0px;
  left: 100px;
  z-index: -1;
}
header .modal_title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2rem 0 2rem;
}
header .modal_title2 h3 {
  font-size: 1.4rem;
  padding-right: 1rem;
}
header .modal_title2 .sen {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #1A1A1A;
}
header .modal-content article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header .modal-content article .img {
  overflow: hidden;
  border-radius: 4px;
}
header .modal-content article .img img {
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
header .modal-content article .img img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 1;
}
header .modal-content article h3 {
  margin: 0.7rem 0 0rem;
}
header .modal-content article h4 {
  margin: 0.7rem 0 0rem;
  font-weight: normal;
  font-size: 0.9rem;
}
header .modal-content article p {
  font-size: 0.85rem;
}
header .modal-content article.buy1 .waku {
  width: 31%;
}
header .modal-content article.buy2 .waku {
  width: 24%;
}
header .modal-content article.sale1 .waku {
  width: 48%;
}

#foot_banner {
  margin-bottom: 60px;
}
@media only screen and (max-width: 1024px) {
  #foot_banner {
    margin-bottom: 40px;
  }
}
#foot_banner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#foot_banner li {
  width: 49%;
  position: relative;
}
@media only screen and (max-width: 600px) {
  #foot_banner li {
    width: 100%;
    margin: 0 0 10px;
  }
}
#foot_banner a {
  color: #fff;
}
#foot_banner a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
#foot_banner .image {
  border-radius: 5px;
  overflow: hidden;
}
#foot_banner .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#foot_banner .text {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: #fff;
  width: calc(100% - 30px);
}
#foot_banner h3 {
  margin: 1rem 0 0.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  #foot_banner h3 {
    font-size: 1rem;
  }
}
#foot_banner p {
  font-size: 0.85rem;
  line-height: 1.1;
}
@media only screen and (max-width: 1024px) {
  #foot_banner p {
    font-size: 10px;
  }
}

.footer_tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  padding: 30px 0;
}
.footer_tel .bt_tel {
  width: 250px;
  text-align: center;
  border: 1px solid #1A1A1A;
  padding: 12px 12px 12px 26px;
  background-image: url("../images/common/icon_phone.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 15px center;
}
@media only screen and (max-width: 600px) {
  .footer_tel .bt_tel {
    width: 100%;
  }
}
.footer_tel .tel_no {
  padding: 0 20px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .footer_tel .tel_no {
    width: calc(100% - 250px);
  }
}
@media only screen and (max-width: 600px) {
  .footer_tel .tel_no {
    width: 100%;
    padding: 10px 0 0;
    text-align: center;
  }
}
.footer_tel .tel_no a {
  display: block;
  font-size: 1.3rem;
}
.footer_tel .tel_no span {
  font-size: 0.8rem;
}
.footer_tel ul {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1024px) {
  .footer_tel ul {
    width: 100%;
    margin: 0.7rem 0 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.footer_tel ul li {
  margin: 0 0 0 10px;
}
@media only screen and (max-width: 1024px) {
  .footer_tel ul li {
    margin: 0;
    width: 32%;
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .footer_tel ul li {
    width: 100%;
    margin: 3px 0;
  }
}
.footer_tel ul li a, .footer_tel ul li span {
  background-color: #1A1A1A;
  color: #fff;
  display: block;
  padding: 10px 35px 10px 15px;
  font-size: 0.8rem;
  border-radius: 2em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.footer_tel ul li a::before, .footer_tel ul li span::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #7FA827;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.footer_tel ul li a::after, .footer_tel ul li span::after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 2;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-image: url("../images/common/bt_yaji_w.svg");
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
}
.footer_tel ul li a:hover, .footer_tel ul li span:hover {
  opacity: 1;
  background-color: #7FA827;
}
.footer_tel ul li a:hover::before, .footer_tel ul li span:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 30px 0;
}
.footer_nav .name {
  width: 22%;
}
@media only screen and (max-width: 1024px) {
  .footer_nav .name {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.footer_nav .name h2 {
  max-width: 200px;
  margin: 0 0 1.2rem;
}
@media only screen and (max-width: 1024px) {
  .footer_nav .name h2 {
    margin: 0 auto 0.8rem;
  }
}
.footer_nav .name .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .footer_nav .name .sns {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer_nav .name .sns li {
  width: 24px;
  margin: 0 10px 0 0;
}
.footer_nav nav {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .footer_nav nav {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .footer_nav nav {
    display: block;
  }
}
.footer_nav nav ul {
  width: 31%;
}
@media only screen and (max-width: 600px) {
  .footer_nav nav ul {
    width: 47%;
    margin: 0 3% 1rem 0;
    float: left;
  }
}
.footer_nav nav ul li {
  font-size: 0.9rem;
  margin: 0 0 8px;
}
.footer_nav nav ul li ul {
  width: 100%;
  margin: 8px 0 0;
}
.footer_nav nav ul li ul li {
  font-size: 0.85rem;
  padding-left: 1rem;
  position: relative;
}
@media only screen and (max-width: 600px) {
  .footer_nav nav ul li ul li {
    padding-left: 0.8rem;
  }
}
.footer_nav nav ul li ul li::before {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 10px;
  height: 1px;
  background-color: #1A1A1A;
  content: "";
}
@media only screen and (max-width: 600px) {
  .footer_nav nav ul li ul li::before {
    width: 7px;
  }
}

footer .copyright {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0 0 2rem;
}

#pageup {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 5px;
  right: 5px;
  z-index: 10;
  font-size: 8px;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#pageup.none {
  display: none;
}
#pageup a {
  width: 50px;
  padding: 36px 0 4px 0;
  position: relative;
  display: block;
  text-decoration: none;
  line-height: 100%;
  color: #555;
}
#pageup a::before {
  position: absolute;
  top: 26px;
  left: 0px;
  right: 0;
  margin: auto;
  border-top: 1px solid #555;
  border-left: 1px solid #555;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

/************************************

main

************************************/
main {
  display: block;
}

#mainimage {
  width: calc(100% - 20px);
  height: 400px;
  margin: 10px 10px 100px 10px;
  border-radius: 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #mainimage {
    height: 280px;
    margin-bottom: 70px;
  }
}
#mainimage::before {
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.35)));
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.35) 100%);
  content: "";
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
}
#mainimage .title {
  position: absolute;
  background-color: #fff;
  bottom: 0px;
  left: 0;
  right: 0;
  margin: auto;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  text-align: center;
  width: 500px;
  padding: 50px 20px 20px;
}
@media only screen and (max-width: 1024px) {
  #mainimage .title {
    max-width: 400px;
    width: 76%;
    padding: 36px 10px 10px;
  }
}
#mainimage .title h1 {
  font-size: 1.4rem;
}
@media only screen and (max-width: 1024px) {
  #mainimage .title h1 {
    font-size: 1.2rem;
  }
}

section {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1024px) {
  section {
    margin-bottom: 70px;
  }
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.05em;
  line-height: 1.2;
}

p {
  line-height: 1.8;
}

.eng {
  font-family: "Bilbo Swash Caps", cursive;
  font-weight: normal !important;
}

.midashi1 {
  text-align: center;
  margin: 0 0 4rem;
  line-height: 1.1;
}
@media only screen and (max-width: 1024px) {
  .midashi1 {
    margin-bottom: 3rem;
  }
}
.midashi1 .eng {
  color: #D9D9D9;
  font-size: 56px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  .midashi1 .eng {
    font-size: 44px;
  }
}
.midashi1 h2 {
  font-size: 1.4rem;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .midashi1 h2 {
    font-size: 1.3rem;
  }
}

.bt {
  text-align: center;
}
.bt a {
  background: #1A1A1A;
  color: #fff;
  text-align: center;
  border-radius: 2em;
  overflow: hidden;
  position: relative;
  display: inline-block;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.bt a::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 20px;
  width: 16px;
  height: 16px;
  background-image: url("../images/common/bt_yaji_w.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
.bt a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #7FA827;
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.bt a:hover {
  opacity: 1;
  background-color: #7FA827;
}
.bt a:hover::before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.bt.bt_s a {
  padding: 7px 40px 7px 25px;
  font-size: 0.85rem;
}
.bt.bt_s a::after {
  right: 12px;
  width: 14px;
  height: 14px;
}
.bt.bt_m a {
  padding: 15px 65px 15px 50px;
}
@media only screen and (max-width: 1024px) {
  .bt.bt_m a {
    padding: 10px 32px 10px 24px;
    font-size: 0.9rem;
  }
  .bt.bt_m a::after {
    right: 10px;
    width: 12px;
    height: 12px;
  }
}
.bt.bt_l a {
  padding: 20px 85px 20px 70px;
  font-weight: 600;
  font-size: 1.05rem;
}
.bt.bt_l a::after {
  width: 18px;
  height: 18px;
}
@media only screen and (max-width: 1024px) {
  .bt.bt_l a {
    padding: 14px 42px 14px 34px;
    font-size: 1rem;
  }
  .bt.bt_l a::after {
    width: 16px;
    height: 16px;
  }
}
.bt.bt_back a::after {
  right: auto;
  left: 20px;
  top: 20px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.bt.bt_back.bt_m a {
  padding: 15px 50px 15px 65px;
}
.bt.bt_back.bt_s a {
  padding: 7px 25px 7px 40px;
}
.bt.bt_back.bt_s a::after {
  top: 12px;
}
.bt.bt_back.bt_l a {
  padding: 20px 70px 20px 85px;
}
.bt.bt_back.bt_l a::after {
  top: 24px;
}

.navi {
  width: 100%;
  margin-top: 6rem;
}
@media only screen and (max-width: 1024px) {
  .navi {
    margin-top: 4rem;
  }
}

.wp-pagenavi {
  text-align: center;
  font-size: 13px;
  padding: 20px 0;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .wp-pagenavi {
    text-align: center;
    font-size: 12px;
  }
}
.wp-pagenavi a {
  padding: 10px;
  text-decoration: none;
}
.wp-pagenavi span {
  padding: 10px;
}
.wp-pagenavi .page:hover {
  color: #1A1A1A;
}
.wp-pagenavi .current {
  font-weight: bold;
  font-size: 14px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi .first, .wp-pagenavi .last, .wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  padding: 5px 15px;
  margin: 0 2px;
  border-radius: 3px;
  position: relative;
}
.wp-pagenavi .first::before, .wp-pagenavi .last::before, .wp-pagenavi .previouspostslink::before, .wp-pagenavi .nextpostslink::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  background-color: #1A1A1A;
  color: #fff;
}
.wp-pagenavi .first {
  padding: 5px 15px 5px 25px;
}
.wp-pagenavi .first::before {
  left: 10px;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.wp-pagenavi .last {
  padding: 5px 25px 5px 15px;
}
.wp-pagenavi .last::before {
  right: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink {
  border: 1px solid #1A1A1A;
  color: #1A1A1A;
}
.wp-pagenavi .previouspostslink:hover, .wp-pagenavi .nextpostslink:hover {
  background-color: #1A1A1A;
  color: #fff;
}
.wp-pagenavi .previouspostslink {
  padding: 5px 15px 5px 25px;
}
.wp-pagenavi .previouspostslink::before {
  left: 10px;
  border-bottom: 1px solid #1A1A1A;
  border-left: 1px solid #1A1A1A;
}
.wp-pagenavi .previouspostslink:hover::before {
  border-bottom-color: #fff;
  border-left-color: #fff;
}
.wp-pagenavi .nextpostslink {
  padding: 5px 25px 5px 15px;
}
.wp-pagenavi .nextpostslink::before {
  right: 10px;
  border-top: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
}
.wp-pagenavi .nextpostslink:hover::before {
  border-top-color: #fff;
  border-right-color: #fff;
}
@media only screen and (max-width: 1024px) {
  .wp-pagenavi .pages, .wp-pagenavi .extend {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .wp-pagenavi .pages, .wp-pagenavi .extend, .wp-pagenavi .first, .wp-pagenavi .last {
    display: none;
  }
}

.grecaptcha-badge {
  display: none;
}

.wpcf7-response-output {
  border: none !important;
}

/*!------------------------------------*\
    Base
\*!------------------------------------*/
.drawer-nav {
  position: fixed;
  z-index: 1000;
  top: 0;
  overflow: hidden;
  width: 80vw;
  color: #1A1A1A;
  height: 100%;
  background-color: #fff;
}

.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*! overlay */
.drawer-overlay {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.drawer-open .drawer-overlay {
  display: block;
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*!------------------------------------*\
    Right
\*!------------------------------------*/
.drawer--right .drawer-nav {
  right: -80vw;
  -webkit-transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: right 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 80vw;
}

/*!------------------------------------*\
    Hamburger
\*!------------------------------------*/
.drawer-hamburger {
  position: fixed;
  z-index: 104;
  top: 7px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 30px;
  padding-top: 14px;
  padding-right: 10px;
  padding-bottom: 30px;
  padding-left: 10ox;
  background-color: transparent;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
}

.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}

.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  width: 100%;
  height: 2px;
  -webkit-transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  background-color: #1A1A1A;
}

.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}

.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}

.drawer-open .drawer-hamburger-icon:before,
.drawer-open .drawer-hamburger-icon:after {
  top: 0;
}

.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*!------------------------------------*\
    accessibility
\*!------------------------------------*/
/*!
 * Only display content to screen readers
 * See: http://a11yproject.com/posts/how-to-hide-content
 */
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*!
 * Use in conjunction with .sr-only to only display content when it's focused.
 * Useful for "Skip to main content" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1
 * Credit: HTML5 Boilerplate
 */
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  overflow: visible;
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
}

/*!------------------------------------*\
    Container
\*!------------------------------------*/
.drawer-menu {
  padding: 50px 8%;
}

.drawer-menu h2 {
  max-width: 180px;
  width: 100%;
  margin: 0 auto 15px;
}

.drawer-menu .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
.drawer-menu .sns a {
  width: 24px;
  display: block;
  margin: 0 5px;
}

.drawer-menu li {
  margin: 0 0 0px;
  font-size: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
  position: relative;
}
.drawer-menu li a {
  display: block;
  padding: 10px 0;
}
.drawer-menu li ul {
  margin: 0px 0 10px 10px;
}
.drawer-menu li ul li {
  display: block;
  padding: 0 4px 0 15px;
  margin: 0 0 0;
  font-size: 0.95rem;
  position: relative;
  border-bottom: none;
}
.drawer-menu li ul li::before {
  position: absolute;
  top: 18px;
  left: 0px;
  border-top: 1px solid #7FA827;
  border-right: 1px solid #7FA827;
  width: 6px;
  height: 6px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  content: "";
}
.drawer-menu li ul li a {
  padding: 7px 0;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#top #mainimage {
  height: 640px;
  background-image: url("../images/top/mainimage@2x.jpg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  #top #mainimage {
    height: 400px;
  }
}
@media only screen and (max-width: 600px) {
  #top #mainimage {
    background-image: url("../images/top/mainimage-sp@2x.jpg");
  }
}
#top #mainimage h2 {
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}
@media only screen and (max-width: 1024px) {
  #top #mainimage h2 {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 600px) {
  #top #mainimage h2 {
    font-size: 1.2rem;
  }
}
#top #mainimage p {
  font-size: 1.1rem;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
@media only screen and (max-width: 1024px) {
  #top #mainimage p {
    font-size: 0.9rem;
  }
}
#top #merit .lead {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 600px) {
  #top #merit .lead {
    text-align: left;
    margin-bottom: 2rem;
  }
  #top #merit .lead .br_sp {
    display: none;
  }
}
#top #merit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px) {
  #top #merit ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2rem;
  }
}
#top #merit ul li {
  width: 19%;
  background-color: #7FA827;
  color: #fff;
  text-align: center;
  padding: 24px 15px;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  #top #merit ul li {
    width: 32.3%;
    margin: 0.5%;
    padding: 18px 12px;
  }
  #top #merit ul li:nth-child(4), #top #merit ul li:nth-child(5) {
    width: 49%;
  }
  #top #merit ul li:nth-child(4) br, #top #merit ul li:nth-child(5) br {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  #top #merit ul li {
    width: 49%;
  }
  #top #merit ul li:nth-child(4) br {
    display: inline-block;
  }
  #top #merit ul li:nth-child(5) {
    width: 99%;
  }
}
#top #merit ul .image {
  height: 50px;
  width: auto;
  margin: 0 0 12px;
}
@media only screen and (max-width: 1024px) {
  #top #merit ul .image {
    height: 40px;
  }
}
#top #merit ul .image img {
  height: 100%;
  width: auto;
}
#top #merit ul h3 {
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 7px;
}
#top #merit ul p {
  font-size: 0.85rem;
  line-height: 1.3;
}
#top #top_info {
  background-color: #F5F5F5;
  padding: 90px 0;
  /* ----------------------*
   * コンテナー
   * ----------------------*/
  /* ----------------------*
   * カルーセル
   * ----------------------*/
  /* ----------------------*
   * カルーセルの画像アイテム
   * ----------------------*/
}
@media only screen and (max-width: 1024px) {
  #top #top_info {
    padding: 60px 0;
  }
}
#top #top_info .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  #top #top_info .wrapper {
    width: 90%;
  }
}
@media only screen and (max-width: 600px) {
  #top #top_info .wrapper {
    width: 84%;
  }
}
#top #top_info article {
  width: 47%;
  margin: 0 1.5%;
}
@media only screen and (max-width: 600px) {
  #top #top_info article {
    width: 100%;
    margin: 0 0 2rem;
  }
}
#top #top_info .midashi2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
#top #top_info .midashi2 h2 {
  font-size: 1.1rem;
  font-weight: 500;
  padding-right: 10px;
}
@media only screen and (max-width: 1024px) {
  #top #top_info .midashi2 h2 {
    font-size: 1rem;
  }
}
#top #top_info .midashi2 h2 .eng {
  font-size: 40px;
  font-weight: normal;
  display: inline-block;
  padding-right: 10px;
}
@media only screen and (max-width: 1024px) {
  #top #top_info .midashi2 h2 .eng {
    font-size: 28px;
    display: block;
    margin-left: -10px;
  }
}
#top #top_info .midashi2 .bt {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  text-align: right;
}
#top #top_info .midashi2 .bt::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  content: "";
}
#top #top_info .container {
  --item-width: 564px;
  --item-height: 376px;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  /* 各パーツ配置をグリッドでレイアウト */
  display: grid;
  grid-template-areas: "item item item" "left markers right";
  grid-template-columns: 1fr 2fr 1fr;
  row-gap: 0px;
  border-radius: 1.5rem;
  overflow: hidden;
}
@media only screen and (max-width: 1330px) {
  #top #top_info .container {
    --item-width: calc( 90vw * 0.47 );
    --item-height: calc( 90vw * 0.47 * 0.66 );
  }
}
@media only screen and (max-width: 600px) {
  #top #top_info .container {
    --item-width: 84vw;
    --item-height: calc( 84vw * 0.66 );
    grid-template-columns: 1fr 3fr 1fr;
  }
}
#top #top_info .carousel {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-area: item;
  gap: 0;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  scroll-snap-stop: always;
  scroll-behavior: smooth;
  scroll-marker-group: after;
  scrollbar-width: none;
}
#top #top_info .carousel::scroll-button(*) {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background-color: #fff;
  padding: 0;
  font-size: 9px;
  color: #7FA827;
  -webkit-transition: background-color 0.2s, color 0.2s;
  transition: background-color 0.2s, color 0.2s;
}
@media (any-hover: hover) {
  #top #top_info .carousel::scroll-button(*):not(:disabled):hover {
    background-color: #7FA827;
    color: #fff;
    cursor: pointer;
  }
}
#top #top_info .carousel::scroll-button(*):disabled {
  color: darkgray;
  border: 1px solid lightgray;
}
#top #top_info .carousel::scroll-button(left) {
  content: "◀"/"前へ";
  left: 10px;
}
#top #top_info .carousel::scroll-button(right) {
  content: "▶"/"次へ";
  right: 10px;
}
#top #top_info .carousel::scroll-marker-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  grid-area: markers;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  position: absolute;
  bottom: -10px;
  z-index: 3;
}
#top #top_info .waku {
  width: var(--item-width);
  min-width: var(--item-width);
  height: var(--item-height);
  scroll-snap-align: center;
}
#top #top_info .waku::scroll-marker {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: lightgray;
  border-radius: 50%;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#top #top_info .waku::scroll-marker:target-current {
  background-color: #7FA827;
}
#top #top_info .waku img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top #top_info .waku {
  position: relative;
}
#top #top_info .waku .image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 0;
  padding-top: 66.66%;
}
#top #top_info .waku .image::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(44%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
}
#top #top_info .waku .image img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#top #top_info .waku .image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 1;
}
#top #top_info .waku ul {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#top #top_info .waku ul li {
  background-color: #7FA827;
  color: #fff;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 2em;
  margin: 0 5px 5px 0;
}
#top #top_info .waku ul li.mansion_rv {
  background-color: #126595;
}
#top #top_info .waku ul li.house_rv {
  background-color: #A3783E;
}
#top #top_info .waku ul li.house_new {
  background-color: #64763D;
}
#top #top_info .waku .text {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 25px);
  color: #fff;
}
#top #top_info .waku .text h3 {
  font-size: 1.1rem;
}
#top #top_info .waku .text .place {
  font-size: 0.85rem;
}
#top #buy .buy_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  #top #buy .buy_list {
    margin: 0 5%;
  }
}
#top #buy .buy_list .waku {
  width: 33.3333333333%;
  border-bottom: 1px solid #D9D9D9;
  border-right: 1px solid #D9D9D9;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #top #buy .buy_list .waku {
    width: 100%;
    border-right: none;
    border-bottom: none;
  }
}
#top #buy .buy_list .waku:last-child {
  border-right: none;
}
#top #buy .buy_list .waku a {
  display: block;
}
#top #buy .buy_list .waku a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  opacity: 0.7;
}
#top #buy .buy_list .waku a:hover .text {
  background-color: #F5F5F5;
}
#top #buy .buy_list .waku .image {
  overflow: hidden;
}
#top #buy .buy_list .waku .image img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
#top #buy .buy_list .waku .text {
  padding: 30px 0;
}
@media only screen and (max-width: 600px) {
  #top #buy .buy_list .waku .text {
    padding: 20px 5% 30px;
  }
}
#top #buy .buy_list .waku h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
@media only screen and (max-width: 1024px) {
  #top #buy .buy_list .waku h3 {
    font-size: 1rem;
  }
}
#top #buy .buy_list .waku p {
  font-size: 0.85rem;
  line-height: 1.4;
}
#top #apartment .image, #top #sale .image {
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 2.4rem;
}
#top #apartment p, #top #sale p {
  margin-bottom: 2rem;
}
#top #news {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #top #news {
    padding: 60px 0;
  }
}
#top #news .midashi2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
}
#top #news .midashi2 h2 {
  font-size: 1.1rem;
  font-weight: 500;
  padding-right: 10px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  #top #news .midashi2 h2 {
    font-size: 1rem;
  }
}
#top #news .midashi2 h2 .eng {
  font-size: 40px;
  font-weight: normal;
  display: inline-block;
  padding-right: 10px;
}
@media only screen and (max-width: 1024px) {
  #top #news .midashi2 h2 .eng {
    font-size: 28px;
    display: block;
    margin-left: -10px;
  }
}
#top #news .midashi2 .bt {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  text-align: right;
}
#top #news .midashi2 .bt::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  content: "";
}
#top #news dl {
  margin: 0 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 0.95rem;
  line-height: 1.7;
}
@media only screen and (max-width: 600px) {
  #top #news dl {
    margin: 0;
  }
}
#top #news dt {
  width: 100px;
}
@media only screen and (max-width: 600px) {
  #top #news dt {
    width: 100%;
  }
}
#top #news dd {
  width: calc(100% - 100px);
  margin-bottom: 1rem;
}
@media only screen and (max-width: 600px) {
  #top #news dd {
    width: 100%;
  }
}
#top #instagram .id {
  text-align: center;
  font-size: 0.85rem;
  padding: 20px 0 0;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#about #mainimage {
  background-image: url("../images/about/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  #about #mainimage {
    background-image: url("../images/about/mainimage-sp@2x.jpg");
  }
}
#about #lead .wrapper {
  max-width: 860px;
}
#about #lead .wrapper h2 {
  text-align: center;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}
@media only screen and (max-width: 1024px) {
  #about #lead .wrapper h2 {
    font-size: 1.2rem;
  }
}
#about #merit .lead {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 600px) {
  #about #merit .lead {
    text-align: left;
    margin-bottom: 2rem;
  }
  #about #merit .lead .br_sp {
    display: none;
  }
}
#about #merit ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px) {
  #about #merit ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 2rem;
  }
}
#about #merit ul li {
  width: 19%;
  background-color: #7FA827;
  color: #fff;
  text-align: center;
  padding: 24px 15px;
  border-radius: 1rem;
}
@media only screen and (max-width: 1024px) {
  #about #merit ul li {
    width: 32.3%;
    margin: 0.5%;
    padding: 18px 12px;
  }
  #about #merit ul li:nth-child(4), #about #merit ul li:nth-child(5) {
    width: 49%;
  }
  #about #merit ul li:nth-child(4) br, #about #merit ul li:nth-child(5) br {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  #about #merit ul li {
    width: 49%;
  }
  #about #merit ul li:nth-child(4) br {
    display: inline-block;
  }
  #about #merit ul li:nth-child(5) {
    width: 99%;
  }
}
#about #merit ul .image {
  height: 50px;
  width: auto;
  margin: 0 0 12px;
}
@media only screen and (max-width: 1024px) {
  #about #merit ul .image {
    height: 40px;
  }
}
#about #merit ul .image img {
  height: 100%;
  width: auto;
}
#about #merit ul h3 {
  font-weight: 500;
  font-size: 1.1rem;
  margin: 0 0 7px;
}
#about #merit ul p {
  font-size: 0.85rem;
  line-height: 1.3;
}
#about #merit article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1600px;
  margin: 80px auto 0;
}
#about #merit article .image {
  width: 47%;
}
@media only screen and (max-width: 600px) {
  #about #merit article .image {
    width: 100%;
  }
}
#about #merit article .text {
  width: 48%;
  padding: 0 5% 0 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 600px) {
  #about #merit article .text {
    width: 100%;
    padding: 20px 8% 0;
  }
}
#about #merit article .no {
  display: block;
  font-size: 60px;
  line-height: 1;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  color: #D9D9D9;
}
#about #merit article h3 {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
  padding-top: 20px;
  padding-left: 55px;
  margin-bottom: 1.5rem;
}
#about #merit article p {
  padding-left: 1.5rem;
}
#about #merit article:nth-child(even) .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media only screen and (max-width: 600px) {
  #about #merit article:nth-child(even) .image {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
#about #merit article:nth-child(even) .text {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding: 0 0 0 5%;
}
@media only screen and (max-width: 600px) {
  #about #merit article:nth-child(even) .text {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding: 20px 8% 0;
  }
}
#about #service article {
  margin-bottom: 80px;
}
#about #service .title {
  position: relative;
  margin-bottom: 3rem;
}
#about #service .image {
  border-radius: 2rem;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  #about #service .image {
    border-radius: 1.3rem;
  }
}
#about #service .title_w {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  padding: 40px 20px 10px;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  width: 80%;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #about #service .title_w {
    padding: 26px 10px 10px;
    border-top-left-radius: 0.8rem;
    border-top-right-radius: 0.8rem;
  }
}
#about #service h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  #about #service h3 {
    font-size: 1.1rem;
  }
}
#about #service p {
  max-width: 900px;
  margin: 0 auto 2.4rem;
}
#about #service .bt a {
  margin: 0 7px;
}
@media only screen and (max-width: 1024px) {
  #about #service .bt a {
    margin: 0 3px;
  }
}
@media only screen and (max-width: 600px) {
  #about #service .bt a {
    width: 100%;
    margin: 0 0% 5px;
  }
}
#about #gaiyo {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media only screen and (max-width: 1024px) {
  #about #gaiyo {
    padding: 60px 0;
  }
}
#about #gaiyo table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
}
#about #gaiyo table th, #about #gaiyo table td {
  padding: 15px 24px;
  border-bottom: 3px solid #F5F5F5;
  vertical-align: top;
}
@media only screen and (max-width: 600px) {
  #about #gaiyo table th, #about #gaiyo table td {
    display: block;
    width: 100%;
    padding: 8px 15px;
  }
}
#about #gaiyo table th {
  text-align: left;
  background-color: #D9D9D9;
}
@media only screen and (max-width: 600px) {
  #about #gaiyo table th {
    border-bottom: none;
  }
}
#about #gaiyo table td {
  background-color: #fff;
}
#about #gaiyo table td .bt {
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
}
#about #gaiyo .map {
  margin: 3rem 0 0;
}
#about #gaiyo .map iframe {
  width: 100%;
  height: 300px;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
.apart_sale#apartment #mainimage {
  background-image: url("../images/apartment/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  .apart_sale#apartment #mainimage {
    background-image: url("../images/apartment/mainimage-sp@2x.jpg");
  }
}
.apart_sale#sale #mainimage {
  background-image: url("../images/sale/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  .apart_sale#sale #mainimage {
    background-image: url("../images/sale/mainimage-sp@2x.jpg");
  }
}
.apart_sale #lead .wrapper {
  max-width: 860px;
}
.apart_sale #lead .wrapper h2 {
  text-align: center;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}
@media only screen and (max-width: 1024px) {
  .apart_sale #lead .wrapper h2 {
    font-size: 1.2rem;
  }
}
.apart_sale #sample .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  row-gap: 2px;
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .container {
    grid-template-columns: 1fr 1fr;
  }
}
.apart_sale #sample .waku {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 63%;
}
.apart_sale #sample .waku img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.apart_sale #sample .waku1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku2 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
}
.apart_sale #sample .waku3 {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;
  padding-top: 127%;
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku3 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 5;
  }
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku4 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 5;
  }
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku5 {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    grid-row-end: 7;
  }
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku6 {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 6;
    grid-row-end: 7;
  }
}
.apart_sale #sample .waku7 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 4;
  grid-row-end: 5;
  padding-top: 31%;
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku7 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
  }
}
.apart_sale #sample .waku8 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 3;
  grid-row-end: 5;
}
@media only screen and (max-width: 600px) {
  .apart_sale #sample .waku8 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 8;
    grid-row-end: 10;
  }
}
.apart_sale #sample .bt {
  margin-top: 3rem;
}
.apart_sale #flow .flow_list {
  position: relative;
  z-index: 1;
}
.apart_sale #flow .flow_list::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 28px;
  width: 1px;
  height: 100%;
  background-color: #1A1A1A;
  content: "";
}
@media only screen and (max-width: 1024px) {
  .apart_sale #flow .flow_list::before {
    left: 20px;
  }
}
.apart_sale #flow article {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 600px) {
  .apart_sale #flow article {
    margin-bottom: 36px;
  }
}
.apart_sale #flow .no {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #1A1A1A;
  color: #fff;
  font-size: 40px;
  line-height: 56px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .apart_sale #flow .no {
    width: 40px;
    height: 40px;
    font-size: 30px;
    line-height: 40px;
  }
}
.apart_sale #flow .text {
  width: calc(100% - 90px);
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .apart_sale #flow .text {
    width: calc(100% - 60px);
    padding-top: 8px;
  }
}
.apart_sale #flow h3 {
  width: 100%;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .apart_sale #flow h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.apart_sale #flow .img_y .honbun {
  width: 60%;
  margin-right: 5%;
}
@media only screen and (max-width: 600px) {
  .apart_sale #flow .img_y .honbun {
    width: 100%;
    margin: 0 0 1rem;
  }
}
@media only screen and (max-width: 1024px) {
  .apart_sale #flow p {
    line-height: 1.6;
  }
}
.apart_sale #flow p a {
  text-decoration: underline;
}
.apart_sale #flow .bt_s {
  text-align: left;
  margin: 12px 0 0;
}
.apart_sale #flow .image {
  width: 35%;
}
@media only screen and (max-width: 600px) {
  .apart_sale #flow .image {
    width: 100%;
  }
}
.apart_sale #flow .image img {
  border-radius: 8px;
}
.apart_sale #pr .wrapper {
  max-width: 860px;
}
.apart_sale #pr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.apart_sale #pr ul li {
  width: 23%;
  text-align: center;
  color: #7FA827;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .apart_sale #pr ul li {
    font-size: 0.85rem;
  }
}
@media only screen and (max-width: 600px) {
  .apart_sale #pr ul li {
    width: 48%;
    margin: 0 0 20px;
  }
}
.apart_sale #pr ul li img {
  margin-bottom: 10px;
}
@media only screen and (max-width: 1024px) {
  .apart_sale #pr ul li img {
    max-width: 120px;
    width: 100%;
  }
}
.apart_sale #pr ul li a {
  color: #7FA827;
}
.apart_sale #pr .image {
  margin: 2rem 0;
}
.apart_sale #pr .image img {
  border-radius: 20px;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#property #mainimage {
  background-image: url("../images/property/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  #property #mainimage {
    background-image: url("../images/property/mainimage-sp@2x.jpg");
  }
}
#property #lead {
  margin-bottom: 50px;
}
#property #lead .wrapper {
  text-align: center;
}
@media only screen and (max-width: 600px) {
  #property #lead .wrapper {
    text-align: left;
  }
}
#property #lead h2 {
  margin-bottom: 1rem;
}
#property #archive_list .wrapper {
  max-width: 1000px;
}
#property #archive_list article {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#property #archive_list .image {
  width: 45%;
  overflow: hidden;
  border-radius: 8px;
}
@media only screen and (max-width: 600px) {
  #property #archive_list .image {
    width: 100%;
    margin-bottom: 10px;
  }
}
#property #archive_list .image img {
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#property #archive_list .image img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 1;
}
#property #archive_list .text {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  #property #archive_list .text {
    width: 100%;
  }
}
#property #archive_list .no {
  color: #D9D9D9;
  font-size: 50px;
}
@media only screen and (max-width: 1024px) {
  #property #archive_list .no {
    font-size: 36px;
  }
}
#property #archive_list h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 1024px) {
  #property #archive_list h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
}
#property #archive_list h2 a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
#property #archive_list h2 a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
#property #archive_list h2 a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
#property #archive_list .cat {
  margin: 0.3rem 0 1rem;
}
#property #archive_list .cat a {
  border: 1px solid #1A1A1A;
  background-color: #fff;
  color: #1A1A1A;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 3px;
  margin: 0 3px 0 0;
}
#property #archive_list .cat a:hover {
  background-color: #1A1A1A;
  color: #fff;
}
#property #archive_list p {
  font-size: 0.95rem;
  line-height: 1.5;
}
@media only screen and (max-width: 1024px) {
  #property #archive_list p {
    font-size: 0.85rem;
  }
}
#property #archive_list .bt {
  margin-top: 1rem;
}
@media only screen and (max-width: 1024px) {
  #property #archive_list .bt {
    margin-top: 0.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  #property #single .wrapper {
    width: 96%;
  }
}
@media only screen and (max-width: 600px) {
  #property #single .wrapper {
    width: 92%;
  }
}
#property #single .title {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px) {
  #property #single .title {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}
#property #single .title .no {
  color: #D9D9D9;
  font-size: 50px;
  line-height: 1;
}
@media only screen and (max-width: 1024px) {
  #property #single .title .no {
    font-size: 36px;
  }
}
#property #single .title h1 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #property #single .title h1 {
    font-size: 1.3remm;
  }
}
#property #single .title .cat {
  margin-top: 0.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#property #single .title .cat a {
  display: inline-block;
  background-color: #1A1A1A;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 3px;
  margin: 0 5px;
  border: 1px solid #1A1A1A;
}
#property #single .title .cat a:hover {
  background-color: #fff;
  color: #1A1A1A;
}
#property #single .slide {
  margin-bottom: 1rem;
}
#property #single .slide img {
  height: 500px;
}
@media only screen and (max-width: 1024px) {
  #property #single .slide img {
    height: 45vw;
  }
}
@media only screen and (max-width: 600px) {
  #property #single .slide img {
    height: 60vw;
  }
}
#property #single .slide_nav {
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4rem;
}
#property #single .slide_nav .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
  width: 9%;
  margin: 0.5%;
  height: auto;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  #property #single .slide_nav .item {
    width: 16%;
    margin: 0.3%;
  }
}
#property #single .slide_nav .item .item2 {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
  height: 0;
}
#property #single .slide_nav .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
#property #single .slide_nav .current::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  content: "";
  opacity: 0.5;
  background: #000;
}
#property #single .slick-list {
  margin: 0 -5px;
}
#property #single .slick-slide {
  margin: 0 5px;
}
#property #single .slick-prev, #property #single .slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}
#property #single .slick-prev::before, #property #single .slick-next::before {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  content: "";
  border-width: 2px;
  border-color: #fff;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  #property #single .slick-prev::before, #property #single .slick-next::before {
    width: 18px;
    height: 18px;
  }
}
#property #single .slick-prev {
  left: 15px;
}
@media only screen and (max-width: 1024px) {
  #property #single .slick-prev {
    left: 10px;
  }
}
#property #single .slick-prev::before {
  border-bottom-style: solid;
  border-left-style: solid;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  left: 10px;
  right: auto;
}
#property #single .slick-next {
  right: 15px;
}
@media only screen and (max-width: 1024px) {
  #property #single .slick-next {
    right: 10px;
  }
}
#property #single .slick-next::before {
  border-top-style: solid;
  border-right-style: solid;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 10px;
  left: auto;
}
#property #single .data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  #property #single .data {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}
#property #single .data .waku {
  width: 47%;
}
@media only screen and (max-width: 600px) {
  #property #single .data .waku {
    width: 100%;
    margin-bottom: 3rem;
  }
  #property #single .data .waku:last-child {
    margin-bottom: 0;
  }
}
#property #single .data .midashi2 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
#property #single .data .midashi2::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  content: "";
}
#property #single .data .midashi2 h3 {
  background-color: #fff;
  padding-right: 12px;
  display: inline-block;
}
#property #single .data dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#property #single .data dl dt {
  width: 110px;
}
#property #single .data dl dd {
  width: calc(100% - 110px);
  margin-bottom: 0.5rem;
}
#property #single .data ul li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
}
#property #single .data ul li::before {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 1rem;
  content: "-";
}
#property #single .text {
  background-color: #F5F5F5;
  padding: 50px 5%;
  border-radius: 2rem;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  #property #single .text {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 5%;
  }
}
#property #single .contact {
  text-align: center;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  #property #single .contact {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}
#property #single .contact .bt {
  margin-top: 2rem;
}
#property #single .contact .bt a {
  background-color: #7FA827 !important;
  border: 2px solid #7FA827;
}
#property #single .contact .bt a::before {
  display: none;
}
#property #single .contact .bt a:hover {
  color: #7FA827;
  background-color: #fff !important;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#work #mainimage {
  background-image: url("../images/work/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  #work #mainimage {
    background-image: url("../images/work/mainimage-sp@2x.jpg");
  }
}
#work #archive_list .eng {
  font-size: 40px;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media only screen and (max-width: 1024px) {
  #work #archive_list .eng {
    font-size: 32px;
  }
}
#work #archive_list .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#work #archive_list .waku {
  position: relative;
  z-index: 1;
  width: 30.3%;
  margin: 1.5%;
}
@media only screen and (max-width: 1024px) {
  #work #archive_list .waku {
    width: 48%;
  }
}
@media only screen and (max-width: 600px) {
  #work #archive_list .waku {
    width: 100%;
    margin: 0 0 20px;
  }
}
#work #archive_list .image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 1rem;
}
#work #archive_list .image::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(44%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.5)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
}
#work #archive_list .image img {
  width: 100%;
  display: block;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
#work #archive_list .image:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  opacity: 1;
}
#work #archive_list ul {
  position: absolute;
  z-index: 3;
  top: 15px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#work #archive_list ul li {
  background-color: #1A1A1A;
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 2em;
  margin: 0 5px 5px 0;
}
#work #archive_list ul li.mansion_rv {
  background-color: #126595;
}
#work #archive_list ul li.house_rv {
  background-color: #A3783E;
}
#work #archive_list ul li.house_new {
  background-color: #64763D;
}
#work #archive_list .text {
  position: absolute;
  z-index: 3;
  bottom: 15px;
  left: 15px;
  width: calc(100% - 20px);
  color: #fff;
}
#work #archive_list .text h3 {
  font-size: 1rem;
}
#work #archive_list .text .place {
  font-size: 0.8rem;
}
#work #archive_list .bt {
  margin-top: 3rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  #work #single .wrapper {
    width: 96%;
  }
}
@media only screen and (max-width: 600px) {
  #work #single .wrapper {
    width: 92%;
  }
}
#work #single .title {
  text-align: center;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 1024px) {
  #work #single .title {
    max-width: 84%;
    margin-left: auto;
    margin-right: auto;
  }
}
#work #single .title h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #work #single .title h1 {
    font-size: 1.3remm;
  }
}
#work #single .title h1 span {
  display: inline-block;
  text-align: left;
}
#work #single .title .place {
  margin-bottom: 0.7rem;
}
#work #single .title .place span {
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
#work #single .title .place span::before, #work #single .title .place span::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #1A1A1A;
  width: 100px;
  height: 1px;
  content: "";
}
@media only screen and (max-width: 1024px) {
  #work #single .title .place span::before, #work #single .title .place span::after {
    width: 70px;
  }
}
@media only screen and (max-width: 600px) {
  #work #single .title .place span::before, #work #single .title .place span::after {
    width: 40px;
  }
}
#work #single .title .place span::before {
  right: 100%;
}
#work #single .title .place span::after {
  left: 100%;
}
#work #single .title ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#work #single .title ul li {
  margin: 3px;
}
@media only screen and (max-width: 1024px) {
  #work #single .title ul li {
    margin: 2px;
  }
}
#work #single .title ul li a {
  background-color: #1A1A1A;
  border: 1px solid #1A1A1A;
  color: #fff;
  font-size: 0.85rem;
  padding: 5px 10px;
  display: block;
  border-radius: 4px;
}
@media only screen and (max-width: 1024px) {
  #work #single .title ul li a {
    font-size: 0.75rem;
    padding: 3px 7px;
  }
}
#work #single .title ul li a:hover {
  background-color: #fff;
  color: #1A1A1A;
}
#work #single .slide {
  margin-bottom: 1rem;
}
#work #single .slide img {
  height: 500px;
}
@media only screen and (max-width: 1024px) {
  #work #single .slide img {
    height: 45vw;
  }
}
@media only screen and (max-width: 600px) {
  #work #single .slide img {
    height: 60vw;
  }
}
#work #single .slide_nav {
  position: relative;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 4rem;
  width: 100%;
}
#work #single .slide_nav .item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: inline-block;
  width: 9%;
  margin: 0.5%;
  height: auto;
  text-align: left;
}
@media only screen and (max-width: 600px) {
  #work #single .slide_nav .item {
    width: 16%;
    margin: 0.3%;
  }
}
#work #single .slide_nav .item .item2 {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 100%;
  height: 0;
}
#work #single .slide_nav .item img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
}
#work #single .slide_nav .current::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 0;
  padding-top: 100%;
  content: "";
  opacity: 0.5;
  background: #1A1A1A;
}
#work #single .slick-list {
  margin: 0 -5px;
}
#work #single .slick-slide {
  margin: 0 5px;
}
#work #single .slick-prev, #work #single .slick-next {
  width: 40px;
  height: 40px;
  z-index: 2;
}
#work #single .slick-prev::before, #work #single .slick-next::before {
  position: absolute;
  z-index: 2;
  width: 24px;
  height: 24px;
  content: "";
  border-width: 2px;
  border-color: #fff;
  opacity: 1;
}
@media only screen and (max-width: 1024px) {
  #work #single .slick-prev::before, #work #single .slick-next::before {
    width: 18px;
    height: 18px;
  }
}
#work #single .slick-prev {
  left: 15px;
}
@media only screen and (max-width: 1024px) {
  #work #single .slick-prev {
    left: 10px;
  }
}
#work #single .slick-prev::before {
  border-bottom-style: solid;
  border-left-style: solid;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  left: 10px;
  right: auto;
}
#work #single .slick-next {
  right: 15px;
}
@media only screen and (max-width: 1024px) {
  #work #single .slick-next {
    right: 10px;
  }
}
#work #single .slick-next::before {
  border-top-style: solid;
  border-right-style: solid;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  right: 10px;
  left: auto;
}
#work #single .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  #work #single .info {
    width: 90%;
    margin: 0 auto 3rem;
  }
}
#work #single .honbun {
  width: 62%;
}
@media only screen and (max-width: 600px) {
  #work #single .honbun {
    width: 100%;
    margin-bottom: 3rem;
  }
}
#work #single .honbun p {
  line-height: 2;
}
#work #single .data {
  width: 30%;
}
@media only screen and (max-width: 600px) {
  #work #single .data {
    width: 100%;
  }
}
#work #single .data .midashi2 {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}
#work #single .data .midashi2::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  width: 100%;
  height: 1px;
  background-color: #1A1A1A;
  content: "";
}
#work #single .data .midashi2 h3 {
  display: inline-block;
  background-color: #fff;
  padding: 0 10px 0 0;
  background-color: #fff;
  font-size: 30px;
}
#work #single .data .waku {
  margin-bottom: 2rem;
}
#work #single .data h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
#work #single .data .data_info p {
  line-height: 1.6;
  font-size: 0.95rem;
}
#work #single .single_navi {
  border-top: 1px solid #1A1A1A;
  border-bottom: 1px solid #1A1A1A;
  font-size: 0.8rem;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  #work #single .single_navi {
    width: 90%;
    margin: 0 auto;
  }
}
#work #single .single_navi a {
  display: block;
}
#work #single .single_navi div.single_navi2 {
  width: 40%;
  margin: 0%;
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2 {
    width: 48%;
    margin: 1%;
  }
}
#work #single .single_navi div.single_navi2.top {
  width: 20%;
  margin: 0%;
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2.top {
    display: none;
  }
}
#work #single .single_navi div.single_navi2 .image {
  width: 40%;
  float: left;
  margin: 0 5% 0 0;
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2 .image {
    width: 100%;
    float: none;
    margin: 0;
  }
}
#work #single .single_navi div.single_navi2.prev .image {
  float: right;
  margin: 0 0 0 5%;
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2.prev .image {
    width: 100%;
    float: none;
    margin: 0;
  }
}
#work #single .single_navi div.single_navi2 .text {
  width: 50%;
  float: left;
  text-align: left;
  padding: 7% 0 0;
}
@media only screen and (max-width: 1024px) {
  #work #single .single_navi div.single_navi2 .text {
    padding: 0% 0 0;
  }
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2 .text {
    width: 100%;
    float: none;
    text-align: left;
    padding: 5px 0 0;
  }
}
#work #single .single_navi div.single_navi2.prev .text {
  float: left;
  text-align: right;
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2.prev .text {
    width: 100%;
    float: none;
    text-align: left;
  }
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi div.single_navi2.prev .text .eng {
    text-align: right;
  }
}
#work #single .single_navi div.single_navi2.top .text {
  float: none;
  width: 100%;
  text-align: center;
  padding: 14% 0 0;
}
@media only screen and (max-width: 1024px) {
  #work #single .single_navi div.single_navi2.top .text {
    padding: 0% 0 0;
  }
}
#work #single .single_navi div.single_navi2 .text .eng {
  font-family: trajan-pro-3, serif;
  font-weight: 400;
  font-style: normal;
  font-size: 130%;
  color: #666;
}
@media only screen and (max-width: 1024px) {
  #work #single .single_navi div.single_navi2 .text .eng {
    font-size: 100%;
  }
}
@media only screen and (max-width: 600px) {
  #work #single .single_navi_ssptop a {
    margin: 10px 0 0;
    display: block;
    border: 1px solid #1A1A1A;
    padding: 10px;
    position: relative;
    font-size: 90%;
    font-weight: bold;
  }
  #work #single .single_navi_ssptop a::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    /* Safari用 */
    transform: translateY(-50%);
    left: 10px;
    color: #1A1A1A;
    font-size: 14px;
    font-family: "FontAwesome";
    content: "\f106";
  }
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
#news #mainimage {
  background-image: url("../images/news/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  #news #mainimage {
    background-image: url("../images/news/mainimage-sp@2x.jpg");
  }
}
#news #archive_list .wrapper {
  max-width: 1000px;
}
#news #archive_list .cat_t {
  margin-bottom: 2rem;
}
#news #archive_list .list {
  display: block;
  border-top: 1px solid #D9D9D9;
}
#news #archive_list .list li {
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  #news #archive_list .list li {
    padding: 20px 0;
  }
}
#news #archive_list .date {
  font-size: 0.9rem;
  width: 100px;
}
#news #archive_list .cat {
  font-size: 0.8rem;
  width: 140px;
}
#news #archive_list .cat a {
  background-color: #D9D9D9;
  padding: 3px 6px;
  border-radius: 3px;
  display: block;
  text-align: center;
}
#news #archive_list .cat a:hover {
  background-color: #878787;
  color: #fff;
}
#news #archive_list .text {
  padding-left: 20px;
  width: calc(100% - 240px);
}
@media only screen and (max-width: 1024px) {
  #news #archive_list .text {
    width: 100%;
    margin-top: 5px;
    padding-left: 0;
  }
}
#news #archive_list .text a:hover {
  text-decoration: underline;
}
#news #single .info {
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
  margin: 0 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#news #single .info .date {
  width: 100px;
  font-size: 0.9rem;
}
#news #single .info .cat {
  width: calc(100% - 110px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#news #single .info .cat a {
  margin: 0 0 0 5px;
  background-color: #D9D9D9;
  border: 2px solid #D9D9D9;
  padding: 4px 15px;
  display: block;
  font-size: 0.85rem;
  border-radius: 4px;
}
#news #single .info .cat a:hover {
  background-color: #fff;
  color: #D9D9D9;
}
#news #single h1 {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  line-height: 1.3;
}
@media only screen and (max-width: 1024px) {
  #news #single h1 {
    font-size: 1.4rem;
  }
}
#news #single .honbun {
  margin-bottom: 4rem;
}
#news #single .honbun h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #news #single .honbun h2 {
    font-size: 1.2rem;
  }
}
#news #single .honbun h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #news #single .honbun h3 {
    font-size: 1.1rem;
  }
}
#news #single .honbun h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1024px) {
  #news #single .honbun h4 {
    font-size: 1rem;
  }
}
#news #single .honbun h5 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
#news #single .honbun h6 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
#news #single .honbun p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
#news #single .honbun ul, #news #single .honbun ol {
  margin-bottom: 1.2rem;
  margin-left: 1rem;
  line-height: 1.6;
}
#news #single .honbun ul li, #news #single .honbun ol li {
  margin-bottom: 5px;
}
#news #single .honbun ul li {
  list-style: disc;
}
#news #single .honbun ol li {
  list-style: decimal;
}
#news #single .honbun blockquote {
  margin: 0 0 1.2rem;
  border: 1px solid #ddd;
  padding: 3% 5% 0.5rem;
}
#news #single .nav_single {
  clear: both;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid #D9D9D9;
  border-bottom: 1px solid #D9D9D9;
  padding: 20px 0;
}
#news #single .nav_single a {
  display: inline-block;
  padding: 10px 20px;
  margin: 0 5px;
  text-decoration: none;
  border-radius: 3px;
  position: relative;
  background-color: #fff;
}
#news #single .nav_single a::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
#news #single .nav_single a:hover {
  background: #1A1A1A;
  color: #fff;
}
#news #single .nav_single a:nth-child(1) {
  padding: 10px 20px 10px 30px;
}
#news #single .nav_single a:nth-child(1)::before {
  left: 10px;
  border-bottom: 1px solid #1A1A1A;
  border-left: 1px solid #1A1A1A;
}
#news #single .nav_single a:nth-child(1):hover::before {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
#news #single .nav_single a:nth-child(3) {
  padding: 10px 30px 10px 20px;
}
#news #single .nav_single a:nth-child(3)::before {
  right: 10px;
  border-top: 1px solid #1A1A1A;
  border-right: 1px solid #1A1A1A;
}
#news #single .nav_single a:nth-child(3):hover::before {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

/*! このcssはsass（sass/同名の.scssファイル）からコンパイルされています。修正時はこのcssを直接いじらないようにお願いします */
.form#form_buy #mainimage {
  background-image: url("../images/form_buy/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  .form#form_buy #mainimage {
    background-image: url("../images/form_buy/mainimage-sp@2x.jpg");
  }
}
.form#form_sale #mainimage {
  background-image: url("../images/form_sale/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  .form#form_sale #mainimage {
    background-image: url("../images/form_sale/mainimage-sp@2x.jpg");
  }
}
.form#contact #mainimage {
  background-image: url("../images/contact/mainimage@2x.jpg");
}
@media only screen and (max-width: 600px) {
  .form#contact #mainimage {
    background-image: url("../images/contact/mainimage-sp@2x.jpg");
  }
}
.form #lead .wrapper {
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .form #lead .wrapper {
    text-align: left;
  }
}
.form #lead h2 {
  margin-bottom: 1.5rem;
  font-size: 1.4re;
}
@media only screen and (max-width: 1024px) {
  .form #lead h2 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 600px) {
  .form #lead p {
    text-align: left;
  }
}
.form #lead .bt {
  margin-top: 2rem;
}
.form #form_body article {
  margin-bottom: 3rem;
}
.form #form_body h3 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}
.form #form_body dl {
  border-bottom: 1px solid #D9D9D9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.form #form_body dt, .form #form_body dd {
  border-top: 1px solid #D9D9D9;
  padding: 20px 0;
}
.form #form_body dt {
  width: 250px;
}
@media only screen and (max-width: 1024px) {
  .form #form_body dt {
    width: 100%;
    padding-bottom: 0;
  }
}
.form #form_body dt .nini, .form #form_body dt .hissu {
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 3px;
  display: inline-block;
  margin: 0 7px 0 0;
  background-color: #878787;
  color: #fff;
}
.form #form_body dt .hissu {
  background-color: #7FA827;
}
.form #form_body dd {
  width: calc(100% - 250px);
}
@media only screen and (max-width: 1024px) {
  .form #form_body dd {
    width: 100%;
    border-top: none;
    padding-top: 0.8rem;
  }
}
.form #form_body input[type=text], .form #form_body input[type=email], .form #form_body input[type=tel], .form #form_body input[type=number] {
  width: 100%;
  padding: 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 100%;
}
.form #form_body input[type=text].input_s, .form #form_body input[type=email].input_s, .form #form_body input[type=tel].input_s, .form #form_body input[type=number].input_s {
  width: 200px;
  margin: 0 0 5px 5px;
}
.form #form_body textarea {
  width: 100%;
  height: 150px;
  padding: 15px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  font-size: 100%;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.form #form_body label {
  margin: 0 10px 0 0;
}
.form #form_body input[type=checkbox], .form #form_body input[type=radio] {
  margin-right: 5px;
}
.form #form_body .privacy {
  margin-bottom: 2rem;
}
.form #form_body .privacy .text {
  background-color: #F5F5F5;
  padding: 40px 5%;
  width: 100%;
  height: 200px;
  overflow-y: scroll;
}
.form #form_body .privacy article {
  margin: 0 0 1.5rem;
}
.form #form_body .privacy h3 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.form #form_body .privacy p, .form #form_body .privacy ol, .form #form_body .privacy ul {
  line-height: 1.6;
  font-size: 0.95rem;
}
.form #form_body .privacy ol, .form #form_body .privacy ul {
  margin: 0.7rem 0 0.7rem 1rem;
}
.form #form_body .privacy ol li {
  list-style: decimal;
}
.form #form_body .privacy ul li {
  list-style: disc;
}
.form #form_body .privacy .check {
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
  display: block;
}
.form #form_body .form_bt {
  text-align: center;
}
.form #form_body .form_bt input {
  background-color: #7FA827;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 20px 80px;
  border-radius: 1rem;
  display: inline-block;
  margin: 0 7px;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .form #form_body .form_bt input {
    padding: 20px;
    width: 240px;
  }
}
.form #form_body .form_bt input.back {
  background-color: #878787;
}
@media only screen and (max-width: 600px) {
  .form #form_body .form_bt input.back {
    margin-bottom: 10px;
  }
}
.form .wpcf7-spinner {
  display: none !important;
}
.form #wpcf7cpcnf table {
  border: 0;
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #eee;
}
.form #wpcf7cpcnf table tr:last-child {
  display: none;
}
.form #wpcf7cpcnf th, .form #wpcf7cpcnf td {
  border-bottom: 1px solid #eee;
  text-align: left;
  padding: 12px;
}
@media only screen and (max-width: 600px) {
  .form #wpcf7cpcnf th, .form #wpcf7cpcnf td {
    display: block;
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .form #wpcf7cpcnf th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media only screen and (max-width: 600px) {
  .form #wpcf7cpcnf td {
    padding-top: 0px;
  }
}
.form #wpcf7cpcnf .wpcf7cp-btns {
  text-align: center;
  margin-top: 2rem;
}
.form #wpcf7cpcnf .wpcf7cp-btns button {
  background-color: #7FA827;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 20px 80px;
  border-radius: 1rem;
  display: inline-block;
  margin: 0 7px;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .form #wpcf7cpcnf .wpcf7cp-btns button {
    padding: 20px;
    width: 240px;
  }
}
.form #wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
  background-color: #878787;
}
@media only screen and (max-width: 600px) {
  .form #wpcf7cpcnf .wpcf7cp-btns button.wpcf7cp-cfm-edit-btn {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=common.css.map */