/* st　 
#EB611C
#FFA01D
#FFE599
*/
.loading {
  /*ローディング画面の縦横幅を画面いっぱいになるように指定*/
  width: 100vw;
  height: 100vh;
  /*ローディング画面の表示位置を固定*/
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /*ローディング画面を0.5秒かけて非表示にする*/
  transition: all 2s linear;
  z-index: 100;
}
/*ローディング画面を非表示にする*/
.loading.loaded {
  /*0.5秒かけてopacityを0にする*/
  opacity: 0;
  visibility: hidden;
}
.loading-text {
  color: #333;
  font-family: "Comic Sans MS", "cursive";
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 80px;
  text-align: center;
}
.spinner {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 3px solid #FFF;
  border-left-color: #1082ce;
  /* アニメーションを1秒かけて実行 */
  animation: spinner-rotation 1s linear infinite;
}
/* アニメーションの設定 */
@keyframes spinner-rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
#rec h2 {
  background-color: transparent;
  color: #EB611C;
  display: inline;
}
hr {
  padding: 3em 0;
  border: white solid 10px
}
.cen {
  text-align: center !important;
  display: block !important;
}
.h2_lin {
  background: linear-gradient(to top, yellow 0% 50%, rgba(0, 0, 0, 0) 50% 100%)
}
.h2_lin_r {
  background: linear-gradient(to top, pink 0% 50%, rgba(0, 0, 0, 0) 50% 100%)
}
.h2_lin2_r {
  font-size: 2rem;
  color: #000;
  background: linear-gradient(to top, yellow 0% 50%, rgba(0, 0, 0, 0) 50% 100%)
}
.number {
  display: block;
  font-size: 4rem;
  width: 10%;
  font-weight: bold;
margin: 0 auto;
    color: #EB611C;
}
/*----------------------  t_sub_img  */
.t_sub2_img {
  width: 100%;
  height: 480px;
  background-color: transparent;
  position: relative;
  display: flex;
  justify-content: center;
}
.t_sub2_img_txt {
  width: 100%;
  height: 480px;
  height: auto;
  z-index: 3;
  position: absolute;
  bottom:  -50px;
}
.t_sub2_img_txt h1 {
  font-size: 1.8rem;
  letter-spacing: 0.2em;
  text-align: center;
  color: #EB611C;
  background-color: rgb(255 255 255 / 0.8);
}
.t_sub2_img_01 {
  display: none;
}
.t_sub2_img_01 img {
}
.t_sub2_img_02 {
  width: 100%;
  min-width: 480px;
  height: auto;
  z-index: 1;
  position: absolute;
  right: 0;
  display: flex;
  justify-content: center;
}
.t_sub2_img_02 img{
  width: 100%;
  height: auto;
  z-index: 1;
}
.com_box {
  width: 100%;
  padding: 2em 0;
  margin: 10em 0 2em 0;
  background-color: #FFE599;
}
.com_box p {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.2em;
    line-height: 150%;
  text-align: center;
  color: #EB611C;
}
.main_btn3 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}
/* ボタンのスライドアニメーション*/
.sld a {
  display: block;
  width: 300px;
  height: 90px;
  padding: 30px 0 0 0;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #fff 0%, #eee 50%, #ccc 50%, #fff 100%);
  box-shadow: 0 3px 10px rgb(0 0 0 / 16%);
  transition: background-position ease 0.4s;
  text-align: center;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  border: #fff solid 3px;
}
.sld a:hover {
  background-position: 0 0;
  border: #EB611C solid 3px;
}
.sld img {
  position: absolute;
  width: 45px;
  height: 51px;
  top: 20px;
  left: 35px;
}