@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  color: #727171;
  background-color: #f7f8f8;
  font-family: "Kosugi Maru", sans-serif;
  font-size: 1.2rem;
}
body .section-inner {
  width: calc(100% - 480px);
  max-width: 800px;
  margin: auto;
  position: relative;
}
body .bg-oval {
  position: absolute;
  z-index: -1;
}
@media (max-width: 1279px) {
  body .bg-oval-pc {
    display: none;
  }
}
body .bg-oval-sp {
  display: none;
}
@media (max-width: 1279px) {
  body .bg-oval-sp {
    display: block;
  }
}
body h2 {
  font-size: 3.8rem;
  letter-spacing: 0.2em;
  display: inline-block;
  position: relative;
}
body h2::before {
  content: "";
  position: absolute;
  top: 50px;
  width: 50vw;
  height: 5px;
  border-radius: 2.5px;
  right: -10px;
  opacity: 1;
}
body h3 {
  font-size: 3.2rem;
  letter-spacing: 0.2em;
  font-weight: normal;
  line-height: 50px;
}
body h4 {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: normal;
}
body img {
  width: 100%;
  vertical-align: bottom;
}
@media (max-width: 1279px) {
  body .pc-br {
    display: none;
  }
}
body .tb-br {
  display: none;
}
@media (max-width: 1279px) {
  body .tb-br {
    display: block;
  }
}
body .sp-br {
  display: none;
}
@media (max-width: 599px) {
  body .sp-br {
    display: block;
  }
}

/* アニメーション */
.bg-oval-r,
.bg-oval-l {
  opacity: 0;
}

.slideToLeft,
.slideToRight {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.slideToLeft {
  -webkit-animation-name: slideToLeft;
          animation-name: slideToLeft;
}

.slideToRight {
  -webkit-animation-name: slideToRight;
          animation-name: slideToRight;
}

@-webkit-keyframes slideToLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideToLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes slideToRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideToRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.btn-read-more {
  display: block;
  color: #f7f8f8;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  border-radius: 15px;
  width: 130px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  box-shadow: 2px 2px 1px rgba(4, 0, 0, 0.1);
}
@media (max-width: 1279px) {
  .btn-read-more {
    width: 100%;
    max-width: 360px;
    height: 34px;
    border-radius: 17px;
    line-height: 34px;
  }
}

.scroll-btn {
  position: fixed;
  bottom: 50px;
  left: calc(50% + 500px);
  z-index: 10;
  display: none;
}
@media (max-width: 1279px) {
  .scroll-btn {
    left: auto;
    right: 25px;
    bottom: 25px;
  }
}
.scroll-btn a {
  background-color: #c3c4c4;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1279px) {
  .scroll-btn a {
    width: 45px;
    height: 45px;
  }
  .scroll-btn a div {
    width: 25px;
  }
}
.scroll-btn a:hover {
  background-color: #727171;
}

header {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 120px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1279px) {
  header {
    height: 55px;
  }
}
header .header-left {
  margin-left: 25px;
  width: 350px;
}
@media (max-width: 1279px) {
  header .header-left {
    margin-left: 10px;
    width: 250px;
  }
}
header .header-nav ul {
  display: flex;
  margin-right: 5px;
}
@media (max-width: 1279px) {
  header .header-nav ul {
    display: none;
  }
}
header .header-nav ul li {
  border-left: 1px solid #c3c4c4;
  height: 20px;
}
header .header-nav ul li a {
  padding: 0 15px;
  display: block;
  line-height: 20px;
  color: #727171;
  font-size: 1.6rem;
}
header .header-nav ul :first-child {
  border-left: none;
}
header .header-nav ul .nav-en{
  padding: 0px 50px;
  color: #3DB803;
}
header .header-nav ul .nav-top:hover {
  color: #0083c0;
}
header .header-nav ul .nav-message:hover {
  color: #e68888;
}
header .header-nav ul .nav-policy:hover {
  color: #a078b4;
}
header .header-nav ul .nav-activity:hover {
  color: #65c2c2;
}
header .header-nav ul .nav-report:hover {
  color: #96c81e;
}
header .header-nav ul .nav-data:hover {
  color: #86b3e0;
}
header .header-nav ul .nav-en:hover {
  color: #86b3e0;
}

header .header-nav .hamburger-menu {
  display: none;
  border: 2px solid #c3c4c4;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
@media (hover: hover) {
  header .header-nav .hamburger-menu:hover {
    cursor: pointer;
    background-color: #c3c4c4;
  }
}
@media (hover: none) {
  header .header-nav .hamburger-menu:active {
    background-color: #c3c4c4;
  }
}
@media (max-width: 1279px) {
  header .header-nav .hamburger-menu {
    display: block;
    position: relative;
  }
}
header .header-nav .hamburger-menu .bar {
  background-color: #727171;
  display: block;
  height: 2px;
  left: 50%;
  border-radius: 1px;
  position: absolute;
  transform: translateX(-50%);
  transition: all 0.4s;
  width: 15px;
}
header .header-nav .hamburger-menu .bar-top {
  top: 6px;
}
header .header-nav .hamburger-menu .bar-mid {
  top: 50%;
  transform: translate(-50%, -50%);
}
header .header-nav .hamburger-menu .bar-bottom {
  bottom: 6px;
}
header .header-nav .hamburger-menu-active .bar-top {
  transform: translate(-50%, 6px) rotate(45deg);
  width: 18px;
  transition: transform 0.3s;
}
header .header-nav .hamburger-menu-active .bar-mid {
  opacity: 0;
  transition: opacity 0.3s;
}
header .header-nav .hamburger-menu-active .bar-bottom {
  transform: translate(-50%, -5px) rotate(-45deg);
  width: 18px;
  transition: transform 0.3s;
}

.header-nav-sp {
  position: absolute;
  left: -100vw;
}
@media (max-width: 1279px) {
  .header-nav-sp {
    z-index: 9;
    display: none;
    top: 55px;
    left: 0;
    width: 100%;
    background-color: #fff;
  }
  .header-nav-sp ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header-nav-sp ul li {
    width: 100%;
    font-size: 1.4rem;
  }
  .header-nav-sp ul li a {
    display: block;
    text-align: center;
    height: 50px;
    line-height: 50px;
    color: #727171;
  }
  .header-nav-sp ul li .nav-top {
    padding-top: 20px;
  }
  .header-nav-sp ul li .nav-top:hover {
    color: #0083c0;
  }
  .header-nav-sp ul li .nav-message:hover {
    color: #e68888;
  }
  .header-nav-sp ul li .nav-policy:hover {
    color: #a078b4;
  }
  .header-nav-sp ul li .nav-activity:hover {
    color: #65c2c2;
  }
  .header-nav-sp ul li .nav-report:hover {
    color: #96c81e;
  }
  .header-nav-sp ul li .nav-data {
    padding-bottom: 20px;
  }
  .header-nav-sp ul li .nav-data:hover {
    color: #86b3e0;
  }
}
  .header-nav-sp ul li .nav-en{
    padding-bottom: 20px;
	color: #3DB803;
  }
  .header-nav-sp ul li .nav-en:hover {
    color: #86b3e0;
  }

.no-scroll {
  overflow: hidden;
}

footer {
  background-color: #fff;
  height: 110px;
}
@media (max-width: 1279px) {
  footer {
    height: auto;
  }
}
footer nav {
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1279px) {
  footer nav {
    padding-top: 25px;
  }
}
footer nav ul {
  display: flex;
}
@media (max-width: 1279px) {
  footer nav ul {
    flex-direction: column;
    align-items: center;
  }
}
footer nav ul li {
  border-left: 1px solid #c3c4c4;
  height: 20px;
}
@media (max-width: 1279px) {
  footer nav ul li {
    border: none;
    height: 25px;
  }
}
footer nav ul li a {
  padding: 0 23px;
  display: block;
  line-height: 20px;
  color: #727171;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  footer nav ul li a {
    font-size: 1.4rem;
    line-height: 29px;
  }
}
footer nav ul :first-child {
  border-left: none;
}
footer nav ul .nav-top:hover {
  color: #0083c0;
}
footer nav ul .nav-message:hover {
  color: #e68888;
}
footer nav ul .nav-policy:hover {
  color: #a078b4;
}
footer nav ul .nav-activity:hover {
  color: #65c2c2;
}
footer nav ul .nav-report:hover {
  color: #96c81e;
}
footer nav ul .nav-data:hover {
  color: #86b3e0;
}
footer p {
  margin: 30px auto 20px;
  text-align: center;
  font-size: 1.2rem;
}
@media (max-width: 1279px) {
  footer p {
    margin-bottom: 0;
    padding-bottom: 30px;
    font-size: 0.9rem;
  }
}

#top {
  /* アニメーション */
}
#top .nav-top {
  color: #0083c0;
}
#top main {
  overflow: hidden;
  padding-bottom: 180px;
  position: relative;
}
@media (max-width: 1279px) {
  #top main {
    padding-bottom: 50px;
  }
}
#top .top {
  position: absolute;
  left: -10%;
  width: 120%;
  height: 69.7vw;
  border-radius: 0 0 50% 50%/0 0 26% 26%;
  overflow: hidden;
  z-index: 0;
}
@media (max-width: 1279px) {
  #top .top {
    height: 83vw;
  }
}
#top .top .top-img-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
}
#top .top .top-bg-large {
  opacity: 0;
}
#top .top .top-bg-small {
  opacity: 0;
  mix-blend-mode: multiply;
}
#top .top .top-bg-pic {
  opacity: 0;
  z-index: 10;
}
#top .top .top-bg-dot {
  opacity: 0;
}
#top .top .top-bg-large-1 {
  width: 54.9vw;
}
@media (max-width: 1279px) {
  #top .top .top-bg-large-1 {
    width: 66.7vw;
  }
}
#top .top .top-bg-large-2 {
  width: 35.2vw;
}
@media (max-width: 1279px) {
  #top .top .top-bg-large-2 {
    width: 42.8vw;
  }
}
#top .top .top-bg-large-3 {
  width: 61.7vw;
}
@media (max-width: 1279px) {
  #top .top .top-bg-large-3 {
    width: 75vw;
  }
}
#top .top .top-bg-large-4 {
  width: 51vw;
}
@media (max-width: 1279px) {
  #top .top .top-bg-large-4 {
    width: 61.9vw;
  }
}
#top .top .top-bg-small-1 {
  width: 34.4vw;
  transform: translate(-54.9vw, -49.8vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-1 {
    width: 41.8vw;
    transform: translate(-67.2vw, -56.7vw);
  }
}
#top .top .top-bg-small-2 {
  width: 21.7vw;
  transform: translate(-49vw, -24.1vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-2 {
    width: 26.4vw;
    transform: translate(-58.6vw, -28.9vw);
  }
}
#top .top .top-bg-small-3 {
  width: 22.6vw;
  transform: translate(-14.2vw, -33.2vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-3 {
    width: 27.5vw;
    transform: translate(-14.9vw, -39.1vw);
  }
}
#top .top .top-bg-small-4 {
  width: 18vw;
  transform: translate(37vw, -41.4vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-4 {
    width: 21.9vw;
    transform: translate(45.3vw, -48.6vw);
  }
}
#top .top .top-bg-small-5 {
  width: 25vw;
  transform: translate(6.8vw, -18vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-5 {
    width: 30.4vw;
    transform: translate(7.2vw, -21.4vw);
  }
}
#top .top .top-bg-small-6 {
  width: 26.6vw;
  transform: translate(30.2vw, -20.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-6 {
    width: 32.3vw;
    transform: translate(34.7vw, -23.1vw);
  }
}
#top .top .top-bg-small-7 {
  width: 25.3vw;
  transform: translate(-68.2vw, -2.4vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-7 {
    display: none;
  }
}
#top .top .top-bg-small-8 {
  width: 13.2vw;
  transform: translate(-36.9vw, 21.8vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-8 {
    width: 18vw;
    transform: translate(-42.4vw, 28.9vw);
  }
}
#top .top .top-bg-small-9 {
  width: 25.5vw;
  transform: translate(-20.9vw, 16.4vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-9 {
    width: 31vw;
    transform: translate(-22.8vw, 20.6vw);
  }
}
#top .top .top-bg-small-10 {
  width: 22.4vw;
  transform: translate(-6.6vw, 23.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-10 {
    width: 27.2vw;
    transform: translate(-8.1vw, 28vw);
  }
}
#top .top .top-bg-small-11 {
  width: 21.7vw;
  transform: translate(4.4vw, 13.1vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-small-11 {
    width: 26.4vw;
    transform: translate(8.4vw, 16.1vw);
  }
}
#top .top .top-bg-pic-1 {
  width: 13.7vw;
  transform: translate(-39.7vw, -27.3vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-1 {
    width: 16.6vw;
    transform: translate(-42.4vw, -28.8vw);
  }
}
#top .top .top-bg-pic-2 {
  width: 15.3vw;
  transform: translate(-23.3vw, -39vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-2 {
    width: 18.6vw;
    transform: translate(-24.7vw, -45.8vw);
  }
}
#top .top .top-bg-pic-3 {
  width: 25.2vw;
  transform: translate(-2.9vw, -25.2vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-3 {
    width: 30.6vw;
    transform: translate(-4.9vw, -30.2vw);
  }
}
#top .top .top-bg-pic-4 {
  width: 21.3vw;
  transform: translate(33.3vw, -31.4vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-4 {
    width: 25.9vw;
    transform: translate(31.9vw, -37.5vw);
  }
}
#top .top .top-bg-pic-5 {
  width: 17.7vw;
  transform: translate(-46.1vw, 14.7vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-5 {
    width: 21.5vw;
    transform: translate(-51vw, 17.2vw);
  }
}
#top .top .top-bg-pic-6 {
  width: 33.2vw;
  transform: translate(-7.8vw, 18.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-6 {
    width: 40.3vw;
    transform: translate(-9.7vw, 23.3vw);
  }
}
#top .top .top-bg-pic-7 {
  width: 19.2vw;
  transform: translate(26.7vw, 3.6vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-pic-7 {
    width: 23.3vw;
    transform: translate(32.2vw, 3.6vw);
  }
}
#top .top .top-bg-dot-1 {
  width: 46.3vw;
  transform: translate(-53.5vw, -58.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-dot-1 {
    width: 56.2vw;
    transform: translate(-71.1vw, -75.6vw);
  }
}
#top .top .top-bg-dot-2 {
  width: 53.5vw;
  transform: translate(16.9vw, -64.9vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-dot-2 {
    width: 65vw;
    transform: translate(20vw, -74.4vw);
  }
}
#top .top .top-bg-dot-3 {
  width: 67.4vw;
  transform: translate(-70.7vw, -5.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-dot-3 {
    width: 81.9vw;
    transform: translate(-84.4vw, -5.3vw);
  }
}
#top .top .top-bg-dot-4 {
  width: 66.5vw;
  transform: translate(35.6vw, -4.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-bg-dot-4 {
    width: 80.8vw;
    transform: translate(41.1vw, -7.2vw);
  }
}
#top .top .top-heading-p {
  color: #f7f8f8;
  font-size: 1.4vw;
  letter-spacing: 0.2em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-35.9vw, -1.7vw);
}
@media (max-width: 1279px) {
  #top .top .top-heading-p {
    font-size: 2.8vw;
    transform: translate(-44.4vw, -2.5vw);
  }
}
#top .top .top-heading-h1-1 {
  color: #f7f8f8;
  font-size: 3.9vw;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36.4vw, 1.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-heading-h1-1 {
    font-size: 5.3vw;
    transform: translate(-44.4vw, 1.4vw);
  }
}
#top .top .top-heading-h1-2 {
  color: #f7f8f8;
  font-size: 3.9vw;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-36.4vw, 6.5vw);
}
@media (max-width: 1279px) {
  #top .top .top-heading-h1-2 {
    font-size: 5.3vw;
    transform: translate(-44.4vw, 6.7vw);
  }
}
#top .section-inner {
  width: calc(100% - 240px);
  max-width: 1040px;
  margin: auto;
  position: relative;
}
@media (max-width: 1279px) {
  #top .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 60px);
  }
}
#top .message-wrapper {
  position: relative;
  margin-top: 83.3vw;
}
@media (max-width: 1279px) {
  #top .message-wrapper {
    margin-top: 85vw;
    border-bottom: 2px solid #c3c4c4;
    padding-bottom: 20px;
  }
}
#top .message-wrapper .message-bg-1 {
  width: 533px;
  top: -150px;
  right: -400px;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message-bg-1 {
    width: 180px;
    top: 20px;
    right: -130px;
  }
}
#top .message-wrapper .message-bg-2 {
  width: 350px;
  top: 500px;
  left: -180px;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message-bg-2 {
    width: 150px;
    top: 250px;
    left: -100px;
  }
}
#top .message-wrapper .message h2 {
  margin-top: 125px;
  letter-spacing: 0.05em;
}
#top .message-wrapper .message h2::before {
  background-color: #e68888;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message h2 {
    margin-top: 50px;
    font-size: 2.2rem;
    text-align: center;
  }
  #top .message-wrapper .message h2::before {
    display: none;
  }
  #top .message-wrapper .message h2::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    height: 3px;
    border-radius: 1.5px;
    background-color: #e68888;
  }
}
#top .message-wrapper .message .message-inner {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  align-items: center;
}
#top .message-wrapper .message .message-inner .message-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#top .message-wrapper .message .message-inner .message-img-wrapper div {
  width: 445px;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-img-wrapper div {
    width: 66.7%;
  }
}
#top .message-wrapper .message .message-inner .message-img-wrapper p {
  margin-top: 20px;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-img-wrapper p {
    font-size: 1.8rem;
  }
}
#top .message-wrapper .message .message-inner .message-img-wrapper p .text-small {
  font-size: 1.4rem;
  margin-right: 5px;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-img-wrapper p .text-small {
    font-size: 1.3rem;
  }
}
#top .message-wrapper .message .message-inner .message-text-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-text-wrapper {
    margin: 30px 0;
  }
}
#top .message-wrapper .message .message-inner .message-text-wrapper h3 {
  margin-top: 50px;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-text-wrapper h3 {
    margin-top: 20px;
    font-size: 2.2rem;
    line-height: 33px;
    letter-spacing: 0.1em;
  }
}
#top .message-wrapper .message .message-inner .message-text-wrapper h4 {
  margin-top: 20px;
  line-height: 40px;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-text-wrapper h4 {
    text-align: left;
    margin-top: 24px;
    font-size: 1.3rem;
    line-height: 28px;
  }
}
#top .message-wrapper .message .message-inner .message-text-wrapper .btn-read-more {
  margin-top: 55px;
  background-color: #e68888;
}
@media (max-width: 1279px) {
  #top .message-wrapper .message .message-inner .message-text-wrapper .btn-read-more {
    margin-top: 40px;
  }
}
#top .message-wrapper .message .message-inner .message-text-wrapper .btn-read-more:hover {
  background-color: #d24646;
}
#top .policy-wrapper {
  position: relative;
}
@media (max-width: 1279px) {
  #top .policy-wrapper {
    border-bottom: 2px solid #c3c4c4;
    padding-bottom: 50px;
  }
}
#top .policy-wrapper .policy-bg {
  width: 700px;
  top: 70px;
  left: calc(50% + 220px);
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy-bg {
    display: none;
  }
}
#top .policy-wrapper .policy-bg-sp-1 {
  width: 350px;
  top: 50px;
  left: -190px;
}
#top .policy-wrapper .policy-bg-sp-2 {
  width: 220px;
  top: 400px;
  right: -150px;
}
#top .policy-wrapper .policy-bg-sp-3 {
  width: 250px;
  top: 850px;
  left: -200px;
}
#top .policy-wrapper .policy h2 {
  margin-top: 170px;
}
#top .policy-wrapper .policy h2::before {
  background-color: #a078b4;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy h2 {
    margin-top: 50px;
    font-size: 2.2rem;
    text-align: center;
  }
  #top .policy-wrapper .policy h2::before {
    display: none;
  }
  #top .policy-wrapper .policy h2::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 170px;
    height: 3px;
    border-radius: 1.5px;
    background-color: #a078b4;
  }
}
#top .policy-wrapper .policy .policy-inner {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner {
    flex-direction: column;
    align-items: center;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content {
  margin-top: 90px;
  margin-right: 35px;
  width: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner .policy-content {
    margin-top: 0;
    margin-right: 0;
    width: 100%;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content .policy-icon-philosophy {
  width: 117px;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner .policy-content .policy-icon-philosophy {
    margin-top: 45px;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content .policy-icon-promotion {
  width: 130px;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner .policy-content .policy-icon-promotion {
    margin-top: 85px;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content .policy-icon-background {
  width: 115px;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner .policy-content .policy-icon-background {
    margin-top: 85px;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content .policy-content-title {
  color: #a078b4;
  margin-top: 25px;
  width: 205px;
  font-size: 2.4rem;
  letter-spacing: 0.2em;
  text-align: center;
}
#top .policy-wrapper .policy .policy-inner .policy-content p {
  margin-top: 25px;
  font-size: 1.3rem;
  line-height: 20px;
  width: 170px;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner .policy-content p {
    width: 100%;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content .btn-read-more {
  margin-top: 20px;
  background-color: #a078b4;
}
@media (max-width: 1279px) {
  #top .policy-wrapper .policy .policy-inner .policy-content .btn-read-more {
    margin-top: 35px;
  }
}
#top .policy-wrapper .policy .policy-inner .policy-content .btn-read-more:hover {
  background-color: #69378c;
}
#top .activity-wrapper {
  position: relative;
}
@media (max-width: 1279px) {
  #top .activity-wrapper {
    border-bottom: 2px solid #c3c4c4;
    padding-bottom: 80px;
  }
}
@media (max-width: 1279px) and (max-width: 1279px) {
  #top .activity-wrapper {
    padding-bottom: 50px;
  }
}
#top .activity-wrapper .activity-bg-1 {
  width: 400px;
  top: 240px;
  right: -320px;
}
#top .activity-wrapper .activity-bg-2 {
  width: 650px;
  top: 850px;
  right: -350px;
}
#top .activity-wrapper .activity-bg-sp-1 {
  width: 230px;
  top: 260px;
  right: -180px;
}
#top .activity-wrapper .activity-bg-sp-2 {
  width: 170px;
  top: 730px;
  left: -120px;
}
#top .activity-wrapper .activity-bg-sp-3 {
  width: 200px;
  top: 1650px;
  right: -150px;
}
#top .activity-wrapper .activity-bg-sp-4 {
  width: 280px;
  top: 2070px;
  left: -140px;
}
#top .activity-wrapper .activity-bg-sp-5 {
  width: 280px;
  top: 2950px;
  right: -230px;
}
#top .activity-wrapper .activity h2 {
  margin-top: 180px;
}
#top .activity-wrapper .activity h2::before {
  background-color: #65c2c2;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity h2 {
    margin-top: 50px;
    font-size: 2.2rem;
    text-align: center;
  }
  #top .activity-wrapper .activity h2::before {
    display: none;
  }
  #top .activity-wrapper .activity h2::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 170px;
    height: 3px;
    border-radius: 1.5px;
    background-color: #65c2c2;
  }
}
#top .activity-wrapper .activity h4 {
  margin-top: 60px;
  line-height: 30px;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity h4 {
    margin-top: 50px;
    font-size: 1.3rem;
    line-height: 22px;
  }
}
#top .activity-wrapper .activity .activity-inner {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity .activity-inner {
    flex-direction: column;
    align-items: center;
  }
}
#top .activity-wrapper .activity .activity-inner .activity-content {
  margin-top: 60px;
  display: flex;
  width: 255px;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity .activity-inner .activity-content {
    width: 100%;
  }
}
#top .activity-wrapper .activity .activity-inner .activity-content .activity-content-img-bg {
  position: absolute;
  width: 255px;
  z-index: -1;
}
#top .activity-wrapper .activity .activity-inner .activity-content .activity-content-title {
  margin-top: 5px;
  height: 40px;
  display: flex;
  align-items: center;
}
#top .activity-wrapper .activity .activity-inner .activity-content .activity-content-title p {
  font-size: 2rem;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity .activity-inner .activity-content .activity-content-title p {
    font-size: 2.2rem;
    letter-spacing: 0.05em;
  }
}
#top .activity-wrapper .activity .activity-inner .activity-content .activity-content-title .activity-number {
  margin-right: 3px;
  background-image: url(image/activity-number-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 47px;
  height: 42px;
  text-align: center;
  line-height: 45px;
  font-size: 2.1rem;
  letter-spacing: normal;
  font-weight: bold;
  color: #f7f8f8;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity .activity-inner .activity-content .activity-content-title .activity-number {
    margin-right: 10px;
    width: 45px;
  }
}
#top .activity-wrapper .activity .activity-inner .activity-content .activity-content-text {
  margin-top: 10px;
  width: 225px;
  font-size: 1.4rem;
  line-height: 22px;
  display: block;
}
@media (max-width: 1279px) {
  #top .activity-wrapper .activity .activity-inner .activity-content .activity-content-text {
    width: 100%;
    font-size: 1.3rem;
  }
}
#top .activity-wrapper .activity .activity-inner .activity-content .btn-read-more {
  margin-top: 15px;
  background-color: #65c2c2;
}
#top .activity-wrapper .activity .activity-inner .activity-content .btn-read-more:hover {
  background-color: #008296;
}
#top .report-wrapper {
  position: relative;
}
@media (max-width: 1279px) {
  #top .report-wrapper {
    border-bottom: 2px solid #c3c4c4;
    padding-bottom: 50px;
  }
}
#top .report-wrapper .report-bg-1 {
  width: 650px;
  top: 350px;
  left: -130px;
}
#top .report-wrapper .report-bg-2 {
  width: 350px;
  top: 390px;
  right: -170px;
}
#top .report-wrapper .report-bg-sp-1 {
  width: 170px;
  top: 30px;
  right: -100px;
}
#top .report-wrapper .report-bg-sp-2 {
  width: 200px;
  top: 500px;
  left: -100px;
}
#top .report-wrapper .report h2 {
  margin-top: 210px;
}
#top .report-wrapper .report h2::before {
  background-color: #96c81e;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report h2 {
    margin-top: 50px;
    font-size: 2.2rem;
  }
  #top .report-wrapper .report h2::before {
    display: none;
  }
  #top .report-wrapper .report h2::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 170px;
    height: 3px;
    border-radius: 1.5px;
    background-color: #96c81e;
  }
}
#top .report-wrapper .report .report-inner {
  background-image: url(image/report-inner-bg.png);
  background-repeat: no-repeat;
  background-position: top -50px right -60px;
  padding: 60px;
  margin: 100px auto 0;
  width: 800px;
  background-color: #fff;
  border-radius: 8.5px;
  box-shadow: 4px 4px 6px rgba(4, 0, 0, 0.1);
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner {
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    background-image: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px 40px;
    width: 100%;
    max-width: 780px;
    box-sizing: border-box;
  }
}
#top .report-wrapper .report .report-inner .report-inner-img {
  display: none;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner .report-inner-img {
    display: block;
    width: 100%;
    max-width: 360px;
  }
}
#top .report-wrapper .report .report-inner h4 {
  margin-top: 30px;
  line-height: 30px;
  width: 350px;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner h4 {
    font-size: 1.3rem;
    line-height: 22px;
    width: 100%;
  }
}
#top .report-wrapper .report .report-inner ul {
  margin-top: 75px;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner ul {
    margin-top: 40px;
    width: 100%;
  }
}
#top .report-wrapper .report .report-inner ul li {
  border-top: 1px solid #c3c4c4;
  height: 70px;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner ul li {
    height: auto;
  }
}
#top .report-wrapper .report .report-inner ul li:last-child {
  border-bottom: 1px solid #c3c4c4;
}
#top .report-wrapper .report .report-inner ul li a {
  display: block;
  color: #727171;
  line-height: 70px;
  font-size: 1.7rem;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner ul li a {
    padding: 10px 0;
    text-align: center;
    line-height: 20px;
    font-size: 1.3rem;
  }
}
#top .report-wrapper .report .report-inner .report-more {
  display: block;
  margin: 55px auto 0;
  width: 220px;
  height: 32px;
  background-color: #c3c4c4;
  color: #f7f8f8;
  border-radius: 16px;
  line-height: 32px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}
@media (max-width: 1279px) {
  #top .report-wrapper .report .report-inner .report-more {
    margin: 40px auto 0;
    width: 100%;
    max-width: 360px;
  }
}
#top .report-wrapper .report .report-inner .report-more:hover {
  background-color: #727171;
}
#top .data-wrapper {
  position: relative;
}
#top .data-wrapper .data-bg {
  width: 424px;
  top: 200px;
  right: -294px;
}
#top .data-wrapper .data-bg-sp {
  width: 280px;
  top: 280px;
  left: -150px;
}
#top .data-wrapper .data h2 {
  margin-top: 180px;
}
#top .data-wrapper .data h2::before {
  background-color: #86b3e0;
}
@media (max-width: 1279px) {
  #top .data-wrapper .data h2 {
    margin-top: 50px;
    font-size: 2.2rem;
    text-align: center;
  }
  #top .data-wrapper .data h2::before {
    display: none;
  }
  #top .data-wrapper .data h2::after {
    content: "";
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 300px;
    height: 3px;
    border-radius: 1.5px;
    background-color: #86b3e0;
  }
}
#top .data-wrapper .data .data-inner {
  margin-top: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
@media (max-width: 1279px) {
  #top .data-wrapper .data .data-inner {
    margin-top: 45px;
    flex-direction: column;
    align-items: center;
  }
}
#top .data-wrapper .data .data-inner div {
  width: 142px;
}
#top .data-wrapper .data .data-inner p {
  margin-left: 40px;
  font-size: 2.5rem;
  line-height: 43px;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  #top .data-wrapper .data .data-inner p {
    color: #86b3e0;
    margin-left: 0;
    font-size: 2.2rem;
    line-height: 33px;
    margin-top: 20px;
    text-align: center;
  }
}
#top .data-wrapper .data .data-inner .btn-read-more {
  position: absolute;
  left: 470px;
  top: 90px;
  background-color: #86b3e0;
}
#top .data-wrapper .data .data-inner .btn-read-more:hover {
  background-color: #008ccf;
}
@media (max-width: 1279px) {
  #top .data-wrapper .data .data-inner .btn-read-more {
    position: static;
    margin-top: 30px;
  }
}
#top .fvAnimation {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
#top .fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
}
@media (max-width: 1279px) {
  #top .fadeDown {
    -webkit-animation-name: fadeDownAnimeSp;
            animation-name: fadeDownAnimeSp;
  }
}
#top .fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
}
@media (max-width: 1279px) {
  #top .fadeLeft {
    -webkit-animation-name: fadeLeftAnimeSp;
            animation-name: fadeLeftAnimeSp;
  }
}
#top .fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
}
@media (max-width: 1279px) {
  #top .fadeUp {
    -webkit-animation-name: fadeUpAnimeSp;
            animation-name: fadeUpAnimeSp;
  }
}
#top .fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
}
@media (max-width: 1279px) {
  #top .fadeRight {
    -webkit-animation-name: fadeRightAnimeSp;
            animation-name: fadeRightAnimeSp;
  }
}
#top .fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
#top .top-heading-h1 span {
  opacity: 0;
  -webkit-animation: fadeInAnime 1.5s ease-out forwards;
          animation: fadeInAnime 1.5s ease-out forwards;
}
#top .top-heading-p span {
  opacity: 0;
  -webkit-animation: fadeInAnime 1.5s ease-out forwards;
          animation: fadeInAnime 1.5s ease-out forwards;
}
@-webkit-keyframes fadeDownAnime {
  0% {
    opacity: 0;
    transform: translate(-57.9vw, -78.4vw);
  }
  100% {
    opacity: 1;
    transform: translate(-37.9vw, -58.4vw);
  }
}
@keyframes fadeDownAnime {
  0% {
    opacity: 0;
    transform: translate(-57.9vw, -78.4vw);
  }
  100% {
    opacity: 1;
    transform: translate(-37.9vw, -58.4vw);
  }
}
@-webkit-keyframes fadeDownAnimeSp {
  0% {
    opacity: 0;
    transform: translate(-59.2vw, -80.8vw);
  }
  100% {
    opacity: 1;
    transform: translate(-49.2vw, -70.8vw);
  }
}
@keyframes fadeDownAnimeSp {
  0% {
    opacity: 0;
    transform: translate(-59.2vw, -80.8vw);
  }
  100% {
    opacity: 1;
    transform: translate(-49.2vw, -70.8vw);
  }
}
@-webkit-keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    transform: translate(33.9vw, -63.8vw);
  }
  100% {
    opacity: 1;
    transform: translate(13.9vw, -43.8vw);
  }
}
@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    transform: translate(33.9vw, -63.8vw);
  }
  100% {
    opacity: 1;
    transform: translate(13.9vw, -43.8vw);
  }
}
@-webkit-keyframes fadeLeftAnimeSp {
  0% {
    opacity: 0;
    transform: translate(25.6vw, -61.7vw);
  }
  100% {
    opacity: 1;
    transform: translate(15.6vw, -51.7vw);
  }
}
@keyframes fadeLeftAnimeSp {
  0% {
    opacity: 0;
    transform: translate(25.6vw, -61.7vw);
  }
  100% {
    opacity: 1;
    transform: translate(15.6vw, -51.7vw);
  }
}
@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translate(-66.2vw, 7.8vw);
  }
  100% {
    opacity: 1;
    transform: translate(-46.2vw, -17.8vw);
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translate(-66.2vw, 7.8vw);
  }
  100% {
    opacity: 1;
    transform: translate(-46.2vw, -17.8vw);
  }
}
@-webkit-keyframes fadeUpAnimeSp {
  0% {
    opacity: 0;
    transform: translate(-66.1vw, -10.3vw);
  }
  100% {
    opacity: 1;
    transform: translate(-56.1vw, -20.3vw);
  }
}
@keyframes fadeUpAnimeSp {
  0% {
    opacity: 0;
    transform: translate(-66.1vw, -10.3vw);
  }
  100% {
    opacity: 1;
    transform: translate(-56.1vw, -20.3vw);
  }
}
@-webkit-keyframes fadeRightAnime {
  0% {
    opacity: 0;
    transform: translate(29.5vw, 25.1vw);
  }
  100% {
    opacity: 1;
    transform: translate(9.5vw, 5.1vw);
  }
}
@keyframes fadeRightAnime {
  0% {
    opacity: 0;
    transform: translate(29.5vw, 25.1vw);
  }
  100% {
    opacity: 1;
    transform: translate(9.5vw, 5.1vw);
  }
}
@-webkit-keyframes fadeRightAnimeSp {
  0% {
    opacity: 0;
    transform: translate(23.3vw, 17.5vw);
  }
  100% {
    opacity: 1;
    transform: translate(13.3vw, 7.5vw);
  }
}
@keyframes fadeRightAnimeSp {
  0% {
    opacity: 0;
    transform: translate(23.3vw, 17.5vw);
  }
  100% {
    opacity: 1;
    transform: translate(13.3vw, 7.5vw);
  }
}
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#top .slideInLine::before {
  -webkit-animation-name: slideInLine;
          animation-name: slideInLine;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
}
@-webkit-keyframes slideInLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideInLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
#top .fadeInActivity {
  -webkit-animation-name: fadeInActivity;
          animation-name: fadeInActivity;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}
@-webkit-keyframes fadeInActivity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInActivity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#message_policy header .nav-message {
  color: #e68888;
}
#message_policy footer .nav-policy {
  color: #a078b4;
}
@media (max-width: 1279px) {
  #message_policy section {
    border-bottom: 1px solid #c3c4c4;
  }
  #message_policy section:last-child {
    border-bottom: none;
  }
}
#message_policy .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid #c3c4c4;
  padding-bottom: 180px;
}
@media (max-width: 1279px) {
  #message_policy .section-inner {
    width: calc(100% - 60px);
    border-bottom: none;
    padding-bottom: 50px;
  }
}
#message_policy .section-inner-last {
  border-bottom: none;
}
#message_policy main {
  overflow: hidden;
  position: relative;
}
#message_policy .menu .menu-btn-wrapper {
  display: flex;
  margin: 45px 45px 0 0;
  justify-content: flex-end;
}
@media (max-width: 1279px) {
  #message_policy .menu .menu-btn-wrapper {
    justify-content: center;
    margin: 50px 0 0 0;
  }
}
#message_policy .menu .menu-btn-wrapper .menu-btn {
  margin: 0 10px;
}
@media (max-width: 1279px) {
  #message_policy .menu .menu-btn-wrapper .menu-btn {
    margin: 0;
    position: relative;
    border-right: 2px solid #a078b4;
  }
  #message_policy .menu .menu-btn-wrapper .menu-btn:last-child {
    border-right: none;
  }
}
#message_policy .menu .menu-btn-wrapper .menu-btn .menu-btn-square {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 3px solid #a078b4;
  border-radius: 12px;
  width: 95px;
  height: 95px;
}
@media (max-width: 1279px) {
  #message_policy .menu .menu-btn-wrapper .menu-btn .menu-btn-square {
    align-items: flex-start;
    border: none;
    border-radius: 0;
    width: 100px;
    height: 65px;
  }
}
#message_policy .menu .menu-btn-wrapper .menu-btn .menu-btn-square div {
  width: 70px;
}
@media (max-width: 1279px) {
  #message_policy .menu .menu-btn-wrapper .menu-btn .menu-btn-square div {
    width: 40px;
  }
}
#message_policy .menu .menu-btn-wrapper .menu-btn .menu-btn-square:hover {
  background-color: #69378c;
}
#message_policy .menu .menu-btn-wrapper .menu-btn p {
  text-align: center;
  color: #a078b4;
  font-size: 1.2rem;
  margin-top: 10px;
}
@media (max-width: 1279px) {
  #message_policy .menu .menu-btn-wrapper .menu-btn p {
    width: 100%;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
#message_policy .message {
  position: relative;
}
#message_policy .message .p-message-bg-1 {
  width: 516px;
  top: 90px;
  left: -380px;
}
#message_policy .message .p-message-bg-2 {
  width: 617px;
  top: 350px;
  right: -460px;
}
#message_policy .message .p-message-bg-3 {
  width: 411px;
  top: 900px;
  left: -300px;
}
#message_policy .message .p-message-bg-sp-1 {
  width: 170px;
  top: 70px;
  right: -130px;
}
#message_policy .message .p-message-bg-sp-2 {
  width: 170px;
  top: 270px;
  left: -130px;
}
#message_policy .message h2 {
  align-self: flex-start;
  margin-top: 10px;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
}
#message_policy .message h2::before {
  background-color: #e68888;
  width: 315px;
}
@media (max-width: 1279px) {
  #message_policy .message h2 {
    margin-top: 60px;
    font-size: 2.2rem;
    align-self: auto;
  }
  #message_policy .message h2::before {
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    height: 3px;
    border-radius: 1.5px;
  }
}
#message_policy .message .message-img {
  margin-top: 120px;
  width: 445px;
}
@media (max-width: 1279px) {
  #message_policy .message .message-img {
    margin-top: 40px;
    max-width: 400px;
    width: 70%;
  }
}
#message_policy .message h3 {
  text-align: center;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
  margin-top: 110px;
}
@media (max-width: 1279px) {
  #message_policy .message h3 {
    margin-top: 40px;
    font-size: 2.2rem;
    line-height: 31px;
  }
}
#message_policy .message p {
  margin-top: 65px;
  font-size: 1.6rem;
  line-height: 35px;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  #message_policy .message p {
    margin-top: 35px;
    font-size: 1.3rem;
    line-height: 28px;
    letter-spacing: 0;
  }
}
#message_policy .message .message-name {
  margin-top: 90px;
  line-height: 23px;
  align-self: flex-end;
  text-align: end;
}
@media (max-width: 1279px) {
  #message_policy .message .message-name {
    margin-top: 20px;
    line-height: 18px;
  }
}
#message_policy .policy-icon-title {
  margin-top: 40px;
  font-size: 3.4rem;
  letter-spacing: 0.2em;
  color: #a078b4;
}
@media (max-width: 1279px) {
  #message_policy .policy-icon-title {
    margin-bottom: 30px;
    margin-top: 20px;
    font-size: 2.2rem;
  }
}
#message_policy .philosophy {
  position: relative;
}
#message_policy .philosophy .p-philosophy-bg-1 {
  width: 522px;
  top: 20px;
  right: -423px;
}
#message_policy .philosophy .p-philosophy-bg-sp-1 {
  width: 320px;
  top: -50px;
  left: -170px;
}
#message_policy .philosophy h2 {
  align-self: flex-start;
  margin-top: 165px;
  font-size: 3.6rem;
  letter-spacing: 0.05em;
}
#message_policy .philosophy h2::before {
  background-color: #a078b4;
  width: 210px;
}
@media (max-width: 1279px) {
  #message_policy .philosophy h2 {
    margin-top: 60px;
    font-size: 2.2rem;
    align-self: auto;
  }
  #message_policy .philosophy h2::before {
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 170px;
    height: 3px;
    border-radius: 1.5px;
  }
}
#message_policy .philosophy .policy-icon {
  margin-top: 100px;
  width: 164px;
}
@media (max-width: 1279px) {
  #message_policy .philosophy .policy-icon {
    margin-top: 50px;
    width: 123px;
  }
}
#message_policy .philosophy .policy-icon-title {
  margin-bottom: 35px;
}
@media (max-width: 1279px) {
  #message_policy .philosophy .policy-icon-title {
    margin-bottom: 20px;
  }
}
#message_policy .philosophy .policy-declaration {
  margin-top: 25px;
  width: 100%;
  height: 44px;
  background-color: #a078b4;
  border-radius: 22px;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.25em;
  line-height: 44px;
  text-align: center;
}
@media (max-width: 1279px) {
  #message_policy .philosophy .policy-declaration {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
@media (max-width: 599px) {
  #message_policy .philosophy .policy-declaration {
    margin-top: 20px;
    height: 68px;
    border-radius: 44px;
    line-height: 25px;
    padding-top: 9px;
    box-sizing: border-box;
  }
}
#message_policy .philosophy .policy-text {
  margin: 70px auto 25px;
  font-size: 1.6rem;
  line-height: 32px;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  #message_policy .philosophy .policy-text {
    margin: 40px auto 0;
    font-size: 1.3rem;
    line-height: 22px;
    letter-spacing: 0;
  }
}
#message_policy .promotion {
  position: relative;
}
#message_policy .promotion .p-promotion-bg-1 {
  width: 527px;
  top: 10px;
  right: -380px;
}
#message_policy .promotion .p-promotion-bg-2 {
  width: 316px;
  top: 620px;
  left: -187px;
}
#message_policy .promotion .p-promotion-bg-3 {
  width: 540px;
  top: 1517px;
  right: -394px;
}
#message_policy .promotion .p-promotion-bg-sp-1 {
  width: 230px;
  top: 20px;
  right: -180px;
}
#message_policy .promotion .policy-icon {
  margin-top: 190px;
  width: 182px;
}
@media (max-width: 1279px) {
  #message_policy .promotion .policy-icon {
    margin-top: 50px;
    width: 137px;
  }
}
#message_policy .promotion p {
  margin-top: 80px;
  font-size: 1.6rem;
  line-height: 32px;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  #message_policy .promotion p {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 22px;
  }
}
#message_policy .promotion .policy-img-organization {
  width: 100%;
  margin-top: 100px;
}
@media (max-width: 1279px) {
  #message_policy .promotion .policy-img-organization {
    margin-top: 50px;
  }
}
#message_policy .background {
  position: relative;
}
#message_policy .background .p-background-bg-1 {
  width: 361px;
  top: 312px;
  left: -200px;
}
#message_policy .background .p-background-bg-2 {
  width: 471px;
  top: 884px;
  right: -380px;
}
#message_policy .background .p-background-bg-sp-1 {
  width: 190px;
  top: 30px;
  left: -130px;
}
#message_policy .background .p-background-bg-sp-2 {
  width: 230px;
  top: 700px;
  right: -180px;
}
#message_policy .background .p-background-bg-sp-3 {
  width: 230px;
  top: 1100px;
  left: -120px;
}
#message_policy .background .policy-icon {
  margin-top: 190px;
  width: 166px;
}
@media (max-width: 1279px) {
  #message_policy .background .policy-icon {
    margin-top: 50px;
    width: 125px;
  }
}
#message_policy .background .policy-icon-title {
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  #message_policy .background .background-content-wrapper {
    margin-top: 30px;
  }
}
#message_policy .background .background-content-wrapper .background-content {
  margin-top: 50px;
  display: flex;
  align-items: center;
}
@media (max-width: 1279px) {
  #message_policy .background .background-content-wrapper .background-content {
    flex-direction: column-reverse;
    margin-top: 0;
  }
}
#message_policy .background .background-content-wrapper .background-content dl dt {
  margin-top: 30px;
  display: flex;
  font-size: 2.8rem;
  line-height: 73px;
  letter-spacing: 0.1em;
}
@media (max-width: 1279px) {
  #message_policy .background .background-content-wrapper .background-content dl dt {
    margin-top: 20px;
    display: block;
    font-size: 2.2rem;
    line-height: 33px;
    text-align: center;
  }
}
#message_policy .background .background-content-wrapper .background-content dl dt .dot {
  font-size: 1.7rem;
  line-height: 73px;
}
@media (max-width: 1279px) {
  #message_policy .background .background-content-wrapper .background-content dl dt .dot {
    display: none;
  }
}
#message_policy .background .background-content-wrapper .background-content dl dd {
  margin-top: 0;
  font-size: 1.6rem;
  line-height: 30px;
}
@media (max-width: 1279px) {
  #message_policy .background .background-content-wrapper .background-content dl dd {
    margin-top: 20px;
    font-size: 1.3rem;
    line-height: 22px;
  }
}

#efforts .nav-activity {
  color: #65c2c2;
}
#efforts main {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#efforts main .efforts-tab-wrapper {
  margin: 100px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 800px;
}
@media (max-width: 1279px) {
  #efforts main .efforts-tab-wrapper {
    margin: 60px 0;
  }
}
#efforts main .efforts-tab-wrapper ul {
  display: flex;
  width: 400px;
  justify-content: center;
}
#efforts main .efforts-tab-wrapper ul .efforts-tab {
  font-size: 1.5rem;
  width: 190px;
  text-align: center;
  height: 28px;
  line-height: 28px;
  margin: 0 5px 10px;
  border: 1px solid #c3c4c4;
  background-color: #fff;
  color: #727171;
}
@media (max-width: 1279px) {
  #efforts main .efforts-tab-wrapper ul .efforts-tab {
    font-size: 1.4rem;
  }
}
@media (max-width: 599px) {
  #efforts main .efforts-tab-wrapper ul .efforts-tab {
    margin: 0 5px 10px;
    width: 160px;
  }
}
#efforts main .efforts-tab-wrapper ul .efforts-tab:hover {
  color: #65c2c2;
  cursor: pointer;
}
#efforts main .efforts-tab-wrapper ul .dummy-tab {
  display: block;
  border: none;
  height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
}
#efforts main .efforts-tab-wrapper ul .active-tab {
  background-color: #65c2c2;
  color: #fff;
}
#efforts main .efforts-tab-wrapper ul .active-tab:hover {
  color: #fff;
}
#efforts main section {
  width: 100%;
  position: relative;
  display: none;
}
#efforts main section .e-women-bg-1 {
  width: 515px;
  top: 60px;
  left: -400px;
}
#efforts main section .e-women-bg-2 {
  width: 615px;
  top: 280px;
  right: -455px;
}
#efforts main section .e-women-bg-3 {
  width: 415px;
  top: 940px;
  left: -310px;
}
#efforts main section .e-women-bg-4 {
  width: 515px;
  top: 1440px;
  right: -410px;
}
#efforts main section .e-women-bg-5 {
  width: 570px;
  top: 2580px;
  right: -425px;
}
#efforts main section .e-women-bg-6 {
  width: 325px;
  top: 2850px;
  left: -185px;
}
#efforts main section .e-women-bg-sp-1 {
  width: 170px;
  top: -120px;
  right: -130px;
}
#efforts main section .e-women-bg-sp-2 {
  width: 180px;
  top: 400px;
  left: -140px;
}
#efforts main section .e-women-bg-sp-3 {
  width: 290px;
  top: 1370px;
  left: -130px;
}
#efforts main section .e-women-bg-sp-4 {
  width: 230px;
  top: 2750px;
  right: -180px;
}
#efforts main section .e-women-bg-sp-5 {
  width: 170px;
  top: 3700px;
  left: -100px;
}
#efforts main section .e-women-bg-sp-6 {
  width: 240px;
  top: 4000px;
  right: -180px;
}
#efforts main section .e-women-bg-sp-7 {
  width: 200px;
  top: 4800px;
  left: -100px;
}
#efforts main section .e-career-bg-1 {
  width: 515px;
  top: 60px;
  left: -400px;
}
#efforts main section .e-career-bg-2 {
  width: 615px;
  top: 280px;
  right: -455px;
}
#efforts main section .e-career-bg-3 {
  width: 415px;
  top: 940px;
  left: -310px;
}
#efforts main section .e-career-bg-4 {
  width: 515px;
  top: 1440px;
  right: -410px;
}
#efforts main section .e-career-bg-sp-1 {
  width: 180px;
  top: -150px;
  right: -130px;
}
#efforts main section .e-career-bg-sp-2 {
  width: 180px;
  top: 260px;
  left: -120px;
}
#efforts main section .e-career-bg-sp-3 {
  width: 230px;
  top: 1200px;
  left: -170px;
}
#efforts main section .e-career-bg-sp-4 {
  width: 230px;
  top: 1500px;
  right: -160px;
}
#efforts main section .e-career-bg-sp-5 {
  width: 170px;
  top: 2150px;
  left: -120px;
}
#efforts main section .e-career-bg-sp-6 {
  width: 220px;
  top: 2450px;
  right: -160px;
}
#efforts main section .e-foreigner-bg-1 {
  width: 515px;
  top: -50px;
  left: -400px;
}
#efforts main section .e-foreigner-bg-2 {
  width: 615px;
  top: 120px;
  right: -455px;
}
#efforts main section .e-foreigner-bg-3 {
  width: 415px;
  top: 740px;
  left: -310px;
}
#efforts main section .e-foreigner-bg-4 {
  width: 515px;
  top: 1550px;
  right: -410px;
}
#efforts main section .e-foreigner-bg-5 {
  width: 320px;
  top: 2450px;
  left: -150px;
}
#efforts main section .e-foreigner-bg-sp-1 {
  width: 200px;
  top: -100px;
  right: -160px;
}
#efforts main section .e-foreigner-bg-sp-2 {
  width: 180px;
  top: 220px;
  left: -120px;
}
#efforts main section .e-foreigner-bg-sp-3 {
  width: 180px;
  top: 1830px;
  left: -130px;
}
#efforts main section .e-foreigner-bg-sp-4 {
  width: 150px;
  top: 1970px;
  right: -80px;
}
#efforts main section .e-foreigner-bg-sp-5 {
  width: 170px;
  top: 2250px;
  left: -120px;
}
#efforts main section .e-foreigner-bg-sp-6 {
  width: 230px;
  top: 2520px;
  right: -170px;
}
#efforts main section .e-foreigner-bg-sp-7 {
  width: 160px;
  top: 3200px;
  left: -100px;
}
#efforts main section .e-disabilities-bg-1 {
  width: 515px;
  top: 0;
  left: -400px;
}
#efforts main section .e-disabilities-bg-2 {
  width: 615px;
  top: 280px;
  right: -455px;
}
#efforts main section .e-disabilities-bg-3 {
  width: 415px;
  top: 800px;
  left: -310px;
}
#efforts main section .e-disabilities-bg-sp-1 {
  width: 120px;
  top: -110px;
  right: -80px;
}
#efforts main section .e-disabilities-bg-sp-2 {
  width: 130px;
  top: 190px;
  left: -100px;
}
#efforts main section .e-disabilities-bg-sp-3 {
  width: 200px;
  top: 700px;
  right: -160px;
}
#efforts main section .e-disabilities-bg-sp-4 {
  width: 230px;
  top: 1830px;
  right: -180px;
}
#efforts main section .e-disabilities-bg-sp-5 {
  width: 180px;
  top: 2280px;
  left: -120px;
}
#efforts main section .e-lgbtq-bg-1 {
  width: 515px;
  top: 0;
  left: -400px;
}
#efforts main section .e-lgbtq-bg-2 {
  width: 615px;
  top: 480px;
  right: -455px;
}
#efforts main section .e-lgbtq-bg-3 {
  width: 415px;
  top: 1050px;
  left: -280px;
}
#efforts main section .e-lgbtq-bg-sp-1 {
  width: 250px;
  top: -130px;
  right: -200px;
}
#efforts main section .e-lgbtq-bg-sp-2 {
  width: 150px;
  top: 430px;
  right: -100px;
}
#efforts main section .e-lgbtq-bg-sp-3 {
  width: 150px;
  top: 880px;
  left: -100px;
}
#efforts main section .e-lgbtq-bg-sp-4 {
  width: 140px;
  top: 1750px;
  right: -110px;
}
#efforts main section .e-wlb-bg-1 {
  width: 515px;
  top: 60px;
  left: -400px;
}
#efforts main section .e-wlb-bg-2 {
  width: 615px;
  top: 280px;
  right: -455px;
}
#efforts main section .e-wlb-bg-3 {
  width: 415px;
  top: 940px;
  left: -310px;
}
#efforts main section .e-wlb-bg-4 {
  width: 515px;
  top: 1700px;
  right: -410px;
}
#efforts main section .e-wlb-bg-5 {
  width: 315px;
  top: 2100px;
  left: -190px;
}
#efforts main section .e-wlb-bg-sp-1 {
  width: 200px;
  top: -160px;
  right: -150px;
}
#efforts main section .e-wlb-bg-sp-2 {
  width: 180px;
  top: 600px;
  left: -150px;
}
#efforts main section .e-wlb-bg-sp-3 {
  width: 210px;
  top: 930px;
  right: -150px;
}
#efforts main section .e-wlb-bg-sp-4 {
  width: 170px;
  top: 1970px;
  right: -110px;
}
#efforts main section .e-wlb-bg-sp-5 {
  width: 220px;
  top: 2680px;
  left: -100px;
}
#efforts main section .e-wlb-bg-sp-6 {
  width: 150px;
  top: 3420px;
  right: -110px;
}
#efforts main section .e-wlb-bg-sp-7 {
  width: 180px;
  top: 3800px;
  left: -160px;
}
#efforts main section .e-promotion-bg-1 {
  width: 515px;
  top: 60px;
  left: -400px;
}
#efforts main section .e-promotion-bg-2 {
  width: 615px;
  top: 280px;
  right: -455px;
}
#efforts main section .e-promotion-bg-3 {
  width: 415px;
  top: 940px;
  left: -280px;
}
#efforts main section .e-promotion-bg-4 {
  width: 515px;
  top: 1700px;
  right: -410px;
}
#efforts main section .e-promotion-bg-sp-1 {
  width: 160px;
  top: -120px;
  right: -110px;
}
#efforts main section .e-promotion-bg-sp-2 {
  width: 120px;
  top: 190px;
  left: -90px;
}
#efforts main section .e-promotion-bg-sp-3 {
  width: 200px;
  top: 820px;
  right: -140px;
}
#efforts main section .e-promotion-bg-sp-4 {
  width: 160px;
  top: 2070px;
  left: -100px;
}
#efforts main section .e-promotion-bg-sp-5 {
  width: 220px;
  top: 2850px;
  right: -180px;
}
#efforts main section .section-inner {
  padding-bottom: 160px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner {
    width: calc(100% - 60px);
    padding-bottom: 40px;
  }
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
#efforts main section .section-inner .section-title h3 {
  font-size: 3.6rem;
  line-height: 63px;
  letter-spacing: 0.2em;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-title h3 {
    font-size: 2.3rem;
    letter-spacing: 0.05em;
    position: relative;
  }
}
#efforts main section .section-inner .section-title h3 .efforts-number {
  font-size: 2.8rem;
  line-height: 65px;
  color: #fff;
  padding: 0 25px 0 21px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-title h3 .efforts-number {
    font-size: 2rem;
    padding: 0 20px 0 19px;
  }
}
#efforts main section .section-inner .section-title h3 .efforts-number::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(image/activity-number-bg.png);
  background-size: cover;
  top: 5px;
  left: 0;
  width: 56px;
  height: 51px;
  z-index: -1;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-title h3 .efforts-number::before {
    top: 10px;
    width: 46px;
    height: 42px;
  }
}
#efforts main section .section-inner .section-title p {
  font-size: 1.6rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-title p {
    font-size: 1.4rem;
    line-height: 22px;
    letter-spacing: 0;
    margin-top: 5px;
  }
}
#efforts main section .section-inner .section-content h4 {
  background-color: #65c2c2;
  height: 50px;
  border-radius: 7px;
  padding-left: 15px;
  color: #fff;
  font-size: 2.8rem;
  line-height: 50px;
  letter-spacing: 0.1em;
  margin-top: 85px;
}
@media (max-width: 599px) {
  #efforts main section .section-inner .section-content h4 {
    height: 68px;
    border-radius: 11px;
    padding: 6px 0;
    text-align: center;
    font-size: 2.3rem;
    line-height: 28px;
    letter-spacing: 0.05em;
    margin-top: 50px;
    box-sizing: border-box;
  }
}
#efforts main section .section-inner .section-content h5 {
  font-weight: normal;
  font-size: 2.8rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: #65c2c2;
  position: relative;
  padding-left: 20px;
  margin-top: 50px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content h5 {
    font-size: 2.2rem;
    line-height: 30px;
    padding-left: 13px;
    margin-top: 40px;
    letter-spacing: 0;
  }
}
#efforts main section .section-inner .section-content h5::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #65c2c2;
  top: 0;
  left: 0;
  width: 8px;
  height: 30px;
}
@media (max-width: 599px) {
  #efforts main section .section-inner .section-content h5::before {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 6px;
    height: 21px;
  }
}
#efforts main section .section-inner .section-content .efforts-h5-2lines-pc::before {
  height: 62px;
}
@media (max-width: 599px) {
  #efforts main section .section-inner .section-content .efforts-h5-2lines-sp::before {
    height: 50px;
  }
}
@media (max-width: 599px) {
  #efforts main section .section-inner .section-content .efforts-h5-3lines-sp::before {
    height: 81px;
  }
}
@media (max-width: 599px) {
  #efforts main section .section-inner .section-content .efforts-h5-4lines-sp::before {
    height: 110px;
  }
}
#efforts main section .section-inner .section-content .efforts-content, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons {
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-l, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 28px;
  width: 100%;
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-l h6, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l h6 {
  font-size: 2rem;
  line-height: 32px;
  letter-spacing: 0;
  position: relative;
  padding-left: 15px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-l h6, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l h6 {
    font-size: 1.8rem;
    margin-top: 25px;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-l h6::before, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l h6::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #65c2c2;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-l p, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l p {
  margin-top: 10px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-l p, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l p {
    font-size: 1.4rem;
    line-height: 22px;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-l .efforts-content-url, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l .efforts-content-url {
  color: #65c2c2;
  font-size: 2rem;
  line-height: 28px;
  margin-top: 20px;
  text-decoration: underline;
}

.efforts-content-url-other {
  margin-top: 20px;
  text-decoration: underline;
  color: #727171;
}

@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-l .efforts-content-url, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-l .efforts-content-url {
    font-size: 1.4rem;
    line-height: 21px;
    text-align: center;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 15px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r {
    margin-top: 20px;
    margin-left: 0;
    width: 100%;
    max-width: 400px;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r div, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r div {
  width: 250px;
  margin-bottom: 10px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r div, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r div {
    width: 100%;
    margin-bottom: 15px;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper {
    align-items: center;
    margin-top: 5px;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper p, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper p {
  line-height: 12px;
  letter-spacing: 0.05em;
  width: 180px;
  text-align: center;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper p, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper p {
    width: 100%;
    font-size: 1.4rem;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper .efforts-btn, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper .efforts-btn {
  background-color: #c3c4c4;
  width: 180px;
  height: 30px;
  border-radius: 15px;
  box-shadow: 2px 2px 1px rgba(4, 0, 0, 0.1);
  margin-top: 12px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper .efforts-btn, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper .efforts-btn {
    width: 100%;
    max-width: 360px;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper .efforts-btn a, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper .efforts-btn a {
  display: block;
  line-height: 30px;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: #fff;
}
@media (hover: hover) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper .efforts-btn:hover, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper .efforts-btn:hover {
    background-color: #727171;
  }
}
@media (hover: none) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r .efforts-btn-wrapper .efforts-btn:active, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .efforts-btn-wrapper .efforts-btn:active {
    background-color: #727171;
  }
}
#efforts main section .section-inner .section-content .efforts-content .efforts-content-r .img-supplement, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .img-supplement {
  font-size: 1.4rem;
  line-height: 12px;
  margin-bottom: 20px;
  text-align: left;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content .efforts-content-r .img-supplement, #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .efforts-content-r .img-supplement {
    line-height: 14px;
    align-self: flex-end;
  }
}
#efforts main section .section-inner .section-content .effort-content-women-img{
  flex-direction: column;
}
#efforts main section .section-inner .section-content .effort-content-women-img .women-img {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .effort-content-women-img .women-img {
    flex-direction: column;
  }
}
#efforts main section .section-inner .section-content .effort-content-women-img .women-img .women-img-wrapper {
  width: 380px;
  margin-top: 20px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .effort-content-women-img .women-img .women-img-wrapper {
    width: 100%;
    max-width: 400px;
  }
}
#efforts main section .section-inner .section-content .effort-content-women-img .women-img .women-img-wrapper p {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: 12px;
  margin-bottom: 20px;
  text-align: right;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .effort-content-women-img .women-img .women-img-wrapper p {
    line-height: 14px;
    align-self: flex-end;
  }
}

#efforts main section .section-inner .section-content .efforts-content-lgbtq-icons {
  flex-direction: column;
}
#efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .lgbtq-icons {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
#efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .lgbtq-icons .lgbtq-icon-wrapper {
  width: 30%;
}
#efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .lgbtq-icons .lgbtq-icon-wrapper .lgbtq-icon {
  width: 100%;
}
#efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .lgbtq-icons .lgbtq-icon-wrapper p {
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 21px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .efforts-content-lgbtq-icons .lgbtq-icons .lgbtq-icon-wrapper p {
    font-size: 1.4rem;
  }
}
#efforts main section .section-inner .section-content .margin-top-none {
  margin-top: 0;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .section-content .margin-top-none {
    margin-top: auto;
  }
}
#efforts main section .section-inner .efforts-voice {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 50px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice {
    padding-bottom: 20px;
  }
}
#efforts main section .section-inner .efforts-voice h4 {
  font-size: 3.6rem;
  line-height: 63px;
  letter-spacing: 0.2em;
  margin: 160px 0 30px;
  position: relative;
}
#efforts main section .section-inner .efforts-voice h4::before {
  content: "";
  position: absolute;
  display: block;
  top: 55px;
  left: -10px;
  width: 188px;
  height: 5px;
  border-radius: 2.5px;
  background-color: #65c2c2;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice h4 {
    margin: 70px 0 30px;
    font-size: 2.3rem;
    line-height: 23px;
  }
  #efforts main section .section-inner .efforts-voice h4::before {
    top: 27px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 170px;
    height: 3px;
    border-radius: 1.5px;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper {
  margin-top: 50px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 6px 6px 6px rgba(4, 0, 0, 0.1);
  padding: 40px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper {
    margin-top: 30px;
    border-radius: 8px;
    padding: 20px;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper h5 {
  font-size: 2.6rem;
  font-weight: normal;
  line-height: 26px;
  letter-spacing: 0.02em;
  color: #65c2c2;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper h5 {
    font-size: 1.7rem;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content {
    margin-top: 15px;
    flex-direction: column;
    align-items: center;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 70%;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l {
    width: 100%;
    position: relative;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l p {
  font-size: 1.6rem;
  line-height: 22px;
  letter-spacing: 0.05em;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l p {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l .criminal-record {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-top: 20px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l .criminal-record {
    width: 100%;
    text-align: center;
    font-size: 1.4rem;
    line-height: 19px;
    position: absolute;
    bottom: -200px;
  }
}
@media (max-width: 599px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-l .criminal-record-2lines {
    bottom: -210px;
    line-height: 16px;
  }
}
#efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-r {
  width: 190px;
}
@media (max-width: 1279px) {
  #efforts main section .section-inner .efforts-voice .efforts-voice-content-wrapper .efforts-voice-content .efforts-voice-content-r {
    width: 135px;
    margin: 20px 0 30px;
  }
}
#efforts main .active-section {
  display: block;
}

#topics .nav-report {
  color: #96c81e;
}
#topics main {
  overflow: hidden;
  position: relative;
}
#topics main section {
  position: relative;
}
#topics main section .t-topics-bg-1 {
  width: 618px;
  top: 250px;
  right: -455px;
}
#topics main section .t-topics-bg-2 {
  width: 543px;
  top: 310px;
  left: -400px;
}
#topics main section .t-topics-bg-3 {
  width: 501px;
  top: 1300px;
  right: -425px;
}
#topics main section .t-topics-bg-4 {
  width: 450px;
  top: 1370px;
  left: -305px;
}
#topics main section .t-topics-bg-sp-1 {
  width: 170px;
  top: 10px;
  left: -130px;
}
#topics main section .t-topics-bg-sp-2 {
  width: 280px;
  top: 580px;
  right: -220px;
}
#topics main section .t-topics-bg-sp-3 {
  width: 170px;
  top: 1200px;
  left: -130px;
}
#topics main section .t-topics-bg-sp-4 {
  width: 210px;
  top: 1750px;
  right: -150px;
}
#topics main section .section-inner {
  padding-bottom: 195px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 60px);
    padding-bottom: 0;
  }
}
#topics main section .section-inner h2 {
  margin-top: 100px;
  font-size: 3.6rem;
  line-height: 63px;
  letter-spacing: 0.2em;
}
#topics main section .section-inner h2::before {
  background-color: #96c81e;
  right: 0;
  width: 270px;
  top: 57px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner h2 {
    margin-top: 60px;
    font-size: 2.2rem;
    line-height: 22px;
    align-self: auto;
  }
  #topics main section .section-inner h2::before {
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 200px;
    height: 3px;
    border-radius: 1.5px;
  }
}
#topics main section .section-inner .report-contents {
  border-bottom: 1px solid #c3c4c4;
  padding: 100px 0;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents {
    border-bottom: none;
    padding: 50px 0;
  }
}
#topics main section .section-inner .report-contents h3 {
  font-size: 2.8rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 25px;
}
#topics main section .section-inner .report-contents h3::before {
  content: "";
  background-color: #96c81e;
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  width: 8px;
}
@media (max-width: 599px) {
  #topics main section .section-inner .report-contents h3 {
    font-size: 2.2rem;
    line-height: 29px;
    padding-left: 20px;
  }
  #topics main section .section-inner .report-contents h3::before {
    content: "";
    background-color: #96c81e;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    display: inline-block;
    width: 8px;
  }
}
#topics main section .section-inner .report-contents P {
  font-size: 1.6rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  margin-top: 45px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents P {
    font-size: 1.3rem;
    line-height: 22px;
    letter-spacing: 0;
    margin-top: 30px;
  }
}
#topics main section .section-inner .report-contents h4 {
  font-size: 2.8rem;
  line-height: 44px;
  letter-spacing: 0.05em;
  color: #96c81e;
  margin-top: 50px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents h4 {
    font-size: 2.2rem;
    line-height: 36px;
    margin-top: 40px;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents table tr {
    display: flex;
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents table tr td {
    font-size: 1.3rem;
    line-height: 22px;
  }
  #topics main section .section-inner .report-contents table tr td .number {
    display: none;
  }
}
#topics main section .section-inner .report-contents table tr .item {
  width: 80px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents table tr .item {
    width: 100%;
    font-size: 1.8rem;
    margin: 20px 0 5px;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents table tr .number-1 {
    padding-left: 15px;
  }
  #topics main section .section-inner .report-contents table tr .number-1::before {
    content: "1.";
    position: absolute;
    top: 47px;
    left: 0;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents table tr .number-2 {
    padding-left: 15px;
  }
  #topics main section .section-inner .report-contents table tr .number-2::before {
    content: "2.";
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents table tr .number-3 {
    padding-left: 15px;
  }
  #topics main section .section-inner .report-contents table tr .number-3::before {
    content: "3.";
    position: absolute;
    top: 0;
    left: 0;
  }
}
#topics main section .section-inner .report-contents .report-contents-text {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: 28px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents .report-contents-text {
    margin-top: 0;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents .report-period {
    margin-top: 15px;
  }
}
#topics main section .section-inner .report-contents .report-contents-img-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents .report-contents-img-wrapper {
    flex-wrap: wrap;
    margin-top: 25px;
  }
}
#topics main section .section-inner .report-contents .report-contents-img-wrapper div {
  width: 400px;
  margin: 0 20px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents .report-contents-img-wrapper div {
    width: 300px;
    margin: 5px;
  }
}
#topics main section .section-inner .report-contents .report-contents-annotation {
  text-align: center;
  font-size: 1.6rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  margin-top: 0;
}
@media (max-width: 1279px) {
  #topics main section .section-inner .report-contents .report-contents-annotation {
    font-size: 1.3rem;
    line-height: 21px;
  }
}
#topics main section .section-inner #report-1 h3::before {
  height: 40px;
}

@media (max-width: 599px) {
  #topics main section .section-inner #report-1 h3::before {
    height: 70px;
  }
}
#topics main section .section-inner #report-2 h3::before {
  height: 40px;
}
@media (max-width: 1279px) {
  #topics main section .section-inner #report-2 h3::before {
    height: 70px;
  }
}
@media (max-width: 599px) {
  #topics main section .section-inner #report-2 h3::before {
    height: 60px;
  }
}
@media (max-width: 1279px) {
  #topics main section .section-inner .bar {
    width: 100vw;
    border-bottom: 1px solid #c3c4c4;
  }
}

#topics main section .section-inner #report-2 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-3 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-4 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-5 h3::before{
  height: 40px;
}
#topics main section .section-inner #report-6 h3::before{
  height: 40px;
}
#topics main section .section-inner #report-7 h3::before{
  height: 40px;
}
#topics main section .section-inner #report-8 h3::before{
  height: 40px;
}
#topics main section .section-inner #report-9 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-10 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-11 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-12 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-13 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-14 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-15 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-16 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-17 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-18 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-19 h3::before{
  height: 40px;
}

#topics main section .section-inner #report-20 h3::before{
  height: 40px;
}

@media (max-width: 1279px) {
  #topics main section .section-inner #report-2 h3::before{
    height: 40px;
  }
  #topics main section .section-inner #report-3 h3::before{
    height: 40px;
  }
  #topics main section .section-inner #report-4 h3::before{
    height: 40px;
  }

  #topics main section .section-inner #report-5 h3::before{
    height: 40px;
  }
  #topics main section .section-inner #report-6 h3::before{
    height: 40px;
  }
  #topics main section .section-inner #report-7 h3::before{
    height: 40px;
  }
  #topics main section .section-inner #report-8 h3::before{
    height: 40px;
  }
  #topics main section .section-inner #report-9 h3::before{
    height: 40px;
  }

  #topics main section .section-inner #report-10 h3::before{
    height: 40px;
  }

  #topics main section .section-inner #report-11 h3::before{
    height: 40px;
  }

  #topics main section .section-inner #report-12 h3::before{
    height: 40px;
  }
	
  #topics main section .section-inner #report-13 h3::before{
    height: 40px;
  }
	
  #topics main section .section-inner #report-14 h3::before{
    height: 40px;
  }
	
  #topics main section .section-inner #report-15 h3::before{
    height: 40px;
  }
	
  #topics main section .section-inner #report-16 h3::before{
    height: 40px;
  }
	
  #topics main section .section-inner #report-17 h3::before{
    height: 40px;
  }

}



@media (max-width: 599px) {
  #topics main section .section-inner #report-2 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-3 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-4 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-5 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-6 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-7 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-8 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-9 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-10 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-11 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-12 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-13 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-14 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-15 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-16 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-17 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-18 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-19 h3::before {
    height: 60px;
  }
  #topics main section .section-inner #report-20 h3::before {
    height: 60px;
  }
}

#data .nav-data {
  color: #86b3e0;
}
#data main {
  overflow: hidden;
  position: relative;
}
#data main section {
  position: relative;
}
#data main section .d-data-bg-1 {
  width: 618px;
  top: -125px;
  right: -460px;
}
#data main section .d-data-bg-2 {
  width: 543px;
  top: 100px;
  left: -400px;
}
#data main section .d-data-bg-3 {
  width: 501px;
  top: 620px;
  right: -405px;
}
#data main section .d-data-bg-4 {
  width: 450px;
  top: 790px;
  left: -295px;
}
#data main section .d-data-bg-sp-1 {
  width: 180px;
  top: 10px;
  left: -130px;
}
#data main section .d-data-bg-sp-2 {
  width: 180px;
  top: 180px;
  right: -130px;
}
#data main section .d-data-bg-sp-3 {
  width: 180px;
  top: 1120px;
  left: -150px;
}
#data main section .d-data-bg-sp-4 {
  width: 280px;
  top: 1530px;
  right: -240px;
}
#data main section .section-inner {
  padding-bottom: 120px;
}
@media (max-width: 1279px) {
  #data main section .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 60px);
    padding-bottom: 0;
  }
}
#data main section .section-inner h2 {
  margin-top: 170px;
  font-size: 3.6rem;
  line-height: 63px;
  letter-spacing: 0.2em;
}
#data main section .section-inner h2::before {
  background-color: #86b3e0;
  width: 643px;
  top: 57px;
  right: -200px;
}
#data main section .section-inner h2::after {
  content: url(image/data-icon.png);
  display: block;
  position: absolute;
  width: 120px;
  top: -54.9px;
  right: -150px;
  z-index: -1;
}
@media (max-width: 1279px) {
  #data main section .section-inner h2 {
    margin-top: 150px;
    font-size: 2.4rem;
    line-height: 24px;
  }
  #data main section .section-inner h2::before {
    top: 30px;
    width: 295px;
    left: -5px;
  }
  #data main section .section-inner h2::after {
    content: "";
    background-image: url(image/data-icon.png);
    background-size: contain;
    width: 90px;
    height: 75px;
    top: -95px;
    right: 102px;
  }
}
#data main section .section-inner .chart-wrapper {
  margin-top: 90px;
}
@media (max-width: 1279px) {
  #data main section .section-inner .chart-wrapper {
    margin-bottom: 30px;
  }
}
#data main section .section-inner .chart-wrapper h3 {
  font-size: 2.8rem;
  line-height: 32px;
  letter-spacing: 0.05em;
  position: relative;
  padding-left: 25px;
}
@media (max-width: 1279px) {
  #data main section .section-inner .chart-wrapper h3 {
    font-size: 2rem;
  }
}
#data main section .section-inner .chart-wrapper h3::before {
  content: "";
  background-color: #86b3e0;
  position: absolute;
  top: -3px;
  left: 0;
  display: inline-block;
  width: 8px;
  height: 38px;
}
#data main section .section-inner .chart-wrapper .charts {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media (max-width: 1279px) {
  #data main section .section-inner .chart-wrapper .charts {
    justify-content: space-around;
  }
}
#data main section .section-inner .chart-wrapper .charts .chart {
  margin-top: 45px;
}
#data main section .section-inner .chart-wrapper .charts .chart h4 {
  font-size: 1.7rem;
  line-height: 34px;
  letter-spacing: 0;
  position: relative;
  padding-left: 25px;
}
@media (max-width: 1279px) {
  #data main section .section-inner .chart-wrapper .charts .chart h4 {
    font-size: 1.4rem;
  }
}
#data main section .section-inner .chart-wrapper .charts .chart h4::before {
  content: "";
  position: absolute;
  display: block;
  background-color: #c3c4c4;
  width: 15px;
  height: 15px;
  top: 9px;
  left: 0;
}
#data main section .section-inner .chart-wrapper .charts .chart .chart-img {
  max-width: 350px;
  margin-top: 10px;
}
/*# sourceMappingURL=style.css.map */

/* TOPトピックス日付追加**/
.topics-title {
  position: relative;
	
}.topics-title span{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(0%);
}
@media (max-width: 1279px) {
#top .report-wrapper .report .report-inner ul li a {
    text-align: left;
}
  .topics-text {
    font-size: 12px !important;
  }
}

@media (max-width: 1279px) {
    .youtube-container {
        flex-direction: column !important;
    }
    .youtube-container > div {
        max-width: 100% !important;
    }
    .youtube-container iframe {
        height: 315px !important;
    }
}
