@charset "UTF-8";


/* 
------------------------------------------------------------------------------------*/
body { height: 100dvh; }

.txt_lan_en {
  font-size: 2.2rem;
  text-align: center;
  margin-top: 32px;
}

.txt_lan_ja {
  font-size: 1.8rem;
  text-align: center;
  margin-top: 8px;
}

.lanBtn_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 24px;  
}

.lanBtn {
  width: 45.87%;
  height: calc((100dvh - 160px - 140px) / 3);
  background: #005CB9;
  border-radius: 12px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 3.2rem;
  display: grid;
  place-items: center;
  margin-top: 24px;
}
.lanBtn:last-of-type {
  margin-left: 27.5%;
}

.footer_wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (orientation: landscape)
{
  body { height: auto; }
  .lanBtn { height: 100px; }
  .footer_wrap { position: relative; margin-top: 64px; }
}