@charset "UTF-8";
/* ============================================================================
基本設定
============================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}
ul[class], ol[class] {
  padding: 0;
}
body, h1, h2, h3, h4, p, ul[class], ol[class], figure, blockquote, dl, dd {
  margin: 0;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
ul[class], ol[class] {
  list-style: none;
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
img, picture {
  max-width: 100%;
}
article > * + * {
  margin-top: 1em;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
  word-break: break-all;
}
.black {
  color: black !important;
}
a.nounder:hover {
  text-decoration: none;
}
@media print {
  body {
    margin: 0;
    padding: 0 !important;
    min-width: 1200px;
  }
  .container {
    width: auto;
    min-width: 1200px;
  }
  .no-print {
    display: none !important;
  }
  .printable {
    display: flex !important;
  }
}
@media print, screen and (min-width: 768px) {
  body {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 991.98px) {
  body {
    font-size: 1.6rem;
  }
}
/* ============================================================================
PC/SP 表示・非表示
============================================================================ */
@media only screen and (max-width: 991.98px) {
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media print, screen and (min-width: 768px) {
  .pc_only {
    display: block;
  }
  .sp_only {
    display: none;
  }
}
/* ============================================================================
レイアウト
============================================================================ */
@media only screen and (max-width: 991.98px) {
  main {
    display: block;
    padding-top: 5px;
  }
}
.inner {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1090px) {
  .inner {
    width: 95%;
  }
}
.md_inner {
  width:100%;
}
@media screen and (min-width: 768px) {
  .md_inner {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================================================
ヘッダー
============================================================================ */
header {
  background: url("../01_common/img/header_line_sp.svg") bottom repeat-x;
}
@media print, screen and (min-width: 768px) {
  header {
    background: url("../01_common/img/header_line.svg") bottom repeat-x;
  }
}
@media only screen and (max-width: 991.98px) {
  header#header-navbar {
    padding-bottom: 75px;
    margin-top: 0px;
    width: 100%;
    height: 70px;
    top: 0px;
    left: 0px;
    z-index: 9999;
  }
}
header #header-pane {
  padding: 8px;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 991.98px) {
  header #header-pane {
    background: white;
    padding-bottom: 7px;
    height: 67px;
    background-size: contain;
    padding: 4px;
  }
  header #header-pane #header-logo img {
    margin-top: 2px;
    width: 56px;
  }
}
header #header-pane .header_title_area {
  margin-left: 8px;
  padding-top: 0px;
}
header #header-pane .header_title_area small {
  font-size: 12px;
}
header #header-pane .header_title_area h1 {
  font-size: 28px;
  font-weight: bold;
  color: black;
}
@media only screen and (max-width: 991.98px) {
  header #header-pane .header_title_area h1 {
    font-size: 24px;
  }
}
header #header-pane .header_title_area .facility {
  font-size: 28px;
  font-weight: bold;
  color: black;
  margin-top: 0;
}
@media only screen and (max-width: 991.98px) {
  header #header-pane .header_title_area .facility {
    font-size: 24px;
  }
}
/* ============================================================================
フッター
============================================================================ */
#footer {
  background: black;
  color: white;
}
#footer #copyright {
  font-size: 12px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
/* ============================================================================
マージン
============================================================================ */
.mt_25 {
  margin-top: 25px;
}
.mt_40 {
  margin-top: 40px;
}
.mb_24 {
  margin-bottom: 24px;
}
.mb_40 {
  margin-bottom: 40px;
}
.mb_70 {
  margin-bottom: 70px;
}
/* ============================================================================
パンくずリスト
============================================================================ */
.breadcrumb {
  font-size: 1.4rem;
  background: white;
  margin:0;
  padding:5px 0px 0px 0px;
}
.breadcrumb a {
  color: black;
  text-decoration :none;
}
.updated {
  padding: 0;
  color: #7f7f7f;
  font-size: 1.2rem;
}
/* ============================================================================
装飾
============================================================================ */
.color_line {
  background: url("../01_common/img/color_bar.png") center bottom no-repeat;
  padding-bottom: 20px;
}
.blue_line {
  border-left: 8px solid #2E4498;
  text-align: left;
  margin-top: 20px;
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
}
.blue_line a {
  text-decoration :none;
}
.f_c_red {
  color: #e55454;
}
/* ============================================================================
文字
============================================================================ */
p {
  margin-bottom: 10px;
}
h1 {
  font-size: 28px;
  margin-top: 40px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  h1 {
    font-size: 34px;
    margin-top: 72px;
  }
}
h2 {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  h2 {
    font-size: 34px;
    margin-top: 72px;
  }
}
p.lead_1 {
  text-align: left;
  font-size: 16px;
  font-weight: bold;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media print, screen and (min-width: 768px) {
  p.lead_1 {
    text-align: center;
    font-size: 20px;
  }
}
p.lead_2 {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding-top: 16px;
  padding-bottom: 16px;
}
p.lead_3 {
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding-top: 12px;
  padding-bottom: 0px;
}
p.lead_4 {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  p.lead_4 {
    font-size: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.fs_small {
  font-size: 12px;
}
.fs_small_gray {
  font-size: 12px;
  color: gray;
  margin-top: 0px;
  margin-bottom: 0px;
}
/* ============================================================================
文字行間
============================================================================ */
.lh_30 {
  line-height: 24px;
}
@media only screen and (min-width: 992px) {
  .lh_30 {
    line-height: 30px;
  }
}
.lh_36 {
  line-height: 24px;
}
@media only screen and (min-width: 992px) {
  .lh_36 {
    line-height: 36px;
  }
}
.lh_50 {
  line-height: 50px;
}
/* ============================================================================
リスト
============================================================================ */
ul.list {
  padding: 5px 0 0 24px;
}
ul.list li {
  list-style-type: disc;
  word-break: break-all;
}
ul.strong_list {
  padding: 5px 0 0 24px;
}
ul.strong_list li {
  font-weight: bold;
  list-style-type: disc;
  word-break: break-all;
}
/* ============================================================================
ボタン
============================================================================ */
/* ボタンフォーマット */
.btn {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  word-break: break-all;
  text-decoration: none !important;
}
.btn::after {
  position: absolute;
  content: "";
  top: 50%; 
}
.btn:hover {
  opacity: 0.7;
}
/* 通常ボタン */
.btn_nomal {
  min-height: 38px;
  border: 1px solid #7f7f7f;
  border-radius:10px;
  font-size: 1.4rem;
  color: #7f7f7f;
  padding: 5px 30px 5px 10px;
}
.btn_nomal::after {
  right: 10px;
  width: 6px;
  height: 6px;
  margin: -4px 0 0;
  border-top: 2px solid #7f7f7f;
  border-right: 2px solid #7f7f7f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
.btn_nomal:hover {
  color: #7f7f7f;
}
/* 丸みボタン */
.btn_round {
  min-height: 38px;
  border-radius:25px;
  justify-content: center;
  font-size: 18px;
  padding: 5px;
}
/* リストボタン */
.btn_list {
  min-height: 56px;
  align-items: start;
  border: 1px solid #7f7f7f;
  border-radius:10px;
  font-size: 1.4rem;
  color: #7f7f7f;
  padding: 5px 30px 5px 10px;
}
.btn_list::after {
  right: 10px;
  width: 6px;
  height: 6px;
  margin: -4px 0 0;
  border-top: 2px solid #7f7f7f;
  border-right: 2px solid #7f7f7f;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);  
}
/* ボタンリストマージン */
.m_btn_list {
  margin-bottom: 10px;
}
@media print, screen and (min-width: 768px) {
  .m_btn_list {
    margin-bottom: 18px;
  }
}
.btn_list:hover {
  color: #7f7f7f;
}
/* ボタン幅 */
.w_btn_lv_auto {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .w_btn_lv_auto {
    width: auto;
  }
}
.w_btn_lv1 {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .w_btn_lv1 {
    width: 150px;
  }
}
.w_btn_lv2 {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .w_btn_lv2 {
    width: 200px;
  }
}
.w_btn_lv3 {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .w_btn_lv3 {
    width: 250px;
  }
}
.w_btn_lv4 {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .w_btn_lv4 {
    width: 300px;
  }
}
/* 文字（左） */
.btn_pos_l {
  text-align:left;
}
/* 文字（中央） */
.btn_pos_c {
  justify-content: center;
}
/* カラーレベル1 */
.btn_c_lv1 {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.btn_c_lv1:hover {
  color: #000;
}
/* カラーレベル2 */
.btn_c_lv2 {
  background-color: #2e4498;
  border: 1px solid #2E4498;
  color: #fff;
}
.btn_c_lv2:hover {
  color: #fff;
}
/* カラーレベル3 */
.btn_c_lv3 {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn_c_lv3:hover {
  color: #fff;
}
/* カラーレベル4 */
.btn_c_lv4 {
  background-color: #e55454;
  border: 1px solid #e55454;
  color: #fff;
}
.btn_c_lv4:hover {
  color: #fff;
}
/* ============================================================================
インプット
============================================================================ */
input, textarea, select, button {
  font-size:16px !important;
}
.form-check-input {
  margin-left: 5px;
  position: relative;
}
.txt_required {
  font-size: 12px;
  font-weight: bold;
  color: #e55454;
}
/*=============================================================================
画像＋文字
=============================================================================*/
.view_img {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow:auto;
}
.view_img iframe {
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    border:none;
    display:block;
}