@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** style
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  font-size: 14px;
}

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

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.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 50px 0 10px;
  display: flex;
  align-items: center;
}
.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 {
  line-height: 1.3;
  font-weight: bold;
}
.hd_bg .hd .hd_logo .hd_ttl span {
  display: block;
  font-size: 0.8em;
  letter-spacing: 0.07em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: 60%;
  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.25em;
  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.55em;
  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 > .sub-menu {
  background-color: rgba(0, 0, 0, 0.4);
}
.nav_list > li .child_wrap > .sub-menu > li > .sub-menu > li {
  position: relative;
}
.nav_list > li .child_wrap > .sub-menu > li > .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
******************************************************************************
----------------------------------------------------------------------------*/
.con {
  padding-top: 50px;
}

.mcon_txt {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.mcon_txt h3:first-child {
  margin-top: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: relative;
  bottom: 0;
  width: 100%;
  color: #fff;
  font-weight: 300;
  background: #152535;
}
.ft_bg a {
  color: #fff;
}
.ft_bg .ft {
  height: 100%;
  padding-top: 25px;
  padding-bottom: 20px;
}
.ft_bg .ft .ft_dt {
  margin-bottom: 20px;
}
.ft_bg .ft .ft_dt .ft_ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}
.ft_bg .ft .ft_dt 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: 10px;
  text-align: center;
  line-height: 1.3;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #265f9d;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  width: 13px;
  height: 13px;
  margin-top: 7px;
  display: block;
  cursor: pointer;
  transform: rotate(45deg);
}
.pt .pt_btn:before, .pt .pt_btn:after {
  background-color: #fff;
  content: "";
  display: block;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
}
.pt .pt_btn:before {
  width: 3px;
  bottom: 0;
}
.pt .pt_btn:after {
  height: 3px;
  right: 0;
}

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

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

.index_slider_bg {
  position: relative;
  margin-top: 50px;
  background: #152535;
}
.index_slider_bg img {
  width: 100vw;
  max-width: 100vw;
  height: 500px !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: 300px;
  margin: 0 auto;
}
.index_slider_bg .catchcopy_bg .catchcopy h1 {
  font-size: 30px;
  margin-bottom: 10px;
}
.index_slider_bg .catchcopy_bg .catchcopy p {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.index_message {
  position: relative;
  width: 95%;
  margin: -50px 0 100px 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: 350px;
  height: auto;
  aspect-ratio: 1.75;
  background: #152535;
  position: absolute;
  left: -127px;
  bottom: -58px;
  z-index: -1;
}
.index_message .txt {
  padding: 1.5em 20px 2.4em 2.3em;
  background: #265f9d;
  z-index: 2;
}
.index_message .txt h3 {
  font-size: 1.4em;
}
.index_message .txt p:last-child {
  text-align: right;
}

.index_news {
  position: relative;
  width: 95%;
  margin: 0 auto 90px 0;
  box-shadow: 0px -1px 10px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.index_news .txt {
  padding: 1.5em 2em 1.8em 20px;
  background: #fff;
  z-index: 2;
}
.index_news .txt h2 {
  color: #01356d;
}
.index_news .txt .news_scrl {
  max-height: 290px;
  overflow: auto;
}
.index_news .txt .news_scrl dl {
  width: 100%;
  padding: 14px 0;
  font-size: 13px;
  border-bottom: 1px dotted #999;
}
.index_news .txt .news_scrl dl:first-child {
  padding-top: 0;
}
.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: 367px;
  height: auto;
  aspect-ratio: 1.73;
  background: rgba(21, 37, 53, 0.5);
  position: absolute;
  right: -127px;
  bottom: -58px;
  z-index: -1;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  line-height: 1.6;
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon .mcon_ttl {
  position: relative;
  height: 180px;
  background: linear-gradient(to right, #00346d 0% 60%, transparent);
  overflow: hidden;
}
.mcon .mcon_ttl img {
  position: absolute;
  right: 0;
  width: 42%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.mcon .mcon_ttl h1 {
  width: 210px;
  position: absolute;
  top: 50%;
  left: 10px;
  font-size: 20px;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1.4;
  z-index: 2;
}
.mcon h2 {
  position: relative;
  margin: 2em 0 1.3em;
  padding: 0 0 15px;
  color: #01346b;
  font-size: 1.3em;
  font-weight: 700;
  border-bottom: 2px solid #ebebeb;
  line-height: 1.4;
}
.mcon h2:first-child {
  margin-top: 0;
}
.mcon h3 {
  margin: 1.3em 0 1em;
  padding: 0 0 0 15px;
  font-size: 1.2em;
  font-weight: 700;
  border-left: 4px solid #01346b;
  line-height: 1.4;
}
.mcon h4 {
  position: relative;
  margin: 1.5em 0 1em;
  padding: 0 0 10px;
  font-size: 1.1em;
  font-weight: 700;
}
.mcon h4:after {
  position: absolute;
  content: "";
  height: 1px;
  width: 50px;
  left: 0;
  bottom: 0;
  background: #383838;
}
.mcon h5,
.mcon h6 {
  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;
}
.mcon section {
  display: block;
}/*# sourceMappingURL=sp.css.map */