@charset "UTF-8";

/*共通*/
body{
    margin: 0;
    padding: 0;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

h1,h2,h3,h4,h5,h6,p{
    margin: 0;
    padding: 0;
}

img{
	max-width:100%;
	height:auto;
	
	}

ul {
	list-style-type:none;
    padding:0;
}

/*リンク*/
a{
	color:inherit;
	text-decoration:none;
	
	}

a:hover{
	filter:brightness(90%) contrast(120%);
	
	}

/*横幅と左右の余白*/
.w-container{
    width:min(92%,1166px);
    margin:auto;
    position: relative;
  }  

/*ヘッダー*/
.header-container{
    margin: 0;
    padding: 50px 50px 80px 50px;
    background-color: #fff0b5;
}

.header-in{
    background-color: #fff;
    height: 500px;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.header-text{
    color: #7baada;
    text-align: center;
    transform: rotate(-8deg);
    position: absolute;
    font-size: 1.7rem;
    top: 25px;
    line-height: 1.3;
}

.chisame{
    font-size: 2.5rem;

}

/*header-in PC*/
@media(min-width:768px){
    .header-in{
        height: 425px;
    }

    .header-text{
        font-size: 3rem;
        left: 50px;
        top: 80px;

    }

    .pc, .tb{
        display: none;
    }

}

@media(min-width:1280px){
    .header-text{
        font-size: 2.8rem;
        right: 100px;
        transform: rotate(-6deg);

    }
    .pc{
        display: none;
    }


}

.hero{
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 65px;
}

.mainart{
    width: 300px;
    height: auto;
    position: absolute;
    left: -100px;
}

.hukidashi{
    width: 210px;
    height: auto;
    position: absolute;
    right: -2px;
    bottom: 60px;
    
}


/*mainart PC*/
@media(min-width:768px){
    .mainart{
        width: 360px;
        height: auto;
        position: absolute;
        top:-215px;
    }
    
    .hukidashi{
        width: 240px;
        height: auto;
        position: absolute;
        right: 10px;
        bottom: 60px;
        transform: rotate(-5deg);
        
    }
    
}

/*スクロールアニメーション*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');

.scroll_down{
  position:absolute;
  bottom:220px;
  right:80%;
  animation: arrowmove 1s ease-in-out infinite;
}

.scroll_down a{
  position: absolute;
  left: -24px;
  bottom: 30px;
  color: #7baada;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  letter-spacing: .2em;
  text-transform: uppercase;
  width: 24px;
  height: 24px;
  text-decoration: none;
}

.stext {
  display: block;
  margin-top: 70px;
  margin-left: -14px;
  font-size: 12px;
  color: #7baada;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 2px;
}

.arrow {
  position: absolute;
  width: 28px;
  height: 5px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.arrow:first-child {
  animation: move 3s ease-out 1s infinite;
}

.arrow:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.arrow:before,
.arrow:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #7baada;
}

.arrow:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.arrow:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% { opacity: 1; }
  33% { opacity: 1; transform: translateY(30px); }
  67% { opacity: 1; transform: translateY(40px); }
  100% { opacity: 0; transform: translateY(55px) scale3d(0.5, 0.5, 0.5); }
}

/*pc版*/
@media(min-width:768px){
    .scroll_down{
        position:absolute;
        bottom:120px;
        left:85%;
        animation: arrowmove 1s ease-in-out infinite;
        
        }
      
}



/*navi*/
.navbtn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    padding: 10px;
    color: #7baada;
}

.navbtn ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 24px;

}

.navbtn li{
    background: linear-gradient(to bottom right,#bcdeba,#fff0b5);
    border-radius: 40px;
    padding: 6px 10px;
    font-size: 80%;

}

/*pc*/
@media(min-width:768px){
    .navbtn li{
        padding: 10px 40px;
        font-size: 80%;
    
    }
    
}

/*見出し*/
.heading-decoration{
    margin-bottom: 30px;

}

.heading-decoration h2 {
    position: relative;
    padding: 0.25em 0;
  }

.heading-decoration h2:after {
    content: "";
    display: block;
    height: 4px;
    background: -webkit-linear-gradient(to right, #bcdeba, #fff0b5);
    background: linear-gradient(to right, #bcdeba, #fff0b5);
  }


/*各項目の仕切り線*/
.shikirisen{
    position: relative;
      padding-top: 5px;
      font-size: 26px;
  
  }
  
  .shikirisen::after{
    content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background-image: repeating-linear-gradient(90deg, #bcdeba 0, #fff0b5 8px, rgba(0,0,0,0) 8px, rgba(0,0,0,0) 25px);
  
  }
  

/*about*/
.about-container{
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7baada;
}

.about-text{
    text-align: start;
    text-indent: 1em;
    font-size: 1.4rem;
    line-height: 1.6;
}

/*work*/
.work-container{
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7baada;
}

/*btnbox*/

.btnbox{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*pc*/
@media(min-width:768px){
    .btnbox{
        display: flex;
        flex-direction: row;
    }
    
}

/*説明*/
.setsumei{
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

/*btn*/
.btn{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    padding: 10px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.l{
    background-color: #bcdeba;
    color: #fff0b5;

}

.s{
    background-color: #7baada;
    color: #bcdeba;

}

.btnsetsumei{
    margin: 0 20px;
    font-size: 1.2rem;
    max-width: 21em;
    margin-bottom: 10px;
}

/*btn説明*/
@media(min-width:768px){
    .btnsetsumei{
        margin-bottom: 0;
    }    

}

/*footer*/
.footer-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #7baada;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 1.4rem;
    background: linear-gradient(to bottom right,#bcdeba,#fff0b5);
    padding-bottom: 50px;

}

/*それぞれのworkページ*/
.point-container{
    margin-bottom: 60px;
}

.point-container li{
    font-size: 1rem;
    list-style: circle;
    line-height: 2;
    margin-bottom: 10px;
}

.point-container h2{
    background-color: #bcdeba;
    color: #fff;
    margin:0;
}

.kodawari{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wslogo{
    width: 800px;
    height: auto;
}

.map{
    width: 400px;
    height: auto;
}

/*pc*/
@media(min-width:768px){
    .point-container ul{
        padding:0 150px;
    }
    
}

.target{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 30em;
}
