@charset "utf-8";
body{
    margin: 0;
    padding: 0;
    font-family:
      "Hiragino Kaku Gothic ProN",
      "ヒラギノ角ゴ ProN",
      "Noto Sans JP",
      "Yu Gothic",
      "YuGothic",
      "Meiryo",
      sans-serif;
    }

p{
  text-align: justify;
}    

img {
    width: 100%;
    display: block;
    object-fit: contain;
}

#wrapper{
    max-width: 600px;
    margin: auto;
}
/* #wrapper img{
    width: 100%;
    vertical-align: middle;
} */

header{
  background-color: #fff;
}
header .header_inner{
  display: flex;
  justify-content: space-between;
  padding: 10px 2.5% 8px;
}
header .header_inner .logo{
  width: 35%;
}
header .header_inner a{
  width: 50%;
}

.cta_area {
    position: relative;
    margin-bottom: -8px;
}

.cta_area .cta.tel a {
    position: relative;
}

.cta_area .cta {
    position: absolute;
    width: 88%;
    left: 6%;
}

.cta_area .cta.tel {
    top: 30%;
    overflow: hidden;
}

.cta_area .cta.mail {
    top: 58%;
}

a {
    display: block;
}

.cta_area .cta.tel a::before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny 3s ease-in-out infinite;
}

@-webkit-keyframes shiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


.quality_wrap{
    position: relative;
  }
  
  .quality_bg{
    width: 100%;
    display: block;
  }

  /* タイトル画像 */
.quality_img{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
  
  .quality_text{
    position: absolute;
    top: 34.5%;
    left: 5%;
    right: 5%;
    color: #000000;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
  }

  /* 芝 */
.quality_grass{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

  @media screen and (min-width: 768px){
    .quality_text{
      position: absolute;
      top: 34.5%;
      left: 5%;
      right: 5%;
      color: #000000;
      font-size: 20px;
      line-height: 1.4;
      font-weight: 500;
    }
  }

  .price_area{
    width: 100%;
  }
  
  .price_bg{
    background: url("../img/price_bg.jpg") no-repeat center top;
    background-size: cover;
    position: relative;
    padding-bottom: 40px;
  }
  
  .price_title{
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .price_accordion_wrap{
    margin: 0 auto;
    padding-top: 92px;
  }
  
  .price_card{
    padding: 0 1em;
    margin: 0 auto 6.5em;
  }

  .price_card:last-child {
    margin-bottom: 2em;
  }
  
  .price_card_inner{
    position: relative;
    background: #fffce7;
    border: 4px solid #009b23;
    border-radius: 8px;
    box-sizing: border-box;
    overflow: visible;
    padding: 6.5em 0 1.2em;
  }
  
  /* 下角の装飾 */
  .price_card_inner::before,
.price_card_inner::after{
  content: "";
  position: absolute;
  bottom: -1px;
  width: 20px;
  height: 20px;
  background: #009b23;
  z-index: 1;
}

.price_card_inner::before{
  left: 0;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.price_card_inner::after{
  right: 0;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
  
  /* 上にかぶさる画像 */
  .price_visual{
    position: absolute;
    top: -92px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 1.5em);
    z-index: 2;
  }
  
  .price_visual_img{
    display: block;
    width: 100%;
    height: auto;
  }

  .price_visual_sub{
    display: block;
    width: 90%;
    margin: 1.5em auto 0;
  }
  .price_visual2_sub{
    display: block;
    width: 80%;
    margin: 2.4em auto 0;
  }
  
  /* 開閉エリア */
  .price_detail{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
  }
  
  .price_detail.is-open{
    max-height: 1200px;
    margin-top: 2.5em;
  }
  
  .price_detail_img{
    display: block;
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  
  /* ボタン */
  .price_toggle{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
    width: 255px;
    max-width: 85%;
    margin: 2.2em auto 0;
    padding: 0.7em 1em;
    border: none;
    border-radius: 999px;
    background: #009b23;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    position: relative;
    z-index: 3;
  }
  
  .price_toggle span{
    font-size: 0.8em;
    line-height: 1;
  }
  
  .price_toggle.is-open span{
    transform: rotate(180deg);
  }

  .price_card_inner--noaccordion{
    min-height: 157px;
  }

  @media screen and (min-width: 768px){
    .price_card_inner{
      padding: 8.5em 0 1.2em;
          border-radius: 6px;
    }
    .price_accordion_wrap {
      padding-top: 150px;
  }
    .price_visual {
    top: -142px;
}
.price_visual_sub {
  display: block;
  width: 90%;
  margin: 1.3em auto 0;
}
.price_card {
  margin: 0 auto 9.5em;
}
.price_detail.is-open {
  margin-top: 4em;
}
.price_detail_img {
  width: 85%;
}
.price_toggle {
  font-size: 20px;
}

    .price_card_inner--noaccordion{
      min-height: 200px;
    }
  }
  
  .hachi{
    display: block;
    margin: 0 auto;
    width: 90%;
  }

  .cost_wrap{
    position: relative;
  }
  
  .cost_img{
    width: 100%;
    display: block;
  }
  
  .cost_text{
    position: absolute;
    top: 42.5%;
    left: 5%;
    right: 5%;
    color: #000000;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
  }

  @media screen and (min-width: 768px){
    .cost_text{
      font-size: 20px;
    }
  }


/* =========================
   risk
========================= */

.risk_wrap{
  position: relative;
}

.risk_bg{
  width: 100%;
  display: block;
}

.risk_inner{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* 上部タイトル画像 */
.risk_head_img {
  display: block;
  width: 100%;
  margin-top: 11%;
}


/* =========================
   box共通
========================= */

.risk_box_wrap{
  position: relative;
  width: 100%;
}

.risk_box_img{
  display: block;
  width: 100%;
}

/* box01 調整用 */
.risk_box01 {
  width: 97%;
  margin: 4% 4% 4% 0;
}

/* box02 調整用 */
.risk_box02{
  margin: 4% auto 0;
}


/* =========================
   1つ目テキスト
========================= */

.risk_title{
  position: absolute;
  top: 8%;
  left: 5%;
  right: 5%;

  color: #ffffff;
  font-size: 25px;
  font-weight: 700;
  margin: 0;
}

.risk_sub{
  position: absolute;
  top: 22%;
  left: 5%;
  right: 5%;

  color: #ffe100;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.risk_body{
  position: absolute;
  top: 47%;
  left: 5%;
  right: 5%;

  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}


/* =========================
   2つ目テキスト
========================= */

.risk2_title{
  position: absolute;
  top: 8%;
  left: 5%;
  right: 5%;

  color: #ffffff;
  font-size: 23px;
  font-weight: 700;
  margin: 0;
}

.risk2_sub{
  position: absolute;
  top: 22%;
  left: 5%;
  right: 5%;

  color: #ffe100;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.risk2_body{
  position: absolute;
  top: 41%;
  left: 5%;
  right: 5%;

  color: #000000;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  margin: 0;
}


/* 赤文字 */
.risk_red{
  color: #ff0000;
  font-weight: 700;
}


/* =========================
   PCでもSP見た目維持
========================= */

@media screen and (min-width: 768px){

  .risk_title{
    top: 10%;
    font-size: 40px;
  }

  .risk_sub, .risk2_sub {
    top: 21%;
    font-size: 33px;
}
.risk_body,
.risk2_body{
  font-size: 21px;
}
.risk2_title {
  top: 10%;
  font-size: 37px;
}
}

  /* trouble */

  .trouble_wrap{
    position: relative;
    background: url("../img/trouble_bg.jpg") no-repeat center top;
    background-size: 100% auto;
    padding-bottom: 300%;
  }
  
  /* タイトル */
  .trouble_title{
    position: absolute;
    top: 2%;
    left: 0;
    width: 100%;
  }
  
  /* 吹き出し */
  .trouble_hukidashi{
    position: absolute;
    top: 21%;
    left: 5%;
    width: 90%;
  }
  
  /* 中央画像 */
  .trouble_middle{
    position: absolute;
    top: 39%;
  }
  
  /* テキスト */
  .trouble_text{
    position: absolute;
    top: 60%;
    left: 5%;
    right: 5%;
    width: auto;
  
    color: #000000;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 500;
    text-align: left;
  }

  
  
  /* スタッフ */
  .trouble_staff{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

/* PCでもSPと同じ見た目 */
@media screen and (min-width: 768px){
  .trouble_text{
    font-size: 22px;
  }
}


/* お客様の声 */
.review_section{
    background: #f6ffda;
    padding: 0 0 2.5em;
    overflow: hidden;
  }
  
  .review_title{
    display: block;
    width: 80%;
    margin: 2.2em auto 1.8em;
  }
  
  .review_slider{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 3%;
  }
  
  .review_track{
    display: flex;
    align-items: stretch;
    transition: transform 0.4s ease;
  }
  
  .review_card{
    flex: 0 0 76%;
    margin: 0 2%;
    background: #ffffff;
    border: 4px solid #9cc62b;
    border-radius: 22px;
    padding-bottom: 1.2em;
    box-sizing: border-box;
    overflow: hidden;
  }
  
  .review_card_title{
    margin: 0;
    padding: 0.55em 0.8em;
    background: #9cc62b;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
  }
  
  .review_main_img{
    display: block;
    width: calc(100% - 1.4em);
    margin: 0.9em auto 0;
  }
  
  .review_profile{
    display: flex;
    align-items: center;
    gap: 0.8em;
    width: calc(100% - 2em);
    margin: 1em auto 0;
  }
  
  .review_icon{
    width: 54px;
    flex-shrink: 0;
  }
  
  .review_name{
    margin: 0;
    color: #333333;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
  }
  
  .review_text{
    width: calc(100% - 2em);
    margin: 0.8em auto 0;
    color: #333333;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
  }
  
  /* 矢印 */
  .review_nav{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #9cc62b;
    color: #ffffff;
    font-size: 26px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  
  .review_prev{
    left: 18px;
  }
  
  .review_next{
    right: 40px;
  }
  
  @media screen and (min-width: 768px){
    .review_slider{
      max-width: 700px;
      margin: 0 auto;
    }
  
    .review_card{
      flex: 0 0 70%;
    }

    .review_text{
      font-size: 19px;
    }
    .review_icon{
      width: 65px;
      flex-shrink: 0;
    }
    .review_name{
      font-size: 20px;
    }
  }

  .reason_wrap{
    background: #1e9d34;
    padding: 0 0 2.5em;
    overflow: hidden;
  }
  
  .reason_main_title{
    display: block;
    margin: 0 auto 1.2em;
  }
  .reason_main_title2{
    display: block;
    margin: 0 auto 1.2em;
    width: 90%;
  }
  .reason_note{
    position: absolute;
    top: 65%;
    left: 6%;
    right: 6%;
  
    font-size: 8px;
    color: #666;
    line-height: 1.3;
  }
  
  /* カード全体 */
  .reason_card{
    position: relative;
    width: 90%;
    margin: 20px auto;
    
  }
  
  /* 背景 */
  .reason_bg{
    width: 100%;
    display: block;
  }
  
  /* タイトル */
  .reason_title{
    position: absolute;
    top: -1%;
    left: 5%;
    color: #ff7300;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.4;
  }
  
  /* 中央画像 */
  .reason_img{
    position: absolute;
    top: 21%;
    left: 5%;
    right: 5%;
  
    width: 90%;
    margin: 0 auto;
  }
  .reason_img03{
    position: absolute;
    top: 17%;
    left: 5%;
    right: 5%;
  
    width: 90%;
    margin: 0 auto;
  }
  
  /* テキスト */
  .reason_text{
    position: absolute;
    top: 62%;
    left: 6%;
    right: 6%;
  
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
  }
  .reason_text03
  {
    position: absolute;
    top: 75%;
    left: 6%;
    right: 6%;
  
    color: #333333;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
  }
  .reason_title .note{
  font-size: 60%;
  margin-left: 2px;
  vertical-align: super;
}

  @media screen and (min-width: 768px){
  .reason_title{
    font-size: 33px;
  }
  .reason_text {
    font-size: 22px;
}
.reason_note {
  font-size: 13px;
}
.reason_text03 {
  font-size: 22px;
  top: 77%;
}
}

  /* FAQ */
.qa_section{
  background: #ffffff;
  padding: 0 0 2em;
}

.qa_title{
  display: block;
  width: 100%;
  margin: 0;
}

.qa_list{
  width: 96%;
  margin: 1em auto 0;
}

.qa_item{
  border: 2px solid #a7cc35;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  margin-bottom: 1em;
}

.qa_question{
  width: 100%;
  border: none;
  background: #a7cc35;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.55em 0.8em;
  font-size: 21px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.qa_qicon{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1f9d34;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  flex-shrink: 0;
}

.qa_qtext{
  flex: 1;
  line-height: 1.4;
}

.qa_arrow{
  font-size: 16px;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.qa_item.is-open .qa_arrow{
  transform: rotate(180deg);
}

.qa_answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0.9em;
  background: #fffce7;
}

.qa_item.is-open .qa_answer{
  max-height: 300px;
  padding: 0.9em;
}

.qa_answer p{
  margin: 0;
  color: #333333;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 768px){
  .qa_answer p{
    font-size: 20px;
  }
}

.process_wrap{
  position: relative;
}

.process_bg{
  width: 100%;
  display: block;
}

/* 共通 */
.process_num,
.process_title,
.process_text,
.process_img{
  position: absolute;
}

.process_num{
  color: #19a63a;
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  left: 3%;
}

.process_title{
  color: #222222;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  left: 29%;
}

.process_text{
  color: #333333;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
  width: 56%;
  left: 6%;
}

.process_img{
  width: 30%;
  display: block;
  right: 6%;
}

/* -----------------
   01
----------------- */
.process_num01{
  top: 1.5%;
}

.process_title01 {
  top: 3.5%;
}

.process_text01{
  top: 9.5%;
}

.process_img01{
  top: 9.5%;
}

/* -----------------
   02
----------------- */
.process_num02{
  top: 27%;
}

.process_title02{
  top: 27.5%;
}

.process_text02{
  top: 36%;
}

.process_img02{
  top: 36%;
}

/* -----------------
   03
----------------- */
.process_num03{
  top: 52%;
}

.process_title03{
  top: 54%;
}

.process_text03{
  top: 60%;
  left: 3.5%;
}

.process_img03{
  top: 60%;
}

/* -----------------
   04
----------------- */
.process_num04{
  top: 76%;
  left: 3%;
}

.process_title04{
  top: 78%;
}

.process_text04{
  top: 85%;
  left: 3.5%;
}

.process_img04{
  top: 85%;
}

/* PCでもSP見た目維持 */
@media screen and (min-width: 768px){
  .process_num{
    font-size: 90px;
  }

  .process_title{
    font-size: 35px;
  }

  .process_text{
    font-size: 21px;
  }
}

footer{
    background-color: #1e9d34;
    padding: 25px 0;
}
footer p,
footer a,
footer th,
footer td,
footer li{
    color: #fff;
    font-size: 13px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
footer .inner{
    padding: 10px 5%;
    max-width: 500px;
    margin-inline: auto;
}
footer .inner+.inner{
    border-top: 1px solid #fff;
}
footer .footer_logo{
    background-color: #fff;
    padding: 10px 20px;
    width: 80%;
    margin: 0 auto 20px;
}
footer .footer_table{
    margin: 10px auto;
}
footer .privacy{
    display: block;
    text-align: center;
    margin: 10px auto;
}
footer .contact{
    margin: 10px auto;
}
footer .footer_list{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  margin: 10px auto 0;
  width: fit-content;   /* ←これ重要 */
}

footer .footer_list ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

.hide{
    display: none !important;
    height: 0;
    opacity: 0;
}

.privacy_page{
    width: 95%;
    max-width: 600px;
    margin-inline: auto;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.privacy_page h2{
    background-color: #1e9d34;
    padding: 15px 0;
    text-align: center;
    margin: 30px auto;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}
.privacy_page dl{
    margin-bottom: 20px;
}
.privacy_page dl dt{
    margin-bottom: 10px;
    font-weight: bold;
}


/* 追従 */
.ScrollTop {
    position: fixed;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%); /* 常に画面中央に配置 */
    width: 100%;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.65s ease;
}
.ScrollTop.isActive {
  opacity: 1;
  visibility: visible;
}
.cta_follow {
    display: block;
    background: rgba(255, 255, 255, 0.75); /* 背景の白透過 */
    overflow: hidden; /* 光を枠内に収める */
    padding: 20px;
}
.cta_follow img {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto;
    max-width: 540px;
}
/* 光らせるためのstyle */
.shine {
  border: 2px solid transparent;
  overflow: hidden;
}
/* 光の疑似要素 */
.shine::before {
  content: '';
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shine 3s ease-in-out infinite;
  position: absolute;
  top: -120px;
  left: 300px;
  opacity: 0;
  transform: rotate(45deg);
  z-index: 1000;
}
/* 光の動き */
@keyframes shine {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}