@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
******************************************************************************
----------------------------------------------------------------------------*/
body {
 display: none;
}
html, body {
 position: relative;
 min-height: 100vh;
}
.con_bg {
 width: 100%;
 max-width: 1920px;
 padding: 65px 60px;
 margin: 0 auto;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
 .con_bg {
  padding: 30px 30px 100px 10px;
 }
}
.hd_bg {
 width: 230px;
 margin-right: 60px;
}
.con {
 width: calc(100% - 230px - 60px);
}
.w_base {
 max-width: 1200px;
 margin: 0 auto 0 0;
}
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
 position: sticky;
 top: 0;
 height: 100%;
 padding-top: 25px;
 text-align: center;
 z-index: 10;
}
.hd_bg a {
 text-decoration: none;
}
.hd_bg .hd_logo {
 margin-bottom: 35px;
}
.hd_bg .hd_logo a {
 -webkit-transition: 0.3s;
 transition: 0.3s;
 color: #3e3e3e !important;
}
.hd_bg .hd_logo a:hover {
 opacity: 0.7;
 text-decoration: none !important;
}
.hd_bg .hd_logo img {
 width: 100px;
 height: auto;
 margin-bottom: 20px;
}
.hd_bg .hd_logo .hd_ttl {
 font-size: 30px;
 line-height: 1.1;
}
.hd_bg .hd_logo .hd_ttl span {
 display: block;
 font-size: 0.44em;
 letter-spacing: 0.07em;
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
 .hd_bg .hd_logo img {
  width: 100px;
 }
 .hd_bg .hd_logo .hd_ttl {
  font-size: 24px;
 }
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.nav_list {
 height: 100%;
 /* メニュー（親） */
}
.nav_list > li {
 position: relative;
 font-weight: 600;
 font-size: 20px;
 z-index: 1000;
 line-height: 1.3;
 border-bottom: 2px solid transparent;
 -webkit-transition: background 0.2s linear 0s;
 transition: background 0.2s linear 0s;
 /* 子要素を持つメニュー（親）の場合 */
}
.nav_list > li > a {
 display: block;
 padding: 0.8em 40px;
 color: #151515 !important;
}
.nav_list > li > a > span {
 display: block;
 font-size: 14px;
 font-weight: 500;
 color: #002161;
}
.nav_list > li.has_clist {
 position: relative;
}
.nav_list > li.has_clist .sub-menu-trigger {
 position: absolute;
 top: 1.25em;
 right: 0.3em;
 z-index: 10;
 width: 30px;
 height: 30px;
 background: #002161;
 cursor: pointer;
 -webkit-box-shadow: 0px 0px 5px 0px #cccccc;
 box-shadow: 0px 0px 5px 0px #cccccc;
}
.nav_list > li.has_clist .sub-menu-trigger:before, .nav_list > li.has_clist .sub-menu-trigger:after {
 position: absolute;
 content: "";
 width: 15px;
 height: 2px;
 background-color: #fff;
}
.nav_list > li.has_clist .sub-menu-trigger::before {
 top: 50%;
 left: 50%;
 -webkit-transform: rotate(0deg) translateX(-50%);
 transform: rotate(0deg) translateX(-50%);
}
.nav_list > li.has_clist .sub-menu-trigger:after {
 top: 50%;
 left: 7px;
 -webkit-transform: rotate(90deg);
 transform: rotate(90deg);
 -webkit-transition: all 0.3s ease;
 transition: all 0.3s ease;
}
.nav_list > li.has_clist .sub-menu-trigger.close:after {
 -webkit-transform: rotate(180deg);
 transform: rotate(180deg);
}
.nav_list > li.has_clist .sub_menu_wrap {
 display: none;
 /* メニュー（子・孫）*/
 /* メニュー（子）*/
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu {
 background: #002161;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li {
 border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 -webkit-transition: background 0.2s linear 0s;
 transition: background 0.2s linear 0s;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li > a {
 display: block;
 padding: 0.9em 10px;
 text-decoration: none;
 color: #fff !important;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:last-child {
 border-bottom: none;
}
.nav_list > li.has_clist .sub_menu_wrap .sub-menu li:hover {
 background: rgba(0, 0, 0, 0.1);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu {
 -webkit-transition: All 0.5s ease;
 transition: All 0.5s ease;
 -webkit-box-shadow: inset 0 0 12px 5px rgb(24, 132, 70);
 box-shadow: inset 0 0 12px 5px rgb(24, 132, 70);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li {
 position: relative;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > a {
 font-size: 16px;
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu {
 width: 100%;
 top: 0;
 left: 100%;
 background: rgba(0, 0, 0, 0.5);
}
.nav_list > li.has_clist .sub_menu_wrap > .sub-menu > li > .sub-menu > li > a {
 font-size: 14px;
}
.nav_list > li.current {
 border-color: #002161;
}
.nav_list > li.current, .nav_list > li:hover {
 color: #002161;
}
.nav_list li:hover {
 background: rgba(0, 0, 0, 0.05);
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.sp_br {
 display: none;
}
/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
 width: 100%;
 color: #fff;
 font-weight: 300;
 margin-bottom: 15px;
}
.ft_bg > img {
 width: 100%;
 height: 300px;
 -o-object-fit: cover;
 object-fit: cover;
 -o-object-position: 100% 68%;
 object-position: 100% 68%;
}
.ft_bg .ft_wrap {
 background: #002161;
 padding: 30px 68px;
}
.ft_bg .ft_wrap a {
 color: #fff;
}
.ft_bg .ft_wrap .ft {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 height: 100%;
}
.ft_bg .ft_wrap .ft.w_base {
 margin: 0 auto;
}
.ft_bg .ft_wrap .ft .ft_ttl h1 {
 font-size: 24px;
 line-height: 1.3;
}
.ft_bg .ft_wrap .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_wrap .ft_copy {
 font-size: 14px;
 text-align: right;
 line-height: 1.5;
}
/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
 position: fixed;
 right: 50px;
 bottom: 50px;
 width: 58px;
 height: 58px;
 cursor: pointer;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 -webkit-box-pack: center;
 -ms-flex-pack: center;
 justify-content: center;
 border-radius: 50%;
 border: 1px solid #ccc;
 background: transparent;
 z-index: 100;
 background: #002161;
 border: 1px solid #fff;
}
.pt:hover {
 opacity: 0.6;
}
.pt .pt_btn {
 cursor: pointer;
 display: block;
 width: 20px;
 height: 20px;
 margin-top: 8px;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
 position: relative;
}
.pt .pt_btn:before, .pt .pt_btn:after {
 background-color: #fff;
 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_main {
 margin-top: 140px;
}
.index_main h2 {
 margin-bottom: 0.4em;
 font-size: 48px;
 font-family: "Noto Serif JP", serif;
 font-weight: 400;
 color: #002161;
}
.index_main h2 span {
 padding-left: 1em;
 font-size: 0.34em;
 font-weight: 600;
 font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
 .index_main {
  padding-top: 100px;
 }
}
.index_slider {
 position: relative;
 width: 100%;
}
.index_slider img {
 width: 100%;
 height: 700px !important;
 -o-object-fit: cover;
 object-fit: cover;
 border-radius: 40px;
}
.index_slider .catchcopy_bg {
 position: absolute;
 top: 45%;
 left: 100px;
 -webkit-transform: translate(0, -50%);
 transform: translate(0, -50%);
 color: #fff;
 z-index: 1;
}
.index_slider .catchcopy_bg .catchcopy {
 max-width: 100%;
 margin: 0 auto;
 padding-right: 100px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-orient: vertical;
 -webkit-box-direction: normal;
 -ms-flex-direction: column;
 flex-direction: column;
 gap: 10px;
 line-height: 1.3;
}
.index_slider .catchcopy_bg .catchcopy p {
 padding: 0 0.3em 3px;
 color: #002161;
 font-weight: 600;
 font-size: 60px;
 font-family: "Noto Serif JP", serif;
 background: #fff;
 -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
 box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
 .index_slider img {
  height: 600px !important;
 }
 .index_slider .catchcopy_bg {
  top: 25%;
  left: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
 }
}
.index_slider .index_slider {
 display: none;
}
.index_slider .index_slider.slick-initialized {
 display: block;
}
.index_message {
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-pack: justify;
 -ms-flex-pack: justify;
 justify-content: space-between;
 -webkit-box-align: center;
 -ms-flex-align: center;
 align-items: center;
 margin-bottom: 140px;
}
.index_message .txt {
 margin-right: 80px;
}
.index_message img {
 width: 468px;
 height: 389px;
 -o-object-fit: cover;
 object-fit: cover;
 border-radius: 25px;
 -webkit-filter: hue-rotate(6deg) saturate(1.5);
 filter: hue-rotate(6deg) saturate(1.5);
}
@media screen and (min-width: 1025px) and (max-width: 1340px) {
 .index_message {
  display: block;
  margin-bottom: 120px;
 }
 .index_message .txt {
  width: 100%;
  margin: 0;
  margin-bottom: 80px;
 }
 .index_message img {
  display: block;
  margin: 0 auto;
 }
}
.index_news .news_scrl {
 height: 310px;
 overflow: auto;
}
.index_news .news_scrl dl {
 width: 100%;
 padding: 14px 0;
 font-size: 16px;
 border-bottom: 1px dotted #ccc;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -ms-flex-wrap: wrap;
 flex-wrap: wrap;
}
.index_news .news_scrl dl:first-child {
 padding-top: 0;
}
.index_news .news_scrl dl dt {
 width: 110px;
 padding-left: 10px;
 color: #002161;
}
.index_news .news_scrl dl dd {
 width: calc(100% - 110px);
 padding-right: 10px;
}
.index_news .news_scrl dl dd .icon_new {
 display: inline-block;
 color: #C00;
 font-size: 0.9em;
 font-weight: bold;
 margin-left: 0.3em;
}
.index_news .news_scrl dl dd .icon_new:before {
 content: "NEW";
}
/*-- 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;
 -webkit-transition: all 0.3s ease;
 transition: all 0.3s ease;
}
.mcon .mcon_ttl {
 position: relative;
 background: -webkit-gradient(linear, left top, right top, from(#002161), to(transparent));
 background: linear-gradient(to right, #002161 0% 60%, transparent);
 margin-bottom: 3em;
 border-radius: 40px;
 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 {
 max-width: 1300px;
 width: 100%;
 height: 180px;
 display: -webkit-box;
 display: -ms-flexbox;
 display: flex;
 -webkit-box-align: center;
 -ms-flex-align: center;
 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: #002161;
 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 #002161;
 line-height: 1.4;
}
.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;
} /*# sourceMappingURL=style.css.map */