@charset "UTF-8";
/* ==========================================================================
parts.css
========================================================================== */
/* タイトル
-------------------------------------------------- */
h1 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 0 2rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #1e1e1e;
  font-size: 1.5rem;
  font-weight: bold;
}
h1 i {
  display: inline-block;
  margin-right: 0.2em;
  font-size: 1.5em;
}

h2 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}
h2 i {
  display: inline-block;
  margin-right: 0.25rem;
  font-size: 1.125em;
}

h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: bold;
}

/* button / a / etc.：ボタン
-------------------------------------------------- */
.btn {
  background: linear-gradient(#2980B9 0%, #226D9D 100%);
  padding: 0.5rem 0.75rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 0.4rem;
  font-weight: bold;
  color: #fff;
}
.btn:hover {
  opacity: 0.9;
}
.btn.gray {
  background: linear-gradient(#B4B4B4 0%, #999999 100%);
}
.btn.red {
  background: linear-gradient(#E74C3C 0%, #D0392E 100%);
}
.btn.bg-none {
  background: none;
  margin-left: 0.5rem;
  padding: 0.5rem 0;
  box-shadow: none;
  color: #4b82b4;
}
.btn.bg-none:hover {
  color: #4b82b4;
  text-decoration: underline;
}
.btn.big {
  width: 100%;
  padding: 1.25rem 0.75rem;
  font-size: 1.125rem;
}
.btn.wide {
  padding: 0.5rem 2rem;
}

a.btn:hover {
  color: #fff;
}

/* 森追加　start */
.report-button {
	padding: 10px 10px;
	width:100%;
	border: 1px solid transparent;
	z-index: 1;
	color: #2980B9;
	background: #fff;
}
.report-button:hover {
    transition: .4s;
    opacity:0.8;
    text-decoration: none;
}
/* 森追加 end */


/* form：フォーム
-------------------------------------------------- */
/* selectリセット */
.select-wrap {
  position: relative;
}
.select-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  margin: auto 0;
  width: 14px;
  height: 14px;
  background: url("../img/fp-arrow-bottom.svg") center center no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: 1;
}
.select-wrap select {
  width: 100%;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
  color: inherit;
  vertical-align: middle;
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  padding-right: 28px !important;
}
.select-wrap select option {
  background-color: #fff;
}
.select-wrap select::-ms-expand {
  display: none;
}
.select-wrap select:-moz-focusring {
  color: transparent;
}

/* radioリセット */
.radio-wrap input[type="radio"] {
  display: none;
}
.radio-wrap input[type="radio"]:checked + label {
  color: #4b82b4;
}
.radio-wrap label {
  font-weight: bold;
}
/* 森追加 start */
.radio-inline label {
  margin-left: 1rem;
  font-weight: bold;
}
/* 森追加 end */

/* スタイル1 */
.form-1 {
  font-weight: bold;
  /* 入力枠 */
  /* inputなし表示のみ */
  /* ファイルアップロード ※調整中 */
  /* 項目名のスタイル */
}
.form-1 input[type="text"],
.form-1 input[type="password"],
.form-1 input[type="number"],
.form-1 textarea,
.form-1 select {
  -webkit-appearance: none;
  display: inline-block;
  background: #f5f5f5;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #c8c8c8;
  border-radius: 0.4rem;
}
.form-1 .input-dsp {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #646464;
}
.form-1 .file-up {
  position: relative;
}
.form-1 .file-up input[type="file"] {
  display: none;
}
.form-1 .file-up label {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
  background: #4b82b4;
  padding: 0.5rem;
  border-radius: 0.2rem;
  font-weight: bold;
  color: #fff;
}
.form-1 .file-up label i {
  margin-right: 0.2rem;
  font-size: 1.5rem;
}
.form-1 .file-up label::after {
  content: "選択されていません";
  position: absolute;
  top: 10px;
  left: 130px;
  display: block;
  width: 300px;
  color: #000;
  text-align: left;
}
.form-1 .file-up label.changed::after {
  content: "";
}
.form-1 .file-up .filename {
  position: absolute;
  top: 10px;
  left: 130px;
}
.form-1 .input-set .ttl {
  font-weight: bold;
  color: #787878;
  margin-bottom: 0.5rem;
}
.form-1 .input-set .ttl b {
  margin-right: 0.3rem;
  padding: 0.2rem 0.3rem;
  background: #e74c3c;
  border-radius: 0.2rem;
  color: #fff;
}
.form-1 .input-set > span {
  display: block;
  margin-bottom: 0.25rem;
}

/* hr：線
-------------------------------------------------- */
hr {
  margin: 2rem 0;
  border-color: #000;
}
hr.dashed {
  border-style: dashed;
}

/* table：テーブル
-------------------------------------------------- */
/* スタイル1 */
.tbl-1 {
  width: 100%;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  font-weight: normal;
  border-bottom: 5px solid #4b82b4;
}
.tbl-1 th {
  background: #4b82b4;
  padding: 0.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
.tbl-1 td {
  padding: 0.5rem;
}
.tbl-1 td:nth-child(-n+3), .tbl-1 td:last-child {
  text-align: center;
}
.tbl-1 td a {
  color: #4b82b4;
  font-weight: bold;
}
.tbl-1 tr:nth-child(even) {
  background: #EBEBF5;
}

/* ul：リスト
-------------------------------------------------- */
/* スタイル1 */
.ul-1 {
  list-style: none;
  padding: 0;
}
.ul-1 li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.ul-1 li a:hover {
  opacity: 0.8;
}
.ul-1 li:not(:first-child) a {
  margin-top: 1rem;
}
.ul-1 li .left {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  font-size: 1.125rem;
  align-items: center;
  color: #4b82b4;
}
.ul-1 li .left i {
  display: inline-block;
  margin-right: 0.2em;
  font-size: 1.5em;
}

/* スタイル2 */
.ul-2 {
  list-style: none;
  padding: 0;
}
.ul-2 li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 1rem;
  box-shadow: 0 0 0.2rem rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.ul-2 li a:hover {
  opacity: 0.8;
}
.ul-2 li:not(:first-child) a {
  margin-top: 1rem;
}
.ul-2 li .left > div {
  display: inline-block;
  margin-right: 1rem;
}
.ul-2 li .left > div span {
  background: #000;
  margin-right: 0.5rem;
  padding: 0.25rem 0.5rem;
  color: #fff;
}

/* ==========================================================================
.col-xs-12
Device width	：~767px
Container width	：Auto
Column width	：Auto
========================================================================== */
@media only screen and (max-width: 767px) {
  /* タイトル
  -------------------------------------------------- */
  h1 {
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.125rem;
  }

  /* フォーム
  -------------------------------------------------- */
  /* スタイル1 */
  .form-1 {
    /* 入力枠 */
    /* inputなし表示のみ */
  }
  .form-1 input[type="text"],
  .form-1 input[type="password"],
  .form-1 input[type="number"],
  .form-1 textarea,
  .form-1 select {
    padding: 0.25rem 0.5rem;
  }
  .form-1 .input-dsp {
    padding: 0.25rem 0;
  }
}

