/* ============================================
   TOP PAGE
   ============================================ */

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.top_image{
  object-fit: cover;
  height: 100vh;
  width: 100%;
}
/* ============================================
   リアル・ジャパン
   ============================================ */
.real_japan{
  background-image: url(../img/top/japan_image.png);
  background-repeat:no-repeat;
  background-size: 80%;
  background-position-y: -123px;
  background-position-x: 70px;
}

.real_japan h2{
  font-size: 36px;
  text-align: center;
  padding: 200px 0 10px;
}

.real_japan h3{
  font-size: 17px;
  text-align: center;
  margin: 0 0 200px;
}

.base{
  display: flex;
  justify-content: center;
  width: 80%;
  margin: 0 auto 200px;
  align-items: center;
}

.base_left_title{
  font-size: 22px;
  margin-bottom: 10px;
  
}

.base_left_text{
  font-size: 14px;
  margin-top: 10px;
  color: #191919;
}
.base_right{
  width: 50%;
}

.base_right img{
  width: 90%;
}

.about_us_btn{
  background-color: rgba(0, 96, 146, .18);
  border-radius: 50px;
  color: #006092;
  font-size: 15px;
  display: inline-block;
  padding: 5px 30px;
  margin-top: 50px;
}

.about_us_btn:hover{
  color: #fff;
  background-color: #006092;
  transition: 0.2s;
}

/* ============================================
   Instagram
   ============================================ */
.instagram{
    margin: 0 50px 200px;
}
.insta_btn{
  width: 241px;
  height: 39px;
  margin: 0 auto;
  display: block;
  font-size: 15px;
  color: #fff;
  background-color: #001E46;
  border-radius: 50px;
}
.insta_btn:hover{
  background-color: #fff;
  color: #001E46;
  border: 1px solid #001E46;
  transition: 0.2s;
}
.insta_btn div{
  display: flex;
  
  align-items: center;
  justify-content: space-evenly;
  height: 100%;
  padding: 0px 15px;
}

.insta_btn img{
  width: 11%;
}
.insta_btn:hover img{
  filter: brightness(0) saturate(100%) invert(14%) sepia(0%) saturate(7186%) hue-rotate(184deg) brightness(97%) contrast(113%);
  transition: 1s;
}

/* ============================================
   SP
   ============================================ */


@media (max-width: 768px) {
  .real_japan h2 {
    font-size: 22px;

}
.real_japan h3 {
  font-size: 15px;
}

.base {
  display: flex;
  width: 80%;
  flex-direction: column-reverse;
  align-items: center;
}
.base_right {
  width: 100%;
  margin-bottom: 20px;
}
.base_right img {
  width: 100%;
}
.about_us_btn {
  display: block;
  margin: 50px auto 0;
  text-align: center;
  width: 65%;
}
.real_japan{
  background-position-y: 0px;
}
.real_japan h2 {
  padding: 100px 0 10px;
}

}
