@charset "UTF-8";

#flow h1 span{
  font-weight: 500;
}

#flow .subt-title{
  text-align: center;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 25px;
}

#flow .flow-lead{
  text-align: center;
  margin-bottom: 80px;
  line-height: 2;
}

#flow #flowbody{
  max-width: 870px;
  margin: auto;
}

#flow #flowbody .howto{
  position: relative;
  width: 900px;
  display: flex;
  justify-content: space-between;
  margin: auto;
}

#flow #flowbody .howto::after{
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: calc(100% - 95px);
  bottom: -16px;
  left: 25px;
  background-color: #4B3F2C;
}

#flow #flowbody .howto.last{
  margin-bottom: 50px;
}

#flow #flowbody .howto.last::after{
  content: none;
}

#flow #flowbody .howto .step{
  text-align: center;
  margin-right: 30px;
  padding-top: 30px;
}

#flow #flowbody .howto .step .num{
  display: block;
  font-size: 4.8rem;
  line-height: 1;
}

#flow #flowbody .howto .body {
  border-top: 1px solid #fff;
  padding: 30px 0;
  flex: 1;
}

#flow #flowbody .howto .layout {
  display: flex;
  justify-content: space-between;;
  align-items: flex-start;
}

#flow #flowbody .howto .layout .text{
  flex: 1;
  padding-right: 40px;
  padding-top:20px;
}

#flow #flowbody .howto .layout .text h3{
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

#flow #flowbody .howto .layout .text p{
  font-size: 1.4rem;
}

#flow #flowbody .howto .layout .image{
  width: 176px;
  line-height: 0;
}

#flow #flowbody .howto .layout.white{
  background-color: #fff;
  padding: 20px;
  margin-top: 30px;
  border: 1px solid #4B3F2C;
  align-items: center;
}

#flow #flowbody .howto .layout.white h3{
  font-size: 1.8rem;
}

#flow #flowbody .howto .layout.white .text{
  padding-top: 0;
}

#flow #flowbody .howto .layout.white .image{
  width: 147px;
}

.stepbtn {
  position: relative;
  display: inline-block;
  background-color: #3c1e00;
  color: #fff;
  padding: 8px 25px 8px 10px;
  line-height: 100%;
  font-size: 13px;
  font-size: 1.3rem;
  text-decoration: none;
  margin-top: 1rem;
}

.stepbtn::after {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  right: 10px;
  top: 50%;
  margin-top: -5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.stepbtn:hover {
  color: #fff;
}


.schedule{
	margin: 0 auto 40px;
	text-align: center;
  font-size: 2rem;
}

.schedule p{
	font-weight: 500;
	padding-bottom: 15px;
}

.movie{
  width: 560px;
  margin: auto;
}

.movie h2{
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.movie h2 span{
  display: inline-block;
  width: 50px;
  margin-right: 25px;
  vertical-align: middle;
}

/*--------------------------------------
	Smartphone 
----------------------------------------*/

@media screen and (max-width: 767px) {
  #flow h1 span{
    font-size: 2.5rem;
  }
  #flow .subt-title{
    font-size: 1.8rem;
  }
  #flowbody{
    padding: 0 5%;
  }
  #flow .flow-lead{
    margin-bottom: 40px;
    line-height: 1.7;
  }
  #flow #flowbody .howto{
    width: 100%;
  }
  
  #flow #flowbody .howto .step{
    margin-right: 15px;
    font-size: 1.2rem;
  }
  
  #flow #flowbody .howto .step .num{
    font-size: 3rem;
  }
  
  #flow #flowbody .howto .layout{
    display: block;
  }
  
  #flow #flowbody .howto .layout .text{
    padding: 0;
  }
  
  #flow #flowbody .howto .layout .text h3{
    font-size: 2rem;
  }
  
  #flow #flowbody .howto .layout .image{
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  #flow #flowbody .howto .layout .image img{
    max-width: 100%;
    max-width: 218px;
  }
  
  #flow #flowbody .howto .layout.white h3{
    font-size: 1.6rem;
  }
  
  #flow #flowbody .howto .layout.white p{
    font-size: 1.2rem;
  }
  
  #flow #flowbody .howto .layout.white .image{
    width: 100%;
    text-align: center;
  }

  .schedule{
    font-size: 1.6rem;
  }

  .movie{
    width: 100%;
  }
  .movie h2 span{
    width: 30px;
    margin-right: 5px;
  }

  .movie h2{
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .movie iframe{
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

}