@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+Antique&display=swap');
/*　====================== 基本設定 ======================　*/
*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
}
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body{
    margin:0;
    padding: 0;
    overflow-x: hidden;
    color: #000;
}
ul,ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
img{
    width:100%;
    max-width:100%;
    display: block;
}
/*　====================== フォント設定 ======================　*/
h1,h2,h3,h4,h5,h6{
    font-weight: bold;
    line-height: 1.2;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
}
p,a,div,ul,ol,dl{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.07em;
    line-height: 1.5;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    color: inherit;
}
input,textarea{
    font-size: 16px;
    padding: 5px;
}
@media screen and (max-width:768px){
    p,a,div,ul,ol,dl{
        font-size: 15px;
    }
    input,textarea{
        font-size: 15px;
    }
}
/*　====================== レスポンシブ設定 ======================　*/
.pc-only {
    display: block;
}
.sp-only {
	display: none;
}
@media screen and (max-width:768px){
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}
/*　====================== コンテンツ幅設定 ======================　*/
section{
    padding-top: 80px;
}
.container{
    max-width: 1080px;
    margin: 0 auto;
    width: 90%;
}
/*　====================== flexデフォルト設定 ======================　*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
/*　====================== header ======================　*/
header{
    position: fixed;
    width: 100%;
    top:0;
    left: 0;
    z-index: 150;
}
header>div{
    background-color: #fff;
    padding: 8px 0;    
}
header>div>.flex{
    width: 90%;
    margin: 0 auto;  
}
header h1{
    width: 195px;
}
header .tel-form.flex{
    justify-content: flex-end;
    gap:30px;
}
header .tel-form.flex .tel p:nth-child(1){
    color:#3B2206;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
}
header .tel-form.flex .tel p:nth-child(2){
    color:#E9810A;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0;
    line-height: 1;
}
header .tel-form.flex .form a{
    display: block;
    position: relative;
    color: #fff;
    background-image: linear-gradient(0deg, #e9810a, #d97400);
    padding: 15px 30px 15px 60px;
    border-radius: 30px;
    box-shadow: 0px 2px 2px 2px rgba(59,34,6,20%);
}
header .tel-form.flex .form a::before{
    font-family: "Font Awesome 5 Free";
    content:'\f0e0';
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left:35px;
}
@media screen and (max-width:768px){
    header h1{
    width: 145px;
    }
    header>div>.flex{
        width: 96%;
        padding: 10px 0;
    }
    header .tel-form.flex .form a{       
        padding: 20px 28px;    
        border-radius: 20px;
    }
    header .tel-form.flex .form p{
        display: none;
    }
    header .tel-form.flex .tel a p:nth-child(1){
        font-size: 13px;
        line-height: 1;
    }    
    header .tel-form.flex .tel a p:nth-child(2){
        font-size: 25px;
    }
    header .tel-form.flex .form a::before {        
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }
    header .tel-form.flex {
    gap: 10px;
    }
}
/*　====================== first-view ======================　*/
#first-view{
    margin-top: 70px;
    background-image: url(../img/fv-back-pc.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}
#first-view picture{
    display: block;
    width: 90%;
    margin: 0 auto;
    padding-top: 80px;    
}
#first-view-under-line{
    background-color: #2C5E30;
    padding: 10px 0;
}
#first-view-under-line img{
    width: 35%;
    margin: 0 auto;
}
@media screen and (max-width:768px){
    #first-view{
    margin-top: 70px;
    background-image: url(../img/fv-back-sp.jpg);
}
#first-view picture{
    padding: 20px 0;
}
#first-view-under-line img{
    width: 85%;
}
}
/*　====================== section1 ======================　*/
#sec1{
    background-image: url(../img/sec1-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
    position: relative;
}
#sec1::after{
    position: absolute;
    content: '';
    width: 200px;
    height: 50px;
    background: #f3ffe6;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    bottom:-49px;
    left: 50%;
    transform: translateX(-50%);
}
#sec1 h2{
    width: 50%;
    margin: 0 auto 50px;
}
@media screen and (max-width:768px){
    #sec1{
    padding-top: 130px;
    background-image: url(../img/sec1-back-sp.webp);
    }
    #sec1 h2{
    width: 100%;
    margin: 0 auto 30px;
}
}
/*　====================== section2 ======================　*/
#sec2{
    background-image: url(../img/sec2-back-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
    padding-bottom: 50px;
}
@media screen and (max-width:768px){
    #sec2{
    background-image: url(../img/sec2-back-sp.webp);
    }
}
/*　====================== section3 ======================　*/
#sec3{
    background-image: url(../img/sec3-back-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}
@media screen and (max-width:768px){
    #sec3{
    background-image: url(../img/sec3-back-sp.webp);
    padding: 120px 0;
    }
}
/*　====================== cta ======================　*/
#cta{
    background-image: url(../img/cta-back-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
}
#cta.cta1{
    padding-top: 20px;
    padding-bottom: 80px;
}
#cta.cta1 .img2{
    margin-bottom: 20px;
}
#cta.cta2{
    padding:100px 0; 
}
#cta .img1{
    display: block;
    margin-bottom: 30px;
}
#cta .img2{
    display: block;
    margin-bottom: 50px;
}
#cta .cta-button{
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
}
#cta .tel-form.flex{
    justify-content: center;
    gap:30px;    
}
#cta .tel-form.flex .tel{
    background-color: #fff;
    padding: 15px 50px;
    border-radius: 100px;
    box-shadow: 0px 2px 2px 2px rgba(59,34,6,20%);
}
#cta .tel-form.flex .tel p:nth-child(1){
    color:#3B2206;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
}
#cta .tel-form.flex .tel p:nth-child(2){
    color:#E9810A;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 35px;
    letter-spacing: 0;
    line-height: 1;
}
#cta .tel-form.flex .form a{
    font-size: 18px;
    display: block;
    position: relative;
    color: #fff;
    background-image: linear-gradient(0deg, #e9810a, #d97400);
    padding: 45px 50px 15px;
    border-radius:100px;
    box-shadow: 0px 2px 2px 2px rgba(59,34,6,20%);
}
#cta .tel-form.flex .form a::before{
    font-family: "Font Awesome 5 Free";
    content:'\f0e0';
    font-size: 25px;
    font-weight: 900;
    position: absolute;
    top: 15%;
    transform: translateX(-50%);
    left:50%;
}
@media screen and (max-width:1024px){
    #cta .cta-button{
        width: 100%;
    }
}
@media screen and (max-width:768px){
    #cta{
    background-image: url(../img/cta-back-sp.webp);
    }    
    #cta.cta2{
        padding:30px 0; 
    }
    #cta .img1 {
    margin-bottom: 0;
    }
    #cta .img2{
    margin-bottom: 0;
    }
    #cta .cta-button {
    width: 100%;
    }
    #cta .tel-form.flex{
    flex-direction: column;
    margin: 0 auto;
    gap:15px;
    }
    #cta .tel-form.flex .tel{
    padding: 15px 30px;
    }
    #cta .tel-form.flex .form a {
    padding: 45px 25px 15px;
    }    
}
/*　====================== section4 ======================　*/
#sec4{
    background-image: url(../img/sec4-back-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 180px;
    position: relative;
}
#sec4 .img1{
    display: block;
    width: 70%;
    margin: 0 auto;
}
#sec4 .img2{
    position: absolute;    
    display: block;
    width: 80vw;
    left: 50%;
    transform: translateX(-50%);
    bottom:0;
}
@media screen and (max-width:768px){      
#sec4 .img1{
    width: 100%;
    position: relative;
    top:40px;
}
#sec4 .img2{
    width: 100%;
    transform: translateX(-50%);
    bottom:0;
}
}
@media screen and (min-width:1919px){
    #sec4{
    padding-bottom: 180px;
    }
    #sec4 .img2{
    position: absolute;    
    display: block;
    width: 50vw;
}
}
/*　====================== section5 ======================　*/
#sec5{
    background-image: url(../img/sec5-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 80px;
}
#sec5 .content-wrap{
    padding:100px;
    background-color: #fff;
    position: relative;
}
#sec5 .content-wrap::before{
    position: absolute;
    top:-50px;
    left:-100px;
    content:'';
    display: inline-block;
    width: 727px;
    height: 162px;
    background-image: url('../img/sec5-title-pc.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (max-width:768px){      
#sec5{
    background-image: url(../img/sec5-back-sp.webp);
    background-size: cover;
    padding: 50px 0;
}
#sec5 .content-wrap{
    padding:150px 30px 30px;
}
#sec5 .content-wrap::before{
    position: absolute;
    top:10px;
    left:-20px;
    width: 390px;
    height: 149px;
    background-image: url('../img/sec5-title-sp.webp');
}
}
/*　====================== section6 ======================　*/
#sec6{
    background-image: url(../img/sec6-back-pc.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-bottom: 80px;
}
#sec6 h2{
    width: 50%;
    margin: 0 auto;
}
#sec6 ul{
    flex-wrap: wrap;
    row-gap: 10px;
}
#sec6 ul li{
    width: 46%;
}
@media screen and (max-width:768px){
    #sec6{
    background-image: url(../img/sec6-back-sp.webp);
    }
    #sec6 h2{
    width: 90%;
    }      
   #sec6 ul li{
    width: 100%;
    } 
}
/*　====================== section7 ======================　*/
#sec7{
    background-image: url(../img/sec7-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
}
#sec7 h2{
    width: 70%;
    margin: 0 auto;
    margin-bottom: 50px;
}
#sec7 ul.flex{
    flex-wrap: wrap;
    row-gap: 30px;
}
#sec7 ul.flex li{
width: 28%;
}
@media screen and (max-width:768px){
    #sec7{
        background-image: url(../img/sec7-back-sp.webp);
        padding-top: 100px;
    }
    #sec7 h2{
        width: 90%;
    } 
    #sec7 ul.flex{
        justify-content: center;
    }
    #sec7 ul.flex li{
        width: 90%;
    }
}
/*　====================== section8 ======================　*/
#sec8{
    background-image: url(../img/sec8-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
#sec8 h2{
    width: 60%;
    margin: 0 auto 30px auto;
}
#sec8 h3{
    width: 90%;
    margin: 100px auto 30px auto;
}
#sec8 .text{
    text-align: center;
    color: #3B2206;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
    margin-bottom: 50px;
}
#sec8 .area{
    display: block;
    width: 60%;
    margin: 0 0 0 40%;
}
/* slick */
.sliderArea {
  width: 70%;
  margin: 0 auto;
  padding: 0 25px;
}
.slick-slide {
  margin: 0 15px;
}
.slick-slide img {
  width: 100%;
  height: auto;
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.full-screen .slick-list {
  overflow: visible;
}
@media screen and (max-width:768px){
#sec8{
    background-image: url(../img/sec8-back-sp.webp);
}
#sec8 h2{
    width: 100%;
    margin: 0 auto 30px auto;
}
#sec8 .area{
    width: 70%;
    margin: 0 0 0 30%;
}
#sec8 h3 {
    width: 90%;
    margin: 50px auto 30px auto;
}
.sliderArea {
  width: 100%;
  padding: 0 5px;
}
.slick-slide {
  margin: 0 5px;
}
}
/*　====================== section9 ======================　*/
#sec9{
    background-image: url(../img/sec9-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
    padding-top: 20px;
}
#sec9 h2{
    position: relative;
    top:-40px;
}
#sec9 p{
    position: relative;
    top:-20px;
    text-align: center;
    color: #3B2206;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}
#sec9 ul.flex{
    flex-wrap: wrap;
    row-gap: 50px;
    margin-top: 30px;
}
#sec9 ul.flex li{
    width: 48%;
    position: relative;
}
#sec9 ul.flex li::before{
    position: absolute;
    content: "";
    display: inline-block;
    width: 100px;
    height:85px;
    top:-15px;
    left:-15px;
    background-position: center;
    background-size: contain;
}
#sec9 ul.flex li:nth-child(1)::before{
    background-image: url('../img/sec9-1-pc-decoration.webp');
}
#sec9 ul.flex li:nth-child(2)::before{
    background-image: url('../img/sec9-2-pc-decoration.webp');
}
#sec9 ul.flex li:nth-child(3)::before{
    background-image: url('../img/sec9-3-pc-decoration.webp');
}
#sec9 ul.flex li:nth-child(4)::before{
    background-image: url('../img/sec9-4-pc-decoration.webp');
}
#sec9 ul.flex li:nth-child(5)::before{
    background-image: url('../img/sec9-5-pc-decoration.webp');
}
#sec9 ul.flex li:nth-child(6)::before{
    background-image: url('../img/sec9-6-pc-decoration.webp');
}
@media screen and (max-width:768px){
    #sec9{
        background-image: url(../img/sec9-back-sp.webp);
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }    
    #sec9 h2{
        position: relative;
        top:-50px;
    }
    #sec9 p{
    top:-40px;
    }
    #sec9 .decoration.sp-only{
        position: relative;
        top:-40px;
    }
    #sec9 ul.flex li{
        width: 100%;
    }
    #sec9 ul.flex li::before{
        content: none;
    }
    #sec9 ul.flex {
        row-gap: 30px;
    }
}
/*　====================== section10 ======================　*/
#sec10{
    background-image: url(../img/sec10-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
#sec10 h2{
    text-align: center;
    font-size: 30px;    
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    color:#fff;
    background-color: #2C5E30;
    line-height: 1;
    padding: 10px 0;
    margin-bottom: 30px;
}
/*　====================== section11 ======================　*/
#sec11{
    background-image: url(../img/sec11-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
#sec11 h2{
    text-align: center;
    font-size: 30px;    
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    color:#fff;
    background-color: #2C5E30;
    line-height: 1;
    padding: 10px 0;
    margin-bottom: 30px;
}
#sec11 ul.flex{
    flex-wrap: wrap;
    row-gap: 10px;
}
#sec11 ul.flex li{
    width: 49%;
}
@media screen and (max-width:768px){
#sec11{
    background-image: url(../img/sec11-back-sp.webp);
}
#sec11 ul.flex li{
    width: 100%;
}
}
/*　====================== section12 ======================　*/
#sec12{
    padding-bottom: 80px;
    background-color: #fff;
}
#sec12 h2{
    text-align: center;
    font-size: 30px;    
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    color:#fff;
    background-color: #2C5E30;
    line-height: 1;
    padding: 10px 0;
}
#sec12 .content-wrap{
    position: relative;
}
#sec12 .content-wrap a{
    position: absolute;
    top:45%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: fit-content;
    background-color:#E9810A;
    color:#fff;
    padding: 15px 30px;
    border-radius: 10px;    
}
#sec12 .content-wrap a p:first-child{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1;
}
#sec12 .content-wrap a p:nth-child(2){
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 0.8;
}
p.button{
    text-align: center;
}
p.button input{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 20px;
    margin-top: 30px;
    padding:10px 30px;
    border-radius: 30px;
    letter-spacing: 0.1em;
    border: none;
    color:#fff;
    background-color: #E9810A;
    box-shadow: 0px 2px 2px 2px rgba(59, 34, 6, 20%);
}
/*お問合せフォーム*/
#sec12 h3{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    color:#fff;
    background-color: #3B2206;
    line-height: 1;
    padding: 10px 0;
}
#sec12 table{
    width: 100%;    
    border: 1px #3B2206 solid;
}
#sec12 table tr{
    display: flex;
    padding: 15px;
    background-color: #eeeeee;
    border-bottom: 1px #fff solid;
}
#sec12 table tr th{
    display: block;
    width: 30%;    
    color: #3B2206;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}
#sec12 table tr td{
    display: block;
    width: 70%;
}
#sec12 table tr td input,#sec12 table tr td textarea{
    border: none;
    width: 100%;
    background-color: #fff;
    padding: 10px;
    border-radius: 5px;
    color: #3B2206;
    letter-spacing: 0.1em;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}
#sec12 table tr td textarea{
    height: 100px;
}
@media screen and (max-width:768px){
#sec12 .content-wrap a{
    width: 70%;
    top:45%;    
    left: 65%;
    box-shadow: 0px 2px 2px 2px rgba(59, 34, 6, 20%);
    padding: 15px;
}
#sec12 .content-wrap a p:first-child{
    font-size: 14px;
}
#sec12 .content-wrap a p:nth-child(2){
    font-size: 28px;
}
#sec12 table tr {
    flex-direction: column;

}#sec12 table tr th{
    width: 100%;
    padding-bottom: 5px;
    text-align: left;
}
#sec12 table tr td{
    width: 100%;
}
}
/*　====================== section13 ======================　*/
#sec13{
    background-image: url(../img/sec13-back-pc.webp);
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}
#sec13 .company-wrap.flex{
    flex-wrap: wrap;
    justify-content: space-between;
    color:#fff;
    font-family: "Zen Kaku Gothic Antique", sans-serif;  
    row-gap:15px;
}
#sec13 .company-wrap.flex .flex{
    justify-content: flex-start;
    gap:20px;
}
#sec13 .company-wrap.flex dl{
    width: 48%;    
    padding-bottom: 2px;
    margin-bottom: 2px;
    border-bottom: 1px solid #fff;
}
#sec13 .company-wrap.flex dl dt{
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: bold;
}
@media screen and (max-width:768px){
#sec13 .company-wrap.flex dl{
    width: 100%;    
}
#sec13 .company-wrap.flex .flex{
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}   
}
/*　====================== footer ======================　*/
footer p{
    text-align: center;
    color:#fff;
    line-height: 1;
    padding: 15px;
    background-color: #2C5E30;
}
/*　====================== thanks-sec1 ======================　*/
#thanks-sec1{
    margin: 200px 0;    
}
#thanks-sec1 h2{
    text-align: center;
    color:#d97400;
    font-size: 30px;
    margin-bottom: 30px;
}
#thanks-sec1 p{
    text-align: center;
    margin-bottom: 30px;
}
#thanks-sec1 a{
    display: block;    
    text-align: center;    
    color:#d97400;
    text-decoration: underline;
}