@charset "utf-8";
/* CSS Document */
html { touch-action: manipulation;/* ダブルタップの操作禁止 */ }
body {
	margin: 0;
	padding:0;
	font-family: "游ゴシック", "Yu Gothic","sans-serif","Hiragino Kaku Gothic ProN";
  position: relative;
}
a {
  text-decoration: none;
  color: #214A99;
}
/* loader -------------------- */
#loader_area { display: none; }
#loader_black_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.8;
  z-index: 1000;
}
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2000;
}
.loading-bar {
  display: inline-block;
  width: 4px;
  height: 20px;
  border-radius: 4px;
  animation: loading 1s ease-in-out infinite;
}
.loading-bar {
  background-color: #999999;
  animation-delay: 0;
}
.loading-bar:nth-child(2) {
  background-color: #CCCCCC;
  animation-delay: .075s;
}
.loading-bar:nth-child(3) {
  background-color: #ffffff;
  animation-delay: .15s;
}
.loading-bar:nth-child(4) {
  background-color: #CCCCCC;
  animation-delay: .255s;
}
.loading-bar:nth-child(5) {
  background-color: #999999;
  animation-delay: .30s;
}
@keyframes loading {
  0% { transform: scale(1); }
  20% { transform: scale(1, 2.2); }
  40% { transform: scale(1); }
}
#loader p {
  margin: 10px 0;
  text-align: center;
  font-size: 70%;
  color: #ffffff;
}
/* header --------------------*/
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 54px;
  background: #214A99;
  color: #FFFFFF;
}
header a {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("../img/front/back_arrow.png") center no-repeat;
  font-size: 0;
}
header p ,
header h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: calc(100% - 100px);
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 130%;
  line-height: 1.2;
  text-align: center;
}
h2 {
  margin: 0;
  padding: 10px 10px 10px 30px;
  background: #F6F8FE url("../img/front/h2_bg.png") left 10px center no-repeat;
  border-bottom: 1px solid #1A3688;
  font-size: 105%;
  color: #1A3688;
}
/* contents --------------------*/
#contents {
  overflow: auto;
  padding: 0 10px;
  box-sizing: border-box;
}
#contents h2 {
  margin: 0;
  padding: 10px 10px 10px 20px;
  background: #FFFFFF url("../img/front/h2_bg2.png") left 5px center no-repeat;
  border-bottom: 2px solid #1A3688;
  font-size: 105%;
  color: #1A3688;
}
/* 利用規約 */
#contents #use_rule { margin-bottom: 40px; }
#contents #use_rule h3 {
  margin: 10px 0;
  font-size: 100%;
}
#contents #use_rule ol ,
#contents #use_rule ul {
  margin: 0;
  padding-inline-start: 20px;
}
#contents #use_rule ul {
  list-style: disc;
  margin: 10px 0;
}
/* ヘルプ */
#contents dl#help {
  margin: 10px 0 40px 0;
  padding: 0;
}
#contents dl#help p { margin: 5px 0; }
#contents dl#help dt ,
#contents dl#help dd {
  display: grid;
  grid-template-columns: 30px 1fr;
  justify-content: center;
  width: 100%;
  margin: 0 0 10px 0;
}
#contents dl#help dd { margin: 0 0 40px 0; }
#contents dl#help span {
  font-size: 130%;
  font-weight: bold;
}
#contents dl#help dt span { color: #752c7b; }
#contents dl#help dd span { color: #1c3e80; }
/* 共通 --------------------*/
/* テキスト系 */
.txt_right { text-align: right; }
.txt_center { text-align: center; }
.font-90 { font-size: 90%; }