@charset "UTF-8";
/* @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
 [R-334]2022年06月27日 DFL 相談室ログイン画面専用に指定のcss切り出し
 bo/template/top/dfl_bologin.htmlだけから利用
 個別css指定のためbootdtrapと共存不可のため注意
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*/
/* CSS Document */
body {
  background-color: #73a0c4; /* 背景色 */
}
body {
  margin: 0;
  padding: 0;
}
.small {
  font-size: 0.8em;
		margin-bottom: 1em;
}
.center {
  text-align: center;
}

p{
	margin-bottom: 1em;
}

h3{
	border-top: 1px solid #4A7F8F;
	color: #4A7F8F;
	padding-top: 1em;
}
.scroll-area {
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
  -webkit-scroll-snap-type: mandatory;
  scroll-snap-type: mandatory;
  -webkit-scroll-snap-points-y: repeat(100%);
  scroll-snap-points-y: repeat(100%);
}
.content {
  color: #666;
  margin: 0 auto;
  margin: 0 10px;
}
.box {
  width: 100%;
  height: 100vh;
  color: #fff;
  font-size: 15px;
  display: flex;
  align-items: center; /* 縦方向中央揃え */
  justify-content: center; /* 横方向中央揃え */
  flex-direction: column;
}
.box__bg_photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
p {
  margin: 0;
  padding: 0;
  line-height: 1.3em;
  text-align: left;
}
a {
  color: #009cb0;
  text-decoration: underline;
}
h1 {
  font-size: 21px;
  text-align: center;
}
.card {
  text-align: center;
  position: relative;
  background-color: rgba(255, 255, 255, 0.9);
  margin: 20px;
  border-radius: 15px; /* CSS3草案 */
  -webkit-border-radius: 15px; /* Safari,Google Chrome用 */
  -moz-border-radius: 15px; /* Firefox用 */
  padding: 20px 20px 30px;
}
button.linkpoint {
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
  padding: 10px 0;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  background-color: #73a0c4;
  font-size: 1em;
  width: 100%;
  box-sizing: border-box;
  margin: 15px 0;
}
button.linkpoint:hover {
  background-color: #6494ab;
  color: #fff;
}
table {
  width: 100%;
  max-width: 500px;
  margin: 10px auto;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  border-spacing: 0;
}
table th {
  padding: 10px;
  background-color: #efefef;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
table td {
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
}
/*入力チェックエラーメッセージ用
ParamsSetが使うMessageStockerクラスの標準仕様で使うclass名
---------------------------------*/
p.errorMessage ,span.errorMessage{
  color:#E00000;
  font-weight:bold;
  font-size:large;
}
/*サマリーエラーメッセージ用
2016年03月10日 common.cssから移植
---------------------------------*/
p.topErrorMessage,span.topErrorMessage {
  margin: 20px;
  font-size:x-large;
  font-weight: bold;
  color: #E00000;
}

@media screen and (max-width: 600px) {
  table th {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border-right: 0px solid #ccc;
  }
  table td {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .box {
    height: auto;
  }
}