@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@100;200;300;400;500;600;700;800;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);
@charset "UTF-8";
/*----- メディアクエリ -----*/
/* 使い方
@include mq_sp{
}
*/
/*----- font -----*/
/* 使い方
font-family: $yugo;
*/
/*----- px変換 -----*/
/* 使い方
font-size: rem(16);
font-size: vw(16);
line-height: lh(16,28);
letter-spacing: ls(50);
*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP";
}

.container {
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
}

.top .hero {
  background: linear-gradient(288deg, #86b923 3.85%, #b0d741 100%);
  padding: 101px 0 91px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top .hero {
    padding: 36px 0;
  }
}
.top .hero .girl {
  position: absolute;
  display: block;
  max-width: 530px;
  bottom: -92px;
  right: 5%;
}
@media screen and (max-width: 768px) {
  .top .hero .girl {
    display: block;
    bottom: -40px;
    right: -18%;
    display: block;
    max-width: 340px;
  }
}
.top .hero .container {
  position: relative;
  overflow: visible;
}
.top .hero .container .inner {
  max-width: 490px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner {
    max-width: 210px;
  }
}
.top .hero .container .inner .heading {
  color: #fff;
  font-size: 101.73px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner .heading {
    font-size: 41.073px;
    margin-bottom: 14px;
    margin-bottom: 30px;
    line-height: 1.2;
  }
}
.top .hero .container .inner .heading .small {
  font-size: 46.505px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner .heading .small {
    font-size: 18.776px;
  }
}
.top .hero .container .inner .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23.5px;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner .box {
    gap: 14px;
  }
}
.top .hero .container .inner .box .col {
  color: #fff;
}
.top .hero .container .inner .box .col .top {
  font-size: 19.197px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner .box .col .top {
    font-size: 7.751px;
  }
}
.top .hero .container .inner .box .col .bottom {
  font-size: 23.997px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner .box .col .bottom {
    font-size: 7.751px;
    line-height: 1.2;
  }
}
.top .hero .container .inner .box .col .bottom .big {
  font-size: 83.988px;
}
@media screen and (max-width: 768px) {
  .top .hero .container .inner .box .col .bottom .big {
    font-size: 33.91px;
  }
}
.top .under-hero {
  background: #f9f9f9;
}
.top .under-hero .search {
  padding: 24px 0;
  background: #dce5ca;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top .under-hero .search {
    display: none;
  }
}
.top .under-hero .search .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
}
.top .under-hero .search .container .left {
  display: flex;
  align-items: center;
  gap: 7px;
  /* IE の標準矢印を消す */
  /* 疑似要素で独自の矢印 */
}
.top .under-hero .search .container .left .select,
.top .under-hero .search .container .left .input {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 10px 14px;
  white-space: nowrap;
  text-overflow: clip;
  overflow: visible;
}
.top .under-hero .search .container .left .select {
  position: relative;
  /* 忘れず指定 */
  width: 130px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.top .under-hero .search .container .left .select::-ms-expand {
  display: none;
}
.top .under-hero .search .container .left .select::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 16px;
  height: 16px;
  margin: auto;
  background: url("../images/arrow-down-nav.svg") no-repeat center/contain;
  pointer-events: none;
}
.top .under-hero .search .container .left .input {
  width: 241px;
}
.top .under-hero .search .container .right {
  display: flex;
  align-items: center;
  gap: 7px;
}
.top .under-hero .search .container .right .span {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
}
.top .under-hero .search .container .right .btn {
  border-radius: 4px;
  background: #86b923;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 30px;
}
.top .search-type {
  padding-bottom: 60px;
  background: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .top .search-type {
    padding: 10px 0 16px;
  }
}
.top .search-type .container {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 768px) {
  .top .search-type .container {
    flex-direction: column;
  }
}
.top .search-type .container .rental {
  width: 49%;
  border-radius: 8px;
  border: 3px solid #86b923;
  background: #fff;
  box-shadow: 0px -8.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .rental {
    width: 100%;
    font-size: 14px;
  }
}
.top .search-type .container .rental .left {
  color: #86b923;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .rental .left {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
  }
}
.top .search-type .container .rental .right {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  background: #86b923;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
  border: 3px solid #86b923;
  box-shadow: 0px -8.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .rental .right {
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
  }
}
.top .search-type .container .rental .right .top {
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .rental .right .top {
    padding: 10px;
  }
}
.top .search-type .container .rental .right .bottom {
  padding: 20px 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .rental .right .bottom {
    padding: 10px;
  }
}
.top .search-type .container .bs {
  width: 49%;
  border-radius: 8px;
  border: 3px solid #86b923;
  background: #fff;
  box-shadow: 0px -8.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .bs {
    width: 100%;
  }
}
.top .search-type .container .bs .left {
  color: #86b923;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .bs .left {
    font-size: 14px;
    text-align: center;
  }
}
.top .search-type .container .bs .right {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  background: #86b923;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 50%;
  text-align: center;
  border: 3px solid #86b923;
  box-shadow: 0px -8.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
.top .search-type .container .bs .right .top {
  padding: 20px 10px;
  border-bottom: 1px solid #fff;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .bs .right .top {
    font-size: 14px;
    padding: 10px;
  }
}
.top .search-type .container .bs .right .bottom {
  padding: 20px 10px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .search-type .container .bs .right .bottom {
    padding: 10px;
    font-size: 14px;
  }
}
.top .content {
  background: #f9f9f9;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .top .content {
    padding: 50px 0;
  }
}
.top .content .container {
  display: flex;
  gap: 40px;
}
.top .content .container .inner {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner {
    width: 100%;
  }
}
.top .content .container .inner .pickup .heading {
  color: #86b923;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .pickup .heading {
    font-size: 40px;
    margin-bottom: 0;
  }
}
.top .content .container .inner .pickup .description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .pickup .description {
    font-size: 14px;
  }
}
.top .content .container .inner .pickup .box {
  display: flex;
  gap: 19px;
  margin-bottom: 104px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .pickup .box {
    flex-direction: column;
  }
}
.top .content .container .inner .pickup .box .col {
  border-radius: 8px;
  border: none;
  overflow: hidden;
}
.top .content .container .inner .pickup .box .col .img {
  height: 139px;
  background-color: #858585;
  border: none;
}
.top .content .container .inner .pickup .box .col .read {
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  padding: 20px 27px;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .pickup .box .col .read {
    padding: 20px;
  }
}
.top .content .container .inner .pickup .box .col .read .title {
  color: #86b923;
  text-align: center;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .pickup .box .col .read .title {
    line-height: 1;
  }
}
.top .content .container .inner .pickup .box .col .read .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
}
.top .content .container .inner .left-circle {
  position: relative;
  padding-left: 24px;
}
.top .content .container .inner .left-circle:before {
  content: "";
  background: #86b923;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  left: 0;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  display: block;
}
.top .content .container .inner .recommend .heading {
  color: #86b923;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .heading {
    font-size: 40px;
    line-height: 1;
  }
}
.top .content .container .inner .recommend .description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .description {
    font-size: 14px;
    margin-bottom: 41px;
  }
}
.top .content .container .inner .recommend .box .category {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 17px;
}
.top .content .container .inner .recommend .box .inner-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box .inner-wrap {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.top .content .container .inner .recommend .box .inner-wrap .new {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #86b923;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 10px;
  border-radius: 20px;
}
.top .content .container .inner .recommend .box .inner-wrap .col {
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  overflow: hidden;
  position: relative;
  width: 32%;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box .inner-wrap .col {
    border: 1px solid #d3d3d3;
    width: 48%;
  }
}
.top .content .container .inner .recommend .box .inner-wrap .col .img {
  background: #d9d9d9;
  height: 172px;
  align-self: stretch;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box .inner-wrap .col .img {
    height: 123px;
  }
}
.top .content .container .inner .recommend .box .inner-wrap .col .read {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box .inner-wrap .col .read {
    padding: 16px 14px;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box .inner-wrap .col .read .col1 {
    font-size: 14px;
  }
}
.top .content .container .inner .recommend .box .inner-wrap .col .read .col1 .tag {
  border-radius: 20px;
  background: #e9e9e9;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  display: inline;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box .inner-wrap .col .read .col1 .tag {
    padding: 2px 10px;
    font-size: 12px;
    line-height: 1;
  }
}
.top .content .container .inner .recommend .box .inner-wrap .col .read .col2 {
  display: flex;
  gap: 8px;
}
.top .content .container .inner .recommend .box .inner-wrap .col .read .col2 .price {
  color: #ed6130;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box .inner-wrap .col .read .col2 .price .small {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box .inner-wrap .col .read .col2 .text {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box.box--bs .category {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 17px;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .new {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #86b923;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 10px;
  border-radius: 20px;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col {
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  overflow: hidden;
  position: relative;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box.box--bs .inner-wrap .col {
    border: 1px solid #d3d3d3;
  }
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .img {
  background: #d9d9d9;
  height: 172px;
  align-self: stretch;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .read {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .read .col1 .tag {
  border-radius: 20px;
  background: #e9e9e9;
  padding: 5px 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: inline;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .read .col2 {
  display: flex;
  gap: 8px;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .read .col2 .price {
  color: #ed6130;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .read .col2 .price .small {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box.box--bs .inner-wrap .col .read .col2 .text {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box.box--cp .category {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 17px;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .new {
  position: absolute;
  left: 10px;
  top: 10px;
  background-color: #86b923;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 10px;
  border-radius: 20px;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col {
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  overflow: hidden;
  position: relative;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .recommend .box.box--cp .inner-wrap .col {
    border: 1px solid #d3d3d3;
  }
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .img {
  background: #d9d9d9;
  height: 172px;
  align-self: stretch;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .read {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .read .col1 .tag {
  border-radius: 20px;
  background: #e9e9e9;
  padding: 5px 10px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  display: inline;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .read .col2 {
  display: flex;
  gap: 8px;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .read .col2 .price {
  color: #ed6130;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .read .col2 .price .small {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .recommend .box.box--cp .inner-wrap .col .read .col2 .text {
  color: #333;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
}
.top .content .container .inner .staff {
  margin-bottom: 104px;
}
.top .content .container .inner .staff .heading {
  color: #86b923;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .heading {
    font-size: 40px;
    line-height: 1;
  }
}
.top .content .container .inner .staff .description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .description {
    font-size: 14px;
    margin-bottom: 41px;
  }
}
.top .content .container .inner .staff .box {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .box {
    flex-direction: column;
    gap: 10px;
  }
}
.top .content .container .inner .staff .box .col {
  width: 32%;
  border-radius: 8px;
  border: 1px solid #f9f9f9;
  background: #fff;
  padding: 12px;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .box .col {
    width: 100%;
    border: 1px solid #d3d3d3;
  }
}
.top .content .container .inner .staff .box .col .name {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 19px;
}
.top .content .container .inner .staff .box .col .img {
  background: #d9d9d9;
  border: none;
  margin-bottom: 19px;
  height: 172px;
  align-self: stretch;
  width: 100%;
}
.top .content .container .inner .staff .box .col .table {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .box .col .table {
    width: 100%;
  }
}
.top .content .container .inner .staff .box .col .table tr {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .box .col .table tr {
    gap: 0;
    line-height: 1.5;
  }
}
.top .content .container .inner .staff .box .col .table .td1 {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .box .col .table .td1 {
    width: 20%;
  }
}
.top .content .container .inner .staff .box .col .table .td1 .arrow {
  width: 4px;
  height: 9px;
}
.top .content .container .inner .staff .box .col .table .td2 {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .staff .box .col .table .td2 {
    width: 80%;
  }
}
.top .content .container .inner .blog {
  margin-bottom: 104px;
}
.top .content .container .inner .blog .heading {
  color: #86b923;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .heading {
    font-size: 40px;
    line-height: 1;
  }
}
.top .content .container .inner .blog .description {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .description {
    font-size: 14px;
    margin-bottom: 41px;
    line-height: 1;
  }
}
.top .content .container .inner .blog .box {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.top .content .container .inner .blog .box .col {
  position: relative;
  width: 33%;
  border-radius: 8px;
  border: 1px solid #f9f9f9;
  background: #fff;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box .col {
    border: 1px solid #d3d3d3;
    width: 48%;
  }
}
.top .content .container .inner .blog .box .col .cat {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 0px 0px 0px 8px;
  background: #86b923;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box .col .cat {
    padding: 4px 6px;
    font-size: 12px;
  }
}
.top .content .container .inner .blog .box .col .img {
  height: 186px;
  align-self: stretch;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box .col .img {
    margin-bottom: 16px;
  }
}
.top .content .container .inner .blog .box .col .title {
  padding: 0 20px;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box .col .title {
    padding: 0 8px;
    margin-bottom: 12px;
    line-height: 1.5;
  }
}
.top .content .container .inner .blog .box .col .read {
  overflow: hidden;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  /* 27.2px */
  letter-spacing: 1.28px;
  margin-bottom: 5px;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box .col .read {
    white-space: break-spaces;
    padding: 0 8px;
    margin-bottom: 12px;
    font-size: 12px;
  }
}
.top .content .container .inner .blog .box .col .date {
  color: #7a7c7a;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  padding: 0 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .blog .box .col .date {
    font-size: 12px;
    padding: 0 8px;
  }
}
.top .content .container .inner .voices .heading {
  color: #86b923;
  font-family: Poppins;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .voices .heading {
    font-size: 40px;
  }
}
.top .content .container .inner .voices .description {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .voices .description {
    font-size: 14px;
  }
}
.top .content .container .inner .voices .box {
  display: flex;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .voices .box {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.top .content .container .inner .voices .box .col {
  width: 33%;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .voices .box .col {
    border: 1px solid #d3d3d3;
    width: 48%;
    padding: 12px 8px;
  }
}
.top .content .container .inner .voices .box .col .title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  /* 27.2px */
  display: flex;
  gap: 20px;
  margin-bottom: 5px;
}
.top .content .container .inner .voices .box .col .img {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .voices .box .col .img {
    height: 142px;
  }
}
.top .content .container .inner .voices .box .col .read {
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 5px;
}
.top .content .container .inner .voices .box .col .bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.top .content .container .inner .voices .box .col .bottom .left .text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  /* 20.4px */
}
.top .content .container .inner .voices .box .col .bottom .left .icon {
  width: 73px;
  height: 50px;
}
.top .content .container .inner .voices .box .col .bottom .right .link {
  color: #0060b8;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .top .content .container .inner .voices .box .col .bottom .right .link {
    font-size: 12px;
  }
}

*,
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  line-height: inherit;
  letter-spacing: inherit;
  box-sizing: border-box;
}

html {
  scroll-padding: 200px;
}

img {
  border: 0;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", system-ui;
  color: #121c2d;
  letter-spacing: 1px;
}

img {
  width: 100%;
  height: auto;
}

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

@media screen and (max-width: 750px) {
  br.pc {
    display: none;
  }
}

@media screen and (max-width: 750px) {
  img.pc {
    display: none;
  }
}

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

.components {
  padding-top: 43px;
}

html {
  scroll-behavior: smooth;
}

select {
  color: #666666;
  background-color: #fafafa;
}

.grecaptcha-badge {
  visibility: hidden !important;
}

.post-single {
  border-bottom: 1px solid #666;
  margin-bottom: 2rem;
}
.post-single * {
  margin-bottom: 1rem;
  line-height: 1.5 !important;
}
.post-single h2,
.post-single h2.wp-block-heading {
  padding: 2px 0 2px 1rem;
  position: relative;
  margin-bottom: 2rem;
  font-size: 24px !important;
  font-weight: 700 !important;
}
@media screen and (max-width: 750px) {
  .post-single h2,
  .post-single h2.wp-block-heading {
    font-size: 18px !important;
  }
}
.post-single h2::before,
.post-single h2.wp-block-heading::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 100%;
  left: 0;
  border-radius: 8px;
  background: #094;
}
.post-single h3 {
  width: 100%;
  border-bottom: 2px solid #094;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 25.2px;
  padding-bottom: 8px;
  margin-bottom: 1rem;
}
.post-single strong {
  font-weight: bold;
}
.post-single ol {
  list-style: decimal !important;
  padding-left: 2rem;
}
.post-single ul {
  padding-left: 2rem;
  list-style: inherit !important;
}
.post-single a {
  color: #094;
  text-decoration: underline;
}
.post-single .custom-alert {
  align-items: center !important;
  margin-bottom: 1rem;
  gap: 12px;
  padding: 15px 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  position: relative;
}
.post-single .custom-alert img {
  width: 24px !important;
  min-width: 24px;
  margin-bottom: 0 !important;
  line-height: inherit !important;
  position: relative;
  top: 5px;
}
.post-single .custom-alert p {
  margin-bottom: 0 !important;
  line-height: inherit !important;
  margin-left: -1rem !important;
}
.post-single .wp-block-vk-blocks-alert {
  background: transparent !important;
  align-items: center !important;
  border: 1px solid #ccc;
}
.post-single .wp-block-vk-blocks-alert img {
  margin-bottom: 0 !important;
}
.post-single .wp-block-vk-blocks-alert p {
  margin-bottom: 0 !important;
  line-height: inherit !important;
  margin-left: -1rem !important;
}
.post-single .wp-block-vk-blocks-alert h4 {
  margin-bottom: 0.5rem !important;
  line-height: inherit !important;
  margin-left: -3rem !important;
  margin-top: 1rem !important;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert h4 {
    margin-left: 0rem !important;
    margin-top: 1rem !important;
  }
}
.post-single .wp-block-vk-blocks-alert ul {
  margin-left: -1rem;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert ul {
    margin-left: -1rem !important;
  }
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert .vk_alert_icon {
    margin-bottom: 0 !important;
    line-height: 1;
  }
}
.post-single .wp-block-vk-blocks-alert .vk_alert_icon_icon {
  margin-bottom: 0 !important;
  margin-left: -3rem;
}
.post-single .wp-block-vk-blocks-alert .vk_alert_icon_text {
  margin-bottom: 0 !important;
}
.post-single .wp-block-vk-blocks-alert .vk_alert_icon_icon > i {
  margin-bottom: 0 !important;
}
.post-single .wp-block-vk-blocks-alert p {
  margin-bottom: 0;
  padding: 0 1rem 0 0;
  margin-left: -5rem;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert p {
    margin-left: -1rem;
  }
}
.post-single .wp-block-vk-blocks-alert .vk_alert_content {
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-left: none;
  color: #333;
  padding: 0 1rem 0 0;
}
.post-single .wp-block-vk-blocks-alert .vk_alert_content p,
.post-single .wp-block-vk-blocks-alert .vk_alert_content h4 {
  margin-left: -4rem !important;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert .vk_alert_content p,
  .post-single .wp-block-vk-blocks-alert .vk_alert_content h4 {
    margin-left: 0 !important;
  }
}
.post-single .wp-block-vk-blocks-alert .vk_alert_content ul,
.post-single .wp-block-vk-blocks-alert .vk_alert_content ol {
  margin-left: -85px;
  margin-bottom: 0;
}
.post-single .wp-block-vk-blocks-alert .vk_alert_content ul li,
.post-single .wp-block-vk-blocks-alert .vk_alert_content ol li {
  margin-bottom: 0.5rem;
  padding-right: 1rem;
}
.post-single .wp-block-vk-blocks-alert .vk_alert_content ul li:last-child,
.post-single .wp-block-vk-blocks-alert .vk_alert_content ol li:last-child {
  margin-bottom: 0;
}
.post-single .wp-block-vk-blocks-alert span {
  display: none !important;
}
.post-single .wp-block-vk-blocks-alert .fa-circle-info:before,
.post-single .wp-block-vk-blocks-alert .fa-circle-exclamation:before,
.post-single .wp-block-vk-blocks-alert .fa-triangle-exclamation::before {
  content: "";
}
.post-single .wp-block-vk-blocks-alert .fa-triangle-exclamation:after {
  position: absolute;
  content: "";
  background: url("../images/icon-2.png") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  left: 12px;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert .fa-triangle-exclamation:after {
    left: 15px;
  }
}
.post-single .wp-block-vk-blocks-alert .fa-circle-exclamation:after {
  position: absolute;
  content: "";
  background: url("../images/icon-3.png") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  left: 12px;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert .fa-circle-exclamation:after {
    left: 15px;
  }
}
.post-single .wp-block-vk-blocks-alert .fa-circle-info:after {
  position: absolute;
  content: "";
  background: url("../images/icon-1.png") no-repeat center center;
  background-size: contain;
  width: 30px;
  height: 30px;
  left: 12px;
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
}
@media screen and (max-width: 750px) {
  .post-single .wp-block-vk-blocks-alert .fa-circle-info:after {
    left: 15px;
  }
}
.post-single .vk_alert.has-alert-icon > .vk_alert_content {
  border-left: none;
}

.pagination a {
  line-height: 1;
}

.pagination-arrow {
  max-width: 24px;
}

/* 例: style.css や header内 <style> タグなどに書く */
/* モーダルの初期状態は非表示に */
.search-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.search-popup__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.search-popup__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 300px;
  padding: 30px;
  border-radius: 6px;
  text-align: center;
}

.search-popup__content .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 1rem;
}

.search-popup__content .buttons .btn {
  padding: 10px 20px;
  font-size: 18px;
  background: #86b923;
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
}

.search-popup__content .close-popup {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

.search-popup.show {
  display: block;
}

body {
  font-family: "Noto Sans JP";
  color: #333;
}

.header {
  position: sticky;
  top: 0;
  background-color: #f9f9f9;
  border-top: 9px solid #86b823;
  z-index: 100;
}
.header .container {
  padding: 0;
}
.header .pc {
  border-top: 10px solid #86b923;
}
@media screen and (max-width: 768px) {
  .header .pc {
    display: none;
  }
}
.header .pc .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}
@media screen and (max-width: 768px) {
  .header .pc .top {
    display: none;
  }
}
.header .pc .top .logo {
  color: #86b823;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.header .pc .top .nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header .pc .top .nav .col {
  display: flex;
  align-items: center;
  gap: 13.5px;
}
.header .pc .top .nav .col--btn {
  padding: 14px 20px;
  border-radius: 6.75px;
  border: 1.688px solid #cecece;
  background: #fff;
  box-shadow: 0px 1.688px 3.375px 0px rgba(0, 0, 0, 0.25), 0px -4px 0px 0px rgba(0, 0, 0, 0.15) inset;
}
.header .pc .top .nav .col--btn .icon {
  width: 16px;
  height: 20px;
}
.header .pc .top .nav .col--btn .text {
  text-shadow: 0px 0.675px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.header .pc .top .nav .col--contact {
  padding: 14px 20px;
  border-radius: 6.75px;
  border: 1.688px solid #71a213;
  background: #86b823;
  box-shadow: 0px 1.688px 3.375px 0px rgba(0, 0, 0, 0.25), 0px -4px 0px 0px rgba(0, 0, 0, 0.15) inset;
}
.header .pc .top .nav .col--contact .icon {
  width: 21.353px;
  height: 16px;
}
.header .pc .top .nav .col--contact .text {
  color: #fff;
  text-shadow: 0px 0.675px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.header .pc .top .nav .col--number {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.header .pc .top .nav .col--number .number {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header .pc .top .nav .col--number .number .icon {
  width: 19px;
  height: 25px;
}
.header .pc .top .nav .col--number .number .text {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.header .pc .top .nav .col--number .read {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.header .pc .bottom {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
  background: #f4f4f4;
}
.header .pc .bottom .container {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
}
.header .pc .bottom .left .text {
  color: #858585;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.header .pc .bottom .right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header .pc .bottom .right .button {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header .pc .bottom .right .button .recently {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #fff;
  padding: 4px;
}
.header .pc .bottom .right .button .recently .icon {
  width: 18px;
  height: 18px;
}
.header .pc .bottom .right .button .recently .text {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.header .pc .bottom .right .button .consider {
  display: flex;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #fff;
  padding: 4px;
}
.header .pc .bottom .right .button .consider .icon {
  width: 18px;
  height: 18px;
}
.header .pc .bottom .right .button .consider .text {
  color: #333;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.header .pc .bottom .right .read {
  color: #858585;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.header .sp {
  display: none;
  padding: 11.5px;
  justify-content: space-between;
  align-items: center;
  transition: 0.1s;
}
@media screen and (max-width: 768px) {
  .header .sp {
    display: flex;
  }
}
.header .sp .link .heading {
  color: #86b823;
  font-family: "Noto Sans JP";
  font-size: 22.965px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.header .sp .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header .sp .right .text {
  color: #000;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.header .sp .right .tgl-btn {
  position: relative;
  width: 34px;
  height: 22px;
}
.header .sp .right .tgl-btn .line {
  position: absolute;
  height: 2px;
  width: 100%;
  background: #71a213;
  display: block;
  margin: auto;
  left: 0;
  transition: 0.3s;
}
.header .sp .right .tgl-btn .line--1 {
  top: 0;
}
.header .sp .right .tgl-btn .line--2 {
  top: 0;
  bottom: 0;
}
.header .sp .right .tgl-btn .line--3 {
  bottom: 0;
}
.header .sp .right .tgl-btn.active .line--1 {
  transform: rotate(45deg);
  bottom: 0;
}
.header .sp .right .tgl-btn.active .line--2 {
  width: 0;
  right: 0;
}
.header .sp .right .tgl-btn.active .line--3 {
  transform: rotate(-45deg);
  bottom: 11px;
}

.sp-inner {
  background: #efefef;
  padding: 8px;
  width: 80%;
  position: fixed;
  top: 76px;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: none;
}
.sp-inner.open {
  display: block;
}
.sp-inner .nav {
  background: #fff;
}
.sp-inner .nav .box .col {
  padding: 11px 12px;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.sp-inner .nav .box .col::before {
  position: absolute;
  background: url("../images/arrow-black.png") no-repeat;
  width: 5px;
  height: 10px;
  background-size: cover;
  content: "";
  margin: auto;
  display: block;
  top: 0;
  bottom: 0;
  right: 12px;
}
.sp-inner .nav .box .col .icon {
  width: 24px;
  height: 24px;
}

.musk {
  background: rgba(0, 0, 0, 0.4);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 76px;
  bottom: 0;
  display: none;
  transition: 0.1s;
  z-index: 4;
}
.musk.open {
  display: block;
}

@media screen and (max-width: 768px) {
  .footer {
    background: #86b923;
  }
}
@media screen and (max-width: 768px) {
  .footer .pc {
    display: none;
  }
}
.footer .pc .top {
  background: #f4f4f4;
  padding: 30px 0;
}
.footer .pc .top .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .pc .top .box .col {
  display: flex;
  justify-content: center;
}
.footer .pc .top .box .col .left {
  width: 20%;
  color: #555657;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.footer .pc .top .box .col .right {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.footer .pc .top .box .col .right .link {
  color: #0066c0;
  align-self: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding-right: 5px;
}
.footer .pc .top .box .col .right .link:not(.footer .pc .top .box .col .right .link::before) {
  content: "/";
  right: 0;
}
.footer .pc .bottom {
  display: flex;
  justify-content: center;
  background: #86b923;
  padding: 30px 0;
}
.footer .pc .bottom .list {
  padding: 0 20px;
}
.footer .pc .bottom .list:not(.footer .pc .bottom .list:last-child) {
  border-right: 1px solid #fff;
}
.footer .pc .bottom .list .col {
  display: flex;
  gap: 4px;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.footer .pc .bottom .list .col:not(:last-child) {
  margin-bottom: 16px;
}
.footer .pc .bottom .list .col .arrow {
  fill: #fff;
  width: 7px;
  height: 11px;
}
.footer .pc .bottom .list .col .text {
  color: #fff;
}
.footer .pc .bottom .list .col .top {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  background: #86b923;
  padding: 0;
}
.footer .pc .bottom .list .col .mid {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer .pc .bottom .list .col .bottom2 {
  text-align: left;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.footer .pc .bottom .list .col--read {
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer .sp {
  display: none;
  color: #fff;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  .footer .sp {
    display: flex;
  }
}
.footer .sp .container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}
.footer .sp .container .top-btn {
  text-align: center;
  width: 25px;
  height: 25px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  display: block;
  margin: 0 auto;
}
.footer .sp .container .top-btn .img {
  width: 11px;
  height: 7px;
  display: block;
  margin: 0 auto;
}
.footer .sp .container .description {
  text-align: center;
}
.footer .sp .container .box {
  display: flex;
  gap: 1rem;
  flex-direction: column;
}
.footer .sp .container .box .col {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer .sp .container .box .col .icon {
  width: 11px;
  height: 7px;
}
.footer .sp .container .box .col .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.footer .sp .container .copy {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumb {
  color: #797979;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .container .box {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search {
  background: #f9f9f9;
  padding: 16px 0 60px;
}
@media screen and (max-width: 768px) {
  .search {
    background: #fff;
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .search .content .page-title .container {
    padding: 8px 10px;
  }
}
.search .content .page-title .container .heading {
  border-top: 3px solid #86b923;
  background: #fff;
  padding: 20px 16px;
  margin-bottom: 37px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 768px) {
  .search .content .page-title .container .heading {
    box-shadow: none;
    border-top: none;
    border-left: 3px solid #86b823;
    padding: 0 0 0 16px;
    margin-bottom: 0;
  }
}
.search .content .step1 {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container {
    padding: 0;
    margin-bottom: 50px;
  }
}
.search .content .step1 .container .charm {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .charm {
    display: none;
  }
}
.search .content .step1 .container .charm .green {
  border-radius: 4px;
  background: #86b923;
  display: flex;
  height: 24px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.search .content .step1 .container .charm .text {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.search .content .step1 .container .charm .text .red {
  color: #fe4242;
}
.search .content .step1 .container .box .col {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .col {
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
  }
}
.search .content .step1 .container .box .col .top {
  border-bottom: 1px solid #dbdbdb;
  background: #e9e9e9;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.search .content .step1 .container .box .col .top .area {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .col .top .area {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
  }
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .col .top .select {
    display: none;
  }
}
.search .content .step1 .container .box .col .top .select .label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.search .content .step1 .container .box .col .top .select .input {
  width: 14px;
  height: 14px;
}
.search .content .step1 .container .box .col .bottom {
  padding: 16px 33px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .col .bottom {
    padding: 0 9px 1rem;
  }
}
.search .content .step1 .container .box .col .bottom .grid {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 0;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .col .bottom .grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.search .content .step1 .container .box .col .bottom .grid .label {
  width: 25%;
  display: flex;
  padding-left: 4px;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  color: #0066c0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .col .bottom .grid .label {
    padding: 16px 9px;
    border-bottom: 1px solid #dbdbdb;
    width: 100%;
    color: #0b0b0b;
    leading-trim: both;
    text-edge: cap;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    gap: 8px;
  }
  .search .content .step1 .container .box .col .bottom .grid .label:last-child {
    border-bottom: none;
  }
}
.search .content .step1 .container .box .col .bottom .grid .label .input {
  width: 14px;
  height: 14px;
}
.search .content .step1 .container .box .submit-btn {
  border-radius: 130px;
  border: 2px solid #b3b3b3;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -6px 14px 0px rgba(0, 0, 0, 0.25) inset;
  display: flex;
  width: 340px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 14px 38px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .search .content .step1 .container .box .submit-btn {
    margin: 1rem auto 0 !important;
  }
}
.search .content .step1 .container .box .submit-btn .text {
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.search .content .step1 .container .box .submit-btn .img {
  width: 25.681px;
  height: 25.697px;
}
.search .content .step2 {
  margin-bottom: 37px;
}
@media screen and (max-width: 768px) {
  .search .content .step2 {
    margin-bottom: 0;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container {
    padding: 0;
  }
}
.search .content .step2 .container .search-form .charm {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .charm {
    display: none;
  }
}
.search .content .step2 .container .search-form .charm .green {
  border-radius: 4px;
  background: #86b923;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 7px 8px;
}
.search .content .step2 .container .search-form .charm .text {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.search .content .step2 .container .search-form .charm .text .red {
  padding: 0 4px;
  color: #fe4242;
}
.search .content .step2 .container .search-form .filter .title {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 4.5px 7px;
  border-left: 3px solid #86b923;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .title {
    margin: 10px;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    padding-left: 16px;
  }
}
.search .content .step2 .container .search-form .filter .search-table {
  display: block;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  background: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table {
    padding: 0;
    border: none;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr {
  margin: 12px;
  display: flex;
  vertical-align: top;
}
.search .content .step2 .container .search-form .filter .search-table .tr:not(.search .content .step2 .container .search-form .filter .search-table .tr:last-child) {
  border-bottom: 0.6px solid #c6c6c6;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr {
    flex-direction: column;
    margin: 0;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .th {
  text-align: left;
  width: 18%;
  padding: 0 20px 7px 0;
  margin: 0 0 4px 0;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .th {
    margin: 0;
    width: 100%;
    background: #d9d9d9;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    padding: 14px 9px;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 20px;
  width: 85%;
  gap: 10px 0;
  margin-bottom: 12px;
  border-left: 1px solid #c1c1c1;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td {
    width: 100%;
    border-left: none;
    padding-left: 0;
    margin-bottom: 0;
    gap: 0;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .label {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td .label {
    width: 50%;
    padding: 14px 9px;
    border-bottom: 1px solid #dbdbdb;
  }
  .search .content .step2 .container .search-form .filter .search-table .tr .td .label--100 {
    width: 100%;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .select-box {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td .select-box {
    padding: 12.5px 4px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .select-box .text {
  display: inline-block;
  margin: 0 5px;
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .select {
  border-radius: 2px;
  border: 0.4px solid #000;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  width: 124px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td .select {
    margin: 12.5px 4px;
    width: 100%;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .col {
  width: 100%;
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .col {
  padding: 14px 0 20px;
  border-bottom: 1px solid #c6c6c6;
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .col:first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td .col {
    padding: 0;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .col .name {
  margin-bottom: 11px;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td .col .name {
    color: #0b0b0b;
    leading-trim: both;
    text-edge: cap;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
    border-bottom: 1px solid #dbdbdb;
    padding: 19px 10px;
  }
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .col .inner {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 200%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.search .content .step2 .container .search-form .filter .search-table .tr .td .col .inner .label {
  width: 33%;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .filter .search-table .tr .td .col .inner .label {
    width: 50%;
    border-bottom: 1px solid #dbdbdb;
  }
}
.search .content .step2 .container .search-form .submit-btn {
  border-radius: 130px;
  border: 2px solid #b3b3b3;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -6px 14px 0px rgba(0, 0, 0, 0.25) inset;
  display: flex;
  width: 340px;
  height: 54px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 14px 38px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .submit-btn {
    margin: 1rem auto 2rem;
  }
}
.search .content .step2 .container .search-form .submit-btn .text {
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .submit-btn .text {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
  }
}
.search .content .step2 .container .search-form .submit-btn .img {
  width: 25.681px;
  height: 25.697px;
}
@media screen and (max-width: 768px) {
  .search .content .step2 .container .search-form .submit-btn .img {
    width: 21.84px;
    height: 21.855px;
  }
}
.search .content .area .container {
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  background: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
}
.search .content .area .container .col {
  margin-bottom: 14px;
}
.search .content .area .container .col .top .heading {
  padding: 4.5px;
  border-left: 3px solid #86b923;
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 14px;
}
.search .content .area .container .col .bottom {
  display: flex;
  align-items: center;
  gap: 8px 29px;
  flex-wrap: wrap;
}
.search .content .area .container .col .bottom .link {
  color: #106ec7;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  align-self: center;
}

.archive {
  background: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .archive {
    padding: 20px 0;
  }
}
.archive .page-title {
  border-top: 3px solid #86b923;
  background: #fff;
  margin-bottom: 22px;
  /* シャドウ */
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 23.5px 16px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content {
  padding-bottom: 1rem;
}
.archive .content .container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.archive .content .container .main-content {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content {
    width: 100%;
  }
}
.archive .content .container .main-content .search-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-box {
    align-items: center;
  }
}
.archive .content .container .main-content .search-box .left {
  display: flex;
  align-items: baseline;
}
.archive .content .container .main-content .search-box .left .read {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content .search-box .left .read .orange {
  color: #ee8e1c;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-box .left .read .orange {
    font-size: 18px;
  }
}
.archive .content .container .main-content .search-box .left .read .big {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-box .left .read .big {
    display: none;
  }
}
.archive .content .container .main-content .search-box .right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-box .right {
    gap: 0;
  }
}
.archive .content .container .main-content .search-box .right .top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.archive .content .container .main-content .search-box .right .top .order {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive .content .container .main-content .search-box .right .top .order .select {
  border: 0.6px solid #333;
  background: #fff;
}
.archive .content .container .main-content .search-box .right .top .items {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive .content .container .main-content .search-box .right .top .items .select {
  border: 0.6px solid #333;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-box .right .bottom .pagination {
    display: none;
  }
}
.archive .content .container .main-content .search-box .right .bottom .pagination ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive .content .container .main-content .search-box .right .bottom .pagination ul li {
  padding: 7px 8px;
  border: 0.6px solid #bdbdbd;
  background: #fff;
}
.archive .content .container .main-content .search-box .right .bottom .pagination .prev {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive .content .container .main-content .search-box .right .bottom .pagination .current {
  color: #ee8e1c;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  background: none;
}
.archive .content .container .main-content .search-box .right .bottom .pagination .dots {
  border: none;
  padding: 7px 0;
  background: none;
}
.archive .content .container .main-content .search-box .right .bottom .pagination .next {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive .content .container .main-content .search-info {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-info {
    display: none;
  }
}
.archive .content .container .main-content .search-info .heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
  text-shadow: 0px 0.4px 0px #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 13px;
}
.archive .content .container .main-content .search-info .heading .icon {
  width: 16.293px;
  height: 16.303px;
}
.archive .content .container .main-content .search-info .box {
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 0 14px;
}
.archive .content .container .main-content .search-info .box .col {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 0;
  border-bottom: 1px solid #d3d3d3;
}
.archive .content .container .main-content .search-info .box .col .title {
  color: #86b923;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 4.5px 20px;
  border: 1px solid #86b923;
  width: 80px;
  text-align: center;
}
.archive .content .container .main-content .search-info .box .col .read {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.archive .content .container .main-content .search-info .box .col .item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive .content .container .main-content .search-info .box .col .item .read {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content .search-info .box .col--2 .item {
  width: 33%;
}
.archive .content .container .main-content .search-info .box .col--3 .item {
  width: 33%;
}
.archive .content .container .main-content .search-box-sp {
  display: none;
  margin-top: 30px;
  margin-bottom: 21px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-box-sp {
    display: block;
  }
}
.archive .content .container .main-content .search-box-sp .heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.archive .content .container .main-content .search-box-sp .heading .icon {
  width: 16.293px;
  height: 16.303px;
}
.archive .content .container .main-content .search-box-sp .heading .text {
  text-shadow: 0px 0.4px 0px #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content .search-box-sp .box {
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 0 14px;
}
.archive .content .container .main-content .search-box-sp .box .col {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.archive .content .container .main-content .search-box-sp .box .col:not(:last-child) {
  border-bottom: 1px solid #d3d3d3;
}
.archive .content .container .main-content .search-box-sp .box .col .left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content .search-box-sp .box .col .left .img--train {
  width: 12.938px;
  height: 18px;
}
.archive .content .container .main-content .search-box-sp .box .col .left .img--memo {
  width: 13.785px;
  height: 18px;
}
.archive .content .container .main-content .search-box-sp .box .col .right {
  color: #86b923;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 7px;
}
.archive .content .container .main-content .search-box-sp .box .col .right .arrow {
  width: 5px;
  height: 10px;
}
.archive .content .container .main-content .search-info-sp {
  display: none;
  margin-bottom: 33px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-info-sp {
    display: flex;
  }
}
.archive .content .container .main-content .search-info-sp .left {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content .search-info-sp .left .color {
  color: #ee8e1c;
}
.archive .content .container .main-content .search-info-sp .right .select {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 0.6px solid #333;
  background: #fff;
  padding: 0 6px;
}
.archive .content .container .main-content .search-info-sp2 {
  display: none;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-info-sp2 {
    display: block;
  }
}
.archive .content .container .main-content .search-info-sp2 .title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.archive .content .container .main-content .search-info-sp2 .title svg {
  width: 16.293px;
  height: 16.303px;
}
.archive .content .container .main-content .search-info-sp2 .buttons {
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 0 14px;
  margin-bottom: 21px;
}
.archive .content .container .main-content .search-info-sp2 .buttons .top {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
}
.archive .content .container .main-content .search-info-sp2 .buttons .top .left {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive .content .container .main-content .search-info-sp2 .buttons .top .left .text {
  color: var(--, #333);
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content .search-info-sp2 .buttons .top .right {
  color: #86b923;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 7px;
}
.archive .content .container .main-content .search-info-sp2 .buttons .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.archive .content .container .main-content .search-info-sp2 .buttons .bottom .left {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive .content .container .main-content .search-info-sp2 .buttons .bottom .left .text {
  color: var(--, #333);
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content .search-info-sp2 .buttons .bottom .right {
  color: #86b923;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 7px;
}
.archive .content .container .main-content .search-results {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  padding: 20px 0 0px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results {
    box-shadow: none;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results--sale {
    background: #f9f9f9 !important;
  }
  .archive .content .container .main-content .search-results--sale .col {
    margin-bottom: 20px !important;
    display: block;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #d3d3d3;
    background: #fff;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  }
}
.archive .content .container .main-content .search-results .col {
  padding: 10px 16px;
  margin-bottom: 20px;
}
.archive .content .container .main-content .search-results .col .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .top {
    margin-bottom: 12px;
  }
}
.archive .content .container .main-content .search-results .col .top .read {
  display: flex;
  align-items: center;
  gap: 10px;
}
.archive .content .container .main-content .search-results .col .top .read .cat {
  background: #86b923;
  color: #fff;
  padding: 4.5px 6px;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  width: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .top .read .cat {
    width: 100px;
  }
}
.archive .content .container .main-content .search-results .col .top .read .title {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .top .read .title {
    font-size: 14px;
  }
}
.archive .content .container .main-content .search-results .col .top .buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .top .buttons {
    display: none;
  }
}
.archive .content .container .main-content .search-results .col .top .buttons .btn.btn--contact {
  border-radius: 4px;
  border: 1px solid #d56b2f;
  background: #ee8e1c;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11.5px 12px;
  width: 140px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
}
.archive .content .container .main-content .search-results .col .top .buttons .btn.btn--contact .icon {
  width: 17.491px;
  height: 13.106px;
}
.archive .content .container .main-content .search-results .col .top .buttons .btn.btn--contact .text {
  color: #fff;
  text-shadow: 0px 0.4px 0px #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content .search-results .col .top .buttons .btn--consider {
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11.5px 12px;
  border: 1px solid #cecece;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  width: 160px;
}
.archive .content .container .main-content .search-results .col .top .buttons .btn--consider .icon {
  width: 16.952px;
  height: 15.257px;
}
.archive .content .container .main-content .search-results .col .top .toggle-invest-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .top .toggle-invest-sp {
    display: block;
  }
}
.archive .content .container .main-content .search-results .col .top .sp-btn {
  display: none;
}
.archive .content .container .main-content .search-results .col .top .sp-btn .icon {
  width: 16.952px;
  height: 15.257px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .top .sp-btn {
    display: block;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc {
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc {
    gap: 16px;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .img-box .img {
  width: 220px;
  height: 145px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .img-box .img {
    width: 120px;
    height: 78px;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc {
    display: none;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col {
  display: flex;
  gap: 5px;
  margin-bottom: 0;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #d3d3d3;
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col:first-child {
  border-top: 1px solid #d3d3d3;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col:first-child {
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col {
    border-bottom: none;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col .cat {
  color: #e5902b;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 4.5px 6px;
  border: 1px solid #e5902b;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col .cat {
    display: none;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col .text {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col .text--sp {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 10px;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col.col--2 {
  display: flex;
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col.col--2 .item {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col.col--2 .item {
    width: 100%;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col.col--2 .item .cat {
  display: inline-block;
  border: none;
  color: #b2abab;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col.col--2 .item .text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 10px;
  }
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--pc .col.col--2 .item--pc {
  display: none;
}
.archive .content .container .main-content .search-results .col .bottom-pc .read--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc .read--sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc--sale {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-pc--sale .img-box {
    display: none;
  }
}
.archive .content .container .main-content .search-results .col .bottom-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .search-results .col .bottom-sp {
    display: block;
  }
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap {
  display: flex;
  gap: 10px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .img {
  width: 120px;
  height: 78px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .price {
  color: #d67400;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 10px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .info {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 11px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .area {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .train {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .land {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 7px;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 5px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .small {
  color: #b2abab;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-right: 5px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .wrap .read .size {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  gap: 4px;
  align-items: center;
  margin-bottom: 10px;
}
.archive .content .container .main-content .search-results .col .bottom-sp .contact-btn {
  border-radius: 4px;
  border: 1px solid #d67400;
  background: #ee8e1c;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  display: block;
  text-align: center;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 16px;
}
.archive .content .container .main-content .page-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .page-info {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .page-info .left {
    display: none;
  }
}
.archive .content .container .main-content .page-info .left .col {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content .page-info .left .col .big {
  font-size: 24px;
}
.archive .content .container .main-content .page-info .right .pagination ul {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .page-info .right .pagination ul {
    justify-content: center;
  }
}
.archive .content .container .main-content .page-info .right .pagination ul li {
  padding: 6px;
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: 0.6px solid #bdbdbd;
  background: #fff;
}
.archive .content .container .main-content .page-info .right .pagination .prev {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive .content .container .main-content .page-info .right .pagination .current {
  color: #ee8e1c;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  border: none;
  background: none;
}
.archive .content .container .main-content .page-info .right .pagination .dots {
  padding: 6px 0;
  border: none;
}
.archive .content .container .main-content .page-info .right .pagination .next {
  display: flex;
  align-items: center;
  gap: 5px;
}
.archive .content .container .main-content .contact {
  margin-bottom: 175px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .contact {
    display: none;
  }
}
.archive .content .container .main-content .contact .top {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px;
  background: #ee8e1c;
  text-align: center;
}
.archive .content .container .main-content .contact .bottom {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff0de;
  padding: 25px;
  width: 100%;
}
.archive .content .container .main-content .contact .bottom .col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.archive .content .container .main-content .contact .bottom .col:first-child {
  margin-bottom: 26px;
}
.archive .content .container .main-content .contact .bottom .col .left {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 50%;
}
.archive .content .container .main-content .contact .bottom .col .left .img {
  width: 36.804px;
  height: 48px;
  flex-shrink: 0;
}
.archive .content .container .main-content .contact .bottom .col .left .read {
  width: 50%;
}
.archive .content .container .main-content .contact .bottom .col .left .read .number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 36px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content .contact .bottom .col .left .read .number {
    font-size: 32px;
  }
}
.archive .content .container .main-content .contact .bottom .col .left .read .text {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  white-space: nowrap;
}
.archive .content .container .main-content .contact .bottom .col .right {
  padding-left: 10px;
}
.archive .content .container .main-content .contact .bottom .col .right .title {
  color: var(--, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive .content .container .main-content .contact .bottom .col .right .text {
  color: var(--, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}
.archive .content .container .main-content .contact .bottom .col .link {
  border-radius: 4px;
  background: #e5902b;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 286px;
  height: 54px;
}
.archive .content .container .main-content .contact .bottom .col .link .icon {
  width: 28px;
  height: 32px;
}
.archive .content .container .main-content .contact .bottom .col .link .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.archive .content .container .main-content .contact .bottom .col .link .text .small {
  font-size: 10px;
}
.archive .content .container .main-content .contact .bottom .col .button {
  height: 54px;
  padding: 13px;
  border-radius: 4px;
  background: #cb9c56;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  gap: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
.archive .content .container .main-content .contact .bottom .col .button .icon {
  width: 21.443px;
  height: 28px;
  flex-shrink: 0;
}
.archive .content .container .main-content .contact .bottom .col .button .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content .contact .bottom .col:nth-child(2) {
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col {
    padding: 10px 0;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .top {
    padding: 0 16px;
  }
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .top .buttons {
    display: none !important;
  }
  .archive .content .container .main-content--rental .search-results .col .top .buttons .sp-btn .icon {
    display: none !important;
  }
}
.archive .content .container .main-content--rental .search-results .col .bottom-pc {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .bottom-pc {
    align-items: center;
    border-bottom: 1px solid #d3d3d3;
    padding: 10px 16px;
  }
}
.archive .content .container .main-content--rental .search-results .col .bottom-pc .read .col {
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .bottom-pc .read .col {
    margin-bottom: 5px;
  }
}
.archive .content .container .main-content--rental .search-results .col .bottom-pc .read--sp {
  align-items: center;
}
.archive .content .container .main-content--rental .search-results .col .bottom-pc .read--sp .col {
  padding: 0 !important;
}
.archive .content .container .main-content--rental .search-results .col .bottom-pc .read .col.col--3 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.archive .content .container .main-content--rental .search-results .col .bottom-pc .read .col.col--3 .item {
  gap: 5px;
  display: flex;
  align-items: center;
}
.archive .content .container .main-content--rental .search-results .col .contact-button {
  display: none;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .contact-button {
    display: block;
  }
}
.archive .content .container .main-content--rental .search-results .col .contact-button .btn {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 4px;
  border: 1px solid #d67400;
  background: #ee8e1c;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 16px;
  display: block;
  width: 100%;
  text-align: center;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table {
  width: 100%;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr:first-child {
  border-top: 1px solid #d3d3d3;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .rooms .table .tr--pc {
    display: none;
  }
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp {
  display: none;
  width: 100%;
  padding: 0 16px;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp:not(.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp:last-child) {
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 768px) {
  .archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp {
    display: flex;
    gap: 5px;
  }
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp td {
  width: 33%;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td--img {
  width: 100px !important;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read {
  width: 57%;
  text-align: left;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .top {
  margin-bottom: 6px;
  padding: 0;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .mid {
  margin-bottom: 6px;
  gap: 4px;
  align-items: baseline;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .mid .price {
  text-align: left;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .bottom .deposit {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .bottom .deposit .span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #333;
  border-radius: 1px;
  background: #d3d3d3;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .bottom .key_money {
  display: flex;
  align-items: center;
  align-items: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .td.read .bottom .key_money .span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #333;
  border-radius: 1px;
  background: #d3d3d3;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .buttons {
  width: 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr--sp .buttons .like img {
  width: 21.111px;
  height: 19px;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .th {
  color: #8d8d8d;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 11%;
  background: #f9f9f9;
  vertical-align: middle;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .th--direction {
  width: 9%;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td {
  width: 13%;
  vertical-align: middle;
  padding: 10px 0;
  text-align: center;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td--direction {
  width: 10%;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td--check {
  width: 5%;
  border-right: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  border-left: 1px solid #c3c3c3;
  background: #ebe9e9;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .img {
  width: 130px;
  height: auto;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .floor {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .price {
  color: #d67400;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .management {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .top {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .top .span {
  padding: 2px 4px;
  background: #868686;
  color: #fff;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .bottom {
  color: #333;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .bottom .span {
  padding: 2px 4px;
  background: #868686;
  color: #fff;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .direction {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .floorplan {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .size {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .consider {
  font-size: 12px;
  padding: 10px 12px;
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  display: flex;
  align-items: center;
  gap: 8px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .consider .icon {
  width: 13px;
  height: 12px;
}
.archive .content .container .main-content--rental .search-results .col .rooms .table .tr .td .link {
  color: #0066c0;
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.single {
  background: #f9f9f9;
}
.single .page-title {
  border-top: 3px solid #86b923;
  background: #fff;
  margin-bottom: 22px;
  /* シャドウ */
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 23.5px 16px;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .single .content .container {
    padding: 0;
  }
}
.single .content .container .main-content--single {
  width: 70%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single {
    width: 100%;
  }
}
.single .content .container .main-content--single .heading {
  border-top: 3px solid #86b923;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 16px 23px;
  margin-bottom: 20px;
}
.single .content .container .main-content--single .heading .title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .heading .title--head {
  margin-bottom: 0;
}
.single .content .container .main-content--single .heading .consider {
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 11.5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.single .content .container .main-content--single .heading .consider .icon {
  width: 16.952px;
  height: 15.257px;
  position: relative;
  bottom: -1px;
}
.single .content .container .main-content--single .heading .consider .text {
  text-shadow: 0px 0.4px 0px #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.single .content .container .main-content--single .title .read {
  color: #000;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.single .content .container .main-content--single .title .read .top {
  display: flex;
  align-items: end;
  gap: 10px;
}
.single .content .container .main-content--single .title .read .top .price {
  color: #ee5757;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .title .contact {
  margin-bottom: 0;
}
.single .content .container .main-content--single .title .contact .btn {
  padding: 11px 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #e5902b;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .title .contact .btn {
    display: none;
  }
}
.single .content .container .main-content--single .title .contact .btn .left .icon {
  width: 26.691px;
  height: 20px;
  margin-bottom: 3px;
}
.single .content .container .main-content--single .title .contact .btn .left .text {
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.5px 6px;
  text-align: center;
  border-radius: 21px;
  background: #c68b54;
}
.single .content .container .main-content--single .title .contact .btn .right .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .title .contact .btn .right .text .big {
  font-size: 16px;
}
.single .content .container .main-content--single .slider-container {
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .slider-container {
    margin: 0 auto 33px;
  }
}
.single .content .container .main-content--single .slider-container .top-row {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  background: #d6d6d6;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .slider-container .top-row {
    margin-bottom: 0;
  }
}
.single .content .container .main-content--single .slider-container .top-row .titlealt {
  position: absolute;
  display: block;
  margin: auto;
  width: 100%;
  height: 36px;
  padding: 9px 16px;
  bottom: 0;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  background: rgba(0, 0, 0, 0.6);
  text-align: left;
}
.single .content .container .main-content--single .slider-container .top-row .prev,
.single .content .container .main-content--single .slider-container .top-row .next {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 55px;
  height: 55px;
  content: "";
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .slider-container .top-row .prev,
  .single .content .container .main-content--single .slider-container .top-row .next {
    width: 40px;
    height: 40px;
  }
}
.single .content .container .main-content--single .slider-container .top-row .prev {
  background: url("../images/prev.svg") no-repeat center center;
  background-size: cover;
  left: 14px;
  z-index: 2;
}
.single .content .container .main-content--single .slider-container .top-row .next {
  background: url("../images/next.svg") no-repeat center center;
  background-size: cover;
  right: 14px;
  z-index: 2;
}
.single .content .container .main-content--single .slider-container .top-row .main-image-wrapper {
  display: inline-block;
}
.single .content .container .main-content--single .slider-container .top-row .main-image-wrapper #counter {
  position: absolute;
  top: 5px;
  left: 5px;
  background: rgba(255, 255, 255, 0.7);
  padding: 3px 6px;
  border-radius: 3px;
  font-size: 14px;
}
.single .content .container .main-content--single .slider-container .top-row #mainImage {
  width: 100%;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .slider-container .top-row #mainImage {
    height: 240px;
  }
}
.single .content .container .main-content--single .slider-container .bottom-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.single .content .container .main-content--single .slider-container .bottom-row .prev,
.single .content .container .main-content--single .slider-container .bottom-row .next {
  position: absolute;
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  width: 28px;
  height: 100%;
  content: "";
  cursor: pointer;
  background: #86b923;
}
.single .content .container .main-content--single .slider-container .bottom-row .prev .img,
.single .content .container .main-content--single .slider-container .bottom-row .next .img {
  width: 10.833px;
  height: 21.667px;
}
.single .content .container .main-content--single .slider-container .bottom-row .prev {
  border-radius: 8px 0px 0px 8px;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .slider-container .bottom-row .prev {
    border-radius: 0;
  }
}
.single .content .container .main-content--single .slider-container .bottom-row .next {
  border-radius: 0 8px 8px 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .slider-container .bottom-row .next {
    border-radius: 0;
  }
}
.single .content .container .main-content--single .slider-container .bottom-row .thumbnails {
  width: calc(100% - 56px);
  overflow: hidden;
  position: relative;
}
.single .content .container .main-content--single .slider-container .bottom-row .thumbnails .thumbnails-inner {
  display: inline-block;
  white-space: nowrap;
  transition: transform 0.5s ease;
}
.single .content .container .main-content--single .slider-container .bottom-row .thumbnails .thumbnail-item {
  width: 100px;
  height: 100px;
  display: inline-block;
}
.single .content .container .main-content--single .slider-container .bottom-row .thumbnails .thumbnail-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
.single .content .container .main-content--single .slider-container .bottom-row .thumbnails .active-thumbnail img {
  outline: 5px solid #86b823;
  outline-offset: -5px;
}
.single .content .container .main-content--single .contact--sp {
  display: none;
  margin: 0 auto 33px !important;
  width: 286px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact--sp {
    display: block;
  }
}
.single .content .container .main-content--single .contact--sp .btn {
  padding: 11px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  background: #e5902b;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
.single .content .container .main-content--single .contact--sp .btn .left .icon {
  width: 26.691px;
  height: 20px;
  margin-bottom: 3px;
}
.single .content .container .main-content--single .contact--sp .btn .left .text {
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 1.5px 6px;
  text-align: center;
  border-radius: 21px;
  background: #c68b54;
}
.single .content .container .main-content--single .contact--sp .btn .right .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .contact--sp .btn .right .text .big {
  font-size: 16px;
}
.single .content .container .main-content--single .property-table {
  font-size: 14px;
}
.single .content .container .main-content--single .information {
  padding: 24px 24px 40px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information {
    padding: 20px 0;
  }
}
.single .content .container .main-content--single .information .heading {
  border-top: none;
  border-left: 7px solid #86b823;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .heading {
    margin: 0 16px 16px;
  }
}
.single .content .container .main-content--single .information .property-table {
  border: 1px solid #d0d0d0;
  border-left: none;
  width: 100%;
  margin-bottom: 60px;
}
.single .content .container .main-content--single .information .property-table--pc {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .property-table--pc {
    display: none;
  }
}
.single .content .container .main-content--single .information .property-table--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .property-table--sp {
    display: block;
  }
}
.single .content .container .main-content--single .information .property-table .tr:not(:last-child) {
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .property-table .tr {
    width: 100%;
  }
}
.single .content .container .main-content--single .information .property-table .tr .th {
  width: 25%;
  background: #f9f9f9;
  border-right: 1px solid #d0d0d0;
  border-left: 1px solid #d0d0d0;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .property-table .tr .th {
    width: 32%;
  }
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .property-table .tr .td {
    width: 47% !important;
  }
}
.single .content .container .main-content--single .information .property-table .tr .th,
.single .content .container .main-content--single .information .property-table .tr .td {
  padding: 12px 8px;
  line-height: normal;
}
.single .content .container .main-content--single .information .contact {
  margin-bottom: 0;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .contact {
    margin: 0 16px;
  }
}
.single .content .container .main-content--single .information .contact .top {
  background: #6d6d6d;
  padding: 15px 10;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}
.single .content .container .main-content--single .information .contact .bottom {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  padding: 25px;
  background: #fff0de;
}
.single .content .container .main-content--single .information .contact .bottom .read {
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .contact .bottom .read {
    flex-direction: column;
    gap: 16px;
  }
}
.single .content .container .main-content--single .information .contact .bottom .read .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single .content .container .main-content--single .information .contact .bottom .read .left .img {
  width: 36.804px;
  height: 48px;
}
.single .content .container .main-content--single .information .contact .bottom .read .left .text {
  color: #333;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .information .contact .bottom .read .left .text .big {
  font-size: 36px;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .contact .bottom .read .left .text .big {
    font-size: 32px;
  }
}
.single .content .container .main-content--single .information .contact .bottom .read .right {
  color: var(--, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .information .contact .bottom .read .right .small {
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}
.single .content .container .main-content--single .information .contact .bottom .contact .btn {
  padding: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  background: #e5902b;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
.single .content .container .main-content--single .information .contact .bottom .contact .btn .left .icon {
  width: 26.691px;
  height: 20px;
  margin-bottom: 3px;
}
.single .content .container .main-content--single .information .contact .bottom .contact .btn .left .text {
  border-radius: 21px;
  background: #c68b54;
  padding: 0 6px;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .information .contact .bottom .contact .btn .right .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .information .contact .bottom .contact .btn .right .text .big {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .information--sale .tr .td {
  width: 30%;
}
.single .content .container .main-content--single .information--sale .tr .th {
  width: 20% !important;
}
.single .content .container .main-content--single .information--sale .simulater {
  display: flex;
  align-items: center;
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information--sale .simulater {
    display: none;
  }
}
.single .content .container .main-content--single .information--sale .simulater .square {
  background: #e5902b;
  width: 1rem;
  height: 1rem;
  display: block;
}
.single .content .container .main-content--single .information--sale .simulater .text {
  color: #106ec7;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .information .agent .inner {
    padding: 0 16px;
  }
}
.single .content .container .main-content--single .information .agent .inner .company {
  margin-bottom: 10px;
}
.single .content .container .main-content--single .information .agent .inner .name {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .information .agent .inner .comment1 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.single .content .container .main-content--single .information .agent .inner .img {
  width: 99px;
  height: 68.588px;
  margin-bottom: 10px;
}
.single .content .container .main-content--single .information .agent .inner .comment2 {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .conditions {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
}
.single .content .container .main-content--single .conditions .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
.single .content .container .main-content--single .conditions .box {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.single .content .container .main-content--single .conditions .box .list .title {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .conditions .box .list .items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 5%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .conditions .box .list .items {
    gap: 10px;
  }
}
.single .content .container .main-content--single .conditions .box .list .items li {
  width: 20%;
  padding-left: 12px;
  position: relative;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .conditions .box .list .items li {
    width: 100%;
  }
}
.single .content .container .main-content--single .conditions .box .list .items li::before {
  position: absolute;
  content: "";
  margin: auto;
  display: block;
  top: 6px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #86b823;
  border-radius: 50%;
}
.single .content .container .main-content--single .property-overview {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
}
.single .content .container .main-content--single .property-overview--sale .simulater {
  display: flex;
  align-items: center;
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview--sale .simulater {
    display: none;
  }
}
.single .content .container .main-content--single .property-overview--sale .simulater .square {
  background: #e5902b;
  width: 1rem;
  height: 1rem;
  display: block;
}
.single .content .container .main-content--single .property-overview--sale .simulater .text {
  color: #106ec7;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview {
    padding: 16px 0;
  }
}
.single .content .container .main-content--single .property-overview .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .heading {
    margin: 0 16px 16px;
  }
}
.single .content .container .main-content--single .property-overview .property-table {
  border: 1px solid #d0d0d0;
  margin-bottom: 60px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table {
    width: 100% !important;
  }
}
.single .content .container .main-content--single .property-overview .property-table--pc {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table--pc {
    display: none;
  }
}
.single .content .container .main-content--single .property-overview .property-table--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table--sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table tbody {
    display: block;
  }
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr {
  display: flex;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr:not(:last-child) {
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table tbody .tr {
    width: 100% !important;
  }
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr .th,
.single .content .container .main-content--single .property-overview .property-table tbody .tr .td {
  padding: 12px 8px;
  text-align: left;
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr .th {
  width: 20%;
  background: #f9f9f9;
  border-right: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table tbody .tr .th {
    width: 32%;
  }
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr .th--left {
  border-left: 1px solid #d0d0d0;
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr .td {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table tbody .tr .td {
    width: 47%;
  }
}
.single .content .container .main-content--single .property-overview .property-table tbody .tr .td--long {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .property-overview .property-table tbody .tr .td--long {
    width: 47%;
  }
}
.single .content .container .main-content--single .property-overview .staff .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
.single .content .container .main-content--single .property-overview .staff .top {
  display: flex;
  margin-bottom: 10px;
  gap: 10px;
}
.single .content .container .main-content--single .property-overview .staff .top .img {
  width: 144px;
  height: 106px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .content .container .main-content--single .property-overview .staff .top .read {
  display: flex;
  flex-direction: column;
}
.single .content .container .main-content--single .property-overview .staff .top .read .company {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 10px;
}
.single .content .container .main-content--single .property-overview .staff .top .read .name {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.single .content .container .main-content--single .property-overview .staff .top .read .text {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .property-overview .staff .bottom {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .facilities {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
}
.single .content .container .main-content--single .facilities .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
.single .content .container .main-content--single .facilities .box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.single .content .container .main-content--single .facilities .box .col {
  width: 20%;
}
.single .content .container .main-content--single .facilities .box .col .img {
  width: 100%;
  margin-bottom: 14px;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 93px;
}
.single .content .container .main-content--single .facilities .box .col .title {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .facilities .area .map iframe {
  width: 100%;
}
.single .content .container .main-content--single .simulation {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .simulation {
    display: none;
  }
}
.single .content .container .main-content--single .simulation .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
.single .content .container .main-content--single .simulation .simulation-box {
  display: flex;
  gap: 14px 10px;
  flex-wrap: wrap;
  flex-direction: row;
}
.single .content .container .main-content--single .simulation .simulation-box .top {
  display: flex;
}
.single .content .container .main-content--single .simulation .simulation-box .top .row {
  padding: 10px;
  width: 25%;
}
.single .content .container .main-content--single .simulation .simulation-box .top .row .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.single .content .container .main-content--single .simulation .simulation-box .top .row .input {
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #f3f3f3;
  color: #787878;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 11px;
  width: 100%;
}
.single .content .container .main-content--single .simulation .simulation-box .mid {
  display: flex;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row {
  width: 25%;
  padding: 10px;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row .input {
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #f3f3f3;
  color: #787878;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 11px;
  width: 100%;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row .wrap {
  display: flex;
  gap: 4px;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row .wrap .input {
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #f3f3f3;
  color: #787878;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 11px;
  width: 100%;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row .wrap .button .btn .icon {
  width: 16px;
  height: 12px;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row--white .input {
  background: #fff;
}
.single .content .container .main-content--single .simulation .simulation-box .mid .row--white .wrap .input {
  background: #fff;
}
.single .content .container .main-content--single .simulation .simulation-box .bottom {
  display: flex;
  align-items: center;
  gap: 50px;
}
.single .content .container .main-content--single .simulation .simulation-box .bottom .row {
  border-radius: 4px;
  background: #86b923;
  width: 190px;
  padding: 10px;
}
.single .content .container .main-content--single .simulation .simulation-box .bottom .row .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .simulation .simulation-box .bottom .row .inner {
  color: #e5902b;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 16.8px */
  padding: 11px;
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #fff;
  text-align: center;
}
.single .content .container .main-content--single .simulation .simulation-box .bottom .read {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  /* 14.4px */
}
.single .content .container .main-content--single .simulation--sale .row {
  width: 33% !important;
  padding: 10px;
}
.single .content .container .main-content--single .simulation--sale .row .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 8px;
}
.single .content .container .main-content--single .simulation--sale .row .input {
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #f3f3f3;
  color: #787878;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 11px;
  width: 100%;
}
.single .content .container .main-content--single .simulation--sale .row .wrap {
  display: flex;
  gap: 4px;
}
.single .content .container .main-content--single .simulation--sale .row .wrap .input {
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #f3f3f3;
  color: #787878;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding: 11px;
  width: 100%;
}
.single .content .container .main-content--single .simulation--sale .row .wrap .button .btn .icon {
  width: 16px;
  height: 12px;
}
.single .content .container .main-content--single .simulation--sale .row--white .input {
  background: #fff;
}
.single .content .container .main-content--single .simulation--sale .row--white .wrap .input {
  background: #fff;
}
.single .content .container .main-content--single .simulation--sale .row--green {
  border-radius: 4px;
  background: #86b923;
  width: 190px;
  padding: 10px;
}
.single .content .container .main-content--single .simulation--sale .row--green .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .simulation--sale .row--green .inner {
  color: #e5902b;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  /* 16.8px */
  padding: 11px;
  border-radius: 2px;
  border: 0.6px solid #b0b0b0;
  background: #fff;
  text-align: center;
}
.single .content .container .main-content--single .simulation--sale .mid {
  width: 100%;
}
.single .content .container .main-content--single .simulation--sale .mid .row {
  width: 33% !important;
}
.single .content .container .main-content--single .simulation--sale .mid .row--white {
  width: 33% !important;
}
.single .content .container .main-content--single .recommended-properties {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
}
.single .content .container .main-content--single .recommended-properties .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
.single .content .container .main-content--single .recommended-properties .property-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.single .content .container .main-content--single .recommended-properties .property-list .property-item {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.single .content .container .main-content--single .recommended-properties .property-list .property-item .property-image .img {
  height: 120px;
  -o-object-fit: cover;
     object-fit: cover;
}
.single .content .container .main-content--single .recommended-properties .property-list .property-item .property-info .price {
  color: #555657;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 10px;
}
.single .content .container .main-content--single .recommended-properties .property-list .property-item .property-info .access {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .recommended-properties .property-list .property-item .property-info .name {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .recommended-properties .property-list .property-item .property-info .room-number {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .contact-form {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
  /*============================
            #email
            ============================*/
  /*============================
            #phone
            ============================*/
  /*============================
            #message
            ============================*/
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form {
    padding: 16px 0;
  }
}
.single .content .container .main-content--single .contact-form .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .heading {
    margin: 0 16px 16px;
  }
}
.single .content .container .main-content--single .contact-form .step-navigation {
  display: flex;
  align-items: center;
  background: url("../images/contact-bg.png") no-repeat center center;
  background-size: contain;
  padding: 9px 14px;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .step-navigation {
    background: url("../images/contact-bg-sp.png") no-repeat center center;
    background-size: contain;
  }
}
.single .content .container .main-content--single .contact-form .step-navigation--2 {
  background: url("../images/contact2.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .step-navigation--2 {
    background: url("../images/contact2-sp.png") no-repeat center center;
    background-size: contain;
  }
}
.single .content .container .main-content--single .contact-form .step-navigation .step {
  width: 33%;
}
.single .content .container .main-content--single .contact-form .step-navigation .step:not(:first-child) {
  padding-left: 30px;
}
.single .content .container .main-content--single .contact-form .table {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .table tbody {
    width: 320px;
  }
}
.single .content .container .main-content--single .contact-form .table .tr {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .table .tr {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }
}
.single .content .container .main-content--single .contact-form .table .tr:first-child {
  border-top: 1px solid #d0d0d0;
}
.single .content .container .main-content--single .contact-form .table .tr .th {
  width: 25%;
  padding: 12px 8px;
  text-align: left;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .table .tr .th {
    width: 100%;
    border-bottom: 1px solid #d0d0d0;
  }
}
.single .content .container .main-content--single .contact-form .table .tr .th .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.single .content .container .main-content--single .contact-form .table .tr .th .label .required {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 5px;
  background: #e5902b;
}
.single .content .container .main-content--single .contact-form .table .tr .th .label .optional {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 5px;
  background: #a9a9a9;
}
.single .content .container .main-content--single .contact-form .table .tr .td {
  background: #fff;
  padding: 12px 8px;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .table .tr .td {
    width: 100%;
  }
}
.single .content .container .main-content--single .contact-form .table .tr .td .input {
  padding: 6px 9px;
  border-radius: 4px;
  border: 0.6px solid #d3d3d3;
  width: 100%;
}
.single .content .container .main-content--single .contact-form .table .tr .td .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact-form .table .tr .td .checkbox-group {
    flex-direction: column;
  }
  .single .content .container .main-content--single .contact-form .table .tr .td .checkbox-group .wpcf7-list-item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.single .content .container .main-content--single .contact-form .table .tr .td .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100% !important;
}
.single .content .container .main-content--single .contact-form .table .tr .td .checkbox-group input {
  width: 14px;
  height: 14px;
}
.single .content .container .main-content--single .contact-form .table .tr .td .textarea {
  border-radius: 4px;
  border: 0.6px solid #d3d3d3;
  padding: 12px 8px;
  min-width: 100%;
  min-height: 100px;
}
.single .content .container .main-content--single .contact-form .table .tr .td .textarea::-moz-placeholder {
  color: #b1b1b1;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .contact-form .table .tr .td .textarea::placeholder {
  color: #b1b1b1;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.single .content .container .main-content--single .contact-form .wpcf7-list-item {
  margin: 0 0 1rem 1rem !important;
}
.single .content .container .main-content--single .contact-form .wpcf7-list-item label {
  width: 100% !important;
}
.single .content .container .main-content--single .contact-form .form-submit button {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 14px;
  display: block;
  width: 188px;
  margin: 0 auto;
  border-radius: 4px;
  background: #e5902b;
}
.single .content .container .main-content--single .contact {
  margin-bottom: 175px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact {
    margin: 0 16px 33px;
  }
}
.single .content .container .main-content--single .contact .top {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 15px;
  background: #6d6d6d;
  text-align: center;
}
.single .content .container .main-content--single .contact .bottom {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff0de;
  padding: 25px;
}
.single .content .container .main-content--single .contact .bottom .col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact .bottom .col {
    flex-direction: column;
    gap: 10px;
  }
}
.single .content .container .main-content--single .contact .bottom .col:first-child {
  margin-bottom: 26px;
}
.single .content .container .main-content--single .contact .bottom .col .left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.single .content .container .main-content--single .contact .bottom .col .left .img {
  width: 36.804px;
  height: 48px;
  flex-shrink: 0;
}
.single .content .container .main-content--single .contact .bottom .col .left .read .number {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 36px;
}
.single .content .container .main-content--single .contact .bottom .col .left .read .text {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .contact .bottom .col .right {
  padding-left: 10px;
}
.single .content .container .main-content--single .contact .bottom .col .right .title {
  color: var(--, #333);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact .bottom .col .right .title {
    margin-bottom: 0;
  }
}
.single .content .container .main-content--single .contact .bottom .col .right .text {
  color: var(--, #333);
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 350;
  line-height: normal;
}
.single .content .container .main-content--single .contact .bottom .col .link {
  border-radius: 4px;
  background: #e5902b;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 286px;
  height: 54px;
}
.single .content .container .main-content--single .contact .bottom .col .link .icon {
  width: 28px;
  height: 32px;
}
.single .content .container .main-content--single .contact .bottom .col .link .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.single .content .container .main-content--single .contact .bottom .col .link .text .small {
  font-size: 10px;
}
.single .content .container .main-content--single .contact .bottom .col .button {
  height: 54px;
  padding: 13px;
  border-radius: 4px;
  background: #cb9c56;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  gap: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .single .content .container .main-content--single .contact .bottom .col .button {
    display: none;
  }
}
.single .content .container .main-content--single .contact .bottom .col .button .icon {
  width: 21.443px;
  height: 28px;
  flex-shrink: 0;
}
.single .content .container .main-content--single .contact .bottom .col .button .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.single .content .container .main-content--single .contact .bottom .col:nth-child(2) {
  gap: 20px;
}
.single .content .container .main-content--single .contact--sale {
  margin-bottom: 60px;
}

.common {
  background: #f9f9f9;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .common .container {
    padding: 0;
  }
}
.common .container .title {
  margin-bottom: 22px;
  padding: 20px 16px 23px;
  border-top: 3px solid #86b923;
  background: #fff;
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* シャドウ */
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.common .container .content {
  display: flex;
  gap: 40px;
}
.common .container .content .sidebar {
  margin-bottom: 2rem;
}
.common .container .content .sidebar .contact {
  display: none;
}
.common .container .content .main-content {
  width: 70%;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content {
    width: 100% !important;
  }
}
.common .container .content .main-content .heading {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 8px 10px;
  border-left: 7px solid #86b823;
  margin-bottom: 36px;
}
.common .container .content .main-content .read {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}
.common .container .content .main-content .company-overview {
  margin-bottom: 50px;
}
.common .container .content .main-content .company-overview .company-table {
  width: 100%;
}
.common .container .content .main-content .company-overview .company-table .tr {
  padding: 16px 0;
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #d3d3d3;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content .company-overview .company-table .tr {
    gap: 14px;
    flex-direction: column;
  }
}
.common .container .content .main-content .company-overview .company-table .tr .th {
  width: 200px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content .company-overview .company-table .tr .th {
    leading-trim: both;
    text-edge: cap;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    width: 100%;
  }
}
.common .container .content .main-content .company-overview .company-table .tr .th,
.common .container .content .main-content .company-overview .company-table .tr .td {
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content .company-overview .company-table .tr .th,
  .common .container .content .main-content .company-overview .company-table .tr .td {
    line-height: 1.25;
    color: #333;
    leading-trim: both;
    text-edge: cap;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
  }
}
.common .container .content .main-content .map .access {
  height: 421px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content .map .access {
    height: 327px;
  }
}
.common .container .content .main-content--sitemap {
  padding: 0;
}
.common .container .content .main-content--sitemap .box {
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #d4d4d4;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.common .container .content .main-content--sitemap .box .top {
  display: flex;
}
.common .container .content .main-content--sitemap .box .top .col {
  width: 50%;
}
.common .container .content .main-content--sitemap .box .top .col .sub-title {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 8px;
  border-bottom: 1px solid #d3d3d3;
}
.common .container .content .main-content--sitemap .box .top .col .inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.common .container .content .main-content--sitemap .box .top .col .inner .link {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.common .container .content .main-content--sitemap .box .top .col .inner .link .icon {
  height: 11px;
  width: 7px;
}
.common .container .content .main-content--sitemap .box .top .col .inner .link .text {
  color: #0066c0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.common .container .content .main-content--sitemap .box .mid .col .sub-title {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 8px;
  border-bottom: 1px solid #d3d3d3;
}
.common .container .content .main-content--sitemap .box .mid .col .inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.common .container .content .main-content--sitemap .box .mid .col .inner .link {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.common .container .content .main-content--sitemap .box .mid .col .inner .link .icon {
  height: 11px;
  width: 7px;
}
.common .container .content .main-content--sitemap .box .mid .col .inner .link .text {
  color: #0066c0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.common .container .content .main-content--sitemap .box .bottom .col .sub-title {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-bottom: 8px;
  border-bottom: 1px solid #d3d3d3;
}
.common .container .content .main-content--sitemap .box .bottom .col .inner {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.common .container .content .main-content--sitemap .box .bottom .col .inner .link {
  width: 48%;
  display: flex;
  align-items: center;
  gap: 4px;
}
.common .container .content .main-content--sitemap .box .bottom .col .inner .link .icon {
  height: 11px;
  width: 7px;
}
.common .container .content .main-content--sitemap .box .bottom .col .inner .link .text {
  color: #0066c0;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.common .container .content .main-content .sidebar {
  margin-bottom: 2rem;
}
.common .container .content .main-content .sidebar .contact {
  display: none;
}
.common .container .content .main-content--history {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.common .container .content .main-content--history .contact-btn {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14.5px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.common .container .content .main-content--history .contact-btn button {
  background: #fff;
}
.common .container .content .main-content--history .contact-btn .img {
  width: 24px;
  height: 24px;
}
.common .container .content .main-content--history .contact-btn .read {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.common .container .content .main-content--history .contact-btn .read .small {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--history .posts .col {
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  background: #fff;
  /* インナーシャドウ */
  box-shadow: inset 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
}
.common .container .content .main-content--history .posts .col:not(:last-child) {
  margin-bottom: 20px;
}
.common .container .content .main-content--history .posts .col .wrap {
  display: flex;
  align-items: center;
  padding: 9px 8px;
}
.common .container .content .main-content--history .posts .col .wrap .link {
  width: 20%;
}
.common .container .content .main-content--history .posts .col .wrap .read1 {
  width: 35%;
  padding: 0 8px;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner1 {
  display: flex;
  align-items: center;
  gap: 7px;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner1 .cat {
  border-radius: 20px;
  background: #e9e9e9;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 10px;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner1 .title {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  box-shadow: none;
  background: inherit;
  border-top: none;
  padding: 0;
  margin-bottom: 0;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner2 {
  color: #ed6130;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner2 .span {
  font-size: 14px;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner3 {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.common .container .content .main-content--history .posts .col .wrap .read1 .inner4 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--history .posts .col .wrap .read2 {
  width: 25%;
}
.common .container .content .main-content--history .posts .col .wrap .read2 .table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.common .container .content .main-content--history .posts .col .wrap .read2 .table .tr {
  display: flex;
  gap: 12px;
  align-items: center;
}
.common .container .content .main-content--history .posts .col .wrap .read2 .table .th {
  color: #7b7b7b;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--history .posts .col .wrap .read2 .table .td {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--history .posts .col .wrap .buttons {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .consider {
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11.5px 12px;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .consider .icon {
  width: 13px;
  height: 12px;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .consider .text {
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .contect-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #e5902b;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 11.5px 6px;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .contect-single .icon {
  width: 16.016px;
  height: 12px;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .contect-single .text {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.common .container .content .main-content--history .posts .col .wrap .buttons .contect-single .small {
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 21px;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 3px;
}
.common .container .content .main-content--history .posts .col .check {
  border-right: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  border-left: 1px solid #c3c3c3;
  background: #ebe9e9;
  padding: 7px;
  display: flex;
  align-items: center;
}
.common .container .content .main-content--history .posts .col .check .input {
  border-radius: 2px;
  border: 1px solid #c1c1c1;
  background: #fff;
  border: none;
}
.common .container .content .main-content--consider {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.common .container .content .main-content--consider .contact-btn {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14.5px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.common .container .content .main-content--consider .contact-btn button {
  background: #fff;
}
.common .container .content .main-content--consider .contact-btn .img {
  width: 24px;
  height: 24px;
}
.common .container .content .main-content--consider .contact-btn .read {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
}
.common .container .content .main-content--consider .contact-btn .read .small {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--consider .box {
  display: flex;
  align-items: end;
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--consider .box .read {
  display: flex;
  align-items: baseline;
  margin-bottom: 0;
}
.common .container .content .main-content--consider .box .read .green {
  color: #86b923;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--consider .box .read .black {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--consider .box .contact-btn {
  border-radius: 4px;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14.5px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.common .container .content .main-content--consider .box .contact-btn .img {
  width: 24px;
  height: 24px;
}
.common .container .content .main-content--consider .box .contact-btn .read {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}
.common .container .content .main-content--consider .box .contact-btn .read .small {
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--consider .posts .col {
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  background: #fff;
  /* インナーシャドウ */
  box-shadow: inset 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1);
  display: flex;
}
.common .container .content .main-content--consider .posts .col:not(:last-child) {
  margin-bottom: 20px;
}
.common .container .content .main-content--consider .posts .col .wrap {
  display: flex;
  align-items: center;
  padding: 9px 8px;
}
.common .container .content .main-content--consider .posts .col .wrap .link {
  width: 20%;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 {
  width: 35%;
  padding: 0px 8px;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner1 {
  display: flex;
  align-items: center;
  gap: 7px;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner1 .cat {
  border-radius: 20px;
  background: #e9e9e9;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 10px;
  width: 120px;
  text-align: center;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner1 .title {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  box-shadow: none;
  background: inherit;
  border-top: none;
  padding: 0;
  margin-bottom: 0;
  max-width: 100px;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner2 {
  color: #ed6130;
  font-family: "Noto Sans JP";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 16px;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner2 .span {
  font-size: 14px;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner3 {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.common .container .content .main-content--consider .posts .col .wrap .read1 .inner4 {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--consider .posts .col .wrap .read2 {
  width: 25%;
}
.common .container .content .main-content--consider .posts .col .wrap .read2 .table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.common .container .content .main-content--consider .posts .col .wrap .read2 .table .tr {
  display: flex;
  gap: 12px;
  align-items: center;
}
.common .container .content .main-content--consider .posts .col .wrap .read2 .table .th {
  color: #7b7b7b;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--consider .posts .col .wrap .read2 .table .td {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .consider {
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11.5px 12px;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .consider .icon {
  width: 13px;
  height: 12px;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .consider .text {
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .contect-single {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #e5902b;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  padding: 11.5px 6px;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .contect-single .icon {
  width: 16.016px;
  height: 12px;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .contect-single .text {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.common .container .content .main-content--consider .posts .col .wrap .buttons .contect-single .small {
  color: #fff;
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 21px;
  background: rgba(0, 0, 0, 0.1);
  padding: 0 3px;
}
.common .container .content .main-content--consider .posts .col .check {
  border-right: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
  border-left: 1px solid #c3c3c3;
  background: #ebe9e9;
  padding: 7px;
  display: flex;
  align-items: center;
}
.common .container .content .main-content--consider .posts .col .check .input {
  border-radius: 2px;
  border: 1px solid #c1c1c1;
  background: #fff;
  border: none;
}
.common .container .content .main-content--voices {
  padding: 0;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices {
    margin-bottom: 33px;
  }
}
.common .container .content .main-content--voices .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.common .container .content .main-content--voices .pagination a {
  padding: 7px 8px;
  border: 0.6px solid #bdbdbd;
  background: #fff;
  padding: 7px 8px;
}
.common .container .content .main-content--voices .pagination .prev {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--voices .pagination .active {
  color: #86b923;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none !important;
  background: none !important;
}
.common .container .content .main-content--voices .pagination .dots {
  border: none;
  padding: 7px 0;
}
.common .container .content .main-content--voices .pagination .next {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--voices .pagination--bottom {
  justify-content: center;
}
.common .container .content .main-content--voices .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .box {
    margin-bottom: 5px;
    justify-content: center;
  }
}
.common .container .content .main-content--voices .box .read {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .box .read {
    display: none;
  }
}
.common .container .content .main-content--voices .box .read .green {
  color: #86b923;
  font-size: 24px;
}
.common .container .content .main-content--voices .box .read .black {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--voices .box .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.common .container .content .main-content--voices .box .pagination a {
  padding: 7px 8px;
  border: 0.6px solid #bdbdbd;
  background: #fff;
  padding: 7px 8px;
}
.common .container .content .main-content--voices .box .pagination .prev {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--voices .box .pagination .current {
  color: #ee8e1c;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--voices .box .pagination .dots {
  border: none;
  padding: 7px 0;
}
.common .container .content .main-content--voices .box .pagination .next {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--voices .posts .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 16px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .posts .box {
    gap: 10px;
  }
}
.common .container .content .main-content--voices .posts .box .col {
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  background: #fff;
  width: 31%;
  /* インナーシャドウ */
  box-shadow: inset 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .posts .box .col {
    width: 48%;
  }
}
.common .container .content .main-content--voices .posts .box .col .title {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  border-top: none;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 170%;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .posts .box .col .title {
    margin-bottom: 0;
  }
}
.common .container .content .main-content--voices .posts .box .col .img {
  margin-bottom: 5px;
}
.common .container .content .main-content--voices .posts .box .col .read {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}
.common .container .content .main-content--voices .posts .box .col .bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .posts .box .col .bottom {
    flex-direction: column;
    align-items: baseline;
    gap: 10px;
  }
}
.common .container .content .main-content--voices .posts .box .col .bottom .left .text {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
}
.common .container .content .main-content--voices .posts .box .col .bottom .left .icon {
  width: 73px;
  height: 50px;
}
.common .container .content .main-content--voices .posts .box .col .bottom .right .link {
  color: #0060b8;
  text-align: right;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--voices .pagination--bottom {
    margin-bottom: 23px;
  }
}
.common .container .content .main-content--voices .single-post {
  padding: 40px 24px;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 40px;
}
.common .container .content .main-content--voices .single-post .title {
  border-top: none;
  padding: 0;
  box-shadow: none;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}
.common .container .content .main-content--voices .single-post .area {
  color: #858585;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 50px;
}
.common .container .content .main-content--voices .single-post .read {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--voices .single-post .bottom {
  display: flex;
  gap: 20px;
}
.common .container .content .main-content--voices .single-post .bottom .img {
  width: 86px;
  height: 86px;
}
.common .container .content .main-content--voices .single-post .bottom .read {
  margin-bottom: 0;
}
.common .container .content .main-content--voices .single-post .bottom .read .name {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 4.5px 4px;
  border-left: 3px solid #86b923;
  margin-bottom: 14px;
}
.common .container .content .main-content--voices .single-post .bottom .read .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--voices .back {
  display: block;
  text-align: center;
  border-radius: 4px;
  background: #86b823;
  padding: 14px;
  width: 188px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.common .container .content .main-content--blog {
  padding: 0 10px 33px;
}
.common .container .content .main-content--blog .box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .box {
    margin-bottom: 5px;
    justify-content: center;
  }
}
.common .container .content .main-content--blog .box .read {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .box .read {
    display: none;
  }
}
.common .container .content .main-content--blog .box .read .green {
  color: #86b923;
  font-size: 24px;
}
.common .container .content .main-content--blog .box .read .black {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--blog .box .pagination {
  display: flex;
  align-items: center;
  gap: 5px;
}
.common .container .content .main-content--blog .box .pagination a {
  padding: 7px 8px;
  border: 0.6px solid #bdbdbd;
  background: #fff;
  padding: 7px 8px;
}
.common .container .content .main-content--blog .box .pagination .prev {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--blog .box .pagination .active {
  color: #86b923;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border: none;
  background: none;
}
.common .container .content .main-content--blog .box .pagination .dots {
  border: none;
  padding: 7px 0;
}
.common .container .content .main-content--blog .box .pagination .next {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--blog .box .pagination--bottom {
  justify-content: center;
}
.common .container .content .main-content--blog .tags {
  margin-bottom: 20px;
}
.common .container .content .main-content--blog .tags .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.common .container .content .main-content--blog .tags .wrap .tag {
  border-radius: 32px;
  background: #86b923;
  color: #fff;
  padding: 4.5px 10px;
}
.common .container .content .main-content--blog .posts .box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: flex-start;
}
.common .container .content .main-content--blog .posts .box .col {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  background: #fff;
  width: 31%;
  box-shadow: inset 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .posts .box .col {
    width: 47%;
  }
}
.common .container .content .main-content--blog .posts .box .col .cat {
  border-radius: 0px 0px 0px 8px;
  background: #86b923;
  position: absolute;
  top: 0;
  right: 0;
  color: #ffffff;
  padding: 10px 20px;
}
.common .container .content .main-content--blog .posts .box .col .img {
  background: #d9d9d9;
  width: 100%;
  height: 186px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .posts .box .col .img {
    height: 123px;
  }
}
.common .container .content .main-content--blog .posts .box .col h3.sub-heading {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 20px 20px 0;
}
.common .container .content .main-content--blog .posts .box .col .read {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 170%;
  padding: 10px 20px 0;
  border-top: none;
  box-shadow: none;
}
.common .container .content .main-content--blog .posts .box .col .date {
  color: #7a7c7a;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 5px 20px 20px;
}
.common .container .content .main-content--blog .pagination--bottom {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.common .container .content .main-content--blog .pagination--bottom a {
  padding: 7px 8px;
  border: 0.6px solid #bdbdbd;
  background: #fff;
  padding: 7px 8px;
}
.common .container .content .main-content--blog .pagination--bottom a.active {
  background: none;
  border: none;
  color: #ee8e1c;
}
.common .container .content .main-content--blog .pagination--bottom .prev {
  color: #515151;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--blog .pagination--bottom .current {
  color: #ee8e1c;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--blog .pagination--bottom .dots {
  border: none;
  padding: 7px 0;
}
.common .container .content .main-content--blog .pagination--bottom .next {
  color: #515151;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
.common .container .content .main-content--blog .single-post {
  background: #fff;
  padding: 40px 24px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .single-post {
    padding: 20px 10px;
  }
}
.common .container .content .main-content--blog .single-post .title {
  border-top: none;
  padding: 0;
  box-shadow: none;
  margin-bottom: 24px;
}
.common .container .content .main-content--blog .single-post .description {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .single-post .description {
    margin-bottom: 20px;
  }
}
.common .container .content .main-content--blog .single-post .description .date {
  color: #858585;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--blog .single-post .description .cat {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding: 2px 10px;
  border-radius: 32px;
  background: #86b923;
}
.common .container .content .main-content--blog .single-post .img {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--blog .single-post .img {
    margin-bottom: 20px;
  }
}
.common .container .content .main-content--blog .single-post .read {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content .main-content--blog .back {
  border-radius: 4px;
  background: #86b823;
  margin: 40px auto;
  display: block;
  text-align: center;
  padding: 14px;
  width: 188px;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.common .container .content .main-content--blog .tags {
  margin-bottom: 20px;
}
.common .container .content .main-content--blog .tags .heading {
  padding: 4px;
}
.common .container .content .main-content--blog .tags .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.common .container .content .main-content--blog .tags .wrap .tag {
  border-radius: 32px;
  background: #86b923;
  color: #fff;
  padding: 4.5px 10px;
}
.common .container .content .main-content--policy {
  padding-bottom: 300px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--policy {
    padding: 0 10px !important;
  }
}
.common .container .content .main-content--policy .description {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--policy .description--bold {
    font-weight: 700;
  }
  .common .container .content .main-content--policy .description--bold .bold {
    font-weight: 700;
  }
}
.common .container .content .main-content--policy .inner {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--policy .inner {
    padding: 24px 10px;
  }
}
.common .container .content .main-content--policy .inner .col .title {
  padding: 0;
  border-top: none;
  box-shadow: none;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}
.common .container .content .main-content--policy .inner .col .read {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .common .container .content .main-content--policy .inner .col .read--indent {
    text-indent: -1rem;
    padding-left: 1rem;
  }
}
.common .container .content .main-content--policy .bold {
  color: #000;
  font-weight: 700;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.common .container .content--filter .box {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  background: #fff;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.common .container .content--filter .box .col .area {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 14px;
}
.common .container .content--filter .box .col .wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 29px;
}
.common .container .content--filter .box .col .wrap .link {
  width: 60px;
  color: #106ec7;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.contact-page {
  background: #f9f9f9;
}
@media screen and (max-width: 768px) {
  .contact-page {
    padding: 30px 0;
  }
}
.contact-page .content {
  display: flex;
  gap: 40px;
}
.contact-page .content .main-content {
  width: 100%;
}
.contact-page .content .sidebar {
  margin-bottom: 2rem;
}
.contact-page .content .sidebar .contact {
  display: none;
}
.contact-page .content .property-info-table {
  width: 100%;
  border: 1px solid #d3d3d3;
  margin-bottom: 20px;
}
.contact-page .content .property-info-table .tr {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact-page .content .property-info-table .tr {
    width: 100%;
  }
}
.contact-page .content .property-info-table .tr .th {
  width: 33%;
  padding: 22.5px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-bottom: 1px solid #d3d3d3;
}
.contact-page .content .property-info-table .tr .th:not(:last-child) {
  border-right: 1px solid #d3d3d3;
}
.contact-page .content .property-info-table .tr .td {
  width: 33%;
  padding: 22.5px;
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #fff;
}
.contact-page .content .property-info-table .tr .td:not(:last-child) {
  border-right: 1px solid #d3d3d3;
}
.contact-page .content .contact-form {
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  padding: 24px;
  margin-bottom: 60px;
  /*============================
                      #email
                      ============================*/
  /*============================
                      #phone
                      ============================*/
  /*============================
                      #message
                      ============================*/
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form {
    padding: 16px 0;
  }
}
.contact-page .content .contact-form .heading {
  border-top: none;
  border-left: 7px solid #86b823 !important;
  padding: 7px 10px 8px;
  margin-bottom: 24px;
  box-shadow: none;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .heading {
    margin: 0 16px 16px;
  }
}
.contact-page .content .contact-form .step-navigation {
  display: flex;
  align-items: center;
  background: url("../images/contact-bg.png") no-repeat center center;
  background-size: contain;
  padding: 9px 14px;
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .step-navigation {
    background: url("../images/contact-bg-sp.png") no-repeat center center;
    background-size: contain;
  }
}
.contact-page .content .contact-form .step-navigation--2 {
  background: url("../images/contact2.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .step-navigation--2 {
    background: url("../images/contact2-sp.png") no-repeat center center;
    background-size: contain;
  }
}
.contact-page .content .contact-form .step-navigation--3 {
  background: url("../images/contact3.png") no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .step-navigation--3 {
    background: url("../images/contact3-sp.png") no-repeat center center;
    background-size: contain;
  }
}
.contact-page .content .contact-form .step-navigation .step {
  width: 33%;
}
.contact-page .content .contact-form .step-navigation .step:not(:first-child) {
  padding-left: 30px;
}
.contact-page .content .contact-form .text {
  text-align: center;
  line-height: 1.5;
}
.contact-page .content .contact-form .table {
  width: 100%;
  margin-bottom: 20px;
}
.contact-page .content .contact-form .table .tr {
  display: flex;
  align-items: center;
  background: #f9f9f9;
  border-bottom: 1px solid #d0d0d0;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .table .tr {
    width: auto;
    flex-direction: column;
  }
}
.contact-page .content .contact-form .table .tr:first-child {
  border-top: 1px solid #d0d0d0;
}
.contact-page .content .contact-form .table .tr .th {
  width: 25%;
  padding: 12px 8px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .table .tr .th {
    width: 100%;
    text-align: left;
  }
}
.contact-page .content .contact-form .table .tr .th .label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-page .content .contact-form .table .tr .th .label .required {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 5px;
  background: #e5902b;
}
.contact-page .content .contact-form .table .tr .th .label .optional {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 5px;
  background: #a9a9a9;
}
.contact-page .content .contact-form .table .tr .td {
  background: #fff;
  padding: 12px 8px;
  width: 75%;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .table .tr .td {
    width: 100%;
  }
}
.contact-page .content .contact-form .table .tr .td .input {
  padding: 6px 9px;
  border-radius: 4px;
  border: 0.6px solid #d3d3d3;
  width: 100%;
}
.contact-page .content .contact-form .table .tr .td .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.contact-page .content .contact-form .table .tr .td .checkbox-group label {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 45%;
}
.contact-page .content .contact-form .table .tr .td .checkbox-group input {
  width: 14px;
  height: 14px;
}
.contact-page .content .contact-form .table .tr .td .textarea {
  border-radius: 4px;
  border: 0.6px solid #d3d3d3;
  padding: 12px 8px;
  min-width: 100%;
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  .contact-page .content .contact-form .table .tr .td .textarea {
    width: 100%;
  }
}
.contact-page .content .contact-form .table .tr .td .textarea::-moz-placeholder {
  color: #b1b1b1;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-page .content .contact-form .table .tr .td .textarea::placeholder {
  color: #b1b1b1;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.contact-page .content .contact-form .form-submit button {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 14px;
  display: block;
  width: 188px;
  margin: 0 auto;
  border-radius: 4px;
  background: #e5902b;
}
.contact-page .content .contact-form input.wpcf7-form-control.wpcf7-submit.has-spinner {
  border-radius: 4px;
  background: #e5902b;
  color: #fff;
  display: block;
  width: 180px;
  height: 40px;
  margin: 0 auto;
}
.wpcf7-list-item label {
  width: 100% !important;
  line-height: 1.5;
}

.sidebar {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar .sidebar-btn button {
  padding: 10px 10px;
  border-radius: 6.75px;
  border: 1.688px solid #71a213;
  background: #86b823;
  box-shadow: 0px 1.688px 3.375px 0px rgba(0, 0, 0, 0.25), 0px -4px 0px 0px rgba(0, 0, 0, 0.15) inset;
  color: #fff;
  text-align: center;
}
.sidebar .contact {
  padding: 20px 24px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sidebar .contact .btn {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #ee8e1c;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  justify-content: center;
  padding: 16px 40px;
  width: 100%;
}
.sidebar .contact .btn .img {
  width: 19.308px;
  height: 14.468px;
}
.sidebar .contact .btn .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.sidebar .contact .read .top {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.sidebar .contact .read .bottom {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.sidebar .profile {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}
.sidebar .profile .top {
  background-color: #dadada;
  height: 170px;
  align-self: stretch;
}
.sidebar .profile .bottom {
  padding: 20px 12px;
  border-radius: 4px;
  border: 1px solid #f9f9f9;
  background: #fff;
  /* インナーシャドウ */
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
.sidebar .profile .bottom .heading {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.sidebar .profile .bottom .read {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}
.sidebar .nav {
  padding: 20px 20px 0 0;
  background: #fff;
}
.sidebar .nav .box .col {
  padding: 12px;
  border-bottom: 1px solid #d3d3d3;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}
.sidebar .nav .box .col::before {
  position: absolute;
  background: url("../images/arrow-black.png") no-repeat;
  width: 5px;
  height: 10px;
  background-size: cover;
  content: "";
  margin: auto;
  display: block;
  top: 0;
  bottom: 0;
  right: 12px;
}
.sidebar .nav .box .col .icon {
  width: 24px;
  height: 24px;
}
.sidebar .news {
  margin-top: 20px;
  padding: 20px 16px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
}
.sidebar .news .heading {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
}
.sidebar .news .box .col {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-bottom: 1px solid #c4c4c4;
}
.sidebar .news .box .col .top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar .news .box .col .top .date {
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.sidebar .news .box .col .top .new {
  border-radius: 20px;
  background: #929292;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  padding: 3.5px 8px;
}
.sidebar .news .box .col .read {
  color: #333;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.sidebar .information {
  margin-top: 10px;
  padding: 20px 16px;
  box-shadow: 0px -3.4px 0px 0px rgba(0, 0, 0, 0.1) inset;
  border-radius: 8px;
  background: #fff;
}
.sidebar .information .heading {
  margin-bottom: 16px;
  color: #333;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.sidebar .information .box .col {
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-bottom: 1px solid #c4c4c4;
}
.sidebar .information .box .col .date {
  color: #333;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
.sidebar .information .box .col .read {
  color: #333;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.sidebar--archive .col1 {
  border-radius: 8px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  background: #fff;
}
.sidebar--archive .col1 .charm {
  background: #86b923;
  box-shadow: 0px 2px 3px 0px rgba(255, 255, 255, 0.4) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 13px 0px #6ba771 inset;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 11.5px;
  text-align: center;
}
.sidebar--archive .col1 .inner {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 20px;
}
.sidebar--archive .col1 .inner .top {
  margin-bottom: 16px;
}
.sidebar--archive .col1 .inner .top .read {
  margin-bottom: 8px;
}
.sidebar--archive .col1 .inner .top .btn {
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #fff;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7.5px 8px;
  width: -moz-fit-content;
  width: fit-content;
}
.sidebar--archive .col1 .inner .top .btn .img {
  width: 8.618px;
  height: 10.607px;
}
.sidebar--archive .col1 .inner .top .btn .text {
  color: #0066c0;
  text-shadow: 0px 0.4px 0px #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.sidebar--archive .col1 .inner .bottom .read {
  margin-bottom: 8px;
}
.sidebar--archive .col1 .inner .bottom .buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar--archive .col1 .inner .bottom .buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7.5px 8px;
  border-radius: 4px;
  border: 1px solid #cecece;
  background: #fff;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
}
.sidebar--archive .col1 .inner .bottom .buttons .btn .img {
  width: 9.197px;
  height: 12.967px;
}
.sidebar--archive .col1 .inner .bottom .buttons .btn .text {
  color: #0066c0;
  text-shadow: 0px 0.4px 0px #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  text-decoration-line: underline;
  text-decoration-style: solid;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.sidebar--archive .col2 {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.sidebar--archive .col2 .top {
  background: #86b923;
  box-shadow: 0px 2px 3px 0px rgba(255, 255, 255, 0.4) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 13px 0px #6ba771 inset;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 11.5px;
  text-align: center;
}
.sidebar--archive .col2 .inner {
  padding: 20px;
}
.sidebar--archive .col2 .inner .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  margin-bottom: 10px;
}
.sidebar--archive .col2 .inner .read {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding: 20px 10px;
  background: #fff0df;
}
.sidebar--archive .col3 {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  border-right: 1px solid rgba(255, 255, 255, 0.34);
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}
.sidebar--archive .col3 .top {
  background: #86b923;
  box-shadow: 0px 2px 3px 0px rgba(255, 255, 255, 0.4) inset, 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 13px 0px #6ba771 inset;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  padding: 11.5px;
  text-align: center;
}
.sidebar--archive .col3 .inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar--archive .col3 .inner .col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar--archive .col3 .inner .col .title {
  padding: 4px;
  margin-bottom: 10px;
  border-left: 4px solid #86b923;
}
.sidebar--archive .col3 .inner .col .select-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sidebar--archive .col3 .inner .col .select-box .label {
  display: flex;
  align-items: center;
  gap: 4px;
}
.sidebar--archive .col3 .inner .col .select-box--50 {
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px;
}
.sidebar--archive .col3 .inner .col .select-box--50 .label {
  width: 48%;
}
.sidebar--archive .col3 .inner .col .select-box.select-box--select {
  flex-direction: row;
  align-items: center;
}
.sidebar--archive .col3 .inner .col .select-box.select-box--select .select {
  border-radius: 2px;
  border: 0.4px solid #000;
  width: 45%;
  background: #fff;
}
.sidebar--archive .col3 .inner .col .select-box.select-box--option .select {
  width: 132px;
  border-radius: 2px;
  border: 0.4px solid #000;
  background: #fff;
}
.sidebar--archive .col4 {
  padding: 20px 24px;
  border-radius: 4px;
  border: 1px solid #d4d4d4;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.sidebar--archive .col4 .btn {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: #ee8e1c;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px -3px 0px 0px rgba(0, 0, 0, 0.15) inset;
  justify-content: center;
  padding: 16px 40px;
  width: 100%;
}
.sidebar--archive .col4 .btn .img {
  width: 19.308px;
  height: 14.468px;
}
.sidebar--archive .col4 .btn .text {
  color: #fff;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0px 0.4px 0px #fff;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}
.sidebar--archive .col4 .read .top {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
}
.sidebar--archive .col4 .read .bottom {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: "Noto Sans JP";
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
}
