@charset "UTF-8";

/* ===================================
 * サイト全体レイアウト
==================================== */

html {
  font-size: 62.5%;/*10px*/
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,'メイリオ',sans-serif;
  font-size: 2.0em;/*20px*/
  line-height: 1.5;
  color: #000;
}

.section-container {
  padding: 100px 0;
}

.section-inner {
  width: 1120px;
  max-width: 97%;
  margin-left: auto;
  margin-right: auto;
}

/* h2 */
.section-title {
  margin-bottom: 80px;
  text-align: center;
  letter-spacing: 0.5rem;
  font-size: 5.0rem;
  font-weight: 900;
  color: #197824;
  text-shadow: 4px 3px 3px #bbb;
}

/* h3 */
.sub-title {
  font-size: 3.0rem;
}

.text-s {
  font-size: 1.8rem;
}


@media all and (max-width: 767px) {
  body {
    font-size: 1.8em;/*18px*/
  }
}

@media all and (max-width: 599px) {
  body {
    font-size: 1.8em;/*18px*/
  }
  .section-container {
    padding: 15% 0;
  }
  /* h2 */
  .section-title {
    margin-bottom: 50px;
    font-size: 3.0rem;
    text-shadow: 4px 3px 3px #bbb;
  } 
  /* h3 */
  .sub-title {
    font-size: 2.5rem;
  }
  .text-s {
    font-size: 1.5rem;
  }
}

/* ===================================
 * header
==================================== */
.header {
  height: 80px;
  background: #fff;
}

.header .section-inner {
  height: 80px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.header-logo img {
  height: 80px;
  width: auto;
}

.header-contact {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.header-contact__tel, .header-contact__mail {
  max-width: 300px;
}

.header-contact__tel {
  margin-right: 20px;  
}

@media all and (max-width: 767px) {
  .header-logo {
    margin: 0 auto;
  }
  .header-contact.pc-only {
    display: none;
  }
}


/* ===================================
 * mainvisual
==================================== */
.mainvisual {
  height: 600px;
  width: 100%;
  background: url(../image/main/hero-image.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mv-text {
  position: absolute;
  padding: 0;
}

.mv-text._area {
  top: 120px;
}

.mv-text._main {
  top: 240px;
}



.mv-text._feature {
  top: 500px;
  right: 0;
  left: 0;
  margin: 0 auto;
  text-align: center;
}

@media all and (max-width: 599px) {
  .header,
  .header .section-inner {
    height: 50px;
  }
  .header-logo img {
    height: 50px;
  }
  .mainvisual {
    height: 550px;
  }
  .mainvisual .section-inner {
    width: 100%;
  }
  .mv-text._area {
    top: 90px;
    /*max-width: 300px;*/
    width: calc(100% - 20px);
  }

  .mv-text._main {
    top: 190px;
  }
  .mv-text._feature {
    top: 450px;
  }
}

/* ===================================
 * cta
==================================== */
.cta .section-inner {
  padding-top: 40px;
  position: relative;
}

.cta .section-inner:before {
  position: absolute;
  left: -20px;
  bottom: 0;
  content: "";
  background: url("../image/cta_guide.png") no-repeat;
  display: block;
  width: 200px;
  height: 204px;
  background-size: 100% auto;
}

.cta__catch {
  margin: 0 auto;  
  padding: 5px;
  max-width: 750px;
  width: 100%;
  text-align: center;
  font-size: 2.0rem;
  color: #fff;
  background: #000;
  border-radius: 30px;
}

.cta-contact {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 30px 0 40px 200px;
}

.cta__tel, .cta__mail {
  max-width: 400px;
}

.cta__tel {
  margin-right: 20px; 
}

@media all and (max-width: 767px) {
  .cta .section-inner {
    max-width: 100%;
    padding-top: 0;
  }
  .cta .section-inner:before {
    content: none;
  }
  .cta__catch {
    padding: 10px 0;
    border-radius: 0;
    font-size: 1.6rem;
  }
  .cta-contact {
    display: block;
    padding: 20px;
  }
  .cta__tel, .cta__mail {
    margin: 0 auto;
    padding-bottom: 10px;
  }
}


/* ===================================
 * campain
==================================== */
.campain__image  {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.campain::after {
  position: absolute;
  left: 50%;
  margin-left: -70px;
  content: "";
  width: 0;
  height: 0;
  border-left: 70px solid transparent;
  border-right: 70px solid transparent;
  border-top: 50px solid #ccff66;
}

.campain:last-of-type::after {
   display: none; 
}

@media all and (max-width: 767px) {
  .campain__image {
    padding: 10px 0;
  }
  .campain::after {
    border-top: 30px solid #ccff66;
  }
}


/* ===================================
 * committed
==================================== */
.committed {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0 0;
}

.committed .section-title-image {
  margin-bottom: 70px;
  text-align: center;
}

.committed-title .-c-black {
  display: block;
}

.committed-title .emphasis {
  font-size: 5.0rem;
  color: #197824;
  line-height: 1.7;
  text-shadow: 1px 1px 1px #bbb;
  /*text-shadow: 4px 3px 3px #bbb;*/
}

.committed-title .emphasis::before {
  content: "・・・・";
  display: block;
  width: 100%;
  height: auto;
  color: #197824;
  font-size: 5.0rem;
  font-weight: bold;
  line-height: 0.8;
  margin-bottom: -20px;
}

.committed-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5px;
}

.committed-list {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem 1.5rem 160px;
  border: 5px solid #42a84e;
  font-size: 3.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
  font-weight: 700;
  background: #e5ffc7;
  box-shadow: 10px 10px 15px -10px;
}

.committed-list:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 230px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: #42a84e;
}

.committed-list .number {
  position: absolute;
  z-index: 1;
  top: 1rem;
  left: 0;
  display: block;
  padding-top: 0;
  padding-left: 3.5rem;
  font-size: 5.5rem;
  font-family: sans-serif;
  color: #fff;
  text-shadow: 4px 3px 3px #000;
}

.committed-list .-c-orange {
  padding: 0 0.2rem;
  font-size: 4.5rem;
  /*--font-style: italic;--*/
  /*--text-shadow: 3px 1px 1px #fff;--*/
}

.arrow-01 {
  margin: 0 auto;
  padding: 30px 0;
  width: 60px;
}


@media all and (max-width: 599px) {
  .committed {
    padding: 60px 0 0;
  }
  .committed .section-title-image {
    max-width: 320px;
    margin: 0 auto 40px;
  }
  .committed-list {
    padding: 15px 10px 15px 75px;
    margin-bottom: 15px;
    font-size: 2.0rem;
  }
  .committed-list:before {
    left: -120px;
    width: 190px;
  }
  .committed-list .number {
    top: 10px;
    padding-left: 1.5rem;
    font-size: 3.0rem;
}
  .committed-list .-c-orange {
    font-size: 2.5rem;
  }
  .arrow-01 {
    max-width: 40px;
    padding: 10px 0;
  }
}


/* ===================================
 * voice
==================================== */
/* result */
.result {
  margin-bottom: 20px;
  text-align: center;
}

/* voice */
.voice-line {
  padding: 40px 10px 35px;
  text-align: center; 
  color: #fff;
}

.voice-line::after {
  position: absolute;
  left: 50%;
  margin-left: -380px;
  content: "";
  width: 0;
  height: 0;
  border-left: 380px solid transparent;
  border-right: 380px solid transparent;
  border-top: 80px solid #197824;
}

.voice-container {
  padding: 100px 0;
}

.voice-inner {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  max-width: 1120px;
  width: 100%;
}

.voice-list {
  display: -webkit-box;
  display: flex;
  width: 48%;
  margin: 1%;
  padding: 10px;
  background: #fff;
  box-shadow: 10px 10px 15px -10px;
}

.voice__icon {
  width: 95px;
  margin-top: 10px;
}

.voice__image {
  width: 420px;
  max-width: 100%;
}

@media all and (max-width: 767px) {
  .voice-line::after {
    margin-left: -150px;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-top: 70px solid #197824;
  }
  .voice-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .voice-list {
    width: 95%;
    margin: 1% auto;
    -webkit-box-pack: center;
    justify-content: center;
  }
  .voice-list:nth-child(2n) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
	  flex-direction: row-reverse;
  }
  .voice-container {
    padding: 50px 0;
  }
}


/* ===================================
 * fee
==================================== */
.fee-box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.fee-list {
  width: 40%;
  margin: 0 20px 40px;
  overflow: hidden;
  border-radius: 8px;
  border: 3px solid #42a84e;
  background: #fff;
}

.fee-list .sub-title {
  padding: 10px 10px 15px;
  color: #fff;
  background: #42a84e;
  letter-spacing: 0.1rem;
}

.fee-list .text {
  padding: 14px 6px;
  font-size: 1.6rem;
  font-weight: 700;
  background: #e5ffc7;
}

.fee-list .text .price {
  padding-left: 0.3em;
  font-size: 2.8rem;
}

.fee-notes {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1em;
}

.fee-notes li {
  text-indent: -1em;
  padding-left: 1em;
}

@media all and (max-width: 767px) {
  .fee-list .text .price {
    font-size: 3.0rem;
  }
}

@media all and (max-width: 599px) {
  .fee-box {
    display: block
  }  
  .fee-list {
    width: 90%;
    margin: 0 auto 20px;
  }
  .fee-notes {
    font-size: 1.6rem;
  }
}

  
/* ===================================
 * reason
==================================== */
.reason .section-title {
  padding: 0 10px;
  font-size: 3.0rem;
}

.reason .section-title span {
  display: block;
}

 .reason .section-inner {
  width: 850px;
}

.reason-list {
  position: relative;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.5rem 2rem 1.5rem 140px;
  box-shadow: 10px 10px 15px -10px;
  background: #fff;
}

.reason-list .sub-title {
  margin-bottom: 10px;
}

.reason-list .text span {
  font-weight: 900;
}

.reason .circle-icon {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 95px;
  height: 95px;
  background-color: #42a84e;
  /* background-color: #000; */
  text-align: center;
  /* border-radius: 50%; */
}

.reason .circle-icon-inner {
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff
}

.reason .circle-icon-inner span {
  display: block;
  font-size: 4.0rem;
}


@media all and (max-width: 767px) {
.reason-list {
  padding: 1.5rem 2rem 1.5rem 110px;
}
  
.reason .circle-icon {
  top: 15px;
  left: 10px;
  width: 80px;
  height: 80px;
  }
}


/* ===================================
 * service
==================================== */
.service-box {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
 }

.service-list {
  width: calc(33.33% - 24px);
  background: #fff;
  /* border-radius: 10px; */
  overflow: hidden;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
}

.service-list:not(:nth-of-type(n+4)) {
  margin: 0 0 24px;
}

.service-list .text-box {
  padding: 1em;
}

.service-list .sub-title {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #1F1F1F;
  text-align: center;
  font-size: 2.5rem ;
  color: #42a84e;
}

.service-list .image {
  max-width: 350px;
  max-height: 250px;
  width: 100%;
}

@media all and (max-width: 767px) {
  .service-list {
    width: calc(50% - 10px);
  }
  .service-list:not(:nth-of-type(n+5)) {
    margin: 0 0 24px;
  }
  .service-box {
    padding: 0 2%;
  }
  .service-list .sub-title {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .service-list .text-box {
  padding: 0.5em;
  }
}


/* ===================================
 * case
==================================== */
.case .section-inner {
  width: 850px;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;  
}

.case-list {
  padding: 0 10px;  
}

.case-list:not(:first-of-type) {
  margin-top: 40px;
}

.case-list .sub-title {
  font-size: 2.5rem;
}

.case-box {
  display: -webkit-box;
  display: flex;
}

.case-box .image.-tall {
  max-width: 200px;
}

.case-box .image.-wide {
  max-width: 300px;
}

.case-box .text {
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

.case-box .text.-before {
  background: #3f3f3f;
}

.case-box .text.-after{
  /* background: #ff6633; */
  background: #fba346;
}


/* ===================================
 * flow
==================================== */
.flow .section-inner {
  width: 850px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.flow-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  position: relative;
  background: #fff;
}

.flow-list:not(:first-of-type) {
  margin-top: 50px;
}

.flow-list .image {
  max-width: 230px;
  min-width: 230px;
}

.flow-list:after {
  position: absolute;
  bottom: -35px;
  left: 10%;
  /*margin-left: -100px;*/
  content: "";
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #3f3f3f;
}

.flow-list:last-child::after {
    display: none;
}

.flow-list .text {
  padding: 10px 20px;
}

.flow-list .text-s {
  margin-top: 1em;
}

.flow .step-icon {
  padding: 7px;
  margin-right: 1em;
  font-size: 2.5rem;
  color: #fff;
  background: #42a84e;
}

.flow-list .image {
  max-width: 230px;
  min-width: 230px;
}


@media all and (max-width: 767px) {
  .flow-list .image {
    max-width: 130px;
    min-width: 130px;
    padding-top: 10px;
  }
  .flow-list:after {
    bottom: -30px;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 10px solid #3f3f3f;
  }
  .flow-list:not(:first-of-type) {
    margin-top: 40px;
  }
  .flow-list .text {
    padding: 10px;
  }
  .flow .step-icon {
    padding: 4px;
    margin-right: 0.6rem;
    font-size: 2.0rem;
  }
   .flow-list .sub-title {
    font-size: 2.2rem;
  }
}
  

/* ===================================
 * faq
==================================== */
.faq-container {
  width: 800px;
  margin: 0 auto;
}

.faq__q-txt {
  margin-top: 1em;
  padding: 1em;
  position: relative;
  cursor: pointer;
  user-select: none;
  border: 1px solid #197824;
  color: #197824;
}

.faq__q-txt:first-of-type {
  margin-top: 0;
}

.faq__q-txt::before, .faq__q-txt::after {
  content: '';
  display: block;
  background-color: #197824;
  position: absolute;
  top: 50%;
  width: 15px;
  height: 2px;
  right: 25px;
}

.faq__q-txt::after {
  transform: rotate(90deg);
  transition-duration: .3s;
}

.faq__q-txt:hover,
.faq__q-txt:active,
.faq__q-txt.is-active { 
  background-color: #e5ffc7;
}

.faq__q-txt.is-active::before {
  opacity: 0;
}

.faq__q-txt.is-active::after {
  transform: rotate(0);
}

.faq__a-txt {
  position: relative;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  padding: 0 1.5em;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: .3s;
}

/*--
.faq__a-txt::before {
  position: absolute;
  left: 2em;
  content: "A．";
  color: #de0000;
  font-weight: bold;
}
--*/

.faq__a-txt.is-open {
  border: 1px solid #197824;
  border-top: 1px solid transparent;
  padding: 0.7em 0.7em 0.7em 2em;
  line-height: normal; /* numberに書き換える*/
  height: auto;
  opacity: 1;
}

@media all and (max-width: 767px) {
  .faq__q-txt {
    margin-top: 0.5em;
    padding: 0.7em 2.5em 0.7em 3em;
    text-indent: -2em;
  }
}


/* ===================================
 * footer
==================================== */
.footer {
  padding: 50px 10px 10px;
  text-align: center;
}

.footer-logo img {
  width: 300px;
}

.footer-menu ul{
	margin: 12px 0;
}

.footer-menu li{
	display: inline-block;
	margin: 6px 12px 0px 12px;
	font-size: 14px;
}
	
.footer-menu a{
	text-decoration-line: none;
	color: #000;
}

small {
  font-size: 14px;
}

