@charset "UTF-8";

.anchor {
  display: block;
  height: 0;
}

.main {
  display: block;
}

.section-ttl {
  text-align: center;
  font-family: "Shippori Mincho", serif;
  color: #5f7881;
  letter-spacing: 0.16em;
  font-weight: normal;
}

.section-ttl::after {
  content: "";
  display: block;
  width: 5%;
  height: 2px;
  background-color: #778592;
}

.section-ttl.sep span {
  padding-bottom: 12px;
  border-bottom: solid 2px #5f7881;
  letter-spacing: 0.1em;
}

.section-ttl.sep::after {
  display: none;
}

.section-txt {
  text-align: center;
}

.content-logo {
  text-align: center;
}

.more-btn {
  text-align: center;
}

.more-btn a {
  color: #231815;
  border: solid 1px #231815;
  -moz-border-radius: 20px;
  border-radius: 20px;
  letter-spacing: 0.2em;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
}

.more-btn a::after {
  content: "→";
  display: inline-block;
  margin-left: 5px;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

.page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  width: 50px;
  height: 50px;
  background-color: #5f7881;
  -webkit-transition: 0.5s ease;
  -moz-transition: 0.5s ease;
  transition: 0.5s ease;
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-bottom: solid 9px #fff;
  border-left: solid 9px transparent;
  border-right: solid 9px transparent;
}

.page-top.fadeIn {
  visibility: visible;
  opacity: 1;
}

.section-image {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.section-image__item {
  position: relative;
  width: 50%;
  font-size: 0;
}

.section-image__cap {
  --pos: 6.5%;
  position: absolute;
  bottom: 3.5%;
  color: #fff;
}

.section-image__cap.first {
  left: var(--pos);
}

.section-image__cap.second {
  right: var(--pos);
}

.main-visual {
  position: relative;
  width: 100%;
}

.main-visual__pic {
  width: 100%;
}

.main-visual__pic img {
  width: 100%;
}

.main-visual__logo {
  position: absolute;
  top: 25%;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 15%;
  min-width: 206px;
}

.main-visual__logo img {
  width: 100%;
}

.main-visual__txt {
  position: absolute;
  top: 59%;
  left: 50%;
  z-index: 999;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 30%;
}

.main-visual__txt img {
  width: 100%;
}

.main-visual__catch {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.main-visual__catch img {
  width: 100%;
}

.main-visual__scroll-icon {
  display: inline-block;
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 999;
  padding-top: 80px;
}

.main-visual__scroll-icon span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  -moz-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  opacity: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
  -moz-transform: rotate(-45deg) translate(-50%, -50%);
  -ms-transform: rotate(-45deg) translate(-50%, -50%);
  transform: rotate(-45deg) translate(-50%, -50%);
}

.main-visual__scroll-icon span:nth-of-type(1) {
  -webkit-animation-delay: 0s;
  -moz-animation-delay: 0s;
  animation-delay: 0s;
}

.main-visual__scroll-icon span:nth-of-type(2) {
  top: 16px;
  -webkit-animation-delay: 0.15s;
  -moz-animation-delay: 0.15s;
  animation-delay: 0.15s;
}

.main-visual__scroll-icon span:nth-of-type(3) {
  top: 32px;
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@-webkit-keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-moz-keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@-moz-keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@-moz-keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    visibility: visible;
  }
}

@-webkit-keyframes logoFadeOut {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  48% {
    opacity: 1;
    visibility: visible;
  }

  72% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@-moz-keyframes logoFadeOut {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  48% {
    opacity: 1;
    visibility: visible;
  }

  72% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes logoFadeOut {
  0% {
    opacity: 0;
    visibility: hidden;
  }

  48% {
    opacity: 1;
    visibility: visible;
  }

  72% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

.main-copy {
  background-color: #5f7881;
}

.main-copy__txt {
  color: #fff;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1;
}

.section-top {
  background-image: url(../images/section_back.png);
  background-repeat: no-repeat;
  background-position: center top;
  -moz-background-size: cover;
  background-size: cover;
}

.section-top__logo {
  text-align: center;
}

.section-top__ttl {
  color: #5f7881;
  text-align: center;
  letter-spacing: 0.15em;
  font-family: "Shippori Mincho", serif;
}

.section-top__catch {
  color: #231815;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  line-height: 2.1;
  letter-spacing: 0.2em;
}

.section-top__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.13em;
  line-height: 2.35;
}

.section-top__sub-ttl {
  color: #5f7881;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}

.section-top__route-map {
  width: 90%;
}

.section-top__time-wrap {
  margin: 0 auto;
  width: 80%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.section-top__time-head {
  width: 80%;
  margin: 0 auto;
  background-color: #5f7881;
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-weight: normal;
  letter-spacing: 0.05em;
  text-align: center;
}

.section-top__time-list {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.section-top__time-space {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-top: dotted 2px;
  font-weight: 500;
}

.section-top__time-req span {
  font-weight: bold;
  letter-spacing: 0.07em;
}

.section-top__time-ann {
  width: 100%;
}

.life {
  background-image: url(../images/section_back.png);
  background-repeat: no-repeat;
  background-position: top center;
  -moz-background-size: cover;
  background-size: cover;
}

.life__catch {
  line-height: 2.1;
  letter-spacing: 0.2em;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  color: #5f7881;
}

.life__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.13em;
  line-height: 2.35;
}

.life__pic img {
  width: 100%;
}

.life__env {
  background-image: url(../images/section_back.png);
  background-repeat: no-repeat;
  background-position: center;
  -moz-background-size: cover;
  background-size: cover;
}

.life__map {
  width: 85%;
}

.life__support-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90%;
}

.life__support-item {
  width: 31%;
}

.life__support-head {
  background-color: #dcdee3;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.13em;
}

.life__support-desc {
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}

.life__support-link {
  text-align: center;
}

.life__support-link a {
  display: inline-block;
  color: #231815;
}

.life__support-link a::after {
  content: "";
  display: block;
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  width: 100%;
  height: 1.5px;
  background-color: #231815;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -moz-transition: transform 0.3s ease, -moz-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -moz-transform 0.3s ease;
}

.section-loca__contents {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 85%;
  max-width: 1400px;
}

.section-loca__item {
  width: 23%;
}

.section-loca__item img {
  width: 100%;
}

.section-loca__item:nth-child(-n + 2) {
  width: 48.6%;
}

.section-loca__item-cap {
  display: block;
  color: #231815;
}

.section-loca__details {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 auto;
  width: 85%;
  max-width: 1400px;
}

.section-loca__details-list li {
  padding-left: 1.5em;
  color: #231815;
  line-height: 1.7;
  text-indent: -1.5em;
  letter-spacing: 0.05em;
}

.section-loca__details-list li::first-letter {
  color: #9fa0a0;
}

.town {
  background-image: url(../images/section_back.png);
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center;
}

.town__wrapper {
  margin: 0 auto;
  width: 80%;
  max-width: 1200px;
}

.town__map img {
  width: 100%;
}

.town__plan {
  width: 55%;
  margin: 0 auto;
}

.town__plan-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  border-top: solid 1.5px #778592;
  letter-spacing: 0.05em;
}

.town__plan-item:last-child {
  border-bottom: solid 1.5px #778592;
}

.town__plan-area {
  width: 70%;
  border-right: solid 1.5px #778592;
  text-align: left;
}

.town__plan-price {
  width: 30%;
  text-align: left;
}

.outline__head {
  text-align: center;
}

.outline__head img {
  height: 46px;
}

.outline__wrapper {
  margin: 0 auto 50px;
  background-color: #adb2b7;
}

.outline__item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: solid 1.5px #fff;
  color: #fff;
  text-align: justify;
  line-height: 1.8;
}

.outline__item:last-child {
  border-bottom: solid 1.5px #fff;
}

.outline__dt {
  border-right: solid 1.5px #fff;
}

.outline__ttl {
  color: #fff;
  text-align: center;
  letter-spacing: 0.2em;
}

.outline__rema {
  color: #fff;
  line-height: 1.75;
}

.outline__map-item {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.outline__gmap {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.house-plan {
  background-color: #eef2f6;
}

.house-plan__ttl {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  color: #231815;
  letter-spacing: 0.15em;
  font-weight: normal;
}

.house-plan__desc {
  position: relative;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 2.1;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}

.house-plan__banner-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 80%;
  margin: 0 auto;
}

.house-plan__banner {
  display: block;
  width: 33.3333%;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

.house-plan__banner img {
  width: 100%;
}

.house-plan__works-wrap {
  width: 80%;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.house-plan__works-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  width: 48.5%;
}

.house-plan__works-pic {
  width: 46%;
}

.house-plan__works-pic img {
  width: 100%;
}

.house-plan__works-content {
  width: 54%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #fff;
  text-align: center;
}

.house-plan__works-case {
  color: #5f7881;
  font-weight: 500;
}

.house-plan__works-desc {
  line-height: 1.75;
  color: #231815;
}

.house-plan__works-sec {
  color: #231815;
}

.house-plan__works-sec::before {
  content: "";
  display: block;
  margin: 0 auto;
  height: 1.5px;
  background-color: #231815;
}

.interior-plan__container {
  background-image: url(../images/section_back.png);
  background-repeat: no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  background-position: center;
}

.interior-plan__wrap {
  width: 70.5%;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.interior-plan__item {
  width: 50%;
}

.interior-plan__catch {
  font-family: "Shippori Mincho", serif;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.2em;
}

.interior-plan__desc {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  text-align: center;
  line-height: 2.35;
  letter-spacing: 0.13em;
}

.section-inquiry__sub-ttl {
  color: #231815;
  text-align: center;
  font-family: "Shippori Mincho", serif;
}

.section-inquiry__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-inline-size: 1000px;
}

.section-inquiry__btn {
  position: relative;
  color: #5f7881;
  border: solid 1px #778592;
  font-family: "Shippori Mincho", serif;
  letter-spacing: 0.1em;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

.section-inquiry__btn span {
  position: relative;
  z-index: 1;
  display: inline-block;
  -webkit-transition: 0.3s ease;
  -moz-transition: 0.3s ease;
  transition: 0.3s ease;
}

.section-inquiry__btn span:first-child {
  color: #fff;
  background-color: #778592;
}

.footer {
  background-color: #00a0bd;
}

.footer__logo {
  text-align: center;
  vertical-align: middle;
}

.footer__address {
  color: #fff;
  text-align: center;
}

.footer__address img {
  vertical-align: middle;
}

.footer__copy {
  display: block;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1025px), print {
  .anchor {
    padding-top: 90px;
    margin-top: -90px;
  }

  .main {
    margin: 90px 0 0;
  }

  .section-ttl {
    margin-top: 35px;
    font-size: 3.3rem;
  }

  .section-ttl::after {
    margin: 15px auto 0;
  }

  .section-txt {
    margin-top: 24px;
  }

  .section-txt img {
    height: 28px;
  }

  .content-logo {
    text-align: center;
  }

  .content-logo img {
    width: 20%;
    max-width: 210px;
  }

  .more-btn {
    margin-top: 60px;
  }

  .more-btn a {
    display: inline-block;
    padding: 10px 22px;
    font-size: 1.4rem;
  }

  .more-btn a:hover {
    background-color: #231815;
    color: #fff;
  }

  .more-btn a:hover::after {
    -webkit-transform: translate(10px, 0);
    -moz-transform: translate(10px, 0);
    -ms-transform: translate(10px, 0);
    transform: translate(10px, 0);
  }

  .page-top {
    width: 80px;
    height: 80px;
  }

  .page-top::after {
    border-bottom: solid 12px #fff;
    border-left: solid 12px transparent;
    border-right: solid 12px transparent;
  }

  .page-top:hover {
    background-color: #4f646c;
  }

  .section-image.ma {
    margin-top: 40px;
  }

  .section-image__cap {
    font-size: 1.3rem;
  }

  .main-copy {
    padding: 30px 0;
  }

  .main-copy__txt {
    font-size: 3.75rem;
  }

  .main-copy__txt strong {
    padding: 0 10px;
    font-size: 7rem;
  }

  .section-top {
    margin: 150px 0 0;
    padding: 0 0 120px;
  }

  .section-top__logo img {
    width: 20%;
    max-width: 210px;
  }

  .section-top__ttl {
    margin: 50px 0 0;
    font-size: 2.65rem;
  }

  .section-top__catch {
    margin: 35px 0 45px;
    font-size: 3.3rem;
  }

  .section-top__desc {
    margin: 35px 0 0;
    font-size: 1.6rem;
  }

  .section-top__sub-ttl {
    margin: 50px 0 0;
    font-size: 2.3rem;
  }

  .section-top__route-map {
    margin: 90px auto 0;
    max-width: 1500px;
  }

  .section-top__time {
    margin-top: 100px;
  }

  .section-top__time-wrap {
    max-width: 850px;
  }

  .section-top__time-head {
    max-width: 850px;
    padding: 4px 16.5px;
    font-size: 1.8rem;
  }

  .section-top__time-item {
    width: 45.7%;
  }

  .section-top__time-list {
    margin-top: 3px;
  }

  .section-top__time-list.first {
    margin-top: 10px;
  }

  .section-top__time-sta {
    padding-right: 8px;
    font-size: 1.7rem;
  }

  .section-top__time-ann {
    margin-top: -8px;
    font-size: 1.3rem;
  }

  .section-top__time-space {
    padding: 0 10px;
  }

  .section-top__time-req {
    padding-left: 8px;
    font-size: 1.7rem;
  }

  .section-top__time-req span {
    padding: 0 2px;
    font-size: 2.9rem;
  }

  .life__top {
    margin-top: 80px;
  }

  .life__catch {
    padding: 30px 0 0;
    font-size: 3.3rem;
  }

  .life__desc {
    margin-top: 30px;
    font-size: 1.6rem;
  }

  .life__desc.ma-b {
    margin-top: 85px;
  }

  .life__pic {
    margin-top: 120px;
  }

  .life__env {
    margin: 85px 0;
  }

  .life__map {
    margin: 40px auto 0;
    max-width: 1200px;
  }

  .life__support {
    margin-top: 70px;
  }

  .life__support-wrap {
    max-width: 1500px;
    margin: 80px auto 0;
  }

  .life__support-item:last-child {
    margin-left: 50px;
  }

  .life__support-head {
    padding: 8px 0;
    font-size: 2.3rem;
  }

  .life__support-desc {
    margin: 18px 0 0;
    font-size: 1.6rem;
  }

  .life__support-desc span {
    font-size: 1.3rem;
  }

  .life__support-link {
    margin-top: 35px;
    font-size: 1.4rem;
  }

  .life__support-link a {
    margin: 8px 0 0;
    font-size: 1.3rem;
  }

  .life__support-link a::after {
    margin-top: 5px;
  }

  .life__support-link a:hover::after {
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .section-loca {
    margin: 120px 0 0;
  }

  .section-loca__contents {
    margin: 40px auto 0;
  }

  .section-loca__contents::after {
    content: "";
    display: block;
    width: 31.5%;
    height: 0;
  }

  .section-loca__item {
    margin-top: 30px;
  }

  .section-loca__item-cap {
    margin: 10px 0 0;
    font-size: 1.3em;
  }

  .section-loca__details {
    margin: 55px auto 0;
  }

  .section-loca__details-list {
    margin: 0;
  }

  .section-loca__details-list li {
    margin-top: 8px;
    font-size: 1.3rem;
  }

  .town {
    padding: 115px 0 0;
  }

  .town__wrapper {
    margin-top: 50px;
  }

  .town__plan {
    margin-top: 60px;
    min-width: 650px;
  }

  .town__plan-item {
    padding: 7px 0;
    font-size: 1.7rem;
  }

  .town__plan-area {
    padding: 3px 0 0 68px;
  }

  .town__plan-price {
    padding: 3px 0 0 38px;
  }

  .outline {
    margin-top: 100px;
  }

  .outline__wrapper {
    width: 85%;
    max-width: 1200px;
    padding: 150px 0;
  }

  .outline__table {
    width: 67%;
    margin: 40px auto 0;
  }

  .outline__item {
    padding: 6px 0;
    font-size: 1.4rem;
  }

  .outline__dt {
    width: 20%;
    padding: 5px 0 5px 30px;
  }

  .outline__dd {
    width: 80%;
    padding: 5px 0 5px 30px;
  }

  .outline__ttl {
    margin: 20px 0 0;
    font-size: 2rem;
  }

  .outline__rema {
    width: 67%;
    margin: 25px auto 0;
    font-size: 1.3rem;
  }

  .outline__map {
    padding-bottom: 164px;
  }

  .outline__map-wrapper {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .house-plan {
    padding: 50px 0 80px;
  }

  .house-plan__ttl {
    margin: 27px 0 120px;
    font-size: 3.3rem;
  }

  .house-plan__desc {
    margin: 40px 0 0;
    font-size: 1.8rem;
  }

  .house-plan__banner-wrap {
    margin-top: 80px;
  }

  .house-plan__banner:hover {
    opacity: 0.85;
  }

  .house-plan__works {
    margin-top: 100px;
  }

  .house-plan__works-wrap {
    max-width: 1500px;
    margin-top: 50px;
    padding: 55px 45px;
  }

  .house-plan__works-item:nth-child(n + 3) {
    margin-top: 40px;
  }

  .house-plan__works-item:hover .house-plan__works-desc span {
    -moz-background-size: 100% 2px;
    background-size: 100% 2px;
  }

  .house-plan__works-item:hover .house-plan__works-pic::before {
    background-color: rgba(0, 0, 0, 0.2);
  }

  .house-plan__works-item:hover .house-plan__works-pic img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .house-plan__works-pic {
    position: relative;
    overflow: hidden;
  }

  .house-plan__works-pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-pic img {
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-case {
    font-size: 2.2rem;
  }

  .house-plan__works-desc {
    margin-top: 13px;
    font-size: 2.15rem;
  }

  .house-plan__works-desc span {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#231815), to(#231815));
    background-image: -webkit-linear-gradient(top, #231815 0%, #231815 100%);
    background-image: -moz- oldlinear-gradient(top, #231815 0%, #231815 100%);
    background-image: linear-gradient(to bottom, #231815 0%, #231815 100%);
    -moz-background-size: 0 2px;
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0px 98%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-sec {
    margin-top: 15px;
    font-size: 1.5rem;
  }

  .house-plan__works-sec::before {
    width: 70px;
    margin-bottom: 10px;
  }

  .interior-plan {
    margin-top: 79px;
  }

  .interior-plan__wrap {
    width: 70.5%;
    margin: 47px auto 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .interior-plan__catch {
    margin-top: 65px;
    font-size: 3.3rem;
  }

  .interior-plan__desc {
    margin-top: 20px;
    font-size: 1.6rem;
  }

  .section-inquiry {
    margin: 100px 0 0;
  }

  .section-inquiry__sub-ttl {
    margin: 50px 0 0;
    font-size: 2rem;
  }

  .section-inquiry__wrapper {
    margin: 64px auto 0;
  }

  .section-inquiry__btn {
    font-size: 1.5rem;
  }

  .section-inquiry__btn span {
    padding: 7px 20px;
  }

  .section-inquiry__btn:last-child span {
    padding: 7px 30px;
  }

  .section-inquiry__btn:hover {
    background-color: #5f7881;
    color: #fff;
  }

  .section-inquiry__btn:hover::before {
    width: 100%;
  }

  .footer {
    margin: 75px 0 0;
    padding: 70px 0 30px;
    background-color: #00a0bd;
  }

  .footer__logo img {
    width: 190px;
  }

  .footer__address {
    margin: 30px 0 0;
    font-size: 1.3rem;
  }

  .footer__address img {
    width: 87px;
  }

  .footer__copy {
    margin: 45px 0 0;
    font-size: 1.1rem;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .anchor {
    padding-top: 80px;
    margin-top: -80px;
  }

  .main {
    margin-top: 70px;
  }

  .section-ttl {
    margin-top: 35px;
    font-size: 2.6em;
  }

  .section-ttl::after {
    width: 8.5%;
    margin: 15px auto 0;
  }

  .section-txt {
    margin-top: 20px;
  }

  .section-txt img {
    height: 22px;
  }

  .content-logo {
    text-align: center;
  }

  .content-logo img {
    width: 22%;
  }

  .more-btn {
    margin-top: 60px;
  }

  .more-btn a {
    display: inline-block;
    padding: 9px 20px;
    font-size: 1.3rem;
  }

  .page-top {
    width: 70px;
    height: 70px;
  }

  .page-top::after {
    border-bottom: solid 11px #fff;
    border-left: solid 11px transparent;
    border-right: solid 11px transparent;
  }

  .main-visual__logo {
    width: 35%;
  }

  .main-visual__txt {
    top: 59%;
    width: 80%;
  }

  .main-copy {
    padding: 20px 0;
  }

  .main-copy__txt {
    font-size: 2.5rem;
  }

  .main-copy__txt strong {
    padding: 0 7px;
    font-size: 4.5rem;
  }

  .section-image.ma {
    margin-top: 30px;
  }

  .section-image__cap {
    font-size: 1.3rem;
  }

  .section-top {
    margin: 100px 0 0;
    padding: 0 0 65px;
  }

  .section-top__logo img {
    width: 22%;
  }

  .section-top__ttl {
    margin: 30px 0 0;
    font-size: 1.9rem;
  }

  .section-top__catch {
    margin: 60px 0 0;
    font-size: 2.6rem;
  }

  .section-top__desc {
    width: 90%;
    margin: 25px auto 0;
    font-size: 1.5rem;
    line-height: 2.1;
    text-align: center;
  }

  .section-top__sub-ttl {
    margin: 45px 0 0;
    font-size: 2rem;
  }

  .section-top__route-map {
    margin: 50px auto 0;
  }

  .section-top__time {
    margin-top: 65px;
  }

  .section-top__time-wrap {
    max-width: 850px;
  }

  .section-top__time-head {
    padding: 4px 16.5px;
    font-size: 1.7rem;
  }

  .section-top__time-item {
    width: 45.7%;
  }

  .section-top__time-list {
    margin-top: 3px;
  }

  .section-top__time-list.first {
    margin-top: 10px;
  }

  .section-top__time-sta {
    padding-right: 8px;
    font-size: 1.5rem;
  }

  .section-top__time-space {
    padding: 0 10px;
  }

  .section-top__time-req {
    padding-left: 8px;
    font-size: 1.6rem;
  }

  .section-top__time-req span {
    padding: 0 2px;
    font-size: 2.7rem;
  }

  .life__top {
    margin-top: 60px;
  }

  .life__catch {
    padding: 30px 0 0;
    font-size: 2.6rem;
  }

  .life__desc {
    width: 90%;
    margin: 20px auto 0;
    font-size: 1.5rem;
  }

  .life__desc.ma-b {
    margin-top: 60px;
  }

  .life__pic {
    margin-top: 60px;
  }

  .life__env {
    margin: 65px 0;
  }

  .life__map {
    margin: 30px auto 0;
    max-width: 1200px;
  }

  .life__support {
    margin-top: 60px;
  }

  .life__support-wrap {
    max-width: 1500px;
    margin: 55px auto 0;
  }

  .life__support-item {
    width: 40%;
  }

  .life__support-item:last-child {
    margin-left: 25px;
  }

  .life__support-head {
    padding: 5px 0;
    font-size: 1.8rem;
  }

  .life__support-desc {
    margin: 16px 0 0;
    font-size: 1.6rem;
    text-align: left;
  }

  .life__support-desc span {
    font-size: 1.3rem;
  }

  .life__support-link {
    margin-top: 35px;
    font-size: 1.4rem;
  }

  .life__support-link a {
    margin: 8px 0 0;
    font-size: 1.3rem;
  }

  .life__support-link a::after {
    margin-top: 5px;
  }

  .life__support-link a:hover::after {
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  .section-loca {
    margin: 80px 0 0;
  }

  .section-loca__contents {
    width: 85%;
    margin: 30px auto 0;
  }

  .section-loca__item {
    margin-top: 25px;
    width: 47%;
  }

  .section-loca__item:nth-child(-n + 2) {
    width: 100%;
  }

  .section-loca__item-cap {
    margin: 8px 0 0;
    font-size: 1.3rem;
  }

  .section-loca__details {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 20px auto 0;
  }

  .section-loca__details-list {
    width: 50%;
    margin-top: 30px;
  }

  .section-loca__details-list li {
    margin-top: 10px;
    font-size: 1.3rem;
  }

  .section-loca__map {
    width: 85%;
    margin: 43px auto 0;
  }

  .town {
    padding: 70px 0 40px;
  }

  .town__wrapper {
    width: 85%;
    margin-top: 40px;
  }

  .town__map {
    width: 100%;
  }

  .town__plan {
    width: 85%;
    margin-top: 60px;
  }

  .town__plan-item {
    padding: 7px 0;
    font-size: 1.7rem;
  }

  .town__plan-area {
    padding: 3px 0 0 35px;
  }

  .town__plan-price {
    padding: 3px 0 0 25px;
  }

  .outline {
    padding-top: 70px;
  }

  .outline__wrapper {
    width: 80%;
    padding: 58px 0;
  }

  .outline__head img {
    height: 40px;
  }

  .outline__table {
    width: 80%;
    margin: 35px auto 0;
  }

  .outline__item {
    padding: 5px 0;
    font-size: 1.4rem;
  }

  .outline__dt {
    width: 25%;
    padding: 5px 0 5px 10px;
  }

  .outline__dd {
    width: 85%;
    padding: 5px 0 5px 10px;
  }

  .outline__ttl {
    margin: 15px 0 0;
    font-size: 1.9rem;
  }

  .outline__rema {
    width: 80%;
    margin: 30px auto 0;
    font-size: 1.3rem;
  }

  .outline__map {
    padding-bottom: 90px;
  }

  .outline__map-wrapper {
    width: 80%;
    margin: 0 auto;
  }

  .house-plan {
    padding: 20px 0 70px;
  }

  .house-plan__ttl {
    margin: 35px 0;
    font-size: 2.6rem;
  }

  .house-plan__desc {
    margin: 40px 0 0;
    font-size: 1.7rem;
  }

  .house-plan__banner-wrap {
    width: 90%;
    margin-top: 60px;
  }

  .house-plan__works {
    margin-top: 70px;
  }

  .house-plan__works-wrap {
    width: 100%;
    margin-top: 30px;
    padding: 35px 30px;
  }

  .house-plan__works-item:nth-child(n + 3) {
    margin-top: 40px;
  }

  .house-plan__works-pic {
    position: relative;
    overflow: hidden;
    width: 57%;
  }

  .house-plan__works-pic::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-pic img {
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-case {
    font-size: 1.6rem;
  }

  .house-plan__works-desc {
    margin-top: 8px;
    font-size: 1.5rem;
  }

  .house-plan__works-desc span {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#231815), to(#231815));
    background-image: -webkit-linear-gradient(top, #231815 0%, #231815 100%);
    background-image: -moz- oldlinear-gradient(top, #231815 0%, #231815 100%);
    background-image: linear-gradient(to bottom, #231815 0%, #231815 100%);
    -moz-background-size: 0 2px;
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0px 98%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-sec {
    margin-top: 10px;
    font-size: 1.4rem;
  }

  .house-plan__works-sec::before {
    width: 70px;
    margin-bottom: 10px;
  }

  .interior-plan {
    margin-top: 75px;
  }

  .interior-plan__wrap {
    width: 80%;
    margin: 47px auto 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .interior-plan__catch {
    margin-top: 45px;
    font-size: 2.6rem;
  }

  .interior-plan__desc {
    margin-top: 20px;
    font-size: 1.5rem;
  }

  .section-inquiry {
    margin: 60px 0 0;
  }

  .section-inquiry__sub-ttl {
    margin: 30px 0 0;
    font-size: 1.8rem;
  }

  .section-inquiry__wrapper {
    margin: 30px 0 0;
  }

  .section-inquiry__btn {
    margin: 20px 0 0;
    font-size: 1.5rem;
    text-align: center;
  }

  .section-inquiry__btn span {
    padding: 5px 15px;
  }

  .section-inquiry__btn:first-child {
    margin-right: 40px;
  }

  .footer {
    margin: 70px 0 0;
    padding: 70px 0 50px;
    background-color: #00a0bd;
  }

  .footer__logo img {
    width: 150px;
  }

  .footer__address {
    margin: 30px 0 0;
    font-size: 1.4rem;
    line-height: 2;
  }

  .footer__address img {
    width: 87px;
  }

  .footer__copy {
    margin: 25px 0 0;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 599px) {
  .anchor {
    padding-top: 76px;
    margin-top: -76px;
  }

  .main {
    margin-top: 65px;
  }

  .section-ttl {
    margin-top: 25px;
    font-size: 2rem;
    font-weight: 500;
  }

  .section-ttl.sep span {
    padding-bottom: 10px;
  }

  .section-ttl::after {
    width: 20%;
    margin: 12px auto 0;
  }

  .section-txt {
    margin-top: 20px;
  }

  .section-txt img {
    height: 20px;
  }

  .content-logo {
    text-align: center;
  }

  .content-logo img {
    width: 33%;
  }

  .more-btn {
    margin-top: 50px;
  }

  .more-btn a {
    display: inline-block;
    padding: 6px 20px;
    font-size: 1.3rem;
  }

  .page-top {
    width: 50px;
    height: 50px;
  }

  .page-top::after {
    border-bottom: solid 9px #fff;
    border-left: solid 9px transparent;
    border-right: solid 9px transparent;
  }

  .section-image {
    display: block;
  }

  .section-image.ma {
    margin-top: 40px;
  }

  .section-image__item {
    width: 100%;
  }

  .section-image__cap {
    font-size: 1.2rem;
  }

  .section-image__cap.second {
    left: var(--pos);
  }

  .main-visual__logo {
    width: 35%;
  }

  .main-visual__txt {
    top: 65%;
    width: 90%;
  }

  .main-copy {
    padding: 15px 0;
  }

  .main-copy__txt {
    font-size: 1.6rem;
    font-weight: 600;
  }

  .main-copy__txt strong {
    padding: 0 7px;
    font-size: 2.85rem;
  }

  .section-top {
    margin: 60px 0 0;
    padding: 0 0 60px;
  }

  .section-top__logo img {
    width: 33%;
  }

  .section-top__ttl {
    margin: 20px 0 0;
    font-size: 1.8rem;
  }

  .section-top__catch {
    margin: 35px 0 0;
    font-size: 2rem;
    font-weight: 500;
  }

  .section-top__desc {
    width: 85%;
    margin: 25px auto 0;
    font-size: 1.4rem;
    line-height: 2.1;
    text-align: left;
  }

  .section-top__sub-ttl {
    margin: 30px 0 0;
    font-size: 1.8rem;
  }

  .section-top__route-map {
    margin: 30px auto 0;
    width: 90%;
    overflow-x: scroll;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .section-top__route-map img {
    width: auto;
    max-width: none;
    height: 300px;
  }

  .section-top__time {
    margin-top: 45px;
  }

  .section-top__time-wrap {
    display: block;
  }

  .section-top__time-head {
    padding: 4px 8px;
    font-size: 1.5rem;
    font-weight: 500;
  }

  .section-top__time-item {
    width: 100%;
  }

  .section-top__time-item:first-child {
    margin-top: 20px;
  }

  .section-top__time-list {
    margin-top: 2px;
  }

  .section-top__time-sta {
    padding-right: 8px;
    font-size: 1.4rem;
  }

  .section-top__time-space {
    padding: 0 10px;
  }

  .section-top__time-req {
    padding-left: 8px;
    font-size: 1.5rem;
  }

  .section-top__time-req span {
    padding: 0 2px;
    font-size: 2.4rem;
    letter-spacing: 0.02em;
  }

  .life__top {
    margin-top: 40px;
  }

  .life__catch {
    padding: 30px 0 0;
    font-size: 1.8rem;
    font-weight: 500;
  }

  .life__desc {
    width: 85%;
    margin: 22px auto 0;
    text-align: justify;
    font-size: 1.4rem;
    line-height: 2.1;
  }

  .life__desc.ma-b {
    margin-top: 40px;
  }

  .life__pic {
    overflow-y: scroll;
    margin-top: 76px;
  }

  .life__pic img {
    width: auto;
    max-width: none;
    height: 550px;
  }

  .life__env {
    margin: 50px 0;
  }

  .life__map {
    width: 100%;
    margin: 43px auto 0;
    overflow-y: auto;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }

  .life__map img {
    width: auto;
    max-width: none;
    height: 500px;
  }

  .life__map-desc {
    margin: 10px auto 0;
    padding: 7px 10px;
    color: #231815;
    font-size: 1.2rem;
  }

  .life__map-desc img {
    margin-right: 8px;
    width: 28px;
    vertical-align: middle;
  }

  .life__support {
    margin-top: 50px;
  }

  .life__support-wrap {
    display: block;
    max-width: 1500px;
    margin: 55px auto 0;
  }

  .life__support-item {
    width: 100%;
    margin-top: 35px;
  }

  .life__support-head {
    padding: 5px 0;
    font-size: 1.7rem;
  }

  .life__support-desc {
    margin: 15px 0 0;
    font-size: 1.5rem;
  }

  .life__support-desc span {
    font-size: 1.3rem;
  }

  .life__support-link {
    margin-top: 20px;
    font-size: 1.3rem;
  }

  .life__support-link a {
    margin: 8px 0 0;
    font-size: 1.2rem;
    text-decoration: underline;
  }

  .life__support-link a::after {
    margin-top: 5px;
  }

  .section-loca {
    margin: 65px 0 0;
  }

  .section-loca__contents {
    margin: 20px auto 0;
  }

  .section-loca__item {
    margin-top: 20px;
    width: 48%;
  }

  .section-loca__item:nth-child(-n + 2) {
    width: 100%;
  }

  .section-loca__item-cap {
    margin: 8px 0 0;
    font-size: 1.2rem;
  }

  .section-loca__details {
    display: block;
    margin: 30px auto 0;
  }

  .section-loca__details-list {
    display: block;
    margin: 35px auto 0;
  }

  .section-loca__details-list li {
    display: block;
    margin-top: 5px;
    text-indent: -1.5em;
    padding-left: 1.5em;
    width: 100%;
    font-size: 1.2rem;
  }

  .town {
    padding: 60px 0 40px;
  }

  .town__wrapper {
    width: 100%;
    margin-top: 40px;
    display: block;
  }

  .town__map {
    overflow-x: scroll;
  }

  .town__map img {
    width: auto;
    max-width: none;
    height: 500px;
  }

  .town__plan {
    margin-top: 40px;
    width: 85%;
  }

  .town__plan-item {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 7px 0;
    font-size: 1.4rem;
  }

  .town__plan-area {
    width: 62%;
    padding: 3px 5px;
  }

  .town__plan-price {
    width: 38%;
    padding: 3px 7px;
  }

  .outline {
    padding-top: 50px;
  }

  .outline__wrapper {
    width: 100%;
    padding: 52px 0 40px;
  }

  .outline__head img {
    height: 30px;
  }

  .outline__table {
    width: 80%;
    margin: 29px auto 0;
  }

  .outline__item {
    padding: 5px 0;
    font-size: 1.3rem;
  }

  .outline__dt {
    width: 30%;
    padding: 5px;
  }

  .outline__dd {
    width: 70%;
    padding: 5px 0 5px 10px;
  }

  .outline__ttl {
    margin: 17px 0 0;
    font-size: 1.6rem;
  }

  .outline__rema {
    width: 80%;
    margin: 20px auto 0;
    font-size: 1.2rem;
  }

  .outline__map {
    padding-bottom: 70px;
  }

  .outline__map-wrapper {
    width: 100%;
    margin: 0 auto;
  }

  .house-plan {
    padding: 20px 0 68px;
  }

  .house-plan__ttl {
    margin: 35px 0;
    font-size: 2rem;
    font-weight: 500;
  }

  .house-plan__desc {
    width: 90%;
    margin: 30px auto 0;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: left;
  }

  .house-plan__banner-wrap {
    display: block;
    width: 85%;
    margin-top: 45px;
  }

  .house-plan__banner {
    margin-top: 25px;
    width: 100%;
  }

  .house-plan__works {
    margin-top: 50px;
  }

  .house-plan__works-wrap {
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 35px 0;
  }

  .house-plan__works-item {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .house-plan__works-item:not(:first-child) {
    margin-top: 20px;
  }

  .house-plan__works-pic {
    width: 40%;
  }

  .house-plan__works-content {
    width: 60%;
  }

  .house-plan__works-case {
    font-size: 1.55rem;
  }

  .house-plan__works-desc {
    margin-top: 7px;
    font-size: 1.4rem;
  }

  .house-plan__works-desc span {
    background-image: -webkit-gradient(linear, left top, left bottom, from(#231815), to(#231815));
    background-image: -webkit-linear-gradient(top, #231815 0%, #231815 100%);
    background-image: -moz- oldlinear-gradient(top, #231815 0%, #231815 100%);
    background-image: linear-gradient(to bottom, #231815 0%, #231815 100%);
    -moz-background-size: 0 2px;
    background-size: 0 2px;
    background-repeat: no-repeat;
    background-position: 0px 98%;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
  }

  .house-plan__works-sec {
    margin-top: 7px;
    font-size: 1.3rem;
  }

  .house-plan__works-sec::before {
    width: 70px;
    margin-bottom: 7px;
  }

  .interior-plan {
    margin-top: 65px;
  }

  .interior-plan__container {
    margin: 30px auto 0;
  }

  .interior-plan__wrap {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
  }

  .interior-plan__catch {
    margin-top: 40px;
    font-size: 2rem;
    font-weight: 500;
  }

  .interior-plan__desc {
    width: 80%;
    margin: 20px auto 0;
    font-size: 1.4rem;
    text-align: justify;
    line-height: 2;
  }

  .section-inquiry {
    margin: 48px 0 0;
  }

  .section-inquiry__sub-ttl {
    margin: 30px 0 0;
    font-size: 1.6rem;
    font-weight: 500;
  }

  .section-inquiry__wrapper {
    display: block;
    margin: 40px 0 0;
  }

  .section-inquiry__btn {
    display: block;
    width: 80%;
    margin: 20px auto 0;
    font-size: 1.4rem;
    text-align: center;
    font-weight: 500;
  }

  .section-inquiry__btn:first-child {
    margin-top: 0;
  }

  .section-inquiry__btn span {
    padding: 5px 15px;
    text-align: center;
  }

  .section-inquiry__btn span:first-child {
    width: 35%;
  }

  .section-inquiry__btn span:last-child {
    width: 65%;
  }

  .footer {
    margin: 65px 0 0;
    padding: 40px 0 70px;
    background-color: #00a0bd;
  }

  .footer__logo img {
    width: 140px;
  }

  .footer__address {
    margin: 30px 0 0;
    font-size: 1.3rem;
    line-height: 2;
  }

  .footer__address img {
    width: 87px;
  }

  .footer__copy {
    margin: 25px 0 0;
    font-size: 1.1rem;
  }

  .contact_sp {
    position: fixed;
    bottom: 0;
    width: 100%;
  }

  .contact_sp ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact_sp ul li a {
    width: 100%;
    height: auto;
    display: block;
    font-size: 1.6rem;
    line-height: 1.5em;
    padding: 1.5em 0 1em;
    letter-spacing: 0.25em;
    color: #fff;
    font-family: "kozuka-gothic-pro", sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: center;
  }

  .shiryou a {
    background-color: #778592;
  }

  .raijyou a {
    border-right: 1px solid #fff;

    background-color: #778592;
  }
}

/*csspc*********************************************/
.contact_pc ul .shiryou {
  display: none;
}

.contact_pc ul .raijyou {
  display: none;
}
