@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
}
/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-M2 {
    font-size: 18px;
  }
  .font-size-L {
      font-size: 28px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 20px;
  }
  .font-size-M {
      font-size: 20px;
  }
  .font-size-M2 {
    font-size: 28px;
  }
  .font-size-L {
      font-size: 48px;
  }
}

body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background: #e6e6e6;
  color: #333333;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.6em;
}

ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: 100%;
}

*:focus {
  outline: none;
}

/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}

/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow-x: hidden;
  background: #fff;
  max-width: 750px;
  margin: auto;
}

/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
/* Header Container */
.header {
  background-color: #fff;
  width: 100%;
  height: 70px;
  display: flex; /* フレックスボックスで要素を整列 */
  justify-content: space-between; /* ロゴとハンバーガーメニューを左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  padding: 0 10px; /* ヘッダーの左右に余白 */
  box-sizing: border-box;
  position: relative; /* メニューの位置制御のために追加 */
  box-shadow: 0px 2px 4px gray;
}

/* Logo Container */
.logo-container {
  display: flex; /* フレックスボックスで調整可能 */
  align-items: center;
}

/* Logo */
.logo {
  height: 70px;
  width: auto;
  padding: 10px 0;
}

.container {
  margin-left: auto;
}

.header_info {
  color: #000;
  font-weight: 500;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_info .work_time {
  text-align: center;
}
@media screen and (max-width: 360px) {
  .header_info .work_time {
    font-size: 0.8rem;
  }
}

/* Hamburger Menu Button */
.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #f7941f;
  box-shadow: 0px 2px 4px gray;
}

/* Hamburger Icon */
.navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  transition: 0.3s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  transition: 0.3s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation */
.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
}

.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
  top: 0;
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
  bottom: 0;
}


/* Navbar Menu */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  margin: 70px 0 0;
  padding: 0 0 10px 0;
  background-color: #fff;
  transform: scale(1, 0);
  transform-origin: top;
  transition: transform 0.3s;
  z-index: 1000;
  opacity: 0.9;
}

/* Menu Visibility */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
}

/* Menu Links */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #64b100;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.5s;
}

.menu li {
  padding: 15px 0;
  margin: 0 24px;
  opacity: 0;
  transition: opacity 0.5s;
}

/* Make Menu Items Visible */
.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
}
/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
/* .fv {
  margin-top: -1px;
} */

.fv{
  position: relative;
  background: #f5f5f5 url("../img/fv_v2_bg.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fadeup{
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 1.4s cubic-bezier(.19,1,.22,1),
    transform 1.4s cubic-bezier(.19,1,.22,1);
  will-change: opacity, transform;
}

.fadeup.is-in{
  opacity: 1;
  transform: none;
}
/* ------------------------------------------------------------
  main
------------------------------------------------------------ */
.cta {
  background-color: #fff9c6;
  padding: 3% 0;
}
.reflection {
  position: relative;
  overflow: hidden;
  animation: pekopeko 1.8s infinite;
}
@keyframes pekopeko {
  0% {
      top: 0px;
  }
  10% {
      top: 5px;
  }
  20% {
      top: 0px;
  }
  30% {
      top: 5px
  }
  40% {
      top: 0px;
  }
}

.cta_content {
  padding: 3%;
}
.cta_txt{
  text-align: center;
  font-weight: bold;
}

.section01 {
  position: relative;
}


.section02 {
  position: relative;
  z-index: 1;
}


.section03 {
  text-align: center;
  position: relative;
  background: #f5f5f5 url("../img/section03_bg.jpg") center/cover no-repeat;
}
.section03 p {
  padding: 5%;
  font-weight: bold;
}
.credit {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 50px;
  height: auto;
}


.section04 p span {
  background:linear-gradient(transparent 60%, #ff6 60%);
}
.reason_content {
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(../img/section04.png);
  background-size: 100%;
  text-align: center;
}
.reason_content p {
  text-align: left;
  padding: 3%;
  font-weight: bold;
}

.section05 {
 position: relative;
 padding: 1em;
}

.section06 {

}
.section06 h2 {
 text-align: center;
 margin-bottom: 5%;
}

.section06 img {
  
}

.section07 {
  background-color: #fff9c6;
  padding: 5% 2%;
}

.section-step {
  text-align: center;
  position: relative;
  background: #f5f5f5 url("../img/step_bg.jpg") center/cover no-repeat;
}

.review{
  background-color: #fff9c6;
  padding: 2em 0;
}

.section08 {
  background-color: #f7941f;
}


.faq {
  background-color: #fff9c6;
  padding: 5% 0 10%;
}
.faq h2 {
  text-align: center;
  margin-bottom: 5%;
}
.accordion {
  width: 95%;
  margin: auto;
}
.accordion-content {
  display: none;
}
.accordion-header {
  background-color: #FFF;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
  border-radius: 5px;
  font-weight: bold;
  min-height: 70px;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#f7941f;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  background-color: #FFF;
  padding: 12px 20px 10px;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 2px 2px 4px rgb(202, 202, 202);
}

.accordion-header p,
.accordion-content{
  padding-left: 25px;
  position: relative;
}

.accordion-header p::before{
  position: absolute;
  content:"Q";
  top: 12px;
  left: 0;
  color: #f7941f;
  font-size: 24px;
  font-weight: bold;
}

/* hover */
.accordion-header:hover {
  box-shadow: none;
  box-shadow: 2px 0px 2px rgb(202, 202, 202);
  border-top-left-radius:5px;
  border-top-right-radius:5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

@media screen and (min-width:750px) {
  .accordion-header {
    padding: 22px 45px 20px 20px;
  }
  .accordion-header p,
  .accordion-content{
    padding-left: 35px;
  }
  .accordion-header p::before{
    top: 0px;
    font-size: 32px;
  }
}

/* ------------------------------------------------------------
  section08
------------------------------------------------------------ */

.section09 {
  max-width: 750px;
  margin: auto;
  background-color: #fff9c6;
  padding: 3%;
}

.section09 h2 {
  text-align: center;
  margin-bottom: 5%;
}

.section09 .info-box {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.section09 table {
  width: 100%;
  border-collapse: collapse;
}

.section09 th {
  text-align: left;
  width: 80px;
  padding: 8px 0;
  font-weight: bold;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.section09 td {
  padding: 8px 0;
  color: #000;
  border-bottom: 1px solid #ddd;
}

.section09 tr:last-child th,
.section09 tr:last-child td {
  border-bottom: none;
}


/* ------------------------------------------------------------
  form
------------------------------------------------------------ */
.section_Form {
  background-color: #f7f7f7;
  padding: 0 0 10%;
}
.section_Form h2{
  background: #e36671;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 8% 0 3%;
}
.section_Form h2:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 50vw 0 50vw;
  border-color: #e36671 #f7f7f7 transparent #f7f7f7;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}
@media screen and (min-width:750px) {
  .section_Form h2:after{
    border-width: 50px 375px 0 375px;
  }
}

.section_Form p {
  text-align: center;
  margin-top: 10%;
}
.section_Form p span {
  color: #e75566;
  font-weight: bold;
}



.form {
  background-color: #fff;
  padding: 5% 0% 8% 0%;
}

.form h2{
  padding-bottom: 20px;
}

form{
  padding: 2%!important;
}

.require {
  background-color: #ff0c34;
  color: #fff;
  padding: 5px;
  font-size: 0.9rem;
  margin-right: 3%;
}
.any {
  background-color: #666666;
  color: #fff;
  padding: 0.2% 1%;
  font-size: 0.9rem;
  margin-right: 3%;
}

.form_item {
  border-bottom: solid 1px #cccccc;
  padding-bottom: 2%;
  margin: 5% 0;
}

.form_head {
  font-weight: bold;
  margin-bottom: 5px;
  color: #333333;
}

.radio_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10%;
}

.form_item label {
  font-size: 1.2rem;
  padding-left: 5%;
  padding-bottom: 3%;
  color: #333333;
}

.zip_input_text {
  width: 20%;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  flex: inherit;
  font-size: 16px;
  padding-left: 1em;
}

.input_text {
  width: 100%;
  max-width: 400px;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  flex: inherit;
  width: 100%;
  font-size: 16px;
  padding-left: 1em;
  background-color: #f2f2f2;
}

.annotation {
  color: #777777;
  font-size: 0.9rem;
}

.add_head {
  color: #333333;
  font-size: 0.95rem;
  font-weight: bold;
  margin-top: 5px;
}

.money {
  display: flex;
  align-items: center;
  gap: 2%;
}

.money .input_text {
  width: 60%;
}

.yen {
  font-size: 1.2rem;
}

.form_item select {
  width: 60%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 40px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}

.form_item textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 100px;
  background: #fff;
  font-size: 16px;
  padding-left: 1em;
}

.button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  width: 85%;
  padding: 5% 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background-color: #f7941f;
  border-radius: 60px;
  border: none;
}
.button:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
  cursor: pointer;
}

.form_attention {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2%;
  width: 97%;
  margin: auto;
  margin-top: 8%;
}

.form_attention img {
  width: 35%;
}

.attention_box {
  background-color: #fff;
  border: solid 1px #666666;
  padding: 2% 1%;
  font-size: 0.9rem;
  color: #333333;
  margin-bottom: 2%;
}

.attention_box ul li {
  margin-bottom: 2%;
}


.form-notice{
  border: 2px solid red;
  background: #fff;
  padding: 16px 18px 18px;
  margin: 10px;
  border-radius: 10px; 
  box-sizing: border-box;
}

.form-notice__title{
  margin: 0 0 10px;
  text-align: center;
  color: red;  
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 16px);
  line-height: 1.6;
}

.form-notice__list{
  margin: 0;
  padding-left: 1.2em; 
  list-style: disc;
  color: #333;
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.9;
}

@media (max-width: 480px){
  .form-notice{
    padding: 14px 12px 16px; 
  }
}

.form-row{
  margin-bottom: 20px;
  border: 1px solid #666;
  padding: 10px;
}

.form-label{
  padding: 0!important;
}

/* ネイティブの file を基本そのまま。余白だけ整える */
.form-file{
  font: inherit;               /* フォント継承 */
}

/* スマホで少し詰める */
@media (max-width: 480px){
  .form-row{ gap: 8px; }
  .form-label{ min-width: 3em; }
  .form-badge{ font-size: 11px; padding: 1px 5px; }
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  text-align: center;
  padding: 1rem 0 0.5rem;
  font-size: 0.9rem;
  background: #f7941f;
}

.footer p {
  margin-top: 5%;
  font-size: 0.9rem;
  color: #fff;
}
.footer a {
  color: #fff;
}

/* ------------------------------------------------------------
  floating
------------------------------------------------------------ */



/* 固定バー（親） */
.floating-banner{
  display:none;              /* 最初は隠す */
  position:fixed;
  z-index:99999;
  bottom:0;
  left:0;
  width:100vw;
  background:rgba(0,0,0,.5);
  padding:1%;
  text-align:center;
}
@media (min-width:750px){
  .floating-banner{
    left:50%;
    transform:translateX(-50%);
    width:750px;
  }
}

/* 中のボタン */
.floating-banner-btn{
  width: 90%;
  display:inline-block;
  background:#64b100;
  color:#fff;
  font-size:1.2rem;
  font-weight:bold;
  padding:15px 30px;
  text-decoration:none;
  border-radius:6px;
  box-shadow:0 4px 8px rgba(0,0,0,.2);
  transition:background-color .3s, transform .2s;
}
.floating-banner-btn:hover{
  background:#64b100;
  transform:translateY(-2px);
}



/*---注意喚起アコーディオン---*/
.ac_box {
  width: 100%;
  max-width: 750px;
  overflow: visible;
  color: red;
}
#ac_click{
  display: none;
}
.ac_box label{
  cursor: pointer;
  position: relative;
  display: block;
  background-color: #f15a24 !important;
  color: #fff !important;
  line-height: 1.3;
  font-size: 27px;
  font-weight: 700;
  padding: 25px 20px;
}
.ac_box label::before, .ac_box label::after{
  content: "";
  position: absolute;
  right: 4%;
  top: 37%;
  display: inline-block;
  width: 0.3vw ;
  height: 2vw;
  max-width: 3px;
  max-height: 20px;
  background-color: #fff;
  transition: all 0.3s;
}
.ac_box label::before{
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.ac_box input:checked+label::after{
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg) !important; 
}
.ac_box img {
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.ac_open {
  max-height: 0;      
  overflow: hidden;      
  transition: max-height 0.5s ease;
  background-color: #fff9c6;
}
.ac_open.open {
  max-height: 1000px;
}
.ac_open p {
  padding: 6px 20px;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}
@media screen and (min-width: 1px) and (max-width: 750px) {
.ac_box label::before, .ac_box label::after{
  top: 42%;
}
.ac_box label{
font-size: 3.7vw;
padding: 2.8vw 6px;
}
.ac_box label br{
      display: block;
  }
  .ac_open p {
    padding: 6px;
    font-size: 12px;
}
}
/*---注意喚起アコーディオン---*/


/*---確認ページ---*/
.confirm-box {
  color: #000;
  background: #fff;
  margin: 0 auto;
  padding:40px 20px;
}

.confirm-box h2 {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* 項目リスト */
.confirm-box dl {
  margin: 0;
  padding: 0;
}

.confirm-box dt {
  font-weight: bold;
  margin-top: 15px;
  padding-bottom: 4px;
  border-bottom: 2px solid #f7941f;
}

.confirm-box dd {
  margin: 4px 0 12px 0;
  padding: 0;
}

/* ボタンエリア */
.btn-wrap {
  margin-top: 30px;
  text-align: center;
}

/* 申し込むボタン */
.btn-submit {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  margin-bottom: 15px;
  padding: 14px;
  background-color: #64b100;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}

.btn-submit:hover {
  opacity: 0.85;
}

.btn-submit:after {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

/* 戻るボタン */
.btn-back {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  padding: 14px;
  background-color: #ccc;
  color: #000;
  text-align: center;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}


/*---完了ページ---*/

#main{
  background-color: #fff;
  padding-bottom: 40px;
}

.inner-wrap {
  margin: 0 auto;
  text-align: center;
}

.thanks_box {
  background-color: #fff9c6;
  /* border: solid 5px #42210b; */
  border-radius: 30px;
  max-width: 600px;
  width: 90%;
  margin: 0 auto 40px;
  padding: 4% 2%;
  font-weight: bold;
}

.comn-title {
  font-weight: 700;
  color: #f25a24;
  text-align: center;
  position: relative;
  padding-bottom: .2rem;
  margin-bottom: 2%;
  font-size: 1.8rem;
}

.comn-title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #f8d93d;
  width: 10rem;
  height: 0.3rem;
}

.red {
  color: red;
}

.phonenumber {
  background: #fff;
  color: #ff0c34;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: .9;
  padding: 2%;
  width: 80%;
  margin: 5% auto 0;
}

.phonenumber span {
  font-weight: bold;
  color: #000;
  font-size: .8rem;
}

#main h2 span {
  color: #000;
  background: linear-gradient(transparent 65%, #fffda6 50%);
}

.return{
  max-width: 400px;
  padding: 20px;
}

.privacy {
  padding: 40px 20px;
}

.privacy h2 {
  text-align: center;
  margin-bottom: 5%;
}

.privacy h3 {
  color: #f7941f;
  margin-bottom: 10px;
}

.privacy p{
  margin-bottom: 20px;
}

.hidden-dash {
  display: none;
}