/*==================================================
ヘッダーが邪魔にならないよう　ふわっと表示　部分
===================================*/
.header-fade {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 901;
  transition: background .8s;/*ヘッダーをふわっと表示*/
}
.header-fade_after{
  background: rgba(255, 255, 255, 1);
}
/*==================================================
ヘッダーが邪魔にならないよう　ふわっと表示　部分
===================================*/


body{
  width: 100vw;
  margin: 0;
  padding: 0;
}
.layout-main{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 0;
}
h1{
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
}
h2{
  font-size: 18px;
  font-weight: bold;
  margin: 0;
  padding: 0;
  text-align: center;
}
p{
  font-size: 14px;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  body{
    width: 100vw;
    margin: 0;
    padding: 0;
  }
  .layout-main{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 20px;
  }
  h1{
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 0;
  }
  h2{
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    padding: 0;
    text-align: center;
    text-align: start;
  }
  p{
    font-size: 11px;
    margin: 0;
    padding: 0;
    text-align: center;
    text-align: start;
  }
}

.service-top{
  position: absolute;
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 80px;
  margin: 0;
  padding: 0;
}
.service-top img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  position: absolute;
  right: 0;
  margin: 0;
  padding: 0;
}
.service-top p{
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  width: 100%;
  color: #fff;
  text-shadow: 0 0 20px #2b2b2b;
  font-size: 40px;
  font-weight: bold;
}
.service-top h1{
  position: relative;
  z-index: 10;
  margin: 0;
  padding: 0;
  width: 100%;
  color: #fff;
  text-shadow: 0 0 20px #2b2b2b;
  font-size: 20px;
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .service-top{
    position: absolute;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 80px;
    margin: 0;
    padding: 0;
  }
  .service-top img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    position: absolute;
    right: 0;
    margin: 0;
    padding: 0;
  }
  .service-top p{
    position: relative;
    z-index: 10;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #fff;
    text-shadow: 0 0 20px #2b2b2b;
    font-size: 24px;
    font-weight: bold;
    border: 1px solid;
  }
  .service-top h1{
    position: relative;
    z-index: 10;
    margin: 0;
    padding: 0;
    width: 100%;
    color: #fff;
    text-shadow: 0 0 20px #2b2b2b;
    font-size: 12px;
    text-align: center;
  }
}

.service-vr-box{
  margin-top: 400px;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.service-caption-container{
  width: 800px;
  margin-top: 60px;
}
.service-caption-container h2{
  border-bottom: solid 1px rgb(213, 213, 213);
  width: 100%;
  margin-bottom: 30px;
}

.vr-sample{
  position: relative;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 30px;
}
.vr-sample img{
  width: 800px;
}
.vr-sample p{
  color: white; 
  position: absolute; 
  top: 50%; 
  left: 50%; 
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.4);
  padding: 10px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 20px;
}

.vr-sample-ss{
  width: 800px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.ss-sample{
  display: flex;
  justify-content: center;
  align-items: center;
}
.ss-sample img{
  max-width: 33.3333%;
  padding: 5px;
}
@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/
  .service-vr-box{
    margin-top: 400px;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .service-caption-container{
    width: 100%;
    margin-top: 30px;
  }
  .service-caption-container h2{
    border-bottom: solid 1px rgb(213, 213, 213);
    width: 100%;
    margin-bottom: 15px;
  }
  
  .vr-sample{
    position: relative;
    display: inline-block;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .vr-sample img{
    width: 100vw;
  }
  .vr-sample p{
    color: white; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.4);
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 20px;
  }
  
  .vr-sample-ss{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .ss-sample{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ss-sample img{
    max-width: 33.3333%;
    padding: 5px;
  }
}

/*==================================================
サービス
===================================*/



/*==================================================
お問い合わせはコチラ
===================================*/


/*-------お問い合わせエリア--------*/
.contact-area{
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(249, 249, 249);/*--フッター合わせ--*/
  padding-top: 60px;
}
.contact-area p{
  text-align: center;
  margin-bottom: 30px;
  scale: 0.9;
  color: #605648;
}
/*-------お問い合わせエリア--------*/

/*-------お問い合わせボタン--------*/
.btn,
a.btn,
button.btn {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
  margin-bottom: 100px;
}
a.btn-flat {
  overflow: hidden;
  padding: 1.5rem 6rem;
  color: #fff;
  border-radius: 0;
  background: #ceccc9;
}
a.btn-flat span {
  position: relative;
}
a.btn-flat:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  background: #bab8b6;
}
a.btn-flat:hover:before {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
}
/*-----お問い合わせボタン------*/

@media screen and (max-width: 1024px) {/*--タブレット・モバイル用--*/

  /*-----お問い合わせボタン------*/
  .btn,
  a.btn,
  button.btn {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #ffffff;
    border-radius: 0.5rem;
    margin-bottom: 60px;
  }
  /*-----お問い合わせボタン------*/

}