@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
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** function
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** CSS で印刷用のスタイルを設定
******************************************************************************
----------------------------------------------------------------------------*/
@media print {
  .hd_bg {
    position: relative !important;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html, body {
  overflow-x: hidden;
}

.w_base {
  width: 100%;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

p {
  font-size: 15px;
}

.pc_only {
  display: none;
}

.sp_only {
  display: block;
}

/*----------------------------------------------------------------------------
******************************************************************************
** root
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color: #3682c5;
  --color-white: #fff;
  --color-black: #111;
  --main-font: "Noto Sans JP", sans-serif;
  --sub-font-01: "Source Sans 3", sans-serif;
  --sub-font-02: "Montserrat", sans-serif;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  padding: 10px 0;
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--color-black);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.hd_logo a {
  color: var(--color-black);
  transition: all 0.5s ease;
}
.hd_logo a .hd_item {
  display: flex;
  justify-content: flex-start;
}
.hd_logo a .hd_item img {
  max-width: 50px;
  width: 100%;
  height: auto;
  margin: 0 5px 0 8px;
  transition: all 0.5s ease;
}
.hd_logo a .hd_item .logo_txt_wrap {
  display: block;
  margin-left: 3px;
}
.hd_logo a .hd_item .logo_txt_wrap .logo_txt01 {
  display: block;
  margin-bottom: 2px;
  font-size: 12px;
  line-height: 1.2em;
}
.hd_logo a .hd_item .logo_txt_wrap .logo_txt02 {
  display: block;
  font-family: var(--sub-font-01);
  font-size: 17px;
  line-height: 1;
}

.hd_lang {
  position: absolute;
  right: 0;
  top: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav PC
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav sp
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav {
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: 100;
  overflow-x: auto;
  overflow-y: auto;
  width: 100%;
  height: 100vh;
  padding: 10px;
  background: var(--main-color);
  transition: All 0.5s ease;
}
.nav .nav_icon {
  display: none;
}
.nav .sp_nav_icon {
  width: 100%;
  margin-top: 20px;
}
.nav .sp_nav_icon a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #013f77;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.nav .sp_nav_icon img {
  width: 25px;
  filter: brightness(0) invert(1);
  margin-top: 3px;
}
.nav .sp_nav_icon .nav_icon_text {
  display: inline;
  color: #fff;
  font-size: 1.4rem;
}
.nav .nav_list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.nav .nav_list .nav_hd_logo {
  margin-bottom: 10px;
}
.nav .nav_list .nav_hd_logo .hd_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.nav .nav_list .nav_hd_logo .hd_item img {
  max-width: 60px;
  width: 100%;
  height: auto;
  margin: 5px;
  transition: all 0.5s ease;
  filter: brightness(0) invert(1);
}
.nav .nav_list .nav_hd_logo .hd_item .logo_txt_wrap {
  display: block;
  margin-left: 5px;
}
.nav .nav_list .nav_hd_logo .hd_item .logo_txt_wrap .logo_txt01 {
  white-space: nowrap;
  font-size: 11px;
  line-height: 1.3em;
  color: #fff;
  margin-bottom: 3px;
  font-family: monospace;
  font-weight: bold;
}
.nav .nav_list .nav_hd_logo .hd_item .logo_txt_wrap .logo_txt02 {
  display: block;
  font-family: var(--sub-font-01);
  font-size: 15px;
  color: #fff;
  line-height: 1;
}
.nav .nav_list > li {
  position: relative;
}
.nav .nav_list > li > a {
  position: relative;
  display: block;
  padding: 1em;
  background: var(--color-white);
  color: var(--color-black);
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
.nav .nav_list > li > a:hover, .nav .nav_list > li > a.current {
  color: var(--color-white);
  background-color: rgba(0, 0, 0, 0.2);
}
.nav .nav_list > li .child_wrap_btn {
  position: absolute;
  top: 0.85em;
  right: 5px;
  z-index: 10;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.nav .nav_list > li .child_wrap_btn::before, .nav .nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 25px;
  height: 3px;
  background-color: var(--main-color);
}
.nav .nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 20px;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.65em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap {
  display: none;
}
.nav .nav_list > li .child_wrap > p {
  display: none;
}
.nav .nav_list > li .child_wrap > .sub-menu {
  background: var(--main-color);
}
.nav .nav_list > li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 0 1.25em 1.5em;
  color: var(--color-white);
  font-size: 15px;
  text-decoration: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 1.25em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: var(--main-color);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 3px;
  background-color: var(--color-white);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 15px;
  transform: rotate(0deg) translateX(-50%);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.4em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1.25em 0 1.25em 2.5em;
  color: var(--color-white);
  font-size: 15px;
  text-decoration: none;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a::before {
  content: "ー";
  margin-right: 5px;
}
.nav .nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: var(--main-color);
}

.sp_nav_open {
  top: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 5px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 3px;
  background-color: var(--main-color);
  transition: all 0.5s ease;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 30%;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 30%;
}
.sp_nav_trigger.sp_active {
  background: var(--main-color);
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  top: 50%;
  background-color: var(--color-white);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  top: 50%;
  background-color: var(--color-white);
  transform: translate(-50%, -50%) rotate(45deg);
}
.sp_nav_trigger::after {
  position: absolute;
  font-weight: 700;
  left: 0;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 15px;
  color: var(--main-color);
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tel
  ******************************************************************************
------------------------------------------------------------------------------*/
.tel {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** color change
******************************************************************************
----------------------------------------------------------------------------*/
.colorchange.hd_bg {
  color: #040404;
  background-color: rgba(255, 255, 255, 0.8);
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a {
  color: #040404;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
  filter: invert(1);
  transition: all 0.5s ease;
}

.colorchange.sp_nav_trigger span {
  background-color: #404040;
  transition: all 0.5s ease;
}
.colorchange.sp_nav_trigger.sp_active span {
  background-color: var(--color-white);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  background: url(../images/con_bg.png) no-repeat;
}

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

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

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg .ft_con {
  display: flex;
  flex-wrap: wrap;
  margin: 15px auto;
}
.ft_bg .ft_con .ft_box {
  width: 100%;
}
.ft_bg .ft_con .ft_box h2 {
  margin: 15px 0px 7px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  color: var(--main-color);
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  max-width: 60px;
  width: 100%;
  height: auto;
  margin: 5px;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_box .ft_logo .logo_txt_wrap {
  display: block;
  margin-left: 5px;
}
.ft_bg .ft_con .ft_box .ft_logo .logo_txt_wrap .logo_txt01 {
  white-space: nowrap;
  font-size: clamp(10px, 8.844375963px + 0.3081664099vw, 12px);
  line-height: 1.3em;
  margin-bottom: 3px;
}
.ft_bg .ft_con .ft_box .ft_logo .logo_txt_wrap .logo_txt02 {
  display: block;
  font-family: var(--sub-font-01);
  font-size: clamp(18px, 16.844375963px + 0.3081664099vw, 20px);
  line-height: 1;
}
.ft_bg .ft_con .ft_box .ft_address {
  text-align: center;
}
.ft_bg .ft_con .ft_box .ft_address p, .ft_bg .ft_con .ft_box .ft_address address {
  width: 100%;
}
.ft_bg .ft_con .ft_box .ft_address p:last-of-type, .ft_bg .ft_con .ft_box .ft_address address:last-of-type {
  margin-left: 5px;
}
.ft_bg .ft_con .ft_icon {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a {
  opacity: 1;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img {
  margin: 5px 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  transition: all 0.5s ease;
}
.ft_bg .ft_copy {
  padding: 10px 15px;
  background-color: var(--main-color);
}
.ft_bg .ft_copy .ft_copy_txt {
  font-size: 10px;
  text-align: center;
  color: var(--color-white);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** 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;
  opacity: 0;
  transition: all 0.3s ease;
}
.pt:hover {
  opacity: 0.6;
}

.pt_btn {
  cursor: pointer;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  transform: rotate(45deg);
  position: relative;
  opacity: 0;
  transition: all 0.3s ease;
}
.pt_btn::before, .pt_btn::after {
  background-color: var(--color-white);
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt_btn::after {
  height: 7px;
  right: 0;
}

.advent.pt {
  opacity: 1;
  transition: all 0.3s ease;
}
.advent.pt .pt_btn {
  opacity: 1;
  transition: all 0.3s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  order: 1;
  width: 700px;
}

.index_news,
.index_about,
.index_features,
.index_activity,
.index_future {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 30px 0;
}
.index_news .index_about_box,
.index_news .index_features_box,
.index_news .index_activity_box,
.index_news .index_future_box,
.index_about .index_about_box,
.index_about .index_features_box,
.index_about .index_activity_box,
.index_about .index_future_box,
.index_features .index_about_box,
.index_features .index_features_box,
.index_features .index_activity_box,
.index_features .index_future_box,
.index_activity .index_about_box,
.index_activity .index_features_box,
.index_activity .index_activity_box,
.index_activity .index_future_box,
.index_future .index_about_box,
.index_future .index_features_box,
.index_future .index_activity_box,
.index_future .index_future_box {
  width: 100%;
  margin: 30px;
  padding: 15px;
}
.index_news .index_about_box h2,
.index_news .index_features_box h2,
.index_news .index_activity_box h2,
.index_news .index_future_box h2,
.index_about .index_about_box h2,
.index_about .index_features_box h2,
.index_about .index_activity_box h2,
.index_about .index_future_box h2,
.index_features .index_about_box h2,
.index_features .index_features_box h2,
.index_features .index_activity_box h2,
.index_features .index_future_box h2,
.index_activity .index_about_box h2,
.index_activity .index_features_box h2,
.index_activity .index_activity_box h2,
.index_activity .index_future_box h2,
.index_future .index_about_box h2,
.index_future .index_features_box h2,
.index_future .index_activity_box h2,
.index_future .index_future_box h2 {
  font-family: var(--sub-font-01);
  font-size: clamp(34px, 18.9768875193px + 4.0061633282vw, 60px);
  line-height: 1.2em;
  text-align: left;
  text-shadow: 2px 2px 3px #acbabd;
}
.index_news .index_about_box h2 span,
.index_news .index_features_box h2 span,
.index_news .index_activity_box h2 span,
.index_news .index_future_box h2 span,
.index_about .index_about_box h2 span,
.index_about .index_features_box h2 span,
.index_about .index_activity_box h2 span,
.index_about .index_future_box h2 span,
.index_features .index_about_box h2 span,
.index_features .index_features_box h2 span,
.index_features .index_activity_box h2 span,
.index_features .index_future_box h2 span,
.index_activity .index_about_box h2 span,
.index_activity .index_features_box h2 span,
.index_activity .index_activity_box h2 span,
.index_activity .index_future_box h2 span,
.index_future .index_about_box h2 span,
.index_future .index_features_box h2 span,
.index_future .index_activity_box h2 span,
.index_future .index_future_box h2 span {
  display: block;
  font-family: var(--main-font);
  font-size: clamp(15px, 9.7996918336px + 1.3867488444vw, 24px);
  text-shadow: none;
}
.index_news .index_about_box a,
.index_news .index_features_box a,
.index_news .index_activity_box a,
.index_news .index_future_box a,
.index_about .index_about_box a,
.index_about .index_features_box a,
.index_about .index_activity_box a,
.index_about .index_future_box a,
.index_features .index_about_box a,
.index_features .index_features_box a,
.index_features .index_activity_box a,
.index_features .index_future_box a,
.index_activity .index_about_box a,
.index_activity .index_features_box a,
.index_activity .index_activity_box a,
.index_activity .index_future_box a,
.index_future .index_about_box a,
.index_future .index_features_box a,
.index_future .index_activity_box a,
.index_future .index_future_box a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_news .index_about_box p,
.index_news .index_features_box p,
.index_news .index_activity_box p,
.index_news .index_future_box p,
.index_about .index_about_box p,
.index_about .index_features_box p,
.index_about .index_activity_box p,
.index_about .index_future_box p,
.index_features .index_about_box p,
.index_features .index_features_box p,
.index_features .index_activity_box p,
.index_features .index_future_box p,
.index_activity .index_about_box p,
.index_activity .index_features_box p,
.index_activity .index_activity_box p,
.index_activity .index_future_box p,
.index_future .index_about_box p,
.index_future .index_features_box p,
.index_future .index_activity_box p,
.index_future .index_future_box p {
  padding-bottom: 20px;
  font-size: 15px;
  color: #404040;
}
.index_news .index_about_box .contact_txt_strong,
.index_news .index_features_box .contact_txt_strong,
.index_news .index_activity_box .contact_txt_strong,
.index_news .index_future_box .contact_txt_strong,
.index_about .index_about_box .contact_txt_strong,
.index_about .index_features_box .contact_txt_strong,
.index_about .index_activity_box .contact_txt_strong,
.index_about .index_future_box .contact_txt_strong,
.index_features .index_about_box .contact_txt_strong,
.index_features .index_features_box .contact_txt_strong,
.index_features .index_activity_box .contact_txt_strong,
.index_features .index_future_box .contact_txt_strong,
.index_activity .index_about_box .contact_txt_strong,
.index_activity .index_features_box .contact_txt_strong,
.index_activity .index_activity_box .contact_txt_strong,
.index_activity .index_future_box .contact_txt_strong,
.index_future .index_about_box .contact_txt_strong,
.index_future .index_features_box .contact_txt_strong,
.index_future .index_activity_box .contact_txt_strong,
.index_future .index_future_box .contact_txt_strong {
  font-weight: bold;
}
.index_news .index_about_box .contact_txt_strong a,
.index_news .index_features_box .contact_txt_strong a,
.index_news .index_activity_box .contact_txt_strong a,
.index_news .index_future_box .contact_txt_strong a,
.index_about .index_about_box .contact_txt_strong a,
.index_about .index_features_box .contact_txt_strong a,
.index_about .index_activity_box .contact_txt_strong a,
.index_about .index_future_box .contact_txt_strong a,
.index_features .index_about_box .contact_txt_strong a,
.index_features .index_features_box .contact_txt_strong a,
.index_features .index_activity_box .contact_txt_strong a,
.index_features .index_future_box .contact_txt_strong a,
.index_activity .index_about_box .contact_txt_strong a,
.index_activity .index_features_box .contact_txt_strong a,
.index_activity .index_activity_box .contact_txt_strong a,
.index_activity .index_future_box .contact_txt_strong a,
.index_future .index_about_box .contact_txt_strong a,
.index_future .index_features_box .contact_txt_strong a,
.index_future .index_activity_box .contact_txt_strong a,
.index_future .index_future_box .contact_txt_strong a {
  background: linear-gradient(to top, transparent 10%, rgba(10, 97, 175, 0.3) 10%, rgba(10, 97, 175, 0.1) 50%, transparent 50%);
  padding: 0 5px;
}
.index_news .index_news_scrl,
.index_news .index_about_scrl,
.index_news .index_features_scrl,
.index_news .index_activity_scrl,
.index_news .index_future_scrl,
.index_about .index_news_scrl,
.index_about .index_about_scrl,
.index_about .index_features_scrl,
.index_about .index_activity_scrl,
.index_about .index_future_scrl,
.index_features .index_news_scrl,
.index_features .index_about_scrl,
.index_features .index_features_scrl,
.index_features .index_activity_scrl,
.index_features .index_future_scrl,
.index_activity .index_news_scrl,
.index_activity .index_about_scrl,
.index_activity .index_features_scrl,
.index_activity .index_activity_scrl,
.index_activity .index_future_scrl,
.index_future .index_news_scrl,
.index_future .index_about_scrl,
.index_future .index_features_scrl,
.index_future .index_activity_scrl,
.index_future .index_future_scrl {
  width: 100%;
  margin: 15px;
  display: flex;
  flex-wrap: wrap;
}
.index_news .index_news_scrl .index_news_item,
.index_news .index_about_scrl .index_news_item,
.index_news .index_features_scrl .index_news_item,
.index_news .index_activity_scrl .index_news_item,
.index_news .index_future_scrl .index_news_item,
.index_about .index_news_scrl .index_news_item,
.index_about .index_about_scrl .index_news_item,
.index_about .index_features_scrl .index_news_item,
.index_about .index_activity_scrl .index_news_item,
.index_about .index_future_scrl .index_news_item,
.index_features .index_news_scrl .index_news_item,
.index_features .index_about_scrl .index_news_item,
.index_features .index_features_scrl .index_news_item,
.index_features .index_activity_scrl .index_news_item,
.index_features .index_future_scrl .index_news_item,
.index_activity .index_news_scrl .index_news_item,
.index_activity .index_about_scrl .index_news_item,
.index_activity .index_features_scrl .index_news_item,
.index_activity .index_activity_scrl .index_news_item,
.index_activity .index_future_scrl .index_news_item,
.index_future .index_news_scrl .index_news_item,
.index_future .index_about_scrl .index_news_item,
.index_future .index_features_scrl .index_news_item,
.index_future .index_activity_scrl .index_news_item,
.index_future .index_future_scrl .index_news_item {
  display: grid;
  align-items: center;
  width: 100%;
  margin: 20px 0;
  padding-left: 10px;
  border-left: solid 1px #404040;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date,
.index_news .index_about_scrl .index_news_item .index_news_item_date,
.index_news .index_features_scrl .index_news_item .index_news_item_date,
.index_news .index_activity_scrl .index_news_item .index_news_item_date,
.index_news .index_future_scrl .index_news_item .index_news_item_date,
.index_about .index_news_scrl .index_news_item .index_news_item_date,
.index_about .index_about_scrl .index_news_item .index_news_item_date,
.index_about .index_features_scrl .index_news_item .index_news_item_date,
.index_about .index_activity_scrl .index_news_item .index_news_item_date,
.index_about .index_future_scrl .index_news_item .index_news_item_date,
.index_features .index_news_scrl .index_news_item .index_news_item_date,
.index_features .index_about_scrl .index_news_item .index_news_item_date,
.index_features .index_features_scrl .index_news_item .index_news_item_date,
.index_features .index_activity_scrl .index_news_item .index_news_item_date,
.index_features .index_future_scrl .index_news_item .index_news_item_date,
.index_activity .index_news_scrl .index_news_item .index_news_item_date,
.index_activity .index_about_scrl .index_news_item .index_news_item_date,
.index_activity .index_features_scrl .index_news_item .index_news_item_date,
.index_activity .index_activity_scrl .index_news_item .index_news_item_date,
.index_activity .index_future_scrl .index_news_item .index_news_item_date,
.index_future .index_news_scrl .index_news_item .index_news_item_date,
.index_future .index_about_scrl .index_news_item .index_news_item_date,
.index_future .index_features_scrl .index_news_item .index_news_item_date,
.index_future .index_activity_scrl .index_news_item .index_news_item_date,
.index_future .index_future_scrl .index_news_item .index_news_item_date {
  margin-bottom: 10px;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date span,
.index_news .index_about_scrl .index_news_item .index_news_item_date span,
.index_news .index_features_scrl .index_news_item .index_news_item_date span,
.index_news .index_activity_scrl .index_news_item .index_news_item_date span,
.index_news .index_future_scrl .index_news_item .index_news_item_date span,
.index_about .index_news_scrl .index_news_item .index_news_item_date span,
.index_about .index_about_scrl .index_news_item .index_news_item_date span,
.index_about .index_features_scrl .index_news_item .index_news_item_date span,
.index_about .index_activity_scrl .index_news_item .index_news_item_date span,
.index_about .index_future_scrl .index_news_item .index_news_item_date span,
.index_features .index_news_scrl .index_news_item .index_news_item_date span,
.index_features .index_about_scrl .index_news_item .index_news_item_date span,
.index_features .index_features_scrl .index_news_item .index_news_item_date span,
.index_features .index_activity_scrl .index_news_item .index_news_item_date span,
.index_features .index_future_scrl .index_news_item .index_news_item_date span,
.index_activity .index_news_scrl .index_news_item .index_news_item_date span,
.index_activity .index_about_scrl .index_news_item .index_news_item_date span,
.index_activity .index_features_scrl .index_news_item .index_news_item_date span,
.index_activity .index_activity_scrl .index_news_item .index_news_item_date span,
.index_activity .index_future_scrl .index_news_item .index_news_item_date span,
.index_future .index_news_scrl .index_news_item .index_news_item_date span,
.index_future .index_about_scrl .index_news_item .index_news_item_date span,
.index_future .index_features_scrl .index_news_item .index_news_item_date span,
.index_future .index_activity_scrl .index_news_item .index_news_item_date span,
.index_future .index_future_scrl .index_news_item .index_news_item_date span {
  margin-left: 5px;
  padding: 2px 5px;
  background-color: var(--main-color);
  color: var(--color-white);
}

.index_news_bg .index_news_box {
  width: 100%;
  text-align: center;
  color: var(--main-color);
}
.index_news_bg .index_news_box h2 {
  font-family: var(--sub-font-01);
  font-size: clamp(34px, 18.9768875193px + 4.0061633282vw, 60px);
}
.index_news_bg .index_news_box h2 br {
  display: none;
}
.index_news_bg .index_news_box h2 span {
  display: block;
  font-size: 24px;
}
.index_news_bg .index_news_box h2 .news_hosoku {
  font-family: normal;
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
}
.index_news_bg .index_news_box a {
  display: none;
}
.index_news_bg .index_news_scrl a.more {
  display: block;
  width: 100%;
  font-size: 15px;
  text-align: right;
  color: #404040;
}

.index_about_bg {
  background: url(../images/aboutus_bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.index_about_bg .index_about_box {
  color: var(--main-color);
  background-color: rgba(255, 255, 255, 0.8);
}
.index_about_bg .index_about_box a {
  color: #404040;
}

.index_features_bg {
  background: url(../images/features_bg.jpg) no-repeat;
  background-position: 75% 50%;
  background-size: cover;
}
.index_features_bg .index_features_box {
  color: var(--main-color);
  background-color: rgba(255, 255, 255, 0.8);
}
.index_features_bg .index_features_box a {
  color: #404040;
}

.index_activity_bg {
  background: url(../images/project_bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.index_activity_bg .index_activity_box {
  color: var(--main-color);
  background-color: rgba(255, 255, 255, 0.8);
}
.index_activity_bg .index_activity_box a {
  color: #404040;
}

.index_future_bg {
  background: url(../images/future_bg.jpg) no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.index_future_bg .index_future_box {
  color: var(--main-color);
  background-color: rgba(255, 255, 255, 0.8);
}
.index_future_bg .index_future_box a {
  color: #404040;
}

.index_slider_bg {
  width: 100%;
  margin-bottom: 20px;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  color: #2662a3;
  text-align: center;
  text-shadow: 1px 2px 2px #ffffff;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: var(--sub-font-02);
  font-size: clamp(18px, 9.9106317411px + 2.157164869vw, 32px);
  text-shadow: 2px 2px 0 #e5e2cc, -2px 2px 0 #ffffff, -2px -2px 0 #ffffff, 2px -2px 0 #ffffff;
  display: flex;
  flex-direction: column;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 span {
  font-size: clamp(14px, 5.9106317411px + 2.157164869vw, 28px);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-size: clamp(14px, 9.3775038521px + 1.2326656394vw, 22px);
  font-weight: 500;
  margin-top: 10px;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy .subcopy {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-size: 1rem;
  margin-top: 10px;
  text-shadow: 1px 2px 2px #ffffff;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: 40vh;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg {
  width: 100%;
  height: clamp(260px, 179.1063174114px + 21.5716486903vw, 400px);
}
.page_slider_bg .page_slider {
  position: relative;
}
.page_slider_bg .page_slider .catchcopy_bg {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  width: 96%;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  color: var(--color-white);
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  color: #0d4b8d;
  font-size: clamp(30px, 24.2218798151px + 1.5408320493vw, 40px);
  text-shadow: 2px 2px 0 #e5e2cc, -2px 2px 0 #ffffff, -2px -2px 0 #ffffff, 2px -2px 0 #ffffff;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
  font-size: clamp(16px, 7.9106317411px + 2.157164869vw, 30px);
}
.page_slider_bg .page_slider .slider_slick {
  width: 100%;
}
.page_slider_bg .page_slider .slider_slick img {
  width: 100%;
  height: clamp(260px, 179.1063174114px + 21.5716486903vw, 400px);
  -o-object-fit: cover;
     object-fit: cover;
}

.page {
  padding: 10px 15px;
}
.page a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.page h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.page h2 {
  font-size: 24px;
  margin-bottom: 14px;
  margin-top: 22px;
  color: #193e85;
  border-bottom: 2px solid rgb(185, 185, 185);
}
.page h3 {
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 18px;
  color: var(--main-color);
  border-left: 4px solid #5a94c5;
  padding: 0 0 0 15px;
}
.page h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.page h5,
.page h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.page hr {
  border: none;
  border-top: 1px dotted #000;
}
.page iframe {
  max-width: 100%;
}
.page img {
  max-width: 100%;
  height: auto;
}
.page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.page p {
  margin-bottom: 0.5em;
}
.page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.page table.activity-tb {
  border-top: 1px solid rgb(153, 153, 153);
  border-left: 1px solid rgb(153, 153, 153);
  margin: 1.4em 0;
  table-layout: fixed;
}
.page table.activity-tb th {
  border-right: 1px solid rgb(153, 153, 153);
  border-bottom: 1px solid rgb(153, 153, 153);
  background-color: rgba(153, 153, 153, 0.2);
  font-weight: bold;
  padding: 0.6em 0.5em;
  text-align: center;
  width: 25vw;
}
.page table.activity-tb td {
  border: 1px solid #bdbdbd;
  padding: 0 0 0 1rem;
  overflow-wrap: anywhere;
}
.page .about_con {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page .about_con {
    flex-wrap: wrap;
  }
}
.page .about_con .about_img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  margin: 30px auto 20px;
}
.page .about_con .about_img img {
  width: 100%;
  height: auto;
}
.page .member_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.page .member_list .member_item {
  display: flex;
  align-items: center;
  gap: 30px;
  width: calc((100% - 30px) / 2);
  padding-bottom: 30px;
  border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 768px) {
  .page .member_list .member_item {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .page .member_list .member_item {
    flex-direction: column;
    gap: 20px;
  }
}
.page .member_list .member_img {
  width: 120px;
  height: 120px;
  aspect-ratio: 1/1;
}
.page .member_list .member_img img {
  width: 100%;
  height: 100%;
  border: 1px solid #494949;
  background: #fff;
  border-radius: 999px;
  filter: drop-shadow(2px 4px 6px #000);
  -o-object-fit: cover;
     object-fit: cover;
}
.page .member_list .member_profile {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page .member_list .member_profile dl {
  display: flex;
}
.page .contact_txt_strong {
  font-weight: bold;
}
.page .contact_txt_strong a {
  background: linear-gradient(to top, transparent 10%, rgba(10, 97, 175, 0.3) 10%, rgba(10, 97, 175, 0.1) 50%, transparent 50%);
  padding: 0 5px;
}
.page .contact_txt_strong a:hover {
  color: var(--main-color);
}
.page .link-list span::before {
  content: "──";
}
.page .link-list span a {
  margin-left: 10px;
}
.page .archive_news_bg {
  margin: 0 auto;
  width: 100%;
}
.page .archive_news_bg .archive_news {
  display: block;
  padding: 30px 5%;
}
.page .archive_news_bg .archive_news .archive_news_scrl .archive_news_item {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #adadad;
  padding-bottom: 20px;
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
}
.page .archive_news_bg .archive_news .archive_news_scrl .archive_news_item .archive_news_item_date {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}
.page .archive_news_bg .archive_news .archive_news_scrl .archive_news_item .archive_news_item_date span {
  display: inline-block;
  text-align: center;
  padding: 2px 5px;
  color: #fff;
  background-color: #495989;
  border-radius: 3px;
  white-space: nowrap;
}
.page .archive_news_bg .archive_news .archive_news_scrl .archive_news_item .archive_news_item_ttl {
  padding-left: 0;
  margin-top: 10px;
}
.page .archive_news_bg .archive_news .archive_news_scrl .archive_news_item .archive_news_item_ttl a {
  text-decoration: none;
}/*# sourceMappingURL=sp.css.map */