@charset "UTF-8";
:root {
  --color-01: #DCF7E6;
  --color-02: #5dbeac;
  --c-1: #0064b4;
  --c-1-bg: #F4FAFD;
  --c-2: #DFD138;
  --c-2-bg: #f9faed;
  --c-3: #86B819;
  --c-3-bg: #F4F8ED;
  --c-4: #E48E01;
  --c-4-bg: #FDF6EE;
  --c-5:#796AAE;
  --c-5-bg:#F5F5F9;
  --c-6: #F5B090;
  --c-6-bg: #FFFAF8;
  --c-7:#53A8A6;
  --c-7-bg:#EFF7F7;
  --c-8:#E9536A;
  --c-8-bg:#FEEDF0;
  --c-9:#55a7d9;
  --c-9-bg:#F0F6F9;
  --c-10:#607d8b;
  --c-10-bg:#F8F8F8;
}

#healthcare {
  /*【PC】*/
  /*【SP】*/
}
#healthcare .mv_banner {
  margin: 50px 0;
  background: url(/goods/healthcare/bg.png);
  background-size: cover;
}
#healthcare .mv_banner img {
  width: 100%;
  border-radius: 10px;
}
#healthcare.bold {
    font-weight: bold!important;
}
@media screen and (max-width: 768px) {
  #healthcare .mv_banner {
    margin: 30px 0;
  }
}
#healthcare .about_area {
  background: var(--color-01);
  padding: 50px 0;
}
#healthcare .about_area .box {
  background: #fff;
  border-radius: 10px;
  padding: 90px 120px;
}
#healthcare .about_area .about_main_title {
  text-align: center;
  font-weight: bold;
  font-size: 2em;
}
#healthcare .about_area .about_main_title .e,
#healthcare .about_area .about_main_title .mini {
  color: var(--color-02);
}
#healthcare .about_area .about_main_title .e {
  font-size: 1.5em;
}
#healthcare .about_area .about_main_title .mini {
  font-size: 0.6em;
}
#healthcare .about_area .history_text {
  text-align: center;
  font-size: 3em;
  margin: 50px 0 90px;
}
#healthcare .about_area .history_text .e {
  letter-spacing: 2px;
}
#healthcare .about_area .history_text .t_box {
  display: inline-block;
  position: relative;
}
#healthcare .about_area .history_text .t_box .t {
  position: absolute;
  display: block;
  text-align: center;
  left: 0;
  bottom: -40px;
  width: 100%;
  font-size: 0.4em;
}
#healthcare .about_area .history_text .line {
  position: relative;
  color: var(--color-02);
  font-weight: bold;
}
#healthcare .about_area .history_text .line:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: var(--color-02);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  #healthcare .about_area {
    padding: 20px 0;
  }
  #healthcare .about_area .box {
    padding: 20px 5%;
  }
  #healthcare .about_area .about_main_title {
    font-size: 1.2em;
  }
  #healthcare .about_area .history_text {
    margin: 20px 0 40px 0;
    font-size: 1em;
  }
  #healthcare .about_area .history_text .t_box .t {
    bottom: -24px;
  }
}
#healthcare .category_area ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px;
}
#healthcare .category_area .title {
  text-align: center;
  color: var(--color-02);
  font-weight: bold;
  margin: 10px 0;
  font-size: 1.2em;
}
#healthcare .category_area .img {
  text-align: center;
  margin: 0 0 20px 0;
}
#healthcare .category_area .img img {
  width: 100%;
}
#healthcare .category_area .close .img {
  opacity: 0.3;
}
@media screen and (max-width: 768px) {
  #healthcare .category_area ul {
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 20px;
  }
  #healthcare .category_area ul .title {
    font-size: 1em;
  }
  #healthcare .category_area ul p {
    margin: 10px 0 0 0;
  }
}
#healthcare .sec_02 ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 20px;
}
#healthcare .sec_02 li a {
  background: #fff;
  display: flex;
  align-items: center;
  border: 3px solid #fff;
  height: 110px;
  position: relative;
}
#healthcare .sec_02 li a:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--color-01);
  opacity: 0;
  position: absolute;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#healthcare .sec_02 li a:hover:before {
  opacity: 0.2;
}
#healthcare .sec_02 li:nth-child(1) a {
  border: 3px solid var(--c-1);
  color: var(--c-1);
}
#healthcare .sec_02 li:nth-child(1) a:hover:before {
  background: var(--c-1);
}
#healthcare .sec_02 li:nth-child(2) a {
  border: 3px solid var(--c-2);
  color: var(--c-2);
}
#healthcare .sec_02 li:nth-child(2) a:hover:before {
  background: var(--c-2);
}
#healthcare .sec_02 li:nth-child(3) a {
  border: 3px solid var(--c-3);
  color: var(--c-3);
}
#healthcare .sec_02 li:nth-child(3) a:hover:before {
  background: var(--c-3);
}
#healthcare .sec_02 li:nth-child(4) a {
  border: 3px solid var(--c-4);
  color: var(--c-4);
}
#healthcare .sec_02 li:nth-child(4) a:hover:before {
  background: var(--c-4);
}
#healthcare .sec_02 li:nth-child(5) a {
  border: 3px solid var(--c-5);
  color: var(--c-5);
}
#healthcare .sec_02 li:nth-child(5) a:hover:before {
  background: var(--c-5);
}
#healthcare .sec_02 li:nth-child(6) a {
  border: 3px solid var(--c-6);
  color: var(--c-6);
}
#healthcare .sec_02 li:nth-child(6) a:hover:before {
  background: var(--c-6);
}
#healthcare .sec_02 li:nth-child(7) a {
  border: 3px solid var(--c-7);
  color: var(--c-7);
}
#healthcare .sec_02 li:nth-child(7) a:hover:before {
  background: var(--c-7);
}
#healthcare .sec_02 li:nth-child(8) a {
  border: 3px solid var(--c-8);
  color: var(--c-8);
}
#healthcare .sec_02 li:nth-child(8) a:hover:before {
  background: var(--c-8);
}
#healthcare .sec_02 li:nth-child(9) a {
  border: 3px solid var(--c-9);
  color: var(--c-9);
}
#healthcare .sec_02 li:nth-child(9) a:hover:before {
  background: var(--c-9);
}
#healthcare .sec_02 li:nth-child(10) a {
  border: 3px solid var(--c-10);
  color: var(--c-10);
}
#healthcare .sec_02 li:nth-child(10) a:hover:before {
  background: var(--c-10);
}
#healthcare .sec_02 .nolink {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #healthcare .sec_02 ul {
    display: block;
  }
  #healthcare .sec_02 ul li a {
    margin: 15px 0;
    height: auto;
  }
  #healthcare .sec_02 ul li a .img {
    width: 20%;
  }
  #healthcare .sec_02 ul li a .text {
    padding: 10px 20px 10px 0;
    line-height: 1.3;
  }
}
#healthcare .detail_title {
  background: #ccc;
  text-align: center;
  color: #fff;
  margin: 100px 0;
  padding: 50px 0;
  line-height: 1.2;
}
#healthcare .detail_title .big {
  display: block;
  font-size: 1.5em;
}
#healthcare .detail_title .big.e {
  font-size: 2em;
}
#healthcare .detail_title .mini {
  font-size: 0.7em;
}
@media screen and (max-width: 768px) {
  #healthcare .detail_title {
    margin: 30px 0 0 0;
    padding: 20px 0;
  }
}
#healthcare .detail_side_title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 20px 0;
}
#healthcare .split {
  display: grid;
  grid-template-columns: 500px 445px;
  grid-gap: 45px;
}
#healthcare .split .split_l p + .title_left_line {
  margin-top: 80px;
}
#healthcare .split .split_r .detail_side_main_title {
  background: #333;
  border-radius: 10px 10px 0 0;
  color: #fff;
  padding: 20px;
  font-weight: bold;
  font-size: 1.2em;
  margin: 0;
}
#healthcare .split .split_r .split_box {
  border-radius: 0 0 10px 10px;
  padding: 40px;
}
#healthcare .split .split_r .split_box .title {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  margin: 20px 0;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#healthcare .split .split_r .split_box p {
  margin: 0;
}
#healthcare .split .split_r .side_box + .side_box, #healthcare .split .split_r .side_box + .detail_side_title {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #healthcare .split {
    display: block;
  }
  #healthcare .split .split_l p + .title_left_line {
    margin-top: 40px;
  }
  #healthcare .split .split_r .detail_side_main_title {
    padding: 15px;
    font-size: 1.1em;
  }
  #healthcare .split .split_r .split_box {
    padding: 15px;
  }
}
#healthcare .btn_more {
  text-align: center;
  margin: 20px 0;
}
#healthcare .btn_more .b {
  background: #333;
  color: #fff;
  border-radius: 100px;
  display: inline-block;
  padding: 7px 70px;
  position: relative;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#healthcare .btn_more .b:before {
  content: "";
  width: 7px;
  height: 7px;
  border: solid #fff;
  border-width: 1px 1px 0 0;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 15px;
  top: 50%;
}
#healthcare .btn_more .b:hover {
  opacity: 0.7;
}
#healthcare .btn_more .e {
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  #healthcare .btn_more .b {
    padding: 10px 40px;
  }
}
#healthcare .detail_column {
  margin-top: 80px;
  padding: 0 0 50px 0;
}
#healthcare .detail_column .column_title {
  text-align: center;
  position: relative;
  margin: 0 0 30px 0;
  padding: 50px 0 0 0;
}
#healthcare .detail_column .column_title .e {
  font-size: 1.5em;
  letter-spacing: 2px;
}
#healthcare .detail_column .column_title .mini {
  display: block;
  font-size: 0.7em;
}
#healthcare .detail_column .column_title:before {
  content: "";
  border-style: solid;
  border-width: 30px 65px 0 65px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#healthcare .detail_column ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 40px;
}
#healthcare .detail_column ul .text {
  margin: 20px 0 0 0;
}
#healthcare .detail_column ul .cate {
  background: #333;
  border-radius: 100px;
  color: #fff;
  padding: 2px 12px;
}
#healthcare .detail_column ul p {
  margin: 10px 0 0 0;
}
#healthcare .detail_column ul a {
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#healthcare .detail_column ul a:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #healthcare .detail_column {
    margin-top: 40px;
    padding: 0 0 30px 0;
  }
  #healthcare .detail_column ul {
    display: block;
  }
  #healthcare .detail_column ul a {
    margin: 20px 0;
    display: flex;
    grid-gap: 20px;
  }
  #healthcare .detail_column ul a .img {
    width: 40%;
  }
  #healthcare .detail_column ul a .text {
    margin: 0;
    width: 60%;
  }
  #healthcare .detail_column ul .cate {
    font-size: 0.8em;
  }
}
#healthcare .item_area {
  margin: 50px 0 0 0;
}
#healthcare .item_area .item_title {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin: 0;
  font-size: 1.2em;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
#healthcare .item_area .item_box {
  background: #ccc;
  padding: 50px;
  border-radius: 0 0 10px 10px;
}
#healthcare .item_area ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 30px;
}
#healthcare .item_area ul li {
  position: relative;
  padding: 0 0 70px 0;
}
#healthcare .item_area ul .img img {
  width: 100%;
}
#healthcare .item_area ul p {
  margin: 0;
}
#healthcare .item_area ul .title {
  text-align: center;
  font-size: 1.1em;
  font-weight: bold;
  margin: 20px 0;
}
#healthcare .item_area ul .btn_more {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #healthcare .item_area {
    margin: 30px 0 0 0;
  }
  #healthcare .item_area .item_title {
    padding: 10px;
    font-size: 1.1em;
  }
  #healthcare .item_area .item_box {
    padding: 20px 5%;
  }
  #healthcare .item_area .item_box ul {
    display: block;
  }
  #healthcare .item_area .item_box ul li {
    margin: 0 0 30px 0;
  }
  #healthcare .item_area .item_box ul li p {
    margin: 20px 0;
  }
}
#healthcare .maker_link a {
  background: #fff;
  padding: 50px;
  border-radius: 10px;
  margin: 50px 0 0 0;
  display: flex;
}
#healthcare .maker_link .img {
  overflow: hidden;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#healthcare .maker_link .text {
  text-align: center;
  width: 60%;
}
#healthcare .maker_link .text .maker_title {
  margin: 0 0 10px 0;
  font-size: 1.4em;
  font-weight: bold;
}
#healthcare .maker_link .text .btn_more {
  margin: 20px 0 0 0;
}
@media screen and (max-width: 768px) {
  #healthcare .maker_link a {
    margin: 0;
    padding: 20px 5%;
    display: block;
  }
  #healthcare .maker_link a .img {
    width: 60%;
    margin: 20px auto 40px;
  }
  #healthcare .maker_link a .text {
    width: 100%;
  }
  #healthcare .maker_link a .text .maker_title {
    font-size: 1em;
  }
  #healthcare .maker_link a .btn_more .b {
    padding: 15px 0;
    display: block;
    font-size: 1.1em;
  }
}
#healthcare .detail_01 .detail_title {
  background: var(--c-1);
}
#healthcare .detail_01 .detail_side_title {
  color: var(--c-1);
}
#healthcare .detail_01 .split_r .detail_side_main_title {
  background: var(--c-1);
}
#healthcare .detail_01 .split_r .split_box {
  background: var(--c-1-bg);
}
#healthcare .detail_01 .split_r a.box:hover .title {
  color: var(--c-1);
}
#healthcare .detail_01 .split_r .btn_more .b {
  background: var(--c-1);
}
#healthcare .detail_01 .detail_column {
  background: var(--c-1-bg);
}
#healthcare .detail_01 .detail_column .column_title .e {
  color: var(--c-1);
}
#healthcare .detail_01 .detail_column .cate {
  background: var(--c-1);
}
#healthcare .detail_01 .title_left_line:before {
  background: var(--c-1);
}
#healthcare .detail_02 .detail_title {
  background: var(--c-2);
}
#healthcare .detail_02 .detail_side_title {
  color: var(--c-2);
}
#healthcare .detail_02 .split_r .detail_side_main_title {
  background: var(--c-2);
}
#healthcare .detail_02 .split_r .split_box {
  background: var(--c-2-bg);
}
#healthcare .detail_02 .split_r a.box:hover .title {
  color: var(--c-2);
}
#healthcare .detail_02 .split_r .btn_more .b {
  background: var(--c-2);
}
#healthcare .detail_02 .detail_column {
  background: var(--c-2-bg);
}
#healthcare .detail_02 .detail_column .column_title .e {
  color: var(--c-2);
}
#healthcare .detail_02 .detail_column .cate {
  background: var(--c-2);
}
#healthcare .detail_02 .title_left_line:before {
  background: var(--c-2);
}
#healthcare .detail_03 .detail_title {
  background: var(--c-3);
}
#healthcare .detail_03 .detail_side_title {
  color: var(--c-3);
}
#healthcare .detail_03 .split_r .detail_side_main_title {
  background: var(--c-3);
}
#healthcare .detail_03 .split_r .split_box {
  background: var(--c-3-bg);
}
#healthcare .detail_03 .split_r a.box:hover .title {
  color: var(--c-3);
}
#healthcare .detail_03 .split_r .btn_more .b {
  background: var(--c-3);
}
#healthcare .detail_03 .btn_more .b {
  background: var(--c-3);
}
#healthcare .detail_03 .detail_column {
  background: var(--c-3-bg);
}
#healthcare .detail_03 .detail_column .column_title .e {
  color: var(--c-3);
}
#healthcare .detail_03 .detail_column .cate {
  background: var(--c-3);
}
#healthcare .detail_03 .item_area .item_title {
  background: var(--c-3);
}
#healthcare .detail_03 .item_area .item_box {
  background: var(--c-3-bg);
}
#healthcare .detail_03 .title_left_line:before {
  background: var(--c-3);
}
#healthcare .detail_04 .detail_title {
  background: var(--c-4);
}
#healthcare .detail_04 .detail_side_title {
  color: var(--c-4);
}
#healthcare .detail_04 .split_r .detail_side_main_title {
  background: var(--c-4);
}
#healthcare .detail_04 .split_r .split_box {
  background: var(--c-4-bg);
}
#healthcare .detail_04 .split_r a.box:hover .title {
  color: var(--c-4);
}
#healthcare .detail_04 .btn_more .b {
  background: var(--c-4);
}
#healthcare .detail_04 .detail_column {
  background: var(--c-4-bg);
}
#healthcare .detail_04 .detail_column .column_title .e {
  color: var(--c-4);
}
#healthcare .detail_04 .detail_column .cate {
  background: var(--c-4);
}
#healthcare .detail_04 .title_left_line:before {
  background: var(--c-4);
}
#healthcare .detail_04 .item_area .item_title {
  background: var(--c-4);
}
#healthcare .detail_04 .item_area .item_box {
  background: var(--c-4-bg);
}
#healthcare .detail_05 .detail_title {
  background: var(--c-5);
}
#healthcare .detail_05 .detail_side_title {
  color: var(--c-5);
}
#healthcare .detail_05 .split_r .detail_side_main_title {
  background: var(--c-5);
}
#healthcare .detail_05 .split_r .split_box {
  background: var(--c-5-bg);
}
#healthcare .detail_05 .split_r a.box:hover .title {
  color: var(--c-5);
}
#healthcare .detail_05 .btn_more .b {
  background: var(--c-5);
}
#healthcare .detail_05 .detail_column {
  background: var(--c-5-bg);
}
#healthcare .detail_05 .detail_column .column_title .e {
  color: var(--c-5);
}
#healthcare .detail_05 .detail_column .cate {
  background: var(--c-5);
}
#healthcare .detail_05 .title_left_line:before {
  background: var(--c-5);
}
#healthcare .detail_05 .item_area .item_title {
  background: var(--c-5);
}
#healthcare .detail_05 .item_area .item_box {
  background: var(--c-5-bg);
}
#healthcare .detail_06 .detail_title {
  background: var(--c-6);
}
#healthcare .detail_06 .detail_side_title {
  color: var(--c-6);
}
#healthcare .detail_06 .split_r .detail_side_main_title {
  background: var(--c-6);
}
#healthcare .detail_06 .split_r .split_box {
  background: var(--c-6-bg);
}
#healthcare .detail_06 .split_r a.box:hover .title {
  color: var(--c-6);
}
#healthcare .detail_06 .btn_more .b {
  background: var(--c-6);
}
#healthcare .detail_06 .detail_column {
  background: var(--c-6-bg);
}
#healthcare .detail_06 .detail_column .column_title .e {
  color: var(--c-6);
}
#healthcare .detail_06 .detail_column .cate {
  background: var(--c-6);
}
#healthcare .detail_06 .title_left_line:before {
  background: var(--c-6);
}
#healthcare .detail_06 .item_area .item_title {
  background: var(--c-6);
}
#healthcare .detail_06 .item_area .item_box {
  background: var(--c-6-bg);
}
#healthcare .detail_07 .detail_title {
  background: var(--c-7);
}
#healthcare .detail_07 .detail_side_title {
  color: var(--c-7);
}
#healthcare .detail_07 .split_r .detail_side_main_title {
  background: var(--c-7);
}
#healthcare .detail_07 .split_r .split_box {
  background: var(--c-7-bg);
}
#healthcare .detail_07 .split_r a.box:hover .title {
  color: var(--c-7);
}
#healthcare .detail_07 .btn_more .b {
  background: var(--c-7);
}
#healthcare .detail_07 .detail_column {
  background: var(--c-7-bg);
}
#healthcare .detail_07 .detail_column .column_title .e {
  color: var(--c-7);
}
#healthcare .detail_07 .detail_column .cate {
  background: var(--c-7);
}
#healthcare .detail_07 .title_left_line:before {
  background: var(--c-7);
}
#healthcare .detail_07 .item_area .item_title {
  background: var(--c-7);
}
#healthcare .detail_07 .item_area .item_box {
  background: var(--c-7-bg);
}
#healthcare .detail_08 .detail_title {
  background: var(--c-8);
}
#healthcare .detail_08 .detail_side_title {
  color: var(--c-8);
}
#healthcare .detail_08 .split_r .detail_side_main_title {
  background: var(--c-8);
}
#healthcare .detail_08 .split_r .split_box {
  background: var(--c-8-bg);
}
#healthcare .detail_08 .split_r a.box:hover .title {
  color: var(--c-8);
}
#healthcare .detail_08 .btn_more .b {
  background: var(--c-8);
}
#healthcare .detail_08 .detail_column {
  background: var(--c-8-bg);
}
#healthcare .detail_08 .detail_column .column_title .e {
  color: var(--c-8);
}
#healthcare .detail_08 .detail_column .cate {
  background: var(--c-8);
}
#healthcare .detail_08 .title_left_line:before {
  background: var(--c-8);
}
#healthcare .detail_08 .item_area .item_title {
  background: var(--c-8);
}
#healthcare .detail_08 .item_area .item_box {
  background: var(--c-8-bg);
}
#healthcare .detail_09 .detail_title {
  background: var(--c-9);
}
#healthcare .detail_09 .detail_side_title {
  color: var(--c-9);
}
#healthcare .detail_09 .split_r .detail_side_main_title {
  background: var(--c-9);
}
#healthcare .detail_09 .split_r .split_box {
  background: var(--c-9-bg);
}
#healthcare .detail_09 .split_r a.box:hover .title {
  color: var(--c-9);
}
#healthcare .detail_09 .btn_more .b {
  background: var(--c-9);
}
#healthcare .detail_09 .detail_column {
  background: var(--c-9-bg);
}
#healthcare .detail_09 .detail_column .column_title .e {
  color: var(--c-9);
}
#healthcare .detail_09 .detail_column .cate {
  background: var(--c-9);
}
#healthcare .detail_09 .title_left_line:before {
  background: var(--c-9);
}
#healthcare .detail_09 .item_area .item_title {
  background: var(--c-9);
}
#healthcare .detail_09 .item_area .item_box {
  background: var(--c-9-bg);
}
#healthcare .detail_10 .detail_title {
  background: var(--c-10);
}
#healthcare .detail_10 .detail_side_title {
  color: var(--c-10);
}
#healthcare .detail_10 .split_r .detail_side_main_title {
  background: var(--c-10);
}
#healthcare .detail_10 .split_r .split_box {
  background: var(--c-10-bg);
}
#healthcare .detail_10 .split_r a.box:hover .title {
  color: var(--c-10);
}
#healthcare .detail_10 .btn_more .b {
  background: var(--c-10);
}
#healthcare .detail_10 .detail_column {
  background: var(--c-10-bg);
}
#healthcare .detail_10 .detail_column .column_title .e {
  color: var(--c-10);
}
#healthcare .detail_10 .detail_column .cate {
  background: var(--c-10);
}
#healthcare .detail_10 .title_left_line:before {
  background: var(--c-10);
}
#healthcare .detail_10 .item_area .item_title {
  background: var(--c-10);
}
#healthcare .detail_10 .item_area .item_box {
  background: var(--c-10-bg);
}
#healthcare [class*=sec_] {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  #healthcare [class*=sec_] {
    padding: 20px 0;
  }
}
#healthcare .bg {
  background: #F0F8FC;
}
#healthcare sup {
  font-size: 0.7em;
  vertical-align: text-top;
}
#healthcare .zoom {
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
#healthcare .zoom .img {
  overflow: hidden;
}
#healthcare .zoom .img img {
  transition: all 800ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: scale(1.0001);
}
#healthcare .zoom:hover {
  opacity: 0.8;
}
#healthcare .zoom:hover .img img {
  transform: scale(1.02);
}
#healthcare .note {
  margin: 10px 0;
}
#healthcare .note.mini {
  font-size: 0.7em;
}
#healthcare .note.r {
  text-align: right;
}
#healthcare .main_title {
  text-align: center;
  margin: 50px 0;
}
#healthcare .main_title .line {
  position: relative;
  color: var(--color-02);
  padding: 0 0 15px 0;
  font-size: 1.3em;
}
#healthcare .main_title .line.e {
  letter-spacing: 3px;
  font-size: 1.6em;
}
#healthcare .main_title .line:before {
  content: "";
  background: var(--color-01);
  width: 50px;
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#healthcare .main_title .mini {
  display: block;
  font-size: 0.8em;
  color: var(--color-02);
  letter-spacing: 3px;
  margin: 30px 0 0 0;
}
@media screen and (max-width: 768px) {
  #healthcare .main_title {
    margin: 20px 0 30px;
  }
}
#healthcare .title_left_line {
  margin: 30px 0;
  padding: 0 0 0 30px;
  position: relative;
  font-weight: bold;
  font-size: 1.3em;
}
#healthcare .title_left_line:before {
  content: "";
  background: var(--color-01);
  width: 25px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #healthcare .title_left_line {
    margin: 20px 0;
    font-size: 1.1em;
  }
}
#healthcare .k {
  font-size: 0.7em;
}
#healthcare .e {
  font-family: "Quicksand", sans-serif;
}
#healthcare img {
  vertical-align: bottom;
}
#healthcare .fw {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}
#healthcare p {
  margin: 30px 0;
  line-height: 2;
}
#healthcare .mt0 {
  margin-top: 0;
}
#healthcare .mb0 {
  margin-bottom: 0;
}
#healthcare a:hover {
  text-decoration: none;
}
#healthcare h1,
#healthcare h2,
#healthcare h3,
#healthcare h4 {
  background: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #healthcare p {
    margin: 20px 0;
    line-height: 1.5;
  }
}
#healthcare .move {
  transition: all 1000ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 500ms;
  transform: translateY(50px);
  opacity: 0;
}
#healthcare .move.active {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (min-width: 769px) {
  #healthcare .inner {
    min-width: 1000px;
    max-width: 1000px;
    margin: auto;
    width: calc(100% - 50px);
  }
  #healthcare .inner_mini {
    min-width: 700px;
    max-width: 700px;
    margin: auto;
    width: calc(100% - 50px);
  }
  #healthcare .sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #healthcare .inner,
  #healthcare .inner_mini {
    padding: 0 5%;
  }
  #healthcare .pc {
    display: none;
  }
}


/* 表 */
#healthcare .ave body {
    line-height: 1.25;
}

#healthcare table.ave {
    table-layout: fixed;
    text-align: center;
}

#healthcare table.ave tr {
    background-color: #fff;
    border: 1px solid #bbb;
}

#healthcare table.ave th,
#healthcare table.ave td {
    padding: 1em 10px 1em 1em;
    border-right: 1px solid #bbb;
}

#healthcare table.ave th {
    font-size: .85em;
    text-align: center;
}

#healthcare table.ave thead tr {
    background-color: #eee;
}

#healthcare.ave .txt {
    text-align: center;
    font-size: .85em;
}

@media screen and (max-width: 768px) {
    #healthcare table.ave {
          width: 100%
    }
    
}/*# sourceMappingURL=femtech_style.css.map */