@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@100;200;400;500;600;700;800&display=swap");
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pc-inline {
  display: inline !important;
}

.sp-inline {
  display: none !important;
}

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

*,
html,
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
  scroll-behavior: smooth;
  color: black;
}
* a,
html a,
body a {
  transition: all 0.3s;
}
* a:hover,
html a:hover,
body a:hover {
  opacity: 0.7;
  text-decoration: none;
}

body.menu-open {
  height: 100vh;
  overflow-y: hidden;
}

html body {
  min-width: 1100px;
  /*リンクの形状*/
  /*リンクを右下に固定*/
  /*　上に上がる動き　*/
  /*　下に下がる動き　*/
}
html body.interview-page {
  overflow-x: visible;
}
html body.interview-page main {
  overflow-x: visible;
}
html body header {
  position: relative;
  z-index: 100;
}
html body header .inner {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem;
  z-index: 100;
}
html body header .inner .logo {
  margin-right: auto;
  flex: none;
}
html body header .inner .logo a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #68143C;
  width: 80px;
  height: 80px;
}
html body header .inner .logo a img {
  display: block;
  height: 3.5rem;
  width: 60px;
  margin: 0 auto;
}
html body header .inner .menu-wrapper {
  margin-right: 4.8rem;
}
html body header .inner .menu-wrapper .gnav {
  display: block;
  position: fixed;
  top: 0;
  right: -400px;
  bottom: 0;
  width: 400px;
  padding: 8rem 1rem;
  background: rgba(0, 0, 0, 0.8);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
  margin-right: 0;
}
html body header .inner .menu-wrapper .gnav .menu-container {
  width: 100%;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu > .menu-item {
  position: static;
  width: 100%;
  height: auto;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu > .menu-item:nth-child(n+1) {
  margin-left: auto;
  border-top: 1px solid #a9a9a9;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu > .menu-item:last-child {
  margin-left: auto;
  border-bottom: 1px solid #a9a9a9;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li a {
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  display: block;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li a > span {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-weight: normal;
  color: white;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li a::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  content: "";
  display: block;
  background-image: url(../img/arrow_.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 23px;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li.corporate a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
  font-weight: normal;
  color: white;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.9rem;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li.corporate a > span {
  color: white;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li.corporate a::before {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  background-image: url(../img/logo-header.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 50px;
  margin-right: 1rem;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li.corporate a::after {
  display: inline-block;
  background-image: url(../img/tab.svg);
  width: 50px;
}
html body header .inner .menu-wrapper .gnav .menu-container .menu li.corporate:last-child {
  border-bottom: none;
}
html body header .inner .menu-wrapper .toggle-btn {
  display: block;
  position: fixed;
  top: 45px;
  right: 40px;
  width: 50px;
  height: 50px;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 3;
}
html body header .inner .menu-wrapper .toggle-btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 45px;
  height: 2px;
  background-color: white;
  transition: all 0.5s;
}
html body header .inner .menu-wrapper .toggle-btn span:nth-child(1) {
  top: 5px;
}
html body header .inner .menu-wrapper .toggle-btn span:nth-child(2) {
  top: 20px;
}
html body header .inner .menu-wrapper .toggle-btn span:nth-child(3) {
  bottom: 12px;
}
html body header .inner .menu-wrapper .toggle-btn span.scrolled {
  background-color: black;
}
html body header .inner .menu-wrapper .toggle-btn.underlayer span {
  background-color: black;
}
html body header .inner .menu-wrapper.menu-open .gnav {
  right: 0;
  opacity: 1;
}
html body header .inner .menu-wrapper.menu-open .toggle-btn {
  top: auto;
  margin-top: 0;
}
html body header .inner .menu-wrapper.menu-open .toggle-btn span {
  background-color: #fff;
}
html body header .inner .menu-wrapper.menu-open .toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(17px) rotate(-315deg);
  transform: translateY(9px) rotate(-315deg);
}
html body header .inner .menu-wrapper.menu-open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
html body header .inner .menu-wrapper.menu-open .toggle-btn span:nth-child(3) {
  -webkit-transform: translateY(-17px) rotate(315deg);
  transform: translateY(-22px) rotate(315deg);
}
html body header .inner .menu-wrapper.menu-open .toggle-btn span.scroll {
  background-color: white;
}
html body header .inner .menu-wrapper.menu-open .toggle-btn p {
  color: #fff;
}
html body header .inner .menu-wrapper.menu-open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}
html body header .inner .menu-wrapper #mask {
  display: none;
  transition: all 0.3s;
}
html body header .mainvi {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: -1;
}
html body header .mainvi .slider {
  height: 100%;
  width: 100%;
}
html body header .mainvi .slider div {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: cover;
}
html body header .mainvi .countdown {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-size: 3vw;
  font-weight: 900;
  color: white;
  text-align: center;
}
html body header .mainvi .countdown > span {
  font-family: "Noto Serif JP", serif;
  font-size: 3vw;
  font-weight: 900;
  color: white;
}
html body header .mainvi .text {
  position: absolute;
  top: 28%;
  width: 100%;
  text-align: center;
}
html body header .mainvi .text p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  color: white;
  font-weight: bold;
}
html body header .mainvi .copy {
  display: flex;
  width: 1100px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
html body header .mainvi .copy img {
  display: block;
  width: 422px;
  height: 100%;
}
html body header .mainvi .header-title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
html body header .mainvi .header-title h1 {
  width: 100%;
  max-width: 1100px;
  text-align: center;
}
html body header .mainvi .header-title h1 span {
  font-family: "Noto Serif JP", serif;
  display: block;
  font-size: 7vw;
  font-weight: 900;
  color: white;
}
html body header .mainvi .header-title h1 span.sub {
  font-size: 2vw;
  line-height: 1.8;
}
html body header .mainvi.oku .header-title-wrap {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: auto;
  bottom: 0;
  width: 100%;
}
html body header .mainvi.oku .header-title-wrap h1 {
  font-family: "Noto Serif JP", serif;
  width: 100%;
  max-width: 1100px;
  font-size: 3rem;
  font-weight: 900;
  transform: scale(1, 0.9);
}
html body header .mainvi.oku .header-title-wrap h1 span {
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 700;
}
html body header .scroll {
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  bottom: 4rem;
  color: white;
  font-weight: bold;
  letter-spacing: 0.1em;
  animation: scrollFlash 3s linear infinite;
}
html body header .scroll span {
  position: absolute;
  right: 50%;
  top: 20px;
  transform: translateX(50%);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
}
html body header .scroll::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
html body header .scroll::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 60px;
  background: white;
}
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
html body .content-wrap {
  background-color: transparent;
}
html body .content-wrap.circle-box {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
html body .content-wrap.blank-space {
  margin-top: -5%;
}
html body .content-wrap.blank-space-concept {
  margin-top: -70vh;
}
html body .content-wrap.blank-space-history {
  margin-top: -80vh;
}
html body .content-wrap.news-page {
  border-top: 1px solid black;
  width: 1100px;
  margin: 0 auto;
}
html body .content-wrap.bg-map {
  position: relative;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  height: 90vw;
  width: 100%;
}
html body .content-wrap.bg-map .btn-wrap {
  position: absolute;
  right: calc((100% - 1100px) / 2);
  bottom: 10%;
}
html body .content-wrap.bg-data {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
html body .content-wrap.bg-data.data-bg-05 {
  height: 80vh;
}
html body .content-wrap.bg-data.data-bg-overseas {
  height: 100%;
}
html body .content-wrap .inner {
  width: 1100px;
  margin: 0 auto;
}
html body .content-wrap .inner-m {
  width: 920px;
  margin: 0 auto;
}
html body .content-wrap .inner-s {
  width: 730px;
  margin: 0 auto;
}
html body .content-wrap .circle-wrapper {
  display: block;
  overflow: visible;
  position: relative;
  width: 100%;
  height: 0;
  z-index: -5;
}
html body .content-wrap .circle-wrapper.circle-right {
  overflow: hidden;
  height: 170vh;
  position: absolute;
  min-width: 1100px;
}
html body .content-wrap .circle-wrapper.circle-right-header {
  overflow: hidden;
  height: 100vh;
  position: absolute;
  top: 0;
  min-width: 1100px;
}
html body .content-wrap .circle-wrapper .spinner-box {
  position: absolute;
  width: 80vw;
  height: 80vw;
  display: block;
  overflow: hidden;
}
html body .content-wrap .circle-wrapper .spinner-box.spinner-box-01 {
  right: -34.7826086957vw;
  top: -40vh;
}
html body .content-wrap .circle-wrapper .spinner-box.spinner-box-1-1 {
  top: auto;
  bottom: -65vh;
}
html body .content-wrap .circle-wrapper .spinner-box.spinner-box-1-2 {
  right: -34.7826086957vw;
  top: -100vh;
}
html body .content-wrap .circle-wrapper .spinner-box.spinner-box-02 {
  left: -50vw;
  top: -40vh;
}
html body .content-wrap .circle-wrapper .spinner-box.spinner-box-2-2 {
  left: -63vw;
  top: -40vh;
}
html body .content-wrap .circle-wrapper .spinner-box.spinner-box-03 {
  right: -34.7826086957vw;
  top: 0;
}
html body .content-wrap .circle-wrapper .circle-border {
  width: 80vw;
  height: 80vw;
  padding: 10vw;
  display: block;
  border-radius: 50%;
  animation: spin 10s linear 0s infinite;
  overflow: hidden;
}
html body .content-wrap .circle-wrapper .circle-border.color-var-01 {
  background: rgb(63, 249, 220);
  background: linear-gradient(0deg, #30c5e2 45%, #01b437 100%);
}
html body .content-wrap .circle-wrapper .circle-border.color-var-02 {
  background: #f2fe49;
  background: linear-gradient(0deg, #f2fe49 45%, #42e8c6 100%);
}
html body .content-wrap .circle-wrapper .circle-border.color-var-03 {
  background: #4ef5ec;
  background: linear-gradient(0deg, #4ef5ec 45%, #aba1f2 100%);
}
html body .content-wrap .circle-wrapper .circle-core {
  width: 100%;
  height: 100%;
  background-color: white;
  border-radius: 50%;
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}
html body .content-wrap .content-header {
  display: block;
}
html body .content-wrap .content-header .title h2,
html body .content-wrap .content-header .title h3,
html body .content-wrap .content-header .title h4 {
  font-weight: 900;
  transform: scale(1, 0.9);
}
html body .content-wrap .content-header .title h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.5vw;
}
html body .content-wrap .content-header .title h2.large {
  font-size: 4.5vw;
}
html body .content-wrap .content-header .title h2.red {
  color: #ef3f49;
}
html body .content-wrap .content-header .title h2.white {
  color: white;
}
html body .content-wrap .content-header .title h2 .en-title {
  font-family: "Noto Serif JP", serif;
  display: block;
  color: white;
  line-height: 2.2;
  font-size: 1.3rem;
}
html body .content-wrap .content-header .title h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 7vw;
  line-height: 1.2;
}
html body .content-wrap .content-header .title h4 {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
}
html body .content-wrap .content-header .title p {
  font-size: 1.1rem;
  line-height: 1.8;
}
html body .content-wrap .content-header .title p.detail {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 1.5rem;
}
html body .content-wrap .content-header .title p.sub-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
}
html body .content-wrap .content-header .introduction h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: bold;
}
html body .content-wrap .content-header .introduction .department {
  font-size: 1.2rem;
}
html body .content-wrap .content-flex {
  display: flex;
}
html body .content-wrap .content-flex .content-header {
  width: 20%;
}
html body .content-wrap .content-flex .news-list {
  width: 80%;
}
html body .content-wrap .content-flex.flex-center {
  align-items: center;
}
html body .content-wrap .top-copy {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 24vw;
  font-weight: bold;
  margin: 0 auto;
  white-space: nowrap;
  margin-left: -2%;
  overflow-x: hidden;
}
html body .content-wrap .top-intro-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  padding-left: calc((100% - 1100px) / 2);
}
html body .content-wrap .top-intro-wrap .thumb img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
html body .content-wrap .top-intro-wrap .text {
  width: 50%;
}
html body .content-wrap .top-intro-wrap .text p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
}
html body .content-wrap .thumb-wrap {
  position: relative;
  z-index: -1;
}
html body .content-wrap .thumb-wrap img {
  display: block;
  margin-left: auto;
  margin-top: -4%;
  border-radius: 15px 0 0 15px;
  object-fit: cover;
  aspect-ratio: 16/9;
}
html body .content-wrap .thumb-wrap img.concept {
  margin: 0 auto;
  margin-top: -8%;
  border-radius: 15px;
  aspect-ratio: 16/8;
}
html body .content-wrap .thumb-wrap .pop-message {
  position: absolute;
}
html body .content-wrap .thumb-wrap .pop-message > img {
  position: relative;
  display: block;
  width: 160px;
  max-width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
}
html body .content-wrap .thumb-wrap .pop-message > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-44%, -60%);
  font-weight: bold;
  font-size: 1rem;
  width: 80%;
}
html body .content-wrap .thumb-wrap .pop-message.pop-message-01 {
  top: 35%;
  left: -3rem;
}
html body .content-wrap .thumb-wrap .pop-message.pop-message-02 {
  top: 20%;
  left: 28%;
}
html body .content-wrap .thumb-wrap .pop-message.pop-message-03 {
  top: 20%;
  right: 18%;
}
html body .content-wrap .thumb-wrap .pop-message.pop-message-04 {
  bottom: -3rem;
  right: 13%;
}
html body .content-wrap .top-lead-copy {
  margin-bottom: 0.8rem;
}
html body .content-wrap .top-lead-copy .js-marker {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  position: relative;
  background-image: linear-gradient(90deg, rgb(242, 254, 72), rgb(65, 232, 198));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 100%;
  transition: all 1s ease-out;
  font-weight: 900;
  font-size: 3vw;
  transform: scale(1, 0.9);
  line-height: 1.1;
}
html body .content-wrap .top-lead-copy .js-marker.inview {
  background-size: 100% 100%;
  background-color: transparent;
}
html body .content-wrap .top-main-catch h1 {
  transform: scale(1, 0.9);
}
html body .content-wrap .top-main-catch h1 span.grad {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(0deg, #00b47f 45%, #0abae1 100%);
  background: -webkit-linear-gradient(0deg, #00b47f 45%, #0abae1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 7.1vw;
  font-weight: 900;
}
html body .content-wrap .top-logo-intro {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
html body .content-wrap .top-logo-intro .thumb {
  width: 50%;
}
html body .content-wrap .top-logo-intro .thumb img {
  width: 350px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}
html body .content-wrap .top-logo-intro .text {
  width: 50%;
}
html body .content-wrap .top-logo-intro .text p {
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 1.5rem;
  line-height: 1.8;
}
html body .content-wrap .news-list {
  padding-bottom: 2rem;
}
html body .content-wrap .news-list > a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  margin: 0 auto;
  border-radius: 8px;
  color: black;
  border: 1px solid black;
  margin-bottom: 1rem;
  background: white;
}
html body .content-wrap .news-list > a .date {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
html body .content-wrap .news-list > a .date > span {
  width: 80px;
  display: block;
  text-align: center;
  margin: 0 1.3rem;
  padding: 0.3rem 0;
  background: black;
  color: white;
}
html body .content-wrap .news-list > a .title {
  font-size: 1.1rem;
}
html body .content-wrap .news-list > a::after {
  display: block;
  text-align: center;
  content: "→";
  position: absolute;
  top: 50%;
  right: 2%;
  bottom: auto;
  left: auto;
  transform: translateY(-50%);
  font-size: 0.9rem;
}
html body .content-wrap .news-list > a:hover {
  opacity: 0.6;
}
html body .content-wrap .news-link-wrap {
  display: flex;
  justify-content: space-between;
  width: 350px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
html body .content-wrap .news-link-wrap a {
  width: 50%;
  display: block;
  color: black;
  text-align: center;
}
html body .content-wrap .news-link-wrap a:first-child {
  border-right: 1px solid;
}
html body .content-wrap .news-link-wrap.prev-none {
  justify-content: flex-end;
}
html body .content-wrap .news-link-wrap.prev-none a:first-child {
  border-right: none;
  border-left: 1px solid;
}
html body .content-wrap .top-concept-wrap {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .top-concept-wrap .title {
  width: 55%;
}
html body .content-wrap .top-concept-wrap .title > span {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: 3vw;
  transform: scale(1, 0.9);
  background: linear-gradient(90deg, #4ef5ec 45%, #aba1f2 100%);
  background: -webkit-linear-gradient(0deg, #4ef5ec 45%, #aba1f2 100%);
  line-height: 1.1;
}
html body .content-wrap .top-concept-wrap .detail {
  width: 45%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
}
html body .content-wrap .activity-btn {
  width: 80%;
}
html body .content-wrap .activity-btn a {
  display: block;
  position: relative;
  background: black;
  color: white;
  width: 100%;
  padding: 3rem 1rem;
  border-radius: 20px;
  font-size: 1.1rem;
}
html body .content-wrap .activity-btn a:after {
  content: "→";
  font-size: 1rem;
  line-height: 1;
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.5em);
}
html body .content-wrap .top-box-wrap-pc {
  display: flex !important;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
}
html body .content-wrap .top-box-wrap-pc > div.w-40 {
  width: 40%;
}
html body .content-wrap .top-box-wrap-pc > div.w-50 {
  width: 50%;
}
html body .content-wrap .top-box-wrap-pc > div.w-60 {
  width: 60%;
}
html body .content-wrap .top-box-wrap-pc .text {
  padding-right: 1.5rem;
}
html body .content-wrap .top-box-wrap-pc .text > p {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.8;
}
html body .content-wrap .top-box-wrap-pc .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
html body .content-wrap .top-thumb-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
html body .content-wrap .top-thumb-wrap a {
  display: block;
  position: relative;
  width: calc(50% - 1rem);
}
html body .content-wrap .top-thumb-wrap a .thumb {
  position: relative;
  overflow: hidden;
}
html body .content-wrap .top-thumb-wrap a .thumb img {
  display: block;
  width: 100%;
  height: 100%;
  filter: brightness(70%);
  border-radius: 8px;
  aspect-ratio: 15/7;
  object-fit: cover;
  transition: all 0.5s;
}
html body .content-wrap .top-thumb-wrap a .thumb img:hover {
  transform: scale(1.1, 1.1);
}
html body .content-wrap .top-thumb-wrap a .thumb::after {
  display: block;
  content: url(../img/arrow.png);
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  line-height: 1;
}
html body .content-wrap .top-thumb-wrap a .text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
}
html body .content-wrap .top-thumb-wrap a .text p {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  font-size: 3rem;
  color: white;
  transform: scale(1.2, 1);
}
html body .content-wrap .top-thumb-wrap a:hover {
  opacity: 1;
}
html body .content-wrap .top-thumb-wrap.var2 a {
  margin-bottom: 2rem;
}
html body .content-wrap .top-thumb-wrap.var2 a .thumb img {
  filter: none;
}
html body .content-wrap .top-thumb-wrap.var2 a .text {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  padding: 1.5rem 1rem;
}
html body .content-wrap .top-thumb-wrap.var2 a .text > p {
  color: black;
}
html body .content-wrap .top-thumb-wrap.var2 a .text > p.ttl {
  font-size: 2rem;
  padding-bottom: 1rem;
}
html body .content-wrap .top-thumb-wrap.var2 a .text > p.sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  transform: none;
  font-weight: normal;
  text-align: left;
}
html body .content-wrap .concept-lead-copy {
  position: relative;
}
html body .content-wrap .concept-lead-copy p {
  line-height: 1.8;
}
html body .content-wrap .concept-lead-copy p > span {
  font-family: "Noto Serif JP", serif;
  background: white;
  font-size: 1.8rem;
  font-weight: 600;
  transform: scale(1, 0.9);
  line-height: 2;
}
html body .content-wrap .concept-speaker-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10%;
}
html body .content-wrap .concept-speaker-wrap .item {
  width: 25%;
}
html body .content-wrap .concept-speaker-wrap .item .thumb img {
  height: 530px;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
}
html body .content-wrap .concept-speaker-wrap .item .text {
  padding: 1rem 0;
}
html body .content-wrap .concept-speaker-wrap .item .text p {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}
html body .content-wrap .concept-speaker-wrap .item .text p span {
  display: block;
  font-weight: normal;
  padding-bottom: 0.5rem;
  font-size: 1rem;
}
html body .content-wrap.interview-wrap {
  position: relative;
}
html body .content-wrap.interview-wrap .inner.blank-space-interview {
  position: relative;
  margin-bottom: -7rem;
  z-index: 1;
}
html body .content-wrap.interview-wrap .sticky {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
}
html body .content-wrap.interview-wrap .sticky picture {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
html body .content-wrap.interview-wrap .sticky picture source,
html body .content-wrap.interview-wrap .sticky picture img {
  position: absolute;
  display: block;
  object-fit: cover;
  min-width: 100vw;
  min-height: 100vh;
}
html body .content-wrap.interview-wrap .content {
  overflow: hidden;
  position: relative;
}
html body .content-wrap.interview-wrap .content .item {
  margin: 5rem 0;
  background: white;
  padding: 2.5rem 3.5rem;
  border-radius: 15px;
  float: left;
  width: 60%;
  max-width: 100%;
}
html body .content-wrap.interview-wrap .content .item:nth-child(even) {
  float: right;
}
html body .content-wrap.interview-wrap .content .item .prof {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
}
html body .content-wrap.interview-wrap .content .item .prof .thumb {
  margin: -30px 20px -10px 0;
  flex-shrink: 0;
}
html body .content-wrap.interview-wrap .content .item .prof .thumb img {
  display: block;
  overflow: hidden;
  border-radius: 100rem;
  width: 10rem;
  margin: -70px 20px -10px 0;
  flex-shrink: 0;
  object-fit: cover;
  aspect-ratio: 1/1;
}
html body .content-wrap.interview-wrap .content .item .prof .name > span {
  font-size: 1.5rem;
  font-weight: bold;
}
html body .content-wrap.interview-wrap .content .item .comment {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}
html body .content-wrap.history-wrap .inner {
  padding-bottom: 15%;
}
html body .content-wrap.history-wrap .sticky picture {
  filter: brightness(60%);
}
html body .content-wrap.history-wrap .history {
  position: relative;
  margin: 0 auto;
  padding: 0 1rem;
}
html body .content-wrap.history-wrap .history:before {
  content: "";
  width: 3px;
  height: 100%;
  background: white;
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
}
html body .content-wrap.history-wrap .history h3 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: white;
}
html body .content-wrap.history-wrap .history h3.start {
  top: -6rem;
}
html body .content-wrap.history-wrap .history h3.end {
  bottom: -6rem;
}
html body .content-wrap.history-wrap .history .history-item {
  position: relative;
  display: flex;
}
html body .content-wrap.history-wrap .history .history-item:nth-of-type(2n) {
  justify-content: flex-end;
}
html body .content-wrap.history-wrap .history .history-item:first-of-type:before {
  content: "";
  width: 30px;
  height: 30px;
  background: white;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
html body .content-wrap.history-wrap .history .history-item:last-of-type {
  padding-bottom: 5rem;
}
html body .content-wrap.history-wrap .history .history-item:last-of-type::after {
  content: "";
  width: 30px;
  height: 30px;
  background: white;
  position: absolute;
  border-radius: 50%;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
html body .content-wrap.history-wrap .history .history-inner {
  width: 480px;
  max-width: 100%;
  background: #f9f7ef;
  border-radius: 15px;
  left: 50%;
  padding: 2rem;
}
html body .content-wrap.history-wrap .history .history-ttl .main {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  padding-bottom: 0.5rem;
}
html body .content-wrap.history-wrap .history .history-ttl .sub {
  font-size: 1.5rem;
  font-weight: bold;
}
html body .content-wrap.history-wrap .history .history-ttl .sub.red {
  color: #ef3f49;
}
html body .content-wrap.history-wrap .history .history-text {
  padding-top: 1rem;
}
html body .content-wrap.history-wrap .history .history-text > p {
  font-size: 1rem;
  line-height: 1.6;
}
html body .content-wrap.history-wrap .history .history-text > img {
  display: block;
  padding-top: 1rem;
}
html body .content-wrap.history-wrap .news-link-wrap {
  position: relative;
}
html body .content-wrap.history-wrap .news-link-wrap a {
  font-family: "Noto Serif JP", serif;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
}
html body .content-wrap .history-list-wrap .item {
  position: relative;
  display: flex;
  height: 60vh;
}
html body .content-wrap .history-list-wrap .item .thumb {
  width: 70%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 16/9;
}
html body .content-wrap .history-list-wrap .item .text {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5% 5% 5% 15%;
  width: 50%;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(119, 208, 239), rgb(85, 239, 237));
  clip-path: polygon(22% 0, 100% 0%, 100% 100%, 0 100%);
}
html body .content-wrap .history-list-wrap .item .text p {
  line-height: 1.8;
  font-size: 1.1rem;
}
html body .content-wrap .history-list-wrap .item .text p.sub-ttl {
  font-size: 1.5rem;
  font-weight: bold;
}
html body .content-wrap .history-list-wrap .item .text p.title {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
html body .content-wrap .history-list-wrap .item .text p.title::after {
  content: "";
  border-bottom: 1px solid white;
  display: block;
}
html body .content-wrap .history-list-wrap .item .text::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 2rem;
  background-image: url(../img/70th_anniv.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 300px;
  height: 300px;
  z-index: -1;
  opacity: 0.6;
}
html body .content-wrap .history-list-wrap .item.reverse {
  flex-direction: row-reverse;
}
html body .content-wrap .history-list-wrap .item.reverse .text {
  position: absolute;
  top: 0;
  right: auto;
  left: 0;
  padding: 5% 15% 5% 5%;
  background-image: linear-gradient(90deg, rgb(80, 234, 188), rgb(160, 244, 131));
  clip-path: polygon(0 0, 80% 0%, 100% 100%, 0% 100%);
}
html body .content-wrap .history-list-wrap .item.reverse .text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: auto;
  left: 2rem;
}
html body .content-wrap .interview-archive-wrap .interview-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 2px solid black;
  padding: 2rem 0;
}
html body .content-wrap .interview-archive-wrap .interview-section .title {
  width: 33.3333333333%;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 900;
  transform: scale(1, 0.9);
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list {
  width: 66.6666666667%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list .item {
  width: 50%;
  padding-right: 1.5rem;
  margin-bottom: 2rem;
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list .item:nth-child(2n) {
  padding-right: 0;
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list .item .thumb img {
  display: block;
  object-fit: cover;
  width: 390px;
  height: 260px;
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list .item .text {
  padding: 1rem 0;
  position: relative;
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list .item .text > p {
  font-size: 1rem;
  line-height: 1.8;
}
html body .content-wrap .interview-archive-wrap .interview-section .card-list .item .text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: block;
  width: 30px;
  height: 30px;
  background-color: black;
  background-image: url(../img/arrow_.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 8px;
  border-radius: 100rem;
}
html body .content-wrap .interview-detail-wrap .eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  aspect-ratio: 16/10;
}
html body .content-wrap .interview-detail-wrap .text-box {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .interview-detail-wrap .text-box .text-block {
  width: calc(50% - 2rem);
  padding: 1rem;
}
html body .content-wrap .interview-detail-wrap .text-box .text-block p {
  font-size: 1rem;
  line-height: 1.8;
}
html body .content-wrap .interview-detail-wrap .text-box .text-block .main {
  padding-bottom: 1rem;
}
html body .content-wrap .interview-detail-wrap .text-box .text-block .main span {
  display: inline-block;
  background: linear-gradient(0deg, #0abae1 45%, #00b47f 100%);
  background: -webkit-linear-gradient(0deg, #0abae1 45%, #00b47f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: bold;
}
html body .content-wrap .interview-detail-wrap .text-box .text-block .sub {
  font-size: 1.2rem;
  font-weight: bold;
  padding-bottom: 1rem;
}
html body .content-wrap .interview-detail-wrap .text-box .text-block img {
  display: block;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  padding: 1rem 0;
}
html body .content-wrap .message-wrap > img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
html body .content-wrap .message-wrap .message-text {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .message-wrap .message-text .copy {
  width: 45%;
  margin-top: -2rem;
}
html body .content-wrap .message-wrap .message-text .text {
  width: 55%;
  padding: 2rem;
}
html body .content-wrap .message-wrap .message-text .text p {
  font-size: 1rem;
  line-height: 1.8;
}
html body .content-wrap .message-wrap .message-text .text p.sign {
  padding: 5rem 0;
}
html body .content-wrap .message-wrap .message-text .text p.sign img {
  display: block;
  width: 50%;
  margin-left: auto;
}
html body .content-wrap .quiz-wrap .thumb img {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 2.5rem 0;
  object-fit: cover;
}
html body .content-wrap .quiz-wrap p {
  font-size: 1.1rem;
  line-height: 1.8;
}
html body .content-wrap .quiz-answer-wrap {
  background: #f7f7f7;
  margin: 5rem 0 1.5rem;
  padding-bottom: 6rem;
}
html body .content-wrap .quiz-answer-wrap > img {
  position: relative;
  top: -3.5rem;
  display: block;
  width: 200px;
  height: auto;
  margin: 0 auto;
}
html body .content-wrap .quiz-answer-wrap p {
  font-size: 1.1rem;
  line-height: 1.8;
}
html body .content-wrap .btn-flex {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .btn-flex a {
  display: block;
  width: calc(50% - 1rem);
  color: white;
  border-radius: 100rem;
  text-align: center;
  padding: 1rem 0;
  font-size: 3rem;
  line-height: 1;
}
html body .content-wrap .btn-flex a.bg-red {
  background: #ef3f49;
}
html body .content-wrap .btn-flex a.bg-blue {
  background: #006cb7;
}
html body .content-wrap .data-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body .content-wrap .data-wrap .item {
  width: calc(50% - 30px);
}
html body .content-wrap .data-wrap .item .title {
  position: relative;
}
html body .content-wrap .data-wrap .item .title::after {
  content: "";
  display: block;
  border: 1px solid white;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  z-index: 0;
}
html body .content-wrap .data-wrap .item .title span {
  display: block;
  position: relative;
  background: white;
  width: fit-content;
  padding: 0 10px;
  border-radius: 10rem;
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 auto;
  z-index: 1;
}
html body .content-wrap .data-wrap .item .data-text {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  transform: scale(1, 0.9);
  font-size: 5.5vw;
  color: white;
  text-align: center;
}
html body .content-wrap .data-wrap .item .data-text > span {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  transform: scale(1, 0.9);
  font-size: 4vw;
  color: white;
  text-align: center;
}
html body .content-wrap .canvas-container {
  position: relative;
  width: calc(100% - 40px);
  height: 300px;
  padding: 1rem 0;
  margin: 0 auto;
}
html body .content-wrap .canvas-container canvas {
  display: block;
  margin: 0 auto;
  width: auto;
  height: 90%;
}
html body .content-wrap .canvas-container canvas.chart-small {
  width: 40%;
  margin-top: 2rem;
}
html body .content-wrap .canvas-container .data-img {
  position: absolute;
  width: 130px !important;
}
html body .content-wrap .canvas-container .data-img span {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}
html body .content-wrap .canvas-container .data-img span strong {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
}
html body .content-wrap .canvas-container .data-img img {
  display: block;
  width: 100%;
  height: 100%;
}
html body .content-wrap .canvas-container .data-img.data-1-1 {
  top: 18%;
  left: 14%;
}
html body .content-wrap .canvas-container .data-img.data-1-2 {
  top: 41%;
  right: 9%;
}
html body .content-wrap .canvas-container .data-img.data-1-3 {
  top: 40%;
  left: 2%;
}
html body .content-wrap .canvas-container .data-img.data-1-4 {
  top: 41%;
  right: 3%;
}
html body .content-wrap .canvas-container .data-img.data-3-1 {
  top: 14%;
  right: 32%;
}
html body .content-wrap .canvas-container .data-img.data-3-2 {
  top: 72%;
  right: 30%;
}
html body .content-wrap .canvas-container .data-img.data-3-3 {
  top: 71%;
  left: 30%;
}
html body .content-wrap .canvas-container .data-img.data-3-4 {
  top: 24%;
  left: 28%;
}
html body .content-wrap .canvas-container .data-img.data-4-1 {
  top: 50%;
  right: 30%;
}
html body .content-wrap .canvas-container .data-img.data-4-2 {
  top: 24%;
  left: 29%;
}
html body .content-wrap .data-txt-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
html body .content-wrap .data-txt-flex .txt-box {
  width: calc(50% - 30px);
}
html body .content-wrap .data-txt-flex .txt-box p {
  color: white;
  text-align: center;
  line-height: 1;
}
html body .content-wrap .data-txt-flex .txt-box p > span {
  font-family: "Noto Serif JP", serif;
  color: white;
}
html body .content-wrap .data-txt-flex .txt-box p.sub {
  font-size: 1.1rem;
  padding-bottom: 2rem;
}
html body .content-wrap .data-txt-flex .txt-box p.main {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  transform: scale(1, 0.9);
  font-size: 5rem;
}
html body .content-wrap .data-txt-flex .txt-box p.main span {
  font-size: 3rem;
}
html body .content-wrap .data-txt-flex .txt-box p.large {
  font-size: 6.5rem;
}
html body .content-wrap .data-txt-flex .txt-box p.large span {
  color: white;
  font-size: 4rem;
}
html body .content-wrap .graph-data-wrap {
  display: flex;
  justify-content: space-between;
}
html body .content-wrap .graph-data-wrap .item {
  width: calc(50% - 30px);
  border-top: 1px solid;
  border-image: linear-gradient(to right, #30c5e3, #04b542) 1;
  padding: 1.5rem;
}
html body .content-wrap .graph-data-wrap .item h4 {
  text-align: center;
}
html body .content-wrap .graph-data-wrap .item h4 span.grad {
  display: inline-block;
  background: linear-gradient(0deg, #30c5e3 40%, #04b542 100%);
  background: -webkit-linear-gradient(0deg, #30c5e3 40%, #04b542 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: bold;
}
html body .content-wrap .graph-data-wrap .text-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html body .content-wrap .graph-data-wrap .text-box .data-box {
  width: calc(50% - 30px);
}
html body .content-wrap .graph-data-wrap .text-box .txt {
  width: calc(50% - 30px);
}
html body .content-wrap .graph-data-wrap .text-box .txt p {
  font-size: 1rem;
  line-height: 1.8;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container {
  position: relative;
  width: 100%;
  height: 450px;
  padding: 1rem 0;
  margin: 0 auto;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container canvas {
  margin-top: 1rem;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data {
  position: absolute;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-1 {
  top: 9%;
  left: 6%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-1.bar-2-1 {
  top: 8%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-1.bar-3-1 {
  top: 7%;
  left: 4%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-1 span {
  color: #2ec4de;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-2 {
  top: 25%;
  left: 26%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-2.bar-2-2 {
  top: 16%;
  left: 23%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-2.bar-3-2 {
  top: 19%;
  left: 23%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-2 span {
  color: #24c1b7;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-3 {
  top: 38%;
  left: 43%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-3.bar-2-3 {
  top: 28%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-3.bar-3-3 {
  top: 23%;
  left: 43%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-3 span {
  color: #18bc8a;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-4 {
  top: 39%;
  left: 65%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-4.bar-2-4 {
  top: 40%;
  left: 63%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-4.bar-3-4 {
  top: 24%;
  left: 63%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-4 span {
  color: #0fb969;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-5 {
  top: 48%;
  left: 85%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-5.bar-2-5 {
  top: 41%;
  left: 82%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-5.bar-3-5 {
  top: 28%;
  left: 82%;
}
html body .content-wrap .graph-data-wrap .canvas-bar-container .bar-data.bar-1-5 span {
  color: #02b53b;
}
html body .content-wrap .overseas-wrap {
  position: relative;
  overflow: hidden;
}
html body .content-wrap .overseas-wrap #map-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1291/651;
  background: url("../img/data_overseas.png") no-repeat center center;
  background-size: contain;
}
html body .content-wrap .overseas-wrap ul.lines,
html body .content-wrap .overseas-wrap ul.lines li {
  position: absolute;
  width: 100%;
  height: auto;
  aspect-ratio: 1291/651;
  top: 0;
  left: 0;
}
html body .content-wrap .overseas-wrap ul.lines li img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1291/651;
}
html body .content-wrap .overseas-wrap ul.lines li img.marker {
  opacity: 0;
}
html body .content-wrap .overseas-wrap ul.lines li img.line-animation {
  clip-path: circle(0% at 50% 50%);
}
@keyframes clipmove {
  0%, 100% {
    clip-path: circle(0% at 50% 50%);
    /*    transform: scale(1);*/
  }
  50% {
    clip-path: circle(100% at 50% 50%);
    /*    transform: scale(1.2);*/
  }
}
html body .content-wrap .wold-text-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
html body .content-wrap .wold-text-wrap .wold-list {
  width: calc(20% - 20px);
}
html body .content-wrap .wold-text-wrap .wold-list li {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.8;
}
html body .content-wrap .wold-text-wrap .wold-list li.main span {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  color: white;
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: 0.1rem;
}
html body .content-wrap .future-wrap {
  background-image: url(../img/future_mv.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  aspect-ratio: 370/547;
  position: relative;
  overflow: hidden;
}
html body .content-wrap .future-wrap a {
  display: inline-block;
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
html body .content-wrap .future-wrap a:hover {
  opacity: 1;
}
html body .content-wrap .future-wrap a > div {
  position: relative;
  line-height: 1;
  padding: 10px 1em 10px 2.5em;
  font-size: 1.3em;
  font-weight: 600;
  white-space: nowrap;
  color: black;
  background: white;
  border: 2px solid black;
  border-radius: 100rem;
  transition: all 0.3s;
}
html body .content-wrap .future-wrap a > div:hover {
  color: white;
  background-color: black;
  opacity: 1;
}
html body .content-wrap .future-wrap a > div::before {
  content: "";
  display: inline-block;
  background-image: url(../img/plus_icon.svg);
  width: 40px;
  height: 40px;
  position: absolute;
  top: 60%;
  left: 3px;
  transform: translateY(-50%);
  margin-right: 1em;
}
html body .content-wrap .future-wrap a#quote_01 {
  top: 5.9%;
  left: 34%;
}
html body .content-wrap .future-wrap a#quote_02 {
  top: 7.6%;
  left: 65.4%;
}
html body .content-wrap .future-wrap a#quote_03 {
  top: 16.3%;
  left: 7.7%;
}
html body .content-wrap .future-wrap a#quote_04 {
  top: 22.8%;
  left: 23%;
}
html body .content-wrap .future-wrap a#quote_05 {
  top: 21%;
  left: 46%;
}
html body .content-wrap .future-wrap a#quote_06 {
  top: 20.1%;
  left: 72.7%;
}
html body .content-wrap .future-wrap a#quote_07 {
  top: 33%;
  left: 43%;
}
html body .content-wrap .future-wrap a#quote_08 {
  top: 28.8%;
  left: 86%;
}
html body .content-wrap .future-wrap a#quote_09 {
  top: 43%;
  left: 18%;
}
html body .content-wrap .future-wrap a#quote_10 {
  top: 40.9%;
  left: 72.3%;
}
html body .content-wrap .future-wrap a#quote_11 {
  top: 56%;
  left: 62%;
}
html body .content-wrap .future-wrap a#quote_12 {
  top: 64%;
  left: 38%;
}
html body .content-wrap .future-wrap a#quote_13 {
  top: 64%;
  left: 87%;
}
html body .content-wrap .future-wrap a#quote_14 {
  top: 88.4%;
  left: 36.4%;
}
html body .content-wrap .bases-slider-wrap {
  position: relative;
  padding-bottom: 10%;
}
html body .content-wrap .bases-slider-wrap .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 60px;
  height: 125px;
  cursor: pointer;
}
html body .content-wrap .bases-slider-wrap .arrow.prev {
  left: -10%;
}
html body .content-wrap .bases-slider-wrap .arrow.next {
  right: -10%;
}
html body .content-wrap .bases-slider-wrap .slick-dots {
  bottom: -45px;
}
html body .content-wrap .bases-slider-wrap .slick-dots li button:before {
  font-size: 11px;
}
html body .content-wrap article {
  margin-top: 4em;
}
html body .content-wrap article h1 {
  font-weight: bold;
  margin: 2rem 0;
}
@media screen and (max-width: 1000px) {
  html body .content-wrap article h1 {
    font-size: 1.8rem;
  }
}
html body .content-wrap article h2 {
  font-weight: bold;
}
html body .content-wrap article h2.blue {
  font-size: 2.5rem;
  color: #0054a7;
  margin-bottom: 2rem;
}
html body .content-wrap article p {
  padding-bottom: 2em;
  line-height: 2em;
}
html body .content-wrap article p > span.red {
  color: red;
}
html body .content-wrap .list a:hover {
  opacity: 0.8;
}
html body .content-wrap .list.thumb {
  display: flex;
}
html body .content-wrap .list.thumb > a,
html body .content-wrap .list.thumb .item {
  color: black;
}
html body .content-wrap .list.thumb > a .thumb,
html body .content-wrap .list.thumb .item .thumb {
  aspect-ratio: 16/9;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
html body .content-wrap .list.col2 {
  display: flex;
  flex-wrap: wrap;
}
html body .content-wrap .list.col2 > a,
html body .content-wrap .list.col2 .item {
  display: block;
  width: 49%;
  margin-right: 2%;
  margin-bottom: 2%;
}
html body .content-wrap .list.col2 > a:hover,
html body .content-wrap .list.col2 .item:hover {
  text-decoration: none;
}
html body .content-wrap .list.col2 > a:nth-child(2n),
html body .content-wrap .list.col2 .item:nth-child(2n) {
  margin-right: 0;
}
html body .content-wrap .list.col3 {
  display: flex;
  flex-wrap: wrap;
}
html body .content-wrap .list.col3 > a,
html body .content-wrap .list.col3 .item {
  display: block;
  width: 31.3333%;
  margin-right: 3%;
  margin-bottom: 3%;
}
html body .content-wrap .list.col3 > a:hover,
html body .content-wrap .list.col3 .item:hover {
  text-decoration: none;
}
html body .content-wrap .list.col3 > a:nth-child(3n),
html body .content-wrap .list.col3 .item:nth-child(3n) {
  margin-right: 0;
}
html body .content-wrap .list.col4 {
  display: flex;
  flex-wrap: wrap;
}
html body .content-wrap .list.col4 > a,
html body .content-wrap .list.col4 .item {
  display: block;
  width: 23.5%;
  margin-right: 2%;
  margin-bottom: 2%;
}
html body .content-wrap .list.col4 > a:hover,
html body .content-wrap .list.col4 .item:hover {
  text-decoration: none;
}
html body .content-wrap .list.col4 > a:nth-child(4n),
html body .content-wrap .list.col4 .item:nth-child(4n) {
  margin-right: 0;
}
html body .content-wrap .list.col1 {
  display: block;
}
html body .content-wrap .list.col1 .item .text {
  padding: 1.5rem 0;
}
html body .content-wrap .list.col1 .item .text > p {
  font-size: 1rem;
}
html body .content-wrap .article-detail .ttl h2 {
  font-size: 1.7rem;
}
html body .content-wrap .article-detail .ttl .date {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
html body .content-wrap .article-detail .ttl .date > span {
  width: 80px;
  display: block;
  text-align: center;
  margin: 0 1.3rem;
  padding: 0.3rem 0;
  background: black;
  color: white;
}
html body .content-wrap .article-detail .article img {
  display: block;
  padding: 2.5rem 0;
}
html body .content-wrap .article-detail p {
  font-size: 1rem;
  padding-bottom: 1rem;
}
html body .content-wrap .map {
  text-align: center;
}
html body .content-wrap .table thead tr {
  background: #f2f2f2;
}
html body .content-wrap .table tr:last-child {
  border-bottom: 1px solid black;
}
html body .content-wrap .table th {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
html body .content-wrap .table td {
  border-top: 1px solid black;
  padding: 1.5rem 1rem;
  font-size: 1rem;
  text-align: center;
}
html body .content-wrap .btn-wrap a {
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  font-weight: 600;
  position: relative;
  transition: all 0.3s;
}
html body .content-wrap .btn-wrap a:hover {
  text-decoration: none;
  opacity: 0.8;
}
html body .content-wrap .btn-wrap.black a {
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  width: 350px;
  padding: 2rem 2.5rem;
  border-radius: 100rem;
  text-align: left;
}
html body .content-wrap .btn-wrap.black a:after {
  content: "→";
  font-size: 0.7rem;
  line-height: 1;
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.5em);
}
html body .content-wrap .btn-wrap.white a {
  background-color: white;
  color: black;
  font-weight: bold;
  font-size: 1rem;
  width: 350px;
  padding: 2rem 2.5rem;
  border-radius: 100rem;
  text-align: left;
}
html body .content-wrap .btn-wrap.white a:after {
  content: "→";
  font-size: 0.7rem;
  line-height: 1;
  display: block;
  position: absolute;
  right: 2rem;
  top: calc(50% - 0.5em);
}
html body .content-wrap .btn-wrap.small a {
  color: black;
  font-size: 1.1rem;
}
html body .content-wrap .btn-wrap.small a:after {
  content: "→";
  background-color: black;
  border: 1px solid black;
  font-size: 1.2rem;
  padding: 1rem;
  margin-left: 0.5rem;
  vertical-align: middle;
  line-height: 1;
  display: inline-block;
  border-radius: 100rem;
  color: white;
}
html body .content-wrap .btn-wrap.center {
  text-align: center;
}
html body .content-wrap .btn-wrap.right {
  text-align: right;
}
html body .content-wrap .ancor {
  overflow: visible;
}
html body .content-wrap .ancor a {
  display: block;
}
html body .content-wrap form {
  width: 540px;
  margin: 3rem auto 0;
}
html body .content-wrap form .row {
  border-top: 1px solid #eef3f1;
}
html body .content-wrap form .row .col-12,
html body .content-wrap form .row .col-6 {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}
html body .content-wrap form .row .col-12 label,
html body .content-wrap form .row .col-6 label {
  width: 30%;
  font-size: 1.1rem;
  font-weight: bold;
}
html body .content-wrap form .row .col-12 select,
html body .content-wrap form .row .col-12 input,
html body .content-wrap form .row .col-12 textarea,
html body .content-wrap form .row .col-6 select,
html body .content-wrap form .row .col-6 input,
html body .content-wrap form .row .col-6 textarea {
  width: 70%;
  background-color: #e2ecf3;
  border: 1px solid #eef3f1;
  padding: 1.8em 1em;
  border-radius: 0.25rem;
}
html body .content-wrap form .row .col-12 select:hover, html body .content-wrap form .row .col-12 select:focus, html body .content-wrap form .row .col-12 select:active,
html body .content-wrap form .row .col-12 input:hover,
html body .content-wrap form .row .col-12 input:focus,
html body .content-wrap form .row .col-12 input:active,
html body .content-wrap form .row .col-12 textarea:hover,
html body .content-wrap form .row .col-12 textarea:focus,
html body .content-wrap form .row .col-12 textarea:active,
html body .content-wrap form .row .col-6 select:hover,
html body .content-wrap form .row .col-6 select:focus,
html body .content-wrap form .row .col-6 select:active,
html body .content-wrap form .row .col-6 input:hover,
html body .content-wrap form .row .col-6 input:focus,
html body .content-wrap form .row .col-6 input:active,
html body .content-wrap form .row .col-6 textarea:hover,
html body .content-wrap form .row .col-6 textarea:focus,
html body .content-wrap form .row .col-6 textarea:active {
  outline: 2px solid #4ef5ec;
  border-color: transparent !important;
  box-shadow: none !important;
}
html body .content-wrap form:last-child .row {
  border-bottom: 1px solid #eef3f1;
}
html body .content-wrap form .btn-wrap input[type=submit] {
  background-color: black;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  width: 350px;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  border: none;
}
html body .content-wrap .Pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 0;
}
html body .content-wrap .Pagination .Pagination-Item-Link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  font-size: 14px;
  border: 1px solid black;
  border-radius: 100rem;
  transition: all 0.15s linear;
  text-decoration: none;
  color: black;
}
html body .content-wrap .Pagination .Pagination-Item-Link > span {
  font-size: 1.2rem;
}
html body .content-wrap .Pagination-Item-Link-Icon {
  text-decoration: none;
  color: black;
}
html body .content-wrap .current,
html body .content-wrap .pager {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  font-size: 14px;
  border: 1px solid black;
  border-radius: 100rem;
  transition: all 0.15s linear;
  text-decoration: none;
  background: black;
  color: #fff;
}
html body .content-wrap .Pagination-Item-Link:not(.isActive):hover {
  color: black;
  opacity: 1;
}
html body .content-wrap .Pagination > * + * {
  margin-left: 8px;
}
html body .modal-quote-block {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
}
html body .modal-quote-block.active {
  display: block;
}
html body .modal-quote-block .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
html body .modal-quote-block .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 60px;
  height: 125px;
  cursor: pointer;
}
html body .modal-quote-block .arrow.prev {
  left: -10%;
}
html body .modal-quote-block .arrow.next {
  right: -10%;
}
html body .modal-quote-block ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 920px;
  background-color: white;
  border-radius: 10px;
}
html body .modal-quote-block ul li {
  width: 100%;
  padding: 3em;
}
html body .modal-quote-block ul li h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 900;
  transform: scale(1, 0.9);
  font-size: 2.6rem;
  padding-bottom: 2rem;
}
html body .modal-quote-block ul li .text p {
  line-height: 1.8;
  font-size: 1rem;
}
html body .modal-quote-block ul li .thumb img {
  display: block;
  width: 50%;
  height: 100%;
  padding: 1rem 0;
  object-fit: cover;
  margin: 0 auto;
}
html body .modal-quote-block .modal-hide {
  display: block;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  cursor: pointer;
}
html body .interview-page-wrap {
  position: relative;
}
html body .interview-page-wrap .concept-nav-wrap {
  position: sticky;
  position: -webkit-sticky;
  top: 13%;
  right: 0;
  width: 1100px;
  margin: 0 auto;
  z-index: 2;
  opacity: 0.9;
  margin-bottom: -2rem;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-left: auto;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li {
  width: 150px;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li > a {
  font-family: "Roboto Condensed", sans-serif;
  display: block;
  background: white;
  border: 2px solid black;
  border-radius: 15px;
  padding: 1rem 0;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  color: black;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li > a:active, html body .interview-page-wrap .concept-nav-wrap .concept-nav li > a:hover {
  opacity: 1;
  background: black;
  color: white;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li > a.active {
  background: black;
  color: white;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li:nth-child(1) a {
  border-radius: 15px 0 0 15px;
  border-right: none;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li:nth-child(2) a {
  border-radius: 0;
  border-right: none;
}
html body .interview-page-wrap .concept-nav-wrap .concept-nav li:nth-child(3) a {
  border-radius: 0 15px 15px 0;
}
html body footer {
  background-color: black;
}
html body footer .footer-mainvi {
  width: 100%;
  height: 100%;
  position: relative;
}
html body footer .footer-mainvi .thumb {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  filter: brightness(50%);
}
html body footer .footer-mainvi .copy {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 100%;
  max-width: 1100px;
}
html body footer .footer-mainvi .copy h1 {
  width: 100%;
  position: relative;
}
html body footer .footer-mainvi .copy h1 span {
  font-family: "Noto Serif JP", serif;
  display: block;
  color: white;
  font-size: 7vw;
  font-weight: 900;
  transform: scale(1, 0.9);
}
html body footer .footer-mainvi .copy img.linearGradient {
  display: block;
  width: 410px;
}
html body footer .inner {
  margin: 0 auto;
  width: 100%;
}
html body footer .inner .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 10rem 5rem 3rem;
}
html body footer .inner .copyright .footer-link {
  display: flex;
  align-items: center;
}
html body footer .inner .copyright .footer-link > img {
  display: block;
  width: 70px;
  max-width: 100%;
}
html body footer .inner .copyright .footer-link .text-link {
  padding-left: 1em;
}
html body footer .inner .copyright .footer-link .text-link a {
  display: block;
  color: white;
}
html body footer .inner .copyright .footer-link .text-link a::after {
  content: "";
  display: inline-block;
  background-image: url(../img/tab.svg);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: contain;
  width: 14px;
  height: 23px;
  margin-left: 0.5rem;
}
html body footer .inner .copyright p {
  font-size: 0.9rem;
  font-weight: 400;
  color: white;
}
html body #page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #791d48;
  border-radius: 100rem;
  width: 80px;
  height: 80px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.3s;
  line-height: 1.6;
}
html body #page-top a:hover {
  background: #777;
}
html body #page-top {
  position: fixed;
  right: 30px;
  bottom: 50px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
html body #page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html body #page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}