* {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  height: 100%;
  color: #333;
  background-color: #fff;
  scroll-behavior: smooth;
}

.overflow--hidden {
  overflow: hidden;
}

.container {
  max-width: 1140px;
  padding: 0 30px;
  margin: auto;
}

.scrollable::-webkit-scrollbar {
  height: 10px;
}

.scrollable::-webkit-scrollbar-track {
  background: #F3F5F7;
}

.scrollable::-webkit-scrollbar-thumb {
  background: #909090;
  border-radius: 10px;
}

.pc-visible {
  display: block;
}

.sp-visible {
  display: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*header*/
.header {
  position: fixed;
  top: 0;
  z-index: 9990;
  width: 100%;
}

.header.header--scroll {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.9);
}

.header.header--scroll {
  animation: fadeInDown 0.8s;
}

@keyframes slide {
  0% {
    transform: translate(0, -110%);
  }

  100% {
    transform: translate(0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.header .container {
  width: auto;
  max-width: 1570px;
}

.header__inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: right;
}

.header__menu {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}

.header__menu__item {
  margin-right: 40px;
}

.header__menu__item a {
  text-align: center;
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: 0.05em;
  font-family: 'Poppins', sans-serif;
  padding-bottom: 3px;
  cursor: pointer;
  transition: 0.3s 0s all ease-in-out;
}

.header--scroll .header__menu__item a {
  line-height: 50px;
  color: #222222;
}

.header__menu__item a:after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header__menu__item.active a:after {
  transform: scaleX(1);
  transform-origin: left top;
}

.header--scroll .header__menu__item a:hover:after {
  transform: scaleX(1);
  transform-origin: left top;
}

.header--scroll .header__menu__item a:after {
  background-color: #222222;
}

.header--scroll .header__menu__item a:after {
  background-color: #222222;
}

.header__menu__item a:hover:after {
  transform: scaleX(1);
  transform-origin: left top;
}

.header__menu-sp {
  display: none;
}

.header__menu__item .btn-close {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  letter-spacing: 0.025em;
  height: 37px;
  width: 155px;
  border-radius: 50px;
  border: 1px solid #222222;
  font-weight: 400;
  background-color: #fff;
  margin-bottom: 60px;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .header__menu__item {
    margin-right: 0;
  }

  .header.header--scroll {
    background-color: transparent;
  }

  .header__menu-sp {
    display: block;
    position: fixed;
    z-index: 99;
  }

  .header__menu-sp .icon__menu {
    height: 50px;
    width: 50px;
    float: right;
    position: relative;
    cursor: pointer;
    background: transparent;
    border: none;
  }

  .header__menu-sp .icon__menu span {
    position: absolute;
    left: calc(50% - 27px / 2);
    width: 27px;
    height: 2px;
    transform-origin: center center;
    background-color: #fff;
    transition: all .2s;
  }

  .header--scroll .header__menu-sp .icon__menu span {
    background-color: #222;
  }

  .header__menu-sp .icon__menu span:nth-of-type(1) {
    top: 16px;
  }

  .header__menu-sp .icon__menu span:nth-of-type(2) {
    top: 24px;
  }

  .header__menu-sp .icon__menu span:nth-of-type(3) {
    top: 32px;
  }

  .header__menu-sp .icon__menu.active span:nth-of-type(1) {
    transform: translateY(7px) rotate(135deg);
  }

  .header__menu-sp .icon__menu.active span:nth-of-type(2) {
    opacity: 0;
  }

  .header__menu-sp .icon__menu.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
    top: 31px;
  }

  .header__menu-sp .icon__menu.active span {
    background-color: #222;
  }

  .header--scroll .header__menu__item a:after {
    background-color: #fff;
  }


  .header__nav {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100vh;
    padding: 50px 0 30px;
    overflow-y: auto;
    background: #fff;
    transform: translate(0, -110%);
    will-change: transform, opacity;
  }

  .header-open .header__nav {
    z-index: 10;
    animation: slide 0.3s ease-out forwards;
  }

  .header__nav .header__menu {
    flex-direction: column;
    height: 100%;
    width: 100vw;
    justify-content: center;
    align-items: center;
  }

  .header__nav .header__menu__item a {
    color: #222;
    font-size: 21px;
    line-height: 79px;
    letter-spacing: 0.025em;
    margin: auto;
    font-weight: 700;
  }

  .header__nav .header__menu__item {
    opacity: 0;
    transition: all 0.3s;
    transform: translateY(-20px);
  }

  .header.header-open .header__nav .header__menu__item {
    opacity: 1;
    transform: translateY(0);
  }

  .header.header-close .header__nav .header__menu__item {
    opacity: 0;
    transform: translateY(-20px);
  }

  .header.header-open .header__nav .header__menu__item:nth-of-type(1) {
    transition-delay: 0.3s;
  }

  .header.header-open .header__nav .header__menu__item:nth-of-type(2) {
    transition-delay: 0.33s;
  }

  .header.header-open .header__nav .header__menu__item:nth-of-type(3) {
    transition-delay: 0.36s;
  }

  .header.header-open .header__nav .header__menu__item:nth-of-type(4) {
    transition-delay: 0.39s;
  }

  .header.header-open .header__nav .header__menu__item:nth-of-type(5) {
    transition-delay: 0.42s;
  }

  .header.header-open .header__nav .header__menu__item:nth-of-type(6) {
    transition-delay: 0.45s;
  }
}

/*keyvisual*/
.keyvisual {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/imgKeyvisualEnvironment_1.png) no-repeat center center;
  background-size: cover;
  height: 720px;
  width: 100%;
  position: relative;
}

.keyvisual .bg-overlay {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.keyvisual .bg-overlay:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: #000000;
  opacity: 0.3;
}

.keyvisual .keyvisual__content {
  width: 100%;
  height: calc(100% + 25px);
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  z-index: 2;
  justify-content: center;
  top: 348px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.keyvisual .cover__radius {
  position: absolute;
  z-index: 3;
  bottom: -1px;
  right: 0;
}

.page__title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.95);
  font-size: 50px;
  line-height: 74px;
  letter-spacing: 0.05em;
}

.page__description {
  margin-top: 20px;
  margin-bottom: -15px;
  text-shadow: 0px 3px 15px rgba(0, 0, 0, 0.75);
  font-size: 20px;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 0.05em;
  color: #fff;
}

.scroll-control {
  position: absolute;
  z-index: 4;
  bottom: -5px;
  left: 50%;
  text-transform: uppercase;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.scroll-control span {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  line-height: 60px;
  letter-spacing: 0.05em;
  color: #fff;
  position: relative;
  margin-bottom: 15px;
  transform: translate(-50%, -50%) rotate(90deg);
}

.scroll-bar {
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, 0.4);
  top: 50%;
  transform: translate(0%, -50%);
  margin-top: 13px;
  position: absolute;
  overflow: hidden;
  transition: 1s ease all;
}

@keyframes scrollBar {
  0% {
    top: -100%;
  }
  80% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

.scroll-bar:before {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  border-left: 1px solid #fff;
  height: 100%;
  z-index: 1;
  animation: scrollBar 1.5s infinite linear;
}


.main__menu ul li:nth-of-type(2), .main__menu ul li:nth-of-type(1) {
  margin-right: 40px;
}

.main__menu ul li {
  margin-right: 40px;
}

.section .section__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section .section__name span {
  margin-top: 8px;
}

.section .section__heading {
  margin-top: 20px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 60px;
  text-align: center;
}

.section .section__description {
  margin-top: 20px;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 36px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .keyvisual {
    background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/imgKeyvisualEnvironmentSp_1.png) no-repeat center center;
    background-size: cover;
    height: 575px;
  }

  .slideshow .movie {
    display: block;
  }

  .slideshow .movie:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    background-color: #000000;
    opacity: 0.3;
  }

  .scrollable::-webkit-scrollbar {
    height: 5px;
  }

  .pc-visible {
    display: none;
  }

  .sp-visible {
    display: block;
  }

  .container {
    padding: 0 20px;
  }

  .keyvisual .keyvisual__content {
    top: 255px;
  }

  .keyvisual .keyvisual__content .page__title {
    line-height: 40px;
    font-size: 30px;
    letter-spacing: 0.025em;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
  }

  .keyvisual .keyvisual__content .page__description {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 23px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.18);
    margin-bottom: 0;
    margin-top: 0;
  }

  .keyvisual .cover__radius {
    height: 77px;
    width: 107px;
  }

  .scroll-control span {
    font-size: 11px;
    line-height: 30px;
    letter-spacing: 0.025em;
    margin-bottom: 22px;
  }

  .scroll-bar {
    margin-top: 15px;
    height: 34px;
  }


  .section .section__name {
    font-size: 13px;
    letter-spacing: 0.025em;
  }

  .section .section__heading {
    font-size: 25px;
    letter-spacing: 0.025em;
    line-height: 38px;
  }

  .section .section__description {
    margin-top: 17px;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 26px;
    text-align: center;
  }

  .menu__sp--content.active nav ul li:nth-of-type(5) {
    transform: translateY(48px);
    transition: opacity 0.2386s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.09s, transform 0.42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.069s, -webkit-transform 0.42827s cubic-bezier(0.52, 0.16, 0.52, 0.84) 0.069s;
  }
}

/*ecology */
#feature-section {
  padding-top: 0;
}

.ecology-section {
  margin-top: 75px;
}

.ecology__list {
  margin-top: 70px;
}

.ecology__item {
  display: flex;
  flex-direction: row;
  margin-bottom: 100px;
  justify-content: space-between;
}

.ecology__item:first-child {
  margin-bottom: 74px;
}

.ecology__item:last-child {
  margin-bottom: 0;
}

.ecology__item:nth-child(even) {
  flex-direction: row-reverse;
}

.ecology__item__title {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 42px;
  position: relative;
  margin-bottom: 0;
}

.ecology__item__title span:nth-of-type(2) {
  position: relative;
  z-index: 1;
}

.ecology__item__title .item__number {
  position: absolute;
  top: -140px;
  left: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 135.6px;
  text-align: left;
  color: #eff7ff;
}

.ecology__item:nth-child(even) .ecology__item__title .item__number {
  left: auto;
  right: 0;
  top: -70px;
}

.ecology__item__image {
  width: 55.6%;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.ecology__item__image .sp-img {
  display: none;
}

.ecology__item__content {
  position: relative;
  z-index: 2;
  width: 62%;
  max-width: 665px;
  margin-top: 200px;
  margin-right: -185px;
}

.ecology__item__info {
  background-color: #fff;
  padding: 40px 50px 38px;
}

.ecology__item:nth-child(even) .ecology__item__content {
  margin-right: 0;
  margin-left: -185px;
}

.ecology__item:nth-of-type(1) .ecology__item__content {
  max-width: 565px;
  margin-top: 185px;
}

.ecology__item:nth-of-type(1) .ecology__item__info {
  background-color: transparent;
}

.ecology__item:nth-child(even) .ecology__item__info {
  padding-right: 0;
}

.ecology__item:nth-child(odd) .ecology__item__info {
  padding-left: 0;
}

.ecology__item:nth-of-type(4) .ecology__item__content {
  margin-top: 245px;
}

.ecology__item__description {
  margin-top: 17px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 28px;
}

.ecology__item:nth-of-type(1) .ecology__item__image {
  padding-left: 40px;
}

@media screen and (max-width: 768px) {
  .ecology-section {
    margin-top: 58px;
  }

  .ecology-section .section__name img {
    width: 43px;
    height: 43px;
  }

  .ecology__list {
    margin-top: 35px;
  }

  .ecology__item {
    margin-bottom: 60px;
    flex-direction: column-reverse;
  }

  .ecology__item:first-child {
    margin-bottom: 60px;
  }

  .ecology__item:nth-child(even) {
    flex-direction: column-reverse;
  }

  .ecology__item__title {
    font-size: 19px;
    letter-spacing: 0.015em;
    line-height: 31px;
    margin-bottom: 0;
  }

  .ecology__item:nth-of-type(1) .ecology__item__image {
    padding-left: 0;
    margin-bottom: 0;
  }

  .ecology__item__title .item__number,
  .ecology__item:nth-child(even) .ecology__item__title .item__number {
    top: 0;
    left: auto;
    right: 0;
    font-size: 70px;
    line-height: 68px;
  }

  .ecology__item__image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .ecology__item__image .sp-img {
    display: block;
    margin: auto;
    width: fit-content;
  }

  .ecology__item__image .pc-img {
    display: none;
  }

  .ecology__item__content {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    margin-right: 0;
  }

  .ecology__item__description {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 26px;
  }

  .ecology__item:nth-of-type(1) .ecology__item__content {
    max-width: 100%;
    margin-top: -7px;
  }

  .ecology__item:nth-child(even) .ecology__item__content {
    margin-left: 0;
  }

  .ecology__item__info {
    padding: 0;
  }

  .ecology__item:nth-of-type(4) .ecology__item__content {
    margin-top: 0;
  }
}

/*status section*/
.status-section {
  margin-top: 80px;
}

.chart-result {
  margin-top: 52px;
}

.chart .chart__title {
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 42px;
  text-align: center;
  color: #222;
  margin-bottom: 35px;
}

.chart .chart__image {
  border: 3px solid #f3f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart.chart-result .chart__image {
  padding: 14px 14px 4px 48px;
}

.chart-target {
  margin-top: 50px;
}

.chart.chart-target .chart__image {
  padding: 24px 20px 13px;
  border: none;
}

.chart .chart__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.chart .chart__item {
  width: calc(50% - 10px);
  border: 3px solid #f3f5f7;
  display: flex;
  flex-direction: column;;
  justify-content: space-between;
}

.chart .chart__sub-title {
  margin-left: -3px;
  margin-right: -3px;
  margin-top: -3px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  background: #4885c3;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #fff;
}

.chart .chart__description {
  margin-top: 9px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 32px;
  text-align: left;
  color: #222;
}

@media screen and (max-width: 768px) {
  .chart.chart-result .chart__image {
    padding: 14px;
  }

  .status-section {
    margin-top: 80px;
  }

  .status-section .section__name img {
    width: 44px;
    height: 42px;
  }

  .chart .chart__title {
    font-size: 19px;
    letter-spacing: 0.015em;
    line-height: 31px;
    margin-bottom: 25px;
  }

  .chart .chart__image {
    border: 2px solid #f3f5f7;
  }

  .chart.chart-result .chart__image img {
    width: 300px;
    height: 270px;
  }

  .chart-result {
    margin-top: 40px;
  }

  .chart-target {
    margin-top: 40px;
  }

  .chart .chart__list {
    flex-direction: column;
    justify-content: center;
  }

  .chart .chart__item {
    width: 100%;
    border: 2px solid #f3f5f7;
    margin-bottom: 15px;
  }

  .chart .chart__item:last-child {
    margin-bottom: 0;
  }

  .chart .chart__sub-title {
    margin-left: -2px;
    margin-right: -2px;
    margin-top: -2px;
    padding: 5px 10px;
    min-height: 41px;
    font-size: 16px;
    letter-spacing: 0.015em;
  }

  .chart.chart-target .chart__image {
    padding: 10px;
  }

  .chart .chart__description {
    margin-top: 10px;
    letter-spacing: 0.025em;
    line-height: 16px;
  }
}

/*chart table*/
.chart-table {
  margin-top: 75px;
}

.table-target {
  box-sizing: border-box;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 920px;
}

.table-target th {
  padding: 20px 10px;
  background: #4885c3;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 0.05em;
  line-height: 24px;
  text-align: center;
  color: #fff;
  border-right: 3px solid #f3f5f7;
  border-bottom: 3px solid #f3f5f7;
  vertical-align: middle;
}

.table-target th:last-child {
  border-right: none;
}

.table-target th .th--small {
  font-size: 13px;
}

.table-target td {
  font-weight: normal;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 25px;
  text-align: center;
  color: #222;
  padding: 15px 27px 26px;
  border-right: 3px solid #f3f5f7;
  border-bottom: 3px solid #f3f5f7;
  vertical-align: middle;
}

.table-target td:first-child {
  border-left: 3px solid #f3f5f7;
}

.table-target td .img-icon {
  margin-bottom: 2px;
}

.table-target td ul {
  padding-top: 9px;
}

.table-target td ul li {
  text-align: left;
  position: relative;
  padding-left: 15px;
  margin-bottom: 9px;
}

.table-target td ul li:last-child {
  margin-bottom: 0;
}

.table-target td ul li:before {
  position: absolute;
  content: '';
  height: 3px;
  width: 3px;
  border-radius: 50%;
  background-color: #222;
  left: 0;
  top: 11px;
}

.table-target td .txt-number {
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: #222;
  display: block;
}

.table-target td .txt-number.txt-number--negative {
  position: relative;
  padding-left: 20px;
  display: initial;
}

.table-target td .txt-number.txt-number--negative:before {
  position: absolute;
  content: '';
  width: 16px;
  height: 4px;
  background-color: #222;
  left: 0;
  top: calc(50% + 3px);
  transform: translateY(-50%);
}

.table-target td .txt-number span {
  font-size: 17px;
  letter-spacing: 0.05em;
}

.table-target td .txt-number span:nth-of-type(2) {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.table-target td .img-bar-chart {
  margin-top: 7px;
}

.table__wrap {
  overflow: auto;
}

.table {
  position: relative;
  z-index: 1;
}

.scrollable .hand-scroll {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  opacity: 1;
  animation: handFadeIn 0.4s forwards;
  user-select: none;
}

.scrollable .hand-scroll.active {
  animation: handFadeOut 0.4s forwards;
}

@keyframes handFadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

@keyframes handFadeOut {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    z-index: 0;
    visibility: hidden;
    opacity: 0;
  }
}

@media screen and (max-width: 994px) {
  .table__wrap {
    padding-bottom: 10px;
    margin-right: -30px;
  }

  .table-target {
    min-width: 950px;
  }
}

@media screen and (max-width: 768px) {
  .table-target {
    min-width: 734px;
  }

  .table-target td ul {
    padding-top: 0;
  }

  .table__wrap {
    overflow: auto;
    margin-right: -20px;
  }

  .chart-table {
    margin-top: 60px;
  }

  .table-target th {
    font-size: 12px;
    letter-spacing: 0.015em;
    line-height: 16px;
    padding: 12px 10px 11px;
    border-right: 2px solid #f3f5f7;
    border-bottom: 2px solid #f3f5f7;
  }

  .table-target th:first-child {
    min-width: 170px !important;
  }

  .table-target th:nth-of-type(3) {
    min-width: 175px !important;
  }

  .table-target th:last-child {
    min-width: 130px !important;
  }

  .table-target th .th--small {
    font-size: 10px;
  }

  .table-target td {
    font-size: 12px;
    letter-spacing: 0.025em;
    line-height: 15px;
    border-right: 2px solid #f3f5f7;
    border-bottom: 2px solid #f3f5f7;
    padding: 15px;
  }

  .table-target td:first-child {
    border-left: 2px solid #f3f5f7;
    padding: 15px 5px;
  }

  .table-target td .img-icon .icon-01 {
    width: 32px;
    height: 25px;
  }

  .table-target td .img-icon .icon-02 {
    width: 31px;
    height: 25px;
  }

  .table-target td .img-bar-chart img {
    width: 122px;
    height: 18px;
  }

  .table-target td .txt-number {
    margin-top: 10px;
    font-size: 20px;
  }

  .table-target td .txt-number span {
    font-size: 14px;
    letter-spacing: 0.025em;
  }

  .table-target td .txt-number span:nth-of-type(2) {
    font-size: 15px;
    letter-spacing: 0.025em;
  }

  .table-target td .txt-number.txt-number--negative:before {
    width: 10px;
    height: 2px;
    top: 50%;
  }

  .table-target td .txt-number.txt-number--negative {
    padding-left: 16px;
  }
}

/*other-initiative*/
.chart-other-initiative {
  margin-top: 80px;
}

.other-initiative__list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.other-initiative__item {
  width: calc(33.33% - 14px);
  background-color: #f3f5f7;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.other-initiative__item .other-initiative__title {
  margin-top: 8px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 30px;
  text-align: center;
  color: #222;
}

.other-plan__list {
  margin-top: 60px;
  display: flex;
  flex-direction: row;
}

.other-plan__list .other-plan__item {
  width: 50%;
  padding: 30px 35px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.other-plan__list .other-plan__item:first-child {
  border-right: 2px solid #f3f5f7;
}

.other-plan__list .other-plan__title {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 26px;
  text-align: center;
  color: #222;
}

.other-plan__list .other-plan__description {
  margin-top: 10px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #222;
}

.text-memo {
  margin-top: 60px;
  padding: 20px 30px;
  border: 2px solid #f3f5f7;
}

.text-memo .text-memo__title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  color: #646464;
}

.text-memo .text-memo__description {
  margin-top: 8px;
  font-weight: normal;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: center;
  color: #646464;
}

@media screen and (max-width: 768px) {
  .chart-other-initiative {
    margin-top: 55px;
  }

  .other-initiative__list {
    flex-direction: column;
  }

  .other-initiative__item {
    width: 100%;
    background-color: #f3f5f7;
    padding: 20px 10px 20px;
    margin-bottom: 10px;
    height: 138px;
  }

  .other-plan__list .other-plan__item {
    display: block;
  }

  .other-initiative__item:first-child .icon img {
    width: 48px;
    height: 48px;
  }

  .other-initiative__item:nth-of-type(2) .icon img {
    width: 40px;
    height: 40px;
  }

  .other-initiative__item:last-child .icon img {
    width: 46px;
    height: 46px;
  }

  .other-initiative__item:last-child {
    margin-bottom: 0;
  }

  .other-initiative__item .other-initiative__title {
    margin-top: 5px;
    font-size: 15px;
    letter-spacing: 0.025em;
    line-height: 24px;
  }

  .other-plan__list {
    margin-top: 40px;
    flex-direction: column;
  }

  .other-plan__list .other-plan__item {
    width: 100%;
    padding: 20px 0;
  }

  .other-plan__list .other-plan__item:first-child {
    border-bottom: 2px solid #f3f5f7;
    border-right: none;
    padding-top: 0;
  }

  .other-plan__list .other-plan__item:last-child {
    padding-bottom: 0;
  }

  .other-plan__list .other-plan__title {
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 26px;
  }

  .other-plan__list .other-plan__description {
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 0.025em;
    line-height: 25px;
  }

  .text-memo {
    margin-top: 40px;
    padding: 15px 20px;
  }

  .text-memo .text-memo__title {
    font-size: 12px;
    letter-spacing: 0.025em;
    line-height: 24px;
  }

  .text-memo .text-memo__description {
    margin-top: 10px;
    font-size: 12px;
    letter-spacing: 0.015em;
    line-height: 24px;
    text-align: left;
  }
}

/*CERTIFICATION*/
.certification-section {
  margin-top: 100px;
}

.certification__list {
  margin-top: 47px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px 40px;
}

.certification__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.certification__title {
  margin-top: 10px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.03em;
  text-align: center;
  color: #222;
}

.certification__description {
  margin-top: 11px;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 28px;
  text-align: left;
  color: #222;
}

@media screen and (max-width: 768px) {
  .certification-section {
    margin-top: 70px;
  }

  .certification-section .section__name img {
    width: 45px;
    height: 45px;
  }

  .certification__list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 40px 40px;
  }

  .certification__image img {
    height: 77px;
    width: 77px;
  }

  .certification__title {
    margin-top: 10px;
    font-size: 17px;
    line-height: 21px;
    letter-spacing: 0.025em;
  }

  .certification__description {
    font-size: 13px;
    margin-top: 15px;
    letter-spacing: 0.025em;
    line-height: 24px;
  }
}

/*line up*/
.line-up-section {
  margin-bottom: 100px;
}

.section--main-product {
  margin-top: 110px;
  position: relative;
  padding-top: 97px;
  overflow: hidden;
}

.section--main-product::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 750px;
  background-color: #F3F5F7;
  z-index: -1;
}

.section--main-product .section__sub-heading {
  margin-top: 58px;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 42px;
  text-align: center;
  color: #222;
  padding-bottom: 30px;
}

.section--main-product .container {
  overflow: hidden;
  padding-bottom: 60px;
  max-width: 1920px;
  overflow: hidden;
  margin: auto;
}

.section--main-product .product-slider__item__img {
  height: 360px;
  margin-bottom: 20px;
}

.section--main-product .product-slider .owl-dots {
  top: 510px;
}

.section--main-product .product-slider__item .tabs {
  margin-top: 37px;
  padding-bottom: 40px;
}

.section--main-product .product-slider__item .tabs li {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #333;
  border-bottom: none;
  padding: 9px 36px 0;
  cursor: default;
  transition: none;
}

.section--main-product .product-slider {
  margin-top: 58px;
}

.section--main-product .product-slider .owl-nav > button.owl-prev {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/slick-prev.png) no-repeat center;
  background-size: contain;
}

.section--main-product .product-slider .owl-nav > button {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/slick-nav.png) no-repeat center;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .line-up-section {
    margin-bottom: 50px;
  }

  .line-up-section .section__name img {
    width: 48px;
    height: 40px;
  }

  .section--main-product {
    padding-top: 50px;
  }

  .section--main-product .section__sub-heading {
    margin-top: 32px;
    font-size: 16px;
    letter-spacing: 0.025em;
    line-height: 21px;
    padding-bottom: 0;
  }

  .section--main-product {
    margin-top: 70px;
  }

  .section--main-product::before {
    height: 560px;
  }

  .section--main-product .product-slider__item__img {
    height: 221px;
    margin-bottom: 0;
  }

  .section--main-product .product-slider {
    margin-top: 40px;
  }

  .section--main-product .product-slider .owl-dots {
    top: 290px;
  }

  .section--main-product .product-slider__item .tabs {
    margin-top: 0;
    padding-bottom: 40px;
  }

  .section--main-product .product-slider__item .tabs li {
    font-size: 13px;
    letter-spacing: 0.025em;
  }
}

/*other-products*/
.other-products {
  margin-top: 80px;
}

.other-products .container {
  max-width: 1136px;
}

.other-products__content .other-product__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #222;
  padding: 18px;
  background: #f3f5f7;
  min-height: 60px;
  margin-left: -2px;
  margin-right: 0;

}

.other-products__content .other-products__list {
  display: grid;
  flex-wrap: wrap;
  margin-bottom: 65px;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
}

.other-products__content .other-product__item {
  padding: 17px 14px 19px 20px;
  border: 2px solid #f3f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -2px;
  margin-left: -2px;
}

.other-products__content .other-product__item a,
.other-products__content .other-product__item span {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: #333;
  transition: opacity 0.3s ease-in-out;
}

.other-products__content .other-product__item a {
  width: 100%;
  padding-right: 20px;
  position: relative;
}

.other-products__content .other-product__item a:hover {
  opacity: 0.7;
}

.other-products__content .other-product__item a:after {
  position: absolute;
  content: '';
  height: 12px;
  width: 12px;
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/iconNewWindow_1.png) no-repeat center;
  right: 0;
  top: 4px;
  background-size: contain;
}

@media screen and (max-width: 768px) {
  .other-products {
    margin-top: 20px;
  }

  .other-products__content .other-product__title {
    font-size: 13px;
    letter-spacing: 0.025em;
    line-height: 24px;
    padding: 11px;
    min-height: 40px;
    margin-right: 0;
  }

  .other-products__content .other-products__list {
    margin-bottom: 50px;
    grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  }

  .other-products__content .other-product__item {
    padding: 10px 16px 11px 16px;
  }

  .other-products__content .other-product__item a,
  .other-products__content .other-product__item span {
    font-size: 13px;
    line-height: 1;
  }

  .other-products__content .other-product__item a:after {
    top: 1px;
  }

  .other-products__content .other-product__item a:hover {
    opacity: 1;
  }
}

/*footer*/
.footer {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F3F5F7;
  position: relative;
}

.footer .btn-top {
  height: 50px;
  width: 50px;
  background-color: #0779BE;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.16);
  z-index: 8900;
  cursor: pointer;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.footer .btn-top.active {
  position: fixed;
  bottom: 20px;
  top: auto;
  opacity: 1;
}

.social__link {
  margin-top: 60px;
}

.social__link a {
  margin: 0 25px;
}

.footer__link a {
  font-size: 14px;
  font-weight: 400;
  line-height: 36px;
  color: #222222;
  padding-right: 10px;
  position: relative;
  letter-spacing: 0;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer__link a:after {
  content: "";
  position: absolute;
  height: 12px;
  width: 12px;
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/iconNewWindow_1.png) no-repeat center;
  right: -10px;
  top: calc(50% - 12px / 2);
  background-size: contain;
}

.footer__link a:hover {
  color: #606060;
}

.footer__link a:hover:after {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/iconNewWindowHover_1.png) no-repeat center;
  background-size: contain;
}

.footer__row.footer__link {
  margin-top: 20px;
  margin-bottom: 33px;
}

.footer__link__list {
  margin-bottom: 30px;
}

.footer__link__list .footer__link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.footer__link__list .footer__link a {
  background-size: contain;
  border-right: 1px solid #D5D5D5;
  padding-right: 70px;
  padding-left: 30px;
  line-height: 18px;
}

.footer__link__list .footer__link a:last-child {
  border-right: none;
}

.footer__link__list .footer__link a:first-child {
  padding-left: 0;
}

.footer__link__list .footer__link a:after {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/iconNewWindow_1.png) no-repeat center;
  right: 45px;
  background-size: contain;
}

.footer__bg-white {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 10px;
}

.copyright {
  width: 100%;
  max-width: 750px;
}

.author {
  width: 100%;
  max-width: 750px;
}

.author.footer__row {
  height: 68px;
  border: 1px solid #CBCBCB;
}

.author_content {
  width: 100%;
  max-width: 748px;
  height: 66px;
  border: 3px solid #EDEDED;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 15px;
}

.author_content p {
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.copyright {
  padding-bottom: 15px;
  margin-top: 3px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 33px;
}

@media screen and (max-width: 768px) {
  .footer .btn-top {
    width: 40px;
    height: 40px;
  }

  .social__link {
    margin-top: 40px;
  }

  .social__link a img {
    height: 39px;
    width: 39px;
  }

  .social__link a {
    margin: 0 14px;
  }

  .footer__row.footer__link {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .footer__link a {
    font-size: 12px;
    line-height: 18px;
    border: 0;
    padding: 0;
    padding-right: 10px;
  }

  .footer__link__list .footer__link a {
    padding-right: 40px;
  }

  .footer__link__list .footer__link a:after {
    right: 20px;
  }

  .footer__bg-white {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
  }

  .author {
    width: 100%;
  }

  .author_content {
    width: 100%;
    height: auto;
    padding: 10px 15px;
    font-size: 12px;
  }

  .copyright {
    font-size: 11px;
    line-height: 16.5px;
    letter-spacing: 0.015em;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 480px) {
  .footer__link__list .footer__link a:last-child {
    width: 100%;
    padding-left: 0;
    margin-top: 15px;
    padding-right: 0;
  }

  .footer__link__list .footer__link a:last-child:after {
    right: calc(50% - 45px);
  }

  .footer__link__list .footer__link a:nth-of-type(2) {
    border: none;
    padding-right: 20px;
    padding-left: 15px;
  }

  .footer__link__list .footer__link a:nth-of-type(2):after {
    right: 0;
  }
}

.footer__nav-tab {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin: 0 auto 60px;
  width: calc(100% - 60px);
}

.footer__nav-tab .footer__nav__item {
  background-color: #b5b6b6;
  height: 60px;
  max-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.footer__nav-tab .footer__nav__item.active {
  background-color: #1e70bd;
  position: relative;
  cursor: pointer;
}

.footer__nav-tab .footer__nav__item .footer__nav__link {
  position: relative;
  display: inline-block;
  transition: .3s;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 40px;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.footer__nav-tab .footer__nav__item .footer__nav__link:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: .35s;
  transform: translateX(-50%);
}

.footer__nav-tab .footer__nav__item:not(.active) .footer__nav__link:hover:after {
  width: 100%;
}

.footer__nav-tab .footer__nav__item.active .footer__nav__link span {
  position: relative;
  padding-right: 20px;
}

.footer__nav-tab .footer__nav__item.active .footer__nav__link span:after {
  position: absolute;
  content: '';
  height: 8px;
  width: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 0;
  top: 4px;
  transform: rotate(135deg);
}

.footer__sub-menu {
  position: absolute;
  width: 100%;
  top: 57px;
  opacity: 0;
  border: 2px solid #1e70bd;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.footer__sub-menu.active {
  opacity: 1;
  z-index: 1;
}

.footer__nav-tab .footer__nav__item.active:not(.is-mobile):hover .footer__sub-menu {
  opacity: 1;
  z-index: 1;
}

.footer__sub-menu__item {
  border-top: 2px solid #1e70bd;
  background-color: #fff;
}

.footer__sub-menu__item a {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 40px;
  text-align: center;
  color: #1e70bd;
  transition: opacity 0.3s ease-in-out;
}

.footer__sub-menu__item a span {
  position: relative;
  display: inline-block;
}

.footer__sub-menu__item a span:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 2px;
  background-color: #1e70bd;
  transition: .35s;
  transform: translateX(-50%);
}

.footer__sub-menu__item a:hover span:after {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .footer__nav-tab .footer__nav__item {
    height: 40px;
  }

  .footer__nav-tab {
    margin-bottom: 40px;
    width: calc(100% - 40px);
  }

  .footer__nav-tab .footer__nav__item .footer__nav__link {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 0;
  }

  .footer__nav-tab .footer__nav__item.active .footer__nav__link span:after {
    height: 6px;
    width: 6px;
  }

  .footer__sub-menu {
    top: 38px;
    min-width: 223px;
    right: 0;
  }

  .footer__sub-menu__item:first-child {
    border-top: none;
  }

  .footer__sub-menu__item a {
    min-height: 44px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 24px;
  }

  .footer__sub-menu__item a:hover {
    opacity: 1;
  }
}

/*line-up slider*/
.splide {
  position: relative;
  width: 622px;
  margin: 58px auto 0;
}

.splide .splide__track {
  position: relative;
  overflow: visible;
  transform: translate3d(0, 0, 0);
}

.splide .splide__list {
  position: relative;
  touch-action: manipulation;
}

.splide .product-slider__item__img {
  margin: 0 auto 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.splide .product-slider__item__img a {
  display: block;
}

.splide .product-slider__item__img img {
  display: block;
  width: 382px;
  transform: scale(1) translateY(0px);
  transition: transform 0.5s ease-out 0.1s, margin 0.5s ease-out 0.1s, transform-origin 0.5s ease-out 0.1s;
  margin-top: 48px;
  transform-origin: 50% 100%;
}

.splide__slide.is-active img {
  margin-top: 15px;
  transform: scale(1.46597) translateY(50px);
}

.product-slider__item__content {
  opacity: 0;
  transition: opacity 0.4s;
  text-align: center;
  padding-top: 20px;
  margin-top: -10px;
  display: block;
  visibility: hidden;
}

.product-slider__item__content span {
  margin: 0 20px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
  text-align: left;
  color: #333;
  transition: opacity 0.3s ease-in-out;
}

.product-slider__item__content span {
  position: relative;
  padding-right: 20px;
}

.product-slider__item__content span:after {
  position: absolute;
  content: '';
  height: 12px;
  width: 12px;
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/iconNewWindow_1.png) no-repeat center;
  right: 0;
  top: 7px;
  background-size: contain;
}

.product-slider__item:hover a.product-slider__item__content span {
  opacity: 0.7;
}

.product-slider__item__content a {
  transition: opacity 0.3s ease-in-out;
}

.product-slider__item__content a:hover {
  opacity: 0.7;
}

.splide__slide.is-active .product-slider__item__content {
  opacity: 1;
  visibility: inherit;
}

.splide__pagination {
  position: absolute;
  top: 488px;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  width: 98px;
  justify-content: space-between;
}

.splide__pagination .splide__pagination__page {
  background-color: #fff;
  border: 1px solid #CACAC6;
  height: 11px;
  width: 11px;
}

.splide__pagination .splide__pagination__page.is-active {
  background-color: #0779BE;
  border-color: #0779BE;
  transform: scale(1);
}

.splide .splide__arrow {
  position: absolute;
  display: block;
  border: none;
  overflow: hidden;
  width: 70px;
  height: 70px;
  text-indent: -9999px;
  top: 180px;
  z-index: 99;
  outline: none;
  cursor: pointer;
  opacity: 1;
}

.splide .splide__arrow--prev {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/slickPrev_1.png) no-repeat center;
  background-size: contain;
  left: calc(50% - 470px);
}

.splide .splide__arrow--next {
  background: url(https://image.itmedia.co.jp/pcuser/special/ls161010/slickNav_1.png) no-repeat center;
  background-size: contain;
  right: calc(50% - 460px);
}

@media screen and (max-width: 980px) {
  .splide .splide__arrow--prev {
    left: -65px;
  }

  .splide .splide__arrow--next {
    right: -65px;
  }
}

@media screen and (max-width: 768px) {
  .splide .product-slider__item__img a {
    height: inherit;
  }

  .product-slider__item__content span:last-child:after {
    top: 4px;
  }

  .product-slider__item:hover .product-slider__item__content span {
    opacity: 1;
  }

  .splide {
    position: relative;
    width: auto;
    margin: 40px -20px 0;
  }

  .splide .splide__track {
    overflow: hidden;
  }

  .splide .product-slider__item__img {
    height: 221px;
    margin-bottom: 0
  }

  .splide .product-slider__item__img img {
    display: block;
    width: auto;
    max-width: 280px;
    height: inherit;
    margin: 0 auto;
  }

  .splide__slide.is-active img {
    transform: none;
    margin-top: 0;
  }

  .product-slider__item__content {
    margin-top: 12px;
    font-size: 13px;
    padding-top: 0;
  }

  .product-slider__item__content span {
    font-size: 13px;
    letter-spacing: 0.025em;
  }

  .splide .splide__arrow {
    top: calc(50% - 30px);
    width: 43px;
    height: 43px;
  }

  .splide .splide__arrow--prev {
    left: 11px;
  }

  .splide .splide__arrow--next {
    right: 11px;
  }

  .splide .splide__pagination {
    top: auto;
    bottom: -30px;
  }
}
