@charset "UTF-8";
*{
  margin: 0;
  padding: 0;
}

html{
  font-size: 100%;
  scroll-behavior: smooth;
}

body{
  background-color:#FFF ;
  color: #472D1E;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-family: 'Arial',sans-serif;;
}

a{
  text-decoration: none;
  color: #000;
/*  font-size: 1.16vw;*/
}

img{
  max-width: 100%;
  vertical-align: bottom;
 }

 li{
  list-style: none;
 
 }

nav{
  margin: 0 0 0 auto;
}

 .logo{
  width: 130px;
  line-height: 1px;
  margin-right: 60px;
  display: inline-block;
  padding: 10px 0;
 }

 .logo a{
  display: block;
 }

 .pc{
  display: block  !important;
 }
 .sp{
  display: none !important;
 }


/*子要素であるaタグに対して、display: block を指定することで、子要素の縦幅、横幅を指定することができるようになります。 aタグはデフォルトだとインライン要素です。 インライン要素は横幅や縦幅の指定ができないため、親要素いっぱいに広がりません*/


.section-title{
  font-size: 2rem;
  text-align: center;
  position: relative;
  color: #472D1E;
  padding: 70px 0;
 
}

.section-title::after{
  content: "";
  width: 100px;
  height: 5px;
  background-color: #FEB25E;
  display: block;
  margin-bottom: -20px;
  left: 0;
  right: 0;
  margin: 0 auto;

}

.wrapper{
  max-width: 1200px;
  padding: 0 4%;
  text-align: center;
  margin: 0 auto;
}


/*header*/

#header{
  background-color:#FEB25E ;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3%;
}

#header .inner{
  display: flex;
  align-items: center;
}

#header .inner ul{
  display: flex;
  align-items: center;
}

#header .inner li{
  margin-right: 30px;
  color: #472D1E;
  font-size: clamp(10px, 20 / 1440 * 100vw, 20px)
}

#header .inner li:last-child{
  margin-right: 0;
}


#header .contact{
  width: 200px;
  background-color: #FE683C;
  vertical-align: middle;
  color: #fff;
  font-size: 0.75rem;
  display: block;
  text-align: center;
  border-radius: 100vh;
  margin: auto;
  padding: 1rem;
  font-weight: bold;
  transition: 0.5s;
}

#header .contact:hover{
  background-color: #FEB25E;
}

/*ハンバーガーメニュー*/
.navigation-sp{
  display: none;
}


/*main*/
#mainvisual{
/*  height: 510px;*/
  position: relative;
}

#mainvisual .text{
  position: absolute;
  bottom: 55px;
  right: 2%;
  z-index: 10;
}

#mainvisual .text .title{
  font-size: 4vw;
  font-weight: bold;
  margin-bottom: 30px;
  color: #fafafa;
  text-shadow: #432818 4px 2px 5px
}

#mainvisual .text .strong{
  color: #FE683c;
  letter-spacing: 0.1em;
}

#mainvisual .text .strong2{
  font-size: 5vw;
  color: #432818;
  font-weight: bold;
  text-shadow: #fff 4px 2px 5px;

}
#mainvisual .text .btn{
  background: rgb(254,178,94);
  background: linear-gradient(90deg, rgba(254,178,94,1) 0%, rgba(254,104,60,1) 100%);
  border-bottom: 6px solid #FE683C;
  border-radius: 16px;
  color: #fafafa;
  font-size: 1.5rem;
  display: block;
  padding: 15px 35px;
  text-align: center;
  transition: 0.3s;
  position: relative;
}

#mainvisual .text .btn::after{
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid  3px #fafafa;
  border-right: solid 3px #fafafa;
  transform: rotate(45deg);
  position: absolute;
  top: 26px;
  right: 30px;
}

#mainvisual .text .btn:hover{
  opacity: 0.9;
  transform: scale(1.05);
}


#mainvisual img{
  width: 100%;
  height :calc(100vh - 80px)
  object-fit:cover;
}




/*aboutセクション*/
.about-bk {
 background-image: url(../img/about-background.png);
 background-repeat: no-repeat;
 height: 80px;
}

/*detailセクション*/
#detail {
  background-color: #FFD8AF;
  margin-bottom: 0;
  padding: 20px 0;
}

#datail .detail-img p {
  font-size: 2rem;
  color: #472D1E;
}


#detail ul{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 55px;
  margin:1px 1.5em 80px 1.5em;

}


#detail .detail-img{

/*  width: 32%;*/
}

#detail .btn{
 background: rgb(254,178,94);
  background: linear-gradient(90deg, rgba(254,178,94,1) 0%, rgba(254,104,60,1) 100%);
  border-bottom: 6px solid #FE683C;
  border-radius: 16px;
  color: #fafafa;
  font-size: 1.5rem;
  display: block;
  padding: 15px 35px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  margin:0 auto;
  width: 16em;
  height: auto;
}

#detail .btn::after{
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid  3px #fafafa;
  border-right: solid 3px #fafafa;
  transform: rotate(45deg);
  position: absolute;
  top: 26px;
  right: 30px;
}

#detail .btn:hover{
  opacity: 0.9;
  transform: scale(1.05);
}

#detail .wrapper{
  margin-bottom: 0;
}



/*contentsセクション*/
#contents .contents-spbox{
  display: none;
}

#contents {
  background-color: #FFD8AF;
  }

#contents .contents-box{
 display: flex;
  align-items: flex-start;
}  

#contents .contents-pcbox{
  display: flex;
  align-items: flex-start;
}  

#contents .item{
  width: 50%;
  margin-bottom: 70px;
  padding: 0 5%;
}

#contents .contents-text{
  width: 50%;
  text-align: justify;
}

#contents .contents-text dl{
  display: flex;
  flex-wrap: wrap;
  padding: 16px 0;
  margin-bottom: 25px;

}
#contents .contents-text dt{
  font-size: 1.3rem;
  color: #472D1E;
  font-weight: bold;
  width: 25%;
  padding: 0 10px;
}

#contents .contents-text dd{
  width: 75%;
}

#contents .title{
  padding: 70px 0;
}

.sample1 {
    position: relative;
    background: url(../img/Polygon 8.svg);
    min-height: 50px;
}
 
.sample1::after {
    content: "";
    position: absolute;
    bottom: 2px;
    height: 100%;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='220' height='41' viewBox='0 0 220 41' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M110 41L0.880795 0.500021L219.119 0.500001L110 41Z' fill='%23FED8AF'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}



/*3ステップ*/
 .step-title{
  font-size: 2rem;
  text-align: center;
  margin: 0 0 30px 0;
  position: relative;
  color: #472D1E;
  display: flex;
  justify-content: center;
}


.step-title:before,
.step-title:after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #FE683C;
  margin: 0px 4px 4px;

}

.step-title:before{
  transform: rotate(45deg);
}

.step-title:after{
  transform: rotate(-45deg);
}

.flow_design04{
  margin-bottom: 70px;
}

.flow04 {
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}

.flow04 > li {
  list-style-type: none;
 /* width: 100%;
  max-width: 350px;*/
  display: flex;
}

.flow04 > li .icon04 {
  line-height: 2;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background: #FF683C;
  margin: 0 auto 10px;
  display: block;
  border-radius: 100vh;
  position: relative;
}

.flow04 > li .icon04::before {
  content: "";
  border: solid transparent;
  border-width: 7px;
  border-top-color: #FF683C;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flow04 > li dl {
  padding: 30px 20px;
  margin: 0;
  position: relative;
}

.flow04 > li:not(:first-child) dl::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 10px;
  display: inline-block;
  border-top: 4px solid #FF683C;
  border-right: 4px solid #FF683C;
  position: absolute;
  top: calc(50% - 14px);
  left: -45px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.flow04 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #E26B5D;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  margin-bottom: 10px;
  text-align: center;
}

.flow04 > li dl dd {
  margin-left: 0;
}

/*生産者の事例*/
#producer .content{
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

#producer .content .left-img{
  width: 50%;
}

#producer .content .left-img img{
  width: 500px;
  height: auto;
}


#producer .content .right-text{
  width: 50%;
  padding: 0 7%;
}

#producer .content .right-text p{
  text-align: justify;
}


h4{
  font-size: 1.5rem;
  margin-bottom: 60px;
　border-bottom: 1px solid #472D1E;
padding: 0 0 10px 0 ;
}

/*いいモノ.com選定基準*/
#criteria .content{
  display: flex;
  gap: 20px;
}





/*メディア掲載*/
.media-content{
  margin-bottom: 70px;
}
.logo-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

.logo-list img {
  margin-bottom: 10px;
  vertical-align: top;

}


/*私たちの想い*/
#thought{
  background-color:  #FFD8AF;
  margin-bottom: 70px;
  padding-bottom: 70px;
}

#thought .content{
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

#thought .content .left-text{
  width: 50%;
}

#thought .content .right-img{
  width: 50%;
  padding: 0 7%;
}

#thought .content .left-text p{
  padding: 5px 0 ;
  text-align: justify;
}


/*下ボタン*/
.btn{
 background: rgb(254,178,94);
  background: linear-gradient(90deg, rgba(254,178,94,1) 0%, rgba(254,104,60,1) 100%);
  border-bottom: 6px solid #FE683C;
  border-radius: 16px;
  color: #fafafa;
  font-size: 1.5rem;
  display: block;
  padding: 15px 35px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  margin:0 auto;
  width: 16em;
  height: auto;
}

 .btn::after{
  content: "";
  width: 16px;
  height: 16px;
  border-top: solid  3px #fafafa;
  border-right: solid 3px #fafafa;
  transform: rotate(45deg);
  position: absolute;
  top: 26px;
  right: 30px;
}

.btn:hover{
  opacity: 0.9;
  transform: scale(1.05);
}

/*footerセクション*/
#footer{
  background-color: #FEB25E;
  padding: 20px 0 ;
}

#footer .logo{
  margin-right: 0;
  padding: 0;
}

#footer .copyright{
  font-size: 0.625rem;
  color: #fafafa;
  text-align: center;
}

#footer .info {
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

#footer .info li{
  border-right: solid 1px #fff;
  font-size: 0.875rem;
  color: #fafafa;
  padding: 0 10px;
}

#footer .info li:last-child{
  border-right: none;
}

#footer .info li a {
  color: #fafafa;
}



/*#pagetop{
  height: 50px;
  width: 50px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border: solid 2px rgba(254, 178, 94, 0.5);
  background: rgba(254, 178, 94, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}


#pagetop_arrow{
  height: 10px;
  width: 10px;
  border-top: 3px solid #fafafa;
  border-right: 3px solid #fafafa;
  transform: translateY(20%) rotate(-45deg);
}
*/
#pagetop {
  width: 50px;
  height: 50px;
  background-color:  rgba(254, 178, 94, 0.5);
  border: solid 1px #fff;
  border-radius: 50%;
  position: fixed;
  right: 25px;
  bottom: 25px;
}
/*
中の三角は疑似要素で作成
*/
#pagetop::after {
  content: "";
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #fff;
  position: relative;
/*  left: 17px;*/
  bottom: 3px;
}

/*会社情報*/
.corporate {
 /* text-align: center;*/
  margin: 60px auto;
}

.corporate img{
  width: 280px;
  height: auto;
  margin: 35px 0 ;
}

.corporate-title{
  font-weight: bold;
  color: #FEB25E;
  text-align: center;
}

.corporate dl{
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  text-align: left;
  width: 70%;
  font-size: 0.875rem;
  line-height: 1.8;

}

.corporate dt, .corporate dd{
  box-sizing: border-box;
} 

.corporate dt{
 width: 30%;
}

.corporate dd{
  width: 70%;
}


/*SP*/
@media screen and (max-width:900px){
  .pc{
  display:none !important;
 }

 .sp{
  display:block !important;
  margin: 0 auto;
  width: 100%;
 }

/*  .logo{
    width: 80px;
    margin: 8px 0;
  }
*/

  .section-title .ja{
    margin-bottom: 24px;
  }

/*ハンバーガーメニュー*/
.navigation-pc {
  display: none;
}

.navigation-sp{
  top: 100px;
  left: 0px;
  position: absolute;
  z-index: 100;
  width: 100%;
  background-color: #F9D3A9;
}


#hamburger{
  background-color: transparent;
  position: relative;
  cursor: pointer;
  margin: 0 0 0 auto;
  height: 90px;
  width: 90px;
}

.icon span{
  position: absolute;
  left: 15px;
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 8px;
  transition: ease 0.75s;
}

.icon span:nth-of-type(1){
  top: 28px;
}

.icon span:nth-of-type(2){
  top:43px;
}

.icon span:nth-of-type(3){
  bottom: 28px;
}

.close span:nth-of-type(1){
  transform: rotate(45deg);
  top: 28px;
}


.close span:nth-of-type(2){
  opacity: 0;
}

.close span:nth-of-type(3){
transform: rotate(-45deg);  
top: 28px;
}


#header .inner ul{ 
  flex-direction: column;
  align-items: center;
  line-height: 4;
}

#header .inner li{
  margin-right: 0;
  padding: 15px;
  border-bottom: #fafafa 1px solid;
  width: 86%;
}

.navigation-menu a{
  display: block;
  line-height: 60px;
  text-align: center;
  border-top: solid 0.5px #F622EE; 
  font-size: 1rem;
}

/*#main*/
.wrapper{
  padding:  0 16px;
}

.section-title{
  font-size: 1.75rem;
  margin: 0 0;
  padding: 15px 0;
}

.section-title::after{
  width: 80px;
}

/*#mainvisual*/
#mainvisual {
  margin-bottom: 70px;
}

/*#mainvisual .text{
 position: absolute;
 bottom: 10%;
 right: 20px;
 text-align: center;
}

#mainvisual .text .title{
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #fafafa;
  text-shadow: none;

}
*/

#mainvisual .text{
  position: static;
  margin: 20px auto;
}

#mainvisual .text .title{
  display: none;
}


#mainvisual .text .strong2{
  font-size: 2.25rem;

}

#mainvisual .text .btn {
  width: 12em;
  height: auto;

}

#detail ul {
  display: block;
}

#detail ul li{
  width: 100%;
  margin: 50px 0;
}

#detail .btn{
  width: 12em;
  height: auto;
}

.btn{
  width: 12em;
  height: auto;
}

 .flow04 {
    gap: 20px;
  }
  .flow04 > li {
    max-width: unset;
    display: block;
  }
  .flow04 > li:not(:first-child) dl::before {
    display: none;
  }


/*掲載内容*/
#contents .contents-pcbox {
  display: none !important;
}

#contents .contents-spbox{
  display: block;

}

#contents .contents-box{
  display: block;

}  

#contents .item{
  width: 100%;
  padding: 40px 0;
  margin-bottom: 0px;

}

#contents .contents-text{
  width: 100%;
}

#contents .contents-text dt{
  width: 100%;
}

#contents .contents-text dd{
  width: 100%;
}

/*  ヘッダー*/
#header .inner{
  flex-direction: column;
  align-items: flex-start;
}

#header .contact{
  display: none;
}

#mainvisual {
  margin-bottom: 0px;
}

/*私たちの想い*/
#thought .content {
  display: block;
}

#thought .content .left-text{
  width: 100%;
  padding-bottom: 30px;
}

#thought .content .right-img{
  width: 100%;
  padding: 0px;
}


/*生産者の事例*/
#producer .content{
  display: block;
}

#producer .content .left-img{
  width: 100%;
  padding-bottom: 30px;
}

#producer .content .right-text{
  width: 100%;
  padding: 0 ;
}

.pagetop_arrow{
  display: none;
}

.pagetop {
  display: none;
}

/*掲載基準*/
#criteria .content {
  display: block;

 }

#criteria .criteria-img{
  padding: 10px 0 ;
}


/*メディア掲載*/
#media .media-content{
  flex-direction: column;
  padding-top: 30px;
}

#media .media-content article{
  width: 100%;
  margin-bottom: 30px;
}

/*footerセクション*/
#footer .info{
  flex-wrap: wrap;
}

#footer .info {
  margin-bottom: 10px;
}


/*SP*/
@media screen and (max-width:600px){

/*a.btn {width: 10em;font-size: 1.2em;}/*幅480px以下での、ボタンの幅、文字サイズ*/*/

#mainvisual .text{
  position: static;
  margin: 20px auto;
}

#mainvisual .text .title{
  display: none;
}


}

