@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.scssにおいて ( 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
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --main-color-01: #1eb8e1;
  --main-color-02: #f0a618;
}

body {
  min-height: 100vh;
}

.w_base {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** button
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 40%;
  max-width: 40rem;
  height: 100%;
  background: #fff;
  transition-duration: 0ms;
}
.hd::-webkit-scrollbar {
  display: none;
}
.hd_logo {
  padding: 7% 14%;
}
.hd_logo a {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}
.hd_logo a img {
  width: 100%;
  height: auto;
}
.hd_address {
  padding: 15% 14%;
  color: #525252;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}
.hd_address address {
  margin-bottom: 5px;
  font-style: normal;
  text-wrap: balance;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_nav {
  overflow: visible;
}
.hd_nav_logo {
  display: none;
}
.hd_nav_list {
  overflow: visible;
}
.hd_nav_list > li {
  border-top: 1px solid #d2d2d2;
}
.hd_nav_list > li > a {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--main-color-01);
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  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: 3.8% 14%;
}
.hd_nav_list > li > a::before {
  position: absolute;
  top: 0;
  left: -100%;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  background: #46aef7;
  background: linear-gradient(135deg, #46aef7 0%, #02bfd2 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 {
  cursor: default;
}
.hd_nav_list > li.contact {
  border-top: 1px solid #d2d2d2;
}
.hd_nav_list > li.contact > a span {
  gap: 10px;
  color: #fff;
  transition: all 0.5s ease;
}
.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 {
  display: none;
}
.hd_nav_list > li:focus .child_wrap, .hd_nav_list > li:hover .child_wrap {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.hd_nav_list > li > .child_wrap {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 100;
  display: none;
  width: -moz-max-content;
  width: max-content;
  min-width: 36rem;
  height: 200vh;
  padding: 10vh 4%;
  background: #02bfd2;
  transition: all 0.3s ease;
}
.hd_nav_list > li > .child_wrap > p {
  padding: 0 0 15px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.hd_nav_list > li > .child_wrap > .sub-menu {
  position: sticky;
  top: 2%;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  z-index: 1000;
  background: #fff;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 4%;
  background: #fff;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > a::before {
  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);
  transition: all 0.3s ease;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: var(--main-color-01);
}
.hd_nav_list > li > .child_wrap > .sub-menu > li:hover .sub-menu {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li > a {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: block;
  padding: 10px;
  text-decoration: none;
}
.hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li > a:hover, .hd_nav_list > li > .child_wrap > .sub-menu > li > .sub-menu > li > a.current {
  background: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.sp_nav_trigger {
  display: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.wrap {
  display: flex;
}
.wrap .con_bg {
  display: flex;
  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;
  width: 100%;
  min-height: 100vh;
}
.wrap .con_bg .con .main {
  width: 100%;
  max-width: calc(100% - 120px);
  margin: 0 auto;
  padding-bottom: 30px;
  overflow-x: hidden;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
  background: #fff;
}
.ft_bg .ft {
  padding: 30px 0;
}
.ft_bg .ft_address {
  display: none;
}
.ft_bg .ft_copy {
  color: #525252;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  background: none;
  border: none;
  transform: rotate(45deg);
}
.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: 7px;
  bottom: 0;
}
.pt .pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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 {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(100% - 18rem);
  margin: 0 auto;
  padding: 110px 0 30px;
}
.index_main .index_cacth {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 35rem;
  margin-bottom: 5.5rem;
  padding: 35px;
  background: rgba(255, 255, 255, 0.79);
}
.index_main .index_cacth::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  max-width: 750px;
  height: 100%;
  background: url(./../images/cacth_bg.svg) no-repeat top right;
  background-size: contain;
  opacity: 0.35;
}
.index_main .index_cacth h2 {
  order: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: calc(100% - 500px);
  margin-bottom: 2rem;
  color: var(--main-color-01);
  font-size: clamp(2.6rem, 2.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.3;
}
.index_main .index_cacth h2 span {
  color: #e237cf;
}
@media screen and (max-width: 1480px) {
  .index_main .index_cacth h2 {
    max-width: -moz-max-content;
    max-width: max-content;
    margin-top: 18.5rem;
  }
}
.index_main .index_cacth_txt {
  order: 2;
  position: relative;
  z-index: 1;
  width: 100%;
  /*max-width: calc(100% - 500px);*/
  margin-top: auto;
}
@media screen and (max-width: 1480px) {
  .index_main .index_cacth_txt {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.index_main .index_cacth_txt p {
  font-size: clamp(1.4rem, 1.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, 1.5vw, 3rem);
  width: calc(100% - 260px);
  padding: 4rem 3rem;
  color: #fff;
  font-size: clamp(2.6rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}
.index_main .index_important h2::before {
  content: "";
  display: block;
  width: 0.9166666667em;
  height: 1.1458333333em;
  background: url(./../images/icon_important.svg) no-repeat center center;
  background-size: cover;
}
.index_main .index_important_list {
  display: flex;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 1280px) {
  .index_main .index_important_list {
    display: block;
  }
}
.index_main .index_important_list_item {
  padding: 3rem;
  color: #fff;
  border-right: 1px solid #fff;
}
@media screen and (max-width: 1280px) {
  .index_main .index_important_list_item {
    border-right: none;
    border-bottom: 1px solid #fff;
  }
}
.index_main .index_important_list_item:last-of-type {
  border: 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, 1.5vw, 2.4rem);
  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;
  transform: scaleX(0);
  transform-origin: center left;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.index_main .index_important_list_item .caption_more a:hover::after {
  transform: scaleX(1);
}
.index_main .index_important .more {
  position: absolute;
  top: 3.6rem;
  right: 3rem;
  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, 1.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;
  width: calc(100% - 260px);
  gap: clamp(1.5rem, 1.5vw, 3rem);
  padding: 4rem 3rem;
  color: #fff;
  font-size: clamp(2.6rem, 2.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}
.index_main .index_news h2::before {
  content: "";
  display: block;
  width: 0.9375em;
  height: 0.9166666667em;
  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 rgba(255, 255, 255, 0.7);
}
.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;
  transform: scaleX(0);
  transform-origin: center left;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s ease;
}
.index_main .index_news_list_item .ttl a:hover::after {
  transform: scaleX(1);
}
.index_main .index_news .more {
  position: absolute;
  top: 3rem;
  right: 3rem;
  z-index: 1;
  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, 1.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%;
  background: #000;
}
.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: 100% !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 {
  width: calc((100% - 4.8rem) / 5);
  border: 5px solid #fff;
}
.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: clamp(1.2rem, 1.2vw, 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:last-of-type {
  border: none;
}
.news_list_item .ttl a {
  position: relative;
  display: inline-block;
  color: #000;
  transition: all 0.3s ease;
}
.news_list_item .ttl a:after {
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: scaleX(0);
  transform-origin: center left;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--main-color-01);
  transition: transform 0.3s ease;
}
.news_list_item .ttl a:hover {
  color: var(--main-color-01);
}
.news_list_item .ttl a:hover::after {
  transform: scaleX(1);
}
.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: calc((100% - 9rem) / 4);
  margin: 0 !important;
  font-size: 1.8rem;
  list-style-type: none !important;
}
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: 3.6rem;
  font-weight: 900;
}
.mcon_sec {
  padding: 6rem 5.5rem;
  background: rgba(255, 255, 255, 0.85);
}
.mcon_sec h2 {
  margin-top: 4rem;
  margin-bottom: 4rem;
  padding: 1rem 2rem;
  background: var(--main-color-01);
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
}
.mcon_sec h2:first-of-type {
  margin-top: 0;
}
.mcon_sec h3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
  padding: 1rem 2rem;
  background: #fff;
  font-size: 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: 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.6rem;
}
.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=style.css.map */