@charset "utf-8";
/* CSS Document */

/*ヘッダー*/
header{
  height: 68px;
  background-color: #fff;
  padding: 15px 20px;
  text-align: left;
  position: relative;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 10px 5px -5px rgba(0,0,0,0.2);
}
header h1 .logo{
  display: inline-block;
  width: 120px;
  height: auto;
}
header .hambergar-menu{
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.hambergar-menu span, .hambergar-menu span::before, .hambergar-menu span::after{
  transition: all .4s;
  content: '';
  background-color: #333;
  width: 25px;
  height: 3px;
  position: absolute;
  top: 5px;
  right: 0;
  border-radius: 3px;
}
.hambergar-menu span::before{
  top: 8px;
}
.hambergar-menu span::after{
  top: 16px;
}
.hambergar-menu.open span{
  transform: translateY(11px) rotate(-45deg);
}

.hambergar-menu.open span::before {
	opacity: 0;
}

.hambergar-menu.open span::after{
  transform: translateY(-16px) rotate(90deg);
}
header nav{
  display: none;
}
header nav.open{
  display: block;
  background-color: #fff;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  height: 100vh;
  padding: 20px 20px 0;
  border-top: 1px solid #999999;
}
header nav.open ul li{
  border-bottom: 1px solid #999999;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
header nav.open ul li a{
  text-decoration: none;
  color: #333;
}
@media (min-width: 1000px){
  header{
    height: 80px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 21px 60px 22px;
    text-align: left;
    position: relative;
    position: sticky;
    top: 0;
    /*z-index: 1000;*/
  }
  header h1 .logo{
    display: inline-block;
    width: 140px;
    height: auto;
  }
  header nav{
    display: block!important;
  }
  header nav .main-menu{
    /*display: block;*/
    position: absolute;
    top: 30px;
    right: 60px;
  }
  header nav .main-menu{
    display: flex;
    gap: 24px;
  }
  header nav .main-menu li{
    font-size: 1.6rem;
  }
  header nav .main-menu li a{
    text-decoration: none;
    color: #333;
  }
  header nav .sub-menu{
    display: none;
  }
  header .hambergar-menu{
    display: none;
  }
}
/*メインビジュアル*/
.mainvisual-slider{
  /*overflow: hidden;*/
}
.mainvisual-slider .mainvisual1{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.mainvisual-slider .mainvisual2{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
.mainvisual-slider .mainvisual3{
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
}
/*ズームアウトする アニメーション*/
@keyframes fadezoom {
  0% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}
/*このクラス名で、ズームするアニメーションを呼び出せる*/
.slick-animation {
  animation: fadezoom 5s 0s forwards;
}
@media (min-width: 1000px){
  .mainvisual-slider .mainvisual1{
    width: 100%;
    max-width: 1440px;
    height: 600px;
    object-fit: cover;
    object-position: center bottom;
  }
  .mainvisual-slider .mainvisual2{
    width: 100%;
    max-width: 1440px;
    height: 600px;
    object-fit: cover;
    object-position: center top;
  }
  .mainvisual-slider .mainvisual3{
    width: 100%;
    max-width: 1440px;
    height: 600px;
    object-fit: cover;
    object-position: center;
  }
}

/*リード文*/
#about{
  padding: 40px 0 24px;
  letter-spacing: 0.1em;
}
#about .catch-copy{
  padding: 0 20px;
}
#about h2{
  font-family: "UD デジタル 教科書体 NP-B";
  letter-spacing: 0.15em;
  margin-bottom: 20px
}
#about .title_under-line{
  margin-bottom: 40px;
}
#about ul{
  background-color: #e8d7ba;
  padding: 40px 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#about ul li{
  width: 335px;
  height: 200px;  
}
#about ul li img{
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
}
#about .text-area{
  padding: 0 20px;
  line-height: 2;
}
#about .text-area .lead-illust1{
  width: 113px;
  height: auto;
  margin-bottom: 20px;
}
#about .text-area .text1{
  margin-bottom: 30px;
}
#about .text-area .text2-wrapper{
  margin-bottom: 20px;
}
#about .text-area .text2{
  font-weight: 700;
  font-size: 1.6rem;
  background: linear-gradient(transparent 60%, #fcff00 60%);
  display: inline;
}
#about .text2 span{
  color: #c30d23;
}
#about .text-area .lead-illust2{
  width: 108px;
  height: auto;
}
@media (min-width: 700px){
  #about h2{
    margin-top: 0;
  }
  #about .text-area{
    position: relative;
    max-width: 740px;
    margin: 0 auto;
  }
  #about .text-area .lead-illust1{
    width: 70px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 100px;
    margin-bottom: 0;
  }
  #about .text-area .lead-illust2{
    width: 75px;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 80px;
  }
}
@media (min-width: 1000px){
    #about h2{
      font-size: 36px;
    }
    #about ul{
      /*height: 30vw;
      max-height: 432px;
      padding: 4.027vw 20px 4.027vw;*/
    }
    #about ul li{
      /*width: 20.83vw;*/
      width: 266px
      /*width: 29.16vw;*/
      /*max-width: 420px;*/
      /*height: 315px;*/
    }
    #about ul li img{
      width: 100%;
      height: auto;
      /*object-fit: cover;
      object-position: center;*/
    }
    #about .text-area{
      max-width: 1110px;
    }
    #about .text-area .text1{
      font-size: 1.6rem;
      max-width: 540px;
      margin: 0 auto 45px auto;
    }
    #about .text-area .text2-wrapper{
      margin-bottom: 80px;
    }
    #about .text-area .text2{
      font-size: 2.2rem;
    }
    #about .text-area .lead-illust1{
      /*width: 201px;*/
      width: 180px;
      height: auto;
      top: 50px;
      left: 40px;
    }
    #about .text-area .lead-illust2{
      /*width: 188px;*/
      width: 178px;
      height: auto;
      top: 50px;
      right: 40px;
    }
}
@media (min-width: 1440px){
    #about ul{
      padding-top: 58px;
      padding-bottom: 59px;
    }   
}
    

/*スグ食べが選ばれる3つの理由*/
#reason{
  padding: 80px 20px 113px;
  background-color: #fef4d9;
}
#reason h2{
  font-weight: 700;
  margin-bottom: 20px;
}
#reason .title_under-line{
  margin-bottom: 40px;
}
#reason .lead-text{
  line-height: 2;
  margin-bottom: 30px;
}
#reason ol{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
#reason ol li{
  background-color: #FFFFFF;
  border: 3px solid #b5b5b5;
  border-radius: 50px;
  padding: 44px 29px 51px;
  max-width: 335px;
}
#reason ol li img{
  width: 170px;
  height: auto;
  margin-bottom: 30px;
}
#reason ol li h3{
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
#reason ol li p{
  font-size: 1.4rem;
  text-align: left;
}
@media (min-width: 1000px){
  #reason{
    padding: 69px 60px 116px;
  }
  #reason h2{
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
  #reason .lead-text{
    font-size: 1.6rem;
  }
  /*#reason .lead-text{
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 36px;
  }
  #reason ol li{
    padding: 48px 40px 82px;
    max-width: initial;
    width: 420px;
  }
  #reason ol li img{
    width: 215px;
    height: auto;
    margin-bottom: 30px;
  }
  #reason ol li h3{
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
  }
  #reason ol li p{
    font-size: 1.6rem;
  }*/

}
/*スグ食べのお試しセットはこちら*/
.tryset{
  padding: 26px 20px 94px;
  background-color: #e8d7ba;
  background-image: url("../img/tryset_texture.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}
.tryset .fukidasi{
  max-width: 550px;
  height: 90px;
  margin: 0 auto;
  position: relative;
}
.tryset .fukidasi img{
  width: 142px;
  height: auto;
  position: absolute;
  top: 0;
  left: -20px;
}
.tryset h2{
  margin: 0 auto 20px;
}
.tryset .title_under-line{
  margin-bottom: 40px;
}
.tryset ul{
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.tryset ul li{
  width: 335px;
  background-color: #fff;
  border-radius: 40px;
  padding-bottom: 20px;
}
.tryset ul li .picture-area{
  width: 100%;
  height: 209px;
  position: relative;
  margin-bottom: 16px;
}
.tryset ul li .picture-area .vegetable-picture{
  width: 100%;
  height: 209px;
  object-fit: cover;
  border-radius: 40px 40px 0 0;
}
.picture-area .syokaigentei{
  width: 90px;
  height: 90px;
  position: absolute;
  top: 17px;
  left: 13px;
}
.tryset ul li h3{
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 10px;
}
.tryset ul li .kind{
  display: inline-block;
  padding: 12px 37px 12px 39px;
  background-color: #498a0c;
  border-radius: 100px;
  line-height: 1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.tryset ul li .price{
  margin-bottom: 20px;
}
.tryset ul li .price .number{
  color: #f34f39;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1;
  vertical-align: sub;
}
.tryset ul li .price .wrapper{
  display: inline-block;
  font-weight: 700;
  color: #f34f39;
  margin-left: -5px;
}
.tryset ul li .price .tax{
  font-size: 1.2rem;
  line-height: 1;
}
.tryset ul li .price .en{
  font-size: 2.8rem;
  line-height: 1;
  /*vertical-align: top;*/
}
.tryset .hosoku{
  font-size: 10px;
  font-weight: 700;
  text-align: right;
  margin-bottom: 48px;
}
.tryset .button-text{
  font-size: 1.8rem;
  font-weight: 700;
  color: #f34f39;
  line-height: 1;
  margin-bottom: 10px;
}
.tryset .button{
  background-color: #f34f39;
  max-width: 335px;
  height: 87px;
  font-size: 2.0rem;
  font-weight: 700;
  color: #fff;
  padding: 28px 34px 33px 33px;
  border-radius: 100px;
  box-sizing: border-box;
  margin: 0 auto;
}
.tryset .button a{
  text-decoration: none;
  color: #fff;
}
@media (min-width: 1000px){
  .tryset .tryset-wrapper{
    width: 690px;
    margin: 0 auto;
  }
  .tryset .fukidasi{
    max-width: initial;
    width: 690px;
    height: 120px;
    position: relative;
  }
  .tryset .fukidasi img{
    width: 200px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
  }
  .tryset h2{
    font-size: 3.4rem;
    margin: 0 auto 30px;
  }
}
/*よくある質問*/
#question{
  padding: 67px 20px 75px;
}
#question h2{
  margin-bottom: 20px;
}
#question .title_under-line{
  margin-bottom: 35px;
}
#question ul{
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 700px;
  margin: 0 auto;
}
#question ul li{
  border-bottom: 1px solid #b4b4b4;
  text-align: left;
  padding-bottom: 10px;
  position: relative;
}

#question .question-icon{
  background-color: #c30d23;
  width: 40px;
  height: 40px;
  padding: 4px 11px 0;
  border-radius: 100px;
  font-size: 2.0rem;
  color: #fff;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
#question h3{
  width: 57.3vw;
  max-width: 500px;
  display: inline-block;
  font-weight: 500;
  font-size: 1.6rem;
  margin-top: 7px;
}
#question .question-accordion{
  display: inline-block;
  vertical-align: top;
  margin-top: 7px;
  position: absolute;
  top: 0;
  right: 0;
}
#question .question-accordion span{
  display: inline-block;
  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 20px;
  height: 3px;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
}
#question .question-accordion span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}
#question .question-accordion.open span::before{
  display: none;
}
#question .answer{
  display: none;
  text-align: left;
  margin-top: 20px;
}
#question .answer p{
  /*text-align: left;*/
  display: inline-block;
  width: 60vw;
  max-width: 630px;
}
#question .answer-icon{
  width: 40px;
  height: 40px;
  padding: 2px 10px 0;
  border-radius: 100px;
  border: 3px solid #c30d23;
  font-size: 2.0rem;
  color: #c30d23;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}
@media (min-width: 1000px){
  #question{
    padding: 67px 20px 75px;
  }
  #question h2{
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
  #question .title_under-line{
    margin-bottom: 35px;
  }
}
/*こんな農家さんが登録しています*/
.farmer{
  padding: 68px 20px;
  background-color: #fbf9f3;
}
.farmer .title{
  margin-bottom: 38px;
}
.farmer h2{
  font-size: 2.2rem;
}
.farmer .farmers-file img{
  width: 104px;
  height: auto;
}
/*.farmer .title span{
  font-family: "ふい字";
  font-size: 1.6rem;
  color: #498a0c;
}*/
.farmer ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.farmer ul li{
  background-color: "#fff";
  border-radius: 40px;
  max-width: 360px;
}
.farmer ul li .picture{
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 40px 40px 0 0;
}
.farmer ul li .introduction{
  background-color: #fff;
  border: 3px solid #b5b5b5;
  border-top: none;
  border-radius: 0 0 40px 40px;
  padding: 15px 31px 35px 32px
}
.farmer ul li .introduction h3{
  font-size: 2.4rem;
  font-weight: 700;
  text-align: left;
}
.farmer ul li .introduction .nouen{
  font-size: 1.6rem;
  color: #c30d23;
  text-align: left;
  margin-bottom: 5px;
  font-weight: 700;
}
.farmer ul li .introduction .review{
  text-align: left;
  margin-bottom: 15px;
}
.farmer ul li .introduction .review .star{
  width: 112px;
  height: auto;
  display: inline-block;
}
.farmer ul li .introduction .review span{
  font-weight: 700;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  margin-left: -3px;
}
.farmer ul li .introduction p{
  text-align: left;
}
.farmer .button{
  width: 205px;
  height: 57px;
  background-color: #c30d23;
  border-radius: 40px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px;
  box-sizing: border-box;
  margin: 44px auto 0;
}
.farmer .button a{
  text-decoration: none;
  color: #fff;
}
/*スグ食べを利用したお客様の声*/
#customer-voice{
  background-color: #fef4d9;
  padding: 80px 0;
}
#customer-voice h2{
  width: 70vw;
  margin: 0 auto 20px;
}
#customer-voice .title_under-line{
  margin-bottom: 30px;
}
#customer-voice ul{
  height: 600px;
  padding: 0 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}
#customer-voice ul li{
  width: 315px;
  /*max-width: 340px;*/
  height: 560px;
  border: 3px solid #b5b5b5;
  border-radius: 40px;
  background-color: #fff;
  position: relative;
  display: inline-block;
  padding: 0 0 76px 0;
  box-sizing: border-box;
  flex-shrink: 0; 
}
#customer-voice ul li .img-area{
  width: 100%;
  height: 280px;
}
#customer-voice ul li .kirakira1{
  width: 52px;
  height: auto;
  position: absolute;
  top: 3px;
  right: 10px;
  z-index: 999;
}
#customer-voice ul li .kirakira2{
  display: none;
}
#customer-voice ul li .picture_mobile{
  width: 288px;
  height: auto;
  display: inline-block;
  position: absolute;
  top: 33px;
  left: 14px;
}
#customer-voice ul li .wrapper{
  background-color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 180px;
  left: 30px;
  z-index: 998;
}
#customer-voice ul li .wrapper .icon{
  width: 120px;
  height: 100px;
  object-fit: cover;
  margin-left: -10px;
}
/*#customer-voice ul li h3{
  font-family: "ふい字";
  font-size: 1.8rem;
}*/
#customer-voice ul li .free-font-fuiji1{
  width: 252px;
  height: auto;
  margin-bottom: 5px;
}
#customer-voice ul li .free-font-fuiji2{
  width: 234px;
  height: auto;
  margin-bottom: 5px;
}
#customer-voice ul li .free-font-fuiji3{
  width: 270px;
  height: auto;
  margin-bottom: 5px;
}
#customer-voice .name{
  width: 275px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: #fff;
  background-color: #498a0c;
  background-size: 110px 25px;
  margin-bottom: 5px;
}
#customer-voice .text-area{
  width: 275px;
  margin: 0 auto;
  text-align: left;
}
/*@media (min-width: 1000px){
  #customer-voice h2{
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
  #customer-voice ul li{
    width: 940px;
    height: 423px;
    padding-top: 50px;
  }
  #customer-voice ul li .img-area{
    width: auto;
    height: auto;
  }
  #customer-voice ul li .img-area .picture_mobile{
    width: 432px;
    height: auto;
    top: 108px;
    left: 472px;
  }
  #customer-voice ul li .img-area .kirakira1{
    width: 78px;
    height: auto;
    top: 42px;
    right: 48px;
  }
  #customer-voice ul li .img-area .kirakira2{
    display: block;
    width: 60px;
    height: auto;
    position: absolute;
    bottom: 10px;
    left: 414px;
  }
  #customer-voice ul li .wrapper{
    background-color: transparent;
    top: 0;
    left: 0;
  }
  #customer-voice ul li .wrapper .icon{
    width: 281px;
    height: auto;
    position: absolute;
    top: -100px;
    left: 60px;
    margin-left: 0;
  }
  #customer-voice ul li h3{
    font-size: 2.4rem;
  }
  #customer-voice ul li .name{
    font-size: 1.8rem;
  }
  #customer-voice ul li .text-area{
    width: 365px;
    display: inline-block;
    margin-top: 40px;
    margin-left: -480px;
    font-size: 1.8rem;
    
  }
  #customer-voice ul li:nth-child(2){
    display: none;
  }
  #customer-voice ul li:nth-child(3){
    display: none;
  }*/
@media (min-width: 1000px){
  #customer-voice h2{
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
  #customer-voice .title_under-line{
    margin-bottom: 0;
}
  #customer-voice ul{
    height: 480px;
    padding: 70px 200px 0;
    gap: 40px;
  }
  #customer-voice ul::-webkit-scrollbar{
    display: none;
  }
  #customer-voice ul{
    scrollbar-width: none;
  }
  #customer-voice ul li{
    /*width: 800px;*/
    width: 700px;
    /*height: 380px;*/
    height: 350px;
    padding-top: 50px;
  }
  #customer-voice ul li .img-area{
    width: auto;
    height: auto;
  }
  #customer-voice ul li .img-area .picture_mobile{
    /*width: 350px;*/
    width: 300px;
    height: auto;
    top: 100px;
    /*left: 420px;*/
    left: 350px;
    z-index: 999;
  }
  #customer-voice ul li .img-area .kirakira1{
    width: 72px;
    height: auto;
    top: 40px;
    right: 20px;
  }
  #customer-voice ul li .img-area .kirakira2{
    display: block;
    width: 50px;
    height: auto;
    position: absolute;
    bottom: 10px;
    left: 300px;
  }
  #customer-voice ul li .wrapper{
    background-color: transparent;
    top: 0;
    left: 0;
  }
  #customer-voice ul li .wrapper .icon{
    /*width: 281px;*/
    width: 160px;
    height: auto;
    position: absolute;
    /*top: -100px;*/
    top: -10px;
    /*left: 0;*/
    left: 40px;
    margin-left: 0;
  }
  #customer-voice ul li .name{
    font-size: 1.2rem;
  }
  #customer-voice ul li .text-area{
    width: 300px;
    display: inline-block;
    margin-top: 40px;
    margin-left: -320px;
    font-size: 1.4rem;
  }
  
}
/*スグ食べの品質保証*/
.hinsitu{
  position: relative;
  /*z-index: 0;*/
  overflow: hidden;
}
.hinsitu .hinsitu-contents{
  padding: 77px 20px;
  background-color: rgba(232,232,232,0.64);
}
.hinsitu::before{
  content: '';
  background-image: url("../img/hinsituhosyou.png");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: -3px;
  right: -3px;
  /*width: 100%;
  height: 100%;*/
  filter: blur(2px);
  z-index: -1;
}
.hinsitu h2{
  margin-bottom: 20px;
}
.hinsitu .title_under-line{
  margin-bottom: 40px;
}
.hinsitu .bold-text{
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 30px;
}
.hinsitu .bold-text span{
  color: #c30d23;
}
.hinsitu p{
  line-height: 2;
}
.hinsitu p span{
  color: #c30d23;
}
@media (min-width: 1000px){
  .hinsitu{ /*6.25vw*/
    position: relative;
    /*z-index: 0;*/
    overflow: hidden;
  }
  .hinsitu .hinsitu-contents{
    max-width: 70vw;
    margin: 0 15vw;
    padding: 77px 100px;
    background-color: rgba(232,232,232,0.64);
  }
  .hinsitu::before{
    content: '';
    background-image: url("../img/hinsituhosyou.png");
    background-size: cover;
    background-position: center;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    /*width: 100%;
    height: 100%;*/
    filter: blur(2px);
    z-index: -1;
  }
  .hinsitu h2{
    font-size: 3.4rem;
    margin-bottom: 20px;
  }
  .hinsitu .title_under-line{
    margin-bottom: 40px;
  }
  .hinsitu .bold-text{
    margin-bottom: 15px;
  }
}
@media (min-width: 1440px){
  .hinsitu .hinsitu-contents{
    max-width: initial;
    width: 1008px;
    margin: 0 auto;
  }
}
/*スグ食べ公式Instagramも更新中*/
.insta-section{
  padding: 45px 20px 90px;
}
.insta-section .illust{
  width: 100px;
  height: auto;
}
.insta-section h2{
  width: 335px;
  padding-left: 45px;
  line-height: 48px;
  background: url("../img/instagram.png") left bottom/ 45px 44px no-repeat;
  margin: 0 auto 20px auto;
}

.insta-section .title_under-line{
  margin-bottom: 40px;
}
.insta-section h2 span{
  display: none;
}
.insta-section ul{
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.insta-section ul li .picture{
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 1000px){
  .insta-section{
    padding: 100px 60px 100px;
  }
  .insta-section .wrapper{
    position: relative;
    width: 890px;
    margin: 0 auto;
  }
  .insta-section h2{
    font-size: 3.4rem;
    width: 600px;
  }
  .insta-section h2 span{
    display: inline;
  }
  .insta-section .title_under-line{
    margin-bottom: 80px;
  }
  .insta-section .illust {
    width: 160px;
    height: auto;
    position: absolute;
    top: -50px;
    right: 0;
  }
  .insta-section ul li .picture{
    width: 200px;
    height: 200px;
  }
  .insta-section ul{
    max-width: initial;
    max-width: 860px;
  }
}
/*footer*/
footer{
  padding: 20px 13px;
}
footer h1 .logo{
  width: 193px;
  height: auto;
  margin-bottom: 14px;
}
footer .main-menu{
  display: none;
}
footer .topbar{
  background-color: #b5b5b5;
  width: 100%;
  height: 3px;
  margin-bottom: 54px;
}
footer .sns-link{
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 30px;
}
footer .sns-link li img{
  width: 35px;
  height: 35px;
}
footer nav .main-menu{
  display: none;
}
footer .sub-menu{
  margin-bottom: 50px;
}
footer .sub-menu li a{
  text-decoration: none;
  color: #333;
}
footer .sub-menu{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer small{
  font-size: 1.0rem;
  font-weight: 700;
}
@media (min-width: 1000px){
  footer{
    padding: 0 60px 30px;
  }
  footer .flex-wrapper{
    display: flex;
    justify-content: center;
    gap: 50px;
  }
  footer nav .main-menu{
    display: inline-block;
    text-align: left;
  }
  footer nav .main-menu li{
    margin-bottom: 12px;
  }
  footer nav .main-menu li:last-child{
    margin-bottom: 0;
  }
  footer nav .main-menu li a{
    text-decoration: none;
    color: #333;
  }
  footer .sub-menu{
    text-align: left;
  }
}
#scroll-button{
  background-color: #c30d23;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 998;
}
#scroll-button a{
  display: block;
  width: 100%;
  height: 100%;
}
#scroll-button .arrow{
  width: 26px;
  height: auto;
  padding-top: 15px;
}
@media (min-width: 1000px){
  #scroll-button{
    display: none!important;
  }
}