@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

.w_base {
  width: 100%;
  margin: 0 auto;
  max-width: 1300px;
  padding-right: 50px;
  padding-left: 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  width: 100%;
  position: fixed;
  top: 0;
  background: #fff;
  border-top: 5px solid #01346b;
  box-shadow: 1px 1px 10px rgba(204, 204, 204, 0.3);
  z-index: 3;
}
.hd_bg a {
  text-decoration: none;
}
.hd_bg .hd {
  height: 80px;
  padding: 0 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: center;
  transition: 0.3s;
  color: #3e3e3e !important;
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
  text-decoration: none !important;
}
.hd_bg .hd .hd_logo img {
  width: 60px;
  height: auto;
  margin-right: 7px;
}
.hd_bg .hd .hd_logo .hd_ttl {
  font-size: 32px;
  line-height: 1.1;
}
.hd_bg .hd .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.44em;
  letter-spacing: 0.07em;
}

@media screen and (min-width: 1025px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  nav {
    overflow: visible;
    height: 100%;
  }
  .nav_list {
    display: flex;
    height: 100%;
  }
  .nav_list > li {
    position: relative;
    font-weight: bold;
    border-left: 1px solid #e2e2e2;
    z-index: 1000;
  }
  .nav_list > li > a {
    display: block;
    padding: 1.2em 20px 1.5em;
    text-align: center;
    font-size: 18px;
    color: #151515 !important;
  }
  .nav_list > li > a:hover {
    text-decoration: none;
  }
  .nav_list > li:last-child > .child_wrap > .sub-menu .sub-menu, .nav_list > li:nth-last-child(2) > .child_wrap > .sub-menu .sub-menu, .nav_list > li:nth-last-child(3) > .child_wrap > .sub-menu .sub-menu {
    left: -100% !important;
  }
  .nav_list > li:last-child {
    border-right: 1px solid #e2e2e2;
  }
  .nav_list > li:hover, .nav_list > li.current {
    background: #efeeee;
  }
  .nav_list > li:hover > .child_wrap > .sub-menu {
    display: block;
    animation: nav_active 1s ease 0s 1 alternate;
  }
  .nav_list > li .sub-menu {
    display: none;
    position: absolute;
    box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.1);
  }
  .nav_list > li .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  }
  .nav_list > li .sub-menu li > a {
    display: block;
    padding: 15px 10px;
    text-decoration: none;
    color: #fff !important;
    font-size: 14px;
  }
  .nav_list > li .sub-menu li > a:hover, .nav_list > li .sub-menu li > a.current {
    opacity: 0.8;
    background: rgba(0, 0, 0, 0.4);
  }
  .nav_list > li > .child_wrap > .sub-menu {
    width: 200px;
    top: 100%;
    left: 0;
    background-color: rgb(1, 73, 140);
    transition: All 0.5s ease;
  }
  .nav_list > li > .child_wrap > .sub-menu > li {
    position: relative;
  }
  .nav_list > li > .child_wrap > .sub-menu > li:hover > .sub-menu {
    display: block;
    animation: nav_active 1s ease 0s 1 alternate;
  }
  .nav_list > li > .child_wrap > .sub-menu > li > .sub-menu {
    width: 100%;
    top: 0;
    left: 100%;
    background-color: rgb(0, 37, 70);
  }
  .nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
  }
  @keyframes nav_active {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  padding-bottom: 230px;
}

.main {
  padding-top: 85px;
}

.mcon_txt {
  padding-top: 50px;
  padding-bottom: 50px;
}

.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/* チェックボックス・ラジオボタン */
input[type=checkbox],
input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type=checkbox]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

/* ラジオボタン */
input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: relative;
  width: 100%;
  height: 230px;
  position: absolute;
  bottom: 0;
  color: #fff;
  font-weight: 300;
  background: #152535;
}
.ft_bg a {
  color: #fff;
}
.ft_bg .ft {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.ft_bg .ft .ft_ttl h1 {
  font-size: 24px;
  line-height: 1.3;
}
.ft_bg .ft .ft_ttl p {
  margin-top: 10px;
  display: block;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.ft_bg .ft_copy {
  font-size: 14px;
  text-align: right;
  line-height: 1.5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 50px;
  bottom: 30px;
  width: 58px;
  height: 58px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #ccc;
  background: transparent;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.pt .pt_btn:before, .pt .pt_btn:after {
  background-color: #ccc;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt .pt_btn:before {
  width: 6px;
  bottom: 0;
}
.pt .pt_btn:after {
  height: 6px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_con_bg {
  background: url(../images/con_bg.jpg) no-repeat;
  background-size: 100% 100%;
}

.index_main h2 {
  margin-bottom: 10px;
  font-size: 38px;
}
.index_main h2 span {
  font-size: 0.34em;
  padding-left: 0.9em;
}

.index_slider_bg {
  position: relative;
  margin-top: 85px;
  background: #152535;
}
.index_slider_bg img {
  width: 100vw;
  max-width: 100vw;
  height: 80vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.6;
}
.index_slider_bg .catchcopy_bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
.index_slider_bg .catchcopy_bg .catchcopy {
  text-align: center;
  width: 800px;
  margin: 0 auto;
  text-shadow: 0 0 20px #23232f;
}
.index_slider_bg .catchcopy_bg .catchcopy h2 {
  font-size: 60px;
  margin-bottom: 20px;
}
.index_slider_bg .catchcopy_bg .catchcopy p {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.index_message {
  position: relative;
  width: 77.5%;
  margin: -90px 0 170px auto;
  color: #fff;
  font-weight: 300;
  box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.index_message::before {
  content: "";
  width: 353px;
  height: auto;
  aspect-ratio: 1.73;
  background: #152535;
  position: absolute;
  left: -243px;
  bottom: -124px;
  z-index: -1;
}
.index_message .txt {
  padding: 1.5em 1em 3.8em 3.3em;
  background: #265f9d;
  z-index: 2;
}
.index_message .txt p {
  line-height: 2.1;
}

.index_news {
  position: relative;
  width: 77.5%;
  margin: 0 auto 160px 0;
  box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.index_news .txt {
  padding: 1.5em 2.2em 2.3em 2.2em;
  background: #fff;
  z-index: 2;
}
.index_news .txt h2 {
  color: #01356d;
}
.index_news .txt .news_scrl {
  height: 290px;
  overflow: auto;
}
.index_news .txt .news_scrl dl {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  border-bottom: 1px dotted #999;
  display: flex;
  flex-wrap: wrap;
}
.index_news .txt .news_scrl dl:first-child {
  padding-top: 0;
}
.index_news .txt .news_scrl dl dt {
  width: 130px;
  padding-left: 20px;
}
.index_news .txt .news_scrl dl dd {
  width: calc(100% - 130px);
  padding-right: 20px;
}
.index_news .txt .news_scrl dl dd .icon_new {
  display: inline-block;
  color: #C00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.index_news .txt .news_scrl dl dd .icon_new:before {
  content: "NEW";
}
.index_news::after {
  content: "";
  width: 470px;
  height: auto;
  aspect-ratio: 1.73;
  background: rgba(21, 37, 53, 0.5);
  position: absolute;
  right: -270px;
  bottom: -100px;
  z-index: -1;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
/*--
.index_slider img {
	width: 100%;
	max-height: 300px!important;
	-o-object-fit:cover!important;
	object-fit:cover;
	font-family:'object-fit: cover!important;'
} -- */
/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  min-height: 180px;
  background: linear-gradient(to right, #00346d 0% 60%, transparent);
}
.mcon .mcon_ttl img {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 42%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.mcon .mcon_ttl h1 {
  max-width: 1300px;
  width: 100%;
  height: 100%;
  min-height: 180px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-right: 50px;
  padding-left: 50px;
  font-size: 30px;
  color: #fff;
}
.mcon h2 {
  position: relative;
  margin: 1.5em 0 1em;
  padding: 0 0 0.7em;
  font-size: 1.7em;
  color: #01346b;
  font-weight: 700;
  border-bottom: 2px solid #ebebeb;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h3 {
  margin: 1.5em 0 1em;
  padding: 0 0 0 15px;
  font-size: 1.5em;
  font-weight: 700;
  border-left: 4px solid #01346b;
  line-height: 1.4;
}
.mcon h3:first-child {
  margin-top: 0;
}
.mcon h4 {
  position: relative;
  margin: 1.2em 0 0.5em;
  padding: 0 0 10px;
  font-size: 1.3rem;
  font-weight: 700;
}
.mcon h4:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 50px;
  left: 0;
  bottom: 0;
  background: #383838;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol, .mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li, .mcon ul li {
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
}
.mcon p {
  margin-bottom: 1em;
}

/*----------------------------------------------------------------------------
******************************************************************************
******************************************************************************
** tablet
******************************************************************************
******************************************************************************
----------------------------------------------------------------------------*/
@media screen and (min-width: 750px) and (max-width: 1024px) {
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** header tab
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .hd_bg {
    width: 100%;
    position: fixed;
    top: 0;
    background: #fff;
    border-top: 3px solid #01346b;
    z-index: 3;
  }
  .hd_bg a {
    text-decoration: none;
  }
  .hd_bg .hd {
    height: 47px;
    padding: 3px 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .hd_bg .hd .hd_logo a {
    display: flex;
    align-items: center;
    transition: 0.3s;
    color: #333 !important;
  }
  .hd_bg .hd .hd_logo a:hover {
    opacity: 0.7;
    text-decoration: none !important;
  }
  .hd_bg .hd .hd_logo img {
    width: 30px;
    height: auto;
    margin-right: 7px;
    padding-bottom: 1px;
  }
  .hd_bg .hd .hd_logo .hd_ttl {
    font-size: 18px;
    line-height: 1.1;
  }
  .hd_bg .hd .hd_logo .hd_ttl span {
    display: block;
    font-size: 0.5em;
    letter-spacing: 0.07em;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav tab
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  nav {
    width: 40%;
    height: calc(100% + 500px);
    padding-bottom: 500px;
    position: fixed;
    top: 0px;
    right: -60%;
    color: #fff;
    background: #265f9d;
    box-shadow: 1px 1px 5px rgb(0, 0, 0);
    overflow-x: none;
    overflow-y: auto;
    z-index: 100;
    transition: All 0.5s ease;
  }
  .nav_list li a {
    display: block;
    color: #fff;
    text-decoration: none;
  }
  .nav_list > li {
    position: relative;
  }
  .nav_list > li > a {
    position: relative;
    padding: 1em 1em 1em 24px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  }
  .nav_list > li > a:after {
    content: attr(data-text);
    display: block;
  }
  .nav_list > li.current:before {
    content: "";
    width: 3px;
    height: 30px;
    background: #fff;
    position: absolute;
    left: 0.7em;
    top: 1.15em;
  }
  .nav_list > li .child_wrap_btn {
    position: absolute;
    top: 1.05em;
    right: 0.5em;
    z-index: 10;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: #fff;
  }
  .nav_list > li .child_wrap_btn::before, .nav_list > li .child_wrap_btn::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: #00538a;
  }
  .nav_list > li .child_wrap_btn::before {
    top: 50%;
    left: 50%;
    transform: rotate(0deg) translateX(-50%);
  }
  .nav_list > li .child_wrap_btn::after {
    top: 50%;
    left: 0.47em;
    transform: rotate(90deg);
    transition: all 0.3s ease;
  }
  .nav_list > li .child_wrap_btn.close::after {
    transform: rotate(0deg);
  }
  .nav_list > li .sub-menu > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .nav_list > li .child_wrap {
    display: none;
  }
  .nav_list > li .child_wrap > .sub-menu {
    background-color: rgb(0, 61, 117);
  }
  .nav_list > li .child_wrap > .sub-menu > li {
    position: relative;
  }
  .nav_list > li .child_wrap > .sub-menu > li > a {
    padding: 0.9em 1em 0.9em 24px;
    font-size: 14px;
  }
  .nav_list > li .child_wrap > .sub-menu > li .child_wrap_btn {
    top: 0.65em !important;
    right: 0.5em !important;
  }
  .nav_list > li .child_wrap > .sub-menu > li .child_wrap > .sub-menu {
    background-color: rgba(0, 0, 0, 0.4);
  }
  .nav_list > li .child_wrap > .sub-menu > li .child_wrap > .sub-menu > li {
    position: relative;
  }
  .nav_list > li .child_wrap > .sub-menu > li .child_wrap > .sub-menu > li > a {
    padding: 0.8em 1em 0.8em 24px;
    font-size: 12px;
  }
  .sp_nav_open {
    right: 0 !important;
  }
  .sp_nav_trigger,
  .sp_nav_trigger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .sp_nav_trigger {
    position: fixed;
    top: 15px;
    right: 13px;
    width: 30px;
    height: 23px;
    cursor: pointer;
    z-index: 999;
    transform: scale(0.8);
  }
  .sp_nav_trigger:after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: "";
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0);
    transition: all 0.75s;
  }
  .sp_nav_trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #265f9d;
    border-radius: 4px;
  }
  .sp_nav_trigger span:nth-of-type(1) {
    top: 0;
  }
  .sp_nav_trigger span:nth-of-type(2) {
    top: 10px;
  }
  .sp_nav_trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .sp_nav_trigger.active {
    width: 16px;
    right: 18px;
  }
  .sp_nav_trigger.active span {
    background: #fff;
  }
  .sp_nav_trigger.active span:nth-of-type(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .sp_nav_trigger.active span:nth-of-type(2) {
    left: 60%;
    opacity: 0;
    animation: trigger_active 0.8s forwards;
  }
  .sp_nav_trigger.active span:nth-of-type(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  .sp_nav_trigger.active:after {
    border: 3px solid #fff;
  }
  @keyframes trigger_active {
    100% {
      height: 0;
    }
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** content tab
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .main {
    padding-top: 50px;
  }
  .mcon_txt {
    padding: 20px;
  }
  /*----------------------------------------------------------------------------
  ******************************************************************************
  ** index tab
  ******************************************************************************
  ----------------------------------------------------------------------------*/
  .index_slider_bg {
    margin-top: 50px;
  }
  .index_slider_bg .catchcopy {
    width: 600px !important;
  }
  .index_message,
  .index_news {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */