@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/** SITE HEADER
==============================================*/
.site-header {
  padding: 0 50px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: background-color 400ms;
}
@media only screen and (max-width: 979px) {
  .site-header {
    padding: 0 15px;
  }
}
.site-header .hamburger {
  position: fixed;
  top: 11px;
  right: 15px;
  z-index: 999999;
  border-radius: 50vw;
  background: #AC393F;
  box-sizing: border-box;
  width: 51px;
  height: 51px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 980px) {
  .site-header .hamburger {
    display: none;
  }
}
.site-header .hamburger__inner {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.site-header .hamburger__inner span {
  background: #fff;
  margin-top: 0;
  display: block;
  width: 21px;
  height: 2.5px;
  transition: 400ms;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-header .hamburger__inner span:nth-of-type(1) {
  top: -8px;
}
.site-header .hamburger__inner span:nth-of-type(3) {
  top: 8px;
}
.site-header .hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
  visibility: hidden;
}
.site-header .hamburger.is-active span:nth-of-type(3) {
  top: 0;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header__container {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  min-height: 70px;
}
.site-header__container h1 {
  margin-bottom: 0;
}
.site-header .brand-logo {
  display: block;
  max-width: 188px;
}
@media only screen and (max-width: 979px) {
  .site-header .brand-logo {
    width: 115px;
  }
}
.site-header .h-nav {
  font-weight: bold;
  font-weight: normal;
}
@media only screen and (max-width: 979px) {
  .site-header .h-nav {
    padding: 74px 15px 80px 50px;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    background: #fff;
    height: 100vh;
    overflow: auto;
    min-width: 280px;
    box-shadow: 0 -3px 6px rgba(0, 0, 0, 0.15);
    transition: 400ms ease;
  }
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-end;
    align-items: center;
  }
}
.site-header .h-nav-list__item {
  position: relative;
  counter-increment: h-nav;
  margin: 0 5px;
}
.site-header .h-nav-list__item .h-nav-list__img {
  width: 150px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 200ms;
}
@media only screen and (max-width: 979px) {
  .site-header .h-nav-list__item .h-nav-list__img {
    display: none;
  }
}
.site-header .h-nav-list__item .h-nav-list__img img {
  width: 100%;
}
.site-header .h-nav-list__item > a {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 5px;
  position: relative;
  z-index: 9999;
  transition: 200ms;
}
@media only screen and (max-width: 979px) {
  .site-header .h-nav-list__item > a {
    font-size: 1.5rem;
  }
}
.site-header .h-nav-list__item > a::before {
  content: "0" counter(h-nav);
  display: block;
  font-size: 0.8rem;
  border-bottom: 1px solid #000;
  min-width: 15px;
  text-align: center;
  margin-right: 5px;
  font-family: "Poppins", sans-serif;
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__item > a:hover {
    opacity: 0.7;
  }
}
.site-header .h-nav-list__item:not(.parent)::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-radius: 50vw;
  position: absolute;
  bottom: -8px;
  left: 50%;
  background: #DC000C;
  transform: translate(-50%, 0%) scale(0);
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__item:not(.parent)::after {
    transition: 200ms;
  }
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__item:hover::after {
    transform: translate(-50%, 0%) scale(1);
  }
}
.site-header .h-nav-list__item.parent > a > span {
  display: block;
  width: 10px;
  height: 10px;
  position: relative;
  margin: 2px 0 0 3px;
}
@media only screen and (max-width: 979px) {
  .site-header .h-nav-list__item.parent > a > span {
    display: none;
  }
}
.site-header .h-nav-list__item.parent > a > span::after, .site-header .h-nav-list__item.parent > a > span::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.site-header .h-nav-list__item.parent > a > span::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__item.parent:hover .h-nav-list__secondary__wrap {
    opacity: 1;
    visibility: inherit;
  }
}
.site-header .h-nav-list__secondary {
  background: #fff;
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__secondary {
    padding: 20px;
    flex: 1;
    padding-left: 150px;
  }
}
@media only screen and (max-width: 979px) {
  .site-header .h-nav-list__secondary {
    padding-left: 14px;
  }
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__secondary__wrap {
    padding-top: 70px;
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 99;
    transform: translate(-50%, 0%);
    min-width: 461px;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    align-items: stretch;
    transition: 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__secondary__wrap::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 30px 15px;
    border-color: transparent transparent #fff transparent;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 999;
  }
}
.site-header .h-nav-list__secondary__item:not(:first-of-type) .h-nav-list__img {
  opacity: 0;
  visibility: hidden;
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__secondary__item:hover .h-nav-list__img {
    opacity: 1;
    visibility: inherit;
  }
}
.site-header .h-nav-list__secondary__item > a {
  display: block;
  position: relative;
  padding: 5px 15px 5px;
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__secondary__item > a::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background-image: url(../img/h-nav_arw.png);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    vertical-align: -2px;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
  }
}
.site-header .h-nav-list__secondary__item > a .en {
  font-size: 1rem;
  display: block;
}
@media only screen and (max-width: 979px) {
  .site-header .h-nav-list__secondary__item > a .en {
    display: none;
  }
}
@media only screen and (min-width: 980px) {
  .site-header .h-nav-list__secondary__item > a:hover {
    color: #8B8F91;
  }
}
.site-header .h-nav.is-active {
  transform: translateX(0%);
}
.site-header.is-active {
  color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  box-shadow: none;
  background: transparent;
}
@media only screen and (min-width: 980px) {
  .site-header.is-active .h-nav-list__item > a {
    color: #fff;
  }
}
@media only screen and (min-width: 980px) {
  .site-header.is-active .h-nav-list__item > a::before {
    border-color: #fff;
  }
}
@media only screen and (min-width: 980px) {
  .site-header.is-active .h-nav-list__item.parent > a > span::before, .site-header.is-active .h-nav-list__item.parent > a > span::after {
    background: #fff;
  }
}

.fix-nav {
  font-size: 1.2rem;
}
@media only screen and (min-width: 980px) {
  .fix-nav {
    position: fixed;
    top: 50%;
    right: 0%;
    transform: translate(0, -50%);
    z-index: 999;
    width: 50px;
  }
}
@media only screen and (max-width: 979px) {
  .fix-nav {
    padding-right: 35px;
    margin-top: 20px;
  }
}
.fix-nav-list__item:not(:last-of-type) {
  margin-bottom: 15px;
}
.fix-nav-list__item a {
  color: #AC393F;
  background: #fff;
  border-width: 2px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}
@media only screen and (min-width: 980px) {
  .fix-nav-list__item a {
    writing-mode: vertical-lr;
    border-top: solid;
    border-left: solid;
    border-bottom: solid;
    border-color: #AC393F;
    padding: 20px 14px;
    letter-spacing: 0.2em;
    border-radius: 10px 0 0 10px;
  }
}
@media only screen and (max-width: 979px) {
  .fix-nav-list__item a {
    border: 1px solid #AC393F;
    border-radius: 13px;
    font-size: 1.5rem;
    justify-content: center;
    min-height: 55px;
  }
}
.fix-nav-list__item a::before {
  content: "";
  display: block;
  width: 21px;
  height: 27px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media only screen and (min-width: 980px) {
  .fix-nav-list__item a::before {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 979px) {
  .fix-nav-list__item a::before {
    margin-right: 12px;
  }
}
.fix-nav-list__item.document a::before {
  background-image: url(../img/fix-nav-icon01.png);
}
.fix-nav-list__item.reserve a::before {
  background-image: url(../img/fix-nav-icon02.png);
}
.fix-nav-list__item.contact a::before {
  background-image: url(../img/fix-nav-icon03.png);
}

/** COMMON
==============================================*/
.row {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1040px;
}
.row .row {
  padding: 0;
}
.row.nopad {
  padding: 0;
}
@media only screen and (max-width: 979px) {
  .row {
    padding: 0 15px;
  }
}
@media only screen and (max-width: 979px) {
  .row.sp-nopad {
    padding: 0;
  }
}

.w800 {
  max-width: 840px;
}

.w900 {
  max-width: 940px;
}

.w980 {
  max-width: 1020px;
}

.w990 {
  max-width: 1030px;
}

body:not(.home) {
  padding-top: 70px;
}

.ef {
  font-family: "Poppins", sans-serif;
}

.bold {
  font-weight: bold;
}

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

@media only screen and (min-width: 980px) {
  .show-small {
    display: none !important;
  }
}

@media only screen and (max-width: 979px) {
  .hide-small {
    display: none !important;
  }
}

.section {
  overflow: hidden;
}

.c-btn a, .c-btn--insta a {
  background: #262626;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  max-width: 250px;
  padding: 10px 17px;
  color: #fff;
}
.c-btn a[target=_blank], .c-btn--insta a[target=_blank] {
  background-image: url(../img/icon_blank.png);
  background-repeat: no-repeat;
  background-position: 93% 55%;
  background-size: 15px;
}
.c-btn--insta a {
  font-weight: bold;
}
.c-btn--insta a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(../img/icon_insta.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin-right: 30px;
}

#breadcrumb {
  background: #fff !important;
  padding: 20px 0 !important;
}
@media only screen and (max-width: 979px) {
  #breadcrumb {
    padding: 20px 15px !important;
    margin-bottom: 0;
  }
}
#breadcrumb a:after {
  margin: 0 10px !important;
}
#breadcrumb .bread-container {
  text-align: right !important;
}

.headline__title--top {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  color: #ac393f;
  border-bottom: 1px solid #ac393f;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 979px) {
  .headline__title--top {
    margin-bottom: 13px;
  }
}
.headline__title--top::before {
  content: attr(data-num);
  display: block;
  font-family: "Poppins", sans-serif;
  border-right: 1px solid #ac393f;
  padding-right: 5px;
  margin-right: 10px;
  margin-top: 3px;
}
.headline__title--bottom {
  color: #8b8f91;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 0px 35px;
}
@media only screen and (max-width: 979px) {
  .headline__title--bottom {
    padding: 0;
    margin-bottom: 35px;
  }
}
.headline__title--bottom--en {
  font-size: 5rem;
  letter-spacing: 0.4em;
  border-right: 1px solid #ac393f;
  padding-right: 10px;
  margin-right: 30px;
  line-height: 1;
}
@media only screen and (max-width: 979px) {
  .headline__title--bottom--en {
    font-size: 2.8rem;
  }
}
.headline__title--bottom--ja {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 979px) {
  .headline__title--bottom--ja {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }
}

.topics-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin: -16px;
}
.topics-list__item {
  width: calc(33.3333333333% - 32px);
  margin: 16px;
}
@media only screen and (max-width: 979px) {
  .topics-list__item {
    width: 100%;
  }
}
.topics-list__item__img {
  position: relative;
}
@media only screen and (max-width: 979px) {
  .topics-list__item__img {
    margin-bottom: 10px;
  }
}
.topics-list__item__img img {
  width: 100%;
}
.topics-list__item__cat {
  position: absolute;
  top: 0;
  left: 0;
}
.topics-list__item__label {
  color: #fff;
  background: #8B8F91;
  text-align: center;
  font-size: 1.2rem;
  min-height: 41px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 979px) {
  .topics-list__item__label {
    font-size: 1.5rem;
    min-height: 32px;
  }
}
.topics-list__item__title {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
}
@media only screen and (max-width: 979px) {
  .topics-list__item__title {
    line-height: 1.8;
  }
}
.topics-list__item__info {
  border-top: 1px solid #8B8F91;
  padding-top: 10px;
  font-size: 1.2rem;
  font-weight: normal;
  display: block;
}

.heading-ptn-01 {
  color: #8b8f91;
  max-width: 980px;
  padding: 0 0 0 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  position: relative;
}
@media only screen and (max-width: 979px) {
  .heading-ptn-01 {
    margin-left: 15px;
    margin-right: 15px;
    padding-left: 20px;
  }
}
.heading-ptn-01::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-left: 6px solid #ac393f;
  position: absolute;
  top: 0;
  left: 0;
}
@media only screen and (max-width: 979px) {
  .heading-ptn-01::before {
    border-width: 5px;
  }
}
.heading-ptn-01_en {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 5rem;
}
@media only screen and (max-width: 979px) {
  .heading-ptn-01_en {
    font-size: 2.5rem;
    letter-spacing: 0.08em;
  }
}
.heading-ptn-01_ja {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  margin-top: 7px;
}
@media only screen and (max-width: 979px) {
  .heading-ptn-01_ja {
    font-size: 1.1rem;
  }
}
.heading-ptn-01_ja:before {
  display: none;
}

.btn-ptn-01 a {
  min-width: 420px;
  min-height: 70px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: normal;
  color: #262626;
  border: 2px solid #262626;
  background: #fff;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50vw;
  text-decoration: none !important;
}
@media only screen and (max-width: 979px) {
  .btn-ptn-01 a {
    min-width: 270px;
    min-height: 45px;
    padding: 0;
    padding-left: 20px;
    border-width: 1px;
  }
}
.btn-ptn-01 a::before {
  display: none;
}
.btn-ptn-01 a::after {
  content: "";
  display: block;
  background-image: url(../img/icon_btn-arw.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 32px;
  height: 32px;
  margin-left: 15px;
}
@media only screen and (max-width: 979px) {
  .btn-ptn-01 a::after {
    width: 26px;
    height: 26px;
    margin-left: 15px;
  }
}

@media only screen and (max-width: 979px) {
  .realestate-single_container .btn-ptn-01 a {
    min-width: auto;
    max-width: 330px;
    width: 100%;
  }
}

.heading-ptn-02 {
  background-image: none;
  padding: 0;
  font-size: 2.2rem;
}
@media only screen and (max-width: 979px) {
  .heading-ptn-02 {
    font-size: 1.8rem;
  }
}
.heading-ptn-02::before {
  content: "";
  display: block;
  width: 110px;
  height: 6px;
  background: #ac393f;
  margin-bottom: 20px;
}
@media only screen and (max-width: 979px) {
  .heading-ptn-02::before {
    width: 55px;
    height: 3px;
    margin-bottom: 10px;
  }
}

.color-red {
  color: #ac393f;
}

.top_realestate_pickup_slider_item_status--red {
  background: #ac393f;
}

.top_realestate_pickup_slider_item .font-price {
  color: #ac393f;
  font-size: 2.4rem;
  font-weight: bold;
}

.realestate-archive_list_item .font-price {
  color: #ac393f;
  font-size: 1.8rem;
  font-weight: bold;
}

.realestate-archive_list_item_status--red {
  background: #ac393f;
}

.realestate-single_head_data tr td strong {
  font-size: 2.4rem;
  color: #ac393f;
}

.sitemap_sub-link_item a:before {
  content: "▶︎";
  color: #ac393f;
  margin-right: 5px;
}

.sitemap_sub-link {
  border-top: 1px solid #ac393f;
  margin-top: 20px;
  padding-top: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.2;
}

.about_kangae_col-02_item_list {
  color: #ac393f;
  border: 3px solid #ac393f;
  padding: 10px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.sellbuy_head_menu_item_btn--red {
  background: #ac393f;
}

.about_kangae_col-02_item_list {
  color: #ac393f;
  border: 3px solid #ac393f;
  padding: 10px;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

@media screen and (max-width: 979px) {
  .about_kangae_col-02_item_list {
    border: 2px solid #ac393f;
    font-size: 1.2rem;
    padding: 5px;
  }
}
.company_table tr th {
  width: 175px;
  border-bottom: 2px solid #ac393f;
  font-weight: normal;
  vertical-align: top;
}

.contact_table tr th {
  width: 300px;
  border-bottom: 1px solid #ac393f;
  font-weight: normal;
}

.sellbuy_buy_cycle-bottom {
  color: #ac393f;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 100px;
}

.kantei_head_heading {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  width: 720px;
  margin: 0 auto;
  background: #f3deb9;
  border: 3px solid #ac393f;
  border-radius: 48px;
  padding: 20px 5px;
  letter-spacing: 0;
  margin-bottom: 30px;
}

@media screen and (max-width: 979px) {
  .kantei_head_heading {
    border: 2px solid #ac393f;
    font-size: 1.6rem;
    width: auto;
    padding: 5px 5px;
    margin-bottom: 20px;
  }
}
.kantei_onestop_heading {
  position: relative;
  font-size: 2rem;
  color: #ac393f;
  font-weight: bold;
  padding-left: 70px;
}

.kantei_hikaku_txt {
  position: relative;
  text-align: center;
  color: #fff;
  background: #ac393f;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0;
  font-size: 1.8rem;
  padding: 10px 5px;
}

.kantei_flow_item_heading_icon-step--red {
  background: #ac393f;
  color: #fff;
}

.kantei_flow_item_heading_icon-step--orange {
  color: #ac393f;
  background: #f3deb9;
}

.single_container {
  overflow: hidden;
}
.single_container p {
  position: relative;
}
.single_container iframe {
  max-width: 100%;
}

.contact .hissu {
  background: #ac393f;
}

.contact_table tr th {
  border-color: #ac393f;
}
@media only screen and (max-width: 979px) {
  .contact_table tr th {
    width: 100%;
  }
}

.post-archive_item_info_category {
  background: #262626 !important;
}
@media only screen and (max-width: 979px) {
  .post-archive_item_info_category {
    min-width: 95px;
    width: auto;
    font-size: 1.4rem;
  }
}

.works-archive-list_item_category_item {
  background: #262626 !important;
}
.works-archive-list_item figure {
  margin: 0;
}

.realestate-archive_menu_item a::before {
  display: none;
}
.realestate-archive_menu_item--all a {
  color: inherit;
  background: #fff;
  border: 2px solid #262626;
}

.works-archive_menu {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 980px) {
  .works-archive_menu {
    margin: 0 -20px 40px;
  }
}
@media only screen and (max-width: 979px) {
  .works-archive_menu {
    margin: -5px -5px 15px;
  }
}
@media only screen and (min-width: 980px) {
  .works-archive_menu_item {
    width: calc(25% - 40px);
    max-width: 215px;
    margin: 0 20px;
  }
}
@media only screen and (max-width: 979px) {
  .works-archive_menu_item {
    width: calc(50% - 10px);
    margin: 5px;
  }
}
.works-archive_menu_item a {
  background: #262626;
  color: #fff;
  display: block;
  min-height: 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50vw;
  border: 2px solid #262626;
}
.works-archive_menu_item.current a {
  color: inherit;
  background: #fff;
}

@media only screen and (min-width: 980px) {
  .works-single-grid {
    margin: 90px -20px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media only screen and (max-width: 979px) {
  .works-single-grid {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 980px) {
  .works-single-grid__item {
    margin: 0 20px;
    width: calc(33.3333333333% - 40px);
  }
}
@media only screen and (max-width: 979px) {
  .works-single-grid__item:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 979px) {
  .works-single-grid__item a {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    background: #F7F5F3;
  }
}
@media only screen and (max-width: 979px) {
  .works-single-grid__img {
    width: 30%;
  }
}
.works-single-grid__img img {
  width: 100%;
}
.works-single-grid__title {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  padding: 12px 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 979px) {
  .works-single-grid__title {
    font-size: 1.4rem;
    flex: 1;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.works-single-grid__title::after {
  content: "";
  display: block;
  background-image: url(../img/icon_btn-arw.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 32px;
  height: 32px;
  margin-left: 10px;
}

.voice_list_item {
  margin-bottom: 70px;
}
@media only screen and (max-width: 979px) {
  .voice_list_item {
    margin-bottom: 40px;
  }
}

.openhouse-archive_head {
  max-width: 100%;
}
.openhouse-archive_head:before, .openhouse-archive_head:after {
  display: none;
}

.openhouse-archive_head_heading {
  font-size: 3rem;
  color: #262626;
  font-feature-settings: "palt";
}
@media only screen and (max-width: 979px) {
  .openhouse-archive_head_heading {
    font-size: 2.4rem;
  }
}

.openhouse-archive_head_txt {
  font-size: 2rem;
}
@media only screen and (max-width: 979px) {
  .openhouse-archive_head_txt {
    font-size: 1.6rem;
  }
}

.openhouse-list_item_thumb {
  margin-bottom: 0;
}

.privacy_sec .heading-ptn-02 {
  padding-bottom: 20px;
  border-bottom: 1px solid #ac393f;
  margin-bottom: 20px;
}
@media only screen and (max-width: 979px) {
  .privacy_sec .heading-ptn-02 {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.privacy_sec .heading-ptn-02::before {
  display: none;
}

.vertical-top {
  vertical-align: top;
}

.contact-message {
  font-size: 1.5rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 979px) {
  .contact-message {
    font-size: 1.2rem;
  }
}
.contact-message--ex {
  font-size: 1.3rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media only screen and (max-width: 979px) {
  .contact-message--ex {
    font-size: 1.1rem;
  }
}

input[type=radio], input[type=checkbox] {
  accent-color: #775905;
}

.about_kangae_txt-contents {
  margin-bottom: 65px;
}
@media only screen and (max-width: 979px) {
  .about_kangae_txt-contents {
    margin-bottom: 30px;
  }
}

.kantei_onestop {
  margin-bottom: 60px;
}
@media only screen and (max-width: 979px) {
  .kantei_onestop {
    margin-bottom: 30px;
  }
}

.sellbuy_chintai_container {
  border: none;
}

.sellbuy_buy_last_container {
  margin-bottom: 10px;
}

@media only screen and (max-width: 979px) {
  .contact_table label {
    display: flex;
    align-items: center;
  }
  .contact_table label input {
    margin-top: 1px;
  }
}

.contact .btn-submit {
  max-width: 300px;
  width: 100%;
}

/** PAGE TOP
==============================================*/
.section-hero {
  overflow: hidden;
  position: relative;
}
.section-hero .scroll {
  font-size: 1.5rem;
  color: #fff;
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 99;
  writing-mode: vertical-lr;
  display: block;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 979px) {
  .section-hero .scroll {
    display: none;
  }
}
.section-hero .scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 45px;
  background: #fff;
  margin-top: 10px;
}

.hero-slide {
  position: relative;
  margin: 0 !important;
}
.hero-slide__item {
  position: relative;
}
.hero-slide__item::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #8B8F91;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  mix-blend-mode: multiply;
}
.hero-slide img {
  width: 100%;
}

.slick-prev:before,
.slick-next:before {
  color: black;
}

.slick-dots {
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: auto;
}
@media only screen and (max-width: 979px) {
  .slick-dots {
    display: none !important;
  }
}
.slick-dots li {
  margin: 0 5px;
  width: auto;
  height: auto;
}
.slick-dots li button {
  background: #fff;
  width: 30px;
  height: 5px;
  border-radius: 0;
  padding: 0;
}
.slick-dots li button:before {
  display: none;
}
.slick-dots li.slick-active button {
  background: #8B8F91;
}

.section-intro {
  padding: 135px 0 150px;
  background: #F7F5F3;
}
@media only screen and (max-width: 979px) {
  .section-intro {
    padding: 38px 0;
  }
}
@media only screen and (min-width: 980px) {
  .section-intro__grid {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media only screen and (min-width: 980px) {
  .section-intro__grid__left {
    width: 50%;
  }
}
@media only screen and (max-width: 979px) {
  .section-intro__grid__left {
    text-align: center;
  }
}
.section-intro__grid__right {
  padding: 20px 0 10px;
}
@media only screen and (min-width: 980px) {
  .section-intro__grid__right {
    width: 50%;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 979px) {
  .section-intro__grid__right {
    text-align: center;
    padding: 10px 0;
  }
}
.section-intro__grid__right--t {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0;
}
@media only screen and (max-width: 979px) {
  .section-intro__grid__right--t {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.section-intro__grid__right--m {
  max-width: 277px;
}
@media only screen and (max-width: 979px) {
  .section-intro__grid__right--m {
    max-width: 210px;
    display: inline-block;
    margin-bottom: 35px;
  }
}
.section-intro__grid__right--b {
  font-size: 1.8rem;
  line-height: 2.2;
}
@media only screen and (max-width: 979px) {
  .section-intro__grid__right--b {
    font-size: 1.7rem;
    line-height: 1.8;
  }
}
@media only screen and (min-width: 980px) {
  .section-intro__grid__right p {
    margin-bottom: 0;
  }
}
.section-intro__title {
  font-size: 4.5rem;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-weight: bold;
  margin-bottom: 0;
}
@media only screen and (max-width: 979px) {
  .section-intro__title {
    font-size: 2.75rem;
    text-align: left;
    display: inline-block;
  }
}

.section-event {
  background: #F7F5F3;
  padding-bottom: 50px;
}
@media only screen and (min-width: 980px) {
  .section-event .btn-ptn-01 {
    margin-top: 100px;
  }
}
@media only screen and (max-width: 979px) {
  .section-event .btn-ptn-01 {
    margin-top: 40px;
  }
}
.section-event-bnrarea {
  position: relative;
}
@media only screen and (min-width: 980px) {
  .section-event-bnrarea {
    margin-top: 100px;
    padding: 0 22px 0 50px;
  }
}
@media only screen and (max-width: 979px) {
  .section-event-bnrarea {
    margin-top: 70px;
  }
}
.section-event-bnrarea__txt {
  width: 29.7%;
  position: absolute;
  top: -26%;
  left: -4%;
}
@media only screen and (max-width: 979px) {
  .section-event-bnrarea__txt {
    width: 47.7%;
    top: -31%;
    left: 0;
  }
}
.section-event-bnrarea__txt img {
  width: 100%;
}
.section-event-bnrarea a {
  position: relative;
  display: block;
}

.section-service {
  padding-top: 100px;
}
@media only screen and (max-width: 979px) {
  .section-service {
    padding-top: 16px;
  }
}
@media only screen and (max-width: 979px) {
  .section-service .headline__title--bottom {
    margin-bottom: 20px;
  }
}
.section-service__lead {
  font-size: 2rem;
  margin-top: 80px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 980px) {
  .section-service__lead {
    text-align: center;
  }
}
@media only screen and (max-width: 979px) {
  .section-service__lead {
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 18px;
  }
}
.section-service-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -29px;
}
.section-service-list__item {
  position: relative;
  z-index: 0;
  text-align: center;
  width: calc(33.3333333333% - 58px);
  margin: 0 29px;
}
@media screen and (max-width: 480px) {
  .section-service-list__item {
    width: 100%;
    margin: 0;
  }
}
@media screen and (max-width: 480px) {
  .section-service-list__item:not(:last-of-type) {
    margin-bottom: 23px;
  }
}
@media screen and (max-width: 480px) {
  .section-service-list__item a {
    display: inline-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    max-width: 287px;
    width: 100%;
    text-align: left;
  }
}
.section-service-list__item a p {
  display: none;
}
@media screen and (max-width: 480px) {
  .section-service-list__item a p {
    display: block;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 1.2;
  }
}
@media screen and (max-width: 480px) {
  .section-service-list__item a p span {
    display: block;
    font-size: 1.2rem;
    font-weight: normal;
    margin-top: 5px;
  }
}
@media screen and (max-width: 480px) {
  .section-service-list__item picture {
    display: inline-block;
    position: relative;
    width: 106px;
    margin-right: 23px;
  }
}
.section-service-list__item picture::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F7F5F3;
  border-radius: 50vw;
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: -1;
}
@media screen and (max-width: 480px) {
  .section-service-list__item picture::before {
    top: -5px;
    left: -5px;
  }
}
.section-service-bg {
  background-image: url(../img/service-bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  margin-top: 100px;
  position: relative;
  padding-top: 71px;
  padding-bottom: 59px;
}
@media only screen and (max-width: 979px) {
  .section-service-bg {
    background-image: url(../img/service-bg_sp.jpg);
    margin-top: 50px;
    padding-top: 37px;
    padding-bottom: 48px;
    position: relative;
  }
}
.section-service-bg__inner {
  position: relative;
}
@media only screen and (min-width: 980px) {
  .section-service-bg__inner {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
  }
}
@media only screen and (min-width: 980px) {
  .section-service-bg__left {
    padding-right: 20px;
    width: calc(50% + 20px);
  }
}
@media only screen and (max-width: 979px) {
  .section-service-bg__left .btn-ptn-01 {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}
.section-service-bg__left .btn-ptn-01 a::after {
  background-color: #262626;
  background-image: url(../img/icon_blank.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px;
  border-radius: 50vw;
}
.section-service-bg__hikidasi {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (min-width: 980px) {
  .section-service-bg__hikidasi {
    padding-left: 15px;
  }
}
@media only screen and (max-width: 979px) {
  .section-service-bg__hikidasi {
    text-align: center;
  }
}
.section-service-bg__hikidasi p {
  position: relative;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  letter-spacing: 0;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__hikidasi p {
    margin-bottom: 30px;
  }
}
.section-service-bg__hikidasi p::before {
  content: "";
  display: block;
  width: 2px;
  height: 32px;
  border-right: 1px solid #2B2B2B;
  transform: skewX(20deg);
  position: relative;
  margin-right: 20px;
}
.section-service-bg__hikidasi p::after {
  content: "";
  display: block;
  width: 2px;
  height: 32px;
  border-left: 1px solid #2B2B2B;
  transform: skewX(-20deg);
  margin-left: 20px;
}
.section-service-bg__right {
  flex: 1;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__right {
    padding-bottom: 82px;
  }
}
@media only screen and (max-width: 979px) {
  .section-service-bg__right picture {
    padding-left: 28px;
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 979px) {
  .section-service-bg__right picture img {
    width: 220px;
  }
}
.section-service-bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.section-service-bg__title {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__title {
    justify-content: center;
  }
}
.section-service-bg__title::after {
  content: "";
  display: block;
  width: 29px;
  height: 36px;
  background-image: url(../img/service-bg-icon.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__title::after {
    width: 20px;
    height: 25px;
    margin-left: 9px;
  }
}
.section-service-bg__title__inr {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.section-service-bg__title__inr img {
  max-width: 68px;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__title__inr img {
    max-width: 62px;
  }
}
.section-service-bg__title__inr span {
  font-size: 2.2rem;
  font-weight: bold;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__title__inr span {
    font-size: 1.5rem;
  }
}
.section-service-bg__title__inr span::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 0 15px;
  background: #262626;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__title__inr span::before {
    width: 22px;
  }
}
.section-service-bg__lead {
  margin-top: 24px;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__lead {
    margin-top: 13px;
  }
}
.section-service-bg__lead p {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0;
  margin-bottom: 24px;
}
@media only screen and (max-width: 979px) {
  .section-service-bg__lead p {
    font-size: 1.3rem;
    margin-bottom: 13px;
  }
}

.section-works {
  background: #EFEFEF;
  padding-top: 150px;
  padding-bottom: 150px;
}
@media only screen and (max-width: 979px) {
  .section-works {
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 979px) {
  .section-works .headline__title--bottom {
    margin-bottom: 22px;
  }
}
.section-works .works-slide {
  margin-top: 50px;
}
@media only screen and (max-width: 979px) {
  .section-works .works-slide {
    margin-top: 22px;
  }
}
.section-works .works-slide__item {
  margin: 0 7px;
}
@media only screen and (min-width: 980px) {
  .section-works .works-slide__item {
    width: 635px !important;
  }
}
.section-works .works-slide .slick-prev {
  width: 93px;
  height: 93px;
  border-radius: 50vw;
  position: absolute;
  left: calc(50% - 528px);
  top: 209px;
  transform: translate(-50%, -50%);
  background-image: url(../img/works_arw.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 99;
  transition: 200ms;
}
@media only screen and (max-width: 979px) {
  .section-works .works-slide .slick-prev {
    width: 46px;
    height: 46px;
    top: calc(50% - 30px);
    left: 0 !important;
  }
}
.section-works .works-slide .slick-prev::before {
  display: none;
}
.section-works .works-slide .slick-prev:hover {
  opacity: 0.9;
}
@media screen and (max-width: 1199px) {
  .section-works .works-slide .slick-prev {
    left: 20px;
    transform: translate(0%, -50%);
  }
}
.section-works .works-slide .slick-next {
  width: 93px;
  height: 93px;
  background: #262626;
  border-radius: 50vw;
  position: absolute;
  left: calc(50% + 528px);
  top: 209px;
  transform: translate(-50%, -50%) rotateY(180deg);
  background-image: url(../img/works_arw.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  z-index: 99;
  transition: 200ms;
}
@media only screen and (max-width: 979px) {
  .section-works .works-slide .slick-next {
    width: 46px;
    height: 46px;
    top: calc(50% - 30px);
    right: 0 !important;
  }
}
.section-works .works-slide .slick-next::before {
  display: none;
}
.section-works .works-slide .slick-next:hover {
  opacity: 0.9;
}
@media screen and (max-width: 1199px) {
  .section-works .works-slide .slick-next {
    left: auto;
    right: 20px;
    transform: translate(0%, -50%) rotateY(180deg);
  }
}
.section-works .works-slide__item ul {
  margin-top: 25px;
}
@media only screen and (min-width: 980px) {
  .section-works .works-slide__item ul {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 979px) {
  .section-works .works-slide__item ul {
    margin-top: 10px;
  }
}
.section-works .works-slide__item ul .works-archive-list_item_category_item {
  width: auto;
  min-width: 86px;
  font-size: 1.2rem;
  font-weight: normal;
  margin-bottom: 15px;
  padding: 0 10px;
}
@media only screen and (max-width: 979px) {
  .section-works .works-slide__item ul .works-archive-list_item_category_item {
    font-size: 1.3rem;
    margin-bottom: 2px;
    padding: 0 5px;
  }
}
.section-works .works-slide__item .works-archive-list_item_heading {
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 979px) {
  .section-works .works-slide__item .works-archive-list_item_heading {
    font-size: 1.3rem;
  }
}
.section-works .btn-ptn-01 {
  margin-top: 100px;
}
@media only screen and (max-width: 979px) {
  .section-works .btn-ptn-01 {
    margin-top: 50px;
  }
}

.section-about {
  padding-top: 150px;
}
@media only screen and (max-width: 979px) {
  .section-about {
    padding-top: 50px;
  }
}
.section-about .headline__title--bottom {
  margin-bottom: 25px;
}
.section-about__img {
  position: relative;
  z-index: 0;
  margin-top: 85px;
}
@media only screen and (max-width: 979px) {
  .section-about__img {
    margin-top: 37px;
  }
}
.section-about__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #AC393F;
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@media only screen and (max-width: 979px) {
  .section-about__img::before {
    top: -10px;
    left: -10px;
  }
}
.section-about__img a img {
  width: 100%;
}

.section-newsblog {
  padding-bottom: 150px;
  background: #F7F5F3;
}
@media only screen and (min-width: 980px) {
  .section-newsblog {
    padding-top: 300px;
    margin-top: -165px;
  }
}
@media only screen and (max-width: 979px) {
  .section-newsblog {
    margin-top: -67px;
    padding-top: 110px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 979px) {
  .section-newsblog .headline__title--bottom {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 979px) {
  .section-newsblog .topics-list__item__title {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 979px) {
  .section-newsblog .post-archive_item_info_category {
    font-size: 1.25rem;
  }
}
.section-newsblog .btn-ptn-01 {
  margin-top: 100px;
}
@media only screen and (max-width: 979px) {
  .section-newsblog .btn-ptn-01 {
    margin-top: 50px;
  }
}

.section-voice {
  padding-top: 181px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 979px) {
  .section-voice {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.section-voice .section-content {
  position: relative;
}
@media only screen and (max-width: 979px) {
  .section-voice .content {
    padding-left: 15px;
  }
}
.section-voice .headline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 99;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  pointer-events: none;
}
@media only screen and (max-width: 979px) {
  .section-voice .headline {
    width: 67.2%;
  }
}
.section-voice .headline__title--top {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 979px) {
  .section-voice .headline__title--top {
    margin-bottom: 10px;
  }
}
.section-voice .headline__title--bottom {
  color: #262626;
  flex-flow: column;
  align-items: flex-start;
  margin-bottom: 5px;
}
.section-voice .headline__title--bottom--ja {
  border-left: none;
  padding-left: 0px;
  margin-left: 0px;
  margin-top: -10px;
  letter-spacing: 0.1em;
}
.section-voice .headline__title--bottom--en {
  margin-bottom: 20px;
}
@media only screen and (max-width: 979px) {
  .section-voice .headline__title--bottom--en {
    margin-bottom: 15px;
  }
}
.section-voice .headline__title--bottom__lead {
  font-size: 1.2rem;
}
@media only screen and (max-width: 979px) {
  .section-voice .headline__title--bottom__lead {
    line-height: 1.36;
    letter-spacing: 0.1em;
    font-size: 1.1rem;
  }
}
.section-voice__img {
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 979px) {
  .section-voice__img {
    margin-top: 65px;
  }
}
.section-voice__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #EFEFEF;
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: -1;
}
@media only screen and (max-width: 979px) {
  .section-voice__img::before {
    top: -14px;
    left: -15px;
  }
}
.section-voice__img::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #F7F5F3;
  opacity: 0.7;
  position: absolute;
  top: 0px;
  left: 0px;
  pointer-events: none;
}
.section-voice__img a img {
  width: 100%;
}

/** PAGE NEWHOUSE
==============================================*/
@media only screen and (min-width: 980px) {
  .inner-link-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -25px;
  }
}
@media only screen and (min-width: 980px) {
  .inner-link-list__item {
    width: calc(50% - 50px);
    margin: 0 25px;
  }
}
.inner-link-list__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.inner-link-list__item a {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  background: #F7F5F3;
}
.inner-link-list__item__img {
  width: 45%;
}
.inner-link-list__item__txt {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
.inner-link-list__item__txt::after {
  content: "";
  display: block;
  background-image: url(../img/icon_btn-arw.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 32px;
  height: 32px;
  margin-left: 20px;
  transform: rotate(90deg);
}
.inner-link-list__item__txt span {
  font-size: 2.2rem;
}

.section-newhouse-mv {
  background: #8B8F91;
}
.section-newhouse-mv .headline {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv .headline {
    padding-top: 40px;
    padding-bottom: 24px;
  }
}
.section-newhouse-mv .headline__title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv .headline__title {
    font-size: 2rem;
  }
}
.section-newhouse-mv .headline img {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv .headline img {
    max-width: 80px;
  }
}
.section-newhouse-mv-img img {
  width: 100%;
}
.section-newhouse-mv-img-txt {
  max-width: 698px;
  margin-top: -35px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv-img-txt {
    margin-left: 20px;
    margin-right: 20px;
    margin-top: -20px;
  }
}
.section-newhouse-mv__lead {
  text-align: center;
  color: #fff;
  letter-spacing: 0;
  line-height: 2;
  margin-top: 40px;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv__lead {
    margin-top: 20px;
  }
}
.section-newhouse-mv__grid {
  display: grid;
  grid-template-columns: 50% 24.7% 23.8%;
  grid-template-rows: repeat(2, 1fr);
  gap: 7px;
  margin-top: 60px;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 0fr);
    gap: 6px;
    margin-top: 30px;
  }
}
.section-newhouse-mv__grid--01 {
  grid-area: 1/1/3/2;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv__grid--01 {
    grid-area: 1/1/2/3;
  }
}
.section-newhouse-mv__grid--02 {
  grid-area: 1/2/2/3;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv__grid--02 {
    grid-area: 2/1/3/2;
  }
}
.section-newhouse-mv__grid--03 {
  grid-area: 2/2/3/3;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv__grid--03 {
    grid-area: 3/1/4/2;
  }
}
.section-newhouse-mv__grid--04 {
  grid-area: 1/3/3/4;
}
@media only screen and (max-width: 979px) {
  .section-newhouse-mv__grid--04 {
    grid-area: 2/2/4/3;
  }
}
.section-newhouse-mv__grid img {
  max-width: 100%;
}

.section-movie {
  padding-top: 156px;
  margin-top: -76px;
  padding-bottom: 40px;
  background: #fff;
}
@media only screen and (max-width: 979px) {
  .section-movie {
    padding-top: 100px;
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 980px) {
  .section-movie .movie-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0 -25px;
  }
}
@media only screen and (min-width: 980px) {
  .section-movie .movie-list__item {
    width: calc(50% - 50px);
    margin: 0 25px;
  }
}
@media only screen and (max-width: 979px) {
  .section-movie .movie-list__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
.section-movie .movie__title {
  background: #F7F5F3;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0;
  padding: 10px;
  font-weight: normal;
}
.section-movie .movie__thumbnail {
  padding-top: 56.4%;
  position: relative;
  display: block;
}
.section-movie .movie__thumbnail > * {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}
.section-merit {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 979px) {
  .section-merit {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.section-merit .headline__lead {
  line-height: 2;
  letter-spacing: 0;
  font-size: 1.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 979px) {
  .section-merit .headline__lead {
    font-size: 1.4rem;
  }
}
.section-merit-table {
  text-align: center;
  font-size: 1.5rem;
  border: 10px solid #F7F5F3;
  padding: 14px;
  margin: 30px 0 40px;
}
@media only screen and (max-width: 979px) {
  .section-merit-table {
    font-size: 1.2rem;
    margin: 15px 0 20px;
    padding: 7px;
    border-width: 5px;
  }
}
.section-merit-table table {
  margin: 0;
  table-layout: fixed;
}
.section-merit-table th,
.section-merit-table td {
  border: none;
  padding: 1em;
}
.section-merit-table th {
  text-align: center;
  font-weight: 400;
  font-size: 2rem;
}
@media only screen and (max-width: 979px) {
  .section-merit-table th {
    font-size: 1.2rem;
  }
}
.section-merit-table tr *:not(:last-child) {
  border-right: 3px solid #F7F5F3;
}
@media only screen and (max-width: 979px) {
  .section-merit-table tr *:not(:last-child) {
    border-width: 1px;
  }
}
.section-merit-table thead th:first-of-type {
  width: 163px;
}
@media only screen and (max-width: 979px) {
  .section-merit-table thead th:first-of-type {
    width: 70px;
  }
}
.section-merit-table tbody tr {
  border-top: 3px solid #F7F5F3;
}
.section-merit-table tbody th {
  width: 163px;
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 979px) {
  .section-merit-table tbody th {
    width: 70px;
  }
}
@media only screen and (max-width: 979px) {
  .section-merit-table tbody th.merit {
    padding: 0;
  }
}
.section-merit-table tbody th.merit::before {
  content: "";
  display: block;
  width: 52px;
  height: 52px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50vw;
  border: 6px solid #F7F5F3;
}
@media only screen and (max-width: 979px) {
  .section-merit-table tbody th.demerit {
    padding: 0;
  }
}
.section-merit-table tbody th.demerit::before, .section-merit-table tbody th.demerit::after {
  content: "";
  display: block;
  width: 55px;
  height: 5px;
  background: #F7F5F3;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.section-merit-table tbody th.demerit::after {
  transform: translate(-50%, -50%) rotate(45deg);
}
.section-merit-bottom {
  text-align: center;
}
.section-merit-bottom p {
  margin-bottom: 0;
}
.section-merit-bottom .lead--s {
  font-size: 2rem;
}
@media only screen and (max-width: 979px) {
  .section-merit-bottom .lead--s {
    font-size: 1.2rem;
  }
}
.section-merit-bottom .lead--m {
  font-size: 2.5rem;
}
@media only screen and (max-width: 979px) {
  .section-merit-bottom .lead--m {
    font-size: 1.8rem;
  }
}
.section-merit-bottom .lead--l {
  font-size: 5rem;
  font-weight: bold;
}
@media only screen and (max-width: 979px) {
  .section-merit-bottom .lead--l {
    font-size: 2.8rem;
  }
}
.section-merit-bottom .lead--last {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.section-merit-bottom .lead--last img {
  width: 74px;
  display: inline-block;
  margin: 0 0.2em;
}
@media only screen and (max-width: 979px) {
  .section-merit-bottom .lead--last img {
    width: 54px;
    margin: 0 0.5em;
  }
}
.section-merit-bottom .color-red {
  background: #F7F5F3;
  padding: 0.3em 0.3em;
  margin-top: 0.5em;
  line-height: 1;
  display: inline-block;
}

.section-step {
  overflow: hidden;
  padding-top: 40px;
}
.section-step .step-list {
  position: relative;
}
@media only screen and (min-width: 980px) {
  .section-step .step-list::after {
    content: "";
    display: block;
    width: calc(50vw - 50%);
    height: 100%;
    background: #F7F5F3;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
  }
}
.section-step .step-list__item {
  counter-increment: step;
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.section-step .step-list__item:not(:last-of-type) {
  margin-bottom: 20px;
}
.section-step .step-list__item__head {
  text-align: center;
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item__head {
    width: 130px;
    margin-right: 40px;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item__head {
    width: auto;
  }
}
.section-step .step-list__item__head .step-num span {
  font-size: 1.5rem;
  color: #8B8F91;
  line-height: 1;
}
.section-step .step-list__item__head .step-num span::after {
  content: "0" counter(step);
  display: block;
  font-size: 6rem;
}
.section-step .step-list__item__head .step-ttl {
  font-size: 2rem;
}
.section-step .step-list__item__body {
  flex: 1;
  background: #F7F5F3;
  padding: 30px 6% 30px 15%;
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item__body {
    padding: 20px;
  }
}
.section-step .step-list__item__body .step-grid {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin: -20px -50px;
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item__body .step-grid {
    margin: 0px -8px;
  }
}
.section-step .step-list__item__body .step-grid__item {
  text-align: center;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  margin: 20px 50px;
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item__body .step-grid__item {
    width: calc(50% - 16px);
    margin: 0px 8px;
  }
}
.section-step .step-list__item__body .step-grid__item.full {
  width: 100%;
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item__body .step-grid__item.full {
    padding-right: 17.5%;
  }
}
.section-step .step-list__item__body .step-grid__item .txt .title {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item__body .step-grid__item .txt .title {
    font-size: 1.4rem;
    margin-top: 10px;
    margin-bottom: 5px;
  }
}
.section-step .step-list__item__body .step-grid__item .txt p {
  font-size: 1.5rem;
  margin-bottom: 0;
  min-height: 54px;
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item__body .step-grid__item .txt p {
    font-size: 1rem;
    min-height: 36px;
  }
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item:first-of-type .step-list__item__head {
    margin-top: 135px;
  }
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item:first-of-type .step-list__item__body {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item:last-of-type .step-list__item__body {
    padding-bottom: 90px;
  }
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item:last-of-type .step-list__item__body {
    padding: 10px;
  }
}
@media only screen and (max-width: 979px) {
  .section-step .step-list__item:last-of-type .step-list__item__body .step-grid__item {
    width: calc(33.3333333333% - 16px);
  }
}
@media only screen and (min-width: 980px) {
  .section-step .step-list__item:not(:first-of-type) .step-list__item__head {
    padding-top: 30px;
  }
}
.section-step .step-list__item:not(:last-of-type) .step-list__item__head::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #8B8F91, #8B8F91 4px, transparent 4px);
  background-size: 2px 8px;
  background-position: left bottom;
  background-repeat: repeat-y;
}

.section-feature {
  padding-top: 97px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 979px) {
  .section-feature {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.section-feature .headline__title--feature {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}
@media only screen and (max-width: 979px) {
  .section-feature .headline__title--feature {
    font-size: 1.5rem;
  }
}
.section-feature .headline__title--feature .inner {
  background: #EFEFEF;
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  padding: 0 40px;
}
@media only screen and (max-width: 979px) {
  .section-feature .headline__title--feature .inner {
    padding: 10px 20px;
  }
}
.section-feature .headline__title--feature .inner span {
  font-size: 5rem;
  margin: 0 10px;
  display: inline-block;
}
@media only screen and (max-width: 979px) {
  .section-feature .headline__title--feature .inner span {
    font-size: 2.5rem;
  }
}
@media only screen and (min-width: 980px) {
  .section-feature .feature-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 -25px;
  }
}
.section-feature .feature-list__item {
  counter-increment: point;
}
@media only screen and (min-width: 980px) {
  .section-feature .feature-list__item {
    width: calc(50% - 50px);
    margin: 0 25px;
  }
}
.section-feature .feature-list__item:not(:last-of-type) {
  margin-bottom: 34px;
}
@media only screen and (max-width: 979px) {
  .section-feature .feature-list__item:not(:last-of-type) {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 980px) {
  .section-feature .feature-list__item:nth-of-type(even) {
    margin-top: 146px;
  }
}
.section-feature .feature-list__item:nth-of-type(even) .img .point {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
}
.section-feature .feature-list__item:nth-of-type(odd) .img .point {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.section-feature .feature-list__item .img {
  position: relative;
  margin-bottom: 15px;
}
.section-feature .feature-list__item .img .point {
  width: 171px;
  height: 93px;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  font-size: 1.5rem;
  color: #8B8F91;
  line-height: 1;
}
.section-feature .feature-list__item .img .point::after {
  content: "0" counter(point);
  display: block;
  font-size: 6rem;
}
.section-feature .feature-list__item .txt .title {
  margin-bottom: 0;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.75;
}
@media only screen and (max-width: 979px) {
  .section-feature .feature-list__item .txt .title {
    font-size: 1.6rem;
  }
}
.section-feature .feature-service-bg {
  margin-top: 90px;
}
.section-feature .feature-service-bg .w800 {
  max-width: 800px;
}
.section-feature .feature-service-bg .section-service-bg {
  background: none;
  border-top: 4px solid #AC393F;
  border-bottom: 4px solid #AC393F;
  margin-top: 0;
  padding-top: 24px;
  padding-bottom: 70px;
}
.section-feature .feature-service-bg .section-service-bg__hikidasi {
  text-align: center;
  padding: 0;
}
@media only screen and (max-width: 979px) {
  .section-feature .feature-service-bg .section-service-bg__right img {
    max-width: 220px;
    display: block;
    margin: 0 auto;
  }
}

.newhouse-btn-area {
  text-align: center;
}
.newhouse-btn-area a {
  display: inline-flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  background: #F7F5F3;
  border: 2px solid #555A5F;
  border-radius: 50vw;
  position: relative;
}
@media only screen and (min-width: 980px) {
  .newhouse-btn-area a {
    min-width: 700px;
    min-height: 166px;
    padding: 10px 170px;
  }
}
@media only screen and (max-width: 979px) {
  .newhouse-btn-area a {
    font-size: 1.4rem;
    width: 100%;
    padding: 16px 19%;
  }
}
.newhouse-btn-area a::after {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 15px;
  background-color: #262626;
  background-image: url(../img/icon_blank.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 14px;
  border-radius: 50vw;
  position: absolute;
  top: 50%;
  right: 82px;
  transform: translate(0%, -50%);
}
@media only screen and (max-width: 979px) {
  .newhouse-btn-area a::after {
    right: 10px;
  }
}
.newhouse-btn-area__txt::before {
  content: "";
  display: block;
  width: 87px;
  height: 54px;
  background-image: url(../img/newhouse-btn-area-icon.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translate(0%, -50%);
}
@media only screen and (max-width: 979px) {
  .newhouse-btn-area__txt::before {
    width: 44px;
    height: 27px;
    left: 20px;
  }
}
.newhouse-btn-area__txt p {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 0;
}
.newhouse-btn-area__txt p.bold {
  margin-top: 10px;
}
@media only screen and (max-width: 979px) {
  .newhouse-btn-area__txt p.bold {
    margin-top: 5px;
  }
}
.newhouse-btn-area__txt p img {
  width: 84px;
  display: block;
  margin-right: 10px;
}
@media only screen and (max-width: 979px) {
  .newhouse-btn-area__txt p img {
    width: 50px;
    margin-right: 5px;
  }
}
.newhouse-btn-area__txt p span {
  line-height: 1.3;
}

.newhouse-bnrarea {
  margin-bottom: 155px;
}
@media only screen and (max-width: 979px) {
  .newhouse-bnrarea {
    margin-bottom: 40px;
  }
}

/** PAGE ABOUT
==============================================*/
.section-about-intro .headline__title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 70px;
}
@media only screen and (max-width: 979px) {
  .section-about-intro .headline__title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 979px) {
  .section-about-intro .headline__image {
    margin-left: -80px;
    margin-right: -80px;
  }
}
.section-about-intro .content {
  background: #f8f5f3;
  padding: 0 15px 60px;
}
@media only screen and (min-width: 980px) {
  .section-about-intro .content {
    padding-top: 200px;
    margin-top: -160px;
  }
}
@media only screen and (max-width: 979px) {
  .section-about-intro .content {
    padding-top: 20px;
    padding-bottom: 30px;
  }
}
.section-about-intro .content .title {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 979px) {
  .section-about-intro .content .title {
    font-size: 2rem;
  }
}
.section-about-intro .content .lead {
  text-align: center;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 979px) {
  .section-about-intro .content .lead {
    font-size: 1.2rem;
  }
}

.section-staff {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 979px) {
  .section-staff {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section-staff .headline__lead {
  font-size: 1.5rem;
  margin-bottom: 36px;
}
.section-staff .staff-list {
  margin: -14px;
}
@media only screen and (min-width: 980px) {
  .section-staff .staff-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
  }
}
.section-staff .staff-list__item {
  background: #f8f5f3;
  padding: 25px;
  font-size: 1.5rem;
  margin: 14px;
}
@media only screen and (min-width: 980px) {
  .section-staff .staff-list__item {
    width: calc(50% - 28px);
  }
}
@media only screen and (max-width: 979px) {
  .section-staff .staff-list__item {
    font-size: 1.2rem;
    padding: 12px;
  }
}
.section-staff .staff-list__item--meta {
  font-weight: bold;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
.section-staff .staff-list__item--meta .img {
  width: 37%;
}
.section-staff .staff-list__item--meta .txt {
  flex: 1;
  padding-left: 20px;
}
.section-staff .staff-list__item--meta .txt .name {
  font-size: 3rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 979px) {
  .section-staff .staff-list__item--meta .txt .name {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}
.section-staff .staff-list__item--meta .txt .kana {
  margin-bottom: 0;
}
.section-staff .staff-list__item--text {
  margin-top: 20px;
}
.section-staff .staff-list__item--text p {
  margin-bottom: 0;
}

@media only screen and (min-width: 980px) {
  .section-life .content__inner {
    display: flex;
    flex-flow: row-reverse wrap;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (min-width: 980px) {
  .section-life .content__inner .img {
    width: 54%;
  }
}
.section-life .content__inner .txt {
  position: relative;
}
@media only screen and (min-width: 980px) {
  .section-life .content__inner .txt {
    width: 46%;
  }
}
.section-life .content__inner .txt .ef {
  font-size: 10rem;
  white-space: nowrap;
  color: #8b8f91;
  line-height: 1.2;
  letter-spacing: 0.028em;
  margin-bottom: 40px;
}
@media only screen and (max-width: 979px) {
  .section-life .content__inner .txt .ef {
    font-size: 11vw;
    margin-top: -1.8em;
    margin-bottom: 20px;
  }
}
.section-life .content__inner .txt .title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 50px;
}
@media only screen and (max-width: 979px) {
  .section-life .content__inner .txt .title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}
.section-life .content__inner .txt .lead-box p {
  line-height: 2;
  margin-bottom: 0;
}
.section-life .content__inner .txt .lead-box p:not(:last-of-type) {
  margin-bottom: 2em;
}

.about-slide-area {
  padding-top: 90px;
  padding-bottom: 30px;
  overflow: hidden;
}
@media only screen and (max-width: 979px) {
  .about-slide-area {
    padding-top: 45px;
    padding-bottom: 20px;
  }
}

.about-slide__item {
  width: 310px;
  margin: 0 5px;
}
@media only screen and (max-width: 979px) {
  .about-slide__item {
    width: 150px;
    margin: 0 3px;
  }
}
.about-slide__item img {
  width: 100%;
}

/** PAGE REFORM
==============================================*/
.kantei_onestop {
  max-width: 800px;
}
.kantei_onestop_thumb {
  width: 100%;
  float: none;
  padding-top: 42.5%;
  position: relative;
  margin-bottom: 0;
}
.kantei_onestop_thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.kantei_onestop_contents {
  width: 100%;
  background: #f8f5f3;
  position: static;
  padding: 30px 30px;
}
.kantei_onestop_heading {
  padding: 0;
  text-align: center;
}
.kantei_onestop_heading::before {
  display: none;
}
.kantei_onestop_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin: 0 -15px;
}
.kantei_onestop_list_item {
  float: none;
  font-size: 1.3rem;
  padding: 3px;
}
@media only screen and (min-width: 980px) {
  .kantei_onestop_list_item {
    margin: 0 15px;
    width: calc(25% - 30px);
  }
}
.kantei_onestop_txt {
  margin-top: 15px;
}

.section-sitemap {
  padding-bottom: 100px;
}
.section-sitemap .sitemap-menu a {
  display: block;
  padding-left: 15px !important;
  position: relative;
}
.section-sitemap .sitemap-menu a::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(-45deg);
}
.section-sitemap .sitemap-menu--home {
  border-bottom: 1px solid #8b8f91;
  margin-top: -30px;
}
.section-sitemap .sitemap-menu--home a {
  padding: 20px 0;
  font-size: 3.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 979px) {
  .section-sitemap .sitemap-menu--home a {
    font-size: 2.4rem;
    padding: 10px 0;
  }
}
.section-sitemap .sitemap-menu--list {
  margin-top: 40px;
}
@media only screen and (min-width: 980px) {
  .section-sitemap .sitemap-menu--list {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 20%;
    grid-template-rows: repeat(4, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
@media only screen and (max-width: 979px) {
  .section-sitemap .sitemap-menu--list {
    margin-top: 20px;
  }
}
.section-sitemap .sitemap-menu--list__item a {
  font-size: 2rem;
  padding: 10px;
  font-weight: 500;
}
@media only screen and (max-width: 979px) {
  .section-sitemap .sitemap-menu--list__item a {
    font-size: 1.6rem;
    padding: 5px;
  }
}
.section-sitemap .sitemap-menu--bottom {
  border-top: 1px solid #8b8f91;
  padding-top: 30px;
  margin-top: 40px;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 979px) {
  .section-sitemap .sitemap-menu--bottom {
    margin-top: 15px;
    padding-top: 20px;
  }
}
.section-sitemap .sitemap-menu--bottom__item {
  margin-right: 60px;
}
@media only screen and (max-width: 979px) {
  .section-sitemap .sitemap-menu--bottom__item {
    margin-right: 30px;
  }
}
.section-sitemap .sitemap-menu--bottom__item a {
  padding: 10px;
  color: #8b8f91;
}
@media only screen and (max-width: 979px) {
  .section-sitemap .sitemap-menu--bottom__item a {
    font-size: 1.4rem;
    padding: 5px;
  }
}

/** SITER FOOTER
==============================================*/
@media only screen and (min-width: 980px) {
  .section-cta {
    background: #F8F4F1;
  }
}
@media only screen and (max-width: 979px) {
  .section-cta {
    padding-bottom: 50px;
  }
}
.section-cta .headline {
  padding-top: 100px;
  background: #fff;
  text-align: center;
  padding-bottom: 195px;
  color: #8B8F91;
}
@media only screen and (max-width: 979px) {
  .section-cta .headline {
    padding-top: 55px;
    padding-bottom: 10px;
  }
}
.section-cta .headline p {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 15px;
}
@media only screen and (max-width: 979px) {
  .section-cta .headline p {
    font-size: 1.2rem;
  }
}
.section-cta__title {
  font-size: 5rem;
  letter-spacing: 0.4em;
  font-weight: 0;
  margin: 0;
  line-height: 1;
  padding-left: 10px;
}
@media only screen and (max-width: 979px) {
  .section-cta__title {
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 980px) {
  .section-cta .cta-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: -145px -25px 0;
  }
}
.section-cta .cta-list__item {
  background: #EFEFEF;
  border: 1px solid #707070;
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  align-items: stretch;
}
@media only screen and (min-width: 980px) {
  .section-cta .cta-list__item {
    width: calc(33.3333333333% - 50px);
    margin: 0 25px;
  }
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
}
.section-cta .cta-list__item a {
  display: block;
  padding: 40px 30px 47px;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item a {
    padding: 10px 20px 18px;
    position: relative;
    width: 100%;
  }
}
.section-cta .cta-list__item a .title {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 980px) {
  .section-cta .cta-list__item a .title {
    border-bottom: 1px solid #707070;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item a .title {
    font-size: 1.7rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item a .title span {
    border-bottom: 1px solid #707070;
  }
}
.section-cta .cta-list__item a img {
  margin-top: 2px;
  margin-right: 8px;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item a img {
    margin-right: 13px;
  }
}
@media only screen and (min-width: 980px) {
  .section-cta .cta-list__item a span {
    flex: 1;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
  }
}
.section-cta .cta-list__item a span::after {
  content: "";
  display: block;
  background-image: url(../img/icon_btn-arw.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  width: 32px;
  height: 32px;
  margin-left: 10px;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item a span::after {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 22px;
    height: 22px;
  }
}
.section-cta .cta-list__item p {
  margin-top: 30px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-list__item p {
    margin-top: 8px;
    font-size: 1.3rem;
    line-height: 1.54;
    margin-bottom: 0;
  }
}
.section-cta .cta-tel {
  text-align: center;
  background: #8B8F91;
  border: 1px solid #707070;
  margin-top: 60px;
  padding: 27px 20px 22px;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-tel {
    padding: 16px 10px 16px;
  }
}
.section-cta .cta-tel__num {
  font-weight: bold;
  font-size: 4rem;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1;
  margin-bottom: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-tel__num {
    font-size: 2.5rem;
  }
}
.section-cta .cta-tel__num::before {
  content: "TEL";
  display: inline-block;
  font-size: 2.2rem;
  font-weight: normal;
  margin-right: 15px;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-tel__num::before {
    font-size: 1.5rem;
    margin-right: 5px;
  }
}
.section-cta .cta-tel__schedule {
  margin: 0;
  color: #fff;
  font-size: 1.5rem;
  margin-top: 6px;
}
@media only screen and (max-width: 979px) {
  .section-cta .cta-tel__schedule {
    margin-top: 4px;
    font-size: 1.2rem;
  }
}
.section-cta .cta-tel__schedule span {
  font-weight: bold;
  display: inline-block;
  margin-right: 1em;
}

.site-footer {
  background: #F8F4F1;
  padding: 153px 0 80px;
  font-size: 1.5rem;
}
@media only screen and (max-width: 979px) {
  .site-footer {
    padding: 30px 0 85px;
  }
}
.site-footer__container {
  padding-top: 95px;
  border-top: 5px solid #8B8F91;
  border-bottom: 5px solid #8B8F91;
  padding-bottom: 100px;
}
@media only screen and (min-width: 980px) {
  .site-footer__container {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container {
    border-width: 3px;
    padding-top: 24px;
    padding-bottom: 14px;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_left {
    width: 100%;
  }
}
.site-footer__container_left .footer-logo {
  width: 100px;
}
@media only screen and (max-width: 979px) {
  .site-footer__container_left .footer-logo {
    width: 80px;
    margin: 0 auto 25px;
  }
}
.site-footer__container_left dl {
  margin-top: 40px;
  font-weight: 500;
}
.site-footer__container_left dl dt {
  font-weight: 500;
}
.site-footer__container_left dl dd {
  margin-top: 5px;
}
.site-footer__container_left .c-btn, .site-footer__container_left .c-btn--insta {
  margin-top: 40px;
}
@media only screen and (min-width: 980px) {
  .site-footer__container_right {
    flex: 1;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.site-footer__container_right .fnav {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: flex-start;
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav {
    justify-content: flex-start;
    margin: 0 -8px;
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-list {
    width: calc(50% - 16px);
    margin: 0 8px;
  }
}
@media only screen and (min-width: 980px) {
  .site-footer__container_right .fnav-list:not(:last-of-type) {
    margin-right: 48px;
  }
}
@media only screen and (min-width: 980px) {
  .site-footer__container_right .fnav-list__item:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
.site-footer__container_right .fnav-list__item > a {
  padding: 2px 0;
  display: block;
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-list__item.font-small {
    font-size: 0.85em;
  }
}
.site-footer__container_right .fnav-child-list {
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-child-list {
    font-size: 1.1rem;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
.site-footer__container_right .fnav-child-list__item::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}
.site-footer__container_right .fnav-bottom {
  margin-top: 35px;
  font-size: 1.2rem;
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom dl {
    margin-top: 40px;
    font-weight: 500;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom dl {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom dl dt {
    font-weight: 500;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom dl dd {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom .c-btn, .site-footer__container_right .fnav-bottom .c-btn--insta {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom .c-btn a, .site-footer__container_right .fnav-bottom .c-btn--insta a {
    width: 100%;
    max-width: none;
    background-size: 27px;
    padding: 17px;
  }
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom .c-btn a::before, .site-footer__container_right .fnav-bottom .c-btn--insta a::before {
    margin-right: 56px;
  }
}
.site-footer__container_right .fnav-bottom-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  margin: 0 -10px;
}
.site-footer__container_right .fnav-bottom-list__item {
  margin: 0 10px;
}
.site-footer__container_right .fnav-bottom-list__item a {
  display: inline-block;
  padding: 5px;
}
.site-footer__container_right .fnav-bottom .copyright {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 500;
}
@media only screen and (max-width: 979px) {
  .site-footer__container_right .fnav-bottom .copyright {
    margin-top: 24px;
    font-size: 1rem;
  }
}
.site-footer__bottom {
  border-top: 5px solid #000;
  padding-top: 80px;
  margin-top: 120px;
}
.site-footer__bnr {
  text-align: right;
}
.site-footer__bnr a {
  display: inline-block;
  max-width: 400px;
}

.fix-cta {
  background: #AC393F;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}
.fix-cta-list {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
}
.fix-cta-list__item {
  width: 25%;
}
.fix-cta-list__item a {
  display: block;
  text-align: center;
  min-height: 61px;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}
.fix-cta-list__item a .title img {
  width: 21px;
}
.fix-cta-list__item a .title span {
  font-size: 1rem;
  color: #fff;
  font-weight: bold;
  display: block;
  line-height: 1;
  margin-top: 6px;
}