@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&family=Roboto:wght@400;700&display=swap");

/*common*/

* {
  box-sizing: border-box;
}
body {
  color: #333;
}
a {
  color: #287042;
  text-decoration: underline;
}
.spHide {
  display: none;
}

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

hr {
  display: block;
  max-width: 1120px;
  width: 100%;
  height: 5px;
  background: #f3f0eb;
  border: none;
  margin: 0 auto;
}

/*section common*/

.section {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.section-inner {
  margin: 0 15px;
}

/*header*/
#header {
  position: absolute;
  padding: 20px 15px;
  width: 100%;
}

.head-ttl {
  display: flex;
  align-items: center;
  z-index: 10;
  position: relative;
}
.head-ttl .logo {
  width: 110px;
  height: auto;
  margin-right: 10px;
}
.head-ttl .ttl {
  background: #287042;
  color: #fff;
  padding: 8px;
  font-weight: bold;
  line-height: 1;
  font-size: 11px;
}
.head-ttl .ttl::before {
  content: "#";
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f3f0eb;
  transition: 0.3s;
  padding: 0 50px;
  opacity: 0;
  z-index: 1;
}

.menu li a {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.menu.open {
  opacity: 1;
  z-index: 100;
}

.menu-list {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn {
  border: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  position: fixed;
  top: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 110;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 15%);
}
.btn-line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -18%;
  width: 36%;
  height: 2px;
  background-color: #000;
  transition: 0.2s;
}

.btn-line::before,
.btn-line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  transition: 0.5s;
}
.btn-line::before {
  transform: translateY(-7px);
}
.btn-line::after {
  transform: translateY(7px);
}

.btn-line.open {
  background-color: transparent;
}
.btn-line.open::before,
.btn-line.open::after {
  content: "";
  background-color: #333;
  transition: 0.2s;
}
.btn-line.open::before {
  transform: rotate(45deg);
}
.btn-line.open::after {
  transform: rotate(-45deg);
}

/*manga*/

#manga {
  padding-top: 75px;
  background: #f3f0eb;
}
#manga .section-inner {
  max-width: 760px;
  margin: 0 15px;
}
#manga .manga-list {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgb(0 0 0 / 15%);
  border: 10px solid #fff;
  margin-bottom: 10px;
}
#manga .manga-list:last-child {
  margin-bottom: 0;
}

/*読み物部分*/

.section-ttl,
.section-ttl span {
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  font-size: 26px;
  margin-bottom: 2em;
}
.section-ttl .marker {
  background: linear-gradient(transparent 50%, rgba(255, 132, 0, 0.3) 0%);
}

.chat-box-wrap {
  width: 100%;
}
.chat-box {
  display: flex;
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 1.5em;
  line-height: 1.7;
}
.chat-box .icon {
  text-align: center;
  margin-right: 20px;
}
.chat-box .icon figure {
  width: 50px;
}
.chat-box .icon figure img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ccc;
}
.chat-box .icon figcaption {
  font-weight: bold;
  line-height: 1;
  margin-top: 12px;
  font-size: 12px;
}
.chat-box .text {
  width: fit-content;
}
.notes-text {
  max-width: 840px;
  margin: 0 auto;
  margin-bottom: 1.5em;
  color: #707070;
  font-size: 14px;
}
.chit-chat {
  display: flex;
  align-items: center;
  justify-content: center;
}
.chit-chat .icon figure {
  width: 60px;
}
.chit-chat .icon figure img {
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #f3f0eb;
}
.chit-chat .chit-chat-say {
  position: relative;
  display: inline-block;
  padding: 14px;
  min-width: 120px;
  max-width: 100%;
  font-size: 16px;
  font-weight: bold;
  background: #f3f0eb;
  border-radius: 6px;
  margin-left: 15px;
}
.chit-chat .chit-chat-say::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -10px;
  border: 10px solid transparent;
  border-right: 10px solid #f3f0eb;
}

.section-point {
  position: relative;
  background: #f3f0eb;
  text-align: center;
  border-radius: 15px;
  padding: 25px;
  margin: 2.2em 0;
}
.section-point::before {
  content: "Point";
  display: block;
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  background: #287042;
  color: #fff;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  line-height: 1;
  padding: 3px 30px;
}
.section-point .point-ttl {
  font-size: 20px;
  font-weight: bold;
}

/**/
.photo-box figure {
  overflow: hidden;
  margin-bottom: 3px;
}
.photo-box figure:first-of-type {
  border-radius: 15px 15px 0 0;
}
.photo-box figure:last-of-type {
  border-radius: 0 0 15px 15px;
}

.photo-box p {
  font-size: 14px;
  color: #999;
  margin-top: 1em;
}
/*普通の家づくりとの違い*/
.daiji-div {
  position: relative;
  z-index: 1;
  padding-bottom: 60px;
}
.daiji-div .tsumari-box {
  position: relative;
  background: #287042;
  text-align: center;
  padding: 30px 15px 20px;
  margin-bottom: 40px;
}
.daiji-div .tsumari-box:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
  border-width: 20px 30px 0 30px;
}
.daiji-div .tsumari-box h3 {
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  font-size: 20px;
}
.diy-works h4 {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.diy-works h4 .small {
  font-weight: bold;
  font-size: 80%;
}
.diy-works-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
  margin-top: 25px;
}
.diy-works-list li {
  width: calc(50vw - 20px);
  margin-bottom: 15px;
}
.diy-works-list figure img {
  border-radius: 8px;
}
.diy-works-list figcaption {
  text-align: center;
  font-size: 14px;
  font-weight: bold;
}

.diy-lecture {
  background: #f3f0eb;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  flex-flow: column;
}
.diy-lecture h4 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}
.diy-lecture .text {
  margin-bottom: 20px;
}
.diy-lecture p {
  font-size: 14px;
  line-height: 1.7;
}
.diy-lecture .photo img {
  border-radius: 10px;
}

/*施主様の声*/
#voice {
  background: #f3f0eb;
}
#voice .section-ttl,
.section-ttl span {
  margin-bottom: 1em;
}
#voice .chit-chat .icon figure img {
  border: none;
}
#voice .chit-chat .chit-chat-say {
  background: #fff;
}
#voice .chit-chat .chit-chat-say::before {
  border-right: 10px solid #fff;
}
.voice-list {
  margin-top: 30px;
}
.voice-list li {
  margin-bottom: 20px;
}
.voice-list li:last-child {
  margin-bottom: 0;
}
.voice-list a {
  display: block;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
}
.voice-list li a figure {
  position: relative;
}
.voice-list li a figure img {
}
.voice-list li a p.label.kikan,
.voice-list li a p.label.prof {
  width: max-content;
  white-space: nowrap;
  display: block;
  color: #fff;
  line-height: 1;
  font-weight: bold;
  padding: 6px;
  position: absolute;
  font-size: 12px;
  left: 20px;
}
.voice-list li a p.label.prof {
  background: #287042;
  bottom: 44px;
}
.voice-list li a p.label.kikan {
  background: #000;
  bottom: 20px;
}
.voice-list li a p.voice-ttl {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  padding: 20px;
}

/*よくある質問*/
#faq {
  padding-bottom: 20px;
}
#faq .section-ttl {
  margin-bottom: 0;
}
#faq dl {
}
#faq dl::before,
#faq dl .faq-list::after {
  content: "";
  display: block;
  max-width: 1120px;
  width: 100%;
  height: 5px;
  background: #f3f0eb;
  border: none;
  margin: 0 auto;
  border-radius: 3px;
  margin: 30px 0;
}
#faq dl .faq-list {
}
#faq dl .faq-list dt {
  margin-bottom: 30px;
}
#faq dl .faq-list dt,
#faq dl .faq-list dd {
  position: relative;
  padding-left: 30px;
}
#faq dl .faq-list dt h3,
#faq dl .faq-list dd h3 {
  font-size: 18px;
  font-weight: bold;
}
#faq dl .faq-list dt::before,
#faq dl .faq-list dd::before {
  font-family: "Roboto", sans-serif;
  display: block;
  content: "Q";
  color: #ff6200;
  font-size: 30px;
  position: absolute;
  top: -0.25em;
  left: 0;
}
#faq dl .faq-list dd::before {
  content: "A";
  color: #287042;
}
#faq dl .faq-list dd h3 {
  margin-bottom: 0.7em;
}
#faq dl .faq-list dd p {
}

/*お問い合わせ*/
.contact {
  padding-top: 0;
}
.contact .section-inner {
  background: #f3f0eb;
  margin: 0;
  padding: 40px 20px;
  text-align: center;
}
.contact-box p a {
  color: #fff;
  font-size: 5.5vw;
  padding: 20px;
  border-radius: 5px;
  line-height: 1;
  display: block;
  max-width: 500px;
  width: 100%;
  background: #ff6200;
  font-weight: bold;
  margin: 0 auto;
  margin-bottom: 30px;
  text-decoration: none;
  box-shadow: 2px 4px 10px rgb(0 0 0 / 15%);
}

.contact-box .contact-tel dt {
  font-weight: bold;
  font-size: 14px;
}
.contact-box .contact-tel .work-time {
  font-weight: bold;
  font-size: 12px;
}
.contact-box .contact-tel .phone-number {
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  padding: 0.4em 0 0.1em;
}

/*after-talk*/
#after-talk {
  padding: 0;
}
#after-talk .section-inner {
  margin-top: 60px;
}
#after-talk::before {
  content: "";
  display: block;
  max-width: 1120px;
  width: 100%;
  height: 5px;
  background: #f3f0eb;
  border: none;
  margin: 0 auto;
  border-radius: 3px;
}
#after-talk::after {
  content: "After Talk";
  display: inline-block;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  background: #fff;
  color: #287042;
  font-size: 26px;
  position: absolute;
  top: -0.4em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 10px;
  line-height: 1;
}

/*footer*/
#footer {
  text-align: center;
  line-height: 2;
  font-size: 12px;
  margin-bottom: 60px;
}

/*ad area*/
.section.ad-area {
  background: #faf9f4;
  padding: 30px;
}
.section.ad-area .ad-area-banner {
  max-width: 840px;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.section.ad-area .ad-area-banner a {
  text-decoration: none;
  color: #333;
}
.section.ad-area .ad-area-banner .ad-area-image {
  position: relative;
}
.section.ad-area .ad-area-banner .ad-area-image .ad-area-image-photo img {
  width: 100%;
  height: calc(70vw - 60px);
  object-fit: cover;
}
.section.ad-area .ad-area-banner .ad-area-image .ad-area-image-text {
  position: absolute;
  top: 50%;
  left: 10vw;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.section.ad-area .ad-area-banner .ad-area-image .ad-area-image-text img {
  width: calc(80vw - 60px);
  height: auto;
}
.section.ad-area .ad-area-banner .ad-area-cta {
  padding: 5vw;
}
.section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-logo {
  text-align: center;
  margin-bottom: 5vw;
}
.section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-logo img {
  width: 100px;
  height: auto;
}
.section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-text {
  font-weight: bold;
  margin-bottom: 5vw;
}
.section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-btn {
  background: #ff841e;
  border-radius: 20px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  width: 100%;
}

/* 600px以上 
---------------------------------------------------------*/
@media screen and (min-width: 600px) {
  /*common*/
  body {
    min-width: 1120px;
  }
  a:hover {
    text-decoration: none;
  }
  .spHide {
    display: inherit;
  }

  hr {
    border-radius: 3px;
  }

  /*section common*/
  .section {
    padding: 120px 0;
  }
  .section-inner {
    max-width: 1120px;
    margin: 0 auto;
  }
  .section-ttl,
  .section-ttl span {
    font-size: 38px;
  }
  .chat-box {
    margin-bottom: 60px;
  }
  .chat-box .icon {
    margin-right: 30px;
  }
  .chat-box .icon figure {
    width: 80px;
    margin-top: -5px;
  }
  .chat-box .icon figure img {
    border: 5px solid #ccc;
  }
  .chat-box .icon figcaption {
    font-size: 14px;
  }
  .notes-text {
    margin-bottom: 60px;
  }
  .chit-chat {
  }

  /*header*/
  #header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: absolute;
    width: 100%;
    z-index: 10;
    min-width: 1120px;
  }
  .btn {
    display: none;
  }
  .menu {
    display: flex;
    flex-direction: row;
    position: inherit;
    top: 0;
    right: 0;
    width: auto;
    height: 68px;
    padding: 20px;
    opacity: 1;
    border-radius: 100px;
    background: #fff;
    box-shadow: 4px 4px 8px rgb(0 0 0 / 10%);
  }
  .menu-list {
    width: auto;
  }

  .menu li a {
    border-bottom: none;
    padding: 0 20px;
  }
  .menu li a:hover {
    color: #287042;
  }

  .menu li + li a {
    border-left: 1px solid #ddd;
  }
  /*manga*/
  #manga {
    padding-top: 136px;
  }
  #manga .section-inner {
    margin: 0 auto;
  }
  #manga .manga-list {
    margin-bottom: 30px;
  }
  /**/
  .section-point {
    padding: 50px 25px 40px;
    margin: 70px 0px;
  }
  .section-point .point-ttl {
    font-size: 30px;
  }
  .section-point::before {
    font-size: 24px;
  }
  .photo-wrap {
    display: flex;
    flex-direction: row;
  }
  .photo-wrap .chat-box-wrap {
    margin-top: 1em;
  }
  .photo-wrap .photo-box img {
    max-width: 400px;
  }
  .photo-wrap.photo-left .photo-box {
    order: 1;
    max-width: 400px;
  }
  .photo-wrap.photo-left .chat-box-wrap {
    order: 2;
    margin-left: 60px;
  }
  .photo-wrap.photo-right .chat-box-wrap {
    margin-right: 60px;
  }
  /*普通の家づくりとの違い*/
  .daiji-div .tsumari-box {
    padding: 80px 15px 50px;
    margin-bottom: 80px;
  }
  .daiji-div .tsumari-box:before {
    border-width: 55px 80px 0 80px;
  }
  .daiji-div .tsumari-box h3 {
    font-size: 38px;
  }
  .diy-works h4 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .diy-works-list {
    flex-wrap: initial;
    margin-bottom: 60px;
    margin-top: 40px;
  }
  .diy-works-list li {
    width: 256px;
    margin-bottom: 0;
  }
  .diy-works-list figcaption {
    font-size: 18px;
    margin-top: 15px;
  }
  .diy-lecture {
    flex-flow: initial;
    justify-content: space-between;
    padding: 40px 40px 40px 80px;
  }
  .diy-lecture .text {
    margin-bottom: 0;
    width: 596px;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .diy-lecture h4 {
    font-size: 24px;
    text-align: left;
  }
  .diy-lecture p {
    font-size: 16px;
  }
  .diy-lecture .photo {
    width: 340px;
  }
  /*お客様の声*/
  .voice-list li {
    margin-bottom: 40px;
    width: 544px;
  }
  .voice-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
  }
  .voice-list li a:hover {
    opacity: 0.7;
  }
  .voice-list li a p.label.kikan,
  .voice-list li a p.label.prof {
    font-size: 16px;
  }
  .voice-list li a p.voice-ttl {
    font-size: 24px;
    padding: 30px;
  }
  .voice-list li a p.label.prof {
    bottom: 48px;
  }
  /*よくあるご質問*/
  #faq {
    padding-bottom: 0;
    margin-bottom: -60px;
  }
  #faq dl::before,
  #faq dl .faq-list::after {
    margin: 50px 0;
  }
  #faq dl .faq-list dt,
  #faq dl .faq-list dd {
    padding: 0 80px 0 110px;
  }
  #faq dl .faq-list dt h3,
  #faq dl .faq-list dd h3 {
    font-size: 24px;
  }
  #faq dl .faq-list dt::before,
  #faq dl .faq-list dd::before {
    left: 70px;
    top: -0.15em;
    font-size: 40px;
  }

  /*お問い合わせ*/
  .contact {
  }
  .contact .section-inner {
    margin: 0 auto;
    border-radius: 20px;
    padding: 60px 20px;
  }
  .contact .section-inner .contact-box {
  }
  .contact .section-inner .contact-box .section-ttl,
  .contact .section-inner .contact-box .section-ttl .marker {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .contact .section-inner .contact-box p a {
    font-size: 24px;
  }
  .contact .section-inner .contact-box p a:hover {
    opacity: 0.7;
  }
  .contact .section-inner .contact-box .contact-tel {
  }
  .contact .section-inner .contact-box .contact-tel dt {
    font-size: 16px;
  }
  .contact .section-inner .contact-box .contact-tel .phone-number {
    font-size: 36px;
    padding: 10px 0 2px 0;
  }
  /*アフタートーク*/
  #after-talk {
    margin-bottom: -100px;
  }
  #after-talk::after {
    font-size: 30px;
  }

  /*ad area*/
  .section.ad-area {
    padding: 30px;
  }
  .section.ad-area .ad-area-banner {
    max-width: 840px;
    margin: 0 auto;
  }
  .section.ad-area .ad-area-banner a:hover {
    opacity: 0.7;
  }
  .section.ad-area .ad-area-banner .ad-area-image .ad-area-image-photo img {
    height: 300px;
  }
  .section.ad-area .ad-area-banner .ad-area-image .ad-area-image-text {
    left: 56px;
  }
  .section.ad-area .ad-area-banner .ad-area-image .ad-area-image-text img {
    width: 357px;
    height: auto;
  }
  .section.ad-area .ad-area-banner .ad-area-cta {
    padding: 12px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-logo,
  .section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-text {
    margin-bottom: 0;
  }
  .section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-logo img {
    width: 100px;
    height: auto;
  }
  .section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-text {
    font-weight: bold;
  }
  .section.ad-area .ad-area-banner .ad-area-cta .ad-area-cta-btn {
    border-radius: 20px;
    padding: 10px;
    width: 100px;
  }
}
