@charset "UTF-8";
:root {
  --font-h1: 32px;
  --font-h2: 26px;
  --font-h3: 20px;
  --font-h4: 17px;
  --font-h5: 14px;
  --font-h6: 13px;
  --font-h7: 11px;
  --font-small: 12px;
  --color-key: #0068B7;
  --color-sub: #EDF7FF;
  --color-black: #555555;
  --color-white: #FFFFFF;
  --color-true-black: #000000;
  --color-white-rgb: 255, 255, 255;
  --color-black-rgb: 51, 51, 51;
  --color-key-rgb: 0, 104, 183;
  --color-gray-50: #F8F8F8;
  --color-gray-100: #F5F5F5;
  --color-gray-300: #DDDDDD;
  --color-gray-400: #CCCCCC;
  --color-gray-600: #666666;
  --color-key-pale: #DDF0FF;
  --color-key-lightpale: #A4D1F5;
  --color-key-border: #B9DCF7;
  --color-section-bg: #EBEBEB;
}

@media screen and (min-width: 768px) {
  :root {
    --font-h1: 40px;
    --font-h2: 32px;
    --font-h3: 24px;
    --font-h4: 20px;
    --font-h5: 16px;
    --font-h6: 14px;
    --font-h7: 12px;
  }
}
img[src$=".svg"] {
  width: 100%;
}

::-moz-selection {
  background: rgba(var(--color-key-rgb), 0.6);
  color: var(--color-white);
}

::selection {
  background: rgba(var(--color-key-rgb), 0.6);
  color: var(--color-white);
}

::-moz-selection {
  background: rgba(var(--color-key-rgb), 0.6);
  color: var(--color-white);
}

html, body {
  height: 100%;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

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

a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  text-decoration: none;
}

li {
  list-style-type: none;
}

dl, dt, dd, ul, ol, li, figure {
  margin: 0;
  padding: 0;
}

p {
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
}

em, i {
  font-style: normal;
}

i.fa {
  margin-right: 0.25em;
}

@media screen and (max-width: 768px) {
  .u-onlypc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-onlysp {
    display: none !important;
  }
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
}

html {
  color: var(--color-black);
  font-size: var(--font-h5);
}

body {
  overscroll-behavior-y: none;
}

/*-------------------------------------------
共通要素
-------------------------------------------*/
.nttgemain {
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Meiryo UI", "Meiryo", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ ゴシック", "MS Gothic", sans-serif;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
  overflow: hidden;
}
.nttgemain::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../image/spbackground_line.svg) no-repeat center bottom;
  background-size: 765px;
}
@media screen and (min-width: 768px) {
  .nttgemain::before {
    background: url(../image/background_line.svg) no-repeat center bottom;
    background-size: 2560px;
  }
}
.nttgemain--test::before {
  background: url(../image/spbackground_line.svg) no-repeat center top 60svh;
  background-size: 765px;
}
@media screen and (min-width: 768px) {
  .nttgemain--test::before {
    background: url(../image/background_line.svg) no-repeat center top 600px;
    background-size: 2560px;
  }
}

/*-------------------------------------------

トップページ

-------------------------------------------*/
.keyvisual {
  position: relative;
}
@media screen and (min-width: 768px) {
  .keyvisual {
    height: 756px;
  }
}
.keyvisual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -60;
  background: url(../image/spbackground_home.svg) no-repeat center top;
  background-size: cover;
  height: 1262px;
}
@media screen and (min-width: 768px) {
  .keyvisual::before {
    background: url(../image/background_home.svg) no-repeat center top;
    background-size: cover;
    height: 1712px;
  }
}
.keyvisual::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  min-width: 640px;
  z-index: -10;
  background: url(../image/spbackground_homecircle.svg) no-repeat center top;
  background-size: 100%;
  height: 900px;
}
@media screen and (min-width: 768px) {
  .keyvisual::after {
    background: url(../image/background_homecircle.svg) no-repeat center top;
    background-size: 2560px;
    height: 900px;
  }
}
.keyvisual__content {
  position: relative;
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .keyvisual__content {
    max-width: 1380px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 50px;
    padding-top: 30px;
  }
}
.keyvisual__image {
  display: block;
  z-index: -50;
  position: relative;
  height: 400px;
  margin: 0 20px;
}
@media screen and (min-width: 768px) {
  .keyvisual__image {
    height: 550px;
    margin: 0 auto;
    width: 100%;
    max-width: 1080px;
    border-radius: 120px;
    overflow: hidden;
    aspect-ratio: 1080/550;
  }
}
.keyvisual__image img {
  width: 100%;
  height: auto;
  border-radius: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
@media screen and (max-width: 768px) {
  .keyvisual__image img {
    aspect-ratio: 335/416;
  }
}
@media screen and (min-width: 768px) {
  .keyvisual__image img {
    -o-object-position: right bottom;
       object-position: right bottom;
    height: 100%;
    width: 100%;
    border-radius: 120px;
  }
}
.keyvisual__catchcopy {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  left: 0;
}
@media screen and (min-width: 768px) {
  .keyvisual__catchcopy {
    left: 50px;
  }
}
.keyvisual__heading {
  width: auto;
  display: table;
  color: white;
  font-size: var(--font-h4);
  font-weight: 500;
  margin-left: 5px;
  padding: 7px 16px;
  border-radius: 0px 6px 6px 0px;
}
@media screen and (min-width: 768px) {
  .keyvisual__heading {
    padding: 6px 16px;
    border-radius: 8px;
    margin-top: 60px;
  }
}
.keyvisual__heading--title {
  background: rgba(2, 112, 197, 0.7);
  font-size: var(--font-h6);
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .keyvisual__heading--title {
    margin-top: 0;
    position: absolute;
    top: 40px;
  }
}
.keyvisual__heading--plain {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .keyvisual__heading--plain {
    margin-top: 80px;
  }
}
.keyvisual__heading {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(50%, black), color-stop(50%, transparent));
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  mask-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(50%, black), color-stop(50%, transparent));
  mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}
.keyvisual__heading.is-visible {
  -webkit-animation: fadeInFromLeft 0.5s ease-in-out forwards;
          animation: fadeInFromLeft 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@-webkit-keyframes fadeInFromLeft {
  to {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
  }
}
@keyframes fadeInFromLeft {
  to {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
  }
}
.keyvisual__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.keyvisual__line {
  position: absolute;
  top: 60px;
  font-weight: 500;
  line-height: 100%;
  z-index: 10;
  color: white;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 34px;
  height: 150px;
  width: 300px;
  padding: 0px 16px 2px;
  border-radius: 0px 6px 6px 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .keyvisual__line {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: 225px;
    width: 450px;
    padding: 0px 16px;
    border-radius: 8px;
    font-size: 56px;
    top: 70px;
  }
}
.keyvisual__line + .keyvisual__line {
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .keyvisual__line + .keyvisual__line {
    margin-top: 8px;
  }
}
.keyvisual__line {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(50%, black), color-stop(50%, transparent));
  -webkit-mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  mask-image: -webkit-gradient(linear, left top, right top, from(black), color-stop(50%, black), color-stop(50%, transparent));
  mask-image: linear-gradient(to right, black 0%, black 50%, transparent 50%);
  -webkit-mask-size: 200% 100%;
  mask-size: 200% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}
.keyvisual__line.is-visible {
  -webkit-animation: fadeInFromLeft 0.5s ease-in-out forwards;
          animation: fadeInFromLeft 0.5s ease-in-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@keyframes fadeInFromLeft {
  to {
    -webkit-mask-position: 0% 0;
    mask-position: 0% 0;
  }
}

.keyvisuallink {
  background: white;
  border-radius: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px 0 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  margin-top: 7px;
  margin-left: auto;
  height: 90px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 20px;
  border: thin solid white;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .keyvisuallink {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) {
  .keyvisuallink {
    /* gap: 20px;
    position: absolute;
    margin: 0;
    left: 50%;
    transform: translate(calc(-50% + 460px), 30px); */
    position: absolute;
    right: 0;
    gap: 20px;
    height: 52px;
    bottom: 115px;
    padding: 0 45px 0px 30px;
    margin-right: 10px;
  }
  .keyvisuallink:hover {
    background: -webkit-gradient(linear, right top, left top, from(#00349E), to(#0368C0));
    background: linear-gradient(270deg, #00349E 0%, #0368C0 100%);
    color: white;
  }
  .keyvisuallink:hover::after {
    background: url("../image/icon_arrow_white.svg") no-repeat center;
    background-size: contain;
  }
  .keyvisuallink:hover .keyvisuallink__date {
    color: white;
  }
}
.keyvisuallink.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
.keyvisuallink::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  width: 6px;
  height: 12px;
  background: url("../image/icon_arrow.svg") no-repeat center;
  background-size: contain;
  z-index: 10;
}
.keyvisuallink__date {
  color: #00349E;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}

.homesection {
  position: relative;
}
.homesection--backgroundyellow {
  position: relative;
}
@media screen and (max-width: 768px) {
  .homesection--backgroundyellow {
    padding-top: 200px;
    margin-top: -130px;
    padding-bottom: 210px;
  }
}
@media screen and (min-width: 768px) {
  .homesection--backgroundyellow {
    margin-top: -50px;
    padding-bottom: 900px;
  }
}
.homesection--backgroundyellow::before {
  z-index: -30;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .homesection--backgroundyellow::before {
    top: 0;
    height: 100%;
    background: url(../image/spbackground_yellow.svg) no-repeat center top;
    background-size: cover;
  }
}
@media screen and (min-width: 768px) {
  .homesection--backgroundyellow::before {
    top: -200px;
    height: calc(100% + 200px);
    background: url(../image/background_yellow.svg) no-repeat center top;
    background-size: cover;
    background-size: 2560px;
  }
}
.homesection--backgroundblue {
  position: relative;
}
@media screen and (max-width: 768px) {
  .homesection--backgroundblue {
    padding-top: 250px;
    margin-top: -240px;
    padding-bottom: 260px;
  }
}
@media screen and (min-width: 768px) {
  .homesection--backgroundblue {
    margin-top: -700px;
    padding-bottom: 444px;
  }
}
.homesection--backgroundblue::before {
  z-index: -20;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .homesection--backgroundblue::before {
    top: 0;
    background: url(../image/spbackground_blue.svg) no-repeat center top;
    background-size: cover;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .homesection--backgroundblue::before {
    background: url(../image/background_blue.svg) no-repeat center top;
    background-size: cover;
    top: -404px;
    left: 0;
    height: calc(100% + 404px);
  }
}
.homesection--backgroundred {
  position: relative;
}
@media screen and (max-width: 768px) {
  .homesection--backgroundred {
    padding-top: 120px;
    margin-top: -125px;
    padding-bottom: 100px;
  }
}
@media screen and (min-width: 768px) {
  .homesection--backgroundred {
    margin-top: -244px;
    padding-bottom: 120px;
  }
}
.homesection--backgroundred::before {
  z-index: -10;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .homesection--backgroundred::before {
    background: url(../image/spbackground_red.svg) no-repeat center top;
    background-size: cover;
    top: 0px;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .homesection--backgroundred::before {
    background: url(../image/background_red.svg) no-repeat center top;
    background-size: cover;
    top: -220px;
    height: calc(100% + 220px);
  }
}
.homesection__singlecontent {
  position: relative;
}
.homesection__rowcontent {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .homesection__rowcontent {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  .homesection__rowcontent--spreverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .homesection__rowcontent--wide {
    gap: 100px;
  }
}
@media screen and (max-width: 1080px) {
  .homesection__rowcontent--wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
}
.homesection__rowcontent--margin {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .homesection__rowcontent--margin {
    margin-top: 100px;
  }
}
.homesection__rowcontent--aligncenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .homesection__rowcontent--highgap {
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .homesection__rowcontent--narrowgap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
}
@media screen and (min-width: 1080px) {
  .homesection__rowcontent--narrowgap {
    gap: 40px;
  }
}
.homesection__inner {
  position: relative;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .homesection__inner {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 1228px;
    padding: 0 50px;
  }
}
.homesection__inner--news {
  padding: 0 50px 80px;
}
@media screen and (min-width: 768px) {
  .homesection__inner--news {
    padding: 96px;
    padding-top: 0;
    padding-left: 146px;
    padding-right: 146px;
    max-width: 1420px;
  }
}
.homesection__inner--news {
  position: relative;
}
.homesection__inner--news::before {
  content: "";
  position: absolute;
  bottom: 0;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  height: calc(100% - 30px);
  background: white;
  border-radius: 40px;
  width: calc(100% - 40px);
  left: 20px;
}
@media screen and (min-width: 768px) {
  .homesection__inner--news::before {
    width: calc(100% - 100px);
    left: 50px;
    border-radius: 100px;
  }
}
.homesection__inner + .homesection__inner {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .homesection__inner + .homesection__inner {
    margin-top: 140px;
  }
}
.homesection__inner + .homesection__inner--highmargin {
  margin-top: 125px;
}
@media screen and (min-width: 768px) {
  .homesection__inner + .homesection__inner--highmargin {
    margin-top: 350px;
  }
}
.homesection__inner + .homesection__inner--news {
  margin-top: 100px;
}
@media screen and (min-width: 768px) {
  .homesection__inner + .homesection__inner--news {
    margin-top: 120px;
  }
}
.homesection__block {
  position: relative;
  z-index: 1;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.homesection__block--overview {
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  width: 360px;
}
.homesection__heading {
  position: relative;
}
.homesection__mainheading {
  font-weight: 500;
  font-size: var(--font-h4);
  color: #00349E;
  letter-spacing: 0.05em;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .homesection__mainheading {
    margin-top: 30px;
  }
}
.homesection__mainheading--overview {
  color: white;
}
.homesection__subheading {
  font-family: "Forum", sans-serif;
  line-height: 65px;
  display: table;
  border-bottom: solid 4px #5EF383;
  letter-spacing: 0.05em;
  color: #00349E;
  font-size: 64px;
  padding-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .homesection__subheading {
    padding-bottom: 5px;
    font-size: 88px;
  }
}
.homesection__subheading--news {
  border-color: #F55669;
}
.homesection__subheading--overview {
  color: white;
  border-color: #FED945;
}
.homesection__subheading--map {
  border-color: white;
}
.homesection__figure + .homesection__figure {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .homesection__figure + .homesection__figure {
    margin-top: 40px;
  }
}
.homesection__figure--line {
  margin-top: 40px;
}
.homesection__figure--margin {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .homesection__figure--margin {
    margin-top: 60px;
  }
}
.homesection__figure--highmargin {
  margin-top: 80px;
}
.homesection__figurelink {
  display: block;
}
@media screen and (min-width: 768px) {
  .homesection__figurelink:hover {
    opacity: 0.8 !important;
  }
}
.homesection__image {
  border-radius: 25px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .homesection__image {
    border-radius: 40px;
  }
}
@media screen and (min-width: 1080px) {
  .homesection__image {
    border-radius: 60px;
  }
}
.homesection__image--noround {
  border-radius: 0;
}
.homesection__figcaption {
  line-height: 170%;
  font-size: var(--font-h7);
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .homesection__figcaption {
    margin-top: 20px;
  }
}
.homesection__title {
  line-height: 170%;
  font-size: var(--font-h3);
  color: var(--color-black);
  font-weight: 500;
}
.homesection__title--catchcopy {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .homesection__title--catchcopy {
    padding-top: 30px;
  }
}
.homesection__emphasis {
  font-weight: 500;
  color: #00349E;
  font-size: 110%;
}
.homesection__bracket {
  font-size: 85%;
}
.homesection__text {
  margin-top: 40px;
}
.homesection__text--catchcopy {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .homesection__text--catchcopy {
    margin-top: 40px;
  }
}
.homesection__paragraph {
  font-size: var(--font-h5);
  line-height: 200%;
  letter-spacing: 0.05em;
}
.homesection__paragraph--catchcopy {
  line-height: 200%;
}
@media screen and (min-width: 768px) {
  .homesection__paragraph--catchcopy {
    line-height: 240%;
  }
}

.normalbutton {
  background: white;
  border-radius: 40px;
  padding: 20px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #00349E;
  border: thin solid #FFFFFF;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  width: 100%;
  height: 70px;
  max-width: 440px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .normalbutton {
    width: 440px;
    height: 80px;
  }
  .normalbutton:hover {
    background: #00349E;
    background: -webkit-gradient(linear, right top, left top, from(#00349E), to(#0368C0));
    background: linear-gradient(270deg, #00349E 0%, #0368C0 100%);
    color: white;
  }
}
.normalbutton--external {
  position: relative;
}
.normalbutton--external::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../image/icon_external.svg") no-repeat center;
  background-size: contain;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .normalbutton--external:hover::after {
    background: url("../image/icon_external_white.svg") no-repeat center;
  }
}
.normalbutton__wrapper {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .normalbutton__wrapper {
    margin-top: 80px;
  }
}

.circles {
  height: 646px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .circles {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .circles {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    min-width: 1128px;
    height: 630px;
  }
}
@media screen and (min-width: 1080px) {
  .circles {
    height: 696px;
  }
}
.circles__item {
  position: absolute;
  opacity: 0;
  margin-top: 50px;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}
.circles__item.is-visible {
  opacity: 1;
  margin-top: 0;
}
.circles__item--1 {
  width: 217px;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .circles__item--1 {
    -webkit-transform: translateX(calc(-50% - 108px));
            transform: translateX(calc(-50% - 108px));
  }
}
@media screen and (min-width: 768px) {
  .circles__item--1 {
    width: 234px;
    left: 650px;
  }
}
@media screen and (min-width: 1080px) {
  .circles__item--1 {
    top: 50px;
    width: 314px;
    left: 453px;
  }
}
.circles__item--2 {
  width: 313px;
  top: 172px;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .circles__item--2 {
    -webkit-transform: translateX(calc(-50% + 63px));
            transform: translateX(calc(-50% + 63px));
  }
}
@media screen and (min-width: 768px) {
  .circles__item--2 {
    width: 383px;
    top: 150px;
    left: 827px;
  }
}
@media screen and (min-width: 1080px) {
  .circles__item--2 {
    width: 453px;
    top: 117px;
    left: 777px;
  }
}
.circles__item--3 {
  width: 189px;
  left: 50%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .circles__item--3 {
    -webkit-transform: translateX(calc(-50% - 75px));
            transform: translateX(calc(-50% - 75px));
  }
}
@media screen and (min-width: 768px) {
  .circles__item--3 {
    width: 200px;
    top: auto;
    left: 620px;
  }
}
@media screen and (min-width: 1080px) {
  .circles__item--3 {
    width: 274px;
    top: auto;
    left: 541px;
  }
}
.circles__image {
  border-radius: 500px;
  width: 100%;
}

.newscontent {
  margin-top: 60px;
}
@media screen and (min-width: 1280px) {
  .newscontent {
    margin-top: 80px;
  }
}
.newscontent__item {
  border-top: thin solid #DDDDDD;
  position: relative;
}
.newscontent__item:last-child {
  border-bottom: thin solid #DDDDDD;
}
.newscontent__item::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 12px;
  background: url("../image/icon_arrow.svg") no-repeat center;
  background-size: contain;
  z-index: 10;
  right: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1280px) {
  .newscontent__item::after {
    right: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .newscontent__item:hover::after {
    right: 30px;
  }
  .newscontent__item:hover .newscontent__header, .newscontent__item:hover .newscontent__body {
    opacity: 0.5;
  }
}
.newscontent__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 32px 36px 32px 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 1280px) {
  .newscontent__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 40px;
  }
}
.newscontent__header {
  font-size: var(--font-h5);
  padding-right: 20px;
  color: #00349E;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (min-width: 1280px) {
  .newscontent__header {
    width: 130px;
  }
}
.newscontent__body {
  font-weight: 500;
  font-size: var(--font-h5);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1280px) {
  .newscontent__body {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    line-height: 170%;
    margin-top: 20px;
  }
}

.overviewcontent {
  position: relative;
  z-index: 330;
  margin-top: 60px;
}
@media screen and (min-width: 1080px) {
  .overviewcontent {
    margin-top: 100px;
  }
}
.overviewcontent__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: thin solid white;
  padding: 27px 10px 27px 0;
}
@media screen and (min-width: 1080px) {
  .overviewcontent__item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 40px 10px 40px 0;
  }
}
.overviewcontent__item:last-child {
  border-bottom: thin solid white;
}
.overviewcontent__header {
  font-weight: 500;
  color: white;
  font-size: var(--font-h5);
  width: 80px;
}
@media screen and (max-width: 1080px) {
  .overviewcontent__header {
    line-height: 170%;
  }
}
@media screen and (min-width: 1080px) {
  .overviewcontent__header {
    width: 110px;
  }
}
.overviewcontent__body {
  font-size: var(--font-h5);
  color: white;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1080px) {
  .overviewcontent__body {
    line-height: 170%;
  }
}
.overviewcontent__subtext {
  font-size: 12px;
}

.mapcontent {
  display: block;
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .mapcontent {
    margin-top: 100px;
  }
}
.mapcontent__image {
  width: 100%;
  border-radius: 25px;
}
@media screen and (min-width: 768px) {
  .mapcontent__image {
    border-radius: 100px;
  }
}

.circle {
  position: absolute;
  left: 50%;
  margin-top: 50px;
  opacity: 0;
  -webkit-transition: 0.7s ease;
  transition: 0.7s ease;
}
.circle.is-visible {
  opacity: 1;
  margin-top: 0;
}
.circle span {
  background: -webkit-gradient(linear, left top, left bottom, from(#F55669), to(#FED945));
  background: linear-gradient(180deg, #F55669 0%, #FED945 100%);
  width: 100%;
  height: 100%;
  display: block;
}
.circle--no1 {
  width: 84px;
  height: 84px;
  top: -150px;
  -webkit-transform: translateX(calc(-50% + -125px + -42px));
          transform: translateX(calc(-50% + -125px + -42px));
  z-index: -10;
}
.circle--no1 span {
  border-radius: 42px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .circle--no1 {
    width: 120px;
    height: 120px;
    top: -220px;
    -webkit-transform: translateX(calc(-50% + -560px + -60px));
            transform: translateX(calc(-50% + -560px + -60px));
    z-index: -10;
  }
  .circle--no1 span {
    border-radius: 60px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.circle--no1 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#5EF383), to(#55F0F5));
  background: linear-gradient(180deg, #5EF383 0%, #55F0F5 100%);
}
.circle--no2 {
  width: 140px;
  height: 140px;
  top: 433px;
  -webkit-transform: translateX(calc(-50% + 125px + 70px));
          transform: translateX(calc(-50% + 125px + 70px));
  z-index: -10;
}
.circle--no2 span {
  border-radius: 70px;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}
@media screen and (min-width: 768px) {
  .circle--no2 {
    width: 200px;
    height: 200px;
    top: 405px;
    -webkit-transform: translateX(calc(-50% + -620px + -100px));
            transform: translateX(calc(-50% + -620px + -100px));
    z-index: -10;
  }
  .circle--no2 span {
    border-radius: 100px;
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}
.circle--no3 {
  width: 84px;
  height: 84px;
  top: 565px;
  -webkit-transform: translateX(calc(-50% + 55px + 42px));
          transform: translateX(calc(-50% + 55px + 42px));
  z-index: -10;
}
.circle--no3 span {
  border-radius: 42px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .circle--no3 {
    width: 120px;
    height: 120px;
    top: 605px;
    -webkit-transform: translateX(calc(-50% + -410px + -60px));
            transform: translateX(calc(-50% + -410px + -60px));
    z-index: 10;
  }
  .circle--no3 span {
    border-radius: 60px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.circle--no3 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#0270C5), to(#8BD1FF));
  background: linear-gradient(180deg, #0270C5 0%, #8BD1FF 100%);
}
.circle--no4 {
  width: 123px;
  height: 123px;
  top: 825px;
  -webkit-transform: translateX(calc(-50% + -145px + -61.5px));
          transform: translateX(calc(-50% + -145px + -61.5px));
  z-index: -10;
}
.circle--no4 span {
  border-radius: 61.5px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
@media screen and (min-width: 768px) {
  .circle--no4 {
    width: 176px;
    height: 176px;
    top: 163px;
    -webkit-transform: translateX(calc(-50% + -500px + -88px));
            transform: translateX(calc(-50% + -500px + -88px));
    z-index: -10;
  }
  .circle--no4 span {
    border-radius: 88px;
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
}
.circle--no5 {
  width: 252px;
  height: 252px;
  top: -210px;
  -webkit-transform: translateX(calc(-50% + 75px + 126px));
          transform: translateX(calc(-50% + 75px + 126px));
  z-index: -10;
}
.circle--no5 span {
  border-radius: 126px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .circle--no5 {
    width: 360px;
    height: 360px;
    top: 580px;
    -webkit-transform: translateX(calc(-50% + -510px + -180px));
            transform: translateX(calc(-50% + -510px + -180px));
    z-index: -10;
  }
  .circle--no5 span {
    border-radius: 180px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.circle--no5 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#0270C5), to(#8BD1FF));
  background: linear-gradient(180deg, #0270C5 0%, #8BD1FF 100%);
}
.circle--no6 {
  width: 758px;
  height: 758px;
  top: 175px;
  -webkit-transform: translateX(calc(-50% + -270px + 379px));
          transform: translateX(calc(-50% + -270px + 379px));
  z-index: -10;
}
.circle--no6 span {
  border-radius: 379px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .circle--no6 {
    width: 1147px;
    height: 1147px;
    top: -125px;
    -webkit-transform: translateX(calc(-50% + -225px + 573.5px));
            transform: translateX(calc(-50% + -225px + 573.5px));
    z-index: -10;
  }
  .circle--no6 span {
    border-radius: 573.5px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.circle--no6 span {
  background: linear-gradient(135deg, #5EF383 15.11%, #55F0F5 86.24%);
}
.circle--no7 {
  width: 778px;
  height: 778px;
  top: 55px;
  -webkit-transform: translateX(calc(-50% + 270px + -389px));
          transform: translateX(calc(-50% + 270px + -389px));
  z-index: -10;
}
.circle--no7 span {
  border-radius: 389px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (min-width: 768px) {
  .circle--no7 {
    width: 881px;
    height: 881px;
    top: -130px;
    -webkit-transform: translateX(calc(-50% + 130px + -440.5px));
            transform: translateX(calc(-50% + 130px + -440.5px));
    z-index: -10;
  }
  .circle--no7 span {
    border-radius: 440.5px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
}
.circle--no7 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#5EF383), to(#55F0F5));
  background: linear-gradient(180deg, #5EF383 0%, #55F0F5 100%);
}
.circle--no8 {
  width: 140px;
  height: 140px;
  top: -165px;
  -webkit-transform: translateX(calc(-50% + 70px + 70px));
          transform: translateX(calc(-50% + 70px + 70px));
  z-index: -10;
}
.circle--no8 span {
  border-radius: 70px;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}
@media screen and (min-width: 768px) {
  .circle--no8 {
    width: 200px;
    height: 200px;
    top: 175px;
    -webkit-transform: translateX(calc(-50% + 600px + 100px));
            transform: translateX(calc(-50% + 600px + 100px));
    z-index: -10;
  }
  .circle--no8 span {
    border-radius: 100px;
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}
.circle--no9 {
  width: 123px;
  height: 123px;
  top: 100px;
  -webkit-transform: translateX(calc(-50% + 135px + 61.5px));
          transform: translateX(calc(-50% + 135px + 61.5px));
  z-index: -10;
}
.circle--no9 span {
  border-radius: 61.5px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media screen and (min-width: 768px) {
  .circle--no9 {
    width: 176px;
    height: 176px;
    top: -75px;
    -webkit-transform: translateX(calc(-50% + 460px + 88px));
            transform: translateX(calc(-50% + 460px + 88px));
    z-index: -10;
  }
  .circle--no9 span {
    border-radius: 88px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.circle--no9 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#0270C5), to(#8BD1FF));
  background: linear-gradient(180deg, #0270C5 0%, #8BD1FF 100%);
}
.circle--no10 {
  width: 84px;
  height: 84px;
  top: -140px;
  -webkit-transform: translateX(calc(-50% + -65px + -42px));
          transform: translateX(calc(-50% + -65px + -42px));
  z-index: -10;
}
.circle--no10 span {
  border-radius: 42px;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
@media screen and (min-width: 768px) {
  .circle--no10 {
    width: 120px;
    height: 120px;
    top: -135px;
    -webkit-transform: translateX(calc(-50% + 430px + 60px));
            transform: translateX(calc(-50% + 430px + 60px));
    z-index: -10;
  }
  .circle--no10 span {
    border-radius: 60px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
}
.circle--no11 {
  width: 252px;
  height: 252px;
  top: 75px;
  -webkit-transform: translateX(calc(-50% + 85px + 126px));
          transform: translateX(calc(-50% + 85px + 126px));
  z-index: -10;
}
.circle--no11 span {
  border-radius: 126px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .circle--no11 {
    width: 360px;
    height: 360px;
    top: -40px;
    -webkit-transform: translateX(calc(-50% + 590px + 180px));
            transform: translateX(calc(-50% + 590px + 180px));
    z-index: -10;
  }
  .circle--no11 span {
    border-radius: 180px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.circle--no11 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#5EF383), to(#55F0F5));
  background: linear-gradient(180deg, #5EF383 0%, #55F0F5 100%);
}
.circle--no12 {
  width: 123px;
  height: 123px;
  top: 395px;
  -webkit-transform: translateX(calc(-50% + -135px + -61.5px));
          transform: translateX(calc(-50% + -135px + -61.5px));
  z-index: -10;
}
.circle--no12 span {
  border-radius: 61.5px;
  -webkit-transform: rotate(255deg);
          transform: rotate(255deg);
}
@media screen and (min-width: 768px) {
  .circle--no12 {
    width: 120px;
    height: 120px;
    top: 325px;
    -webkit-transform: translateX(calc(-50% + -625px + -60px));
            transform: translateX(calc(-50% + -625px + -60px));
    z-index: -10;
  }
  .circle--no12 span {
    border-radius: 60px;
    -webkit-transform: rotate(255deg);
            transform: rotate(255deg);
  }
}
.circle--no12 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#5EF383), to(#55F0F5));
  background: linear-gradient(180deg, #5EF383 0%, #55F0F5 100%);
}
.circle--no13 {
  width: 185px;
  height: 185px;
  top: -90px;
  -webkit-transform: translateX(calc(-50% + 30px + 92.5px));
          transform: translateX(calc(-50% + 30px + 92.5px));
  z-index: 0;
}
.circle--no13 span {
  border-radius: 92.5px;
  -webkit-transform: rotate(-315deg);
          transform: rotate(-315deg);
}
@media screen and (min-width: 768px) {
  .circle--no13 {
    width: 264px;
    height: 264px;
    top: 490px;
    -webkit-transform: translateX(calc(-50% + -370px + -132px));
            transform: translateX(calc(-50% + -370px + -132px));
    z-index: 0;
  }
  .circle--no13 span {
    border-radius: 132px;
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
  }
}
.circle--no14 {
  width: 84px;
  height: 84px;
  top: -235px;
  -webkit-transform: translateX(calc(-50% + -30px + -42px));
          transform: translateX(calc(-50% + -30px + -42px));
  z-index: -10;
}
.circle--no14 span {
  border-radius: 42px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .circle--no14 {
    width: 176px;
    height: 176px;
    top: 630px;
    -webkit-transform: translateX(calc(-50% + 470px + 88px));
            transform: translateX(calc(-50% + 470px + 88px));
    z-index: -10;
  }
  .circle--no14 span {
    border-radius: 88px;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}
.circle--no14 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#5EF383), to(#55F0F5));
  background: linear-gradient(180deg, #5EF383 0%, #55F0F5 100%);
}
.circle--no15 {
  width: 84px;
  height: 84px;
  top: 0px;
  -webkit-transform: translateX(calc(-50% + 0px + -42px));
          transform: translateX(calc(-50% + 0px + -42px));
  z-index: -10;
}
.circle--no15 span {
  border-radius: 42px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
}
@media screen and (min-width: 768px) {
  .circle--no15 {
    width: 120px;
    height: 120px;
    top: 320px;
    -webkit-transform: translateX(calc(-50% + -680px + -60px));
            transform: translateX(calc(-50% + -680px + -60px));
    z-index: -10;
  }
  .circle--no15 span {
    border-radius: 60px;
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
  }
}
.circle--no15 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#0270C5), to(#8BD1FF));
  background: linear-gradient(180deg, #0270C5 0%, #8BD1FF 100%);
}
.circle--no16 {
  width: 84px;
  height: 84px;
  top: 150px;
  -webkit-transform: translateX(calc(-50% + -10px + 42px));
          transform: translateX(calc(-50% + -10px + 42px));
  z-index: -10;
}
.circle--no16 span {
  border-radius: 42px;
  -webkit-transform: rotate(290deg);
          transform: rotate(290deg);
}
@media screen and (min-width: 768px) {
  .circle--no16 {
    width: 360px;
    height: 360px;
    top: 535px;
    -webkit-transform: translateX(calc(-50% + 520px + 180px));
            transform: translateX(calc(-50% + 520px + 180px));
    z-index: -10;
  }
  .circle--no16 span {
    border-radius: 180px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.circle--no16 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#0270C5), to(#8BD1FF));
  background: linear-gradient(180deg, #0270C5 0%, #8BD1FF 100%);
}
.circle--no17 {
  width: 140px;
  height: 140px;
  top: 540px;
  -webkit-transform: translateX(calc(-50% + -85px + -70px));
          transform: translateX(calc(-50% + -85px + -70px));
  z-index: -10;
}
.circle--no17 span {
  border-radius: 70px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (min-width: 768px) {
  .circle--no17 {
    width: 200px;
    height: 200px;
    top: 830px;
    -webkit-transform: translateX(calc(-50% + -460px + -100px));
            transform: translateX(calc(-50% + -460px + -100px));
    z-index: -10;
  }
  .circle--no17 span {
    border-radius: 100px;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
}
.circle--no17 span {
  background: -webkit-gradient(linear, left top, left bottom, from(#5EF383), to(#55F0F5));
  background: linear-gradient(180deg, #5EF383 0%, #55F0F5 100%);
}

.js-fadein {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
}
.js-fadein.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}/*# sourceMappingURL=base.css.map */