@charset "UTF-8";
/* **************************************************
	デフォルトCSSの再定義
************************************************** */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}
body {
  width: 100%;
  height: 100%;
  color: #1C4388;
  font-size: 1.6rem;
  line-height: 2.1rem;
  font-family: "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  word-break: break-all;
  -webkit-text-size-adjust: none;
  background-color: #fff;
}
a {
  color: #1C4388;
  text-decoration: none;
}
figure {
  text-align: center;
}
img {
  max-width: 100%;
  vertical-align: bottom;
  margin: 0 auto;
}
table {
  width: 100%;
}
input, button, select, textarea {
  border: none;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 0;
  /* macOS/iOSのSafariで角丸になるのを修正 */
  line-height: normal;
  /* macOS/iOSのSafariでplaceholderが上にずれるのを修正 */
}
a:hover, a img:hover, input[type="button"]:hover, input[type="submit"]:hover, button:hover, .hover_effect:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:hover, a:visited, a:active, a:focus {
  text-decoration: none;
  color: #1C4388;
}
@media (min-width: 768px) {
  body {
    min-width: 1280px;
    margin: 0 auto;
  }
}
video:focus {
  border: none;
  border-image-width: 0 !important;
  outline-width: 0;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}
/* **************************************************
	レイアウト
************************************************** */
.is-hide {
  display: none;
}
/*.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}*/
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  height: auto;
  overflow: hidden;
}
.aligncenter {
  display: block;
  margin: 10px auto;
}
.alignright {
  float: right;
  margin: 5px 0 5px 10px;
}
.alignleft {
  float: left;
  margin: 5px 10px 5px 0;
}
.inline_block {
  display: inline-block;
}
#wrapper {
  display: block;
  width: 100%;
  overflow: hidden;
}
#wrapper::before {
  /* 固定ヘッダー分 */
  display: block;
  content: "";
  width: 100%;
  height: 0;
}
@media (min-width: 768px) {
  #wrapper {
    margin: 0 auto;
    padding: 0;
  }
  #wrapper::before {
    height: 0;
  }
}
/* **************************************************
	header
************************************************** */
header {
  width: 100%;
  background: linear-gradient(to bottom, rgba(10, 50, 217, 0.7), rgba(0, 167, 255, 0.7));
  height: 100px;
}
header .h_inner {
  margin-right: 70px;
}
header .h_inner .h_logo {
  width: 100%;
  max-width: 228px;
}
header .h_inner .h_logo a {
  display: block;
}
@media (min-width: 768px) {
  header {
    height: 100px;
  }
  header .h_inner {
    display: flex;
    align-items: center;
    margin: 0;
  }
  header .h_inner .h_logo {
    max-width: 360px;
  }
  header .h_inner .pc_menu_wrap {
    padding: 0;
    margin-right: 20px;
  }
  header .h_inner .pc_menu_wrap #pc_menu > ul > li > a {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 2rem;
    line-height: 2.6rem;
  }
}
/* メニュー開閉ボタン */
.toggle {
  position: fixed;
  top: 13px;
  right: 11px;
  width: 54px;
  height: 54px;
  z-index: 998;
  background-color: rgba(28, 67, 136, 0.7);
  border-radius: 999px;
}
.toggle .menu_trigger {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.toggle .menu_trigger span {
  position: absolute;
  background: #FFF;
  top: 17px;
  right: 15px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  border-radius: 3px;
  width: 24px;
  height: 3px;
  -webkit-tap-highlight-color: transparent;
}
.toggle .menu_trigger span:nth-of-type(2) {
  top: 26px;
}
.toggle .menu_trigger span:nth-of-type(2):after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #FFF;
}
.toggle .menu_trigger span:nth-of-type(3) {
  top: 35px;
}
.toggle .menu_trigger.active span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
.toggle .menu_trigger.active span:nth-of-type(2) {
  width: 28px;
  transform: rotate(-45deg);
  top: 26px;
  right: 13px;
}
.toggle .menu_trigger.active span:nth-of-type(2):after {
  width: 28px;
  transform: rotate(90deg);
}
.toggle .menu_trigger.active span:nth-of-type(3) {
  transform: translateY(-8px) scale(0);
}
.toggle .menu_trigger:hover {
  filter: alpha(opacity=100);
  opacity: 1;
}
@media (min-width: 768px) {
  .toggle {
    display: none;
    top: 20px;
    right: 22px;
  }
}
/* **************************************************
	グローバルナビゲーション
************************************************** */
/* グロナビを開いている間背景を固定するクラス */
.bg_fixed {
  overflow: hidden;
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}
/* グロナビ */
#sp_menu_wrap {
  opacity: 0;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-bottom: 30px;
  overflow-y: auto;
  z-index: -1;
  background-color: transparent;
  padding: 0;
  flex-wrap: nowrap;
  align-self: stretch;
  /* １階層目 */
  /* サブメニュー */
}
#sp_menu_wrap.active {
  display: block;
  z-index: 997;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  opacity: 1;
}
#sp_menu_wrap.active .gns_wrap .gns_inner {
  transform: translateX(0);
}
#sp_menu_wrap li.disable > a {
  opacity: 0.6;
  pointer-events: none;
}
#sp_menu_wrap .gns_wrap {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: stretch;
}
#sp_menu_wrap .gns_wrap .menu_closer {
  flex: 0 1 auto;
  width: 100%;
  position: relative;
  display: block;
}
#sp_menu_wrap .gns_wrap .gns_inner {
  flex: 0 0 auto;
  background-color: #FFF;
  width: 100%;
  height: 100%;
  max-width: 390px;
  overflow-y: auto;
  margin: 0 0 0 auto;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  transform: translateX(50px);
  padding: 70px 0 80px;
  position: relative;
}
#sp_menu_wrap #sp_menu > ul {
  padding: 0;
}
#sp_menu_wrap #sp_menu > ul > li {
  border-bottom: solid 1px #CCC;
  position: relative;
}
#sp_menu_wrap #sp_menu > ul > li > a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 3px 20px 0;
  color: #1C4388;
  font-size: 1.8rem;
  line-height: 4.8rem;
  font-weight: bold;
}
#sp_menu_wrap #sp_menu > ul > li.menu-item-has-children > button {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  display: block;
  background: transparent;
  width: 55px;
  z-index: 10;
  padding: 0;
  margin: 0;
  cursor: pointer;
}
#sp_menu_wrap #sp_menu > ul > li.menu-item-has-children > button:after {
  position: absolute;
  display: block;
  top: 18px;
  right: 16px;
  content: "";
  height: 9px;
  width: 9px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
#sp_menu_wrap #sp_menu > ul > li.menu-item-has-children.open > button:after {
  top: 22px;
  border-right: none;
  border-bottom: none;
  border-left: 2px solid #000;
  border-top: 2px solid #000;
}
#sp_menu_wrap ul.sub-menu {
  display: none;
  padding: 0;
}
#sp_menu_wrap ul.sub-menu li {
  border-top: solid 1px #CCC;
}
#sp_menu_wrap ul.sub-menu li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px 15px 7px 30px;
}
#sp_menu_wrap ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
  padding-left: 42px;
}
#sp_menu_wrap ul.sub-menu li.menu-item-has-children ul.sub-menu li.menu-item-has-children ul.sub-menu li a {
  padding-left: 54px;
}
/* グロナビ PC */
@media (min-width: 768px) {
  .pc_menu_wrap {
    position: relative;
    margin: 0 auto;
    padding-right: 17px;
  }
  .pc_menu_wrap #pc_menu {
    margin: 0 auto;
    display: block;
    padding: 0;
  }
  .pc_menu_wrap #pc_menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .pc_menu_wrap #pc_menu > ul > li {
    cursor: pointer;
    position: relative;
    /* サブメニュー */
  }
  .pc_menu_wrap #pc_menu > ul > li.disable > a {
    opacity: 0.6;
    pointer-events: none;
  }
  .pc_menu_wrap #pc_menu > ul > li.no_disp_header {
    display: none;
  }
  .pc_menu_wrap #pc_menu > ul > li:not(:last-of-type):after {
    display: block;
    position: absolute;
    content: "｜";
    color: #FFF;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
  }
  .pc_menu_wrap #pc_menu > ul > li.no_r_line:after {
    content: "";
  }
  .pc_menu_wrap #pc_menu > ul > li > a {
    display: grid;
    place-items: center;
    width: 100%;
    height: 40px;
    color: #FFF;
    padding: 5px 24px;
  }
}
/* **************************************************
	フッター
************************************************** */
/* body:not(.top) footer {
  border-top: 1px solid #333;
} */
footer {
  padding: 70px 20px 71px;
  background-color: #0057BC;
  position: relative;
  color: #FFF !important;
  text-align: center;
}
footer a {
  color: #FFF !important;
}
footer .f_inner #f_nav {
  padding-bottom: 32px;
}
footer .f_inner #f_nav > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .f_inner #f_nav > ul > li {
  position: relative;
}
footer .f_inner #f_nav > ul > li.nofooter {
  display: none;
}
footer .f_inner #f_nav > ul > li::before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  height: 14px;
  width: 1px;
  top: 50%;
  background-color: #FFF;
  transform: translate(0, -50%);
}
footer .f_inner #f_nav > ul > li.fnav_li_add_line::before {
  display: none;
}
footer .f_inner #f_nav > ul > li > a {
  display: block;
  line-height: 3.8rem;
  padding: 0 10px;
}
footer .f_inner .sns_area {
  text-align: center;
  padding-bottom: 34px;
}
footer .f_inner .sns_area > a {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
footer .f_inner .f_name {
  padding-bottom: 22px;
}
footer .f_inner .f_name .sub {
  padding-bottom: 2px;
}
footer .f_inner .f_name .main {
  font-size: 3.6rem;
  line-height: 4.8rem;
}
footer .f_inner .f_addr {
  padding-bottom: 37px;
  line-height: 2.7rem;
}
footer .f_inner .f_addr .tel_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .f_inner .f_addr .tel_wrap > span {
  display: block;
}
footer .f_inner .f_copy {
  font-size: 12px;
  line-height: 16px;
  padding-bottom: 8px;
}
footer .f_inner .f_hojokin {
  font-size: 1.2rem;
  line-height: 1.6rem;
  color: #000;
}
@media (min-width: 768px) {
  footer {
    padding-bottom: 99px;
  }
  footer .f_inner #f_nav {
    padding-bottom: 28px;
  }
  footer .f_inner #f_nav > ul > li > a {
    padding: 0 8px;
  }
  footer .f_inner .sns_area {
    padding-bottom: 64px;
  }
  footer .f_inner .f_name {
    padding-bottom: 16px;
  }
  footer .f_inner .f_name .sub {
    padding-bottom: 4px;
  }
  footer .f_inner .f_addr {
    padding-bottom: 52px;
  }
  footer .f_inner .f_copy {
    font-size: 1.6rem;
    line-height: 2.1rem;
  }
}
/* ----------------------------------------
	ページの先頭へ
---------------------------------------- */
#page_top {
  display: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  z-index: 100;
  background-color: #1C4388;
  border-radius: 999px;
  border: 1px solid #FFF;
}
#page_top:hover {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}
#page_top:before {
  position: absolute;
  display: block;
  top: 15px;
  left: 50%;
  content: "";
  height: 11px;
  width: 11px;
  border-left: 2px solid #FFF;
  border-top: 2px solid #FFF;
  transform: translate(-50%, 0) rotate(45deg);
}
#page_top:after {
  position: absolute;
  display: block;
  top: 22px;
  left: 50%;
  content: "TOP";
  font-size: 1rem;
  line-height: 2.3rem;
  color: #FFF;
  font-weight: normal;
  transform: translate(-50%, 0);
}
#page_top a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  #page_top {
    bottom: 20px;
    right: 20px;
  }
}
/* **************************************************
	共通パーツ
************************************************** */
/* ----------------------------------------
	ページタイトル
---------------------------------------- */
.hl_page_wrap {
  width: 100%;
  min-height: 120px;
  padding: 6px 17px;
  /*  パンくずリスト  */
}
.hl_page_wrap.preview {
  background-color: #ffffcf;
  color: #1C4388;
}
.hl_page_wrap .breadcrumb {
  position: relative;
  font-weight: normal;
}
.hl_page_wrap .breadcrumb ul {
  padding-bottom: 20px;
  overflow-x: scroll;
  word-break: keep-all;
  white-space: nowrap;
}
.hl_page_wrap .breadcrumb ul li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.8rem;
  position: relative;
  /*
        &.single_title {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          width: 50%;
          margin-bottom: -8px;
        }
        */
}
.hl_page_wrap .breadcrumb ul li:not(:last-of-type) {
  margin-right: 9px;
}
.hl_page_wrap .breadcrumb ul li:not(:last-of-type):after {
  position: absolute;
  content: " > ";
  top: 50%;
  right: -11px;
  font-size: 1rem;
  transform: translateY(-50%);
}
.hl_page_wrap .breadcrumb .bc_scroll_grd {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
.hl_page_wrap .breadcrumb .bc_scroll_grd.left:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: linear-gradient(90deg, #FFF, rgba(255, 255, 255, 0));
  background-size: contain;
}
.hl_page_wrap .breadcrumb .bc_scroll_grd.right:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(-90deg, #FFF, rgba(255, 255, 255, 0));
  background-size: contain;
}
.hl_page_wrap .hl_page {
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: bold;
  text-align: center;
  padding-right: 12px;
}
@media (min-width: 768px) {
  .hl_page_wrap {
    padding: 6px 25px;
    min-height: 160px;
  }
  .hl_page_wrap .breadcrumb ul {
    padding-bottom: 25px;
    overflow-x: inherit;
    word-break: inherit;
    white-space: inherit;
  }
  .hl_page_wrap .breadcrumb ul li {
    font-size: 1.4rem;
    line-height: 1.9rem;
  }
  .hl_page_wrap .breadcrumb ul li:not(:last-of-type) {
    margin-right: 13px;
  }
  .hl_page_wrap .breadcrumb ul li:not(:last-of-type):after {
    font-size: 1.2rem;
    top: 49%;
    right: -14px;
  }
  .hl_page_wrap .hl_page {
    font-size: 3.2rem;
    line-height: 4.3rem;
    padding: 0;
  }
}
/* ----------------------------------------
	見出し
---------------------------------------- */
.hl_a {
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .hl_a {
    font-size: 4rem;
    line-height: 6rem;
  }
}
/* ----------------------------------------
	ボタン
---------------------------------------- */
.btn_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
  width: 100%;
  padding: 0 25px 0;
}
.btn_wrap .btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 0;
  width: 100%;
  min-height: 60px;
  background-color: #1C4388;
  color: #FFF;
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: bold;
}
.btn_wrap .btn > span {
  display: inline-block;
}
.btn_wrap .btn:disabled {
  opacity: 0.5;
  cursor: default;
}
@media (min-width: 768px) {
  .btn_wrap {
    flex-direction: row;
    justify-content: center;
    padding: 0;
  }
  .btn_wrap .btn {
    max-width: 300px;
  }
}
/* ----------------------------------------
	検索ボックス
---------------------------------------- */
form.searchform {
  padding: 0;
  /*
  .searchsubmit {
    background: url(../img/common/btn_search.png) no-repeat right 3px bottom;
    background-size: 40px;
    width: 40px;
    height: 40px;
  }*/
}
form.searchform .search {
  position: relative;
}
form.searchform .search input.s {
  padding-right: 40px;
}
form.searchform .search .searchsubmit {
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/common/btn_search.png) no-repeat right 3px bottom;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  border: none;
  display: inline-block;
  padding: 0;
}
/* ----------------------------------------
	区切り線
---------------------------------------- */
.spl {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border: 0;
  border-bottom: solid 1px #CCC;
}
/* ----------------------------------------
	リスト（ul, li）
---------------------------------------- */
.list_def_01 {
  padding: 0;
  margin: 0;
}
.list_def_01 li {
  position: relative;
  padding: 0 0 0 25px;
  list-style: none;
}
.list_def_01 li:before {
  position: absolute;
  content: "●";
  top: 0;
  left: 5px;
}
/* ----------------------------------------
	フォーム系の基本デザイン
---------------------------------------- */
select {
  width: 100%;
  border: 1px solid #CCC;
  background: #F7F9F9 url("../img/common/select_icon.png") no-repeat right 11px center;
  background-size: 10px 7px;
  border-radius: 4px;
  height: 36px;
  padding: 5px 30px 5px 10px;
  cursor: pointer;
}
input[type="text"], input[type="password"], input[type="email"], textarea {
  width: 100%;
  border: 1px solid #CCC;
  background: #F7F9F9;
  border-radius: 4px;
  padding: 5px 10px 5px;
}
input[type="text"], input[type="password"] {
  height: 40px;
}
textarea {
  resize: vertical;
}
input::placeholder, textarea::placeholder {
  color: #1C4388;
}
input:-ms-input-placeholder {
  color: #1C4388;
}
input::-ms-input-placeholder {
  color: #1C4388;
}
label.l_cbox, label.l_radio {
  display: block;
  width: 100%;
}
label.l_cbox:not(:last-of-type), label.l_radio:not(:last-of-type) {
  margin: 0 0 13px;
}
input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  padding-left: 33px;
}
input[type="checkbox"] + span:before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #CCC;
  border-radius: 4px;
}
input[type="checkbox"] + span:after {
  position: absolute;
  content: "";
  top: 7px;
  left: 5px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #CCC;
  border-bottom: 2px solid #CCC;
  transform: rotate(-45deg);
}
input[type="checkbox"]:checked + span:before {
  border: solid 1px #1C4388;
  background-color: #1C4388;
}
input[type="checkbox"]:checked + span:after {
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
}
input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding-left: 33px;
}
input[type="radio"] + span:before {
  position: absolute;
  content: "";
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  border: solid 1px #CCC;
  border-radius: 12px;
}
input[type="radio"]:checked + span:before {
  border: solid 2px #1C4388;
}
input[type="radio"]:checked + span:after {
  position: absolute;
  content: "";
  width: 14px;
  height: 14px;
  top: 6px;
  left: 5px;
  background: #1C4388;
  border-radius: 50%;
}
@media (min-width: 768px) {
  input[type="text"], input[type="password"], input[type="email"], textarea {
    width: auto;
  }
  select {
    width: initial;
  }
  label.l_cbox, label.l_radio {
    display: inline-block;
    width: auto;
  }
  label.l_cbox:not(:last-of-type), label.l_radio:not(:last-of-type) {
    margin: 0 35px 0 0;
  }
}
/* ----------------------------------------
	文字の装飾
---------------------------------------- */
.txt_red {
  color: #1C4388;
}
.txt_note {
  display: block;
  padding-left: 16px;
  position: relative;
}
.txt_note:before {
  position: absolute;
  display: block;
  content: "※";
  top: 0;
  left: 0;
}
.txt_under {
  text-decoration: underline;
}
.txt_inblock {
  display: inline-block;
}
.txt_block {
  display: block;
}
.senja_r {
  font-weight: normal;
}
/* ----------------------------------------
	ローディング
---------------------------------------- */
#loader-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0px;
  background-color: #fff;
  z-index: 999;
}
#loading {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -16px;
  margin-top: -50px;
}
@media (min-width: 768px) {
  #loader-bg {
    /*top: 142px;*/
    top: 0;
  }
  #loading {
    /*margin-top: -142px;*/
    margin-top: 0;
  }
}
/* **************************************************
	背景
************************************************** */
.container {
  width: 100%;
  padding: 0;
  margin: 0 auto;
  /* 画像を背景として表示する場合
  padding: 0 0 119px;
  &:not(.front-page) {
    background: url('../img/common/page_end_sp.png') no-repeat center bottom;
    background-size: contain;
  } */
}
.container .main_content {
  padding: 0 20px 100px;
}
/* **************************************************
	ブログコンテンツ
************************************************** */
/* ----------------------------------------
	レイアウト
---------------------------------------- */
.blog_contents .main_column {
  width: 100%;
}
.blog_contents .side_column > div:last-of-type ul {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .blog_contents {
    width: 1000px;
    margin: 0 auto;
  }
  .blog_contents .main_column {
    float: left;
    width: 700px;
  }
  .blog_contents .side_column {
    float: right;
    width: 240px;
    padding-top: 3px;
    padding-bottom: 0;
  }
  .blog_contents .side_panel_wrap {
    float: right;
    padding: 0;
  }
}
/* ----------------------------------------
	ニュース　記事一覧
---------------------------------------- */
/*body.news .plist_wrap {
  .plist {
    margin-bottom: 10px;
    .list_date {
      font-weight: bold;
      font-size: 2.0rem;
      line-height: 3.0rem;
    }
    > ul > li > img {
      vertical-align: initial;
    }
  }
}*/
.entry_panel_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 0 15px 30px;
}
.entry_panel_wrap .entry_panel {
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  /*
    .tags_list {
      li {
        display: inline-block;
        &:not(:last-of-type) {
          margin-right: 10px;
        }
      }
    }
    */
}
.entry_panel_wrap .entry_panel figure {
  position: relative;
  overflow: hidden;
}
.entry_panel_wrap .entry_panel figure:before {
  content: "";
  display: block;
  padding-top: 64.06%;
  position: relative;
  z-index: 10;
}
.entry_panel_wrap .entry_panel figure img {
  position: absolute;
  max-width: none;
  max-height: none;
  height: auto;
  /* jQueryで再調整 */
  width: 100%;
  /* jQueryで再調整 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.entry_panel_wrap .entry_panel .text_box {
  background-color: #FFF;
  padding: 23px 25px 22px;
}
.entry_panel_wrap .entry_panel .text_box .post_date {
  font-weight: bold;
  padding-bottom: 8px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
.entry_panel_wrap .entry_panel .text_box .hl {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: bold;
  padding-bottom: 6px;
  /*
        // 以下、表示行数を制御する CSS
        // matchHeight.js を仕様する場合は動作しないためコメントアウト（function.php の get_the_custom_title で対応）
        text-overflow: ellipsis;
        word-wrap: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -moz-box-orient: vertical;
        -moz-line-clamp: 3;
        display: -moz-box;
        -ms-box-orient: vertical;
        -ms-line-clamp: 3;
        -o-box-orient: vertical;
        -o-line-clamp: 3;
        display: -o-box;
        box-orient: vertical;
        line-clamp: 3;
        */
}
.entry_panel_wrap .entry_panel .text_box .t_disc {
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding-bottom: 19px;
  /*
        // 以下、表示行数を制御する CSS
        // matchHeight.js を仕様する場合は動作しないためコメントアウト（function.php の get_the_custom_XXX で対応）
        text-overflow: ellipsis;
        word-wrap: break-word;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -moz-box-orient: vertical;
        -moz-line-clamp: 3;
        display: -moz-box;
        -ms-box-orient: vertical;
        -ms-line-clamp: 3;
        -o-box-orient: vertical;
        -o-line-clamp: 3;
        display: -o-box;
        box-orient: vertical;
        line-clamp: 3;
        */
}
.entry_panel_wrap .entry_panel .text_box .t_disc .next_view {
  color: #919DBE;
  padding-left: 20px;
}
.entry_panel_wrap .entry_panel .text_box .more_link {
  padding-bottom: 10px;
  text-decoration: underline;
}
.entry_panel_wrap .entry_panel .cats_list {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.entry_panel_wrap .entry_panel .cats_list li {
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6rem;
  border: 1px solid #1C4388;
  font-weight: bold;
  border-radius: 999px;
  min-height: 24px;
  padding: 2px 14px;
  /*
        &:not(:last-of-type) {
          margin: 0 5px 5px 0;
        }
        */
}
.entry_panel_wrap .entry_panel a.overh {
  height: 100%;
  display: block;
  position: absolute;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  z-index: 900;
}
@media (min-width: 768px) {
  .entry_panel_wrap {
    width: 1000px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 0 60px;
  }
  .entry_panel_wrap .entry_panel {
    display: inline-block;
    width: 320px;
    flex-shrink: 0;
    flex-grow: 0;
  }
  .entry_panel_wrap .entry_panel figure:before {
    height: 205px;
  }
  .entry_panel_wrap:after {
    /* レイアウト崩れ防止 */
    content: "";
    display: block;
    width: 320px;
    /* .entory_panelと同じ幅にしてください */
    flex-shrink: 0;
    flex-grow: 0;
  }
}
/* ----------------------------------------
	検索結果　記事一覧
---------------------------------------- */
body.search .slist_wrap .slist {
  margin-bottom: 25px;
}
body.search .slist_wrap .slist .list_title {
  font-weight: bold;
  font-size: 2rem;
  line-height: 3rem;
  position: relative;
  display: inline-block;
}
body.search .slist_wrap .slist .list_title > img {
  vertical-align: initial;
}
body.search .slist_wrap .slist .cat_list > ul > li > a {
  background: #BBB;
  padding: 3px;
}
/* ----------------------------------------
	記事
---------------------------------------- */
article.entry {
  padding: 0 0 30px;
  border-bottom: solid 1px #CCC;
}
article.entry .post_img_wrap {
  width: 100%;
  margin-bottom: 20px;
}
article.entry .post_img_wrap > ul {
  list-style: none;
  padding: 0;
}
article.entry .post_img_wrap > ul > li .trim_b {
  background-color: #e9e9e9;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
article.entry .post_img_wrap > ul > li .trim_b:before {
  content: "";
  display: block;
  padding-top: 68.9%;
}
article.entry .post_img_wrap > ul > li .trim_b img {
  position: absolute;
  max-width: 100%;
  max-height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
article.entry .post_img_wrap.left {
  float: left;
}
article.entry .post_head {
  padding-bottom: 20px;
}
article.entry .post_head .post_date {
  padding-bottom: 0;
}
article.entry .post_head .post_cat span {
  display: inline-block;
  border-radius: 999px;
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #FFF;
  text-align: center;
  min-width: 80px;
  min-height: 20px;
  padding: 2px 8px;
  margin-right: 10px;
  background-color: #1C4388;
}
article.entry .post_head .hl {
  font-weight: bold;
  font-size: 2.6rem;
  line-height: 3.4rem;
  padding-bottom: 10px;
}
article.entry .post_body {
  line-height: 1.6;
  color: #333;
  /*
    h1 {
      font-size: 3.2rem;
    }
    h2 {
      font-size: 2.4rem;
    }
    h3 {
      font-size: 1.87rem;
    }
    h4 {
      font-size: 1.6rem;
    }
    h5 {
      font-size: 1.33rem;
    }
    h6 {
      font-size: 1.07rem;
    }
    */
}
article.entry .post_body iframe {
  max-width: 100% !important;
}
article.entry .post_body h1, article.entry .post_body h2, article.entry .post_body h3, article.entry .post_body h4, article.entry .post_body h5, article.entry .post_body h6 {
  font-weight: bold;
  padding: 20px 0 10px;
}
article.entry .post_body p {
  padding-bottom: 10px;
}
article.entry .post_body img {
  margin-bottom: 10px;
  height: auto;
}
article.entry .post_body ul {
  list-style: inherit;
  padding-left: 20px;
  padding-bottom: 15px;
}
article.entry .post_body ol {
  list-style: decimal;
  padding-left: 20px;
  padding-bottom: 15px;
}
article.entry .post_body b, article.entry .post_body strong {
  font-weight: bold !important;
}
article.entry .post_body i, article.entry .post_body em {
  font-style: italic !important;
}
article.entry .post_body .movie {
  text-align: center;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1.7777777778;
}
article.entry .post_body a {
  text-decoration: underline;
}
article.entry .post_body a.btn {
  text-decoration: none;
}
article.entry .post_body table {
  margin-bottom: 20px;
  border: 1px solid #BCBCBC;
  vertical-align: middle;
}
article.entry .post_body table tr:nth-child(odd) {
  background: #EFEFEF;
}
article.entry .post_body table tr th, article.entry .post_body table tr td {
  border: 1px solid #BCBCBC;
  vertical-align: middle;
}
article.entry .post_body table tr th {
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  padding: 5px 10px;
  background: #999;
  color: #FFF;
}
article.entry .post_body table tr td {
  line-height: 1.2;
  font-weight: bold;
  padding: 5px 10px;
}
article.entry .post_body .btn_wrap {
  padding: 10px;
}
article.entry .post_body .btn_wrap .btn {
  max-width: initial;
  font-size: 20px;
}
article.entry .clear_float {
  clear: both;
}
article.entry .post_foot {
  text-align: right;
}
article.entry .post_foot .more {
  width: 100px;
  height: 30px;
  margin: 10px 0 0 auto;
  border: solid 1px #9acfe5;
  line-height: 30px;
  text-align: center;
  border-radius: 15px;
}
article.entry .post_foot .more a {
  display: block;
  width: 100%;
  height: 100%;
}
.no_post {
  padding: 30px 0;
  text-align: center;
}
@media (min-width: 768px) {
  article.entry {
    padding: 0 0 30px;
  }
  article.entry .post_img_wrap {
    width: 484px;
    margin: 0 15px 10px 0;
  }
  article.entry .post_img_wrap > ul > li .trim_b:before {
    padding-top: 346px;
  }
  article.entry .post_body {
    /* .movie {
        width: 560px;
      } */
  }
  article.entry .post_body .btn_wrap .btn {
    max-width: 250px;
    min-width: initial;
  }
  article.entry .post_foot .more {
    margin: 20px 0 0 auto;
  }
  .no_post {
    padding: 100px 0;
  }
}
/* 記事フッタ
---------------------------------------- */
.article_foot {
  margin: 0;
  padding: 15px 0;
}
.article_foot .paging {
  display: flex;
  justify-content: space-between;
  padding: 0 0 14px 0;
  margin-bottom: 6px;
  text-align: justify;
  text-justify: inter-character;
}
.article_foot .paging .next, .article_foot .paging .prev {
  position: relative;
  width: 50%;
  min-height: 90px;
  /* 削除すれば文字数連動になる */
}
.article_foot .paging .next a, .article_foot .paging .prev a {
  display: block;
  width: 100%;
  height: 100%;
  font-weight: bold;
}
.article_foot .paging .next a span.date, .article_foot .paging .prev a span.date {
  display: block;
  font-weight: bold;
  padding: 0;
  vertical-align: top;
}
.article_foot .paging .next:before {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 7px;
  left: 2px;
  content: "";
  height: 15px;
  width: 15px;
  border-top: 2px solid #1C4388;
  border-left: 2px solid #1C4388;
  transform: rotate(-45deg);
}
.article_foot .paging .next a {
  padding: 6px 25px 10px 19px;
  border-right: solid 1px #CCC;
}
.article_foot .paging .prev {
  margin-left: auto;
}
.article_foot .paging .prev:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 7px;
  right: 2px;
  content: "";
  height: 15px;
  width: 15px;
  border-top: 2px solid #1C4388;
  border-right: 2px solid #1C4388;
  transform: rotate(45deg);
}
.article_foot .paging .prev a {
  padding: 6px 19px 10px 25px;
  border-left: solid 1px #CCC;
  text-align: right;
}
.article_foot .paging .next + .prev a {
  border-left: none;
}
.article_foot .return {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 18px;
  /* 一覧へ戻る */
}
.article_foot .return .back {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  border: 1px solid #1C4388;
  margin: 0 auto;
  position: relative;
}
.article_foot .return .back:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.article_foot .return .back a {
  display: block;
  color: #1C4388;
  padding: 0 35px;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
@media print, screen and (min-width: 768px) {
  .article_foot {
    padding: 30px 0 0;
  }
  .article_foot .paging {
    padding: 0 0 30px 0;
    margin-bottom: 0;
  }
  .article_foot .return .back {
    width: 160px;
  }
  .article_foot .return .back a {
    font-weight: bold;
  }
}
/* ----------------------------------------
	ページネーション
---------------------------------------- */
.pagination_pc {
  display: none;
}
.pagination_sp {
  width: 100%;
  text-align: center;
  padding: 0 7px;
}
.pagination_sp .pagenum {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px 0 13px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.pagination_sp .pager {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.pagination_sp .pager .prev, .pagination_sp .pager .next {
  width: 48%;
  width: -webkit-calc(( 100% - 15px ) / 2);
  width: calc(( 100% - 15px ) / 2);
  min-height: 40px;
  border-radius: 999px;
}
.pagination_sp .pager .prev a, .pagination_sp .pager .next a {
  width: 100%;
  height: 100%;
  color: #FFF;
  font-weight: bold;
  text-align: center;
  display: grid;
  place-items: center;
  position: relative;
  font-size: 1.4rem;
  line-height: 2rem;
}
.pagination_sp .pager .prev {
  margin-right: auto;
  background-color: #1C4388;
}
.pagination_sp .pager .prev a {
  padding: 5px 10px 5px 35px;
}
.pagination_sp .pager .prev a:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 50%;
  left: 22px;
  content: "";
  height: 9px;
  width: 9px;
  border-bottom: 2px solid #FFF;
  border-left: 2px solid #FFF;
  transform: rotate(45deg) translateY(-74%);
}
.pagination_sp .pager .next {
  margin-left: auto;
  background-color: #1C4388;
}
.pagination_sp .pager .next a {
  padding: 5px 35px 5px 10px;
}
.pagination_sp .pager .next a:after {
  /* くの字　*/
  position: absolute;
  display: block;
  top: 50%;
  right: 22px;
  content: "";
  height: 9px;
  width: 9px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg) translateY(-74%);
}
@media (min-width: 768px) {
  .pagination_sp {
    display: none;
  }
  .pagination_pc {
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .pagination_pc ul li {
    display: inline-block;
    padding: 0;
    vertical-align: top;
  }
  .pagination_pc ul li a {
    display: block;
    width: 40px;
    height: 30px;
    margin: 0 5px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    background: #FFF;
    border: solid 1px #CCC;
    border-radius: 4px;
    color: #1C4388;
  }
  .pagination_pc ul li a.page-numbers.prev {
    position: relative;
    border: none;
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .pagination_pc ul li a.page-numbers.prev:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    right: 5px;
    transform: translate(0, -50%) rotate(45deg);
    height: 15px;
    width: 15px;
    border-bottom: 2px solid #1C4388;
    border-left: 2px solid #1C4388;
  }
  .pagination_pc ul li a.page-numbers.next {
    position: relative;
    border: none;
    width: 30px;
    height: 30px;
    margin: 0;
  }
  .pagination_pc ul li a.page-numbers.next:after {
    position: absolute;
    display: block;
    content: "";
    top: 50%;
    left: 5px;
    transform: translate(0, -50%) rotate(45deg);
    height: 15px;
    width: 15px;
    border-top: 2px solid #1C4388;
    border-right: 2px solid #1C4388;
  }
  .pagination_pc ul li span.current {
    display: block;
    width: 40px;
    height: 30px;
    margin: 0 5px;
    line-height: 30px;
    font-weight: bold;
    text-align: center;
    background: #1C4388;
    border-radius: 4px;
    color: #FFF;
  }
  .pagination_pc ul li span.dots {
    display: block;
    width: 40px;
    height: 30px;
    margin: 0;
    padding: 0;
    line-height: 30px;
    text-align: center;
  }
}
/* ----------------------------------------
	ウィジェットエリア_お知らせ一覧
---------------------------------------- */
.widget-row-wrap {
  width: 100%;
  font-weight: bold;
  padding: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.widget-row-wrap .wgarea_top_area {
  width: 100%;
}
.widget-row-wrap .wgarea_top_area h2, .widget-row-wrap .wgarea_top_area h3, .widget-row-wrap .wgarea_top_area h4, .widget-row-wrap .wgarea_top_area h5, .widget-row-wrap .wgarea_top_area h6, .widget-row-wrap .wgarea_top_area label {
  display: none;
}
@media (min-width: 768px) {
  .widget-row-wrap {
    flex-direction: row;
    gap: initial;
    align-items: center;
    justify-content: space-between;
    width: 1000px;
    margin: 0 auto;
  }
  .widget-row-wrap .wgarea_top_area {
    width: 320px;
  }
  .widget-row-wrap .wgarea_top_area select, .widget-row-wrap .wgarea_top_area input:not(.searchsubmit) {
    width: 100%;
  }
}
/* ----------------------------------------
	ウィジェットエリア（お知らせ詳細_PC_サイドカラム）
---------------------------------------- */
div.wgarea_side_area {
  font-weight: bold;
}
div.wgarea_side_area:not(:last-of-type) {
  margin-bottom: 30px;
}
div.wgarea_side_area[id*="custom-post-type-search"] > h3 {
  display: none;
}
div.wgarea_side_area > h3 {
  padding-bottom: 5px;
  border-bottom: solid 2px #1C4388;
}
div.wgarea_side_area ul li {
  border-bottom: 1px solid #CCC;
  line-height: 24px;
}
div.wgarea_side_area ul li.cat-item {
  line-height: 27px;
}
div.wgarea_side_area ul li a {
  display: inline-block;
  padding: 13px 10px 12px;
}
div.wgarea_side_area ul li .children {
  padding: 0 0 0 10px;
  border-top: 1px solid #CCC;
}
div.wgarea_side_area ul li .children > li {
  padding-left: 0;
  padding-right: 0;
}
div.wgarea_side_area ul li .children > li:last-of-type {
  border-bottom: 0;
}
/* **************************************************
	404
************************************************** */
.not_found {
  padding: 30px 20px;
}
.not_found > p {
  padding: 0 0 30px 0;
}
@media (min-width: 768px) {
  .not_found {
    width: 1000px;
    margin: 0 auto;
  }
  .not_found > p {
    text-align: center;
  }
}
/* **************************************************
	固定ページ
************************************************** */
/* **************************************************
	Light Box 対応
**********************************F**************** */
.figure_lightbox {
  position: relative;
}
.figure_lightbox > a {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .figure_lightbox > a {
    width: 100%;
    height: 100%;
    background: url(../img/common/panel_zoom_02.png) no-repeat right bottom;
    background-size: 40px 40px;
  }
}
/* **************************************************
	モーダルウィンドウ（共通）
************************************************** */
.js-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
.js-modal .modal_bg {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}
.js-modal .js-modal-close {
  cursor: pointer;
}
.js-modal-open {
  cursor: pointer;
}
