@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
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.w_base {
  margin: 0 auto;
  max-width: 1300px;
  width: 100%;
  padding-right: 50px;
  padding-left: 50px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  width: 100%;
  position: absolute;
  bottom: 0;
  -webkit-animation: hd 1.5s ease 0s 1 alternate;
          animation: hd 1.5s ease 0s 1 alternate;
  z-index: 1;
}
.hd_bg a {
  text-decoration: none;
}
.hd_bg .hd {
  position: relative;
  width: 100%;
  max-width: 1073px;
  margin: 0 auto;
  background: #fff;
  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;
  border-radius: 6px 6px 0 0;
}
.hd_bg .hd .hd_logo {
  width: 385px;
  padding: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  text-align: center;
}
.hd_bg .hd .hd_logo a {
  color: #242424;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.hd_bg .hd .hd_logo a:hover {
  opacity: 0.7;
}
.hd_bg.active {
  position: fixed;
  top: 0;
  bottom: auto;
  background: #fff;
  -webkit-animation: none;
          animation: none;
  -webkit-box-shadow: 0 0 10px rgba(36, 36, 36, 0.2);
          box-shadow: 0 0 10px rgba(36, 36, 36, 0.2);
  z-index: 100;
}
.hd_bg.active .hd {
  border-radius: 0;
}
.hd_bg.active .nav_list > li > a {
  height: 70px;
  padding: 14px 10px;
}
.hd_bg.active .nav_list > li a[tabindex="-1"] {
  cursor: default;
}
.hd_bg.active .nav_list > li.contact a {
  border-radius: 0;
}
.hd_bg.active .nav_list > li .sub_menu_wrap {
  top: calc(100% - 4px);
  -webkit-box-shadow: 0px 15px 40px rgba(60, 186, 230, 0.1);
          box-shadow: 0px 15px 40px rgba(60, 186, 230, 0.1);
}

@-webkit-keyframes hd_bg_active {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes hd_bg_active {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes hd {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes hd {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
nav {
  width: calc(100% - 385px);
  overflow: visible;
}

.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.nav_list > li {
  width: 25%;
  z-index: 1000;
}
.nav_list > li > a {
  position: relative;
  display: block;
  height: 110px;
  padding: 35px 10px;
  text-align: center;
  font-size: 20px;
  font-family: "Baskervville", serif;
  color: #242424;
  white-space: nowrap;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  line-height: 1.2;
}
.nav_list > li > a:before {
  content: "";
  width: 1px;
  height: 24px;
  background: #D5D8DF;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav_list > li > a span {
  display: block;
  font-size: 0.6em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.nav_list > li:last-child > .child_wrap > .sub-menu .sub-menu, .nav_list > li:nth-last-child(2) > .child_wrap > .sub-menu .sub-menu, .nav_list > li:nth-last-child(3) > .child_wrap > .sub-menu .sub-menu {
  left: -100% !important;
}
.nav_list > li:hover > a, .nav_list > li.current > a {
  color: #3CBAE6;
}
.nav_list > li:hover > .sub_menu_wrap {
  display: block;
  -webkit-animation: nav_active 0.7s ease 0s 1 alternate;
          animation: nav_active 0.7s ease 0s 1 alternate;
}
.nav_list > li.contact > a {
  background: #3CBAE6;
  color: #fff;
  border-radius: 0 6px 0 0;
}
.nav_list > li.contact > a:hover {
  background: #49D0FF;
}
.nav_list > li .sub-menu li > a {
  display: block;
  text-decoration: none;
  color: #242424;
  font-size: 14px;
  line-height: 1.5;
}
.nav_list > li > .sub_menu_wrap {
  display: none;
  position: absolute;
  bottom: calc(100% - 4px);
  left: 0;
  width: 1073px;
  -webkit-box-shadow: 0px -15px 40px rgba(60, 186, 230, 0.1);
          box-shadow: 0px -15px 40px rgba(60, 186, 230, 0.1);
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con {
  padding: 45px 80px 44px;
  background: #fff;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu-ttl {
  margin-bottom: 45px;
  padding-bottom: 12px;
  font-family: "Baskervville", serif;
  font-size: 48px;
  border-bottom: 2px solid #3CBAE6;
  color: #49D0FF;
  line-height: 1;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu-ttl span {
  padding-left: 10px;
  color: #242424;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu {
  -webkit-transition: All 0.5s ease;
  transition: All 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px 25px;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li {
  position: relative;
  width: calc(20% - 20px);
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li img {
  display: block;
  margin-bottom: 15px;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid #D5D8DF;
  padding-bottom: 10px;
  padding-right: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a:after {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../images/index/right_blue.svg) no-repeat;
  position: absolute;
  right: 12px;
  top: 0.5em;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a:hover, .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > a.current {
  color: #49D0FF;
  border-color: #49D0FF;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu {
  width: 100%;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li > a {
  padding: 10px 0;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li > a:hover, .nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li > a.current {
  color: #49D0FF;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu > li > .sub-menu > li:first-child > a {
  padding-top: 20px;
}
.nav_list > li > .sub_menu_wrap > .sub_menu_con > .sub-menu:after {
  content: "";
  width: calc(50% - 40px);
  display: inline-block;
}

@-webkit-keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes nav_active {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg {
  position: relative;
  z-index: 2;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  background: #F3FAFF;
}
.ft_bg a {
  color: #242424;
  text-decoration: none;
}
.ft_bg .ft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 40px;
}
.ft_bg .ft h1 {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 700;
}
.ft_bg .ft .ft_nav {
  width: 100%;
  max-width: 650px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  /*全ての階層*/
  /*第一階層*/
}
.ft_bg .ft .ft_nav ul li {
  line-height: 1.3;
}
.ft_bg .ft .ft_nav ul li a {
  display: block;
  margin-bottom: 15px;
}
.ft_bg .ft .ft_nav > ul > li {
  font-size: 14px;
  font-weight: 500;
  /*第二階層*/
}
.ft_bg .ft .ft_nav > ul > li > ul > li {
  position: relative;
  padding-left: 1em;
}
.ft_bg .ft .ft_nav > ul > li > ul > li:before {
  content: "ー";
  display: inline-block;
  color: #242424;
  margin-right: 0.3em;
  font-size: 0.8em;
  position: absolute;
  left: 0;
  top: 0.5em;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  border-radius: 50%;
  background-color: #333;
  bottom: 45px;
  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: 1;
}
.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;
}
.pt_btn:before, .pt_btn:after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt_btn:before {
  width: 7px;
  bottom: 0;
}
.pt_btn:after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg .index_slider {
  position: relative;
}
.index_slider_bg .index_slider .catchcopy_bg {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  color: #242424;
  white-space: nowrap;
  text-align: center;
}
.index_slider_bg .index_slider .catchcopy_bg .site_ttl {
  padding: 1em 1em;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.6;
}
.index_slider_bg .index_slider .catchcopy_bg .site_ttl span {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 0.93em;
}
.index_slider_bg .index_slider .catchcopy_bg .catchcopy {
  font-family: "Noto Serif JP", serif;
  font-size: 34px;
  font-weight: 600;
  text-shadow: 0 0 10px #fff;
  line-height: 1.5;
}
.index_slider_bg .slick-slide {
  position: relative;
}
.index_slider_bg img {
  width: 100%;
  max-width: 1920px !important;
  height: 100vh !important;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.index_main {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-block: 90px 80px;
}
.index_main .index_col_02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index_main .index_main_left {
  width: 430px;
}
.index_main .index_main_right {
  width: 710px;
}
.index_main h2 {
  font-size: 48px;
  font-weight: 400;
  font-family: "Baskervville", serif;
  color: #242424;
  line-height: 1.3;
  margin-bottom: 0.84em;
  border-bottom: 2px solid #3CBAE6;
}
.index_main h2 span {
  margin-left: 1.25em;
  font-size: 0.32em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  vertical-align: middle;
}
.index_main h2::first-letter {
  color: #3CBAE6;
}

#greeting .content_ttl {
  text-align: center;
  line-height: 1.3;
  margin-bottom: 30px;
}
#greeting .content_ttl span {
  display: block;
  font-weight: 700;
  font-size: 25px;
  color: #3CBAE6;
  margin-bottom: 17px;
}
#greeting .content_ttl p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
#greeting .btn_more a {
  position: relative;
  display: inline-block;
  width: 235px;
  height: 48px;
  margin: 0 auto;
  background: #3CBAE6;
  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;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#greeting .btn_more a:after {
  content: "";
  width: 8px;
  height: 13px;
  background: url(../images/index/right_white.svg) no-repeat;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#greeting .btn_more a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

#news .news_con .tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#news .news_con .tab-area .tab {
  width: 16.6666666667%;
  border-top: 1px solid #D5D8DF;
  border-right: 1px solid #D5D8DF;
  color: #818181;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}
#news .news_con .tab-area .tab.active {
  background: #3CBAE6;
  color: #fff;
}
#news .news_con .tab-area .tab:first-child {
  border-left: 1px solid #D5D8DF;
}
#news .news_con .panel-area .panel {
  display: none;
}
#news .news_con .panel-area .panel.active {
  display: block;
}
#news .news_con .news_scrl {
  margin-bottom: 4em;
}
#news .news_con .news_scrl .news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 1em;
}
#news .news_con .news_scrl .news_item:nth-child(odd) {
  background: #F3FAFF;
}
#news .news_con .news_scrl .news_item dt {
  white-space: nowrap;
}
#news .news_con .news_scrl .news_item dt span {
  display: block;
  width: 68px;
  height: 22px;
  font-size: 0.85em;
  border: 1px solid #5F6368;
  color: #5F6368;
  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;
}
#news .news_con .news_scrl .news_item dt span.yamaguchi {
  color: #7EAB53;
  border-color: #7EAB53;
}
#news .news_con .news_scrl .news_item dt span.hiroshima {
  color: #005E3C;
  border-color: #005E3C;
}
#news .news_con .news_scrl .news_item dt span.shimane {
  color: #BB8942;
  border-color: #BB8942;
}
#news .news_con .news_scrl .news_item dt span.okayama {
  color: #007AB1;
  border-color: #007AB1;
}
#news .news_con .news_scrl .news_item dt span.tottori {
  color: #004896;
  border-color: #004896;
}
#news .news_con .news_scrl .news_item dd {
  width: calc(100% - 140px - 20px);
  font-weight: 500;
}
#news .news_con .news_scrl .news_item dd a {
  color: #242424;
}
#news.archive {
  max-width: 980px;
  margin-inline: auto;
}
#news.archive .tab-area {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
#news.archive .tab-area li {
  list-style-type: none;
  margin: 0;
}
#news.archive .panel-area .news_scrl {
  max-height: 100%;
}
#news .btn_more a {
  position: relative;
  display: inline-block;
  width: 235px;
  height: 48px;
  margin: 0 auto;
  background: #3CBAE6;
  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;
  text-decoration: none;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#news .btn_more a:after {
  content: "";
  width: 8px;
  height: 13px;
  background: url(../images/index/right_white.svg) no-repeat;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#news .btn_more a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
#news .iframe_news {
  border: 1px solid #ccc;
}

#content {
  padding-bottom: 50px;
}
#content .content_ttl {
  text-align: center;
  line-height: 1;
  margin-bottom: 30px;
}
#content .content_ttl span {
  display: block;
  font-weight: 700;
  font-size: 27px;
  color: #3CBAE6;
  margin-bottom: 17px;
}
#content .content_ttl p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
}
#content .content_figure {
  position: relative;
  margin-top: 120px;
}
#content .content_figure h3 {
  display: none;
}
#content .content_figure .content_img {
  text-align: center;
}
#content .content_figure .content_img img {
  width: 450px;
}
#content .content_figure .content_item {
  position: absolute;
}
#content .content_figure .content_item li + li {
  margin-top: 10px;
}
#content .content_figure .content_item li a {
  position: relative;
  display: inline-block;
  width: 160px;
  height: 40px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#content .content_figure .content_item li a:hover {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
#content .content_figure .content_item li a img {
  width: 100%;
}
#content .content_figure .content_item:nth-of-type(1) {
  top: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#content .content_figure .content_item:nth-of-type(2) {
  top: calc(50% + 14px);
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#content .content_figure .content_item:nth-of-type(3) {
  right: 70px;
  bottom: -20px;
}
#content .content_figure .content_item:nth-of-type(4) {
  left: 70px;
  bottom: -20px;
}
#content .content_figure .content_item:nth-of-type(5) {
  left: 0;
  top: calc(50% + 14px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#bnr {
  margin-top: 5%;
  padding-block: 0;
}
#bnr ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#bnr ul li + li {
  margin-left: 8px;
}
#bnr ul li a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
#bnr ul li a:hover {
  opacity: 0.8;
}
#bnr ul li img {
  display: block;
  border: 1px solid #ccc;
  padding: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.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_list .index_deviceex_item {
  width: calc(25% - 17px);
  margin-bottom: 17px;
  border: 1px solid #AFAFAF;
  background: #fff;
}
.index_deviceex_list .index_deviceex_item.display {
  display: block;
}
.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_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_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_list .index_deviceex_item .head .name {
  font-size: 12px;
  line-height: 1.3;
}
.index_deviceex_list .index_deviceex_item .head .name span {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: #242424;
}
.index_deviceex_list .index_deviceex_item .eyecatch {
  background: #c1c1c1;
}
.index_deviceex_list .index_deviceex_item .eyecatch img {
  width: 100%;
  height: 132px;
  -o-object-fit: contain;
     object-fit: contain;
}
.index_deviceex_list .index_deviceex_item .txt {
  padding: 15px;
  font-size: 16px;
  font-weight: 500;
}
.index_deviceex_list .index_deviceex_item .txt p {
  font-size: 12px;
  line-height: 1.3;
}

/*組機器リスト*/
.machine_tbl_wrap .machine_tbl th,
.machine_tbl_wrap .machine_tbl td {
  font-size: 11px;
  line-height: 1.5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
  padding-top: 70px;
  /* サイドバーありのレイアウト*/
  /*目次*/
}
.mcon .mcon_ttl_bg {
  background: #F3FAFF;
}
.mcon .mcon_ttl_bg .mcon_ttl {
  position: relative;
  height: 172px;
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: 0.2em;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-size: cover;
  color: #242424;
  font-size: 50px;
  font-family: "Baskervville", serif;
  font-weight: 300;
  line-height: 1.3;
  z-index: 1;
}
.mcon .mcon_ttl_bg .mcon_ttl span {
  font-size: 20px;
  font-family: "Noto Sans JP", sans-serif;
}
.mcon .mcon_txt {
  padding-top: 68px;
  padding-bottom: 150px;
}
.mcon .mcon_txt a img:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mcon .mcon_txt h1,
.mcon .mcon_txt h2 {
  font-weight: 400;
}
.mcon .mcon_txt h1:first-child,
.mcon .mcon_txt h2:first-child {
  margin-top: 0;
}
.mcon .mcon_txt h3,
.mcon .mcon_txt h4,
.mcon .mcon_txt h5,
.mcon .mcon_txt h6 {
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 400;
}
.mcon .mcon_txt h1 {
  margin-bottom: 1.8rem;
  font-size: 2.2rem;
  font-family: "Baskervville", serif;
  line-height: 1.3;
}
.mcon .mcon_txt h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: 1.7rem;
  border-bottom: 1px solid #242424;
  padding-bottom: 0.2em;
}
.mcon .mcon_txt h2:before {
  content: "";
  width: 136px;
  height: 4px;
  background: #242424;
  position: absolute;
  bottom: 0;
  left: 0;
}
.mcon .mcon_txt h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 1.2rem;
  margin-bottom: 5px;
  color: #242424;
  display: inline-block;
  border-bottom: 1px solid #242424;
}
.mcon .mcon_txt h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon .mcon_txt h5, .mcon .mcon_txt h6 {
  font-size: 1rem;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon .mcon_txt hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon .mcon_txt iframe {
  max-width: 100%;
}
.mcon .mcon_txt img {
  max-width: 100%;
  height: auto;
}
.mcon .mcon_txt ol {
  margin-top: 1rem;
  margin-bottom: 0.5em;
}
.mcon .mcon_txt ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
  text-indent: -1.4em;
}
.mcon .mcon_txt p {
  margin-bottom: 1rem;
}
.mcon .mcon_txt ul {
  margin-top: 1rem;
  margin-bottom: 0.5em;
  text-indent: -1.4em;
}
.mcon .mcon_txt ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
  text-indent: 0em;
}
.mcon .mcon_txt .sp_dn {
  display: none;
}
.mcon .mcon_txt ol.list_parentheses li {
  list-style-type: none;
  counter-increment: cnt;
  margin-left: 1.4em;
}
.mcon .mcon_txt ol.list_parentheses li::before {
  content: "(" counter(cnt) ") ";
}
.mcon .mcon_txt_col2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 4em;
}
.mcon .mcon_txt_col2 h2 {
  width: 100%;
}
.mcon .mcon_txt_col2 .mcon_txt_left {
  width: 220px;
}
.mcon .mcon_txt_col2 .mcon_txt_right {
  width: calc(100% - 220px - 4em);
}
.mcon .mcon_txt_col2 .scroll_tbl_wrap {
  overflow: scroll;
}
.mcon .mcon_txt_col2 .scroll_tbl_wrap th, .mcon .mcon_txt_col2 .scroll_tbl_wrap td {
  white-space: nowrap;
}
.mcon #auto_list {
  position: sticky;
  top: 85px;
  margin: 0 !important;
  padding-left: 0;
  list-style-type: none;
  max-height: 80vh;
  overflow: auto;
}
.mcon #auto_list a {
  display: block;
  padding: 10px;
  text-decoration: none;
  font-size: 13px;
}
.mcon #auto_list > li {
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  list-style-type: none;
  border-bottom: 1px dotted #fff;
  text-indent: 0em;
}
.mcon #auto_list > li > a {
  position: relative;
  color: #fff;
  background: #242424;
  line-height: 1.3;
  padding-right: 30px;
}
.mcon #auto_list > li > a:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../images/icon/btn-more_hover.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 13px;
  right: 10px;
}/*# sourceMappingURL=style.css.map */