@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
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color-01: #1eb8e1;
  --main-color-02: #f0a618;
}

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
** tablet size
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** button
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding: 15px 10px;
  background: #fff;
}
.hd_logo {
  display: flex;
  align-content: center;
  align-items: center;
  width: calc(100% - 15vw);
  max-width: 320px;
}
.hd_logo img {
  max-width: 100%;
  height: auto;
}
.hd_address {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: All 0.5s ease;
  overflow-x: clip;
}
.hd_nav.sp_nav_open {
  opacity: 1;
  visibility: visible;
  transition: All 0.5s ease;
}
.hd_nav_logo {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 15px 10px;
  background: #fff;
}
.hd_nav_logo a {
  display: flex;
  align-content: center;
  align-items: center;
  width: calc(100% - 15vw);
  max-width: 320px;
}
.hd_nav_logo a img {
  max-width: 100%;
  height: auto;
}
.hd_nav_list {
  padding: 4%;
}
.hd_nav_list > li {
  position: relative;
  border-top: 1px solid #d2d2d2;
  overflow: hidden;
}
.hd_nav_list > li > a {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--main-color-01);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_nav_list > li > a span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4% 3rem;
}
.hd_nav_list > li > a::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(70, 174, 247);
  background: linear-gradient(135deg, rgb(70, 174, 247) 0%, rgb(2, 191, 210) 100%);
  transition: all 0.5s ease;
}
.hd_nav_list > li > a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  content: "";
  width: 100%;
  height: 100%;
  background: #fff;
}
.hd_nav_list > li > a:focus, .hd_nav_list > li > a:hover {
  color: #fff;
}
.hd_nav_list > li > a:focus::before, .hd_nav_list > li > a:hover::before {
  left: 0;
}
.hd_nav_list > li.current > a {
  color: #fff;
}
.hd_nav_list > li.current > a::before {
  left: 0;
}
.hd_nav_list > li.no_link > a {
  pointer-events: none;
}
.hd_nav_list > li.contact {
  border-top: 1px solid #d2d2d2;
}
.hd_nav_list > li.contact > a span {
  gap: 10px;
  color: #fff;
  color: #fff;
}
.hd_nav_list > li.contact > a span::before {
  content: "";
  display: block;
  width: 16px;
  height: 14px;
  background: url(./../images/icon_nav_contact.png) no-repeat center center;
}
.hd_nav_list > li.contact > a::before {
  background: #f06e18;
}
.hd_nav_list > li.contact > a::after {
  background: var(--main-color-02);
}
.hd_nav_list > li.contact > a:focus span, .hd_nav_list > li.contact > a:hover span {
  color: #fff !important;
}
.hd_nav_list > li.contact > a:focus::before, .hd_nav_list > li.contact > a:hover::before {
  left: 0;
}
.hd_nav_list > li.member {
  border-top: 1px solid #d2d2d2;
}
.hd_nav_list > li.member > a span {
  gap: 15px;
  color: #fff;
  transition: all 0.5s ease;
}
.hd_nav_list > li.member > a span::before {
  content: "";
  display: block;
  width: 11px;
  height: 14px;
  background: url(./../images/icon_nav_member.png) no-repeat center center;
}
.hd_nav_list > li.member > a::before {
  background: #004288;
}
.hd_nav_list > li.member > a::after {
  background: #02bfd2;
}
.hd_nav_list > li.member > a:focus span, .hd_nav_list > li.member > a:hover span {
  color: #fff !important;
}
.hd_nav_list > li.member > a:focus::before, .hd_nav_list > li.member > a:hover::before {
  left: 0;
}
.hd_nav_list > li.english {
  border-top: 1px solid #d2d2d2;
}
.hd_nav_list > li.english > a span {
  gap: 9px;
  color: #000;
  transition: all 0.5s ease;
}
.hd_nav_list > li.english > a span::before {
  content: "";
  display: block;
  width: 17px;
  height: 17px;
  background: url(./../images/icon_nav_english.png) no-repeat center center;
  transition: all 0.5s ease;
}
.hd_nav_list > li.english > a::before {
  background: #525252;
}
.hd_nav_list > li.english > a::after {
  background: #ebebeb;
}
.hd_nav_list > li.english > a:focus span, .hd_nav_list > li.english > a:hover span {
  color: #fff !important;
}
.hd_nav_list > li.english > a:focus span::before, .hd_nav_list > li.english > a:hover span::before {
  background: url(./../images/icon_nav_english_white.png) no-repeat center center;
}
.hd_nav_list > li.english > a:focus::before, .hd_nav_list > li.english > a:hover::before {
  left: 0;
}
.hd_nav_list > li.english.current a span {
  color: #fff !important;
}
.hd_nav_list > li.english.current a span::before {
  background: url(./../images/icon_nav_english_white.png) no-repeat center center;
}
.hd_nav_list > li.english.current a::before {
  left: 0;
}
.hd_nav_list > li.sitemap {
  border-bottom: 1px solid #d2d2d2;
}
.hd_nav_list > li.sitemap > a span {
  gap: 11px;
  color: #000;
  transition: all 0.5s ease;
}
.hd_nav_list > li.sitemap > a span::before {
  content: "";
  display: block;
  width: 15px;
  height: 17px;
  background: url(./../images/icon_nav_sitemap.png) no-repeat center center;
  transition: all 0.5s ease;
}
.hd_nav_list > li.sitemap > a::before {
  background: #525252;
}
.hd_nav_list > li.sitemap > a::after {
  background: #ebebeb;
}
.hd_nav_list > li.sitemap > a:focus span, .hd_nav_list > li.sitemap > a:hover span {
  color: #fff !important;
}
.hd_nav_list > li.sitemap > a:focus span::before, .hd_nav_list > li.sitemap > a:hover span::before {
  background: url(./../images/icon_nav_sitemap_white.png) no-repeat center center;
}
.hd_nav_list > li.sitemap > a:focus::before, .hd_nav_list > li.sitemap > a:hover::before {
  left: 0;
}
.hd_nav_list > li.sitemap.current a span {
  color: #fff !important;
}
.hd_nav_list > li.sitemap.current a span::before {
  background: url(./../images/icon_nav_sitemap_white.png) no-repeat center center;
}
.hd_nav_list > li.sitemap.current a::before {
  left: 0;
}
.hd_nav_list > li .child_wrap_btn {
  position: absolute;
  top: 12px;
  right: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border: 1px solid var(--main-color-01);
}
.hd_nav_list > li .child_wrap_btn::before, .hd_nav_list > li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--main-color-01);
}
.hd_nav_list > li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.hd_nav_list > li .child_wrap_btn::after {
  top: 50%;
  left: 0.45em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.hd_nav_list > li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.hd_nav_list > li .child_wrap {
  display: none;
}
.hd_nav_list > li .child_wrap > p {
  display: none;
}
.hd_nav_list > li .child_wrap > .sub-menu {
  padding: 4%;
  background: #02bfd2;
}
.hd_nav_list > li .child_wrap > .sub-menu li {
  position: relative;
  border-top: 1px solid #d2d2d2;
}
.hd_nav_list > li .child_wrap > .sub-menu li:first-of-type {
  border: none;
}
.hd_nav_list > li .child_wrap > .sub-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25em 1.5em 1.25em 3.5em;
  background: #fff;
  color: #000;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.hd_nav_list > li .child_wrap > .sub-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  border-top: 1px solid var(--main-color-01);
  border-right: 1px solid var(--main-color-01);
  transform: rotate(45deg) translateY(-50%);
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap_btn {
  position: absolute;
  top: 0.75em;
  right: 15px;
  z-index: 10;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #216684;
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before, .hd_nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background-color: #fff;
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::before {
  top: 50%;
  left: 50%;
  transform: rotate(0deg) translateX(-50%);
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap_btn::after {
  top: 50%;
  left: 0.5em;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li {
  position: relative;
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li a {
  display: flex;
  align-items: center;
  padding: 1em 1em 1em 2em;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 11px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.hd_nav_list > li .child_wrap > .sub-menu li .child_wrap > .sub-menu li .child_wrap > .sub-menu {
  background: #ccc;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--main-color-01);
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 11px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.wrap {
  display: flex;
  flex-direction: column;
}
.wrap .con_bg {
  width: 100%;
  background: url(./../images/body_bg.jpg) no-repeat center top fixed;
  background-size: cover;
  overflow-x: hidden;
}
.wrap .con_bg#index {
  position: relative;
  background: url(./../images/index_bg_01.jpg) no-repeat center top fixed;
  background-size: cover;
  overflow: hidden;
}
.wrap .con_bg#index-2 {
  background: url(./../images/index_bg_2.jpg) no-repeat center top fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}
.wrap .con_bg#index-3 {
  background: url(./../images/index_bg_3.jpg) no-repeat center top fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}
.wrap .con_bg#index-4 {
  background: url(./../images/index_bg_4.jpg) no-repeat center top fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}
.wrap .con_bg#index-5 {
  background: url(./../images/index_bg_5.jpg) no-repeat center top fixed;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.4);
  background-blend-mode: multiply;
}
.wrap .con_bg .con {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.wrap .con_bg .con .main {
  width: 100%;
  padding: 0 4% 4%;
  overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
  background: #fff;
}
.ft_bg .ft {
  padding: 30px 0;
}
.ft_bg .ft_address {
  margin-bottom: 3rem;
  color: #525252;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.ft_bg .ft_address address {
  margin-bottom: 5px;
  font-style: normal;
  text-wrap: balance;
}
.ft_bg .ft .ft_copy {
  color: #525252;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  padding: 0;
  background: none;
  border: none;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #FFF;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 5px;
}
.pt .pt_btn::after {
  right: 0;
  height: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pager
******************************************************************************
----------------------------------------------------------------------------*/
.pager {
  margin: 40px 0 10px;
}
.pager .pager_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pager .pager_list .page-numbers {
  display: block;
  width: 3.4rem;
  margin: 0 2px;
  padding: 5px 0;
  color: var(--main-color-01) !important;
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--main-color-01);
  border-radius: 5px;
  transition: all 0.5s ease;
}
.pager .pager_list .page-numbers:not(.dots):hover, .pager .pager_list .page-numbers.current {
  background: var(--main-color-01);
  color: #FFF !important;
}
.pager .pager_list .page-numbers.dots {
  border-color: var(--main-color-01);
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_wrap {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding-top: 100vh;
}
.index_slider_wrap .index_slider {
  position: relative;
  height: 100%;
  background: #000;
}
.index_slider_wrap .index_slider div#metaslider-id-14 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.index_slider_wrap .index_slider div#metaslider-id-14 img {
  width: 100%;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main {
  margin-bottom: 20px;
  padding: 5% 2% 0;
}
@media screen and (max-width: 520px) {
  .index_main {
    padding-top: 0;
  }
}
.index_main .index_cacth {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 5.5rem;
  background: rgba(255, 255, 255, 0.79);
  background-size: contain;
  /*
  &::before {
    position: absolute;
    z-index: 1;
    content: "";
    display: block;
    width: 100%;
    max-width: 750px;
    height: 100%;
    max-height: 220px;
    background: url(./../images/cacth_bg.svg) no-repeat center left;
    background-size: contain;

    @include tab_size_1024 {
      top: 0;
      left: 0;
    }

    @include tab_size_768 {
      top: auto;
      bottom: 0;
      left: 0;
    }

    @include sp {
      top: auto;
      bottom: 0;
      left: 0;
    }
  }
  */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_cacth {
    /*padding: 7.5rem 3.5rem  3.5rem;*/
    padding: 3.5rem;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_cacth {
    padding: 3.5rem;
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_cacth {
    margin-top: 3.5rem;
    padding: 3.5rem;
  }
}
.index_main .index_cacth h2 {
  order: 2;
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
  color: var(--main-color-01);
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.3;
  text-wrap: balance;
}
.index_main .index_cacth h2 span {
  color: #e237cf;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_cacth h2 {
    max-width: -moz-max-content;
    max-width: max-content;
    /*margin-top: 26.5rem;*/
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_cacth h2 {
    max-width: -moz-max-content;
    max-width: max-content;
    /*margin-top: 32.5rem;*/
  }
}
.index_main .index_cacth_txt {
  order: 3;
  position: relative;
  z-index: 1;
}
.index_main .index_cacth_txt p {
  font-size: 2rem;
  font-size: clamp(1.4rem, 4.4vw, 2rem);
  font-weight: 500;
}
.index_main .index_important {
  position: relative;
  margin-bottom: 5.5rem;
  background: rgba(4, 191, 210, 0.8);
}
.index_main .index_important h2 {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4.7vw, 3rem);
  padding: 4rem 3rem;
  color: #fff;
  font-size: clamp(2.6rem, 8.1vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
}
.index_main .index_important h2::before {
  content: "";
  display: block;
  width: 1.1578947368em;
  height: 1.4473684211em;
  background: url(./../images/icon_important.svg) no-repeat center center;
  background-size: cover;
}
.index_main .index_important_list {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_important_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
}
.index_main .index_important_list_item {
  padding: 3rem;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.index_main .index_important_list_item:last-of-type {
  border: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_important_list_item {
    border-right: 1px solid #fff;
    border-bottom: none;
  }
}
.index_main .index_important_list_item .date {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
.index_main .index_important_list_item .date .icon_new {
  display: inline-block;
  background: #fff;
  padding: 0 0.3em;
  color: #c00;
  font-size: 0.9em;
  font-weight: 700;
  margin-left: 0.3em;
}
.index_main .index_important_list_item .date .icon_new::before {
  content: "NEW";
}
.index_main .index_important_list_item h3.ttl {
  margin-bottom: 1.5rem;
  font-size: clamp(1.8rem, 5.6vw, 2.2rem);
  font-weight: 900;
}
.index_main .index_important_list_item .caption {
  font-size: 1.4rem;
}
.index_main .index_important_list_item .caption_more {
  display: block;
  margin: 1.5rem 0 0;
}
.index_main .index_important_list_item .caption_more a {
  position: relative;
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
}
.index_main .index_important_list_item .caption_more a:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.index_main .index_important .more {
  margin: 0 auto;
  padding: 4% 0;
  width: 100%;
  max-width: 250px;
}
.index_main .index_important .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--main-color-02);
  color: #fff;
  font-size: clamp(1.4rem, 4.4vw, 1.8rem);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: all 0.3s ease;
  border: 3px solid var(--main-color-02);
  border-radius: 50vh;
}
.index_main .index_important .more a:focus, .index_main .index_important .more a:hover {
  background: #fff;
  color: var(--main-color-02);
}
.index_main .index_news {
  position: relative;
  margin-bottom: 5.5rem;
  background: rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.index_main .index_news h2 {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 4.7vw, 3rem);
  padding: 4rem 3rem;
  color: #fff;
  font-size: clamp(2.6rem, 8.1vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
}
.index_main .index_news h2::before {
  content: "";
  display: block;
  width: 1.1842105263em;
  height: 1.1578947368em;
  background: url(./../images/icon_news.svg) no-repeat center center;
  background-size: cover;
}
.index_main .index_news_list {
  position: relative;
  z-index: 1;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.index_main .index_news_list_item {
  width: 100%;
  padding: 1.5rem 3rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px dotted #9d9d9d;
}
.index_main .index_news_list_item:last-of-type {
  border: none;
}
.index_main .index_news_list_item .date {
  margin-bottom: 0.5rem;
}
.index_main .index_news_list_item .date .icon_new {
  display: inline-block;
  background: #fff;
  padding: 0 0.3em;
  color: #c00;
  font-size: 0.9em;
  font-weight: 700;
  margin-left: 0.3em;
}
.index_main .index_news_list_item .date .icon_new::before {
  content: "NEW";
}
.index_main .index_news_list_item .ttl a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
}
.index_main .index_news_list_item .ttl a::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
}
.index_main .index_news .more {
  margin: 0 auto;
  padding: 4% 0;
  width: 100%;
  max-width: 250px;
}
.index_main .index_news .more a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--main-color-02);
  color: #fff;
  font-size: clamp(1.4rem, 4.4vw, 1.8rem);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: all 0.3s ease;
  border: 3px solid var(--main-color-02);
  border-radius: 50vh;
}
.index_main .index_news .more a:focus, .index_main .index_news .more a:hover {
  background: #fff;
  color: var(--main-color-02);
}
.index_main .index_news_slider {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.index_main .index_news_slider #metaslider-id-14 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.index_main .index_news_slider #metaslider-id-14 img {
  width: 100%;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_link h2 {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  color: #414141;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.index_main .index_link h2::before {
  content: "";
  display: block;
  width: 31px;
  height: 27px;
  background: url(./../images/icon_link.svg) no-repeat center center;
  background-size: cover;
}
.index_main .index_link_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.index_main .index_link_list_item {
  border: 5px solid #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_main .index_link_list_item {
    width: calc((100% - 4.8rem) / 5);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_main .index_link_list_item {
    width: calc((100% - 2.4rem) / 3);
  }
}
@media screen and (max-width: 520px) {
  .index_main .index_link_list_item {
    width: 100%;
  }
}
.index_main .index_link_list_item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  aspect-ratio: 16/9;
  text-decoration: none;
}
.index_main .index_link_list_item a > span {
  padding: 2rem;
  color: #525252;
  font-size: 1.8rem;
  font-weight: 700;
}
.index_main .index_link_list_item a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----------------------------------------------------------------------------
******************************************************************************
** news
******************************************************************************
----------------------------------------------------------------------------*/
.news_list {
  position: relative;
  z-index: 1;
}
.news_list_item {
  display: flex;
  gap: 2rem;
  width: 100%;
  padding: 1.5rem 3rem;
  color: #000;
  border-bottom: 1px dotted #9d9d9d;
}
.news_list_item:first-of-type {
  padding-top: 0;
}
.news_list_item:last-of-type {
  border: none;
}
@media screen and (max-width: 520px) {
  .news_list_item {
    display: block;
    padding: 1.5rem 0;
  }
}
@media screen and (max-width: 520px) {
  .news_list_item .ttl {
    margin-top: 1rem;
  }
}
.news_list_item .ttl a {
  position: relative;
  display: inline-block;
  color: #000;
}
.news_list_item .ttl a:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
}
.news_list_item .ttl .caption {
  margin: 1rem 0 0;
  font-size: 1.4rem;
}
.news_list_item .ttl .caption_more {
  margin: 1.5rem 0 0;
  font-weight: 500;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
ul.sitemap {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin: 0 !important;
}
ul.sitemap > li {
  width: 100%;
  margin: 0 !important;
  font-size: 1.8rem;
  list-style-type: none !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  ul.sitemap > li {
    width: calc((100% - 6rem) / 3);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  ul.sitemap > li {
    width: calc((100% - 3rem) / 2);
  }
}
ul.sitemap > li a:hover {
  text-decoration: none;
}
ul.sitemap > li > span {
  display: block;
  margin: 0 0 20px;
  padding: 0 0 10px;
  font-weight: 700;
  border-bottom: 1px solid #333;
}
ul.sitemap > li > .sitemap_sub {
  margin: 0 !important;
}
ul.sitemap > li > .sitemap_sub li {
  font-size: 1.6rem;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon_ttl {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 35px 20px;
  background: rgb(70, 174, 247);
  background: linear-gradient(45deg, rgb(70, 174, 247) 0%, rgb(2, 191, 210) 100%);
  color: #fff;
  font-size: clamp(2.6rem, 8vw, 3.6rem);
  font-weight: 900;
}
.mcon_sec {
  padding: 6rem 4%;
  background: rgba(255, 255, 255, 0.85);
}
.mcon_sec h2 {
  margin-bottom: 4rem;
  padding: 1rem 2rem;
  background: var(--main-color-01);
  color: #fff;
  font-size: clamp(2rem, 6.3vw, 2.6rem);
  font-weight: 700;
}
.mcon_sec h3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  background: #fff;
  font-size: clamp(1.8rem, 5.6vw, 2rem);
  font-weight: 500;
  border-bottom: 3px solid var(--main-color-01);
}
.mcon_sec h4 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 0 2rem;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  font-weight: 500;
  border-left: 3px solid var(--main-color-01);
}
.mcon_sec h5, .mcon_sec h6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  font-size: 1.8rem;
}
.mcon_sec hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon_sec iframe {
  max-width: 100%;
}
.mcon_sec img {
  max-width: 100%;
  height: auto;
}
.mcon_sec ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon_sec ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon_sec p {
  margin-bottom: 1em;
}
.mcon_sec ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon_sec ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}/*# sourceMappingURL=sp.css.map */