@charset "utf-8";

/*-------------------------------------------------------------------------------------
LP基本設定
----------------------------------------------------------------------------------------*/

html {
  font-size: calc((100vw / 37.5));
}
@media screen and (min-width:751px) and ( max-width:1080px)  {
  html {
    font-size: calc((100vw / 108));
  }
}
@media screen and (min-width: 1081px) {
  html {
    font-size: 62.5%;
  }
}


body{
  line-height: 1.5;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  color: #333;
}
  @media screen and (min-width: 751px) {
    body{
      line-height: 1.5;
      font-size: 1.6rem;
    }
  }


/* 見出し */
h1{
  line-height: 1;
}
h2,h3,h4,h5,h6{
  line-height: 1.35;
  font-weight: 700;
}

/* table */
table th,
table td{
  line-height: 1.5;
}
table th{
  vertical-align: middle;
}

/* li */
li{
  line-height: 1.5;
}

/* dl */
dt,dd{
  line-height: 1.5;
}

/* 段落 */
p{
  text-align: justify;
}

/* anchor link */
a{
  color: var(--main-color);
}
/* ホバー */
a img:hover{
  opacity: 0.9;
  transition: all 0.3s;
}

/*-------------------------------------------------------------------------------------
layout
----------------------------------------------------------------------------------------*/
main{
  overflow: hidden;
}
.secIn{
  width: 100%;
  width: min(100%,1080px);
  margin: 0 auto;
  padding: 4.8rem 2rem;
  position: relative;
}
  @media screen and (min-width: 751px) {
    .secIn{
      padding: 6.4rem 4rem;
    }
  }






/*-------------------------------------------------------------------------------------
main
----------------------------------------------------------------------------------------*/

/*
.secTtl
--------------------------------------------------------*/
.secTtl{
  margin-bottom: 2.4rem;
  text-align: center;
  font-size: 3.2rem;
}
@media screen and (min-width: 751px) {
  .secTtl{
    margin-bottom: 4rem;
    font-size: 4rem;
  }
}


/*
fv
--------------------------------------------------------*/
.fv{
  position: relative;
  background: #fff;
  overflow: hidden;
}
.fv .secIn{
  padding: 1rem 0;
}
.fv::before{
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 66.6666%;
  height: 100%;
  background: #FFEDDB;
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
}

@media screen and (min-width: 751px) {
  .fv{
    position: relative;
    background: #fff;
    overflow: hidden;
  }
  .fv::before{
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 66.6666%;
    height: 100%;
    background: #FFEDDB;
    clip-path: polygon(0 0, 50% 0, 100% 100%, 0% 100%);
  }
  .fv .secIn{
    margin-top: -4rem;
    padding: 0;
  }
  .fv_txt{
    position: relative;
    z-index: 1;
    display: block;
    width: 60%;
    margin: 0 auto;
  }
  .fv_txt::before,
  .fv_txt::after{
    content:"";
    position: absolute;
    z-index: -1;
  }
  .fv_txt::before{
    background: url(../img/fv-img01.png) no-repeat;
    background-size: contain;
    width: 42rem;
    height: 48rem;
    left: -36rem;
    bottom: 3.5rem;
  }
  .fv_txt::after{
    background: url(../img/fv-img02.png) no-repeat;
    background-size: contain;
    width: 41.5rem;
    height: 58rem;
    right: -33rem;
    bottom: 3rem;
  }
  .fv .separator{
    position: relative;
    z-index: 10;
    width: 100%;
    background: transparent;
  }

}
/*
cta
--------------------------------------------------------*/
.fv + .cta_wrap{
  margin-top: -3rem;
}
.cta_wrap{
  position: relative;
  z-index: 10;
}
.cta{
  background: var(--bg-orange);
  text-align: center;
}
.cta .secIn{
  padding: 4rem 2.4rem;
}
.cta .secTtl{
  display: inline-block;
  position: relative;
  padding: 0 3rem;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  text-shadow: 
    #ffffff 2px 0px 0px, 
    #ffffff 1.75517px 0.958851px 0px, 
    #ffffff 1.0806px 1.68294px 0px, 
    #ffffff 0.141474px 1.99499px 0px, 
    #ffffff -0.832294px 1.81859px 0px, 
    #ffffff -1.60229px 1.19694px 0px, 
    #ffffff -1.97998px 0.28224px 0px, 
    #ffffff -1.87291px -0.701566px 0px, 
    #ffffff -1.30729px -1.5136px 0px, 
    #ffffff -0.421592px -1.95506px 0px, 
    #ffffff 0.567324px -1.91785px 0px, 
    #ffffff 1.41734px -1.41108px 0px, 
    #ffffff 1.92034px -0.558831px 0px;
}
.cta .secTtl::before,
.cta .secTtl::after{
  content: "";
  position: absolute;
  top: 0;
  background: var(--white-color);
  width: 3px;
  height: 100%;
  border-radius: 6px;
  display: inline-block;
}
.cta .secTtl::before{
  left: 1rem;
  transform: rotate(-35deg);
}
.cta .secTtl::after{
  right: 1rem;
  transform: rotate(35deg);
}
.cta .cvBtn a{
  display: block;
  width: min(100%,480px);
  margin: auto;
  transition: all 0.3s;
}
.cta .cvBtn a:hover{
  opacity: 0.8;
}


@media screen and (min-width: 751px){
  .fv + .cta_wrap{
    margin-top: -10rem;
  }
  .cta .secIn{
    padding: 4rem;
  }
  .cta .secTtl{
    padding: 0 3rem;
    margin-bottom: 0.8rem;
    font-size: 2.5rem;
  }
  .cta .secTtl::before,
  .cta .secTtl::after{
    width: 3px;
  }
  .cta .secTtl::before{
    left: 1rem;
  }
  .cta .secTtl::after{
    right: 1rem;
  }
  .cta .cvBtn a{
    width: min(100%,480px);
  }

}




/*
onayami
--------------------------------------------------------*/
.onayami{
  background: url(../img/bg-onayami.jpg) no-repeat;
  background-size: cover;
}
.onayami .secIn{
  position: relative;
  padding-bottom: 0;
}
.onayami .secTtl span{
  position: relative;
  font-weight: 700;
}
.onayami .secTtl span::before{
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--orange-color);
}

.onayamiContents .list{
  margin-bottom: 24rem;
}
.onayamiContents .item{
  position: relative;
  width: 94%;
  margin: 0 auto 2rem;
  background: #FAFAFA;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
  padding: 2rem 2.4rem;
  border-radius: 26px;
  font-size: 1.8rem;
  font-weight: 700;
}
.onayamiContents .item::before{
  display: none;
  position: absolute;
  right: -3rem;
  bottom: -2.4rem;
  content: "";
  width: 3rem;
  height: 3.5rem;
  background: url(../img/hukidashi.png) no-repeat;
  background-size: contain;
}
.onayamiContents .item:nth-of-type(even)::before{
  left: -3rem;
  transform: scaleX(-1);
}
.onayamiContents .img{
  position: absolute;
    bottom: -22rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  width: 56%;
}



@media screen and (min-width: 751px){
  .onayami .secIn{
    padding-bottom: 0;
  }
  .onayami .secTtl span{
    position: relative;
    font-weight: 700;
  }
  .onayami .secTtl span::before{
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    content: "";
    width: 0.8rem;
    height: 0.8rem;
  }

  .onayamiContents .list{
    margin-bottom: 16rem;
    display: flex;
    gap: 2rem 12rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .onayamiContents .item{
    position: relative;
    width: 34.4%;
    margin: 0;
    background: #FAFAFA;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.12);
    padding: 2rem 2.4rem;
    font-size: 2.1rem;
  }
  .onayamiContents .item::before{
    position: absolute;
    right: -4rem;
    bottom: -2.4rem;
    content: "";
    width: 4rem;
    height: 4.5rem;
    background: url(../img/hukidashi.png) no-repeat;
    background-size: contain;
  }
  .onayamiContents .item:nth-of-type(even)::before{
    left: -4rem;
    transform: scaleX(-1);
  }
  .onayamiContents .img{
      bottom: -10rem;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
    width: 25.2%;
  }
}






/*
point
--------------------------------------------------------*/
.point{
  background: var(--bg-yellow);
}
.point .secIn{
  width: min(100%,900px);
}
.point .secTtl{
  width: 100%;
  margin: 0 auto 3.2rem;
}
.pointItem{
  gap: 4rem;
  border-radius: 20px;
  border: 2px solid var(--main-color);
  background: var(--white-color);
  padding: 3.2rem 2.4rem;
}
.pointItem + .pointItem{
  margin-top: 3rem;
}
.pointItem .num{
  width: 6rem;
  min-width: 6rem;
  margin: 0 auto 0.6rem;
}
.pointItem .img{
  width:12rem;
  min-width: 12rem;
  margin:  0 auto 1.2rem;
}
.pointItem .detail .ttl{
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--main-color);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}


@media screen and (min-width: 751px){
  .point .secTtl{
    width: 58.1%;
    margin: 0 auto 6.7rem;
  }
  .pointItem{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    padding: 4rem 4.8rem;
  }
  .pointItem .num{
    width: 9rem;
    min-width: 9rem;
    margin-bottom: 0;
  }
  .pointItem .img{
    width: 9.4rem;
    min-width: 9.4rem;
    margin-bottom: 0;
  }
  .pointItem .detail .ttl{
    margin-bottom: 0.6rem;
    text-align: left;
    font-size: 2.6rem;
  }
}


/*
飽き知らずを実現できる仕組み1
--------------------------------------------------------*/
.system01 .secIn{
  padding-top: 0;
}
.system01 .secTtl{
  background: #FF7A12 url(../img/bg-system01.png) no-repeat center center;
  background-size: 48rem;
  padding: 3rem 5rem;
}
.system01 .secTtl span{
  position: relative;
  color: var(--white-color);
  text-shadow: 0px 0px 10px #5A2907;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.system01 .secTtl span::before{
  content: "";
  position: absolute;
    left: -8rem;
    bottom: -4.1rem;
    width: 12rem;
    height: 11.3rem;
  background: url(../img/system-ttl-img.png) no-repeat;
  background-size: contain;
}
.system01 .secTtl span::after{
  content: "";
  position: absolute;
right: -9rem;
    top: -2.8rem;
    width: 5rem;
    height: 5.8rem;
  background: url(../img/system-ttl-tag01.png) no-repeat;
  background-size: contain;
}
.system01 .leadTxt{
  margin-bottom: 3.2rem;
  text-align: center;
  font-size: 1.9rem;
  color: var(--main-color);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.system01 .list{
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin-bottom: 3.2rem;
}
.system01 .list .item{
  width: 100%;
}
.system01 .list .item .img{
  margin-bottom: 1.2rem;
}
.system01 .list .item .txt{
  background: var(--green-color);
  border-radius: 60px;
  padding: 0.4rem 1rem;
  text-align: center;
  font-size: 1.7rem;
  color: var(--white-color);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.system01 .box .img{
  width: 72%;
  margin: auto;
}
.system01 .box .boxTxt{
  padding: 2.4rem 1.6rem;
  border-radius: 20px;
  background: var(--bg-yellow);
  text-align: center;
  font-size: 2rem;
  color: var(--main-color);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.system01 .box .boxTxt span{
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  background: linear-gradient(transparent 75%, var(--orange-color) 75%);
}

@media screen and (min-width: 751px){
  .system01 .secIn{
    padding-top: 0;
  }
  .system01 .secTtl{
    background: #FF7A12 url(../img/bg-system01.png) no-repeat center center;
    background-size: 120rem;
    padding: 5rem 0;
  }
  .system01 .secTtl span::before{
    content: "";
    position: absolute;
    left: -24rem;
    bottom: -4.8rem;
    width: 24rem;
    height: 20rem;
    background: url(../img/system-ttl-img.png) no-repeat;
    background-size: contain;
  }
  .system01 .secTtl span::after{
    content: "";
    position: absolute;
    right: -24rem;
    top: -4.8rem;
    width: 9rem;
    height: 10.3rem;
    background: url(../img/system-ttl-tag01.png) no-repeat;
    background-size: contain;
  }
  .system01 .leadTxt{
    margin-bottom: 5rem;
    text-align: center;
    font-size: 2.4rem;
    color: var(--main-color);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
  }
  .system01 .list{
    margin-bottom: 5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
  }
  .system01 .list .item{
    width: calc((100% - 10rem) / 3);
  }
  .system01 .list .item .img{
    margin-bottom: 1.6rem;
  }
  .system01 .list .item .txt{
    padding: 0.4rem 1rem;
    text-align: center;
    font-size: 1.6rem;
  }
  .system01 .box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .system01 .box .img{
    width: 23%;
    margin: 0;
  }
  .system01 .box .boxTxt{
    padding: 2.4rem 3.2rem;
    text-align: center;
    font-size: 2.4rem;
  }
}

/*
飽き知らずを実現できる仕組み2
--------------------------------------------------------*/
.system02 .secTtl{
  background: #FF7A12 url(../img/bg-system02.png) no-repeat center center;
  background-size: 43rem;
  margin-bottom: 0;
  padding: 3rem 5rem;
}
.system02 .secTtl span{
  position: relative;
  color: var(--white-color);
  text-shadow: 0px 0px 10px #5A2907;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.system02 .secTtl span::before{
  content: "";
  position: absolute;
    left: -8rem;
    bottom: -4.1rem;
    width: 12rem;
    height: 11.3rem;
  background: url(../img/system-ttl-img.png) no-repeat;
  background-size: contain;
}
.system02 .secTtl span::after{
  content: "";
  position: absolute;
    right: -9rem;
    top: -2.8rem;
    width: 5rem;
    height: 5.8rem;
  background: url(../img/system-ttl-tag02.png) no-repeat;
  background-size: contain;
}



.meal{
  background: var(--bg-yellow);
}
.meal .secIn{
  padding-bottom: 2.4rem;
}
.meal .price{
  width: 22rem;
  margin: 0 auto 2.4rem;
}
.system02_ttl{
  margin-bottom: 2.4rem;
  text-align: center;
}
.system02_ttl span{
  font-size: 3.2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    background: linear-gradient(transparent 75%, #FFBBA4 75%);
    color: var(--main-color);
}
.mealList{
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.mealList .item{
  width: 100%;
  margin-bottom: 0;
  padding: 2.4rem;
  border: 3px solid var(--blue-color);
  border-radius: 20px;
  background: var(--white-color);
  text-align: center;
}
.mealList .item .tag{
  display: inline-block;
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 0.6rem 1.6rem;
  line-height: 1;
  font-size: 2.5rem;
  color: #2670C4;
  font-weight: 700;
  background: var(--bg-blue);
}
.mealList .item .tag.chilled{
  background: var(--bg-green);
  color: var(--green-color);
}
.mealList .item .txt{
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 2rem;
}
.mealList .item:nth-of-type(3) .img{
  margin-top: 3.2rem;
}

.service_logo{
  width: 100%;
  margin: 0 auto 3.2rem;
}
.message{
  width: 100%;
  margin: 0 auto;
}
.sarani{
  width: 25rem;
  margin: 0 auto;
}


.select{
  background: #FEE1C4;
}
.selectList{
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
}
.selectList > .item{
  position: relative;
  width: 100%;
  background: var(--white-color);
  margin-top: 6rem;
  padding: 8rem 2.4rem 4rem;
  border-radius: 20px;
}
.selectList .item .img{
  position: absolute;
  width: 12rem;
  top: -6rem;
      left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.selectList .item .tag{
  width: 10rem;
  margin: 0 auto 0.6rem;
}
.selectList .item .ttl{
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 2.6rem;
  color: var(--main-color);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
}
.selectList .item .item{
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 4.4rem;
  font-size: 2rem;
}
.selectList .item .item:last-of-type{
  margin-bottom: 0;
}
.selectList .item .item::before{
  position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  content:"";
    width: 3.6rem;
  height: 3.6rem;
}
.selectList .item01 .item:nth-of-type(1)::before{
  background: url(../img/cook.svg) no-repeat;
  background-size: contain;
}
.selectList .item01 .item:nth-of-type(2)::before{
  background: url(../img/cost.svg) no-repeat;
  background-size: contain;
}
.selectList .item01 .item:nth-of-type(3)::before{
  background: url(../img/time.svg) no-repeat;
  background-size: contain;
}
.selectList .item01 .item:nth-of-type(4)::before{
  background: url(../img/easy.svg) no-repeat;
  background-size: contain;
}


.selectList .item02 .item:nth-of-type(1)::before{
  background: url(../img/frozen.svg) no-repeat;
  background-size: contain;
}
.selectList .item02 .item:nth-of-type(2)::before{
  background: url(../img/chilled.svg) no-repeat;
  background-size: contain;
}

.selectList .item03  .item{
  padding-left: 0;
}


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

.system02 .secTtl{
  background: #FF7A12 url(../img/bg-system02.png) no-repeat center center;
  background-size: 120rem;
  margin-bottom: 0;
  padding: 5rem 0;
}
.system02 .secTtl span{
  position: relative;
  color: var(--white-color);
  text-shadow: 0px 0px 10px #5A2907;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}
.system02 .secTtl span::before{
  content: "";
  position: absolute;
  left: -24rem;
  bottom: -4.8rem;
  width: 24rem;
  height: 20rem;
  background: url(../img/system-ttl-img.png) no-repeat;
  background-size: contain;
}
.system02 .secTtl span::after{
  content: "";
  position: absolute;
  right: -24rem;
  top: -4.8rem;
  width: 9rem;
  height: 10.3rem;
  background: url(../img/system-ttl-tag02.png) no-repeat;
  background-size: contain;
}




.meal .secIn{
  padding-bottom: 2.4rem;
}
.meal .price{
  position: absolute;
  top: 3.8rem;
  left:12.3rem;
  width: 22rem;
}

.system02_ttl{
  margin-bottom: 10rem;
}
.system02_ttl span{
  font-size: 4rem;
}
.mealList{
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 4.8rem;
}
.mealList .item{
  width: calc((100% - 6rem) / 4);
  padding: 2.4rem;
}
.mealList .item .tag{
  margin-bottom: 1rem;
  border-radius: 8px;
  padding: 0.6rem 1.6rem;
  font-size: 2.5rem;
}

.mealList .item .txt{
  margin-bottom: 1.6rem;
  text-align: center;
  font-size: 1.7rem;
}
.mealList .item:nth-of-type(3) .img{
  margin-top: 3.2rem;
}

.service_logo{
  width: 72.4%;
  margin: 0 auto 4.8rem;
}
.message{
  width: 67%;
  margin: 0 auto;
}
.sarani{
  width: 25rem;
  margin: 0 auto;
}


.selectList{
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.selectList > .item{
  position: relative;
  width: calc(((100% - 10rem) / 3));
  padding: 12rem 4rem 4.8rem;
  border-radius: 20px;
}
.selectList .item .img{
  width: 17rem;
  top: -8rem;
}
.selectList .item .tag{
  width: 10rem;
  margin: 0 auto 1.2rem;
}
.selectList .item .ttl{
  margin-bottom: 3.2rem;
  font-size: 2.6rem;
}
.selectList .item .item{
  position: relative;
  margin-bottom: 1.6rem;
  padding-left: 0m;
  font-size: 2.2rem;
}
.selectList .item .item:last-of-type{
  margin-bottom: 0;
}


}




/*
menuType
--------------------------------------------------------*/
.menuType{
  background: 
  var(--bg-orange)
  url(../img/bg-menu-type.png) no-repeat center bottom 2rem;
  background-size: 128rem;
}
.menuType .secTtl{
  width: 100%;
  margin: 0 auto 2.4rem;
}
.menuType_contents .list{
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
}
.menuType_contents .item{
  width: 100%;
}
.menuType_contents .item .img{
  margin-bottom: 1.6rem;
}
.menuType_contents .item .txt{
  background: var(--white-color);
  text-align: center;
  border-radius: 60px;
  padding: 0.4rem 1rem;
  font-size: 1.8rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--main-color);
}

@media screen and (min-width: 751px){
  .menuType{
    background: 
    var(--bg-orange)
    url(../img/bg-menu-type.png) no-repeat center bottom 2rem;
    background-size: 128rem;
  }
  .menuType .secTtl{
    width: 84.7%;
    margin: 0 auto 4rem;
  }
  .menuType_contents .list{
    display: flex;
    gap: 5rem;
  }
  .menuType_contents .item{
    width: calc((100% - 10rem) / 3);
  }
  .menuType_contents .item .img{
    margin-bottom: 1.6rem;
  }
  .menuType_contents .item .txt{
    padding: 0.4rem 1rem;
    font-size: 1.6rem;
  }
}


/*
step
--------------------------------------------------------*/
.step .secTtl{
  margin-bottom: 5rem;
  text-align: center;
}
.step .secTtl span{
  background: linear-gradient(transparent 75%, #FF9A79 75%);
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--main-color);
}
.step_contents .list{
  width: min(100%,780px);
  margin: 0 auto;
}
.step_contents .item{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.step_contents .item + .item{
  position: relative;
  margin-top: 4.8rem;
}
.step_contents .item + .item::before{
  position: absolute;
  top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  content: "";
  width: 3.5rem;
  height: 1.7rem;
  background: #FFCF62;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.step_contents .item .img{
  width: 100%;
}
.step_contents .item .ttl{
  margin-bottom: 0.8rem;
  font-size: 2.4rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--orange-color);
}
.step_contents .item .txt{
  font-size: 1.8rem;
}


@media screen and (min-width: 751px){
  .step .secTtl{
    margin-bottom: 5rem;
  }
  .step_contents .list{
    width: min(100%,780px);
    margin: 0 auto;
  }
  .step_contents .item{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.2rem;
  }
  .step_contents .item + .item{
    position: relative;
    margin-top: 4.8rem;
  }
  .step_contents .item + .item::before{
    position: absolute;
    top: -3rem;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
    content: "";
    width: 3.5rem;
    height: 1.7rem;
    background: #FFCF62;
    clip-path: polygon(50% 100%, 0 0, 100% 0);
  }
  .step_contents .item .img{
    width: 30.8%;
  }
  .step_contents .item .ttl{
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
  }
  .step_contents .item .txt{
    font-size: 1.8rem;
  }
}

/*
お問い合わせフォーム
--------------------------------------------------------*/
.form{
  background: #FFFEE9;
}
.form .secIn{
  width: min(100%,880px);
}
.form .secTtl{
    font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--main-color);
}

