@charset "UTF-8";

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}
.fo-Medium {
    font-weight: 500;
}

.fo-Bold {
    font-weight: 700;
}

.fo-260 {
    font-size: 260px;
    font-size: 26rem;
}

.fo-50 {
    font-size: 50px;
    font-size: 5rem;
}

.fo-45 {
    font-size: 45px;
    font-size: 4.5rem;
}

.fo-40 {
    font-size: 40px;
    font-size: 4rem;
}

.fo-38 {
    font-size: 38px;
    font-size: 3.8rem;
}

.fo-35 {
    font-size: 35px;
    font-size: 3.5rem;
}

.fo-30 {
    font-size: 30px;
    font-size: 3rem;
}

.fo-25 {
    font-size: 25px;
    font-size: 2.5rem;
}
.fo-23 {
    font-size: 23px;
    font-size: 2.3rem;
}

.fo-20 {
    font-size: 20px;
    font-size: 2rem;
}

.fo-18 {
    font-size: 18px;
    font-size: 1.8rem;
}

.fo-16 {
    font-size: 16px;
    font-size: 1.6rem;
}

.fo-15 {
    font-size: 15px;
    font-size: 1.5rem;
}
.fo-14{
    font-size: 14px;
    font-size: 1.4rem;
}
.fo-13 {
    font-size: 13px;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .fo-50 {
      font-size: 30px;
      font-size: 3rem;
    }
    .fo-45 {
      font-size: 40px;
      font-size: 4rem;
    }
    .fo-40{
        font-size: 25px;
        font-size: 2.5rem;
    }
    .fo-35 {
      font-size: 20px;
      font-size: 2rem;
    }
    .fo-30 {
      font-size: 20px;
      font-size: 2rem;
    }
    .fo-25 {
      font-size: 20px;
      font-size: 2rem;
    }
    .fo-20 {
      font-size: 20px;
      font-size: 2rem;
    }
    .fo-16{
        font-size: 1.4rem;
        font-size: 14px;
    }
    .fo-12{
        font-size: 12px;
        font-size: 1.2rem;
    }
  }


body{
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    font-size: 1.6rem;
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 0;
    color: #542514;
    line-height: 1;
}
.f-01{
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  img{
    max-width: 100%;
    max-height: 100%;
    vertical-align: middle;
    height: auto;
    border: none;
    -webkit-backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
  }
  a{
    text-decoration: none;
  }


input {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.sp {
    display: none;
}
@media screen and (max-width:560px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

#header.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/*フェードアップ*/

.anim-box.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
   
  @keyframes fadeup {
    0% {
      transform: translateY(30px);
      opacity: 0;
    }
    80% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

/* アニメーションスタイル */
/* ---------------------------- */

/* アニメーション前 */
.u-fade-type-up{
    transform: translateY(50px);
    opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
    transition: .6s;
    transform: translateY(0);
    opacity: 1;
}


/*header*/
.page-top img{
    width: 130px;
}
.header-right{
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 100px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.7);
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: 0.5s;
}
#header.hide {
    transform:translateY(-60px);
  }

.header-right a{
    color: #542514;
    transition: .5s;
}
.header-right a:hover{
    color: #EA7E1A;

}
.btn{
    background-color: #EA7E1A;
    padding: 11px 23px;
    border-radius: 100vh;
    transition: .5s;
    border: 1px solid #EA7E1A;
    color: #fff;
}
.btn:hover{
    background-color: #fff;
    border: 1px solid #EA7E1A;
    color: #EA7E1A;
}

/*title*/
.title{
    text-align: center;
}
.title h3{
    color: #EA7E1A;
    margin-bottom: 12px;
    font-family: "din-2014", sans-serif;
    font-weight: 400;
    padding-top: 68px;
}
.title h1{
    color: #EA7E1A;
    position: relative;
    line-height: 1;
    padding:0.25em 2em;
    display: inline-block;
    top:0;
}
.title h1:before, .title h1:after{
    position: absolute;
    top: 0;
    content:'';
    width: 25px;
    height: 100%;
    display: inline-block;
}
.title h1:before {
    border-left: solid 1px #542514;
    border-top: solid 1px #542514;
    border-bottom: solid 1px #542514;
    left: 0;
}
.title h1:after {
    content: '';
    border-top: solid 1px #542514;
    border-right: solid 1px #542514;
    border-bottom: solid 1px #542514;
    right: 0;
}

/*title-sec3*/
.title-sec3 h2{
    color: #542514;
}
.title-sec3 h1{
    color: #542514;
}
.title-sec3 h1:before, .title-sec3 h1:after{
    position: absolute;
    top: -40px;
    content:'';
    width: 25px;
    height: 180%;
    display: inline-block;
}
.title-sec3 h3{
    margin-bottom: 22px;
}

/*title-sec5*/
#sec5 .title h3{
    color: #fff;
    padding-top: 100px;
}
#sec5 .title h1{
    color: #fff;
}
#sec5 .title h1:before {
    border-left: solid 1px #fff;
    border-top: solid 1px #fff;
    border-bottom: solid 1px #fff;
    left: 0;
}
#sec5 .title h1:after {
    content: '';
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    border-bottom: solid 1px #fff;
    right: 0;
}

/*title-sec6*/
#sec6 .title h3{
    color: #542514;
    padding-top: 100px;
}
#sec6 .title h1{
    color: #542514;
}

/*title-sec7*/
#sec7 .title h3{
    color: #542514;
}
#sec7 .title h1{
    color: #542514;
}
/*title-sec7*/
#sec8 .title h3{
    color: #542514;
}
#sec8 .title h1{
    color: #542514;
}

/*sec1*/
.top-bg{
    background-image: url(../images/sec1-bg.png);
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}
#sec1{
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.sec1{
    display: flex;
    justify-content: center;
    width: 100%;
}
.sec1-left img{
    width: 500px;
}
.sec1-right{
    text-align: center;
}
.sec1-right_top{
    font-size: 2.1rem;
    color: #EA7E1A;
    background-color: #fff;
    border: 2px solid #EA7E1A;
    padding: 13px 80px;
    border-radius: 1.3rem;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    width: 400px;
    margin: 0 auto;
    margin-bottom: 35px;
}
.sec1-right h1{
    width: 64rem;
    margin-bottom: 17.5px;
}
.sec1-right_bottom{
    font-size: 4.2rem;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
    margin-bottom: 30px;
}
.sec1-bottom{
    display: flex;
    list-style: none;
    gap: 16px;
    justify-content: center;
}
.sec1-bottom li{
    background-image: linear-gradient(180deg, rgba(217, 92, 32, 1), rgba(234, 141, 65, 1));
    width: 190px;
    height: 190px;
    border-radius: 50%;
    color: #fff;
    font-family: "fot-tsukuardgothic-std", sans-serif;
    font-weight: 700;
}
.sec1-bottom img{
    height: 80px;
    margin: 25px auto 8px;
}
.sec1-bottom h3{
    font-weight: 400;
    line-height: 1.2;
}


/*sec2*/
#sec2 {
    overflow: hidden;
}
.sec2-bg{
    height: 100%;
    position: relative;
    margin: 0;
    background-color: #Fcfcfc;
    border-radius: 0 0 2000px 2000px / 0 0 1000px 1000px;
    margin: 0 -200px;
}
.sec2-item{
    display: flex;
    gap: 55px;
    justify-content: center;
    padding-top: 55px;
    padding-bottom: 200px;
    align-items: center;
}
.sec2-item div{
    display: grid;
    width: 53rem;
    gap: 50px;
    padding-top: 50px;
}
.sec2-item p{
    line-height: 1.7;
}
.sec2-item img{
    width: 36rem;
}
.sec2-bg::after{
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #FBDFCB;
    z-index: -1;
}

/*sec3*/
#sec3{
    overflow: hidden;
}
.sec3-bg{
    background-color: #FBDFCB;
    height: 100%;
    position: relative;
    border-radius: 0 0 2000px 2000px / 0 0 1000px 1000px;
    margin: 0 -200px;
}
.sec3-top{
    display: flex;
    gap: 36px;
    justify-content: center;
    padding: 70px 0 30px 0;
}
.sec3-top div{
    width: 330px;
    height: 150px;
    background-color: #fff;
    border: 1px solid #542514;
    border-radius: 30px;
    text-align: center;
}
.sec3-top p{
    padding: 50px 40px;
    line-height: 1.4;
}
.sec3-item{
    text-align: center;
    padding-bottom: 80px;
}
.sec3-item img{
    width: 332px;
}
.sec3-bottom img{
    width: 430px;
}
.sec3-bottom {
    text-align: center;
    position: relative;
    top: -30px;
}

/*sec4*/
#sec4{
    overflow: hidden;
}
.sec4-bg{
    background-color: #fff;
    height: 100%;
    position: relative;
    border-radius: 0 0 2000px 2000px / 0 0 1000px 1000px;
    margin: 0 -200px;
}
.sec4-bg::after{
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #EA7E1A;
    z-index: -1;
}
.sec4-top{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 27px;
    margin-top: 30px;
}
.sec4-top img{
    width: 97px;
}
.sec4-top p{
    background-color: rgba(255, 123, 0, 0.2);
    padding: 8px 17px;
}
.sec4-span{
    color: #F1862A;
}
.sec4-bottom{
    padding: 30px 0 150px 0;
    width: 170px;
    margin: 0 auto;
}

/*sec5*/
#sec5{
    overflow: hidden;
}
.sec5-bg{
    background-color: #EA7E1A;
    height: 100%;
    position: relative;
    border-radius: 0 0 2000px 2000px / 0 0 1000px 1000px;
    margin: 0 -200px;
}
.sec5-bg::after{
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}
.sec5-top{
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 100px 0 60px 0;
}
.sec5-item_top{
    display: flex;
    justify-content: center;
    padding-bottom: 40px;
    line-height: 1.4;
    color: #EA7E1A;
    align-items: center;
    gap: 10px;
}
.sec5-item{
    padding: 55px 40px;
    background-color: #fff;
    background-color: #fff;
    border: 2px solid #542514;
    border-radius: 20px;
    width: 340px;
}
.sec5-item p{
    line-height: 1.7;
    letter-spacing: 0.05rem;
}
.sec5-item1 img{
    width: 85px;
}
.sec5-item2 img{
    width: 60px;
}
.sec5-item2 h2{
    letter-spacing: -4px;
}
.sec5-item3 img{
    width: 90px;
    height: 75px;
}
.sec5-bottom{
    padding-bottom: 170px;
}
.sec5-bottom h3{
    position: relative;
    width: 450px;
    margin: 0 auto;
    border-bottom: 2px solid;
    color: #fff;
    text-align: center;
    padding-bottom: 20px;
}

.sec5-bottom h3:before,
.sec5-bottom h3:after {
    position: absolute;
    top: 100%;
    left: 50%;
    content: "";
    height: 0;
    width: 0;
}

.sec5-bottom h3:before {
    border: 15px solid;
    border-color: transparent;
    border-top-color: #fff;
    margin-left: -16px;
}

.sec5-bottom h3:after {
    border: 11px solid;
    border-color: transparent;
    border-top-color: #EA7E1A;
    margin-left: -12px;
}
.sec5-bottom div{
    text-align: center;
    background-image: url(../images/sec5-bottom_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 840px;
    height: 154px;
    margin: 40px auto;
    padding: 30px 0;
}
.sec5-bottom p{
    line-height: 1.5;
    text-align: center;
}


/*sec6*/
#sec6{
    overflow: hidden;
}
.sec6-bg{
    background-color: #fff;
    height: 100%;
    position: relative;
    border-radius: 0 0 2000px 2000px / 0 0 1000px 1000px;
    margin: 0 -200px;
}
.sec6-bg::after{
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background: #FAF9F7;
    z-index: -1;
}
.p-bg{
    font-size: 119px;
    font-style: italic;
    color: rgba(255, 255, 255, .5);
    font-family: "din-2014", sans-serif;
    font-weight: 700;
}
.sec6-item1{
    width: 1166px;
    margin: 0 auto;
    margin-top: 90px;
    margin-bottom: 73px;
}
.sec6-item2{
    width: 1166px;
    margin: 0 auto;
    margin-bottom: 73px;
}
.sec6-item3{
    width: 1166px;
    margin: 0 auto;
    padding-bottom: 300px;
}
.sec6-item_top{
    background-color: #EA7E1A;
    border-left: 3px solid #542514;
    border-top: 3px solid #542514;
    border-right: 3px solid #542514;
    border-radius: 40px 40px 0 0 ;
    position      : relative;
    overflow      : hidden;
    margin        : 0 auto;
    width         : 1166px;
    height: 103px;
}
.sec6-item_top .frontStr {
    display       : inline-block;         /* インラインブロック化 */
    position      : absolute;             /* 親要素からの相対位置 */
    padding       : 28px;                 /* BOX内の余白          */
    top           : 0;                    /* 親要素にサイズにする */
    left          : 0;
    right         : 0;
    bottom        : 0;
    text-align: center;
    color: #fff;
}
.sec6-item_top .backStr {
    position      : absolute;             /* 親要素からの相対位置 */
    display       : inline-block;         /* インラインブロック化 */
    white-space   : nowrap;               /* 折り返ししない       */
    top           : 0;
    left          : 0;
}
.sec6-item_bottom{
    border: 3px solid #542514;
    border-radius: 0 0 40px 40px;
}
.sec6-item1_bottom-top{
    display: flex;
    justify-content: center;
    gap: 52px;
    padding: 52px 80px 40px;
    text-align: center;
}
.sec6-item1_bottom-top div{
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.sec6-item1_bottom-left h2,
.sec6-item1_bottom-center h2,
.sec6-item1_bottom-right h2{
    color: #EA7E1A;
    flex-grow: 1;
    padding-bottom: 20px;
}
.sec6-item1_bottom-left p,
.sec6-item1_bottom-center p,
.sec6-item1_bottom-right p{
    color: #707070;
    text-align: left;
    line-height: 1.7;
}
.sec6-item1_bottom-left .p-color{
    color: #EA7E1A;
    text-align: left;
}
.sec6-item1_bottom-left,
.sec6-item1_bottom-center,
.sec6-item1_bottom-right{
    text-align: center;
    width: 300px;
}
.sec6-item1_bottom-left img{
    width: 145px;
}
.sec6-item1_bottom-center img{
    width: 136px;
}
.sec6-item1_bottom-right img{
    width: 180px;
}
.sec6-item1_bottom-bottom{
    display: flex;
    background-color: rgba(255, 245, 224, 0.7);
    margin: 0 80px 52px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}
.sec6-item1_bottom-bottom p{
    color: #EA7E1A;
    text-align: left;
}
.sec6-bottom_left .sec6-price1{
    padding-right: 5px;
}
.sec6-bottom_left .sec6-price2{
    padding-right: 5px;
}
.sec6-price1{
    font-size: 70px;
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    letter-spacing: -3px;
}
.sec6-price2{
    font-size: 113px;
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    letter-spacing: -3px;
    padding-right: 5px;
}
.sec6-bottom_left,
.sec6-bottom_right{
    align-items: end;
}
.arrow {
    display: flex;
    position: relative;
    width: 270px;
    height: 55px;
    background: rgba(2341, 126, 26, 0.3);
    right: 10px;
}
.arrow::after {
    content: "";
    position: absolute;
    right: -40px;
    top: -30%;
    border-left: 40px solid rgba(2341, 126, 26, 0.3);
    border-top: 45px solid transparent;
    border-bottom: 45px solid transparent;
}
.arrow::before {
    content: "初年度1年間特別価格";
    color: #DA170A;
    font-size: 2.5rem;
    margin: auto;
    font-weight: 700;
}
.sec6-item_top img{
    width: 94.3px;
    opacity: 0.5;
    padding-bottom: 20px;
}
.sec6-item2_center h3,
.sec6-item3_center h3{
    color: #EA7E1A;
}
.sec6-item2_center{
    text-align: left;
    padding-bottom: 43px;
    width: 656px;
    margin: 0 auto;
    line-height: 1.7;
}
.sec6-item_bottom{
    text-align: center;
}
.sec6-item_bottom h2{
    padding-bottom: 40px;
    padding-top: 60px;
}
.sec6-item2_bottom{
    background-color: rgba(255, 245, 224, 0.7);
    padding: 15px;
    width: 373px;
    margin: 0 auto 50px;

}
.sec6-item2_bottom p{
    color: #EA7E1A;
    display: flex;
    gap: 5px;
    align-items: baseline;
    justify-content: center;
}
.sec6-item3_top{
    display: flex;
    justify-content: center;
    text-align: left;
    line-height: 1.7;
    align-items: center;
    gap: 15px;
}
.sec6-item3_top img{
    width: 260px;
    height: 130px;
}
.sec6-item3_center{
    text-align: left;
    padding-bottom: 43px;
    width: 841px;
    margin: 0 auto;
    line-height: 1.7;
}

/*sec7*/
#sec7{
    overflow: hidden;
    position: relative;
    z-index: 10;
}
.sec7-bg{
    background-color: #FAF9F7;
    height: 100%;
    position: relative;
    border-radius: 0 0 2000px 2000px / 0 0 1000px 1000px;
    margin: 0 -200px;
}
.sec7-bg::after{
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: -1;
}
.sec7-item li{
    display: flex;
    padding-bottom: 60px;
    gap: 26px;
    position: relative;
    z-index: 1;
}
.sec7-item span{
    font-size: 30px;
    font-size: 3rem;
    color: #fff;
    background-color: #EA7E1A;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    padding-top: 8px;
    text-align: center;
}
.sec7-item div{
    line-height: 1.5;
}
.sec7-item ol{
    margin-top: 50px;
}
.sec7-item{
    width: 600px;
    margin: 0 auto;
    padding-bottom: 100px;
}
.sec7-item li:not(:last-of-type):before{
    content: "";
    position: absolute;
    bottom: 7%;
    left: 24px;
    z-index: 0;
    display: block;
    width: 0;
    height: calc(100% - 78px - -8px);
    border-right: 4px dotted #3C2C25;
}

/*sec8*/
.sec8-bg{
    background-image: url(../images/sec8-bg.png);
    height: 100%;
    background-size: cover;
    padding: 350px 0 50px;
    position: relative;
    top: -200px;
    z-index: 0;
    margin-bottom: -200px;
}
.sec8-item{
    background-color: #fff;
    border-radius: 30px;
    width: 1010px;
    margin: 0 auto;
}
.sec8-item_top{
    padding-top: 67px;
    position: relative;
}
.sec8-item_top::after{
    content: '';
    width: 760px;
    height: 1px;
    display: inline-block;
    background-color: #EA7E1A;
    position: absolute;
    bottom: -10px;
    left: calc(50% - 380px)
}
.sec8-item_top h3 {
    position: relative;
    padding: 1rem 1.5rem;
    text-align: center;
    color: #EA7E1A;
    width: 330px;
    margin: 0 auto;
}

.sec8-item_top h3::before,
.sec8-item_top h3::after {
    position: absolute;
    top: 0.8rem;
    height: 1.8rem;
    content: '';
}

.sec8-item_top h3::before {
    border-left: solid 3px;
    left: 0;
    transform: rotate(-30deg);
}

.sec8-item_top h3::after {
    border-right: solid 3px;
    right: 0;
    transform: rotate(30deg);
}
.sec8-item_top h2{
    color: #EA7E1A;
    text-align: center;
    padding: 10px 0;
}
.sec8-from{
    width: 753px;
    margin: 0 auto;
}
.sec8-from p{
    margin-top: 30px;
    color: #EA7E1A;
    line-height: 2.2;
}
#sec8 input{
    border: 1px solid #EA7E1A;
    background-color: rgba(251, 223, 203, .2);
    width: 100%;
    height: 41px;
    padding: 0 10px;
}
#sec8 textarea{
    border: 1px solid #EA7E1A;
    background-color: rgba(251, 223, 203, .2);
    width: 100%;
    height: 168px;
    overflow-y: scroll;
    padding: 10px;
}
#sec8 input[type="submit"]{
    background-color: #EA7E1A;
    width: 130px;
    color: #fff;
    font-size: 25px;
    font-family: "zen-kaku-gothic-new", sans-serif;
    font-weight: 400;
    border-radius: 100vh;
}
.sec8-from5{
    margin: 0 auto;
    width: 130px;
}

/*footer*/
footer{
    background-color: #542514;
}
.ft-item{
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 60px 150px 53px;
    color: #fff;
}
.ft-item_left{
    line-height: 1.3;
}
.ft-item_right{
    display: flex;
    line-height: 1.3;
    gap: 10px;
}
.ft-item_right img{
    width: 70px;
    height: 61px;
}
footer small{
	font-size: 100%;
    color: #fff;
    padding-bottom: 20px;
}
.tel{
    font-weight: 700;
    letter-spacing: 3px;
}
footer p{
    text-align: center;
}
.ft-copy{
    padding-bottom: 30px;
}
.ft-item_right p,
.ft-item_left p{
    text-align: left;
}


/* 画面サイズが1280px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 768px) {
    .sp-menu {
      display: none;
    }
  }

/*////////////////////////////
////////////Mobile////////////
///////////////////////////*/

@media (max-width: 768px) {

    /*///header///*/
    .page-top img{
        width: 91px;
    }
    .pc-menu {
      display: none;
    }
    .sp-menu__box {
        display: flex;
        height: 60px;
        width: 60px;
        justify-content: center;
        align-items: center;
        z-index: 90;
        position: relative;
    }
    .sp-menu__box span,
    .sp-menu__box span:before,
    .sp-menu__box span:after {
        content: "";
        display: block;
        height: 2px;
        width: 22px;
        border-radius: 3px;
        background: #EA7E1A;
        position: absolute;
    }
    .sp-menu__box span:before {
        bottom: 8px;
    }
    .sp-menu__box span:after {
        top: 8px;
    }
    #sp-menu__check {
        display: none;
    }
    #sp-menu__check:checked ~ .sp-menu__box span {
        background: rgba(255, 255, 255, 0);
    }
    #sp-menu__check:checked ~ .sp-menu__box span::before {
        bottom: 0;
        transform: rotate(45deg);
    }
    #sp-menu__check:checked ~ .sp-menu__box span::after {
        top: 0;
        transform: rotate(-45deg);
    }
    #sp-menu__check:checked ~ .sp-menu__content {
        left: 0;
    }
    .sp-menu__content {
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 100%;
        z-index: 80;
        background-color: #fff;
        transition: all 0.5s;
    }
    .sp-menu__list {
        padding: 100px 100px 0;
        text-align: center;
        display: grid;
        gap: 30px;

    }
    .sp-menu__item {
        list-style: none;
    }
    .sp-menu__link {
        display: block;
        width: 100%;
        font-size: 15px;
        box-sizing: border-box;
        color: #542514;
        text-decoration: none;
        padding: 9px 0px 10px 0;
    }
    .btn{
        color: #fff;
    }
    #header{
        padding: 10px 20px;
    }

    /*sec1*/
    .wrapper{
        max-width: 100%;
        margin: auto;
        padding: 0 3%;
    }
    .top-bg{
        background-image: url(../images/sec1-bg_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
    }
    #sec1{
        display: block;
        justify-content: center;
        position: relative;
        top: 0%;
        left: 0%;
        transform: none;
        width: 100%;
        height: 100%;
    }
    .sec1-sp{
        width: 300px;
        margin: 0 auto;
        top: 54%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
    }

    /*sec2*/
    .sec2-item{
        flex-direction: column-reverse;
        align-items: center;
        gap: 20px;
    }
    .sec2-item div{
        display: grid;
        width: 28rem;
        gap: 50px;
        padding-top: 30px;
    }
    .sec2-item img{
        width: 240px;
    }
    .sec2-item p{
        line-height: 2;
    }
    .sec2-bg{
        border-radius: 0 0 1000px 1000px / 0 0 1000px 1000px;
    }

    /*sec3*/
    /*title-sec3*/
    .title-sec3 h1:before, .title-sec3 h1:after{
        position: absolute;
        top: -27px;
        content:'';
        width: 25px;
        height: 140%;
        display: inline-block;
    }
    .sec3-bg{
        border-radius: 0 0 1000px 1000px / 0 0 1000px 1000px;
    }
    #sec3 .title h1{
        padding:0.25em 2.5em;
        line-height: 1.3;
    }
    .title-sec3 h2 {
        font-size: 18px;
    }
    .sec3-top{
        display: grid;
        gap: 0;
    }
    .sec3-top div{
        margin-bottom: 30px;
    }
    .sec3-item img{
        width: 250px;
    }
    .sec3-bottom_top{
        width: 180px;
        padding: 8px 30px 0;
        font-size: 15px;
        top: -20px;
    }
    .sec3-bottom_top::after{
        height: 20px;
    }
    .sec3-bottom img{
        width: 250px;
    }

    /*sec4*/
    .sec4-bg{
        border-radius: 0 0 1000px 1000px / 0 0 1000px 1000px;
    }
    .sec4-top img{
        width: 52px;
    }
    .sec4-top{
        gap: 10px;
        margin-top: 70px;
    }
    .sec4-top p{
        padding: 6px;
        line-height: 1.5;
        letter-spacing: 1px;
        display: inline;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }
    .sec4-bottom{
        width: 120px;
        padding: 70px 0 160px 0;
    }

    /*sec5*/
    #sec5 .title h1{
        padding:1rem 1em;
    }
    .sec5-top{
        display: grid;
        gap: 30px;
        padding-top: 50px;
    }
    .sec5-item h2{
        font-size: 30px;
    }
    .sec5-item p{
        line-height: 1.7;
        font-size: 16px;
    }
    .sec5-item_top{
        justify-content: space-around;
    }
    .sec5-bottom div{
        text-align: center;
        background-image: url(../images/sec5-bottom_sp.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 330px;
        height: 251px;
        padding-top: 47px;
    }
    .sec5-bottom p{
        line-height: 2;
    }
    .sec5-bg{
        border-radius: 0 0 1000px 1000px / 0 0 1000px 1000px;
    }
    .sec5-bottom h3{
        width: 320px;
    }

    /*sec6*/
    .sec6-bg{
        border-radius: 0 0 1000px 1000px / 0 0 1000px 1000px;
    }
    .sec6-item1_bottom-top{
        display: grid;
    }
    .sec6-item1,
    .sec6-item2,
    .sec6-item3{
        width: 330px;
    }
    .sec6-item_top{
        width: 330px;
    }
    .sec6-item1_bottom-top div{
        padding: 0 40px;
    }
    .p-bg{
        font-size: 80px;
        opacity: 0.5;
    }
    .sec6-item_top .frontStr{
        padding: 35px;
    }
    .sec6-item_top .backStr{
        top: 35px;
        left: 40px;
    }
    .sec6-item_bottom h2{
        line-height: 1.7;
        padding: 30px 0 20px;
        font-size: 25px;
    }
    .sp-center h2{
        text-align: left;
    }
    .sec6-item_bottom p{
        font-weight: 300;
        font-size: 16px;
    }
    .sec6-item1_bottom-bottom{
        display: grid;
        margin: 0 22px 60px;
        padding: 15px 3px;
        justify-content: center;
    }
    .sec6-bottom_left, .sec6-bottom_right{
        display: flex;
    }
    .sec6-bottom_left{
        padding-bottom: 30px;
    }
    .sec6-bottom_right{
        padding-top: 20px;
    }
    .sec6-price1{
        font-size: 50px;
    }
    .sec6-price2{
        font-size: 70px;
    }
    .arrow::after{
        content: "";
        position: absolute;
        height: 0px;
        width: 100%;
        top: 100%;
        left: -20px;
        clip-path: polygon(50% 30%, 100% 0, 0 0);
        background-color: rgba(2341, 126, 26, 0.3);
    }
    .arrow::before{
        font-size: 15px;
        letter-spacing: 1px;
    }
    .arrow{
        width: 175px;
        margin: 0 auto;
    }
    .sec6-item_top_sp img{
        width: 64px;
    }
    .sec6-item_top_sp .backStr{
        left: -10px;
    }
    .sec6-item2_center,
    .sec6-item3_center{
        width: 250px;
    }
    .sec6-item2_center h3{
        padding-bottom: 20px;
    }
    .sec6-item2_bottom{
        width: 260px;
    }
    .sec6-item3_top{
        display: block;
        text-align: center;
    }
    .sec6-item_bottom h2{
        width: 223px;
        margin: 0 auto;
    }
    .sec6-item3_top img{
        width: 173px;
        height: 87px;
        margin-top: 20px;
    }
    .sec6-item3{
        padding-bottom: 150px;
    }
    .arrow{
        display: none;
    }
    .sec6-arrow{
        width: 220px;
        margin: 0 auto;
    }
    .p-top{
        font-size: 30px;
        padding: 35px;
    }

    /*sec7*/
    .sec7-bg{
        border-radius: 0 0 1000px 1000px / 0 0 1000px 1000px;
    }
    .sec7-item{
        width: 330px;
    }
    .sec7-item span{
        width: 60px;
        height: 50px;
    }
    .sec7-item li{
        gap: 6px;
    }
    .sec7-item h3{
        font-size: 25px;
    }
    .sec7-item li:not(:last-of-type):before{
        bottom: 3%;
        height: calc(100% - 68px - -8px);
    }

    /*sec8*/
    .sec8-item{
        width: 330px;
    }
    .sec8-item_top h3{
        font-size: 15px;
        width: 240px;
    }
    .sec8-item_top h2{
        font-size: 20px;
        line-height: 1.7;
    }
    .sec8-item_top::after{
        width: 250px;
        left: calc(100% - 290px);;
    }
    .sec8-from{
        width: 250px;
    }
    #sec8 input[type="submit"]{
        font-size: 15px;
    }
    .sec8-bg{
        background-image: url(../images/sec8-bg_sp.png);
        padding-top: 270px;
    }

    /*footer*/
    .ft-item{
        display: block;
        text-align: center;
        padding: 66px 0  80px;
        width: 330px;
    }
    .ft-item_left p{
        text-align: center;
    }
    .tel{
        font-size: 50px;
    }
    .f-sp_18{
        font-size: 18px;
        line-height: 1.7;
        padding-bottom: 3px;
    }
    .f-sp_16{
        font-size: 16px;
        line-height: 1.7;
        padding-bottom: 3px;
    }
    .f-sp_14{
        font-size: 14px;
        line-height: 1.7;
    }
    .ft-item_right img{
        width: 58px;
        height: 50px;
    }
    .ft-item_left{
        padding-top: 60px;
    }
}