@charset "utf-8";
/* CSS Document */
.header {
  width: 100%;
  background-image: url("../image/background1.jpg");
    background-repeat: repeat;
  background-size: contain;  
}
.header-inner {
  display: flex;
  justify-content: space-between;
}

.header__logo img {
  width: 110px;
  margin-left: 50px;
  margin-top: 20px;
  padding: 0 auto;
}
.header__nav ul {
  display: flex;
  background-color: #000000;
  margin : 50px 100px 100px auto;;
  
}
.header__nav ul li {
  color: #fff;
  font-family: Oswald;
  font-size: 2.0rem;
  padding: 12px 21px;
  font-weight: 300;
}
.header__nav ul li a {
  text-decoration: none;
  color:#fff;
}
.header-sp {
  display: none;
}
.header-sp__logo {
  display: none;
}
@media (max-width:1500px) {
  .header__nav ul { 
    margin: 0;
   margin-top: 50px ;
    margin-right: 80px;
    margin-bottom: 80px
}
}
@media (max-width:1370px) {
  .header__nav ul { 
    margin: 0;
   margin-top: 50px ;
    margin-right: 50px;
    margin-bottom: 60px
}
}
@media (max-width: 1000px) {
  
  .header-inner {
    display: none;
  }
    .header-sp {
    display: block;
  }

/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 8888;
    /*ナビのスタート位置と形状*/
	top:0;
    left: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#333;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    left: 0;
}


/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 8888; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 8888;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #FFFFFF;
  font-family: Oswald;
  font-size: 1.6rem;
	text-decoration: none;
	padding:9px 50px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
  border-bottom: solid 1px #fff;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 8889;/*ボタンを最前面に*/
	top:10px;
	left: 10px;
	cursor: pointer;
    width: 50px;
    height:50px;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

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

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
    .header-sp__logo {
    display: block;
 width: 100%;
    background:#000;
    text-align: center;
    padding: 5px;
  }
  .header-sp__logo img {
    width: 55px;
  }
}
.section-top{
  background-image: url("../image/background1.jpg");
  background-repeat: repeat;
  background-size: contain;
  height: 60vh;
  width:100%;
}
.section-top__wrap {
  position: relative;
  margin-bottom: 30px;
}
.section-top__image img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  object-position: top 10%;
}
.section-top__wrap h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: Oswald;
  color: #fff;
  letter-spacing: 0.2rem;
  font-size:3.5rem;
}
.section-top__scroll {
  position: relative;
  padding-top:30px;
}
/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position:absolute;
	left:50%;
	bottom:-50px;
    /*全体の高さ*/
	height:50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #000;
	font-size: 0.8rem;
  font-weight: 600;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 70px;
	background: #000;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:60px;
		opacity: 1;
	}
	100%{
		height:0;
		top:80px;
		opacity: 0;
	}
}

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}


@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}
 
.fadeUpTrigger{
    opacity: 0;
}
.section-paint__message-text {
  padding-top: 130px;
}
.section-paint__message {
  background-image: url("../image/background1.jpg");
  background-repeat: repeat;
  background-size: contain;
  position: relative;
}
.section-paint__message-text {
  color: #fff;
  font-size: 2.0rem;
  text-align: center;
  line-height: 4.8rem;
  margin-bottom: 70px;
  position: relative;
  z-index: 100;
  letter-spacing: 0.2rem;
  font-weight: 600;
}
.section-paint__message-image img {
  width: 30vw;
  position: absolute;
  top: 100px;
}
@media(max-width:800px) {
  .section-paint__message-image img {
  width: 40vw;
}
}
.section-paint__criterion {
  background-color: rgba(0,0,0,0.3);
  max-width: 1140px;
  margin: 0 auto ;
}
.section-paint__criterion h1 {
  color:#fff;
  font-size: 2.2rem;
  text-align: center;
  padding: 30px 0 80px 0;
}
.section-paint__criterion ul {
  display: flex;
  justify-content: center ;
  padding-bottom: 50px;
  max-width: 840px;
  margin: 0 auto;
}
.section-paint__criterion ul li {
  margin: 0 10px;
  list-style: none;
}
.section-paint__criterion ul li img {
  width: 270px;
  height: 270px;
  object-fit: cover;
  border-radius: 50%;
}
.section-paint__criterion-text  {
  width: 280px;
}
.section-paint__criterion-text h2 {
  text-align: center;
  color:#fff;
  font-size: 1.8rem;
  margin: 20px 0;
}
.section-paint__criterion-text p {
  color: #fff;
  font-size: 1.6rem;
  max-width: 250px;
  line-height: 3.8rem;
  padding-left: 30px;
}

@media(max-width:900px) {
    .section-paint__message-text {
    font-size: 1.8rem;
    line-height: 4.2rem;
  }
}




@media(max-width:1020px){
  .section-paint__criterion ul li img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
    
}
.section-paint__criterion ul li {
  margin: 0 25px;
}
.section-paint__criterion-text  {
width: 210px;
}
  .section-paint__criterion-text h2 {
  text-align: center;
  color:#fff;
  font-size: 1.8rem;
  margin: 20px 0;
}
.section-paint__criterion-text p {
  color: #fff;
  font-size: 1.6rem;
  max-width: 210px;
  line-height: 3.8rem;
  padding-left: 10px;
}
}
@media(max-width:750px){
  .section-paint__criterion ul li img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}
  .section-paint__criterion-text  {
width: 170px;
}
}
@media(max-width:660px){
  .section-paint__message-text {
    font-size: 1.5rem;
    line-height: 3.4rem;
  }
  .section-paint__criterion ul {
    padding: 0;
    padding-bottom: 20px;
  }
  .section-paint__criterion ul li img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
}
  .section-paint__criterion ul li {
  margin: 0 10px;
}

  .section-paint__criterion-text  {
width: 100px;
}
  .section-paint__criterion h1 {
  color:#fff;
  font-size: 1.6rem;
  text-align: center;
  padding: 10px 0 30px 0;
}
    .section-paint__criterion-text h2 {
  text-align: center;
  color:#fff;
  font-size: 1.0rem;
  margin: 10px 0 ;
}
.section-paint__criterion-text p {
  color: #fff;
  font-size: 0.9rem;
  max-width: 210px;
  line-height: 2.0rem;
  padding:0;
}
}
@media(max-width:360px) {
    .section-paint__criterion ul  {
  text-align: center;
}
    .section-paint__criterion ul li img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}
  .section-paint__criterion-text p {
    margin: 0 auto;
    width: 70px;
    text-align: left;
  }
  .section-paint__criterion ul li {
    margin: 0 5px;
  }
}
.section-paint__reason {
  background-image: url("../image/background1.jpg");
  background-repeat: repeat;
  background-size: contain;
  position: relative;
  padding-top: 90px;
}
.section-paint__reason img {
  width:50vw;
  position: absolute;
  right: 0;
  top: 15%;
}
@media(max-width:600px) {
 .section-paint__reason img {
  width:60vw;
  top: 30%;
} 
}
.section-paint__reason-text {
  width: calc(850/1440*100vw);
  margin: 0 auto;
}
.section-paint__reason h1 {
  color:#fff;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 100;
}
.section-paint__reason h2 {
  color:#fff;
  font-size: 2.0rem;
  position: relative;
  z-index: 100;
  margin-bottom: 40px;
}
.section-paint__reason p {
    color:#fff;
  font-size: 1.8rem;
  position: relative;
  z-index: 100;
  line-height: 4.5rem;
  padding-bottom: 100px;
}
@media(max-width:1145px) {
  .section-paint__reason-text{
    width: 70%;
  }
  .section-paint__reason-text h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .section-paint__reason-text h2 {
    font-size: 1.6rem;
    text-align: center;
  }
  .section-paint__reason-text p {
    font-size: 1.4rem;
  }
  
}
@media(max-width:660px) {
  .section-paint__reason-text{
    width: 80%;
  }
  .section-paint__reason-text h1 {
    font-size: 1.6rem;
  }
  .section-paint__reason-text h2 {
    font-size: 1.4rem;
  }
  .section-paint__reason-text p {
    font-size: 1.4rem;
    line-height: 3.5rem;
    padding-bottom: 50px;
  }
  
}
.slider-list {
  display: none;
}
.section-paint__type-textsp {
  display: none;
}
.section-paint__type {
  background-image: url("../image/background2.jpg");
  background-repeat: repeat;
  background-size: contain;
}
.section-paint__type h1 {
  padding: 80px 0 40px 0;
  text-align: center;
  font-size: 2.4rem;
}
.section-paint__type-wrap1 {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
.section-paint__type-wrap2 {
  display: flex;
  justify-content: center;
}
.section-paint__type-by {
background-image: url("../image/paint/paint_decoration/border.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 530px;
  height: 430px;
  margin: 0 20px;
}
.section-paint__type-by h2 {
  text-align: center;
  font-size: 2.6rem;
  padding: 30px 0 40px;
}
.section-paint__type-by p  {
  font-size: 1.6rem;
  margin-left: 30px;
  font-weight: 600;
}
.section-paint__type-by h3 {
  font-size: 1.8rem;
  margin:0 0 10px 30px;
}
.section-paint__type-item, .section-paint__type-item2 {
  position: relative;
  margin: 20px 0 30px;
}
.section-paint__type-item img {
  width: 470px;
  height: 130px;
  margin: 0 30px;
}
.section-paint__type-pc  {
  position:absolute;
  top: 30px;
  left: 15px;
  line-height: 3.5rem;
}
.section-paint__type-item2 img {
  width: 470px;
  height: 130px;
  margin: 0 30px;
}
.section-paint__type-pc2  {
  position:absolute;
  top: 15px;
  left: 15px;
  line-height: 3.5rem;
}
.section-paint__type-text p {
  padding: 50px 0 100px;
  text-align: center;
  color:#333;
  font-size: 1.7rem;
  font-weight: 600;
}
.section-paint__type-sp,.section-paint__type-sp2  {
  display: none;
}
 .slider {
    display: none;
  }
@media(max-width:1220px){
  .section-paint__type-pc , .section-paint__type-pc2 {
    display: none;
  }
  .section-paint__type-sp,.section-paint__type-sp2 {
    display: block;
  }
  .slider {
    display: none;
  }
  .section-paint__type-wrap1,.section-paint__type-wrap2 {
    margin-left: 20px;
  }
  .section-paint__type-by {
background-image: url("../image/paint/paint_decoration/border.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 430px;
  height: 330px;
  margin: 0 20px;
}
.section-paint__type-by h2 {
  text-align: center;
  font-size: 2.0rem;
  padding: 20px 0 30px;
}
.section-paint__type-by p  {
  font-size: 1.6rem;
  margin-left: 30px;
  font-weight: 600;
}
.section-paint__type-by h3 {
  font-size: 1.8rem;
  margin:0 0 10px 30px;
}
.section-paint__type-item, .section-paint__type-item2 {
  position: relative;
  margin: 10px 0 6px;
}
.section-paint__type-item img {
  width: 360px;
  height: 100px;
  margin: 0 30px;
}
.section-paint__type-item p {
  position:absolute;
  top: 20px;
  left: 10px;
  line-height: 2.8rem;
}
.section-paint__type-item2 img {
  width: 360px;
  height: 100px;
  margin: 0 30px;
}
.section-paint__type-item2 p {
  position:absolute;
  top: 5px;
  left: 10px;
  line-height: 2.8rem;
}
}
@media(max-width: 1000px) {
  .section-paint__type h1 {
    font-size: 2.0rem;
  }
    .section-paint__type-pc , .section-paint__type-pc2 {
    display: none;
  }
  .section-paint__type-sp,.section-paint__type-sp2 {
    display: block;
  }
  .slider {
    display: none;
  }
  .section-paint__type-wrap1,.section-paint__type-wrap2 {
    margin:0 30px;
  }
  .section-paint__type-by {
background-image: url("../image/paint/paint_decoration/border.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 350px;
}
.section-paint__type-by h2 {
  text-align: center;
  font-size: 1.8rem;
  padding: 20px 0 10px;
}
.section-paint__type-by p  {
  font-size: 1.3rem;
  margin-left: 15px;
  font-weight: 600;
}
.section-paint__type-by h3 {
  font-size: 1.4rem;
  margin-left: 15px;
  margin-bottom: 0;
}
.section-paint__type-item {
  position: relative;
  margin: 10px 0 6px;
}
 .section-paint__type-item2 {
  position: relative;
  margin: 10px 0 0;
}
.section-paint__type-item img {
  width: 310px;
  height: 80px;
  margin: 0 10px 0 15px;
}
.section-paint__type-item p {
  position:absolute;
  top: 15px;
  left: 10px;
  line-height: 2.8rem;
}
.section-paint__type-item2 img {
  width: 310px;
  height: 85px;
  margin: 0 10px 0 15px;
}
.section-paint__type-item2 p {
  position:absolute;
  top: 5px;
  left: 10px;
  line-height: 2.6rem;
}
}
@media(max-width:749px) {
  .section-paint__type h1 {
  padding: 50px 0 20px 0;
  font-size: 1.6rem;
}
  .section-paint__type-wrap  {
  display: none;
}
  .slider-list {
    display: block;
  }
  .slider-list p {
    text-align: center;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .slider-list__item {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;

  }
  .slider-list__item a {
        color: #333;
    text-decoration: none;
  }
 .slider {
   display: block;}

  .slider img {
    width: 100%;
  }
  
  
  /*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:85%;
    margin:0 auto;
}

/*.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
 /*   height:auto;
}*/

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 10px;
    width: 10px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -3.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -3.5%;
    transform: rotate(45deg);
}

}
@media(max-width:530px) {
  .section-paint__type-text {
    display: none;
  }
  .section-paint__type-textsp {
    display: block;
  }
  .section-paint__type-textsp p {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    padding: 10px 0 50px;
  }
}



.section-flow {
  background-image: url("../image/background2.jpg");
  background-repeat: repeat;
  background-size: contain;
}
.section-flow__title {
  text-align: center;
  margin-bottom: 90px;
}
.section-flow__title img {
  width: 30vw;
}
.section-flow__title h1 {
  font-size: 2.8rem;
  color:#fff;
  margin-top: -35px;
}
.section-flow ol {
  padding-bottom: 120px;
}
.section-flow ol li {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
  .section-flow__wrap {
   display: flex;
  }
.section-flow ol li h1 {
  font-family: Oswald;
  color: #fff;
  font-size: 8.0rem;
  margin-right: 60px;
  display: inline-block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
background-color:#000000;
  text-align:center;
  line-height: 140px;
}
.section-flow ol li h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
  
}
.section-flow__text {
  width: 510px;
}
.section-flow ol li p {
  font-size: 1.6rem;
  font-weight: 600;
}
.section-flow ol li img {
  width: 280px;
  height: 240px;
}

@media(max-width:1020px) {
  .section-flow__title h1 {
  font-size: 1.8rem;
  margin-top: -30px;
}
  .section-flow ol {
    padding-bottom: 0;
    padding-bottom: 60px;
  }
  .section-flow ol li h1 {
  font-size: 3.5rem;
  margin-right: 20px;
  margin-top: 20px;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 77px;
  }
  .section-flow ol li img {
  width: 200px;
  height: 160px;
}
 .section-flow ol li h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
   padding-top: 20px;
} 
 .section-flow__text {
  width: 400px;
}
.section-flow ol li p {
  font-size: 1.4rem;
  font-weight: 600;
}   
}
@media(max-width: 750px) {
  .section-flow__title {
  margin-bottom: 50px;
}

  
  .section-flow ol li {
    display: block;
  }
  .section-flow__wrap {
    justify-content: center;
    margin: 0 5%;
  }
  .section-flow ol li p {
  font-size: 1.4rem;
  margin-right: 10px;
} 
   .section-flow ol li h1 {
  font-size: 2.0rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  line-height: 48px;
     margin: 0;
    margin-left: 5%;
  } 
}
@media(max-width:550px) {
    .section-flow__title img {
    width:30vw;
  }
  .section-flow__title h1 {
  font-size: 1.4rem;
  margin-top: -27px;
}
  .section-flow__wrap {
    flex-direction: column-reverse;
  }
  .section-flow__wrap {
    margin:0;
    margin: 0 5% 0 10%;
  }
  .section-flow ol li img {
    margin: 0 auto;
     width: 280px;
  height: 240px;
  }
     .section-flow ol li h1 {
    margin-left: 5%;
    margin-bottom: 5%;
  } 
   .section-flow ol li p {
margin: 0;
} 
 .section-flow__text {
  width: 80%;
   margin: 0 5%;
}
}

.section-spray {
  background-image: url("../image/background1.jpg");
  background-repeat: repeat;
  background-size: contain;
}
.section-spray__title {
  text-align: center;
  margin-bottom: 90px;
  padding-top: 50px;
}
.section-spray__title img {
  width: 35vw;
}
.section-spray__title h1 {
  font-size: 2.8rem;
  color:#fff;
  margin-top: -35px;
}
.section-spray__image {
  background-image: url("../image/paint/S__28696589.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 60vh;
  margin-bottom: 130px;
}
.section-spray__image-filter {
  background-color: rgba(0, 0, 0, 0.45);
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.section-spray__image-filter p {
  color: #fff;
  font-size: 1.6rem;
  width: 780px;
  line-height: 4.5rem;
}
.section-spray__type {
  position: relative;
}
.section-spray__type-title img {
  position: absolute;
  top: 10px;
  width: 50vw;
}
.section-spray__type-title h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #fff;
  position:relative;
  z-index: 100;
}
.section-spray__patterns {
  background-color: rgba(0,0,0,0.3);
  margin: 30px 10% ;
  position: relative;
  z-index: 100;
}
@media(max-width:1020px) {
  .section-spray__title {
    margin-bottom: 0;
    margin-bottom: 50px;
  }
  .section-spray__title img {
    width: 35vw;
  }
  .section-spray__title h1 {
    font-size: 1.8rem;
    margin-top: -30px;
  }
   .section-spray__image-filter p {
    width: 100%;
    padding: 30px 80px;
     line-height: 4.0rem;
  }
  .section-spray__image {
  height: 50vh;
    margin: 0;
  margin-bottom: 100px;
}
}
@media(max-width:550px) {
  .section-spray__title h1 {
    font-size: 1.4rem;
       margin-top: -27px;
  }
   .section-spray__image-filter p {
    font-size: 1.4rem;
    line-height: 3.2rem;
         padding: 0 30px;
  }
    .section-spray__image {
  height: 70vh;
      margin-bottom: 50px;
}
}

.section-tasai img, .section-rishin img, .section-sutakko img, .section-spraytile img {
  width: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  padding: 20px ;
}
.section-tasai p, .section-rishin p, .section-sutakko p, .section-spraytile p {
  color: #fff;
  font-size: 1.6rem;
  text-align: center;
}
.section-spray__patterns1,.section-spray__patterns2 {
  display: flex;
  justify-content: center;
  padding: 30px;
}
.section-spray__message {
  position: relative;
}
.section-spray__message img {
  position: absolute;
  right: 0;
  top: -150px;
  width: 60vw;
}
.section-spray__message p {
  text-align: center;
  color:#fff;
  font-size: 1.7rem;
  font-weight: 600;
  position: relative;
  z-index: 100;
  padding-bottom: 80px;
}
.pc-none {
  display: none;
}
@media(max-width:1020px) {
  .section-spray__type-title h1 {
    font-size: 1.8rem;
  }
.section-tasai img, .section-rishin img, .section-sutakko img, .section-spraytile img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  padding: 20px ;
}
  .section-tasai p, .section-rishin p, .section-sutakko p, .section-spraytile p {
  font-size: 1.4rem;
}
  .section-spray__patterns1,.section-spray__patterns2 {
  padding: 0 30px;
}
  .section-spray__message img {
  position: absolute;
  right: 0;
  top: -65px;
}
  .section-spray__message p {
    font-size: 1.4rem;
  }

}
@media(max-width:550px) {
    .section-spray__type-title h1 {
    font-size: 1.6rem;
  }
  .section-tasai img, .section-rishin img, .section-sutakko img, .section-spraytile img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  padding: 20px ;
}
   .section-spray__message p {
    font-size: 1.3rem;
     font-weight: 500;
     padding-bottom: 50px;
  }
  .pc-none {
    display: block;
  }
}
@media(max-width:340px) {
    .section-tasai img, .section-rishin img, .section-sutakko img, .section-spraytile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  padding: 10px ;
}
}


/*ボタン*/
.btn41-43 {
  padding: 10px 80px;
  font-family: Oswald ;
  font-size:2.0rem;
  font-weight: 500;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  text-decoration: none;
  margin: 0 0 80px;
}

.btn-43 {
  border: 2px solid rgb(255, 255, 255);
  z-index: 1;
  color: white;
}

.btn-43:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease;
}

.btn-43:hover {
  color: rgb(0, 0, 0);
}

.btn-43:hover:after {
  top: auto;
  bottom: 0;
  height: 100%;
}
.section-paint__button {
text-align: center;
}

.section-footer {
  background-color:#000000;
  height: 250px;
  position: relative;
}

.section-footer h1 {
  font-family: Oswald;
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  padding-top: 30px;
  font-weight: 400;
}

.section-footer ul {
  padding-top: 50px;
   display: flex;
  justify-content: center;
}
.section-footer ul li {
  color:#fff;
  font-family: Oswald;
  font-size: 1.8rem;
  padding: 0 20px;
}
.section-footer ul li a {
  text-decoration: none;
  color:#fff;
}
.section-footer img {
  width: 40px;
  position: absolute;
  right: 10%;
  top: 15%;
}
.section-footer small {
  display: block;
  text-align: center;
  font-size: 1.3rem;
  color:#fff;
  padding-top: 70px;
}
 /*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:self-end;
	background:#333;
	border-radius: 5px;
	width: 40px;
	height: 40px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:2.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	left: 10px;
	z-index:1000;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

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

.button-sp {
  display: none;
}

#contact a{
	display: flex;
	align-items:center;
  font-family: Oswald;
  width: 260px;
  height: 100px;
	color: #fff;
	text-align: left;
   letter-spacing: 0.2rem;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:2.0rem;
	transition:all 0.3s;
  padding-left: 30px
}
.button-pc button img {
  width:70px;
  height: 70px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

#contact a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#contact {
	position: fixed;
	right: 10px;
	z-index:1000;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
  	background:#000;
  border-radius: 0 100px 100px 0;
}

/*　上に上がる動き　*/

#contact.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#contact.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
 
@media (max-width:750px) {
  .section-footer {
    height: 430px;
  }
  .section-footer ul {
    display: block;
    margin-bottom: 20px;
  }
  .section-footer ul li {
    margin-bottom: 10px;
    margin-left: 20px;
  }
  .section-footer small {
    padding: 0;
    padding: 10px;
  }
  .section-footer img {
  width: 40px;
  position: absolute;
  right: 10%;
  top: 25%;
}
  .button-pc  {
    display: none;
  }
  .button-sp {
    display: block;
  }
      .button-sp {
    position: fixed;
    bottom: 0px;
    z-index: 1000;
    width: 100vw;
    display:flex;
    justify-content: center;
  }
  
  .button-sp button {
   background-color:#000000;
  width: 250px;
  height: 50px; 
}
.button-sp button a {
  color:#fff;
  font-family: Oswald;
  font-size: 2.0rem;
  text-decoration: none;
  letter-spacing: 0.2rem;
}
  #contact2 a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#contact2 {
	position: fixed;
	right: 10px;
	z-index:1000;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}
}
/*　上に上がる動き　*/

#contact2.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

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

}
  