body {
  font: 16px YakuHanJP, "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  background: #fff;
  color: #000;
  font-feature-settings: "palt";
  letter-spacing: 0.5px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  padding-top: 58px;
}
.wrap.is_fixed {
  position: relative;
}
@media screen and (min-width: 1025px) {
  .wrap {
    padding-top: 110px;
  }
}

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

a {
  transition: all 0.5s;
}
a:hover {
  opacity: 0.6;
}

/* font
**************************************************************************************************************************/
/* animation
**************************************************************************************************************************/
/* status
**************************************************************************************************************************/
.is_sp {
  display: block;
}

.is_pc {
  display: none;
}

@media screen and (min-width: 1025px) {
  .is_sp {
    display: none !important;
  }

  .is_pc {
    display: block !important;
  }
}
.is_hide {
  display: none;
}

.is_fixed {
  position: fixed;
}

/* common
**************************************************************************************************************************/
header {
  padding: 10px 24px;
  background: #fff;
  max-height: 58px;
  position: fixed;
  width: 100%;
  z-index: 10;
}
header .ci-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .ci {
  position: relative;
  z-index: 101;
}
header .ci h1 {
  line-height: 1;
}
header .ci h1 a {
  display: block;
}
header .ci h1 img {
  width: 100px;
  height: auto;
}
header .nav p.tgl {
  position: relative;
  z-index: 101;
}
header .nav p.tgl button {
  text-indent: -9999px;
  border: 0;
  padding: 0;
  background: none;
  margin-top: 0px;
  width: 26px;
  height: 20px;
  border-top: 2px solid #8cc31e;
  position: relative;
  display: block;
  transition: all 0.5s;
}
header .nav p.tgl button::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #8cc31e;
  position: absolute;
  top: 7px;
  transition: all 0.5s;
}
header .nav p.tgl button::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #8cc31e;
  position: absolute;
  bottom: 0px;
  transition: all 0.5s;
}
header .nav p.tgl button.is_open {
  border: 0;
}
header .nav p.tgl button.is_open::before {
  top: 9px;
  transform: rotate(135deg);
}
header .nav p.tgl button.is_open::after {
  bottom: 9px;
  transform: rotate(45deg);
}
header .nav nav.glnv {
  position: fixed;
  width: 75vw;
  height: 100dvh;
  top: 58px;
  left: 0;
  z-index: 99;
  background: rgba(100, 175, 210, 0.97);
  transform: translateX(100vw);
  transition: all 0.5s;
  padding: 48px;
}
header .nav nav.glnv ul {
  font-size: 16px;
  font-weight: 500;
}
header .nav nav.glnv ul li {
  margin: 0 0 2em 0;
}
header .nav nav.glnv ul li a {
  color: #fff;
}
header .nav nav.glnv.is_open {
  transform: translateX(25vw);
}
@media screen and (min-width: 1025px) {
  header {
    padding: 24px 100px;
    border-bottom: 6px solid #8cc31e;
    max-height: 110px;
	  top: -110px;
	  transition: all .5s ease;
  }
	
	header.is-show {
		top: 0;
	}
	
  header .inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  header .ci h1 img {
    width: 160px;
  }
  header .nav p.tgl {
    display: none;
  }
  header .nav nav.glnv {
    position: static;
    width: 100%;
    height: auto;
    background: none;
    transform: translateX(0);
    padding: 0;
  }
  header .nav nav.glnv ul {
    font-size: 16px;
    position: static;
    transform: translate(0, 0);
    text-align: left;
    display: flex;
    justify-content: flex-end;
  }
  header .nav nav.glnv ul li {
    margin: 0 0 0 2em;
  }
  header .nav nav.glnv ul li a {
    color: #8cc31e;
  }
}

footer {
  background: #8cc31e;
  padding: 24px;
  color: #fff;
  position: relative;
  z-index: 10;
}
footer .ci-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .ci {
  width: 30%;
  text-align: center;
  margin-right: 24px;
}
footer .ci p a img {
  width: 80%;
}
footer .group {
  flex: 1;
  font-size: 12px;
}
footer .group p.name {
  font-weight: 900;
  margin-bottom: 0.5em;
}
footer .group ul.list-group {
  font-weight: 600;
}
footer .group ul.list-group li {
  margin-bottom: 0.5em;
}
footer .group ul.list-group li a, footer .group ul.list-group li span {
  color: #fff;
  display: flex;
}
footer .group ul.list-group li a::before, footer .group ul.list-group li span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin-top: 6px;
  margin-right: 8px;
}
footer .group p.copyright {
  font-size: 8px;
  margin-top: 1em;
}
@media screen and (min-width: 1025px) {
  footer {
    padding: 50px 100px;
  }
  footer .inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  footer .ci-group {
    align-items: flex-start;
  }
  footer .ci {
    width: 140px;
    text-align: center;
    margin-right: 80px;
  }
  footer .ci p a img {
    width: 100%;
  }
  footer .group {
    flex: 1;
    font-size: 12px;
  }
  footer .group p.name {
    font-size: 16px;
    margin-bottom: 1em;
  }
  footer .group ul.list-group {
    display: flex;
    flex-wrap: wrap;
  }
  footer .group ul.list-group li {
    margin: 0 2em 1em 0;
  }
  footer .group p.copyright {
    font-size: 10px;
    margin-top: 8em;
    text-align: right;
  }
}

.wrap {
  overflow: clip;
}
.wrap.is_open {
  height: calc(100dvh - 85px);
}
@media screen and (min-width: 1025px) {
  .wrap.is_open {
    height: auto;
  }
}

/* layout
**************************************************************************************************************************/
.area-kv {
  position: relative;
  position: fixed;
  z-index: -1;
  width: 100%;
  min-height: 100dvh;
  top: 0;
  left: 0;
  display: grid;
  padding-top: 58px;
  display: none;
  place-content: center center;
}
.area-kv .inner .title-body .body .movie {
  text-align: center;
	height: 100vh;
	width: 100vw;
}
.area-kv .inner .title-body .body .movie video {
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 1025px) {
  .area-kv {
    display: grid;
    padding-top:0;
    place-content: start center;
  }
}

.area-mission {
  padding: 0 24px;
  position: relative;
  z-index: 1;
  background: #fff;
}
.area-mission .inner .title-body {
  text-align: right;
}
.area-mission .inner .title-body .title {
  margin-right: 5vw;
  margin-left: auto;
  display: inline-block;
  text-align: left;
  margin-top: 50px;
}
.area-mission .inner .title-body .title h2 {
  font-size: 2rem;
  letter-spacing: 0.3rem;
  line-height: 1.6;
}
.area-mission .inner .title-body .body {
  text-align: left;
}
.area-mission .inner .title-body .body p.lead {
  font-weight: bold;
  line-height: 2.3;
  font-size: 0.875rem;
  margin-bottom: 30px;
}
.area-mission .inner .title-body .body p.logo img {
  width: 70%;
}
.area-mission .inner .title-body .body .scroll {
  font-weight: 500;
  font-size: 0.75rem;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  position: fixed;
  right: 10px;
  bottom: 90px;
  color: #65aace;
  z-index: 20;
}
.area-mission .inner .title-body .body .scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #65aace;
  bottom: -70px;
  content: "";
  height: 60px;
  width: 1px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 1px;
}
.area-mission .inner .title-body .body .scroll::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #65aace;
  border-right: 1px solid #65aace;
  transform: rotate(45deg);
  position: absolute;
  bottom: -70px;
  right: 6px;
}
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
}
@media screen and (min-width: 1025px) {
  .area-mission {
    padding: 0 100px;
    overflow: hidden;
    margin-top: 100dvh;
  }
  .area-mission .inner {
    max-width: 1080px;
    margin-inline: auto;
  }
  .area-mission .inner .title-body .title {
    margin-right: 5vw;
    margin-top: 90px;
	  position: relative;
	  top: 90px;
  }
  .area-mission .inner .title-body .title h2 {
    font-size: 2.625rem;
  }
  .area-mission .inner .title-body .body {
    margin-top: -350px;
  }
  .area-mission .inner .title-body .body p.lead {
    font-size: 1.125rem;
    margin-bottom: 60px;
  }
  .area-mission .inner .title-body .body p.logo img {
    width: auto;
    height: 180px;
  }
  .area-mission .inner .title-body .body .scroll {
    display: none;
  }
}

.area-business {
  padding: 0 32px;
  position: relative;
  z-index: 2;
  scroll-margin-top: 100px;
}
.area-business .inner {
  position: relative;
  z-index: 1;
}
.area-business .inner .title-body .title {
  margin-bottom: 80px;
}
.area-business .inner .title-body .title h2 {
  margin-bottom: 1.25rem;
}
.area-business .inner .title-body .title h2 img {
  height: 60px;
  width: auto;
}
.area-business .inner .title-body .title p.lead {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2;
}
.area-business .inner .title-body .body dl .row {
  margin-bottom: -13vw;
}
.area-business .inner .title-body .body dl .row a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.area-business .inner .title-body .body dl .row dt {
  text-align: center;
}
.area-business .inner .title-body .body dl .row dd {
  position: relative;
}
.area-business .inner .title-body .body dl .row dd span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  text-align: center;
}
.area-business .inner .title-body .body dl .row:nth-of-type(1) dt {
  width: 35%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(1) dt picture img {
  width: 45%;
  margin-right: 10px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(1) dd {
  width: 65%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(1) dd .hexagon {
  width: 100%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(1) dd span {
  top: -45px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(1) dd span img {
  width: 35%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(2) dt {
  width: 35%;
  order: 2;
}
.area-business .inner .title-body .body dl .row:nth-of-type(2) dt picture img {
  width: 68%;
  margin-left: 10px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(2) dd {
  width: 65%;
  order: 1;
}
.area-business .inner .title-body .body dl .row:nth-of-type(2) dd .hexagon {
  width: 100%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(2) dd span {
  top: 0px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(2) dd span img {
  width: 70%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(3) dt {
  width: 35%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(3) dt picture img {
  width: 70%;
  margin-right: 10px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(3) dd {
  width: 65%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(3) dd .hexagon {
  width: 100%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(3) dd span {
  top: 20px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(3) dd span img {
  width: 40%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) {
  margin-bottom: 20px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) dt {
  width: 35%;
  order: 2;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) dt picture img {
  width: 70%;
  margin-left: 10px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) dd {
  width: 65%;
  order: 1;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) dd .hexagon {
  width: 100%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) dd span {
  top: 10px;
}
.area-business .inner .title-body .body dl .row:nth-of-type(4) dd span img {
  width: 68%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(5) {
  margin-bottom: 0;
}
.area-business .inner .title-body .body dl .row:nth-of-type(5) dt {
  width: 100%;
  padding: 0 10vw;
  text-align: right;
}
.area-business .inner .title-body .body dl .row:nth-of-type(5) dt picture img {
  width: 60%;
}
.area-business .inner .title-body .body dl .row:nth-of-type(5) dd {
  display: none;
}
.area-business .inner .title-body .body .illust {
  z-index: -1;
}
@media screen and (min-width: 1025px) {
  .area-business {
    padding: 0 100px;
    scroll-margin-top: 180px;
  }
  .area-business .inner {
    max-width: 1080px;
    margin-inline: auto;
  }
  .area-business .inner .title-body .title {
    margin-bottom: 7.5rem;
  }
  .area-business .inner .title-body .title h2 {
    margin-bottom: 2.5rem;
  }
  .area-business .inner .title-body .title h2 img {
    height: 117px;
  }
  .area-business .inner .title-body .title p.lead {
    font-size: 1.125rem;
  }
  .area-business .inner .title-body .body dl {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .area-business .inner .title-body .body dl .row {
    margin-bottom: 0;
    width: 30.5%;
    margin: 0 1%;
  }
  .area-business .inner .title-body .body dl .row a {
    position: relative;
    display: block;
  }
  .area-business .inner .title-body .body dl .row dt {
    text-align: center;
    position: absolute;
    width: auto;
    bottom: -40px;
  }
  .area-business .inner .title-body .body dl .row dt picture img {
    width: auto;
  }
  .area-business .inner .title-body .body dl .row dd {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row dd img {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(1) dt {
    left: -80px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(1) dt picture img {
    width: auto;
    height: 61px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(1) dd {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(1) dd img {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(2) {
    order: 4;
    position: relative;
    top: -75px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(2) dt {
    left: -80px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(2) dt picture img {
    width: auto;
    height: 34px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(2) dd {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(2) dd img {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(3) {
    order: 3;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(3) dt {
    right: -40px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(3) dt picture img {
    width: auto;
    height: 69px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(3) dd {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(3) dd img {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(4) {
    order: 5;
    margin-bottom: 0px;
    position: relative;
    top: -75px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(4) dt {
    right: -40px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(4) dt picture img {
    width: auto;
    height: 57px;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(4) dd {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(4) dd img {
    width: 100%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(5) {
    order: 2;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(5) dt {
    width: 100%;
    padding: 0;
    text-align: center;
    position: static;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(5) dt picture {
    transform: translateY(-50%);
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(5) dt picture img {
    width: 70%;
  }
  .area-business .inner .title-body .body dl .row:nth-of-type(5) dd {
    position: static;
    display: none;
  }
}

.area-everywhere {
  padding: 0 24px;
  position: relative;
  z-index: 3;
  scroll-margin-top: 100px;
}
.area-everywhere .inner .title-body .title {
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.area-everywhere .inner .title-body .title h2 {
  margin-bottom: 1.25rem;
}
.area-everywhere .inner .title-body .title h2 img {
  height: 105px;
  width: auto;
}
.area-everywhere .inner .title-body .title p.lead {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2;
}
.area-everywhere .inner .title-body .body .scroll {
  overflow-x: auto !important;
  overflow-y: visible !important;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: -110px;
  position: relative;
}
.area-everywhere .inner .title-body .body .scroll picture {
  width: 1080px;
  height: 750px;
  margin-left: -150px;
}
.area-everywhere .inner .title-body .body .scroll picture img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.area-everywhere .inner .title-body .body .scroll ul {
  font-size: 0.75rem;
  font-weight: bold;
}
.area-everywhere .inner .title-body .body .scroll ul li {
  position: absolute;
  white-space: nowrap;
}
.area-everywhere .inner .title-body .body .scroll ul li a.link-modal {
  color: #0028d1;
  background: #fff;
  text-align: center;
  border: 2px solid #0028d1;
  display: inline-block;
  padding: 0.5rem 1rem 1rem 1rem;
  position: relative;
}
.area-everywhere .inner .title-body .body .scroll ul li a.link-modal::after {
  content: "";
  display: block;
  width: 16px;
  height: 24px;
  background: url(../img/icn-map.svg) 0 0 no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
}
.area-everywhere .inner .title-body .body .scroll ul li a.link-modal:hover {
  opacity: 0.9;
  -webkit-animation: floating-y 1s ease-in-out infinite;
          animation: floating-y 1s ease-in-out infinite;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(1) {
  left: 80px;
  top: 280px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(2) {
  left: 155px;
  top: 110px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(3) {
  left: 125px;
  top: 480px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(4) {
  left: 285px;
  top: 195px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(5) {
  left: 225px;
  top: 630px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(6) {
  left: 390px;
  top: 270px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(7) {
  left: 350px;
  top: 425px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(8) {
  left: 405px;
  top: 105px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(9) {
  left: 545px;
  top: 165px;
}
.area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(10) {
  left: 525px;
  top: 340px;
}
@media screen and (min-width: 1025px) {
  .area-everywhere {
    padding: 0;
    scroll-margin-top: 180px;
  }
  .area-everywhere .inner .title-body .title {
    padding: 0 100px;
    max-width: 1280px;
    margin-inline: auto;
    margin-bottom: -10rem;
  }
  .area-everywhere .inner .title-body .title h2 {
    margin-bottom: 2.5rem;
  }
  .area-everywhere .inner .title-body .title h2 img {
    height: 177px;
  }
  .area-everywhere .inner .title-body .title p.lead {
    font-size: 1.125rem;
  }
  .area-everywhere .inner .title-body .body {
    width: 100%;
    height: 1340px;
    position: relative;
    margin-inline: auto;
  }
  .area-everywhere .inner .title-body .body .scroll {
    width: 1934px;
    overflow: visible !important;
    height: 1340px;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 40px;
  }
  .area-everywhere .inner .title-body .body .scroll picture {
    width: 1934px;
    height: 1340px;
    margin-left: 0;
  }
  .area-everywhere .inner .title-body .body .scroll picture img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .area-everywhere .inner .title-body .body .scroll ul {
    font-size: 0.875rem;
  }
  .area-everywhere .inner .title-body .body .scroll ul li a.link-modal::after {
    width: 28px;
    height: 42px;
    bottom: -30px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(1) {
    left: 405px;
    top: 565px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(2) {
    left: 580px;
    top: 230px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(3) {
    left: 535px;
    top: 905px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(4) {
    left: 826px;
    top: 387px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(5) {
    left: 810px;
    top: 1160px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(6) {
    left: 1000px;
    top: 540px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(7) {
    left: 935px;
    top: 805px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(8) {
    left: 1080px;
    top: 210px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(9) {
    left: 1330px;
    top: 340px;
  }
  .area-everywhere .inner .title-body .body .scroll ul li:nth-of-type(10) {
    left: 1260px;
    top: 630px;
  }
}

.modal-everywhere {
  display: none;
  position: fixed;
  width: 100%;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  z-index: 200;
}
.modal-everywhere .modal-wrap {
  padding: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.modal-everywhere .modal-wrap .modal-body {
  color: #0028d1;
  padding: 20px;
  width: 283px;
  max-height: calc(100dvh - 48px);
  border: 2px solid #0028d1;
  background: #fff;
  position: relative;
}
.modal-everywhere .modal-wrap .modal-body .close {
  position: absolute;
  top: -40px;
  right: 0px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.modal-everywhere .modal-wrap .modal-body .close span {
  display: block;
  text-indent: -9999px;
}
.modal-everywhere .modal-wrap .modal-body .close span::before, .modal-everywhere .modal-wrap .modal-body .close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #1427CE;
}
.modal-everywhere .modal-wrap .modal-body .close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-everywhere .modal-wrap .modal-body .close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-everywhere .modal-wrap .modal-body h2 {
  font-size: 1.375rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.modal-everywhere .modal-wrap .modal-body h2 small {
  display: block;
  font-size: 0.75rem;
  margin-top: 0.5em;
}
.modal-everywhere .modal-wrap .modal-body .imgtxt .img {
  margin-bottom: 1em;
}
.modal-everywhere .modal-wrap .modal-body .imgtxt .txt p {
  font-size: 0.75rem;
  line-height: 1.8;
  font-weight: 500;
}
.modal-everywhere .modal-wrap .modal-body picture.logo {
  text-align: center;
  margin-top: 1.5em;
}
.modal-everywhere .modal-wrap .modal-body picture.logo img {
  height: 40px;
  width: auto;
}
.modal-everywhere#everywhere07 picture.logo {
  text-align: center;
}
.modal-everywhere#everywhere07 picture.logo img {
  height: 28px;
}
@media screen and (min-width: 1025px) {
  .modal-everywhere .modal-wrap {
    padding: 100px;
  }
  .modal-everywhere .modal-wrap .modal-body {
    padding: 30px;
    width: 620px;
    max-height: calc(100dvh - 200px);
  }
  .modal-everywhere .modal-wrap .modal-body h2 {
    font-size: 1.125rem;
    margin-bottom: 1.5em;
  }
  .modal-everywhere .modal-wrap .modal-body h2 small {
    display: inline;
    font-size: 0.875rem;
  }
  .modal-everywhere .modal-wrap .modal-body .imgtxt {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
  }
  .modal-everywhere .modal-wrap .modal-body .imgtxt .img {
    margin-bottom: 0;
    order: 2;
    width: 240px;
    margin-left: 30px;
  }
  .modal-everywhere .modal-wrap .modal-body .imgtxt .img p {
    margin-top: 0.5em;
  }
  .modal-everywhere .modal-wrap .modal-body .imgtxt .img p small {
    font-size: 0.625rem;
  }
  .modal-everywhere .modal-wrap .modal-body .imgtxt .txt {
    order: 1;
    flex: 1;
	  margin-top: -6px;
  }
  .modal-everywhere .modal-wrap .modal-body .imgtxt .txt p {
    font-size: 0.875rem;
  }
  .modal-everywhere .modal-wrap .modal-body picture.logo {
    text-align: left;
  }
  .modal-everywhere .modal-wrap .modal-body picture.logo img {
    height: 46px;
  }
  .modal-everywhere#everywhere07 picture.logo {
    text-align: left;
  }
  .modal-everywhere#everywhere07 picture.logo img {
    height: 33px;
  }
}

.area-sdgs {
  padding: 0 32px;
  scroll-margin-top: 100px;
}
.area-sdgs .inner .title-body .title {
  margin-bottom: 30px;
}
.area-sdgs .inner .title-body .title h2 {
  margin-bottom: 1.25rem;
}
.area-sdgs .inner .title-body .title h2 img {
  height: 90px;
  width: auto;
}
.area-sdgs .inner .title-body .title p.lead {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2;
}
.area-sdgs .inner .title-body .body ul li {
  margin-bottom: 10px;
}
@media screen and (min-width: 1025px) {
  .area-sdgs {
    padding: 0 100px;
    scroll-margin-top: 180px;
  }
  .area-sdgs .inner {
    max-width: 1080px;
    margin-inline: auto;
  }
  .area-sdgs .inner .title-body .title {
    margin-bottom: -300px;
    padding-left: 55%;
  }
  .area-sdgs .inner .title-body .title h2 {
    margin-bottom: 2.5rem;
  }
  .area-sdgs .inner .title-body .title h2 img {
    height: 160px;
  }
  .area-sdgs .inner .title-body .title p.lead {
    font-size: 1.125rem;
  }
  .area-sdgs .inner .title-body .body ul {
    display: block;
    text-align: center;
  }
  .area-sdgs .inner .title-body .body ul li {
    margin-bottom: -10%;
    width: 50%;
    margin-inline: auto;
  }
  .area-sdgs .inner .title-body .body ul li:nth-last-of-type {
    margin-bottom: 0;
  }
  .area-sdgs .inner .title-body .body ul li:nth-of-type(1) {
    margin-left: 3%;
    position: relative;
    z-index: 2;
  }
  .area-sdgs .inner .title-body .body ul li:nth-of-type(3) {
    margin-right: 3%;
    position: relative;
    z-index: 3;
  }
}

/* picture
**************************************************************************************************************************/
picture.illust {
  position: relative;
  margin-left: -24px;
  text-align: center;
  overflow: visible;
}
picture.illust.illust01 {
  width: 100%;
  height: 644px;
  margin-top: -180px;
  margin-bottom: -190px;
  z-index: -1;
}
picture.illust.illust01 img {
  width: 1043px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 0px;
}
picture.illust.illust02 {
  width: 100%;
  height: 588px;
  margin-top: -180px;
  margin-bottom: -150px;
}
picture.illust.illust02 img {
  width: 1164px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: -40px;
}
picture.illust.illust03 {
  width: 100%;
  height: 552px;
  margin-top: -100px;
  margin-bottom: -200px;
}
picture.illust.illust03 img {
  width: 1100px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 30px;
}
picture.illust.illust04 {
  width: 100%;
  height: 552px;
  margin-top: -120px;
  margin-bottom: -200px;
  z-index: 2;
  pointer-events: none;
}
picture.illust.illust04 img {
  width: 1100px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 30px;
}
picture.illust.illust05 {
  width: 100%;
  height: 552px;
  margin-top: -100px;
  margin-bottom: -200px;
  z-index: 2;
}
picture.illust.illust05 img {
  width: 1100px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-left: 30px;
}
@media screen and (min-width: 1025px) {
  picture.illust {
    margin-left: 0;
  }
  picture.illust.illust01 {
    width: 100%;
    height: 1450px;
    margin-top: -480px;
    margin-bottom: -590px;
  }
  picture.illust.illust01 img {
    /* width: 2280px; */
	  width: 2550px;
    /* margin-left: -200px; */
  }
  picture.illust.illust02 {
    width: 100%;
    height: 1450px;
    margin-top: -570px;
    margin-bottom: -350px;
  }
  picture.illust.illust02 img {
    /* width: 2280px; */
	  width: 2550px;
    /* margin-left: -200px; */
  }
  picture.illust.illust03 {
    width: 100%;
    height: 1566px;
    margin-top: -150px;
    margin-bottom: -700px;
  }
  picture.illust.illust03 img {
    width: 2550px;
    margin-left: 0px;
  }
  picture.illust.illust04 {
    width: 100%;
    height: 1286px;
    margin-top: -300px;
    margin-bottom: -450px;
  }
  picture.illust.illust04 img {
    width: 2550px;
    margin-left: 0px;
  }
  picture.illust.illust05 {
    width: 100%;
    height: 1286px;
    margin-top: -300px;
    margin-bottom: -200px;
  }
  picture.illust.illust05 img {
    width: 2550px;
    margin-left: 0px;
  }
}
/*# sourceMappingURL=layout.css.map */