@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
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: block;
}

.sp_only {
  display: none;
}

/*--------color code -------*/
html,
body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body {
  min-height: 100vh;
}

.w_base {
  margin: 0 auto;
  max-width: 1000px;
  width: 90vw;
}

p,
a,
li {
  font-size: 1.2rem;
}

[id] {
  scroll-margin-top: 60px; /* ヘッダー高さ */
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 120px;
  background: #fff;
}

.hd {
  display: flex;
  flex-wrap: nowrap;
  margin: 0 auto;
  align-items: center;
}

h1.hd_logo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 250px;
}
h1.hd_logo a {
  display: flex;
  align-items: center;
}
h1.hd_logo a img {
  width: 220px;
  height: auto;
}
h1.hd_logo a.site_title {
  display: block;
  width: 250px;
  text-decoration: none;
  color: #000;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  width: calc(100% - 250px);
}

.nav {
  width: 100%;
  height: 100%;
}

.nav_list {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 2rem;
}
.nav_list > li {
  display: inline-block;
  height: inherit;
}
.nav_list > li > a {
  color: #000;
  padding: 20px 0;
  display: inline-grid;
  height: inherit;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.nav_list > li a:hover {
  color: #0c539c;
}
.nav_list > li.contact_nav a {
  background-color: #0c539c;
  color: #fff;
}

ul.nav_list li:hover ul.sub-menu {
  display: flex;
  animation: Appear 0.3s forwards;
}

.sub-menu {
  display: none;
  position: absolute;
  z-index: 9999;
  width: 100vw;
  left: 0;
  background-color: #757575;
  padding-left: 33vw;
  flex-wrap: wrap;
  flex-direction: column;
}
.sub-menu span {
  position: absolute;
  left: 10vw;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
}
.sub-menu > li {
  width: 33vw;
}
.sub-menu > li > a {
  color: #fff;
  text-decoration: none;
  padding: 1rem 0;
  display: block;
  width: 100%;
  transition: 0.3s;
  padding-left: 1rem;
}
.sub-menu > li > a:hover {
  color: #fff;
  background-color: #959595;
}

.sub-menu li:hover .nav_glist {
  display: block;
  animation: Appear 0.3s forwards;
}
@keyframes Appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_glist {
  display: none;
  position: absolute;
  transition: 0.3s;
  width: 34vw;
  right: 0;
  top: 0;
  height: 100%;
  background-color: #959595;
}
.nav_glist li {
  width: 34vw;
}
.nav_glist li a {
  color: #fff !important;
  text-decoration: none;
  padding: 1rem 0 1rem 1rem;
  display: block;
  width: 100%;
}
.nav_glist li a:hover {
  background-color: #acacac;
}

.li_has_child > a,
.active > a {
  position: relative;
}

.active > a {
  color: #0c539c !important;
}

.li_has_child > a:hover:before,
.active > a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #757575;
}

.sub_nav_list {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.sub_nav_list > li > a {
  color: #000;
  padding: 20px 0 10px;
  display: inline-grid;
  width: 100%;
  height: inherit;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
}
.sub_nav_list > li > a:hover {
  color: #0c539c;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 0;
}

.main {
  order: 1;
  width: 700px;
}

.side {
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #eee;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

.side_nav_list li a {
  background: url(../images/icon_arrow_gray.png) no-repeat left center;
  border-bottom: 1px solid #ccc;
  color: #111;
  display: block;
  padding: 12px 10px;
  text-decoration: none;
}
.side_nav_list li a:hover, .side_nav_list li a.current {
  text-decoration: underline;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.ft_nav_list li {
  width: calc(25% - 2rem);
}
.ft_nav_list li > a {
  display: block;
  width: 100%;
  color: #000;
  font-size: 1.2rem;
  text-decoration: none;
  transition: 0.5s;
}
.ft_nav_list li > a img {
  width: 100%;
  height: auto;
  padding: 0 !important;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.ft_nav_list li > a span {
  margin: 0.9rem 0;
}
.ft_nav_list li > a:hover {
  opacity: 0.6;
}

.ft_wrapper {
  margin-top: auto;
}
.ft_wrapper .ft_innr_con {
  background-color: #d2eaf9;
}
.ft_wrapper .ft_innr_con p.ft_subtitle {
  font-size: 1.2em;
  font-weight: bold;
  color: #054771;
}
.ft_wrapper .ft_innr_con p.ft_address {
  font-size: 1em;
  color: #054771;
}
.ft_wrapper .ft_innr_box {
  position: relative;
  padding-top: 50px 0;
  display: flex;
  justify-content: start;
  align-items: center;
}
.ft_wrapper .ft_innr_box figure {
  width: auto;
}
.ft_wrapper .ft_innr_box figure img {
  width: 55px;
  height: auto;
}
.ft_wrapper .ft_innr_box p.ft_title {
  font-size: 1.8em;
  font-weight: bold;
  margin-left: 0;
  color: #054771;
  margin-bottom: 10px;
}
.ft_wrapper .ft_bg_cp {
  background: #0c539c;
  color: #fff;
}
.ft_wrapper .ft {
  padding: 30px 0;
}
.ft_wrapper .ft_copy {
  font-size: 10px;
  text-align: center;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
}
.pt_btn::before, .pt_btn::after {
  background-color: #fff;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  width: 100%;
}

.index_content {
  padding: 50px 0;
}

.index_slider_bg {
  position: relative;
  margin-top: 120px;
}
.index_slider_bg .index_title {
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.index_slider_bg .index_title h1 {
  font-size: max(40px, 3vw);
  text-align: left;
  width: 100%;
  color: #003366;
  text-shadow: 0 0 4px #ffffff;
}
.index_slider_bg .index_title h1 span {
  color: #fff;
  text-shadow: 0 0 4px #000;
  font-size: 1.35em;
  line-height: 1.4;
}

/*-- object-fit ver IE11 サーバーアップで動作確認済み -- */
.index_slider img {
  width: 100%;
  height: 70vh !important;
  max-height: 650px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
}

.index_middle_slider img {
  width: 100%;
  height: 20vh !important;
  max-height: 200px !important;
  -o-object-fit: cover !important;
  object-fit: cover;
}

.index_h1 {
  text-align: center;
  font-size: 4em;
  color: #0c539c;
}

.row_rev {
  flex-direction: row-reverse;
}

.row_rev > .index_text a {
  text-align: right;
}

.a_i_center {
  align-items: center;
}

.ab_v_center {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.index_btn {
  display: block;
  margin: auto;
  position: relative;
  color: #0c539c;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  padding: 20px 0;
  width: 300px;
  background: #fff;
  border: solid 1px #0c539c;
  cursor: pointer;
}
.index_btn:before {
  content: "→";
  font-size: 2em;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.index_btn:hover:before {
  right: 10px;
}

div[class*=bgimg] {
  background-size: cover;
  background-position: center;
}

.index_con1 {
  color: #fff;
  text-align: center;
}
.index_con1 > h3 {
  font-weight: bold;
  font-size: 1.5em;
}
.index_con1 > h2 {
  font-weight: bold;
  font-size: 2em;
  margin: 20px auto;
  font-size: min(40px, 2.5vw);
}

.index_con2 {
  position: relative;
}
.index_con2 > span {
  position: absolute;
  right: 0;
  font-weight: bold;
  font-size: max(7vw, 80px);
  color: #50a6df;
  top: 80px;
  z-index: -1;
}
.index_con2 p {
  text-align: justify;
}

.index_text h1 {
  position: relative;
  color: #0c539c;
  display: inline-block;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.index_text h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0c539c;
  bottom: -10px;
}
.index_text h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-top: 1em;
  margin-bottom: 1em;
}
.index_text h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-top: 1em;
  margin-bottom: 1em;
}
.index_text h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 1em;
}
.index_text h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.index_text h6 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.index_text p {
  line-height: 2.5rem;
  margin: 1em 0;
}
.index_text figure img {
  width: 100%;
  height: auto;
}
.index_text .ta_j {
  text-align: justify;
}

.index_con3_bg {
  background-color: #50a6df;
}

.index_con3 {
  position: relative;
  padding: 15em 0 7em;
}
.index_con3 .con3_fig {
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px;
}

.news_scrl {
  height: 300px;
  overflow: auto;
}
.news_scrl_item {
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px dotted #999;
  display: flex;
  flex-wrap: wrap;
}
.news_scrl_item:first-child {
  padding-top: 0;
}
.news_scrl_item_date {
  width: 150px;
  padding-left: 20px;
  font-size: 1.2rem;
}
.news_scrl_item_ttl {
  width: calc(100% - 150px);
  padding-right: 20px;
  font-size: 1.2rem;
}
.news_scrl_item_ttl .icon_new {
  display: inline-block;
  color: #c00;
  font-size: 0.9em;
  font-weight: bold;
  margin-left: 0.3em;
}
.news_scrl_item_ttl .icon_new:before {
  content: "NEW";
}

.index_con4 h1,
.index_con5 h1,
.index_con6 h1,
.index_con7 h1,
.ft_nav h1 {
  margin-bottom: 1em;
  font-size: 3em;
  color: #50a6df;
}

.index_graph {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  grid-template-rows: auto;
  gap: 1em 2em;
}
.index_graph_container {
  background: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
}
.index_graph_container.left {
  grid-row: 1/3;
}
.index_graph_inner {
  display: grid;
  grid-template-rows: auto 1fr;
}
.index_graph p,
.index_graph li {
  font-size: 1.5rem;
}
.index_graph ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5em;
}

.index_con5_bgimg {
  position: relative;
}

table th,
table td {
  font-size: 1.2rem;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_main,
.single_main,
.archive_main {
  height: 200px;
  margin-top: 120px;
  background-size: cover;
  display: flex;
  align-items: center;
  background-position: center center;
  background-size: cover;
}
.page_main h1,
.single_main h1,
.archive_main h1 {
  font-weight: bold;
  font-size: max(4vw, 50px);
  color: rgba(255, 255, 255, 0.35);
}

.page,
.single,
#news {
  margin: 100px auto;
}
.page h1,
.single h1,
#news h1 {
  display: inline-block;
  position: relative;
  color: #0c539c;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 30px;
}
.page h1::before,
.single h1::before,
#news h1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0c539c;
  bottom: -10px;
}
.page h2,
.single h2,
#news h2 {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1em;
}
.page h3,
.single h3,
#news h3 {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 1em;
}
.page h4,
.single h4,
#news h4 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h5,
.single h5,
#news h5 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page h6,
.single h6,
#news h6 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.page p,
.single p,
#news p {
  line-height: 2.5rem;
  margin: 1em 0;
}
.page figure img,
.single figure img,
#news figure img {
  width: 100%;
  height: auto;
}
.page [id],
.single [id],
#news [id] {
  scroll-margin-top: 140px; /* ヘッダー高さ */
}
.page .ta_j,
.single .ta_j,
#news .ta_j {
  text-align: justify;
}
.page .staff-h3,
.single .staff-h3,
#news .staff-h3 {
  margin-bottom: 0;
}
.page .staff-domain,
.single .staff-domain,
#news .staff-domain {
  margin: 0;
}
.page .staff-table table thead tr th:nth-child(2),
.single .staff-table table thead tr th:nth-child(2),
#news .staff-table table thead tr th:nth-child(2) {
  width: 160px;
}
.page .staff-table table thead tr th:nth-child(3),
.single .staff-table table thead tr th:nth-child(3),
#news .staff-table table thead tr th:nth-child(3) {
  width: 60px;
}

.news_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news_list .news_list_item {
  width: 30%;
  margin-bottom: 2rem;
}
.news_list .news_list_item > a.news_thumb {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.news_list .news_list_item > a img {
  position: relative;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.5s;
}
.news_list .news_list_item > a img:hover {
  transform: translate(-50%, -50%) scale(1.2);
}
.news_list .news_list_item > span {
  font-size: 1.1rem;
  color: #0c539c;
  font-weight: bold;
  display: block;
  margin: 0.9em 0;
}
.news_list .news_list_item > a.news_title {
  font-size: 1.2rem;
  text-decoration: none;
  color: #000;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.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 {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=style.css.map */