/*
********************************************************************************
【目次】
■ 01. ヘッダー
■ 02. メイン
********************************************************************************
*/
.container {
  /* 1280px */
  max-width: 1300px;
  padding: 0 20px 0;
  margin: 0 auto;
}

/*
================================================================================
■ 01. ヘッダー
================================================================================
*/
#header {
  width: 100%;
  padding: 0;
  position: relative;
  /*z-index: 1;*/
  z-index: 2;
}

/* 固定時 */
#header.fixed {
  position: fixed;
  z-index: 2;
  transition: .2s;
}

#header.fixed .area-upper {
  display: none;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #header {
    position: relative;
    height: 60px;
    padding: 0;
    z-index: 3;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* -------------------------------------------------
▼ 上段
------------------------------------------------- */
#header .area-upper {
  font-size: 1.1rem;
  /*background: #ededed;*/
  background: #04362f;
}

#header .area-upper .container {
  width: 100%;
  max-width: none;
}

#header .area-upper .container .list {
  display: flex;
  justify-content: flex-end;
  font-weight: bold;
  padding: 1em 0;
}

#header .area-upper .container .list .item {
  padding-left: 1.5em;
}

#header .area-upper .container .list .item a {
  color: #fff;
}

/* -------------------------------------------------
▼ 下段
------------------------------------------------- */
#header .area-lower {
  background: #224a44;
  /* ドロップダウンの表示位置調整に必要 */
  position: relative;
}

#header .area-lower .container {
  max-width: none;
}

#header .area-lower .container .navi-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  /*
  box-shadow: 3px 2px 10px -2px rgba(0,0,0,0.1),
              -3px 2px 10px -2px rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.9);
  */
}

/* ロゴ */
#header .logo {
  max-width: 134px;
}

#header .logo .ratio-wrap {
  /* 350×79 */
  padding-bottom: 22.57142%;
}

/* レスポンシブ調整 --------------------------*/
@media print, screen and (max-width: 1000px) {
  #header .area-lower .container .navi-wrap {
    padding-left: 20px;
  }
}

@media print, screen and (max-width: 900px) {
  #header .logo {
    max-width: 110px;
  }
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  @media print, screen and (max-width: 900px) {
    #header .logo {
      max-width: 130px;
    }
  }

  #header .area-lower .container {
    padding: 0;
  }

  #header .area-lower .container .navi-wrap {
    position: relative;
    padding: 15px 20px;
    box-shadow: none;
    background: #fff;
    z-index: 2;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* -------------------------------------------------
▼ グローバルメニュー
------------------------------------------------- */
#gnavi {
  font-size: 1.3rem;
  font-weight: bold;
}

/*----------------- ▼ (PC) ▼ -----------------*/
@media print, screen and (min-width: 801px) {
  #gnavi .list {
    display: flex;
    /* ドロップダウンの表示位置調整に必要 */
    /*position: relative;*/
  }

  #gnavi .list > .item > .btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2em 1.2em;
    line-height: unset;
    color: #fff;
  }

  #gnavi .list > .item.has-dropdown > .btn .title {
    display: block;
  }

  /* 下層メニュードロップダウン */
  #gnavi .list > .item.has-dropdown .list-dropdown {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    /*border-top: 3px solid #23896d;*/
    box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.2);
  }

  #gnavi .list > .item.has-dropdown .list-dropdown::before {
    /*content: '';
    display: inline-block;
    background: #23896d;
    width: 5em;
    height: 3px;
    position: absolute;
    top: 0;
    left: 0;*/
  }

  #gnavi .list > .item.has-dropdown:hover .list-dropdown {
    visibility: visible;
    opacity: 1;
    transition: .2s;
  }

  #gnavi .list > .item.has-dropdown .list-dropdown .item .btn {
    display: block;
    min-width: 12em;
    padding: 1em;
    line-height: 1.2;
    border-bottom: 1px solid #ddd;
    background: rgba(255,255,255,0.9);
  }

  #gnavi .list > .item.has-dropdown .list-dropdown .item .btn:hover {
    color: #23896d;
    transition: .2s;
  }

  #gnavi .list > .item.has-dropdown .list-dropdown .item:last-child .btn {
    border-bottom: none;
  }

  /* 資料請求ボタン、お問い合せボタン */
  #gnavi .list > .item > .btn-large {
    flex-direction: column;
    justify-content: center;
    /*padding: 0 1.2em;*/
    padding: 0 0.5em;
    height: 100%;
  }

  #gnavi .list > .item > .btn-large .icon {
    display: none;
    /*font-size: 2.2rem;
    padding: 0 0 0.2em 0;*/
  }

  #gnavi .list > .item > .btn-large.btn-document {
    /*color: #04362f;
    background: #04362f;*/
  }

  #gnavi .list > .item > .btn-large.btn-inquiry {
    /*color: #04362f;
    background: #23896d;*/
  }

  #gnavi .list > .item > .btn-large .btn-wrap {
    /*color: #04362f;*/
    color: #1e1e1e;
    padding: 0.6em 2em;
    border-radius: 50px;
  }

  #gnavi .list > .item > .btn-large.btn-document .btn-wrap {
    background-color: #dcc37b;
  }

  #gnavi .list > .item > .btn-large.btn-inquiry .btn-wrap {
    background: #ded0a6;
  }

  #gnavi .list > .item > .btn-large .btn-wrap:hover {
    background: #fff;
  }

  /* 資料請求ボタン、お問い合せボタン：下層メニュードロップダウン */
  #gnavi .list > .item.has-dropdown.large {
    /* ドロップダウンの表示位置調整に必要 */
    /*position: relative;*/
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large {
    display: flex;
    justify-content: center;
    /*background: rgba(255,255,255,0.9);
    background: #fff;
    width: 600px;
    right: 0;*/
    background: #04362f;
    width: 100%;
    left: 0;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large::before {
    /*width: 100%;*/
    /*content: none;*/
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item {
    /*width: 50%;*/
    width: 360px;
    /*padding: 20px;*/
    padding: 30px 20px 20px;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .link {
    display: block;
    color: #fff;
    padding: 20px 20px 10px;
    border-radius: 10px;
    transition: .2s;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .link:hover {
    background: #3a5d57;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .title {
    width: 100%;
    font-size: 1.5rem;
    text-align: center;
    /*padding-bottom: 1em;
    border-bottom: 1px solid #ddd;*/
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .image {
    width: 100%;
    max-width: 200px;
    /*margin: 30px auto;*/
    margin: 10px auto;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .btn {
    width: 100%;
    /*font-size: 1.3rem;*/
    border-bottom: none;
    font-size: 2.0rem;
    border-top: 1px solid #fff;
    text-align: center;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .btn {
    background: none;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .btn:hover {
    color: unset;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .link:hover .wrap .btn {
    color: #c4e4e4;
  }

  /*
  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .btn a {
    display: block;
    padding: 1em;
    border: 1px solid #ddd;
    text-align: center;
    transition: all 0.2s;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .btn a:hover {
    color: #fff;
    border: 1px solid #0e5348;
    background: #0e5348;
  }
  */
  /* SP版メニュー */
  #gnavi-sp {
    display: none;
  }
}

@media print, screen and (max-width: 1200px) {
  #gnavi .list > .item > .btn {
    padding: 2em 0.5em;
  }

  #gnavi .list > .item > .btn-large {
    /*padding: 0 1.2em;*/
    padding: 0 0.2em;
  }
}

@media print, screen and (min-width: 801px) and (max-width: 980px){
  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item {
    width: 33%;
    padding: 30px 5px 20px;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .title {
    font-size: 1.3rem;
  }

  #gnavi .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .btn {
    font-size: 1.5rem;
    min-width: auto;
  }
}

@media print, screen and (max-width: 940px) {
  #gnavi {
    font-size: 1.2rem;
    letter-spacing: -0.03em;
  }

  #gnavi .list > .item > .btn {
    padding: 2em 0.5em;
  }

  #gnavi .list > .item > .btn-large {
    padding: 0 0.2em;
  }

  #gnavi .list > .item > .btn-large .btn-wrap {
    padding: 0.6em 1.2em;
  }
}
/*----------------- ▲ (PC) ▲ -----------------*/

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  /* PC版メニュー */
  #gnavi,
  #header .area-upper {
    display: none;
  }

  #gnavi-sp {
    display: block;
    font-size: 1.4rem;
    position: fixed;
    top: -120%;
    left: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: calc(100% - 61px);/* headerの高さ分調整(上線1px分調整) */
    background: rgba(255,255,255,0.9);
    border-top: 1px solid #ccc;
    transition: 0.4s;
  }

  /* 展開 */
  #gnavi-sp.active {
    top: 61px;/* headerの高さ分下げる(上線1px分調整) */
  }

  #gnavi-sp .container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  #gnavi-sp .list {
    width: 100%;
  }

  #gnavi-sp .list:first-child {
    margin-top: 10px;
  }

  #gnavi-sp .list .btn,
  #gnavi-sp .list .link {
    display: block;
    padding: 1em;
    border-bottom: 1px solid #ccc;
    line-height: 1.2;
  }

  #gnavi-sp .list .item .btn .icon {
    padding-right: 0.5em;
  }

  #gnavi-sp .list > .item.has-dropdown > .btn {
    position: relative;
  }

  #gnavi-sp .list > .item.has-dropdown > .btn .title {
    display: block;
    margin-right: 2em;
  }

  #gnavi-sp .list > .item.has-dropdown > .btn .arrow {
    display: block;
    width: 3em;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }

   #gnavi-sp .list > .item.has-dropdown > .btn .arrow::before {
    content: '';
    display: inline-block;
    width: 0.6em;
    height: 0.6em;
    border-bottom: 1px solid #333;
    border-right: 1px solid #333;
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 50%;
    margin-top: -0.4em;
    margin-right: -0.3em;
  }

  #gnavi-sp .list > .item.has-dropdown > .btn .arrow.active::before {
    border-bottom: unset;
    border-right: unset;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    margin-top: -0.2em;
  }

  /* 資料請求ボタン、お問い合せボタン：下層メニュードロップダウン */
  #gnavi-sp .list > .item.has-dropdown.large .list-dropdown.large .item .link {
    padding: 0;
    border-bottom: none;
  }

  #gnavi-sp .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .title {
    display: none;
  }

  #gnavi-sp .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .image {
    display: none;
  }

  /*
  #gnavi-sp .list > .item.has-dropdown.large .list-dropdown.large .item .wrap .link {
    border-bottom: none;
    padding: 0;
  }
  */

  /* 下層メニュードロップダウン（jsとセット） */
  #gnavi-sp .list > .item.has-dropdown .list-dropdown {
    display: none;
  }

  #gnavi-sp .list > .item.has-dropdown .list-dropdown .btn {
    background: #eee;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* -------------------------------------------------
▼ SPメニューボタン
------------------------------------------------- */
#btn-sp {
  display: none;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #btn-sp {
    display: block;
    width: 34px;
    height: 34px;
    cursor: pointer;
    position: absolute;
    top: 14px;
    right: 20px;
    z-index: 4;
  }

  #btn-sp .menu-trigger-bars {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  #btn-sp .menu-trigger-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 5px;
    transition: .3s;
  }

  #btn-sp .menu-trigger-bar:nth-of-type(1) {
    top: 7px;
  }

  #btn-sp .menu-trigger-bar:nth-of-type(2) {
    top: 16px;
  }

  #btn-sp .menu-trigger-bar:nth-of-type(3) {
    top: 25px;
  }

  /* 閉じる */
  #btn-sp.active .menu-trigger-bar:nth-of-type(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  #btn-sp.active .menu-trigger-bar:nth-of-type(2) {
    display: none;
  }

  #btn-sp.active .menu-trigger-bar:nth-of-type(3) {
    transform: translateY(-10px) rotate(45deg);
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/*
================================================================================
■ 02. メイン
================================================================================
*/
#main {
}

/* ぱんくずリスト */
#breadcrumbs {
  font-size: 1.1rem;
  margin-bottom: 50px;
}

#breadcrumbs .list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ddd;
  padding: 3em 0 1em 0;
}

#breadcrumbs .list .item {
  padding: 0 1em;
  border-left: 1px solid #ddd;
}

#breadcrumbs .list .item:first-child {
  border-left: none;
}

#breadcrumbs .list .item .link {
  color: #23896d;
}

/* -------------------------------------------------
▼ ２カラムレイアウト
------------------------------------------------- */
#main .layout-2column {
  display: flex;
  flex-wrap: wrap;
  /* asideの追従の場合の影響で右寄せにする */
  justify-content: flex-end;
  /* asideの追従の場合の影響で上揃えにする */
  align-items: flex-start;
}

#main .layout-2column .main-column {
  width: 76%;
  order: 2;
}

#main .layout-2column .aside-column {
  /* 追従させる場合高さはjsで高さ設定 */
  width: 19%;
  margin-right: 5%;
  order: 1;
}

/* asideが右側の場合 */
#main .layout-2column.aside-right {
  display: flex;
  flex-wrap: wrap;
  /* asideの追従の場合の影響で右寄せにする */
  justify-content: flex-start;
}

#main .layout-2column.aside-right .main-column {
  width: 60%;
  order: 1;
}

#main .layout-2column.aside-right .aside-column {
  /* 追従させる場合高さはjsで高さ設定 */
  width: 35%;
  margin-right: 0;
  margin-left: 5%;
  order: 2;
}

/* 追従させる */
#main .layout-2column .aside-column.fixed {
  position: sticky;
  position: -webkit-sticky;
  word-break: break-word;
  overflow-y: auto;
  padding: 20px 0;
  /* Edgeのスクロールバーを非表示 */
  /*-ms-overflow-style: none;*/
  /* Firefoxのスクロールバーを非表示 */
  /*scrollbar-width: none;*/
}

/* Chrome、Safariのスクロールバーを非表示 */
#main .layout-2column .aside-column.fixed::-webkit-scrollbar {
  /*display: none;*/
}

/* 左サイド */
#main .layout-2column .aside-column .aside-title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 0.8em;
  margin-bottom: 1.2em;
  border-bottom: 2px solid #23896d;
}

#main .layout-2column .aside-column .list .item {
  padding-bottom: 1em;
  position: relative;
  padding-left: 1.8em;
}

#main .layout-2column .aside-column .list .item::before {
  content: '';
  display: inline-block;
  background: #ccc;
  width: 1em;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5em;
}

#main .layout-2column .aside-column .list .item .link:hover {
  color: #23896d;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column {
    width: 100%;
    order: 1;
    margin-bottom: 30px;
  }

  #main .layout-2column .aside-column {
    width: 100%;
    order: 2;
    margin-right: 0;
    padding-bottom: 80px;
  }

  #main .layout-2column.aside-right .main-column {
    width: 100%;
    order: 2;
  }

  #main .layout-2column.aside-right .aside-column {
    width: 100%;
    order: 1;
    margin-left: 0;
    padding-bottom: 30px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 右メインエリア */
#main .layout-2column .main-column .page-title {
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.8em;
}

.layout-2column .main-column p {
  line-height: 1.8;
}

/* ページ概要テキスト */
#main .page-outline {
  margin-bottom: 2em;
}

#main .page-outline.w-bb {
  padding-bottom: 2.5em;
  border-bottom: 1px solid #eee;
}

/* ページ内リンクリスト */
#main .list-anchor {
  padding-bottom: 2.5em;
  border-bottom: 1px solid #eee;
}

#main .list-anchor .list {
  display: flex;
  width: 100%;
}

#main .list-anchor .list .item {
  display: flex;
  flex: 1;
  margin: 0 3px;
}

#main .list-anchor .list .item .anchor {
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0.7em 10px 0.5em 30px;
  border: 1px solid #3da8aa;
  line-height: 1.2;
  position: relative;
  transition: .2s;
}

#main .list-anchor .list .item .anchor .fa {
  position: absolute;
  left: 10px;
  width: 20px;
  color: #3da8aa;
}

#main .list-anchor .list .item .anchor:hover {
  color: #fff !important;
  text-decoration: none !important;
  background: #3da8aa;
}

#main .list-anchor .list .item .anchor:hover .fa {
  color: #fff;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .list-anchor .list {
    flex-wrap: wrap;
  }

  #main .list-anchor .list .item {
    width: 50%;
    flex: none;
    margin: 3px 0;
    padding: 0 3px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/


/* ▼ 2024-08-15 共通パーツエリアとして追加 ▼ */
/* ページ帯タイトル */
#main .layout-2column .main-column .page-eyecatch {
  font-size: 3.2rem;
  line-height: 1.2;
  color: #fff;
  padding: 1.6em;
  margin-bottom: 40px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 240px;
}

#main .layout-2column .main-column .page-eyecatch .title-main {
  font-weight: bold;
  margin-bottom: 0.4em;
}

#main .layout-2column .main-column .page-eyecatch .title-sub {
  font-size: 1.6rem;
  margin-bottom: 0.8em;
}

#main .layout-2column .main-column .page-eyecatch .btn-cta .cta_button {
  background-image: none !important;
  border: none !important;
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.6) !important;
  border-radius: 3px !important;
  line-height: 1.2 !important;
}

#main .layout-2column .main-column .page-eyecatch .btn-cta .cta_button span {
  font-size: 1.6rem;
  color: #333;
}

#main .layout-2column .main-column .page-eyecatch .title-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#main .layout-2column .main-column .page-eyecatch .title-bg::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
}

#main .layout-2column .main-column .page-eyecatch .title-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column .page-eyecatch {
    padding: 1em;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* ブロックタイトル */
#main .layout-2column .main-column .block-title {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.2;
  border-left: 6px solid #28896d;
  padding: 0.3em 0.5em 0.3em 0.8em;
  margin-bottom: 1.2em;
}

#main .layout-2column .main-column .block-title .num {
  color: #23896d;
}

/* ブロック説明 */
#main .layout-2column .main-column .block-description {
  margin-bottom: 2em;
}

/* コンテンツ */
#main .layout-2column .main-column .contents-wrap {
  padding: 2em 2.5em;
}

#main .layout-2column .main-column .contents-wrap .contents-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #28896d;
  margin-bottom: 0.8em;
}

#main .layout-2column .main-column .contents-wrap .contents-description-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#main .layout-2column .main-column .contents-wrap .contents-description-wrap .contents-description {
  width: 65%;
}

#main .layout-2column .main-column .contents-wrap .contents-description-wrap .image-wrap {
  width: 30%;
}

#main .layout-2column .main-column .contents-wrap .contents-description-wrap .image-wrap img,
#main .layout-2column .main-column .contents-wrap .contents-description-wrap .image-wrap video {
  width: 100%;
}

#main .layout-2column .main-column .contents-wrap.block {
  background: #eef8f5;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column .contents-wrap .contents-description-wrap {
    display: flex;
    justify-content: space-between;
  }

  #main .layout-2column .main-column .contents-wrap .contents-description-wrap .contents-description {
    width: 100%;
    margin-bottom: 10px;
  }

  #main .layout-2column .main-column .contents-wrap .contents-description-wrap .image-wrap {
    width: 100%;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* もっと見るボタン */
#main .layout-2column .main-column .list-btn {
  margin: 40px 0;
}

#main .layout-2column .main-column .list-btn .btn.more a {
  font-weight: bold;
  padding: 1em 2em;
  background: none;
}

#main .layout-2column .main-column .list-btn .btn.more a:hover {
  background: #23896d;
}

/* 導入の流れ図 */
#main .layout-2column .main-column .box-flow .attention-sp {
  display: none;
}

#main .layout-2column .main-column .box-flow .list-flow {
  display: flex;
}

#main .layout-2column .main-column .box-flow .list-flow .item {
  width: 25%;
  padding: 0 15px;
  position: relative;
}

#main .layout-2column .main-column .box-flow .list-flow .item::before {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #23896d;
  position: absolute;
  top: 50%;
  right: -6px;
  margin-top: -10px;
  z-index: 1;
}

#main .layout-2column .main-column .box-flow .list-flow .item:last-child::before {
  content: none;
}

#main .layout-2column .main-column .box-flow .list-flow .item .step {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#main .layout-2column .main-column .box-flow .list-flow .item .step-title {
  background: #23896d;
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 0.6em;
}

#main .layout-2column .main-column .box-flow .list-flow .item .step-description {
  border: 6px solid #23896d;
  background: #fff;
  text-align: center;
  padding: 1em;
  flex-grow: 1;
}

#main .layout-2column .main-column .box-flow .list-flow .item .step-description .title {
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 0.8em;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item {
  width: 20%;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item::before {
  content: none;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item .step-description {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-weight: bold;
  padding: 2em 0.3em;
  background: #faf6ec;
  position: relative;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item.skip .step-description {
  background: #fafafa;
  border: 6px solid #eee;
  color: #bbb;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item .step-description::before {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 10px 0 10px 12px;
  border-color: transparent transparent transparent #23896d;
  position: absolute;
  top: 50%;
  right: -27px;
  margin-top: -10px;
  z-index: 1;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item:last-child .step-description::before {
  content: none;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item .step-title {
  background: none;
  color: #333;
  padding: 0.1em;
}

#main .layout-2column .main-column .box-flow .list-flow.list-5items .item.skip:nth-child(2) .step-description::before,
#main .layout-2column .main-column .box-flow .list-flow.list-5items .item.skip:nth-child(3) .step-description::before {
  border-color: transparent transparent transparent #ddd;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column .box-flow .attention-sp {
    display: block;
    text-align: center;
    margin-bottom: 1em;
  }

  #main .layout-2column .main-column .box-flow .list-wrap {
    /*white-space: nowrap;*/
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  #main .layout-2column .main-column .box-flow .list-flow {
    width: 900px;
  }

  #main .layout-2column .main-column .box-flow .list-flow .item {
    width: 225px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 導入事例のリスト */
#main .layout-2column .main-column .list-case {
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  justify-content: space-between;
}

#main .layout-2column .main-column .list-case .item {
  width: 33.333%;
  padding: 0 15px;
  margin-bottom: 20px;
}

#main .layout-2column .main-column .list-case .item:first-child {
  margin-left:auto;
}

#main .layout-2column .main-column .list-case .item:last-child {
  margin-right:auto;
}

#main .layout-2column .main-column .list-case .item-wrap:hover {
  text-decoration: none;
  color: inherit;
}

#main .layout-2column .main-column .list-case .item-title {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
}

#main .layout-2column .main-column .list-case .image-wrap {
  margin: 10px 0;
  overflow: hidden;
}

#main .layout-2column .main-column .list-case .image-wrap img {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  transition: 0.3s;
}

#main .layout-2column .main-column .list-case .item-wrap:hover .image-wrap img {
  transform: scale(1.05);
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column .list-case .item {
    width: 50%;
  }
}

@media print, screen and (max-width: 500px) {
  #main .layout-2column .main-column .list-case .item {
    width: 100%;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* テーブルコンテンツ */
#main .layout-2column .main-column .box-table .attention-sp {
  display: none;
}

#main .layout-2column .main-column .box-table .table-wrap table {
  font-size: 1.6rem;
}

#main .layout-2column .main-column .box-table .table-wrap table th,
#main .layout-2column .main-column .box-table .table-wrap table td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}

/* 作業分析（作業効率化、作業品質保証） */
#main .layout-2column .main-column .box-table .table-wrap .table .row-image td {
  text-align: center;
  vertical-align: top;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-image .image-wrap {
  margin-bottom: 0.5em;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-image .image-caption {
  font-weight: bold;
  line-height: 1.2;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-image .image-caption.color {
  color: #38a9a9;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data {
  border-bottom: 1px solid #fff;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data .title {
  width: 160px;
  background: #ddd;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data .data {
  width: calc((100% - 160px) / 3);
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data .data.color {
  background: #38a9a9;
  color: #fff;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data .data .main {
  font-weight: bold;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data .data .main .mark {
  padding-right: 0.2em;
}

#main .layout-2column .main-column .box-table .table-wrap .table .row-data .data .sub {
  font-size: 1.2rem;
  line-height: 1.2;
}

/* VI外観検査 */
#main .layout-2column .main-column .box-table .table-wrap .table-vi {
  margin: 0 auto;
}

#main .layout-2column .main-column .box-table .table-wrap .table-vi th,
#main .layout-2column .main-column .box-table .table-wrap .table-vi td {
  padding: 15px;
  text-align: left;
  border: 1px solid #aaa;
}

#main .layout-2column .main-column .box-table .table-wrap .table-vi .row-title th {
  background: #eee;
  text-align: center;
  font-weight: bold;
}

#main .layout-2column .main-column .box-table .table-wrap .table-vi .row-data .category {
  background: #e6ebf2;
  vertical-align: top;
  font-weight: bold;
  line-height: 1.5;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column .box-table .attention-sp {
    display: block;
    text-align: center;
    margin-bottom: 1em;
  }

  #main .layout-2column .main-column .box-table .table-wrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  #main .layout-2column .main-column .box-table table {
    width: 800px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 丸背景のリスト */
#main .layout-2column .main-column .list-circle {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#main .layout-2column .main-column .list-circle .item {
  width: 25%;
  min-width: 200px;
  margin: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  padding: 0.5em;
  background: #aaa;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  color: #fff;
}

#main .layout-2column .main-column .list-circle .item::before {
  display: block;
  content: '';
  padding-top: 100%;
}

/* 共通パーツ：4つ並び */
.common-parts.list-4inrow {
  display: flex;
  flex-wrap: wrap;
}

.common-parts.list-4inrow .item {
  width: 22%;
  margin: 0 4% 20px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-parts.list-4inrow .item:nth-child(4n) {
  margin-right: 0;
}

.common-parts.list-4inrow .item .image-wrap {
  margin-bottom: 20px;
}

.common-parts.list-4inrow .item .image-wrap img,
.common-parts.list-4inrow .item .image-wrap video {
  width: 100%;
}

.common-parts.list-4inrow .item .description-wrap p {
  margin-bottom: 1em;
}

.common-parts.list-4inrow .item .description-wrap .item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  .common-parts.list-4inrow .item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 共通パーツ：2つ並び 狭い */
.common-parts.list-2inrow-narrow {
  display: flex;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}

.common-parts.list-2inrow-narrow .item {
  width: 50%;
  padding: 0 20px;
  margin: 0 0 20px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.common-parts.list-2inrow-narrow .item .image-wrap {
  margin-bottom: 20px;
}

.common-parts.list-2inrow-narrow .item .image-wrap img,
.common-parts.list-2inrow-narrow .item .image-wrap video {
  width: 100%;
}

.common-parts.list-2inrow-narrow .item .description-wrap p {
  margin-bottom: 1em;
}

.common-parts.list-2inrow-narrow .item .description-wrap .item-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 1em;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  .common-parts.list-2inrow-narrow .item {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 共通パーツ：テキストリスト（グレー帯のテキスト） */
.common-parts.list-text-item {
  display: flex;
  flex-wrap: wrap;
}

.common-parts.list-text-item.center {
  justify-content: center;
}

.common-parts.list-text-item .item {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
}

.common-parts.list-text-item .item .item-title {
  display: block;
  min-width: 6em;
  padding: 1em;
  margin: 0.3em;
  background: #929292;
  color: #fff;
  text-align: center;
}

.common-parts.list-text-item .item .text-etc {
  align-self: flex-end;
}


/* 導入フロー:丸リスト */
#main .layout-2column .main-column .box-scroll .attention-sp {
  display: none;
}

#main .layout-2column .main-column .box-scroll .wrap-scroll {
  padding: 0 10px;
}

#main .layout-2column .main-column .list-circle-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

#main .layout-2column .main-column .list-circle-flow .item {
  width: 25%;
  min-width: 200px;
  padding: 20px;
  position: relative;
}

#main .layout-2column .main-column .list-circle-flow .item::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border-top: 6px solid #d1efe7;
  border-right: 6px solid #d1efe7;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: -6px;
  margin-top: -10px;
}

#main .layout-2column .main-column .list-circle-flow .item:last-child:before {
  content: none;
}

#main .layout-2column .main-column .list-circle-flow .item .circle-w {
  width: 100%;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px rgba(0,0,0,0.2);
  box-shadow: 0 0 5px 2px rgb(0,0,0,0.2);
}

#main .layout-2column .main-column .list-circle-flow .item .circle-h {
  padding-top: 100%;
  height: 0;
  position: relative;
}

#main .layout-2column .main-column .list-circle-flow .item .step {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1em;
}

#main .layout-2column .main-column .list-circle-flow .item .step .num {
  color: #bbb;
  font-size: 1.8rem;
  font-style: italic;
  padding-left: 1.2em;
  margin-bottom: 0.5em;
  position: relative;
}

#main .layout-2column .main-column .list-circle-flow .item .step .num::before {
  content: '';
  display: inline-block;
  width: 0.8em;
  height: 3px;
  background: #23896d;
  position: absolute;
  top: 0.7em;
  left: 0;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 800px) {
  #main .layout-2column .main-column .box-scroll .attention-sp {
    display: block;
    text-align: center;
    margin-bottom: 1em;
  }

  #main .layout-2column .main-column .box-scroll .wrap-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    position: relative;
  }

  #main .layout-2column .main-column .box-scroll .wrap-scroll .target-scroll {
    width: 800px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 導入フロー:既設、新規ライン */
#main .layout-2column .main-column .wrap-line-type {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

#main .layout-2column .main-column .wrap-line-type .line-type {
  width: 50%;
  padding: 0 2%;
  font-size: 1.6rem;
}

#main .layout-2column .main-column .wrap-line-type .line-type .title {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.5em;
}

#main .layout-2column .main-column .wrap-line-type .line-type .detail .list-step .item {
  border: 1px solid #292929;
  padding: 1em;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

#main .layout-2column .main-column .wrap-line-type .line-type .detail .list-step .item::before {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 12px 24px 0 24px;
  border-color: #616161 transparent transparent transparent;
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -24px;
}

#main .layout-2column .main-column .wrap-line-type .line-type .detail .list-step .item:last-child:before {
  content: none;
}

/*----------------- ▼ (SP) ▼ -----------------*/
@media print, screen and (max-width: 500px) {
  #main .layout-2column .main-column .wrap-line-type .line-type {
    width: 100%;
    margin-bottom: 30px;
  }
}
/*----------------- ▲ (SP) ▲ -----------------*/

/* 角丸ボタン（緑） */
#main .btn-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

#main .btn-cta .title {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 80%;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  padding: 0.6em 1.2em 0.6em 0.6em;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  color: #fff;
  background: #0e5348;
  transition: all 0.2s;
}

#main .btn-cta .title .sub {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3.5em;
  height: 3.5em;
  padding: 0.5em;
  margin-right: 0.5em;
  font-size: 80%;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 50%;
}

#main .btn-cta .title .main {
  flex-grow: 1;
  text-align: center;
  margin-right: 1.2em;/* レイアウト調整 */
}

#main .btn-cta .title:hover {
  transform: scale(1.05, 1.05);
  text-decoration: none;
  color: #fff;
}

/* ホバーした要素以外を暗くする（script.jsとセット） */

/*----------------- ▼ (PC) ▼ -----------------*/
@media print, screen and (min-width: 801px) {
  body.dim-target #main {
    position: relative;
  }

  #overlay-dimmed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* 黒の半透明 */
    pointer-events: none; /* 背後のクリックを通す */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
  }

  #overlay-dimmed.visible {
    opacity: 1;
  }
}


