@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** color
*****************************************************************************
---------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
html,
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-height: 100vh;
  font-size: 14px;
  overflow-x: hidden;
}

.w_base {
  margin: 0 auto;
  max-width: 1000px;
  width: 100%;
}

a {
  text-decoration: none;
}

.a-mark {
  width: auto !important;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** header
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.hd_bg {
  position: absolute;
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  padding: 10px;
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hd_bg .hd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.hd_bg .hd .hd_logo {
  width: 415px;
}
.hd_bg .hd .hd_logo a {
  color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a .hd_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.hd_bg .hd .hd_logo a .hd_item span {
  white-space: nowrap;
  font-size: 22px;
  line-height: 1.2em;
}
.hd_bg .hd .hd_logo a .hd_item img {
  max-width: 50px;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_logo a span {
  font-family: "Source Sans 3", sans-serif;
  display: block;
  font-size: 19px;
}
.hd_bg .hd .nav_bg {
  width: calc(100% - 230px - 20px);
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** global nav
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.nav_bg {
  height: 100%;
}
.nav_bg .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow: visible;
}
.nav_bg .nav .nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 10px;
  width: 100%;
}
.nav_bg .nav .nav_list .nav_icon {
  display: none;
}
.nav_bg .nav .nav_list .nav_hd_logo {
  display: none;
}
.nav_bg .nav .nav_list > li {
  position: relative;
  z-index: 1000;
}
.nav_bg .nav .nav_list > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.nav_bg .nav .nav_list > li > a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #FF0000;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.nav_bg .nav .nav_list > li > a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.nav_bg .nav .nav_list > li.current a {
  background: #fff;
  color: #003382;
}
.nav_bg .nav .nav_list > li:hover .child_wrap {
  display: block;
  -webkit-animation: nav_active 1s ease 0s 1 alternate;
  animation: nav_active 1s ease 0s 1 alternate;
}
@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.nav_bg .nav .nav_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 100;
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0px 30px 30px 30px;
  color: #404040;
  background: #fff;
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > p {
  padding: 20px 20px 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #FF0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > a:hover {
  color: #FF0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  width: 100%;
  background: #fff;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li {
  position: relative;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0px 10px 30px;
  color: #404040;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 10px;
  height: 1px;
  margin-left: 40px;
  background-color: #404040;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover {
  color: #FF0000;
}
.nav_bg .nav .nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::before {
  background-color: #FF0000;
}
.nav_bg .nav .nav_list > li:nth-of-type(3) > .child_wrap {
  left: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(4) > .child_wrap {
  left: -250%;
}
.nav_bg .nav .nav_list > li:nth-of-type(5) > .child_wrap {
  left: auto;
  right: -100%;
}
.nav_bg .nav .nav_list > li:nth-of-type(6) > .child_wrap {
  left: auto;
  right: 0;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** tel
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.tel {
  font-size: 22px;
  font-weight: bold;
}
.tel span {
  font-size: 12px;
  font-weight: normal;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** color change
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.colorchange.hd_bg {
  color: #040404;
  background-color: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-box-shadow: 0 0 10px #ccc;
          box-shadow: 0 0 10px #ccc;
}
.colorchange.hd_bg .hd .hd_logo a {
  color: #040404;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .hd .hd_logo a .hd_item img {
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.colorchange.hd_bg .nav_list > li > a {
  color: #040404;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** content
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.con_bg {
  width: 100%;
}

.con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0;
}

.main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  width: 700px;
}

.side {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  width: 230px;
}
.side h3 {
  background-color: #EEE;
  color: #111;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 6px;
  padding: 8px;
  text-align: center;
}

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

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** footer
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.ft_bg {
  width: 100%;
  margin-top: auto;
  background: #f4f5f6;
}
.ft_bg .ft_con {
  margin: 15px auto;
}
.ft_bg .ft_con .ft_box h2 {
  margin: 5px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2em;
  color: #003382;
}
.ft_bg .ft_con .ft_box .ft_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-block: 5px;
}
.ft_bg .ft_con .ft_box .ft_logo img {
  width: 35px;
  height: auto;
}
.ft_bg .ft_con .ft_box .ft_logo h2 {
  font-size: 18px;
  color: #404040;
}
.ft_bg .ft_con .ft_box .ft_address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.ft_bg .ft_con .ft_box .ft_address p:last-of-type {
  margin-left: 5px;
}
.ft_bg .ft_con .ft_box .ft_address .link_btn {
  display: block;
}
.ft_bg .ft_con .ft_box .ft_address .link_btn a {
  border-bottom: 1px solid #003382;
  padding: 0 0 5px;
  text-decoration: none;
  color: #003382;
}
.ft_bg .ft_con .ft_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a {
  opacity: 1;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img {
  margin-right: 10px;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a img:last-child {
  margin-left: 0;
}
.ft_bg .ft_con .ft_icon .ft_icon_items a:hover {
  opacity: 0.5;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.ft_bg .ft_copy {
  padding: 10px 0;
  background-color: #003382;
  font-size: 10px;
  text-align: center;
  color: #fff;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** pagetop
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #002662;
  bottom: 30px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 60px;
  right: 30px;
  position: fixed;
  width: 60px;
  z-index: 100;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}
.pt:hover {
  opacity: 0.6;
}

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

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

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** index
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.index_main {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.index_greeting_bg {
  background: #003382;
}
.index_greeting_bg .index_greeting {
  padding-block: 30px 40px;
  color: #fff;
}
.index_greeting_bg .index_greeting h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.index_greeting_bg .index_greeting .txt {
  margin-inline: auto;
  max-width: 600px;
}

.index_deviceex_bg {
  padding-block: 50px 50px;
}
.index_deviceex_bg .index_deviceex .index_deviceex_ttl {
  text-align: center;
  margin-bottom: 42px;
}
.index_deviceex_bg .index_deviceex .index_deviceex_ttl h2 {
  display: inline-block;
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(30px, 0.573rem + 31.08vw, 67px);
  text-align: center;
  background: #003382;
  color: #fff;
  padding: 0.52em 0.67em;
  line-height: 1.3;
}
.index_deviceex_bg .index_deviceex .index_deviceex_ttl span {
  display: block;
  font-size: 0.33em;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.index_deviceex_bg .index_deviceex h3 {
  font-size: 1.5rem;
  position: relative;
  margin-block: 3em 2em;
}
.index_deviceex_bg .index_deviceex h3:before {
  content: "";
  width: 100px;
  height: 1px;
  background: #003382;
  position: absolute;
  top: -10px;
  left: 0;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  counter-reset: number 0;
  gap: 22px;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item {
  width: calc(25% - 17px);
  margin-bottom: 17px;
  border: 1px solid #AFAFAF;
  display: none;
  background: #fff;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item.display {
  display: block;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .head {
  padding: 15px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .head .number {
  position: relative;
  display: inline-block;
  background: #404040;
  color: #fff;
  font-size: 17px;
  width: 33px;
  height: 33px;
  margin-right: 5px;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .head .number:after {
  content: counter(number) " ";
  counter-increment: number 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 17px;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .head .name {
  font-size: 12px;
  line-height: 1.3;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .head .name span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #003382;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .eyecatch {
  background: #c1c1c1;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .eyecatch img {
  width: 100%;
  height: 132px;
  -o-object-fit: contain;
     object-fit: contain;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .txt {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
}
.index_deviceex_bg .index_deviceex .index_deviceex_list .index_deviceex_item .txt p {
  font-size: 12px;
  line-height: 1.3;
}
.index_deviceex_bg .index_deviceex .index_deviceex_more {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #AFAFAF;
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
}
.index_deviceex_bg .index_deviceex .index_deviceex_more:after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 22px;
  background: url(../images/arrow_down.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index_deviceex_bg .index_deviceex .index_deviceex_more:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.index_news_bg .index_news_box {
  color: #fff;
  background-color: #003382;
}
.index_news_bg .index_news_box a {
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  margin-right: 0;
}
.index_news_bg .index_news_box a:hover {
  color: #404040;
  margin-right: -15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.index_news_bg.archive .index_news_scrl {
  max-height: 500px;
  overflow: auto;
}
.index_news_bg .index_news_scrl a {
  display: none;
}

.index_news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  padding: 30px 0;
}
.index_news .index_news_box {
  width: 50%;
  margin: 30px;
  padding: 30px;
}
.index_news .index_news_box h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 60px;
  line-height: 1.5em;
  text-align: left;
}
.index_news .index_news_box h2 span {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
}
.index_news .index_news_box p {
  color: #404040;
}
.index_news .index_news_box a {
  display: block;
  font-size: 15px;
  text-align: right;
}
.index_news .index_news_scrl {
  width: 50%;
  margin: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.index_news .index_news_scrl .index_news_item {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 20px 0;
  padding-left: 10px;
  border-left: solid 1px #000;
}
.index_news .index_news_scrl .index_news_item .index_news_item_date span {
  padding: 2px 5px;
  color: #fff;
  background-color: #87DCE2;
}

.index_slider_bg {
  width: 100%;
}
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 5vw;
  line-height: 1.3;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}
.index_slider_bg .index_slider .slider_slick {
  width: 100%;
}
.index_slider_bg .index_slider .slider_slick img {
  width: 100%;
  height: 860px;
  -o-object-fit: cover;
     object-fit: cover;
}

/*バナー*/
.minimal_bnr {
  padding-block: 50px 50px;
}
.minimal_bnr ul {
  margin: 0 !important;
  padding: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none !important;
  gap: 10px;
}
.minimal_bnr ul li {
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none !important;
  width: calc(20% - 10px);
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.minimal_bnr ul li a {
  display: block;
  width: 100%;
  color: #000;
}
.minimal_bnr ul li img {
  display: block;
  width: 100%;
}
.minimal_bnr ul li .site_btn {
  height: 100%;
  padding: 10px;
  text-align: center;
  border: 1px solid #416928;
  background: #416928;
  color: #fff;
}
.minimal_bnr ul li .site_btn::after {
  content: none;
}
.minimal_bnr ul li .site_btn:hover {
  opacity: 0.8;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** page
  ******************************************************************************
  ----------------------------------------------------------------------------*/
.page_slider_bg {
  width: 100%;
}
.page_slider_bg .page_slider {
  position: relative;
}
.page_slider_bg .page_slider .catchcopy_bg {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy {
  color: #fff;
  text-align: center;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy h1 {
  font-size: 2.4vw;
}
.page_slider_bg .page_slider .catchcopy_bg .catchcopy p {
  font-size: 2vw;
}
.page_slider_bg .page_slider .slider_slick {
  width: 100%;
  margin-bottom: 2rem;
}
.page_slider_bg .page_slider .slider_slick img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}

.page {
  margin-bottom: 60px;
}
.page a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page h2 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-top: 30px;
  color: #003382;
}
.page h3 {
  font-size: 20px;
  margin-bottom: 15px;
  margin-top: 25px;
  padding-left: 10px;
  border-left: 1px solid #000;
}
.page h4 {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 20px;
}
.page h5,
.page h6 {
  font-size: 18px;
  margin-bottom: 2px;
  margin-top: 15px;
}
.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 {
  line-height: 2em;
  margin-bottom: 1em;
}
.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 .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.page .box .box_item {
  width: 50%;
  padding: 10px;
}

/*ミニマルファブ関連動画*/
.video_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.video_list .video_item {
  width: calc(50% - 40px);
  margin-bottom: 30px !important;
}
.video_list .video_item .video_name {
  font-weight: 700;
  font-size: 1.2rem;
}

/*----------------------------------------------------------------------------
  ******************************************************************************
  ** style
  ******************************************************************************
  ----------------------------------------------------------------------------*/
@media screen and (max-width: 999px) {
  main {
    padding: 10px;
  }
  .nav_bg .nav .nav_list > li > a {
    padding: 10px;
  }
}/*# sourceMappingURL=style.css.map */