@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

body {
  font-family: 'Inter','Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.8em;
  color: #333333;
  overflow-x: hidden;
}

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

.header {
  padding: 20px 20px 16px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 0 0 0 10px;
  }
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 413px) {
  .header__main {
    max-width: calc(100% - 70px);
  }
}

.header__logo {
  font-size: 10px;
  line-height: 1.5em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .header__logo img {
    max-width: 141px;
  }
}

@media screen and (max-width: 374px) {
  .header__logo img {
    max-width: 120px;
  }
}

.header__logo--scsk {
  margin-left: auto;
}

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

@media screen and (max-width: 413px) {
  .header__logo--scsk {
    position: absolute;
    right: 70px;
    bottom: 14px;
  }
}

.header__logo--scsk a:hover, .header__logo--scsk a:active {
  opacity: .7;
}

@media screen and (max-width: 768px) {
  .header__logo--scsk img {
    max-width: 55px;
  }
}

@media screen and (max-width: 374px) {
  .header__logo--scsk img {
    max-width: 45px;
  }
}

.header__logo a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header__logo a:link, .header__logo a:visited {
  text-decoration: none;
  color: #333;
}

.header__logo a:hover, .header__logo a:active {
  text-decoration: none;
  color: #333;
  opacity: .7;
}

.header__logo a img {
  margin-right: 15px;
}

@media screen and (max-width: 374px) {
  .header__logo a img {
    margin-right: 5px;
  }
}

.header__title {
  font-size: 10px;
  line-height: 1.5em;
  font-weight: normal;
  margin-bottom: 16px;
}

@media screen and (max-width: 768px) {
  .header__title {
    margin-bottom: 3px;
  }
}

@media screen and (max-width: 413px) {
  .header__title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.header__btnwrap {
  display: flex;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .header__btnwrap {
    display: none;
  }
}

.header__btnwrap .btn--doc,
.header__btnwrap .btn--mail {
  min-width: 160px;
  min-height: 50px;
  font-size: 15px;
  line-height: 1.5em;
}

@media screen and (max-width: 1200px) {
  .header__btnwrap .btn--doc,
  .header__btnwrap .btn--mail {
    min-width: 140px;
  }
}

.header__btnwrap .btn--mail {
  margin-left: 5px;
}

.header__nav {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 768px) {
  .header__nav {
    display: none;
  }
}

.header__nav > li:not(:first-child) {
  margin-left: 35px;
}

@media screen and (max-width: 1200px) {
  .header__nav > li:not(:first-child) {
    margin-left: 30px;
  }
}

.header__nav > li a {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: bold;
}

.header__nav > li a:link, .header__nav > li a:visited {
  text-decoration: none;
  color: #333;
}

.header__nav > li a:hover, .header__nav > li a:active {
  text-decoration: none;
  color: #0CA26C;
}

.header__nav > li.active a:link, .header__nav > li.active a:visited, .header__nav > li.active a:hover, .header__nav > li.active a:active {
  color: #0CA26C;
}

.header__menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__menu {
    display: block;
    background: #0CA26C;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 10px;
  }
  .header__menu img {
    width: 25px;
    height: auto;
  }
}

.btn--small {
  font-size: 15px;
  line-height: 1.4em;
  display: inline-block;
  font-weight: bold;
  padding: 14px 37px 14px 31px;
  background: #fff;
  color: #0CA26C;
  border: 2px solid #0CA26C;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
}

.btn--small:link, .btn--small:visited {
  color: #0CA26C;
  background: #fff;
  text-decoration: none;
}

.btn--small:hover, .btn--small:active {
  color: #fff;
  background: #0CA26C;
  text-decoration: none;
}

.btn--small:hover:after, .btn--small:active:after {
  border-color: #fff;
}

.btn--small:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 2px solid #0CA26C;
  border-right: 2px solid #0CA26C;
  transform: rotate(45deg);
  right: 15px;
  top: calc(50% - 3px);
}

.btn--normal {
  font-size: 16px;
  line-height: 1.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 14px 37px 14px 31px;
  background: #fff;
  color: #0CA26C;
  border: 2px solid #0CA26C;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
  max-width: 300px;
  min-width: 300px;
  min-height: 70px;
}

@media screen and (max-width: 768px) {
  .btn--normal {
    min-height: 60px;
  }
}

.btn--normal:link, .btn--normal:visited {
  color: #0CA26C;
  background: #fff;
  text-decoration: none;
}

.btn--normal:hover, .btn--normal:active {
  color: #fff;
  background: #0CA26C;
  text-decoration: none;
  border-color: #fff;
}

.btn--normal:hover:after, .btn--normal:active:after {
  border-color: #fff;
}

.btn--normal:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 2px solid #0CA26C;
  border-right: 2px solid #0CA26C;
  transform: rotate(45deg);
  right: 20px;
  top: calc(50% - 5px);
}

.btn--back {
  font-size: 16px;
  line-height: 1.4em;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  padding: 14px 37px 14px 31px;
  background: #fff;
  color: #0CA26C;
  border: 2px solid #0CA26C;
  border-radius: 5px;
  box-sizing: border-box;
  position: relative;
  max-width: 240px;
  width: 100%;
  min-height: 70px;
}

@media screen and (max-width: 768px) {
  .btn--back {
    min-height: 60px;
  }
}

.btn--back:link, .btn--back:visited {
  color: #0CA26C;
  background: #fff;
  text-decoration: none;
}

.btn--back:hover, .btn--back:active {
  color: #fff;
  background: #0CA26C;
  text-decoration: none;
  border-color: #fff;
}

.btn--back:hover:after, .btn--back:active:after {
  border-color: #fff;
}

.btn--back:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  border-top: 2px solid #0CA26C;
  border-left: 2px solid #0CA26C;
  transform: rotate(-45deg);
  left: 20px;
  top: calc(50% - 5px);
}

.btn--external {
  background: #0CA26C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
  padding: 0;
  border-radius: 3px;
  box-sizing: border-box;
  max-width: 300px;
  width: 100%;
  min-height: 70px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  .btn--external {
    min-height: 60px;
  }
}

.btn--external:link, .btn--external:visited {
  text-decoration: none;
  color: #fff;
}

.btn--external:hover, .btn--external:active {
  text-decoration: none;
  color: #fff;
  background: #0DBF7E;
}

.btn--external:after {
  content: "";
  width: 10px;
  height: 10px;
  background: url(../img/icon_external.png) no-repeat center center;
  background-size: 100% auto;
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
}

.btn--doc {
  background: #0C48A2;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
  padding: 0;
  border-radius: 3px;
  box-sizing: border-box;
  max-width: 300px;
  width: 100%;
  min-height: 70px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .btn--doc {
    min-height: 60px;
  }
}

.btn--doc img {
  margin-right: 15px;
  margin-left: -1em;
}

.btn--doc:link, .btn--doc:visited {
  text-decoration: none;
  color: #fff;
}

.btn--doc:hover, .btn--doc:active {
  text-decoration: none;
  color: #fff;
  background: #0F5FD6;
}

.btn--mail {
  background: #0CA26C;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 600;
  padding: 0;
  border-radius: 3px;
  box-sizing: border-box;
  max-width: 300px;
  width: 100%;
  min-height: 70px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .btn--mail {
    min-height: 60px;
  }
}

.btn--mail img {
  margin-right: 15px;
  margin-left: -1em;
}

.btn--mail:link, .btn--mail:visited {
  text-decoration: none;
  color: #fff;
}

.btn--mail:hover, .btn--mail:active {
  text-decoration: none;
  color: #fff;
  background: #0DBF7E;
}

.btn--pagetop {
  font-size: 0;
  line-height: 0;
  z-index: 9999;
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  right: 20px;
  bottom: 20px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(80px);
  transition: transform 0.3s, opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .btn--pagetop {
    bottom: 70px;
    width: 50px;
    height: 50px;
  }
}

.btn--pagetop.active {
  pointer-events: inherit;
  cursor: pointer;
  opacity: 1;
  transform: translateY(0);
}

.title--small {
  text-align: center;
  font-size: 30px;
  line-height: 1.5em;
  text-align: center;
  font-weight: bold;
  margin: 0 0 50px;
}

@media screen and (max-width: 768px) {
  .title--small {
    font-size: 22px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.title--normal {
  text-align: center;
  font-size: 36px;
  line-height: 1.5em;
  margin: 0 0 40px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .title--normal {
    font-size: 25px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.title--normal small {
  font-size: 14px;
  line-height: 1.5em;
  display: block;
  color: #0CA26C;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .title--normal small {
    font-size: 11px;
    line-height: 1.5em;
  }
}

.title--normal h2 {
  font-size: 36px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .title--normal h2 {
    font-size: 25px;
    line-height: 1.5em;
  }
}

.title--normal--white {
  text-align: center;
  font-size: 36px;
  line-height: 1.5em;
  margin: 0 0 40px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .title--normal--white {
    font-size: 25px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.title--normal--white small {
  font-size: 14px;
  line-height: 1.5em;
  display: block;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .title--normal--white small {
    font-size: 11px;
    line-height: 1.5em;
  }
}

.title--normal--white h2 {
  font-size: 36px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .title--normal--white h2 {
    font-size: 25px;
    line-height: 1.5em;
  }
}

.keyvisual {
  background: url(../img/keyvisual_img01.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .keyvisual {
    min-height: 400px;
    background-image: url(../img/keyvisual_img01_sp.jpg);
    background-position: center bottom;
    justify-content: center;
    align-items: flex-start;
  }
}

.keyvisual__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.keyvisual__title {
  font-size: 45px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 30px;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (max-width: 768px) {
  .keyvisual__title {
    font-size: 25px;
    line-height: 1.5em;
    margin: 35px 0 0;
  }
}

.keyvisual__title small {
  font-size: 18px;
  line-height: 1.5em;
  display: block;
}

@media screen and (max-width: 768px) {
  .keyvisual__title small {
    font-size: 12px;
    line-height: 1.5em;
  }
}

.keyvisual__badge {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .keyvisual__badge {
    position: absolute;
    justify-content: center;
    bottom: -70px;
    width: 100%;
    left: 0;
  }
}

.keyvisual__badge > li {
  width: 140px;
  font-size: 0;
  line-height: 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.keyvisual__badge > li:not(:last-child) {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .keyvisual__badge > li:not(:last-child) {
    margin-right: 5px;
  }
}

@media screen and (max-width: 768px) {
  .keyvisual__badge > li {
    width: 130px;
  }
}

@media screen and (max-width: 414px) {
  .keyvisual__badge > li {
    width: calc(33.3% - 15px);
  }
}

.topnews {
  background: #F1F8F5;
  padding: 60px 20px 55px;
}

@media screen and (max-width: 768px) {
  .topnews {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

.topnews__inner {
  max-width: 1000px;
  margin: 0 auto 30px;
  position: relative;
}

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

.topnews__title {
  text-align: center;
  font-size: 30px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 30px;
}

.topnews__title small {
  display: block;
  font-size: 14px;
  line-height: 1.5em;
  color: #0CA26C;
}

.topnews__title h2 {
  font-size: 30px;
  line-height: 1.5em;
}

.topnews__btnwrap {
  position: absolute;
  right: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .topnews__btnwrap {
    position: relative;
    text-align: center;
  }
}

.newslist__block {
  display: flex;
  border-bottom: 1px solid #DBE8E2;
  padding: 25px 0;
}

@media screen and (max-width: 768px) {
  .newslist__block {
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
  }
}

.newslist__block:first-child {
  padding-top: 0;
}

.newslist__block:last-child {
  border-bottom: none;
}

.newslist__block__date {
  width: 100px;
  font-size: 15px;
  line-height: 1.5em;
  font-weight: bold;
  padding: 4px 0;
}

@media screen and (max-width: 768px) {
  .newslist__block__date {
    font-size: 13px;
    line-height: 1.5em;
    width: auto;
    margin-right: 10px;
  }
}

.newslist__block__category {
  margin-right: 20px;
}

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

.newslist__block__category a {
  display: inline-block;
  border: 1px solid #0CA26C;
  padding: 6px;
  min-width: 100px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: bold;
  border-radius: 3px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .newslist__block__category a {
    font-size: 11px;
    line-height: 1.5em;
  }
}

.newslist__block__category a:link, .newslist__block__category a:visited {
  text-decoration: none;
  color: #0CA26C;
}

.newslist__block__category a:hover, .newslist__block__category a:active {
  text-decoration: none;
  color: #fff;
  background: #0CA26C;
}

.newslist__block__title {
  width: calc(100% - 220px);
  font-size: 16px;
  line-height: 1.8em;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  .newslist__block__title {
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.8em;
  }
}

.newslist__block__title a {
  display: block;
  padding-right: 35px;
  position: relative;
}

.newslist__block__title a:link, .newslist__block__title a:visited {
  color: #333;
  text-decoration: underline;
}

.newslist__block__title a:hover, .newslist__block__title a:active {
  color: #333;
  text-decoration: none;
}

.newslist__block__title a:hover:after,
.newslist__block__title a:hover:before, .newslist__block__title a:active:after,
.newslist__block__title a:active:before {
  opacity: 1;
}

.newslist__block__title a:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0CA26C;
  position: absolute;
  right: 0;
  top: calc(50% - 14px);
  opacity: 1;
}

.newslist__block__title a:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 10px;
  top: calc(50% - 5px);
  opacity: 1;
}

.newslist__block__title a.external:after {
  width: 10px;
  height: 10px;
  background: url(../img/icon_external.png) no-repeat center center;
  background-size: 100% auto;
  transform: rotate(0);
  border: none;
  right: 6px;
  top: calc(50% - 7px);
}

.importance__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .importance__inner {
    padding: 40px 20px;
  }
}

.importance__title {
  margin: 0 0 60px;
  text-align: center;
  font-size: 36px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .importance__title {
    font-size: 23px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.importance__title small {
  font-size: 20px;
}

.importance__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.importance__block:not(:last-child) {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .importance__block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.importance__block:not(:last-child) .importance__block__image {
  order: 2;
}

@media screen and (max-width: 768px) {
  .importance__block:not(:last-child) .importance__block__image {
    order: 1;
  }
}

.importance__block__image {
  width: 50%;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .importance__block__image {
    width: 100%;
    margin-bottom: 25px;
  }
}

.importance__block__text {
  width: calc(50% - 60px);
}

@media screen and (max-width: 768px) {
  .importance__block__text {
    width: 100%;
    order: 2;
  }
}

.importance__block__text p:not(:last-child) {
  margin-bottom: 20px;
}

.importance__block__title {
  color: #0CA26C;
  font-size: 26px;
  line-height: 1.5em;
  margin: 0 0 40px;
}

@media screen and (max-width: 768px) {
  .importance__block__title {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 768px) {
  .importance__block__btnwrap {
    display: flex;
    justify-content: center;
  }
}

.importance__footer {
  background: #F1F8F5;
  padding: 45px 20px;
}

.importance__footer__title {
  text-align: center;
  font-size: 24px;
  line-height: 1.5em;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .importance__footer__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}

.importance__footer__btnwrap {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .importance__footer__btnwrap {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .importance__footer__btnwrap a {
    margin-left: auto;
    margin-right: auto;
  }
}

.importance__footer__btnwrap a:first-child {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .importance__footer__btnwrap a:first-child {
    margin-right: auto;
    margin-bottom: 8px;
  }
}

.task__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: 80px 20px;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 768px) {
  .task__inner {
    padding: 40px 20px;
  }
}

.task__title {
  text-align: center;
  font-size: 36px;
  line-height: 1.5em;
  margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  .task__title {
    font-size: 25px;
    line-height: 1.5em;
    margin-bottom: 8px;
  }
}

.task__image {
  font-size: 0;
  line-height: 0;
  position: absolute;
  max-width: 314px;
  right: -20px;
  top: 10px;
}

@media screen and (max-width: 1200px) {
  .task__image {
    right: auto;
    left: 80%;
    top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .task__image {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    max-width: 156px;
    margin: 0 auto 15px;
  }
}

.task__list {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.task__list > li {
  background: #F1F8F5;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  min-height: 180px;
  width: calc(25% - 20px);
  border-radius: 5px;
  position: relative;
  box-sizing: border-box;
  padding: 40px 5px;
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .task__list > li {
    width: calc(50% - 10px);
  }
  .task__list > li:nth-of-type(1),
  .task__list > li:nth-of-type(2) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .task__list > li {
    width: 100%;
    min-height: 0;
    font-size: 16px;
    line-height: 1.5em;
    padding: 32px 5px;
  }
  .task__list > li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.task__list > li:before {
  content: "";
  width: 17px;
  height: 14px;
  display: block;
  position: absolute;
  left: 20px;
  top: 20px;
  background: url(../img/task_img02.png) no-repeat center top;
  background-size: 100% auto;
}

.task__list > li:after {
  content: "";
  width: 17px;
  height: 14px;
  display: block;
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: url(../img/task_img02.png) no-repeat center top;
  background-size: 100% auto;
  transform: scale(-1, -1);
}

.task__solution {
  background: #0CA26C;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

@media screen and (max-width: 768px) {
  .task__solution {
    padding: 50px 20px 40px;
  }
}

.task__solution:before {
  content: "";
  width: 70px;
  height: 70px;
  background: linear-gradient(-135deg, #0CA26C 50%, #fff);
  display: block;
  position: absolute;
  top: -10px;
  left: calc(50% - 35px);
  transform: rotate(-45deg);
  opacity: 0.3;
}

@media screen and (max-width: 768px) {
  .task__solution:before {
    width: 36px;
    height: 36px;
    left: calc(50% - 18px);
    top: 0;
  }
}

.task__solution:after {
  content: "";
  width: 70px;
  height: 70px;
  background: #fff;
  display: block;
  position: absolute;
  top: -45px;
  left: calc(50% - 35px);
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .task__solution:after {
    width: 36px;
    height: 36px;
    left: calc(50% - 18px);
    top: -18px;
  }
}

.task__solution__title {
  text-align: center;
  font-size: 36px;
  line-height: 1.5em;
  color: #fff;
  margin: 0 0 40px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .task__solution__title {
    font-size: 25px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.task__solution__title img {
  position: absolute;
  left: calc(50% + 250px);
  bottom: 5px;
}

@media screen and (max-width: 768px) {
  .task__solution__title img {
    width: 46px;
    height: auto;
    left: calc(50% + 115px);
    bottom: 45px;
  }
}

.task__solution__list {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto 23px;
  padding: 0;
}

.task__solution__list > li {
  width: calc(25% - 20px);
  text-align: center;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 27px;
  cursor: pointer;
}

@media screen and (max-width: 1200px) {
  .task__solution__list > li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 768px) {
  .task__solution__list > li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 20px;
    padding-right: 25px;
  }
}

.task__solution__list > li:nth-child(n + 5) .task__solution__list__label {
  color: #0C48A2 !important;
  background: #D2E4FE !important;
}

.task__solution__list > li:hover .task__solution__list__title,
.task__solution__list > li:hover .task__solution__list__image {
  opacity: 0.7;
}

.task__solution__list__label {
  background: #C7EEDD;
  text-align: center;
  min-width: 120px;
  max-width: 120px;
  text-align: center;
  padding: 5px 0;
  font-size: 13px;
  line-height: 1.5em;
  color: #0CA26C;
  border-radius: 0 0 5px 0;
  margin: 0 0 15px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .task__solution__list__label {
    margin-bottom: auto;
  }
}

.task__solution__list__title {
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .task__solution__list__title {
    min-height: 0;
    justify-content: flex-start;
    width: calc(100% - 77px);
    padding: 5px 0 0 20px;
    text-align: left;
  }
}

.task__solution__list__title a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  min-height: 60px;
}

.task__solution__list__title a:link, .task__solution__list__title a:visited, .task__solution__list__title a:hover, .task__solution__list__title a:active {
  color: #333;
  text-decoration: none;
}

.task__solution__list__title small {
  display: block;
  font-size: 12px;
  line-height: 1.5em;
  font-weight: normal;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .task__solution__list__title small {
    width: 100%;
  }
}

.task__solution__list__image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 160px;
}

@media screen and (max-width: 768px) {
  .task__solution__list__image {
    height: auto;
    width: 67px;
  }
  .task__solution__list__image img {
    max-height: 74px;
    width: auto;
  }
}

.task__solution__btnwrap {
  display: flex;
  justify-content: center;
}

.scene {
  padding: 80px 0 0;
}

@media screen and (max-width: 768px) {
  .scene {
    padding-top: 40px;
  }
}

.scene__tab {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scene__tab > li {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  cursor: pointer;
  min-width: 267px;
  height: 100px;
  box-sizing: border-box;
  border-radius: 5px 5px 0 0;
  border-top: 2px solid #E5E5E5;
  border-right: 2px solid #E5E5E5;
  border-left: 2px solid #E5E5E5;
  background: #fff;
  position: relative;
}

@media screen and (max-width: 768px) {
  .scene__tab > li {
    min-width: calc(50% - 25px);
    height: 60px;
    font-size: 18px;
    line-height: 1.5em;
  }
}

.scene__tab > li:hover {
  color: #0CA26C;
}

.scene__tab > li img {
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .scene__tab > li img {
    width: 28px;
    height: auto;
  }
}

.scene__tab > li:first-child {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .scene__tab > li:first-child {
    margin-right: 10px;
  }
}

.scene__tab > li.active {
  background: #F1F8F5;
  border-color: #0CA26C;
  pointer-events: none;
}

.scene__tab > li.active:after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: #F1F8F5;
  display: block;
  left: 0;
  bottom: -2px;
}

.scene__tab__contents {
  border-top: 2px solid #0CA26C;
  background: #F1F8F5;
  padding: 80px 20px;
  display: none;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents {
    padding: 40px 20px;
  }
}

.scene__tab__contents.active {
  display: block;
}

.scene__tab__contents__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.scene__tab__contents__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block {
    flex-direction: column;
  }
}

.scene__tab__contents__block:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block:not(:last-child) {
    margin-bottom: 30px;
  }
}

.scene__tab__contents__block__image {
  font-size: 0;
  line-height: 0;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block__image {
    width: 100%;
    margin-bottom: 10px;
  }
}

.scene__tab__contents__block__text {
  width: calc(50% - 60px);
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block__text {
    width: 100%;
    order: 2;
  }
}

.scene__tab__contents__block:nth-of-type(odd) .scene__tab__contents__block__image {
  order: 2;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block:nth-of-type(odd) .scene__tab__contents__block__image {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block p {
    font-size: 15px;
    line-height: 1.5em;
  }
}

.scene__tab__contents__block p:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__block p:not(:last-child) {
    margin-bottom: 15px;
  }
}

.scene__tab__contents__no {
  color: #0CA26C;
  opacity: 0.2;
  font-size: 50px;
  line-height: 1em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__no {
    font-size: 35px;
    line-height: 1em;
  }
}

.scene__tab__contents__title {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .scene__tab__contents__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
}

.case {
  padding: 80px 20px;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .case {
    padding: 40px 20px;
  }
}

.case__inner {
  max-width: 1230px;
  margin: 0 auto;
}

.case__list {
  padding: 0;
  margin: 0;
  display: block;
  list-style: none;
  padding: 0;
}

.case__list:after {
  content: "";
  width: 100%;
  height: 0;
  display: block;
  clear: both;
}

.case__list__block {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  padding: 20px;
  border-radius: 5px;
  margin: 0 15px 50px;
  cursor: pointer;
  position: relative;
  float: left;
}

@media screen and (max-width: 768px) {
  .case__list__block {
    margin: 0 10px 15px;
  }
}

.case__list__block:hover {
  opacity: 0.7;
}

.case__list__block:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0CA26C;
  position: absolute;
  right: 20px;
  bottom: 20px;
}

.case__list__block:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 30px;
  bottom: 29px;
}

.case__list__block__image {
  font-size: 0;
  line-height: 0;
  margin: 0 auto 20px;
  max-width: 280px;
}

.case__list__block__image img {
  margin: 0 auto;
}

.case__list__block__title {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 0 20px;
}

.case__list__block__title a:link, .case__list__block__title a:visited {
  text-decoration: none;
  color: #333;
}

.case__list__block__title a:hover, .case__list__block__title a:active {
  text-decoration: none;
  color: #333;
}

.case__list__block__company {
  color: #0CA26C;
  font-weight: bold;
  margin: 0 0 10px;
}

.case__list__block__description {
  padding: 0 30px 0 0;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.case__list.noslide:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .case__list.noslide:not(:last-child) {
    margin-bottom: 40px;
  }
}

.case__list.noslide .case__list__block {
  padding: 30px;
  margin: 0 0 20px;
  float: none;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.case__list.noslide .case__list__block:last-child {
  margin-bottom: 0;
}

.case__list.noslide .case__list__block__image {
  margin: 0 40px 0 0;
  max-width: 280px;
}

@media screen and (max-width: 1200px) {
  .case__list.noslide .case__list__block__image {
    max-width: 100%;
    width: 100%;
    margin: 0 0 20px;
  }
  .case__list.noslide .case__list__block__image img {
    max-width: 280px;
  }
}

.case__list.noslide .case__list__block__image + .case__list__block__text {
  width: calc(100% - 320px);
}

@media screen and (max-width: 1200px) {
  .case__list.noslide .case__list__block__image + .case__list__block__text {
    width: 100%;
  }
}

.case__btnwrap {
  display: flex;
  justify-content: center;
}

.case__detail {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  box-sizing: border-box;
  padding: 50px 40px;
  border-radius: 5px;
  margin: 0 0 50px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .case__detail {
    padding: 20px;
  }
}

.case__detail__image {
  border: 1px solid #DBE8E2;
  max-width: 320px;
  min-height: 233px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .case__detail__image {
    max-width: 100%;
    min-height: 0;
    margin-bottom: 20px;
  }
  .case__detail__image img {
    max-width: 320px;
  }
}

@media screen and (max-width: 768px) {
  .case__detail__image {
    border: none;
  }
}

.case__detail__text {
  width: calc(100% - 360px);
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .case__detail__text {
    width: 100%;
  }
}

.case__detail__title {
  font-size: 36px;
  line-height: 1.5em;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .case__detail__title {
    font-size: 23px;
    line-height: 1.5em;
  }
}

.case__detail__company {
  margin: auto 0 10px;
  font-weight: bold;
  color: #0CA26C;
}

.case__detail__contents {
  margin: 80px 0 50px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .case__detail__contents {
    margin: 40px 0 30px;
  }
}

.case__detail__contents h1 {
  font-size: 28px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .case__detail__contents h1 {
    font-size: 22px;
    line-height: 1.5em;
  }
}

.case__detail__contents h1:first-child {
  margin-top: 0;
}

.case__detail__contents h2 {
  font-size: 24px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .case__detail__contents h2 {
    font-size: 20px;
    line-height: 1.5em;
  }
}

.case__detail__contents h2:first-child {
  margin-top: 0;
}

.case__detail__contents h3 {
  font-size: 22px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .case__detail__contents h3 {
    font-size: 18px;
    line-height: 1.5em;
  }
}

.case__detail__contents h3:first-child {
  margin-top: 0;
}

.case__detail__contents h4 {
  font-size: 20px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .case__detail__contents h4 {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.case__detail__contents h4:first-child {
  margin-top: 0;
}

.case__detail__contents h5 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .case__detail__contents h5 {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.case__detail__contents h5:first-child {
  margin-top: 0;
}

.case__detail__contents h6 {
  font-size: 16px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .case__detail__contents h6 {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.case__detail__contents h6:first-child {
  margin-top: 0;
}

.case__detail__contents p:not(:last-child), .case__detail__contents ul:not(:last-child), .case__detail__contents ol:not(:last-child) {
  margin-bottom: 20px;
}

.case__detail__btnwrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.case__related {
  border-top: 1px solid #DBE8E2;
  margin: 80px 0 0;
  padding: 40px 0 0;
}

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

.case__related__title {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .case__related__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 30px;
  }
}

.case__related__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case__related__list__block {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  width: calc(50% - 10px);
  margin: 0 0 20px;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 30px 20px 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 1200px) {
  .case__related__list__block {
    width: 100%;
  }
}

.case__related__list__block:hover {
  opacity: 0.7;
}

.case__related__list__block__image {
  max-width: 135px;
}

.case__related__list__block__text {
  width: calc(100% - 155px);
}

.case__related__list__block__title a {
  font-weight: normal;
  display: block;
}

.case__related__list__block__title a:link, .case__related__list__block__title a:visited {
  text-decoration: none;
  color: #333;
}

.case__related__list__block__title a:hover, .case__related__list__block__title a:active {
  text-decoration: none;
  color: #333;
}

.case__related__list__block__info {
  width: 100%;
  margin: 30px 0 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .case__related__list__block__info {
    margin-top: 10px;
  }
}

.case__related__list__block__date {
  margin-right: 12px;
  padding-right: 12px;
  border-right: 1px solid #707070;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: bold;
}

.case__related__list__block__category a {
  font-size: 12px;
  line-height: 1.2em;
  font-weight: bold;
}

.case__related__list__block__category a:link, .case__related__list__block__category a:visited {
  text-decoration: none;
  color: #0CA26C;
}

.case__related__list__block__category a:hover, .case__related__list__block__category a:active {
  text-decoration: none;
  color: #0CA26C;
}

.footer {
  background: #333;
}

.footer__cv {
  background: url(../img/footer_cv_img01.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 80px 20px;
}

@media screen and (max-width: 768px) {
  .footer__cv {
    padding: 40px 20px;
    background-position: center top;
  }
}

.footer__cv:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.72);
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.footer__cv__title {
  position: relative;
  z-index: 2;
  font-size: 30px;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  font-weight: bold;
  margin: 0 0 40px;
}

@media screen and (max-width: 768px) {
  .footer__cv__title {
    font-size: 20px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.footer__cv__title small {
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .footer__cv__title small {
    font-size: 15px;
  }
}

.footer__cv__btnwrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.footer__cv__btnwrap > li {
  min-width: 300px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__cv__btnwrap > li {
    min-width: 100%;
  }
  .footer__cv__btnwrap > li > div {
    display: flex;
    justify-content: center;
  }
}

.footer__cv__btnwrap > li p {
  color: #fff;
  margin-bottom: 10px;
}

.footer__cv__btnwrap > li:first-child {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .footer__cv__btnwrap > li:first-child {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

.footer__cv--sp {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .footer__cv--sp {
    display: none;
  }
}

.footer__cv--sp a {
  min-width: 50%;
  border-radius: 0;
}

@media screen and (max-width: 480px) {
  .footer__cv--sp a {
    font-size: 14px;
    line-height: 1.5em;
  }
}

@media screen and (max-width: 380px) {
  .footer__cv--sp a {
    font-size: 12px;
    line-height: 1.5em;
    padding: 0;
  }
}

.footer__cv--sp a img {
  margin-right: 5px;
}

@media screen and (max-width: 480px) {
  .footer__cv--sp a img {
    margin-left: 0;
  }
}

.footer__inner {
  color: #fff;
  max-width: 1240px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .footer__inner {
    padding: 50px 0 30px;
  }
}

.footer__logo {
  font-size: 0;
  line-height: 0;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    width: 100%;
    order: 1;
  }
  .footer__logo img {
    margin: 0 auto;
    width: 212px;
    height: auto;
  }
}

.footer__logo a:hover, .footer__logo a:active {
  opacity: .7;
}

.footer__logo--scsk {
  font-size: 0;
  line-height: 0;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .footer__logo--scsk {
    order: 4;
    justify-content: center;
    margin-bottom: 15px;
  }
}

.footer__logo--scsk a:hover, .footer__logo--scsk a:active {
  opacity: .7;
}

.footer__mainnav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  width: 100%;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .footer__mainnav {
    padding: 0 20px 10px;
    box-sizing: border-box;
    justify-content: space-between;
    order: 2;
  }
}

@media screen and (max-width: 1200px) {
  .footer__mainnav > li {
    font-size: 15px;
    line-height: 1.5em;
  }
}

@media screen and (max-width: 768px) {
  .footer__mainnav > li {
    width: calc(50% - 5px);
  }
}

.footer__mainnav > li:not(:last-child) {
  margin-right: 30px;
}

@media screen and (max-width: 1200px) {
  .footer__mainnav > li:not(:last-child) {
    margin-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer__mainnav > li:not(:last-child) {
    margin: 0 0 20px;
  }
}

.footer__mainnav > li a {
  font-weight: 600;
}

.footer__mainnav > li a:link, .footer__mainnav > li a:visited {
  color: #fff;
  text-decoration: none;
}

.footer__mainnav > li a:hover, .footer__mainnav > li a:active {
  color: #fff;
  text-decoration: underline;
}

.footer__subnav {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .footer__subnav {
    order: 3;
    border-top: 1px solid #4D4D4D;
    border-bottom: 1px solid #4D4D4D;
    padding: 25px 10px 10px;
    justify-content: center;
    margin-bottom: 25px;
  }
}

.footer__subnav > li {
  font-size: 12px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .footer__subnav > li {
    margin: 0 15px 15px !important;
  }
}

.footer__subnav > li:not(:last-child) {
  margin-right: 30px;
}

@media screen and (max-width: 768px) {
  .footer__subnav > li:not(:last-child) {
    margin-right: auto;
  }
}

.footer__subnav > li a {
  font-weight: 500;
}

.footer__subnav > li a:link, .footer__subnav > li a:visited {
  color: #fff;
  text-decoration: none;
}

.footer__subnav > li a:hover, .footer__subnav > li a:active {
  color: #fff;
  text-decoration: underline;
}

.footer__copyright {
  font-size: 12px;
  line-height: 1.5em;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    order: 5;
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .sp-hide {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .pc-hide {
    display: none;
  }
}

.drawer {
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  transform: translateX(calc(100% + 20px));
  transition: transform 0.4s ease-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
}

.drawer.active {
  transform: translateX(0);
}

.drawer__close {
  font-size: 0;
  line-height: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

.drawer__inner {
  padding: 60px 50px;
}

.drawer__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
}

.drawer__nav > li {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.drawer__nav > li a {
  display: block;
}

.drawer__nav > li a:link, .drawer__nav > li a:visited {
  text-decoration: none;
  color: #333;
}

.drawer__nav > li a:hover, .drawer__nav > li a:active {
  text-decoration: none;
  color: #333;
}

.drawer__nav > li.active a:link, .drawer__nav > li.active a:visited, .drawer__nav > li.active a:hover, .drawer__nav > li.active a:active {
  color: #0CA26C;
}

.drawer__btnwrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.drawer__btnwrap a {
  min-width: 100%;
}

.drawer__btnwrap a:first-child {
  margin-bottom: 8px;
}

.slick-track {
  display: flex;
}

.slick-slide {
  height: auto !important;
}

.slick-dots {
  list-style: none;
  justify-content: center;
  align-items: center;
  margin: 0 0 25px;
  padding: 0;
  text-align: center;
}

.slick-dots > li {
  display: inline-block;
  font-size: 0;
  line-height: 0;
  margin: 0 8px;
}

.slick-dots > li button {
  width: 10px;
  height: 10px;
  background: #D9D9D9;
  border: none;
  font-size: 0;
  line-height: 0;
  border-radius: 50%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-dots > li.slick-active button {
  background: #0CA26C;
}

.contents__header {
  position: relative;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

@media screen and (max-width: 768px) {
  .contents__header {
    min-height: 200px;
  }
}

.contents__header:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(12, 162, 108, 0.8);
  z-index: 1;
}

.contents__header__title {
  position: relative;
  z-index: 2;
  text-align: center;
  font-size: 40px;
  line-height: 1.5em;
  margin: 0;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .contents__header__title {
    font-size: 28px;
    line-height: 1.5em;
  }
}

.contents__header__title small {
  font-size: 16px;
  line-height: 1.5em;
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .contents__header__title small {
    font-size: 11px;
    line-height: 1.5em;
  }
}

.contents__header__title h1 {
  font-size: 40px;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .contents__header__title h1 {
    font-size: 28px;
    line-height: 1.5em;
  }
}

.contents__header__image {
  display: none;
}

.contents__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  box-sizing: border-box;
  padding: 0;
  margin: 0 auto 65px;
  max-width: 1200px;
}

@media screen and (max-width: 1240px) {
  .contents__nav {
    margin: 0 20px 60px;
  }
}

@media screen and (max-width: 768px) {
  .contents__nav {
    margin-bottom: 30px;
  }
}

.contents__nav:after {
  content: "";
  display: block;
  width: calc(33.3% - 10px);
  order: 1;
}

@media screen and (max-width: 1200px) {
  .contents__nav:after {
    display: none;
  }
}

.contents__nav > li {
  width: calc(33.3% - 10px);
  margin-bottom: 15px;
}

@media screen and (max-width: 1200px) {
  .contents__nav > li {
    width: 100%;
    margin-bottom: 10px;
  }
}

.contents__nav > li a {
  display: flex;
  border-radius: 5px;
  min-height: 100px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  border: 1px solid #0CA26C;
  position: relative;
}

@media screen and (max-width: 768px) {
  .contents__nav > li a {
    min-height: 80px;
  }
}

.contents__nav > li a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #0CA26C;
  border-top: 2px solid #0CA26C;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: calc(50% - 5px);
}

.contents__nav > li a small {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 1.5em;
  font-family: 'Montserrat', sans-serif;
  color: #0CA26C;
  font-weight: 600;
  width: 100%;
}

.contents__nav > li a:link, .contents__nav > li a:visited {
  text-decoration: none;
  color: #333;
}

.contents__nav > li a:hover, .contents__nav > li a:active {
  text-decoration: none;
  color: #333;
  background: #F1F8F5;
}

.contents__nav > li.active a:link, .contents__nav > li.active a:visited, .contents__nav > li.active a:hover, .contents__nav > li.active a:active {
  background: #F1F8F5;
}

.contents__nav > li.active a:after {
  display: none;
}

.contents__column {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 20px 80px;
  max-width: 1240px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contents__column {
    padding-bottom: 40px;
  }
}

.contents__column__main {
  width: calc(100% - 320px);
}

@media screen and (max-width: 1200px) {
  .contents__column__main {
    width: calc(100% - 280px);
  }
}

@media screen and (max-width: 768px) {
  .contents__column__main {
    width: 100%;
    margin-bottom: 40px;
  }
}

.contents__column__main .newslist {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .contents__column__main .newslist {
    margin-bottom: 40px;
  }
}

.contents__column__main .newslist__block:last-child {
  border-bottom: 1px solid #DBE8E2;
}

.contents__column__sub {
  width: 260px;
}

@media screen and (max-width: 768px) {
  .contents__column__sub {
    width: 100%;
  }
}

.contents__column__nav {
  border-radius: 5px;
  background: #0CA26C;
  padding: 10px;
}

.contents__column__nav__title {
  text-align: center;
  font-size: 18px;
  line-height: 1.5em;
  color: #fff;
  padding: 2px 0 10px;
}

.contents__column__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contents__column__nav ul > li {
  margin: 0 0 5px;
}

.contents__column__nav ul > li:last-child {
  margin-bottom: 0;
}

.contents__column__nav ul > li a {
  background: #FFF;
  display: block;
  padding: 12px 10px;
  position: relative;
}

.contents__column__nav ul > li a:link, .contents__column__nav ul > li a:visited {
  color: #333;
  text-decoration: none;
}

.contents__column__nav ul > li a:hover, .contents__column__nav ul > li a:active {
  color: #0CA26C;
  text-decoration: none;
}

.contents__column__nav ul > li a.active {
  background: #C7EEDD;
}

.contents__column__nav ul > li a:after {
  content: "";
  width: 6px;
  height: 6px;
  transform: rotate(45deg);
  border-top: 1px solid #0CA26C;
  border-right: 1px solid #0CA26C;
  display: block;
  position: absolute;
  right: 10px;
  top: calc(50% - 3px);
}

.contents__common {
  max-width: 1240px;
  padding: 0 20px 80px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contents__common {
    padding-bottom: 40px;
  }
}

.contents__common h1 {
  font-size: 28px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents__common h1 {
    font-size: 22px;
    line-height: 1.5em;
  }
}

.contents__common h1:first-child {
  margin-top: 0;
}

.contents__common h2 {
  font-size: 24px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents__common h2 {
    font-size: 20px;
    line-height: 1.5em;
  }
}

.contents__common h2:first-child {
  margin-top: 0;
}

.contents__common h3 {
  font-size: 22px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents__common h3 {
    font-size: 18px;
    line-height: 1.5em;
  }
}

.contents__common h3:first-child {
  margin-top: 0;
}

.contents__common h4 {
  font-size: 20px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents__common h4 {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.contents__common h4:first-child {
  margin-top: 0;
}

.contents__common h5 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents__common h5 {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.contents__common h5:first-child {
  margin-top: 0;
}

.contents__common h6 {
  font-size: 16px;
  line-height: 1.5em;
  margin: 30px 0;
}

@media screen and (max-width: 768px) {
  .contents__common h6 {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.contents__common h6:first-child {
  margin-top: 0;
}

.contents__common p:not(:last-child), .contents__common ul:not(:last-child), .contents__common ol:not(:last-child) {
  margin-bottom: 20px;
}

.pager {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.pager__block {
  margin: 0 10px;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
}

.pager__block span {
  text-decoration: underline;
  color: #0CA26C;
}

.pager__block a:link, .pager__block a:visited {
  text-decoration: none;
  color: #333;
}

.pager__block a:hover, .pager__block a:active {
  text-decoration: none;
  color: #0CA26C;
}

.pager__block .link__before,
.pager__block .link__next {
  border-radius: 50%;
  background: #0CA26C;
  width: 24px;
  height: 24px;
  font-size: 0;
  line-height: 0;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
  text-align: center;
  position: relative;
}

.pager__block .link__before:link,
.pager__block .link__before:visited,
.pager__block .link__next:link, .pager__block .link__next:visited {
  background: #0CA26C;
  color: #fff;
  text-decoration: none;
}

.pager__block .link__before:hover,
.pager__block .link__before:active,
.pager__block .link__next:hover, .pager__block .link__next:active {
  background: #0CA26C;
  color: #fff;
  text-decoration: none;
}

.pager__block .link__before:after,
.pager__block .link__next:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: calc(50% - 2px);
  bottom: calc(50% - 3px);
}

.pager__block .link__before {
  margin-right: 12px;
  transform: scale(-1, 1);
}

.pager__block .link__next {
  margin-left: 12px;
}

.breadcrumbs {
  padding: 10px 20px;
  margin: 0 0 60px;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-bottom: 30px;
  }
}

.breadcrumbs__inner {
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  color: #333;
  padding: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs__inner > li {
  font-size: 12px;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media screen and (max-width: 768px) {
  .breadcrumbs__inner > li {
    font-size: 11px;
    line-height: 1.5em;
  }
}

.breadcrumbs__inner > li:not(:last-child):after {
  content: "―";
  display: inline-block;
  margin: 0 5px;
}

.breadcrumbs__inner > li a:link, .breadcrumbs__inner > li a:visited {
  text-decoration: none;
  color: #333;
}

.breadcrumbs__inner > li a:hover, .breadcrumbs__inner > li a:active {
  text-decoration: underline;
  color: #333;
}

.response__importance {
  padding: 0 20px 80px;
}

@media screen and (max-width: 768px) {
  .response__importance {
    padding-bottom: 40px;
  }
}

.response__importance__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.response__importance__title {
  font-size: 36px;
  line-height: 1.5em;
  text-align: center;
  margin: 0 0 50px;
}

@media screen and (max-width: 768px) {
  .response__importance__title {
    font-size: 23px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.response__importance__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.response__importance__block:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .response__importance__block:not(:last-child) {
    margin-bottom: 25px;
  }
}

.response__importance__block__text {
  width: calc(50% - 35px);
  order: 1;
}

@media screen and (max-width: 768px) {
  .response__importance__block__text {
    width: 100%;
    order: 2;
  }
}

.response__importance__block__text p {
  margin: 0 0 1em;
}

.response__importance__block__text p:last-child {
  margin-bottom: 0;
}

.response__importance__block__image {
  width: 50%;
  font-size: 0;
  line-height: 0;
  order: 2;
}

@media screen and (max-width: 768px) {
  .response__importance__block__image {
    width: 100%;
    order: 1;
    margin-bottom: 25px;
  }
}

.response__importance__block__title {
  font-size: 24px;
  line-height: 1.5em;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .response__importance__block__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
}

.response__merit {
  background: #0CA26C;
  padding: 80px 20px 50px;
}

@media screen and (max-width: 768px) {
  .response__merit {
    padding: 40px 20px 25px;
  }
}

.response__merit__inner {
  max-width: 900px;
  margin: 0 auto;
}

.response__merit__list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}

.response__merit__list > li {
  width: calc(33.3% - 20px);
  background: #fff;
  margin: 0 0 30px;
  border-radius: 5px;
  box-sizing: border-box;
  padding: 18px 10px 0;
  min-height: 270px;
}

@media screen and (max-width: 768px) {
  .response__merit__list > li {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    justify-content: flex-start;
    min-height: 0;
    padding: 15px 10px 15px 15px;
    align-items: center;
  }
}

.response__merit__list__no {
  color: #0CA26C;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  margin: 0 0 10px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .response__merit__list__no {
    width: 40px;
    margin: 0;
    text-align: left;
  }
}

.response__merit__list__title {
  font-size: 18px;
  line-height: 1.5em;
  text-align: center;
  margin: 0 0 20px;
  min-height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .response__merit__list__title {
    text-align: left;
    width: calc(100% - 90px);
    margin: 0;
    min-height: 0;
    justify-content: flex-start;
    font-size: 16px;
    line-height: 1.5em;
  }
}

.response__merit__list__image {
  margin-top: auto;
  font-size: 0;
  line-height: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  min-height: 110px;
}

@media screen and (max-width: 768px) {
  .response__merit__list__image {
    min-height: 0;
    width: 50px;
    margin: 0;
  }
  .response__merit__list__image img {
    max-height: 50px;
  }
}

.response__action {
  padding: 80px 20px;
}

@media screen and (max-width: 768px) {
  .response__action {
    padding: 40px 20px;
  }
}

.response__action__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.response__action__title {
  font-size: 36px;
  line-height: 1.5em;
  text-align: center;
  margin: 0 0 50px;
}

.response__action__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.response__action__block:not(:last-child) {
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  .response__action__block:not(:last-child) {
    margin-bottom: 25px;
  }
}

.response__action__block__text {
  width: calc(50% - 35px);
}

@media screen and (max-width: 768px) {
  .response__action__block__text {
    width: 100%;
  }
}

.response__action__block__text p {
  margin: 0 0 25px;
}

.response__action__block__text p:last-child {
  margin-bottom: 0;
}

.response__action__block__image {
  width: 50%;
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .response__action__block__image {
    width: 100%;
    margin-bottom: 25px;
  }
}

.response__action__block__no {
  color: #0CA26C;
  font-size: 50px;
  line-height: 1em;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  margin: 0 0 5px;
  opacity: 0.2;
}

.response__action__block__title {
  font-size: 24px;
  line-height: 1.5em;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .response__action__block__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.response__action__block:nth-of-type(odd) .response__action__block__text {
  order: 1;
}

@media screen and (max-width: 768px) {
  .response__action__block:nth-of-type(odd) .response__action__block__text {
    order: 2;
  }
}

.response__action__block:nth-of-type(odd) .response__action__block__image {
  order: 2;
}

@media screen and (max-width: 768px) {
  .response__action__block:nth-of-type(odd) .response__action__block__image {
    order: 1;
  }
}

.response__emissions {
  background: #F1F8F5;
  padding: 80px 20px;
}

@media screen and (max-width: 768px) {
  .response__emissions {
    padding: 40px 20px;
  }
}

.response__emissions + .contents__nav {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .response__emissions + .contents__nav {
    margin-top: 40px;
  }
}

.response__emissions__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.response__emissions__inner > p {
  max-width: 900px;
  margin: 0 auto 25px;
}

.response__emissions__title {
  font-size: 24px;
  line-height: 1.5em;
  margin: 0 0 30px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .response__emissions__title {
    font-size: 18px;
    line-height: 1.5em;
  }
}

.response__emissions__block {
  background: #fff;
  margin: 0 auto 40px;
  padding: 40px 70px 40px;
}

@media screen and (max-width: 1200px) {
  .response__emissions__block {
    padding: 40px 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  .response__emissions__block {
    padding: 0;
    background: none;
  }
}

.response__emissions__block__title {
  font-size: 24px;
  line-height: 1.5em;
  text-align: center;
  margin: 0 auto 30px;
}

@media screen and (max-width: 768px) {
  .response__emissions__block__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 15px;
  }
}

.response__emissions__btnwrap {
  display: flex;
  justify-content: center;
}

.response__emissions__scope {
  display: flex;
  justify-content: space-between;
  position: relative;
  background: #EBF8F3;
  overflow: hidden;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope {
    justify-content: center;
    border: 4px solid #fff;
  }
}

.response__emissions__scope:before {
  content: "";
  width: 0;
  height: 100%;
  display: block;
  position: absolute;
  left: 30%;
  top: calc(50% - 500px);
  border-top: 500px solid transparent;
  border-bottom: 500px solid transparent;
  border-left: 300px solid #D4F0E5;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope:before {
    transform: rotate(90deg);
    left: calc(50% - 150px);
    top: calc(50% - 530px);
  }
}

.response__emissions__scope__title {
  text-align: center;
  font-size: 20px;
  line-height: 1.5em;
  margin: 0 0 20px;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__title {
    font-size: 16px;
  }
}

.response__emissions__scope__title span {
  display: block;
  font-size: 36px;
  line-height: 1em;
  font-family: 'Lato', sans-serif;
  color: #0CA26C;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__title span {
    font-size: 28px;
  }
}

.response__emissions__scope__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__list:after {
    content: "";
    order: 1;
    width: 25%;
    display: block;
  }
}

.response__emissions__scope__list > li {
  width: 50%;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__list > li {
    width: 25%;
  }
}

.response__emissions__scope__list__image {
  font-size: 0;
  line-height: 0;
  margin: 0 0 5px;
  position: relative;
  width: 100%;
  min-height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__list__image {
    min-height: 50px;
  }
}

.response__emissions__scope__list__image:before {
  content: "";
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: calc(50% - 45px);
  top: 0;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__list__image:before {
    width: 50px;
    height: 50px;
    left: calc(50% - 25px);
  }
}

.response__emissions__scope__list__image img {
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__list__image img {
    max-height: 50px;
  }
}

.response__emissions__scope__list__text {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  color: #0CA26C;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__list__text {
    font-size: 10px;
    line-height: 1.5em;
  }
}

.response__emissions__scope__01 {
  position: absolute;
  left: calc(50% - 130px);
  top: 50px;
  z-index: 2;
  width: 260px;
  height: 260px;
  background: #FFE8F1;
  border-radius: 5px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__01 {
    width: 220px;
    left: calc(50% - 110px);
  }
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__01 {
    width: calc(50% - 15px);
    left: auto;
    top: auto;
    position: relative;
    height: auto;
    padding: 20px 0;
    margin-right: 10px;
  }
}

.response__emissions__scope__01 .response__emissions__scope__title span {
  color: #F1679A;
}

.response__emissions__scope__01 .response__emissions__scope__list > li {
  margin: 0;
  width: 100%;
}

.response__emissions__scope__01 .response__emissions__scope__list > li .response__emissions__scope__list__text {
  color: #F1679A;
}

.response__emissions__scope__02 {
  position: absolute;
  left: calc(50% - 130px);
  bottom: 50px;
  z-index: 2;
  width: 260px;
  height: 260px;
  background: #E4F1FF;
  border-radius: 5px;
  border: 4px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__02 {
    width: 220px;
    left: calc(50% - 110px);
  }
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__02 {
    width: calc(50% - 15px);
    left: auto;
    bottom: auto;
    position: relative;
    height: auto;
    padding: 20px 0;
  }
}

.response__emissions__scope__02 .response__emissions__scope__title span {
  color: #5087CF;
}

.response__emissions__scope__02 .response__emissions__scope__list > li {
  margin: 0;
  width: 100%;
}

.response__emissions__scope__02 .response__emissions__scope__list > li .response__emissions__scope__list__text {
  color: #5087CF;
}

.response__emissions__scope__03 {
  background: #D4F0E5;
  padding: 30px 0 0 50px;
  width: 35%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__03 {
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__03 {
    width: 100%;
    padding: 30px 5px 10px;
  }
}

.response__emissions__scope__03--down {
  padding: 30px 50px 30px 0;
  justify-content: flex-end;
  width: 35%;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1200px) {
  .response__emissions__scope__03--down {
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .response__emissions__scope__03--down {
    width: 100%;
    padding: 30px 5px 10px;
  }
}

.localnav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .localnav {
    justify-content: center;
  }
}

.localnav > li {
  width: 240px;
}

@media screen and (max-width: 1200px) {
  .localnav > li {
    width: calc(33.3% - 5px);
  }
}

@media screen and (max-width: 768px) {
  .localnav > li {
    width: 100%;
  }
}

.localnav > li:not(:last-child) {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .localnav > li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

.localnav > li a {
  background: #F1F8F5;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: bold;
  position: relative;
}

.localnav > li a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #0CA26C;
  border-bottom: 2px solid #0CA26C;
  transform: rotate(45deg);
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
}

.localnav > li a:link, .localnav > li a:visited {
  text-decoration: none;
  color: #333;
}

.localnav > li a:hover, .localnav > li a:active {
  text-decoration: none;
  background: #0CA26C;
  color: #fff;
}

.localnav > li a:hover:after, .localnav > li a:active:after {
  border-color: #fff;
}

#support {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  #support {
    padding-top: 40px;
  }
}

.support__title {
  font-size: 36px;
  line-height: 1.5em;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  padding: 80px 20px 0;
}

@media screen and (max-width: 768px) {
  .support__title {
    font-size: 23px;
    line-height: 1.5em;
    margin: 0 auto;
    padding-top: 40px;
  }
}

.support__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 20px;
  max-width: 1240px;
  margin: 0 auto 80px;
}

@media screen and (max-width: 768px) {
  .support__list {
    margin-bottom: 40px;
  }
}

.support__list__block {
  width: calc(20% - 15px);
  display: flex;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .support__list__block {
    width: calc(50% - 10px);
    margin-bottom: 30px;
  }
  .support__list__block .support__list__block__header:after {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .support__list__block {
    width: 100%;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1200px) {
  .support__list__block:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}

.support__list__block:last-child .support__list__block__header:after {
  display: none;
}

.support__list__block:nth-of-type(2) .support__list__block__header {
  background: #C7D665;
}

.support__list__block:nth-of-type(2) .support__list__block__header:after {
  border-left-color: #C7D665;
}

.support__list__block:nth-of-type(2) .support__list__block__no {
  background: #C7D665;
}

.support__list__block:nth-of-type(3) .support__list__block__header {
  background: #A1D665;
}

.support__list__block:nth-of-type(3) .support__list__block__header:after {
  border-left-color: #A1D665;
}

.support__list__block:nth-of-type(3) .support__list__block__no {
  background: #A1D665;
}

.support__list__block:nth-of-type(4) .support__list__block__header {
  background: #5CBD59;
}

.support__list__block:nth-of-type(4) .support__list__block__header:after {
  border-left-color: #5CBD59;
}

.support__list__block:nth-of-type(4) .support__list__block__no {
  background: #5CBD59;
}

.support__list__block:nth-of-type(5) .support__list__block__header {
  background: #0CA26C;
}

.support__list__block:nth-of-type(5) .support__list__block__header:after {
  border-left-color: #0CA26C;
}

.support__list__block:nth-of-type(5) .support__list__block__no {
  background: #0CA26C;
}

.support__list__block:after {
  content: "";
  width: 100%;
  height: calc(100% - 50px);
  position: absolute;
  display: block;
  z-index: -1;
  background: #F8F8F8;
  bottom: 0;
  left: 0;
  border-radius: 0 0 10px 10px;
}

.support__list__block__header {
  background: #D6C065;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 100px;
  border-radius: 10px 10px 0 0;
}

@media screen and (max-width: 768px) {
  .support__list__block__header {
    min-height: 60px;
  }
}

.support__list__block__header:after {
  content: "";
  width: 0;
  height: 20px;
  display: block;
  position: absolute;
  left: 100%;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 20px solid #D6C065;
}

.support__list__block__no {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #D6C065;
  position: absolute;
  left: calc(50% - 35px);
  top: -20px;
  text-align: center;
  line-height: 70px;
  font-size: 26px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

@media screen and (max-width: 768px) {
  .support__list__block__no {
    left: 10px;
    top: calc(50% - 20px);
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}

.support__list__block__title {
  font-size: 18px;
  line-height: 1.5em;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .support__list__block__title {
    font-size: 16px;
    line-height: 1.5em;
    margin-top: 0;
    text-align: left;
    padding-left: 60px;
    width: 100%;
    box-sizing: border-box;
  }
}

.support__list__block__middle {
  position: relative;
  z-index: 1;
  margin: 20px 20px 0;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 500;
  min-height: 180px;
}

@media screen and (max-width: 1200px) {
  .support__list__block__middle {
    min-height: 130px;
  }
}

@media screen and (max-width: 768px) {
  .support__list__block__middle {
    min-height: 0;
    margin-bottom: 20px;
  }
}

.support__list__block__middle ul {
  list-style: disc;
  padding: 0 0 0 20px;
}

.support__list__block__middle ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.support__list__block__footer {
  position: relative;
  z-index: 1;
  margin: auto 20px;
  text-align: center;
  border-top: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  flex-wrap: wrap;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .support__list__block__footer {
    min-height: 0;
    padding: 20px 0;
  }
}

.support__list__block__footer img {
  margin: 8px auto 0;
  max-width: 68px;
}

.support__after {
  background: #F1F8F5;
  padding: 80px 20px;
}

@media screen and (max-width: 768px) {
  .support__after {
    padding: 40px 20px;
  }
}

.support__after__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.support__after__block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.support__after__block:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .support__after__block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.support__after__block:nth-of-type(odd) .support__after__block__image {
  order: 2;
}

@media screen and (max-width: 768px) {
  .support__after__block:nth-of-type(odd) .support__after__block__image {
    order: 1;
  }
}

.support__after__block:nth-of-type(odd) .support__after__block__text {
  order: 1;
}

@media screen and (max-width: 768px) {
  .support__after__block:nth-of-type(odd) .support__after__block__text {
    order: 2;
  }
}

.support__after__block__image {
  font-size: 0;
  line-height: 0;
  width: 50%;
}

@media screen and (max-width: 768px) {
  .support__after__block__image {
    width: 100%;
    margin-bottom: 30px;
  }
}

.support__after__block__text {
  width: calc(50% - 60px);
}

@media screen and (max-width: 768px) {
  .support__after__block__text {
    width: 100%;
  }
}

.support__after__block__text p:not(:last-child) {
  margin-bottom: 25px;
}

.support__after__block__title {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .support__after__block__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.support__cooperation {
  padding: 80px 20px;
}

@media screen and (max-width: 768px) {
  .support__cooperation {
    padding: 40px 20px;
  }
}

.support__cooperation__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.support__cooperation__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
}

.support__cooperation__list__block {
  width: calc(33.3% - 20px);
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  flex-wrap: wrap;
  padding: 40px 30px 20px;
}

@media screen and (max-width: 768px) {
  .support__cooperation__list__block {
    width: 100%;
    padding: 20px 20px 0;
    justify-content: space-between;
    flex-direction: inherit;
  }
  .support__cooperation__list__block:not(:last-child) {
    margin-bottom: 20px;
  }
}

.support__cooperation__list__block:nth-of-type(2) .support__cooperation__list__block__tool ul {
  margin-top: 15px;
}

@media screen and (max-width: 1200px) {
  .support__cooperation__list__block:nth-of-type(2) .support__cooperation__list__block__tool ul {
    margin-top: 0;
  }
}

.support__cooperation__list__block__title {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 15px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .support__cooperation__list__block__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 10px;
    width: 100%;
  }
}

.support__cooperation__list__block__image {
  font-size: 0;
  line-height: 0;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 90px;
}

@media screen and (max-width: 768px) {
  .support__cooperation__list__block__image {
    width: 100px;
  }
}

.support__cooperation__list__block__image img {
  margin: 0 auto;
}

.support__cooperation__list__block__text {
  min-height: 100px;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .support__cooperation__list__block__text {
    min-height: 0;
    width: calc(100% - 120px);
  }
}

.support__cooperation__list__block__subtitle {
  background: #F1F8F5;
  border-radius: 20px;
  text-align: center;
  margin: 0 0 20px;
}

@media screen and (max-width: 768px) {
  .support__cooperation__list__block__subtitle {
    width: 100%;
    margin-bottom: 10px;
  }
}

.support__cooperation__list__block__tool {
  font-size: 0;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .support__cooperation__list__block__tool {
    width: 100%;
  }
}

.support__cooperation__list__block__tool ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  line-height: 0;
  flex-wrap: wrap;
}

.support__cooperation__list__block__tool ul li {
  margin: 0 8px 20px;
}

.function__title {
  font-size: 36px;
  line-height: 1.5em;
  margin: 0 0 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .function__title {
    font-size: 23px;
    line-height: 1.5em;
    margin-bottom: 25px;
  }
}

.function__inner {
  background: #0CA26C;
  padding: 80px 20px;
}

@media screen and (max-width: 375px) {
  .function__inner {
    padding: 20px 10px;
  }
}

.function__block {
  background: #fff;
  max-width: 1040px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 60px;
}

@media screen and (max-width: 1200px) {
  .function__block {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .function__block {
    padding: 20px;
  }
}

.function__block:not(:last-child) {
  margin-bottom: 40px;
  position: relative;
}

.function__block:not(:last-child):after {
  content: "";
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  left: calc(50% - 25px);
  bottom: -20px;
  background: #fff;
  transform: rotate(45deg);
}

.function__block:last-child .function__block__list > li {
  width: 100%;
}

.function__block:last-child .function__block__list__image {
  margin-bottom: 20px;
  min-height: 0;
}

.function__block:last-child .function__block__list__text {
  min-height: 0;
}

.function__block__title {
  background: #F1F8F5;
  border-radius: 50px;
  max-width: 520px;
  text-align: center;
  line-height: 60px;
  margin: 0 auto 35px;
  font-size: 24px;
}

@media screen and (max-width: 768px) {
  .function__block__title {
    font-size: 16px;
    line-height: 1.5em;
    padding: 10px 20px;
    margin-bottom: 20px;
  }
}

.function__block__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  position: relative;
  z-index: 2;
}

.function__block__list > li {
  width: calc(20% - 22px);
  text-align: center;
}

@media screen and (max-width: 1200px) {
  .function__block__list > li:last-child .function__block__list__image {
    width: 100%;
    margin: 0 auto 10px;
  }
}

@media screen and (max-width: 768px) {
  .function__block__list > li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
  .function__block__list > li:last-child {
    width: 100%;
    margin-bottom: 0;
  }
  .function__block__list > li:last-child .function__block__list__image {
    width: 50%;
    margin: 0 auto 10px;
  }
}

.function__block__list__title {
  font-size: 20px;
  line-height: 1.5em;
  font-weight: bold;
  margin: 0 0 15px;
}

@media screen and (max-width: 1200px) {
  .function__block__list__title {
    margin: 0;
    font-size: 18px;
    line-height: 1.5em;
  }
}

.function__block__list__image {
  min-height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .function__block__list__image {
    min-height: 150px;
  }
}

.function__block__list__text {
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  min-height: 50px;
}

@media screen and (max-width: 768px) {
  .function__block__list__text {
    font-size: 16px;
    line-height: 1.5em;
    min-height: 0;
  }
}

@media screen and (max-width: 414px) {
  .function__block__list__text {
    font-size: 14px;
    line-height: 1.5em;
    white-space: nowrap;
  }
}

.function__block__list__text span {
  color: #0CA26C;
  display: inline-block;
  position: relative;
  top: -4px;
}

@media screen and (max-width: 414px) {
  .function__block__list__text span {
    top: -3px;
  }
}

.function__block__list__text span strong {
  font-family: 'Lato', sans-serif;
  font-size: 41px;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .function__block__list__text span strong {
    font-size: 24px;
    line-height: 1.5em;
  }
}

@media screen and (max-width: 414px) {
  .function__block__list__text span strong {
    font-size: 22px;
    line-height: 1.5em;
  }
}

.function__detail {
  padding: 80px 20px;
}

.function__detail__block {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.function__detail__block:not(:last-child) {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .function__detail__block:not(:last-child) {
    margin-bottom: 40px;
  }
}

.function__detail__block:nth-of-type(even) .function__detail__block__text {
  order: 1;
}

@media screen and (max-width: 768px) {
  .function__detail__block:nth-of-type(even) .function__detail__block__text {
    order: 2;
  }
}

.function__detail__block:nth-of-type(even) .function__detail__block__image {
  order: 2;
}

@media screen and (max-width: 768px) {
  .function__detail__block:nth-of-type(even) .function__detail__block__image {
    order: 1;
  }
}

.function__detail__block__image {
  width: 50%;
  font-size: 0;
  line-height: 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .function__detail__block__image {
    width: 100%;
    margin-bottom: 25px;
  }
}

.function__detail__block__image a {
  display: block;
  position: relative;
}

.function__detail__block__image__zoom {
  position: absolute;
  right: 15px;
  bottom: 20px;
}

.function__detail__block__text {
  width: calc(50% - 60px);
}

@media screen and (max-width: 768px) {
  .function__detail__block__text {
    width: 100%;
  }
}

.function__detail__block__text p:not(:last-child) {
  margin-bottom: 25px;
}

.function__detail__block__text ul {
  list-style: none;
  padding: 0 0 0 18px;
}

.function__detail__block__text ul:not(:last-child) {
  margin-bottom: 25px;
}

.function__detail__block__text ul > li {
  position: relative;
}

.function__detail__block__text ul > li:before {
  content: "";
  width: 9px;
  height: 7px;
  background: url(../img/function_check.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  left: -20px;
  top: 10px;
  display: block;
}

.function__detail__block__no {
  font-size: 50px;
  line-height: 1em;
  font-family: 'Montserrat', sans-serif;
  color: #0CA26C;
  opacity: 0.2;
  font-weight: bold;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .function__detail__block__no {
    font-size: 30px;
    line-height: 1em;
  }
}

.function__detail__block__title {
  font-size: 24px;
  line-height: 1.5em;
  margin: 0 0 30px;
}

@media screen and (max-width: 768px) {
  .function__detail__block__title {
    font-size: 18px;
    line-height: 1.5em;
    margin-bottom: 20px;
  }
}

.faq {
  padding: 0 0 80px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-bottom: 40px;
  }
}

.faq__list {
  list-style: none;
  padding: 0;
}

.faq__list__block {
  border: 1px solid #DBE8E2;
  border-radius: 5px;
  position: relative;
}

.faq__list__block:not(:last-child) {
  margin-bottom: 10px;
}

.faq__list__block:hover {
  opacity: 0.7;
}

.faq__list__block:before {
  content: "Q";
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 34px;
  display: block;
  width: 34px;
  height: 34px;
  text-align: center;
  position: absolute;
  top: calc(50% - 17px);
  left: 20px;
  background: #0CA26C;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
}

.faq__list__block a {
  display: block;
  position: relative;
  padding: 25px 50px 25px 67px;
  font-size: 18px;
  line-height: 1.5em;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .faq__list__block a {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.faq__list__block a:link, .faq__list__block a:visited {
  color: #333;
  text-decoration: none;
}

.faq__list__block a:hover, .faq__list__block a:active {
  color: #333;
  text-decoration: none;
}

.faq__list__block a:before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #0CA26C;
  position: absolute;
  right: 20px;
  top: calc(50% - 14px);
  opacity: 1;
}

.faq__list__block a:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  right: 30px;
  top: calc(50% - 5px);
  opacity: 1;
}

.faq__block {
  padding: 80px 20px 0;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq__block {
    padding-top: 40px;
  }
}

.faq__block:last-of-type {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .faq__block:last-of-type {
    margin-bottom: 40px;
  }
}

.faq__other {
  padding: 80px 20px 0;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .faq__other {
    padding-top: 40px;
  }
}

.faq__detail {
  padding: 0 20px;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.faq__detail__title {
  border: 1px solid #DBE8E2;
  border-radius: 5px;
  position: relative;
  padding: 25px 20px 25px 67px;
  font-size: 18px;
  line-height: 1.5em;
}

.faq__detail__title:before {
  content: "Q";
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 34px;
  display: block;
  width: 34px;
  height: 34px;
  text-align: center;
  position: absolute;
  top: calc(50% - 17px);
  left: 20px;
  background: #0CA26C;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
}

.faq__detail__answer {
  position: relative;
  padding: 35px 20px 20px 67px;
  font-size: 18px;
  line-height: 1.5em;
}

.faq__detail__answer:before {
  content: "A";
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 34px;
  display: block;
  width: 34px;
  height: 34px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: 20px;
  background: #0C48A2;
  border-radius: 50%;
  font-weight: bold;
  color: #fff;
}

.faq__detail__answer h1, .faq__detail__answer h2, .faq__detail__answer h3 {
  font-size: 18px;
  line-height: 1.5em;
  margin: 0 0 10px;
}

.faq__detail__answer h4, .faq__detail__answer h5, .faq__detail__answer h6 {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0 0 10px;
}

.faq__detail__answer p:not(:last-child), .faq__detail__answer ul:not(:last-child), .faq__detail__answer li:not(:last-child) {
  margin-bottom: 10px;
}
.draggable-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(50%, -70%); 
  right: auto; 
  bottom: auto; 
  width: 475px;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.draggable-header {
    padding: 8px;
    cursor: move;
    background-color: #f1f1f1;
    border-bottom: 1px solid #ccc;
}

.draggable-content {
    padding: 10px;
}

.close-btn {
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
  .draggable-window {
    top: auto; 
    left: 50%;
    bottom: 18px; 
    transform: translateX(-50%);
    width: 90%;
  }
  
  .draggable-header {
    font-size: 14px;
  }
}
