<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --green: #21b046;
    --pastel-green:#e1f7e6;
}

html{
    max-width: 1200px;
    margin: 0 auto;
    /* font-family: "Zen Kaku Gothic Antique", sans-serif; */
}

header,.footer-fixed{
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 clamp(4.375rem, -5rem + 15vw, 6.25rem);
    z-index: 1000000;
    margin: 0 auto;
    background: #fff;
    height: 100px;
}



.header-img{
    display: flex;
    align-self: center;
}

.header-img a{
    width: 100%;    
}

.header-left a img{
    width: clamp(12.5rem, -34.375rem + 75vw, 21.875rem);    
}


.header-right a img{
    width: 180px;
}


.header-tel{
    display: flex;
    flex-direction: column;
    align-self: center;
}

.header-line{
    margin: 0 16px;
}

.cta-box {
    position: relative;
}

.cta-items{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    margin: 2.5% auto 0;
}

.cta-btn{
    width: 100%;
}

.cta-btn_a{
    margin-right: 24px;
}

.tel-number{
    margin-top: -21%;
    text-align: center;
    font-size: clamp(0.563rem, 0.085rem + 2.39vw, 1.875rem);
    font-weight: bold;
   
}

.tel-icon{
    background: url(../img/tel_icon.png) no-repeat center / contain;
    width: 10%;
    height: clamp(0.313rem, -0.033rem + 2.21vw, 1.625rem);
    display: inline-block;
}


.cta-line{
    width: 70%;
    margin: -28% auto 1%;
}

.fixed-telimg{
    margin-top: -8%;
}

.pcfixed-telnum{
    background: none;
    margin-top: -21%;
    font-size: 18px;
    text-align: left;
    padding-left: 18%;
}

.fixed-telnum{
    background: none;
    margin-top: -18%;
    font-size: clamp(0.625rem, 4vw, 2rem);
}

.img-box{
    width: 100%;
}

.img-box img{
    width: 100%;
}

footer{
    background: #21b046;
    padding-bottom: 100px;
}

footer p{
    color: #fff;
    font-weight: bold;
    text-align: center;
    padding: 24px 0;
}

.footer-fixed{
    bottom: 0;
    position: fixed;
    border-top: 10px solid #21b046;
}



.sp-fixed{
    display: none;
}


/*========================= faq========================== */


.faq{
    background:#fff;
    width: 90%;
    margin: 0 auto;
}

/*ã‚¢ã‚³ãƒ¼ãƒ‡ã‚£ã‚ªãƒ³å…¨ä½“*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 1200px;
    margin:0 auto;
}


.accordion-area dl{
    margin: 2%;
}

.accordion-area dd {
margin-inline-start: 0;

}




/* 
======================

FAQ

====================== 
*/


.accordion-area{
    list-style: none;
    width: 100%;
/*    max-width: 900px; */
    margin:10px auto;
}


/*ï¼±:accordionTitle*/
.accordion-area dt {
    position: relative;
    cursor: pointer;
	color: #fff;
    background: var(--green);
    transition: all .5s ease;
	padding: 3% 8%;
	text-align: left;
	line-height: 130%;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    font-size: clamp(0.625rem, 0.526rem + 0.63vw, 1rem);
}




/*é–‹ãé–‰ã˜ã‚‹ãƒœã‚¿ãƒ³*/
.accordion-area dt::after{
    position: absolute;
    content:'ï¼‹';
    font-size: 40px;
    width: 5%;
    height: 20px;
    top:50%;
    right: 0;
	display:block;
	transform: translateY(-50%);
	transition-duration: .6s;
    color: #fff;
}

.accordion-area dt.close::after{
    content:'ï¼';}


/*ï¼¡ï¼šã‚¢ã‚³ãƒ¼ãƒ‡ã‚£ã‚ªãƒ³ã§ç¾ã‚Œã‚‹ã‚¨ãƒªã‚¢*/
.accordion-area dd {
	position: relative;
    display: none;/*ã¯ã˜ã‚ã¯éžè¡¨ç¤º*/
    padding: 3% 3% 3% 8% ;
	margin-inline-start: 0;
	text-align: left;
    border: 3px solid #dbdbdb;
}




/* 
======================

form

====================== 
*/

.box{
    padding-bottom: 100px;
}



.form{
    background: var(--pastel-green);
  }
  
  
  .form-box{
    border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  }
  
  #form-wrap{
    padding: 8% 0 0;
    width: 80%;
    margin: 0 auto;
  }
  
  input[type="text"],
  textarea{
    width: 100%;
    background-color: #fff;
    padding: 4%;
  }
  
  .form-table{
    width: 100%;
    margin-bottom: 2%;
  }
  
  .form-tr{
    width: 100%;
    display: flex;
    margin-bottom: 3%;
  line-height: 32px;
  }
  
  .form-tr &gt; th,
  .form-tr &gt; td{
    width: 100%;
    display: block;
  }
  
  .required{
    background: #ef4f4f;
    padding: 6px 16px;
    margin-right: 6%;
    color: #fff;
  }
  
  .optional{
    background: rgb(220, 220, 220);
    padding: 6px 16px;
    margin-right: 6%;
    color: #fff;
  }
  
  
  .submit-btn{
    text-align: center;
    padding: 3%;
    width: 50%;
    margin: 0 auto;
    display: block;
    background-color: var(--green);
    font-weight: bold;
    color: #fff;
    font-size: 1.3rem;
    letter-spacing: .1rem;
  }
  
  
  .privacy{
    width: 100%;
    height: 250px;
    overflow-y:scroll;
    background-color: #fff;
    margin-bottom: 8%;
    padding: 2% 6%;
  }
  
  .privacy-title{
    color: var(--green);
    font-weight: bold;
    text-align: center;
    padding-bottom: 2%;
  }
  
  .privacy p{
    padding-bottom: 2%;
  }
  
  .privacy dl{
   padding: 2% 1%;
  }
  
  .privacy dt{
    border-bottom: 1px solid #2222;
    padding-bottom: 1%;
  }
  
  .privacy dd{
    padding-bottom: 1%;
    padding-bottom: 2%;
  }
  
  .contact-ad{
    border: 1px solid;
    text-align: center;
    padding-top: 2%;
  }


  .check-content{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
   
    padding: 0 2% 2%;
  }

  .check-list{
    margin-bottom: 3%;
  }

  label[for] {
    cursor: pointer;
    margin-left: 4px;
}

input[type="checkbox"] {
    width: 20px;
    height: 20px;
    background: #fff;
    vertical-align: sub;
    font-weight: bold;
    position: relative;
}

input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 6px;
    transform: rotate(50deg);
    width: 8px;
    height: 13px;
    border-right: 4px solid #000;
    border-bottom: 4px solid #000;
    content: '';
  }

  input[type="radio"] {
    width: 20px;
    height: 20px;
    background: #fff;
    vertical-align: sub;
    font-weight: bold;
    position: relative;
    border-radius: 50%;
}

input[type="radio"]:checked:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
}

 


  @media screen and (max-width:1000px){

    header .header-right{
        padding: 30px clamp(2.5rem, 0.268rem + 5.57vw, 3.75rem);
        display:  none;
     }

     .header-left a img{
        width: clamp(18.125rem, 17.009rem + 2.79vw, 18.75rem);
     }

     header,.footer-fixed{
        padding: 30px;
        height: 60px;
    }

  .footer-fixed{
    display: none;
    }

    .sp-fixed{
        display: flex;
        align-items: center;
        background: #ffe168;
        height: clamp(3.125rem, 2.083rem + 6.67vw, 6.25rem);
        bottom: 0;
        width: 100%;
        position: fixed;
        bottom: 0;
    }

    .sp-fixed a {
        width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .sp-fixed a img{
        width: 30%;
    }

    .sp-fixedbox{
        display: flex;
        width: 100%;
        height: clamp(3.125rem, 2.083rem + 6.67vw, 6.25rem);
    }

    .spfixed-line{
        background: #06c755;
    }

    .spfixed-mail{
        background: #ffe168;
    }

    .spfixed_tel{
        font-size: clamp(0.5rem, 0.083rem + 2.67vw, 1.75rem);
        font-weight: bold;
        padding-left: 10px;
        background: url(../img/tel_icon.png) no-repeat 7% / clamp(0.5rem, 0.083rem + 2.67vw, 1.75rem);
    }

    .fixed-box{
        display: flex;
        align-items: center;
    }
}


@media screen and (max-width:800px){




     .cta-items{
        padding: 8% 0 7%;
        margin-bottom: 0;
    }

    .box {
        padding-bottom: 30px;
    }



    
/* ======================

FAQ

===================== */



.accordion-area dt::after {
    font-size: 1.5rem;
    width: 10%;
}

.accordion-area dt{
    padding-right: 12%;
}


.faq{
    width: 80%;
}




    
/* ======================

form

===================== */

.form-box,#form-wrap{
    width: 90%;
}


.form-tr {
    flex-direction: column;
    margin-bottom: 8%;
    line-height: 2;
}

.form-tr &gt; th {
margin-bottom: 10px;
font-size: 3.8vw;
}

.required,.optional{
    font-size: 3.8vw;
}

textarea {
    height: 250px;
}

.submit-btn {
    padding: 6% 3%;
    width: 100%;
    font-size: 1.2rem;
}

.privacy{
    font-size: .8rem;
    line-height: 1.2rem;
}

.privacy-title{
    padding: 6% 0;
}

.privacy dl {
    padding: 8% 2%;
}

.privacy dd {
    padding-bottom: 6%;
}

.contact-ad{
    margin-top: 3%;
    padding: 6%!important;
}


/* =================================== */

 

    footer{
        padding-bottom: 100px;
    }

}


@media screen and (max-width:640px){

    header{
        padding: 30px clamp(1.25rem, 0.849rem + 2.56vw, 1.875rem);
    }

    .header-img a img{
        width: clamp(9.375rem, 5.369rem + 25.64vw, 15.625rem);
        
    }



    .cta-btn_a {
        margin-right: 8px;
    }

}</pre></body></html>