﻿@charset "UTF-8";
/* --------------------------------------------------------------------
	common
--------------------------------------------------------------------- */
:root {
  --pc_header_height: 100px; /*PCヘッダーの高さ*/
  --sp_header_height: 68px; /*SPヘッダーの高さ*/
  --ecbeing_color_green: #007C72; /*グリーン1*/
  --ecbeing_color_green2: #057F76; /*グリーン2（ecbeing_color）*/
  --ecbeing_color_green3: #EFF5F4; /*エメラルドグリーン1*/
  --ecbeing_color_green4: #3FB398; /*エメラルドグリーン2*/
  --ecbeing_color_green5: #F4FAF9; /*エメラルドグリーン3（ecbeing_color）*/
  --ecbeing_color_green6: #F6FBFB; /*エメラルドグリーン4*/
  --ecbeing_color_orenge: #E55719; /*オレンジ1*/
  --ecbeing_color_blue: #4565FB; /*ブルー1*/
  --mercart_color_red: #C71749; /*レッド1（mercart_color）*/
  --mercart_color_blue2: #EEF4F8; /*ブルー2（mercart_color）*/
  --ecbeing_bb_color_navyblue: #1C2B79; /*ネイビー1（ecbeing_bb_color）*/
  --ecbeing_bb_color_navyblue2: #F8FAFF; /*ネイビー2（ecbeing_bb_color）*/
  --ecworks_color_green: #19BC9F; /*エメラルドグリーン4（ecworks_color）*/
  --ecworks_color_green2: #F2FDFB; /*エメラルドグリーン5（ecworks_color）*/
  --hamburger-line-color: #000; /* 線の色 */
  --hamburger-width: 30px; /* ボタンの幅 */
  --hamburger-height: 24px; /* ボタンの高さ */
  --hamburger-line-height: 2px; /* 線の太さ */
  --hamburger-transition-duration: 0.3s; /* アニメーションの速度 */
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
.mb20{margin-bottom:20px;}
.mb30{margin-bottom:30px;}
.mb40{margin-bottom:40px;}
figure.border_img img {border:1px solid #eee;}
/* ----------リンク---------- */
a, a:link, a:visited {
  color: #000;
}
a:has(> img), a:has(> figure) {
  transition: all 0.5s;
}
a:has(> img):hover {
  opacity: .7;
}
@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* ----------画像---------- */
figure {
  margin: 0;
  padding: 0;
}
/* ----------表示制御---------- */
.pc_none {
  display: none !important;
}
.sp_none {
  display: block !important;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
@media screen and (max-width:768px) {
  .pc_none {
    display: block !important;
  }
  .sp_none {
    display: none !important;
  }
  /*SPハンバーガーメニュー操作専用*/
  .h-overflow-hidden {
    overflow: hidden;
  }
  .sp_scroll {
    overflow-y: auto;
  }
}
/* 	header
--------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--pc_header_height);
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  /*transition: all 0.5s;*/
  z-index: 10000;
}
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 10px 6.5% 12px;
  box-sizing: border-box;
}
.header_logo {
  width: 168px;
  height: 51px;
  background-image: url(/cms/smz/img/usr/common/logo_ecbeing.png);
  background-repeat: no-repeat;
  background-position: top left;
  background-size: auto 100%;
}
.header_logo a {
  display: block;
  width: 168px;
  height: 51px;
}
.header_logo:has(> a):hover {
  opacity: .7;
}

.header_right {
  display: flex;
  height: 100%;
}
.header_list {
  margin-right: 36px;
}
.header_list_top, .header_list_bottom {
  display: flex;
  justify-content: flex-end;
}
.header_list_top {
  margin: 0 0 25px auto;
  font-size: 10px;
}
.header_list_top li {
  padding-top: 3px;
  padding-bottom: 3px;
}
.header_list_tel {
  margin-right: 18px;
  padding-right: 18px;
  padding-left: 17px;
  font-size: 18px;
  font-weight: 600;
  background-image: url(/cms/smz/img/usr/common/icon_tel.png);
  background-repeat: no-repeat;
  background-position: top 10px left;
  background-size: 12px auto;
  border-right: 1px solid #fff;
}
.header_list_bottom > li {
  margin-right: 36px;
  /*white-space: nowrap;*/
}
.header_list_bottom > li:last-child {
  margin-right: 0;
}
.header_list_bottom > li span:hover, .header_list_bottom > li a:hover {
  color: var(--ecbeing_color_green);
  text-decoration: none;
}
.header_list_bottom > li > a i {
  display: none;
}
@media screen and (max-width: 950px) {
  .header_inner {
    padding: 10px 3.5% 12px;
  }
  .header_list {
    margin-right: 18px;
  }
  .header_list_bottom > li {
    font-size: 15px;
    margin-right: 18px;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: var(--sp_header_height);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .1);
  }
  .header_inner {
    display: block;
    height: 100%;
    padding: 18px 0;
    box-sizing: border-box;
  }
  .header_logo {
    width: auto;
    height: 30px;
    background-size: auto 30px;
    margin-left: 16px;
  }
  .header_logo a {
    width: 100px;
    height: 30px;
  }
  .header_right {
    display: none;
    height: calc(100vh - var(--sp_header_height));
    position: fixed;
    top: var(--sp_header_height);
    width: 100%;
    color: #000;
    flex-direction: column;
    background: #fff;
    overflow-y: auto;
    z-index:100;
  }
  .header_list {
    margin: 0 15px;
    display: flex;
    flex-direction: column-reverse;
    padding-bottom: 120px;
  }
  .header_list_top, .header_list_bottom {
    display: block;
  }
  .header_list_top {
    margin: 40px auto 0;
    font-size: 12px;
    text-align: center;
  }
  .header_list_tel {
    margin-right: 0;
    padding-right: 0;
    padding-left: 20px;
    font-size: 20px;
    background-position: top 7px left;
    background-size: 14px auto;
    border-right: none;
    margin-bottom: 12px;
  }
  .header_list_top li:not(.header_list_tel) a {
    margin: 0 3px;
  }
  .header_list_bottom > li {
    margin-right: 0;
    border-bottom: 1px solid #E7E7E7;
  }
  .header_list_bottom > li:last-child:has(> .js-header-acc-menu-active) {
    border-bottom: none;
  }
  .header_list_bottom > li > a {
    position: relative;
    display: block;
    padding: 19px 0;
  }
  .header_list_bottom > li > a i {
    display: block;
    font-size: 14px;
    color: var(--ecbeing_color_green2);
  }
  /* ハンバーガーメニュー */
  .hamburger-menu {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: var(--hamburger-width);
    height: var(--hamburger-height);
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
  }
  .hamburger-menu span {
    display: block;
    position: absolute;
    width: 100%;
    height: var(--hamburger-line-height);
    background-color: var(--hamburger-line-color);
    border-radius: 2px;
    transition: top var(--hamburger-transition-duration) ease-in-out, opacity var(--hamburger-transition-duration) ease-in-out, transform var(--hamburger-transition-duration) ease-in-out;
  }
  .hamburger-menu span:nth-child(1) {
    top: 0;
  }
  .hamburger-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamburger-menu span:nth-child(3) {
    bottom: 0;
  }
  .hamburger-menu.js-hm-active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger-menu.js-hm-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.js-hm-active span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}
/* ----------サブメニュー---------- */
.js-header-acc-menu span {
  cursor: pointer;
}
.js-header-acc-menu-active {
  color: var(--ecbeing_color_green2);
}
.header_list_sub {
  display: none;
  position: fixed;
  top: var(--pc_header_height);
  left: 0;
  width: 100%;
  max-height: calc(90% - var(--pc_header_height));
  background: #fff;
  overflow-y: scroll;
  z-index: 10000;
}
.header_list_sub_inner {
  display: none;
  width: 100%;
}
.header_list_sub_inner h2 {
  width: 100%;
  max-width: 1150px;
  margin: 40px auto 50px;
  font-size: 26px;
  font-weight: 400;
}
.header_list_sub_list {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 64px;
  z-index: 2;
}
.header_list_sub_list .header_list_sub_list_inner {
  width: calc((100% - 24px) / 2);
  margin-right: 24px;
}
.header_list_sub_list .header_list_sub_list_inner:last-of-type {
  margin-right: 0;
}
.header_list_sub_list.header_list_sub_list_3row .header_list_sub_list_inner {
  width: calc((100% - 24px) / 3);
  margin-right: 12px;
}
.header_list_sub_list .header_list_sub_list_inner > h3 {
  padding: 10px 10px 12px 10px;
  border-bottom: 2px solid #DDD;
}
.header_list_sub_list .header_list_sub_list_inner > h3 a {
  display: block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  background: url(/cms/smz/img/usr/common/arrow_circle_wg.png) no-repeat center right;
  background-size: 20px auto;
}
.header_list_sub_list .header_list_sub_list_inner > h3 a:hover {
  opacity: .7;
}
.header_list_sub_list .header_list_sub_list_inner > h3.header_list_sub_list_heading {
  border-bottom: 2px solid var(--ecbeing_color_green);
}
.header_list_sub_list .header_list_sub_list_inner > h3.header_list_sub_list_heading a {
  color: var(--ecbeing_color_green);
  background: url(/cms/smz/img/usr/common/arrow_circle_green.png) no-repeat center right;
  background-size: 20px auto;
}
@media screen and (max-width: 768px) {
  .js-header-acc-menu > span {
    position: relative;
    display: block;
    padding: 19px 0;
  }
  .js-header-acc-menu > span::before, .js-header-acc-menu > span::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 2px;
    position: absolute;
    right: 8px;
    top: 55%;
    background-color: var(--ecbeing_color_green2);
    border-radius: 2px;
    transform: translateY(-50%);
    transition: opacity 1s;
  }
  .js-header-acc-menu > span::after {
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
  }
  .js-header-acc-menu > span.js-header-acc-menu-active::before {
    opacity: 0;
  }
  .js-header-acc-menu > span.js-header-acc-menu-active::after {
    transform: translateY(-50%) rotate(180deg);
  }
  .header_list_bottom > li {
    margin-right: 0;
  }
  .js-header-acc-menu-active {
    color: #000;
  }
  .header_list_sub {
    position: static;
    max-height: 100%;
    overflow: unset;
  }
  .header_list_sub_inner h2 {
    display: none;
  }
  .header_list_sub_list {
    display: block;
    margin: 0 auto 64px;
  }
  .header_list_sub_list .header_list_sub_list_inner {
    width: 100%;
    margin-right: 0;
  }
  .header_list_sub_list.header_list_sub_list_3row .header_list_sub_list_inner {
    width: 100%;
    margin-right: 0;
  }
}
/* -----product_common----- */
[class^="header_list_sub_list_product_"] {
  margin-bottom: 20px;
}
[class^="header_list_sub_list_product_"] a:hover {
  color: #000 !important;
  opacity: .58;
}
[class^="header_list_sub_list_product_"] h4 {
  font-size: 14px;
  font-weight: 400;
}
[class^="header_list_sub_list_product_"] h4 span {
  font-size: 11px;
  vertical-align: bottom;
  margin-right: 5px;
}
[class^="header_list_sub_list_product_"] h4 span:hover {
  color: #000 !important;
}
[class^="header_list_sub_list_product_"] .header_list_sub_list_product-logo {
  position: relative;
  display: flex;
  align-items: center;
  height: 46px;
  margin: 4px 10px 4px 15px;
  padding: 6px 10px;
  background: #F6F6F6;
}
[class^="header_list_sub_list_product_"] .header_list_sub_list_product-logo img {
  width: auto;
  height: 34px;
}
[class^="header_list_sub_list_product_"] .header_list_sub_list_product-logo i {
  font-size: 13px;
}
[class^="header_list_sub_list_product_"] p {
  font-size: 12px;
  font-weight: 300;
  margin-left: 15px;
}
[class^="header_list_sub_list_product_"] .header_list_sub_list_product-logo {
  background: #F6F6F6 url(/cms/smz/img/usr/common/icon_blank.png) no-repeat center right;
}
/* ecbeing */
.header_list_sub_list_product_ecbeing h4, .header_list_sub_list_product_ecbeing .header_list_sub_list_product-logo i {
  color: var(--ecbeing_color_green2);
}
.header_list_sub_list_product_ecbeing .header_list_sub_list_product-logo {
  background: var(--ecbeing_color_green5);
}
/* mercart */
.header_list_sub_list_product_mercart h4, .header_list_sub_list_product_mercart .header_list_sub_list_product-logo i {
  color: var(--mercart_color_red);
}
.header_list_sub_list_product_mercart .header_list_sub_list_product-logo {
  background: var(--mercart_color_blue2);
}
.header_list_sub_list_product_mercart .header_list_sub_list_product-logo {
  background: var(--mercart_color_blue2) url(/cms/smz/img/usr/common/icon_blank_red.png) no-repeat center right 10px;
  background-size: 12px auto;
}
/* ecbeing_bb */
.header_list_sub_list_product_ecbeing_bb h4, .header_list_sub_list_product_ecbeing_bb .header_list_sub_list_product-logo i {
  color: var(--ecbeing_bb_color_navyblue);
}
.header_list_sub_list_product_ecbeing_bb .header_list_sub_list_product-logo {
  background: var(--ecbeing_bb_color_navyblue2);
}
.header_list_sub_list_product_ecbeing_bb .header_list_sub_list_product-logo {
  background: var(--ecbeing_bb_color_navyblue2) url(/cms/smz/img/usr/common/icon_blank_nb.png) no-repeat center right 10px;
  background-size: 12px auto;
}
/* ecworks */
.header_list_sub_list_product_ecworks h4, .header_list_sub_list_product_ecworks .header_list_sub_list_product-logo i {
  color: var(--ecworks_color_green);
}
.header_list_sub_list_product_ecworks .header_list_sub_list_product-logo {
  background: var(--ecworks_color_green2);
}
.header_list_sub_list_product_ecworks .header_list_sub_list_product-logo {
  background: var(--ecworks_color_green2) url(/cms/smz/img/usr/common/icon_blank_eg.png) no-repeat center right 10px;
  background-size: 12px auto;
}
/* other_menu */
.header_list_sub_list .header_list_sub_list_inner ul.header_list_sub_list_list {
  margin: 24px 0 0 10px;
}
.header_list_sub_list .header_list_sub_list_inner ul.header_list_sub_list_list li {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 24px;
}
.header_list_sub_list .header_list_sub_list_inner ul.header_list_sub_list_list li span {
  font-weight: bold;
}
/* -----intro_common----- */
.header_list_sub_inner_bg {
  position: relative;
}
.header_list_sub_inner_bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 76%;
  background: var(--ecbeing_color_green3);
  z-index: 1;
}
.header_list_sub_list.header_list_sub_list_2row-adjust {
  margin-bottom: 40px;
}
.header_list_sub_list.header_list_sub_list_2row-adjust .header_list_sub_list_inner:first-of-type {
  width: 584px;
  margin-right: 44px;
}
.header_list_sub_list.header_list_sub_list_2row-adjust .header_list_sub_list_inner:last-of-type {
  width: calc(100% - 584px - 44px);
}
.header_list_sub_company {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 64px;
  z-index: 2;
}
.header_list_sub_company_search {
  position: absolute;
  top: 0;
  left: 0;
  width: 219px;
  height: 36px;
}
.header_list_sub_company_search::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
.header_list_sub_company_search select {
  appearance: none;
  width: 219px;
  height: 36px;
  display: flex;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  padding-left: 15px;
  background: var(--ecbeing_color_green2);
  border: 1px solid var(--ecbeing_color_green2);
  box-sizing: border-box;
  outline: none;
  cursor: pointer;
}
[class^="header_list_sub_company_tab"] {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 30px;
}
[class^="header_list_sub_company_tab"] li {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 36px;
  margin-left: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: #fff;
  border: 1px solid #DDD;
  border-radius: 2px;
  box-sizing: border-box;
  cursor: pointer;
}
[class^="header_list_sub_company_tab"] li.js-header-company-tab-active {
  color: var(--ecbeing_color_green2);
  border: 1px solid var(--ecbeing_color_green2);
  pointer-events: none;
  cursor: default;
}
.header_list_sub_company_child:not(.js-header-company-list-active) {
  display: none;
}
.header_list_sub_company_child_inner {
  display: flex;
  align-items: flex-start;
}
.global-megamenu__case-lists {
  display: flex;
  flex-wrap: wrap;
  width: 584px;
  margin-right: 44px;
}
.global-megamenu__case-lists li {
  width: 183px;
  min-height: 194px;
  margin-right: 16px;
  margin-bottom: 16px;
  padding: 8px 15px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, .08);
  box-sizing: border-box;
}
.global-megamenu__case-lists li:nth-child(3n) {
  margin-right: 0;
}
.global-megamenu__case-image {
  width: 100%;
  margin-bottom: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #E7E7E7;
}
.global-megamenu__case-image img {
  display: block;
  height: 60px;
  margin: auto;
}
.global-megamenu__case-name {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.global-megamenu__case-interview {
  position: relative;
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 5px;
  padding-bottom: 3px;
  border-bottom: 1px solid #E7E7E7;
}
a .global-megamenu__case-interview i {
  right: 0;
  font-size: 9px;
  color: var(--ecbeing_color_green2);
}
.global-megamenu__case-interview:hover {
  border-bottom: 1px solid var(--ecbeing_color_green2);
}
.global-megamenu__case-company-link span {
  display: block;
  width: calc(100% - 11px);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 5px;
  padding-bottom: 3px;
  padding-right: 11px;
  border-bottom: 1px solid #E7E7E7;
  background: url(/cms/smz/img/usr/common/icon_blank_green.png) no-repeat center right;
  background-size: 9px auto;
}
.global-megamenu__case-company-link span:hover {
  border-bottom: 1px solid var(--ecbeing_color_green2);
}
.global-megamenu__interview {
  width: calc(100% - 584px - 44px);
  /*min-height: 420px;*/
  background: #fff;
  border: 1px solid #DDD;
}
.global-megamenu__interview-image img {
  width: 100%;
}
.global-megamenu__interview:hover .global-megamenu__interview-image {
  opacity: .7;
}
.global-megamenu__interview-detail {
  padding: 8px 16px 24px;
}
.global-megamenu__interview-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}
.global-megamenu__interview-text {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 12px;
}
.global-megamenu__interview-link-text span {
  position: relative;
  display: table;
  font-size: 12px;
  font-weight: 300;
  padding-right: 30px;
  border-bottom: 1px solid #E7E7E7;
}
a .global-megamenu__interview-link-text i {
  right: 0;
  font-size: 12px;
  color: var(--ecbeing_color_green2);
}
@media screen and (max-width: 768px) {
  .header_list_sub_inner_bg::after {
    width: calc(100% + 15px);
    height: 88%;
    margin-right: -15px;
  }
  .header_list_sub_list.header_list_sub_list_2row-adjust {
    margin-bottom: 40px;
  }
  .header_list_sub_list.header_list_sub_list_2row-adjust .header_list_sub_list_inner:first-of-type {
    width: 100%;
    margin-right: 0;
  }
  .header_list_sub_list.header_list_sub_list_2row-adjust .header_list_sub_list_inner:last-of-type {
    width: 100%;
  }
  .header_list_sub_company {
    padding-bottom: 32px;
    margin-bottom: 40px;
  }
  .header_list_sub_company_search {
    position: relative;
    width: 182px;
    height: 28px;
    margin-bottom: 14px;
    margin-left: 12px;
  }
  .header_list_sub_company_search select {
    width: 182px;
    height: 28px;
  }
  .sp_scroll:has(> [class^="header_list_sub_company_tab"]) {
    width: calc(100% + 15px);
    margin-bottom: 14px;
    margin-right: -15px;
  }
  [class^="header_list_sub_company_tab"] {
    margin: 0;
    width: max-content;
    padding-bottom: 5px;
  }
  [class^="header_list_sub_company_tab"] li {
    width: auto;
    height: 28px;
    font-size: 14px;
    white-space: nowrap;
    padding: 0 15px;
  }
  [class^="header_list_sub_company_tab"] li:last-child {
    margin-right: 16px;
  }
  .header_list_sub_company_child_inner {
    display: block;
  }
  .global-megamenu__case-lists {
    display: block;
    width: 100%;
    margin-right: 0;
  }
  .global-megamenu__case-lists li {
    width: calc(95% - 20px);
    min-height: 100%;
    margin: 0 auto 20px;
    padding: 12px 10px 12px 5px;
    display: flex;
  }
  .global-megamenu__case-lists li:nth-child(3n) {
    margin-right: auto;
  }
  .global-megamenu__case-image {
    width: 45%;
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
    display: flex;
    margin-right: 15px;
    padding-right: 10px;
    border-right: 1px solid #E7E7E7;
  }
  .global-megamenu__case-item-inner {
    width: 100%;
  }
  .global-megamenu__interview {
    width: 94%;
    margin: auto;
  }
}
/* -----seminar_common----- */
.header_list_sub_list .header_list_sub_list_inner ul.header_list_sub_list_bnr {
  margin: 24px 0 0 0;
}
.header_list_sub_list_thum li {
  margin-bottom: 12px;
  padding: 0 10px 12px;
  border-bottom: 1px solid #E7E7E7;
}
.header_list_sub_list_thum li a {
  display: flex;
}
.header_list_sub_list_thum li figure {
  flex-shrink: 0;
  margin-right: 16px;
}
.header_list_sub_list_thum li a:hover figure {
  opacity: .7;
}
.header_list_sub_list_thum li figure img {
  width: 100%;
}
.header_list_sub_list_thum li h3 {
  font-size: 14px;
  font-weight: 500;
}
.header_list_sub_list_thum li p {
  font-size: 12px;
  font-weight: 300;
  margin-top: 5px;
}
.header_list_sub_list_thum.hlslt124 li figure {
  width: 124px;
}
.header_list_sub_list_thum.hlslt164 li figure {
  width: 164px;
}
.header_list_sub_bg_gray {
  padding: 40px 0 50px;
  background: #F6F6F6;
}
.header_list_sub_bg_gray .header_list_sub_list {
  margin-bottom: 0;
}
.header_list_sub_inner .header_list_sub_bg_gray h2 {
  margin: 0 auto 10px;
}
.header_list_sub_txt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto 3px;
}
.header_list_sub_txt p {
  font-size: 16px;
  font-weight: 300;
}
.header_list_sub_txt a {
  font-size: 14px;
  font-weight: 300;
  padding-right: 45px;
  background: url(/cms/smz/img/usr/common/arrow_circle_wg.png) no-repeat center right;
  background-size: 20px auto;
}
.header_list_sub_txt a:hover {
  opacity: .7;
  color: var(--ecbeing_color_green) !important;
}
.header_list_sub_list_thum_row ul {
  display: flex;
  margin: 30px 0 0 0;
}
.header_list_sub_list_thum_row li {
  width: calc((100% - 24px)/ 2);
  margin-right: 24px;
  background: #fff;
}
.header_list_sub_list_thum_row li:nth-child(2n) {
  margin-right: 0;
}
.header_list_sub_list_thum_row li a {
  display: flex;
}
.header_list_sub_list_thum_row li a:hover {
  opacity: .7;
  text-decoration: none;
}
.header_list_sub_list_thum_row li a:hover .header_list_sub_list_thum_row_icon {
  color: #000 !important;
}
.header_list_sub_list_thum_row li a:hover h3 {
  color: var(--ecbeing_color_green) !important;
}
.header_list_sub_list_thum_row li figure {
  flex-shrink: 0;
  width: 240px;
  margin-right: 16px;
}
.header_list_sub_list_thum_row li figure img {
  width: 100%;
}
.header_list_sub_list_thum_row_inner {
  padding: 10px 10px 10px 0;
}
.header_list_sub_list_thum_row_icon {
  display: table;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 20px;
  padding: 0 5px;
  background: #F6F6F6;
}
.header_list_sub_list_thum_row li h3 {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .header_list_sub_bg_gray {
    position: relative;
    padding: 40px 15px 50px;
    width: calc(100% + 30px - 30px);
    margin-left: -15px;
  }
  .header_list_sub_inner .header_list_sub_bg_gray h2 {
    display: block;
    font-size: 16px;
    margin: 0 auto 20px;
  }
  .header_list_sub_txt p {
    font-size: 12px;
  }
  .header_list_sub_txt a {
    position: absolute;
    top: 42px;
    right: 15px;
    padding-right: 30px;
  }
  .header_list_sub_list_thum_row li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }
  .header_list_sub_list_thum_row li a {
    display: block;
  }
  .header_list_sub_list_thum_row li figure {
    width: 100%;
    margin-right: 0;
  }
  .header_list_sub_list_thum_row_inner {
    padding: 14px 5px;
  }
  .header_list_sub_list_thum_row_icon {
    font-size: 10px;
  }
  .header_list_sub_list_thum_row li h3 {
    font-size: 14px;
  }
}
/* -----modal----- */
.js-header-acc-overlay {
  display: none;
  position: fixed;
  top: var(--pc_header_height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--pc_header_height));
  background: #000000D6;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .js-header-acc-overlay {
    display: none !important;
  }
}
/* ----------ボタン---------- */
.header_btn {}
.header_btn li {
  width: 148px;
  height: 34px;
  margin: 4px 0;
  border-radius: 2px;
}
.header_btn li a {
  width: 100%;
  height: 100%;
}
.header_btn li a:hover {
  background: #ffffff33;
}
.header_btn li a i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 8px;
}
@media screen and (max-width: 768px) {
  .header_btn {
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 16px);
    padding: 16px 8px;
    background: #F6F6F6;
    z-index: 2;
    transition: all 0.5s;
  }
  .header_btn li {
    width: calc(50% - 5px);
    height: 48px;
    margin: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .16);
  }
  .header_btn li a {
    width: 100%;
    height: 100%;
    color: #fff !important;
  }
  .header_btn li a i {
    font-size: 10px;
  }
}
/* 	common_contents
--------------------------------------------------------------------- */
/* ----------レイアウト---------- */
.main_wrapper_ {
  padding-top: var(--pc_header_height);
}
.common_inner_ {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
[class^="common_layout_"] {
  margin-bottom: 100px;
}
[class^="common_layout_"] img {
  width: 100%;
  height: auto;
}
[class^="common_layout_"] figure.normal_width.center {
  text-align:center;
}
[class^="common_layout_"] figure.normal_width img {
  width: auto;
  height: auto;
  margin-top:40px;
}

@media screen and (max-width: 768px) {
[class^="common_layout_"] figure.normal_width img {
  width: 100%;
  height: auto;
  margin-top:40px;
}
}

.common_flex_area {
  display: flex;
}

@media screen and (max-width: 768px) {
.common_flex_area figure.logo img{
  width: 70%;
    height:auto;
}
.common_flex_area figure.logo{
    /*margin:0 auto;*/
    text-align:center;
}
}
    
.common_img_left {
  float: left;
}
.common_img_right {
  float: right;
}
.common_txt_area {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .main_wrapper_ {
    padding-top: var(--sp_header_height);
  }
  .common_inner_ {
    padding: 0 15px;
  }
  [class^="common_layout_"] {
    margin-bottom: 65px;
  }
  .common_flex_area {
    display: block;
  }
  .common_flexcolumn_area {
    display: flex;
    flex-direction: column
  }
}
/* -----一覧----- */
/* 2列【画像（左）テキスト（右）】 */
.common_layout_photo-h2_2row figure {
  width: 100%;
  max-width: 556px;
  margin-right: 48px;
}
@media screen and (max-width: 768px) {
  .common_layout_photo-h2_2row figure {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
    order: 2;
  }
  .common_layout_photo-h2_2row h2 {
    order: 1;
  }
  .common_layout_photo-h2_2row p {
    order: 3;
  }
  .common_layout_photo-h2_2row a.common_btn {
    order: 4;
  }
}
/* 1列【h2＋テキスト】＋2列【画像（左）テキスト（右）】 */
.common_layout_h2_photo-txt_2row figure {
  width: 100%;
  max-width: 328px;
  margin-right: 32px;
}
.common_layout_h2_photo-txt_2row .common_flex_area {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .common_layout_h2_photo-txt_2row figure {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .common_layout_h2_photo-txt_2row figure:not(:first-child) {
    margin-top: 36px;
  }
  .common_layout_h2_photo-txt_2row .common_flex_area {
    margin-top: 40px;
  }
}
/* 2列【画像（左）テキスト（右）】 */
ul.common_layout_photo-txt_2rowlist {
  display: flex;
  flex-wrap: wrap;
}
/*ul.common_layout_photo-txt_2rowlist li {
  width: calc((100% - 30px) / 2);
  margin-right: 30px;
  margin-top: 50px;
}*/
ul.common_layout_photo-txt_2rowlist li {
  width: calc((100% - 70px) / 2);
  margin-right: 70px;
  margin-top: 20px;
  margin-bottom: 20px;
}
ul.common_layout_photo-txt_2rowlist li:nth-child(2n) {
  margin-right: 0;
}
ul.common_layout_photo-txt_2rowlist li figure {
  width: 100%;
  max-width: 216px;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  ul.common_layout_photo-txt_2rowlist {
    margin-top: 40px;
  }
  ul.common_layout_photo-txt_2rowlist li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-top: 40px;
  }
  ul.common_layout_photo-txt_2rowlist li figure {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 14px;
  }
}
/* 3列【画像（上）テキスト（下）】 */
ul.common_layout_photo-txt-line-3rowlist {
  display: flex;
  flex-wrap: wrap;
}
ul.common_layout_photo-txt-line-3rowlist li {
  width: calc((100% - 80px) / 3);
  margin-right: 40px;
  margin-top: 50px;
}
ul.common_layout_photo-txt-line-3rowlist li:nth-child(3n) {
  margin-right: 0;
}
ul.common_layout_photo-txt-line-3rowlist li figure {
  margin-bottom: 12px;
}
[class^="common_layout_"] i:has(+ .sp_scroll) {
  display: none;
  font-size: 14px;
  color: var(--ecbeing_color_green);
}
@media screen and (max-width: 768px) {
  [class^="common_layout_"] .sp_scroll:has(> .common_layout_photo-txt-line-3rowlist) {
    width: calc(100% + 15px);
    margin-right: -15px;
  }
  [class^="common_layout_"] .sp_scroll > .common_layout_photo-txt-line-3rowlist {
    margin-top: 0;
  }
  [class^="common_layout_"] i:has(+ .sp_scroll) {
    display: block;
    margin: 20px 0 -25px;
  }
  ul.common_layout_photo-txt-line-3rowlist {
    flex-wrap: nowrap;
    margin-top: 40px;
    margin-bottom: 0;
    width: max-content;
  }
  ul.common_layout_photo-txt-line-3rowlist li {
    width: calc(543 * (100vw / 750));
    margin-right: 10px;
    margin-top: 40px;
  }
  ul.common_layout_photo-txt-line-3rowlist li:nth-child(3n) {
    margin-right: 10px;
  }
  ul.common_layout_photo-txt-line-3rowlist li figure {
    margin-bottom: 14px;
  }
}
/* 4列【画像（上）テキスト（下）】 */
/*ul.common_layout_photo-txt-line-4rowlist {
  display: flex;
  flex-wrap: wrap;
}
ul.common_layout_photo-txt-line-4rowlist li {
  width: calc((100% - 80px) / 4);
  margin-right: 40px;
  margin-top: 50px;
}
ul.common_layout_photo-txt-line-3rowlist li:nth-child(4n) {
  margin-right: 0;
}
ul.common_layout_photo-txt-line-4rowlist li figure {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  [class^="common_layout_"] .sp_scroll:has(> .common_layout_photo-txt-line-4rowlist) {
    width: calc(100% + 15px);
    margin-right: -15px;
  }
  [class^="common_layout_"] .sp_scroll > .common_layout_photo-txt-line-4rowlist {
    margin-top: 0;
  }
  ul.common_layout_photo-txt-line-4rowlist {
    flex-wrap: nowrap;
    margin-top: 40px;
    margin-bottom: 0;
    width: max-content;
  }
  ul.common_layout_photo-txt-line-4rowlist li {
    width: calc(543 * (100vw / 750));
    margin-right: 10px;
    margin-top: 40px;
  }
  ul.common_layout_photo-txt-line-4rowlist li:nth-child(4n) {
    margin-right: 10px;
  }
  ul.common_layout_photo-txt-line-4rowlist li figure {
    margin-bottom: 14px;
  }
}*/
/* 〇列【リンクボタン】 */
.common_layout_listbtn-5rowlist, .common_layout_listbtn-4rowlist {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.common_layout_listbtn-2rowlist_center {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
@media screen and (max-width: 768px) {
  .common_layout_listbtn-5rowlist, .common_layout_listbtn-4rowlist {
    margin-top: 30px;
  }
}
/* -----詳細----- */
/* 2列【テキスト（左）画像（右）】 */
.common_layout_h2-photo_2row figure {
  width: 100%;
  max-width: 556px;
  margin-left: 48px;
}
@media screen and (max-width: 768px) {
  .common_layout_h2-photo_2row figure {
    max-width: 100%;
    margin-left: 0;
    order: 3;
  }
  .common_layout_h2-photo_2row h2 {
    order: 1;
  }
  .common_layout_h2-photo_2row p {
    order: 2;
    margin-bottom: 16px;
  }
}
/* 1列【h2＋テキスト】＋2列【テキスト（左）画像（右）】 */
.common_layout_h2_txt-photo_2row figure {
  width: 100%;
  max-width: 328px;
  margin-left: 32px;
}
.common_layout_h2_txt-photo_2row figure.big {
  width: 100%;
  max-width: 480px;
  margin-left: 32px;
}
.common_layout_h2_txt-photo_2row .common_flex_area {
  margin-top: 50px;
}
.common_layout_h2_txt-photo_2row .green_bk .common_flex_area {
  margin-top: 0px;
}
@media screen and (max-width: 768px) {
  .common_layout_h2_txt-photo_2row figure {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 16px;
  }
  .common_layout_h2_txt-photo_2row .common_flex_area {
    margin-top: 30px;
  }
}
/* 1列【h2＋テキスト】＋画像＋h3複数 */
.common_layout_h2_photo_line figure {
  max-width: 958px;
  margin: 50px auto 0;
}
.common_layout_h2_photo_line h3 {
  margin-top: 50px;
}
.common_layout_h2_photo_line h3 ~ h3 {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .common_layout_h2_photo_line figure {
    width: calc(100% + 30px);
    margin: 16px 0 0 -15px;
  }
    .common_layout_h2_photo_line figure.mrl0 {
    width: calc(100% + 0px);
    margin: 16px 0 0 0px;
  }
  .common_layout_h2_photo_line h3 {
    margin-top: 20px;
  }
  .common_layout_h2_photo_line h3 ~ h3 {
    margin-top: 40px;
  }
}
/* 1列【h2】＋2列【ナンバリングテキスト（左）テキスト（右）】 */
.common_layout_number-txt-2row_list {
  margin-top: 50px;
}
.common_layout_number-txt-2row_list li {
  display: flex;
  align-items: center;
  padding: 28px 24px;
}

.common_layout_number-txt-2row_list li ul.common_layout_photo-txt-line-4rowlist li {
  display: block;
  padding: 0px;
}

.common_layout_number-txt-2row_list li:nth-child(odd) {
  background: var(--ecbeing_color_green6);
}

.common_layout_number-txt-2row_list li ul.common_layout_photo-txt-line-4rowlist li:nth-child(odd) {
  background: initial;
}

.common_number_txt {
  flex-shrink: 0;
  display: block;
  width: 90px;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  margin-right: 40px;
}
.common_number_txt span {
  display: block;
  font-size: 64px;
  letter-spacing: 8px;
}
@media screen and (max-width: 768px) {
  .common_layout_number-txt-2row_list {
    width: calc(100% + 30px);
    margin-top: 68px;
    margin-left: -15px;
  }
  .common_layout_number-txt-2row_list li {
    display: block;
    padding: 40px 15px 60px;
  }
  .common_number_txt {
    font-size: 13px;
    margin: -75px 0 20px;
  }
  .common_number_txt span {
    font-size: 48px;
  }
}
/* 1列【h2】＋2列【ナンバリング写真（左）テキスト（右）】 */
.common_layout_numberphoto-txt-2row_list {
  margin-top: 50px;
}
.common_layout_numberphoto-txt-2row_list li {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding: 0 42px 48px;
  z-index: 1;
}
.common_layout_numberphoto-txt-2row_list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: var(--ecbeing_color_green6);
  z-index: -1;
}
.common_layout_numberphoto-txt-2row_list figure {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
  margin-right: 48px;
}
.common_layout_numberphoto-txt-2row_list li:nth-child(even) figure {
  margin-right: 0;
  margin-left: 48px;
}
.common_layout_numberphoto-txt-2row_list figure::after {
  content: '';
  position: absolute;
  top: 12px;
  left: -35px;
  display: inline-block;
  width: 70px;
  height: 45px;
  font-family: "Inter", sans-serif;
  font-style: italic;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4px;
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="1"]::after {
  content: '01';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="2"]::after {
  content: '02';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="3"]::after {
  content: '03';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="4"]::after {
  content: '04';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="5"]::after {
  content: '05';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="6"]::after {
  content: '06';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="7"]::after {
  content: '07';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="8"]::after {
  content: '08';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="9"]::after {
  content: '09';
}
.common_layout_numberphoto-txt-2row_list figure[data-numberphoto="10"]::after {
  content: '10';
}
@media screen and (max-width: 768px) {
  .common_layout_numberphoto-txt-2row_list {
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .common_layout_numberphoto-txt-2row_list li {
    display: block;
    margin-top: 0;
    padding: 18px 15px 32px;
  }
  .common_layout_numberphoto-txt-2row_list li:not(:first-child) {
    padding-top: 50px;
  }
  .common_layout_numberphoto-txt-2row_list li::after {
    height: 75%;
  }
  .common_layout_numberphoto-txt-2row_list figure {
    width: calc(100% - 18px);
    max-width: calc(100% - 18px);
    margin: 0 auto 18px;
  }
  .common_layout_numberphoto-txt-2row_list li:nth-child(even) {
    display: flex;
    flex-direction: column-reverse;
  }
  .common_layout_numberphoto-txt-2row_list li:nth-child(even) figure {
    margin-right: 0;
    margin-left: 0;
  }
  .common_layout_numberphoto-txt-2row_list figure::after {
    top: -25px;
    left: -10px;
    width: 70px;
    height: 45px;
    font-size: 45px;
  }
  .common_layout_numberphoto-txt-2row_list li:nth-child(even) figure::after {
    left: unset;
    right: -15px;
  }
}
/* 2列【画像（上）テキスト（下）】 */
ul.common_layout_photo-txt-line-2rowlist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.common_layout_photo-txt-line-2rowlist li {
  width: calc((100% - 65px) / 2);
  max-width: 464px;
  margin-right: 65px;
  margin-top: 50px;
}
ul.common_layout_photo-txt-line-2rowlist li:nth-child(2n) {
  margin-right: 0;
}
ul.common_layout_photo-txt-line-2rowlist li figure {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  [class^="common_layout_"] .sp_scroll:has(> .common_layout_photo-txt-line-2rowlist) {
    width: calc(100% + 15px);
    margin-right: -15px;
    margin-bottom: 40px;
  }
  ul.common_layout_photo-txt-line-2rowlist {
    flex-wrap: nowrap;
    margin-top: 0;
    margin-bottom: 0;
    width: max-content;
  }
  ul.common_layout_photo-txt-line-2rowlist li {
    width: calc(543 * (100vw / 750));
    margin-right: 10px;
    margin-top: 40px;
  }
  ul.common_layout_photo-txt-line-2rowlist li:nth-child(2n) {
    margin-right: 10px;
  }
  ul.common_layout_photo-txt-line-2rowlist li figure {
    margin-bottom: 14px;
  }
}
/* 1列【h2＋テキスト】＋画像＋h3複数 */
figure.common_layout_photo_line {
  max-width: 958px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  [class^="common_layout_"] .sp_scroll:has(> figure.common_layout_photo_line) {
    width: calc(100% + 15px);
    margin-right: -15px;
    margin-bottom: 40px;
  }
  figure.common_layout_photo_line {
    width: 600px;
    margin-top: 40px;
  }
}
/* 4列【画像（上）テキスト（下）】 */
ul.common_layout_photo-txt-line-4rowlist {
  display: flex;
  flex-wrap: wrap;
}
ul.common_layout_photo-txt-line-4rowlist li {
  width: calc((100% - 66px) / 4);
  margin-right: 22px;
  margin-top: 50px;
}

.common_layout_number-txt-2row_list li ul.common_layout_photo-txt-line-4rowlist li{
  margin-top: 20px;
}
.common_layout_number-txt-2row_list li ul.common_layout_photo-txt-line-4rowlist{
  margin-bottom: 30px;
}

ul.common_layout_photo-txt-line-4rowlist li:nth-child(4n) {
  margin-right: 0;
}
ul.common_layout_photo-txt-line-4rowlist li figure {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  ul.common_layout_photo-txt-line-4rowlist {
    margin-top: 0;
  }
  ul.common_layout_photo-txt-line-4rowlist li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
    margin-top: 40px;
  }
  ul.common_layout_photo-txt-line-4rowlist li:nth-child(4n), ul.common_layout_photo-txt-line-4rowlist li:nth-child(2n) {
    margin-right: 0;
  }
  ul.common_layout_photo-txt-line-4rowlist li figure {
    margin-bottom: 14px;
  }
}
/* 1列【h2＋テキスト】＋画像＋背景 */
.common_layout_h2_photo_line_bg {
  padding: 48px 64px;
  background: var(--ecbeing_color_green6);
  box-sizing: border-box;
}
.green_bk {
  padding: 40px;
  background: var(--ecbeing_color_green6);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
.green_bk {
  padding: 20px;
}  
}
.common_layout_h2_photo_line_bg h2 {
  text-align: center;
}
.common_layout_h2_photo_line_bg figure {
  max-width: 553px;
  margin: 50px auto 0;
}
.common_layout_h2_photo_line_bg figure.icon {
  max-width: 100px;
  margin: 50px auto 0;
}

.common_layout_h2_photo_line_bg figure.mokku {
  max-width: 300px;
  margin: 50px auto 0;
}


.common_layout_h2_photo_line_bg figure.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .common_layout_h2_photo_line_bg {
    padding: 40px 15px;
    width: calc(100% + 30px);
    margin-left: -15px;
  }
  .common_layout_h2_photo_line_bg figure {
    max-width: 100%;
    margin-top: 24px;
  }
}
/* 1列【h2】＋FAQ */
.common_layout_faqlist {
  margin-top: 50px;
  margin-bottom: 35px;
}
.common_layout_faqlist dl {
  margin-bottom: 20px;
  border-bottom: 1px solid #DDD;
}
.common_layout_faqlist dl dt.acc_title {
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
.acc_title::before, .acc_title::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #9F9F9F;
  border-radius: 2px;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  transition: opacity 1s;
}
.acc_title.acc_plus::before {
  opacity: 0;
}
.acc_title::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}
.acc_title.acc_plus::after {
  transform: translateY(-50%) rotate(180deg);
}
.common_layout_faqlist dl dt p, .common_layout_faqlist dl dd p {
  position: relative;
  padding: 0 40px 0 58px;
}
.common_layout_faqlist dl dt p::before, .common_layout_faqlist dl dd p::before {
  content: 'Q.';
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  display: inline-block;
  width: 40px;
  height: 40px;
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  color: #9F9F9F;
}
.common_layout_faqlist dl dd p::before {
  content: 'A.';
  color: var(--ecbeing_color_green);
}
.common_layout_faqlist dl dd {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_layout_faqlist dl {
    margin-top: 35px;
    margin-bottom: 10px;
  }
  .common_layout_faqlist dl dt.acc_title {
    margin-bottom: 10px;
  }
  .acc_title::before, .acc_title::after {
    width: 14px;
    height: 2px;
    top: 50%;
  }
  .common_layout_faqlist dl dt p, .common_layout_faqlist dl dd p {
    position: relative;
    padding: 0 25px 0 35px;
  }
  .common_layout_faqlist dl dt p::before, .common_layout_faqlist dl dd p::before {
    width: 26px;
    height: 26px;
    font-size: 24px;
  }
  .common_layout_faqlist dl dd {
    padding-bottom: 20px;
  }
}
/* 1列【h2＋テキスト】＋スライダー */
.common_layout_slider {
  overflow: hidden;
}
.common_slider_area {
  position: relative;
  margin-top: 50px;
}
.common_slider_area .swiper-slide {
  min-width: 280px;
  background: #fff;
}
.common_slider_area .swiper-slide a {
  transition: all 0.5s;
}
.common_slider_area .swiper-slide a:hover {
  opacity: .7;
  text-decoration: none;
}
.common_slider_img {
  margin-bottom: 12px;
}
.common_slider_name {
  font-size: 18px;
  margin-bottom: 10px;
}
.common_slider_name span {
  display: inline-block;
  font-size: 14px;
}
.common_slider_logo {
  margin-bottom: 10px;
}
.common_slider_logo img {
  width: auto;
  height: 12px;
}
.common_slider_logo span.revico img {
  height: 30px;
}
.common_slider_logo span.sitemiraiz img,.common_slider_logo span.aireco img ,.common_slider_logo span.lightning img{
  height: 40px;
}
.common_slider_logo span.visumo img,.common_slider_logo span.sechstant img ,.common_slider_logo span.unite img,.common_slider_logo span.resomo img,.common_slider_logo span.line img {
  height: 50px;
}
.common_slider_area .swiper-slide a:hover .common_slider_box p {
  color: var(--ecbeing_color_green);
}
/* 読み込みレイアウト表示調整 */
.common_slider_area {
  opacity: 0;
  transition: opacity .9s linear;
}
.common_slider_area.swiper-initialized {
  opacity: 1;
}
/* swiper reset */
.common_slider_area .swiper-button-next {
  right: 25px;
}
.common_slider_area .swiper-button-prev {
  left: unset;
  right: 50px;
}
.common_slider_area .swiper-button-next, .common_slider_area .swiper-button-prev {
  top: -20px;
}
.common_slider_area .swiper-button-next::after, .common_slider_area .swiper-rtl .swiper-button-prev::after, .common_slider_area .swiper-button-prev::after, .common_slider_area .swiper-rtl .swiper-button-next::after {
  content: '';
}
.common_slider_area .swiper-button-next::after, .common_slider_area .swiper-button-prev::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 2px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #9F9F9F8F;
  border-right: 4px solid #9F9F9F8F;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .14));
}
.common_slider_area .swiper-button-next:hover::after, .common_slider_area .swiper-button-prev:hover::after {
  border-top: 4px solid #9F9F9F;
  border-right: 4px solid #9F9F9F;
}
.common_slider_area .swiper-button-next::after {
  transform: rotate(45deg);
}
.common_slider_area .swiper-button-prev::after {
  transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .common_slider_area {
    margin-top: 65px;
    padding: 0 15px;
  }
  /* swiper reset */
  .top_intro .swiper-button-next, .top_intro .swiper-button-prev {
    top: 25px;
  }
  .top_intro .swiper-button-next, .top_intro .swiper-rtl .swiper-button-prev {
    right: 16px;
  }
  .top_intro .swiper-button-prev, .top_intro .swiper-rtl .swiper-button-next {
    right: 44px;
  }
  .top_intro .swiper-button-next::after, .top_intro .swiper-button-prev::after {
    width: 12px;
    height: 12px;
  }
}
/* ----------テキスト---------- */
.txt_color_green {
  color: var(--ecbeing_color_green);
}
.txt_color_green4 {
  color: var(--ecbeing_color_green4);
}
.txt_color_orenge {
  color: var(--ecbeing_color_orenge);
}
.txt_color_blue {
  color: var(--ecbeing_color_blue);
}
.common_h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 30px;
}
.common_h1 span.small{
  font-size: 18px;
}   
.common_h2 {
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 30px;
}
.common_h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 15px;
}
.common_h3 span.small{
  font-size: 18px;
}
.list_h3 {
  margin: 50px auto -20px;
}
.list_h3txt {
  margin: 50px auto 15px;
}
.list_h3txt_mt0{
  margin: 0px auto 15px;
}
.common_h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.common_inner_ p {
  line-height: 1.7;
}
.common_inner_ p span.small{
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .common_h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .common_h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .common_h3 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .list_h3 {
    margin-top: 40px;
  }
  .list_h3txt {
    margin-top: 40px;
  }
  .common_h4 {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .common_inner_ p {
    font-size: 14px;
    line-height: 1.7;
  }
}
/* ----------テキストリンク---------- */
a.common_link {
  display: table;
  margin-top: 25px;
  padding-right: 42px;
  background: url(/cms/smz/img/usr/common/arrow_circle_green.png) no-repeat center right;
  background-size: 18px auto;
}
a.common_link:hover {
  opacity: .7;
  color: var(--ecbeing_color_green);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a.common_link {
    padding-right: 30px;
    font-size: 14px;
  }
}
/* ----------ボタン---------- */
a.common_btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  line-height: 1;
  border-radius: 4px;
  transition: all 0.5s;
}
a.common_btn:hover {
  opacity: .7;
  text-decoration: none;
}
.btn_color_green {
  background: var(--ecbeing_color_green);
}
.btn_color_green4 {
  background: var(--ecbeing_color_green4);
}
.btn_color_orenge {
  background: var(--ecbeing_color_orenge);
}
.btn_color_blue {
  background: var(--ecbeing_color_blue);
}
a i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 8px;
}
a.content_btn {
  justify-content: flex-start;
  width: 320px;
  height: 76px;
  margin-top: 55px;
  padding-left: 24px;
  font-weight: 600;
  box-sizing: border-box;
}
a.content_btn.mt0 {
  margin-top: 0px;   
}
a.content_btn i {
  right: 30px;
  font-size: 16px;
}
.position_left {
  margin-right: auto;
}
.position_right {
  margin-left: auto;
}
.position_center {
  margin: 0 auto;
}

.common_layout_listbtn-4rowlist li a span.small{
    font-size: 12px;
    display: contents;
    line-height: 1.7em;
}

.common_layout_listbtn-5rowlist li, .common_layout_listbtn-4rowlist li {
  width: calc((100% - (20px * 4)) / 5);
  height: 100%;
  min-height: 43px;
  margin-right: 20px;
  margin-top: 20px;
  line-height: 1;
  transition: all 0.5s;
}
.common_layout_listbtn-4rowlist li {
  width: calc((100% - (24px * 4)) / 4);
  margin-right: 24px;
}
.common_layout_listbtn-5rowlist li:nth-child(5n) {
  margin-right: 0;
}
.common_layout_listbtn-4rowlist li:nth-child(4n) {
  margin-right: 0;
}
.common_layout_listbtn-5rowlist li a, .common_layout_listbtn-4rowlist li a {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5px 30px 5px 12px;
  color: var(--ecbeing_color_green);
  background: url(/cms/smz/img/usr/common/arrow_circle_green.png) no-repeat center right 12px;
  background-size: 18px auto;
  border: 1px solid var(--ecbeing_color_green);
  border-radius: 2px;
  box-sizing: border-box;
}
.common_layout_listbtn-5rowlist li a:hover, .common_layout_listbtn-4rowlist li a:hover {
  opacity: .7;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  a.content_btn {
    justify-content: flex-start;
    width: calc(100% - 18px);
    height: 64px;
    margin: 40px auto 0;
    padding-left: 12px;
    font-size: 14px;
  }
  a.content_btn i {
    right: 12px;
    font-size: 14px;
  }
  .position_left {
    margin-right: auto;
  }
  .position_right {
    margin-left: unset;
    margin-right: auto;
  }
  .common_layout_listbtn-5rowlist li, .common_layout_listbtn-4rowlist li {
    width: calc((100% - 10px) / 2);
    height: 100%;
    min-height: 64px;
    margin-right: 10px;
    margin-top: 10px;
  }
  .common_layout_listbtn-5rowlist li:nth-child(5n) {
    margin-right: 10px;
  }
  .common_layout_listbtn-5rowlist li:nth-child(2n), .common_layout_listbtn-4rowlist li:nth-child(2n) {
    margin-right: 0;
  }
  .common_layout_listbtn-5rowlist li:nth-child(4n), .common_layout_listbtn-4rowlist li:nth-child(4n) {
    margin-right: 0;
  }
  .common_layout_listbtn-5rowlist li a, .common_layout_listbtn-4rowlist li a {
    background: url(/cms/smz/img/usr/common/arrow_circle_green.png) no-repeat center right 8px;
    background-size: 14px auto;
    min-height: 100%;
    font-size: 14px;
    padding-right: 26px;
  }
  .common_layout_listbtn-2rowlist_center {
    display: block;
}
  .common_layout_listbtn-2rowlist_center li {
    margin-bottom: 20px;
}
}
/* ----------パンくず---------- */
/*.pankuzu:has(> .breadcrumb) {
  display: none;
}*/
.breadcrumb span {
  margin-right: 5px;
}
.common_heading .breadcrumb a {
  color: #fff;
}
.common_heading .breadcrumb {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 14px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .common_heading .breadcrumb {
    bottom: 15px;
    left: 15px;
    font-size: 12px;
  }
}
/* ----------MV---------- */
.common_heading {
  color: #fff;
  margin-bottom: 95px;
  background: linear-gradient(90deg, #2F9C7F 0% 0%, #5BB048 210%);
}
.common_heading .common_inner_ {
  position: relative;
  min-height: 370px;
  padding: 45px 20px 70px;
  box-sizing: border-box;
}
.common_heading_2hierarchy {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .common_heading {
    margin-bottom: 40px;
  }
  .common_heading .common_inner_ {
    min-height: 100%;
    padding: 24px 15px 60px;
  }
  .common_heading_2hierarchy {
    margin-bottom: 10px;
  }
}
/* ----------コンテンツ---------- */
.common_content {}
@media screen and (max-width: 768px) {}
/* 	お問い合わせ
-------------------------------- */
.common_inquiry {
  padding: 65px 24px;
  background: var(--ecbeing_color_green3);
}
.common_inquiry .common_inner_ {
  max-width: 1700px;
  padding: 0;
}
.common_inquiry h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ecbeing_color_green);
  text-align: center;
  line-height: 1.5;
  margin-bottom: 50px;
}
.common_inquiry_row {
  display: flex;
  justify-content: center;
}
.common_inquiry_inner {
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 12px rgba(0, 0, 0, .12);
}
.common_inquiry_txt {
  display: flex;
  flex-direction: column;
  width: -webkit-fill-available;
}
.common_inquiry_txt_inner {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  height: 100%;
}
.common_inquiry_txt ul {
  font-size: 18px;
  font-weight: 300;
  padding: 20px;
}
.common_inquiry_txt ul li {
  margin-bottom: 15px;
}
.common_inquiry_txt ul li:last-child {
  margin-bottom: 0;
}
.common_inquiry_txt ul li span {
  display: inline-block;
  margin-right: 5px;
  color: var(--ecbeing_color_green);
}
a.common_inquiry_btn {
  width: 100%;
  height: 68px;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
  border-radius: 0;
  background-image: url(/cms/smz/img/usr/common/arrow_circle_wg2.png);
  background-repeat: no-repeat;
  background-position: center right 24px;
  background-size: 20px auto;
}
a.common_inquiry_btn.btn_color_orenge {
  background-image: url(/cms/smz/img/usr/common/arrow_circle_wo2.png);
}
.common_inquiry_materials {
  width: 100%;
  max-width: 784px;
  margin-right: 60px;
}
.common_inquiry_materials img {
  width: 50%;
  max-width: 368px;
  height: 278px;
  object-fit: cover;
}
.common_inquiry_consultation {
  width: 100%;
  max-width: 784px;
}
.common_inquiry_consultation img {
  width: 50%;
  max-width: 368px;
  height: 278px;
  object-fit: cover;
  object-position: 35% 100%;
}
.common_inquiry_consultation_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  padding: 16px;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  color: var(--ecbeing_color_green);
  border-top: 1px solid var(--ecbeing_color_green);
  border-bottom: 1px solid var(--ecbeing_color_green);
}
.common_inquiry_consultation_detail a {
  display: block;
  font-size: 36px;
  font-weight: 500;
  margin-right: 64px;
  color: var(--ecbeing_color_green);
}
@media screen and (max-width: 1240px) {
  .common_inquiry_row {
    display: block;
  }
  .common_inquiry_materials, .common_inquiry_consultation {
    margin: auto;
  }
  .common_inquiry_materials {
    margin-bottom: 50px;
  }
  .common_inquiry_consultation_detail {
    display: block;
    max-width: 784px;
    margin: 50px auto 0;
  }
  .common_inquiry_consultation_detail a {
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 768px) {
  .common_inquiry {
    position: relative;
    padding-top: 35px;
    padding-bottom: 65px;
  }
  .common_inquiry h2 {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
  }
  .common_inquiry_row {
    display: block;
  }
  .common_inquiry_inner {
    display: block;
  }
  .common_inquiry_txt ul {
    font-size: 16px;
  }
  .common_inquiry_txt ul li {
    margin-bottom: 10px;
  }
  a.common_inquiry_btn {
    width: 100%;
    max-width: 100%;
    height: 53px;
    margin: auto;
    font-size: 14px;
    background-size: 18px auto;
  }
  .common_inquiry_materials {
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 64px;
  }
  .common_inquiry_materials img {
    width: 110%;
    height: calc(258 * (100vw / 750));
    margin-left: -10%;
    max-width: 110%;
  }
  .common_inquiry_consultation {
    max-width: 100%;
  }
  .common_inquiry_consultation img {
    width: 115%;
    height: calc(258 * (100vw / 750));
    margin-left: -15%;
    max-width: 115%;
  }
  .common_inquiry_consultation_detail {
    margin-top: 40px;
  }
  .common_inquiry_consultation_detail a {
    margin-bottom: 5px;
    font-size: 18px;
  }
  .common_inquiry_consultation_detail p {
    font-size: 10px;
  }
}
/* 	footer
--------------------------------------------------------------------- */
#footer {
  margin-top: 0;
  padding: 0;
  border-top: none;
  letter-spacing: 2px;
  background: #222;
}
#footer a {
  color: #fff;
}
#footer li:hover {
  text-decoration: none;
}
.foot_nav {
  padding: 40px 0;
  background: #fff;
}
.foot_nav_inner {
  width: 1080px;
  margin: 0 auto;
  overflow: hidden;
}
#footer .foot_nav_inner li a {
  color: #000;
}
.foot_nav ul li {
  line-height: 2em;
}
.foot_nav ul li a {
  font-size: 14px;
  background: url(/cms/smz/img/usr/common/arrow_black_s.png) no-repeat left center;
  padding-left: 14px;
  background-size: 6px;
}
.foot_bottom {
  overflow: hidden;
  margin: 0 auto;
  padding: 60px 0;
  width: 1180px;
}
.foot_top {
  float: right;
  font-size: 12px;
  width: 100%;
  position: relative;
}
.foot_top > ul, .foot_nav_inner > ul {
  float: left;
  width: 25%;
  padding: 0 2%;
  box-sizing: border-box;
}
.foot_top > ul:last-child {
  float: left;
  margin-right: 0;
}
.foot_top ul li {
  text-align: left;
  font-weight: bold;
  line-height: 3em;
}
.foot_top ul li a {
  display: block;
  background: url(/cms/smz/img/usr/common/arrow_white_s.png) no-repeat left center;
  padding-left: 14px;
  background-size: 6px;
}
.foot_top ul li span {
  display: block;
  background: url(/cms/smz/img/usr/common/arrow_white_s.png) no-repeat left center;
  padding-left: 14px;
  background-size: 6px;
  color: #FFF;
}
.foot_top ul li a.f-logo {
  background: none;
  padding-left: 0;
}
#footer ul li a:hover {
  text-decoration: underline;
}
.foot_top ul li ul li {
  font-weight: normal;
  line-height: 2.5em;
}
.foot_top ul p {
  text-align: center;
  border-bottom: 1px dotted #fff;
  margin-bottom: 15px;
  color: #fff;
}
.company_logo {
  position: absolute;
  right: 2%;
  bottom: 0;
}
.copy {
  width: auto;
  display: table;
  margin: auto;
  padding: 80px 2%;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
  color: #fff;
  background: #212121 url(/cms/smz/img/usr/common/dot_black.png);
}
.copy_inner .c-grids:before, .c-grids:after {
  content: "";
  display: table;
}
.copy_inner .c-grids > * {
  display: table-cell;
  min-height: 1px;
  vertical-align: middle;
}
.copy_inner .grid-col2 {
  width: 50%;
}
.copy_inner {
  width: 1080px;
  margin: 0 auto;
}
.copy_inner .grid-col2 dd span {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}
.copy_inner .grid-col2 dt.abs {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 16px;
  display: block;
}
.copy_inner .grid-col2 p.copy-r {
  padding-top: 12px;
  font-size: 10px;
  font-weight: 500;
}
.copyright_area {
  background: #111 url(/cms/smz/img/usr/common/dot_black.png);
}
.copyright_area p {
  width: 1080px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  padding: 30px 0;
}
.foot_top ul li {
  line-height: 2.2em;
}
.grid-col2 li a img:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  #footer {
    line-height: 1.2;
    letter-spacing: 0px;
    background: #232323;
    text-align: left;
    color: #fff;
  }
  #footer .foot_bottom {
    padding: 20px 0;
    width: 100%;
  }
  #footer .foot_bottom .foot_top {
    float: none;
    width: 100%;
    font-size: 11px !important;
  }
  #footer .foot_bottom .foot_top li {
    font-size: 11px !important;
  }
  .foot_top > ul, .foot_nav_inner > ul {
    float: none !important;
    width: 100% !important;
    margin-bottom: 5%;
  }
  #footer .copy_inner .grid-col2 {
    width: 100% !important;
  }
  .copy_inner .c-grids > * {
    display: block !important;
  }
  #footer .footer-contact {
    display: none !important;
  }
  #footer .copy_inner {
    width: auto;
    padding: 15px;
  }
  #footer dl {
    margin: 0 0 20px;
  }
  #footer dl dt {
    font-size: 12px;
    margin: 0 0 10px;
    line-height: 1.15;
  }
  #footer dl dd {
    font-size: 10px;
    margin: 0 0 10px;
  }
  #footer dl dd span {
    font-size: 19px;
    font-weight: bold;
    margin: 0 10px 0 0;
  }
  #footer dl dd img {
    width: 25%;
    background: #fff;
    vertical-align: text-bottom;
  }
  #footer p {
    margin: 0 0 10px;
  }
  #footer .copyright_area {
    background: #111;
    padding: 10px 15px;
    padding-bottom: 30px;
  }
  #footer .copyright_area p {
    color: #FFF;
    font-size: 9px;
    display: block;
    line-height: 1;
    margin: 0;
    width: auto;
    padding: 0;
    text-align: left;
  }
  #footer #page-top {
    position: fixed;
    bottom: 90px;
    right: 0; /*background: #ffb400;*/ width: 40px;
    height: 40px;
    line-height: 1;
    font-size: 20px;
    margin: 0 !important;
    padding-right: 0 !important;
    z-index: 100;
  }
  #footer #page-top a {
    text-indent: -999999px;
    background: #2a2a2a70 url(/cms/smz/img/usr/common/arrow_white_s90deg.png) no-repeat center 15px;
    text-decoration: none;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    vertical-align: middle;
    display: table-cell;
    border-radius: 10px;
    transition: 0.3s;
  }
}



/*FAQアコーディオン*/
.qa_acc .faq_list dl {
  margin-bottom: 20px;
  background: #fff;
}
.qa_acc .faq_list dl dt {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #1D5D5E;
  height: 60px;
  background: #C4E9E9;
  cursor: pointer;
}
.qa_acc .faq_list dl dt span {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 50px;
}
.qa_acc .faq_list dl dt span::after {
  content: "Q";
  display: block;
  position: absolute;
  left: 19px;
  font-size: 23px;
  font-weight: 600;
  color: #419497;
}
.qa_acc .faq_list dl dd {
  display: none;
  padding: 20px 70px 20px 50px;
}
.qa_acc .faq_list dl dd span {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #1D5D5E;
  line-height: 1.7;
}
.qa_acc .faq_list dl dd span::after {
  content: "A";
  display: block;
  position: absolute;
  top: -8px;
  left: -31px;
  font-size: 23px;
  font-weight: 600;
  color: #EE8223;
}
.qa_acc .faq_list dl dt::before, .faq_list dl dt::after {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background-color: #419497;
  border-radius: 2px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 1s;
}
.qa_acc .faq_list dl dt:hover {
  opacity: 0.7;
}
.qa_acc .faq_list dl dt::after {
  transition: transform 1s;
}
.qa_acc .acc_title.acc_plus::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 1s;
}
.qa_acc .faq_list .acc_title.acc_plus::before {
    opacity: initial;
}
@media screen and (max-width:769px) {
.qa_acc .faq_list dl {
    margin: 0 24px 20px;
  }
.qa_acc .faq_list dl dt {
    font-size: 16px;
    height: auto;
    padding: 10px 19px;
    line-height: 1.6;
    text-align: left;
  }
.qa_acc .faq_list dl dt span {
    height: auto;
    padding: 5px 30px;
  }
.qa_acc .faq_list dl dt span::after {
    left: 0;
    top: 0;
  }
.qa_acc .faq_list dl dd {
    padding: 20px 20px 20px 49px;
    text-align: left;
  }
.qa_acc .faq_list dl dd span::after {
    left: -29px;
  }
}



/*fl_bnr*/
.fl_bnr {position: fixed; top: 260px; right: 0px;z-index:10;box-shadow:0px 0px 13px rgb(0 0 0 / 50%);animation: SlideIn 1.6s infinite;animation-iteration-count:1;animation-delay:1s;opacity: 0;animation-fill-mode: forwards;border-radius: 16px 0 0 16px;transition: all 0.2s ease-out; }
.fl_bnr a.right_b2b{text-align:center;position: relative;font-weight: bold;letter-spacing: 0.1em;text-decoration: none; color: #fff; transition: all 0.4s ease-out;    line-height: 1.2em;}
.fl_bnr:hover { opacity:1; transition: all 0.4s ease-out; -webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;-o-transition: all 0.4s ease-out;box-shadow:0px 0px 10px rgb(0 0 0 / 0%);}
.fl_bnr a .blue_b2{background:linear-gradient(130deg, #3c5dfa 0%, #4f6eff 58.88%, #001a98 100%);
;padding: 35px 16px 30px 16px;border-radius: 16px 0 0 0px;line-height:1.8em;  }
.fl_bnr a .blue_b2 .f_b{font-size: 16px; margin-bottom: 20px}
.fl_bnr a .blue_b2 .f_b span{font-size: 26px}
.fl_bnr a .blue_b2 .img_logo img {width:110px;height:auto;}
.fl_bnr a .white_b2{background:#fff;font-weight: bold;font-size: 15px;text-align: center;color: #084792;padding: 20px 8px 20px 8px;border-radius: 0 0 0px 16px ;border-left: 1px solid #F8F8F8;border-bottom: 1px solid #F8F8F8;}

@media screen and (max-width: 640px){
.fl_bnr {bottom:0px; width:100%; top: initial;z-index:10;}
.fl_bnr a .blue_b2{padding: 10px 16px 10px 16px;border-radius: 0px 0 0 0px;line-height: 1.8em;display: flex;justify-content: space-around;align-items: end;}
.fl_bnr a .blue_b2 .f_b {font-size: 12px;margin-bottom: 0px;}
.fl_bnr a .blue_b2 .f_b span { font-size: 18px;}
.fl_bnr a .white_b2 { font-size: 10px; padding: 8px 24px 5px 8px; border-radius: 0 0 0px 0px;text-align: right;}
}
@-moz-document url-prefix(){
.fl_bnr { right: 30px;}
}
@keyframes SlideIn {
0% {opacity: 0;transform: translateX(64px);}
100% {opacity: 1;transform: translateX(0);}
}
@keyframes SlideOut {
0% {opacity: 1;transform: translateX(0px);}
100% {opacity: 0;transform: translateX(64px);display:none;}
}