@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:wght@400;500;700&display=swap");
body {
  background: #fff;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  font-weight: 400;
}
body.fixed {
  position: fixed;
}

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

a {
  display: inline-block;
}
a img {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: 0.7;
}
@media only screen and (max-width: 767px) {
  a img {
    -webkit-transition: none;
    transition: none;
  }
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    opacity: 1;
  }
}

.pc-view {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc-view {
    display: none;
  }
}

.sp-view {
  display: none;
}
@media only screen and (max-width: 767px) {
  .sp-view {
    display: block;
  }
}

.wrap {
  padding-top: 135px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .wrap {
    padding-top: 80px;
  }
}

section {
  position: relative;
  overflow: hidden;
}

.section__object {
  font-family: "Roboto", sans-serif;
  color: #fff;
  -webkit-text-stroke: 4px #EBF4F7;
  font-size: 160px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -4px;
  white-space: nowrap;
  text-transform: uppercase;
  position: absolute;
  top: -20px;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  opacity: 0;
}
.section__object.left {
  left: -10px;
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
}
.section__object.right {
  right: -10px;
  -webkit-transform: translateX(40px);
  transform: translateX(40px);
}
.section__object.show {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.section__object.center {
  left: 50%;
  -webkit-transform: translateX(calc(-50% - 40px));
  transform: translateX(calc(-50% - 40px));
}
.section__object.center.show {
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section__inner {
  max-width: 1128px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
}
#top .section__inner {
  max-width: 1248px;
}
.section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.section__title small {
  display: block;
  font-family: "Roboto", sans-serif;
  color: #13ACED;
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  .section__object {
    -webkit-text-stroke: 2px #EBF4F7;
    font-size: 120px;
    letter-spacing: -2px;
    top: -14px;
  }
  .section__object.left {
    left: -6px;
  }
  #top .section__object.left {
    left: -6px;
  }
  .section__object.right {
    right: -6px;
  }
  #top .section__object.right {
    right: auto;
    left: -6px;
  }
  .section__object.center {
    left: -6px;
    -webkit-transform: translateX(-40px);
    transform: translateX(-40px);
  }
  .section__object.center.show {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .section__inner {
    padding: 80px 6.1538461538%;
  }
}

.btn-blue {
  background: url("/static/img/icon/arrow_white.svg") no-repeat 50% 50%;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #245B73;
  min-width: 100%;
  min-height: 64px;
  padding: 8px 40px;
  border-radius: 64px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  position: relative;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.btn-blue:after {
  content: "";
  display: block;
  background: url("/static/img/icon/arrow_white.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  pointer-events: none;
}
.btn-blue:hover {
  background: #fff;
  border: 1px solid #245B73;
  color: #245B73;
  text-decoration: none;
}
.btn-blue:hover:after {
  background: url("/static/img/icon/arrow_blue.svg") no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
.btn-white {
  background: url("/static/img/icon/arrow_blue.svg") no-repeat 50% 50%;
  background-size: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  min-width: 100%;
  min-height: 64px;
  padding: 8px 40px;
  border-radius: 64px;
  color: #245B73;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #245B73;
  position: relative;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.btn-white:after {
  content: "";
  display: block;
  background: url("/static/img/icon/arrow_blue.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  pointer-events: none;
}
.btn-white:hover {
  background: #245B73;
  border: 1px solid transparent;
  color: #fff;
  text-decoration: none;
}
.btn-white:hover:after {
  background: url("/static/img/icon/arrow_white.svg") no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
@media only screen and (max-width: 767px) {
  .btn-blue {
    -webkit-transition: none;
    transition: none;
  }
  .btn-blue:after {
    -webkit-transition: none;
    transition: none;
  }
  .btn-blue:hover {
    background: #245B73;
    border: 1px solid transparent;
    color: #fff;
  }
  .btn-blue:hover:after {
    background: url("/static/img/icon/arrow_white.svg") no-repeat 50% 50%;
    background-size: contain;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .btn-white {
    -webkit-transition: none;
    transition: none;
  }
  .btn-white:after {
    -webkit-transition: none;
    transition: none;
  }
  .btn-white:hover {
    background: #fff;
    border: 1px solid #245B73;
    color: #245B73;
  }
  .btn-white:hover:after {
    background: url("/static/img/icon/arrow_blue.svg") no-repeat 50% 50%;
    background-size: contain;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: 10px 24px;
  position: fixed;
  top: 0;
  z-index: 9999;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
.header__logo {
  width: 190px;
}
.header__nav {
  width: calc(100% - 190px);
}
.header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-bottom: 36px;
}
.header__lang li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1;
}
.header__lang li.selected a {
  text-decoration: underline;
}
.header__lang li:nth-of-type(n+2):before {
  content: "/";
  padding: 0 6px;
}
.header__menu__btn {
  display: none;
}
.header__menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  width: 100%;
}
.header__menu__list li {
  margin-left: 32px;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  position: relative;
}
.header__menu__list li:has(a[target=_blank]) {
  padding-right: 24px;
  position: relative;
}
.header__menu__list li:has(a[target=_blank]):after {
  content: "";
  display: block;
  background: url("/static/img/icon/window.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 16px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.header__menu__list li a {
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.header__menu__list li a:after {
  content: "";
  background: #13ACED;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  margin: auto;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
}
.header__menu__list li a:hover {
  text-decoration: none;
}
.header__menu__list li.selected a:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
@media only screen and (max-width: 1038px) and (min-width: 768px) {
  .header .header {
    padding: 0.9633911368% 2.3121387283%;
  }
  .header .header__logo {
    width: 19.66873706%;
  }
  .header .header__lang {
    margin-bottom: 4.5%;
  }
  .header .header__lang li {
    font-size: 1.5414258189vw;
  }
  .header .header__menu__list li {
    margin-left: 4%;
    font-size: 1.5414258189vw;
  }
  .header .header__menu__list li:has(a[target=_blank]) {
    padding-right: 3%;
  }
  .header .header__menu__list li:has(a[target=_blank]):after {
    width: 18.1818181818%;
  }
}
@media only screen and (max-width: 767px) {
  .header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 80px;
    padding: 0 0 10px;
  }
  .header.open .header__menu {
    display: block;
  }
  .header__logo {
    width: 116px;
  }
  .header__nav {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .header__lang {
    margin-bottom: 0;
    position: absolute;
    top: 20px;
    right: 15px;
  }
  .header__lang li {
    font-size: 16px;
  }
  .header__menu {
    background: #13ACED;
    width: 100%;
    max-height: calc(100dvh - 80px);
    position: absolute;
    top: 80px;
    left: -100%;
    z-index: 1000;
    overflow-y: scroll;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
    -webkit-transition: left 0.4s ease;
    transition: left 0.4s ease;
  }
  .open .header__menu {
    left: 0;
  }
  .header__menu::-webkit-scrollbar {
    display: none;
  }
  .header__menu__btn {
    display: block;
    width: 32px;
    height: 32px;
    position: absolute;
    top: 14px;
    left: 16px;
    cursor: pointer;
  }
  .header__menu__btn span {
    background: #333;
    display: block;
    width: 30px;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    left: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  .header__menu__btn span:nth-of-type(1) {
    top: 6px;
  }
  .header__menu__btn span:nth-of-type(2) {
    top: 15px;
    opacity: 1;
  }
  .header__menu__btn span:nth-of-type(3) {
    top: 25px;
  }
  .open .header__menu__btn span:nth-of-type(1) {
    top: 15px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .open .header__menu__btn span:nth-of-type(2) {
    opacity: 0;
  }
  .open .header__menu__btn span:nth-of-type(3) {
    top: 15px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .header__menu__list {
    display: block;
    margin-bottom: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header__menu__list li {
    width: 100%;
    margin-left: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .header__menu__list li:has(a[target=_blank]) {
    padding-right: 0;
  }
  .header__menu__list li:has(a[target=_blank]):after {
    display: none;
  }
  .header__menu__list li:has(a[target=_blank]) a:after {
    background: url("/static/img/icon/window_white.svg") no-repeat 50% 50%;
    background-size: contain;
  }
  .header__menu__list li a {
    display: block;
    padding: 32px 48px 32px 28px;
    position: relative;
  }
  .header__menu__list li a:after {
    content: "";
    display: block;
    background: url("/static/img/icon/arrow_thin_white.svg") no-repeat 50% 50%;
    background-size: contain;
    width: 24px;
    height: 24px;
    border-radius: none;
    position: absolute;
    top: 0;
    left: auto;
    right: 16px;
    bottom: 0;
    margin: auto;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
  .header__menu__list li a:hover {
    opacity: 1;
  }
  .header__menu__link {
    margin-bottom: 32px;
    padding: 0 28px;
  }
  .header__menu__link li {
    margin-bottom: 24px;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    text-align: center;
  }
  .header__menu__sns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 32px;
    padding: 0 28px;
  }
  .header__menu__sns li {
    width: 24px;
    margin: 0 16px;
  }
  .header__menu__copy {
    background: #fff;
    padding: 10px 28px 23px;
    text-align: center;
  }
  .header__menu__copy p {
    background: url("/static/img/icon/animocabrand.svg") no-repeat 0 50%;
    background-size: 8px auto;
    display: inline-block;
    padding-left: 11px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    position: relative;
  }
  .header__menu__copy p:after {
    content: "";
    background: #000;
    display: block;
    width: calc(100% + 20px);
    height: 5px;
    border-radius: 5px;
    position: absolute;
    left: -10px;
    bottom: -15px;
  }
}

.footer {
  background: #062532;
  padding: 40px 24px;
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}
.footer__link li {
  margin: 0 16px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 24px;
}
.footer__sns li {
  width: 24px;
  margin: 0 16px;
}
.footer__copy p {
  color: #fff;
  font-size: 10px;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer {
    padding: 40px 6.1538461538%;
  }
  .footer__link {
    display: block;
  }
  .footer__link li {
    margin: 0 0 24px;
    text-align: center;
  }
  .footer__copy p {
    font-size: 12px;
  }
}

.error__text {
  margin: 92px auto;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.error__btn {
  max-width: 320px;
  margin: 0 auto;
}
#top section:nth-of-type(even) {
  background: #fff;
}
#top section:nth-of-type(even) .section__object {
  color: #fff;
  -webkit-text-stroke: 4px #EBF4F7;
}
#top section:nth-of-type(odd) {
  background: #EBF4F7;
}
#top section:nth-of-type(odd) .section__object {
  color: #EBF4F7;
  -webkit-text-stroke: 4px #fff;
}
@media only screen and (max-width: 767px) {
  #top section:nth-of-type(even) .section__object {
    -webkit-text-stroke: 2px #EBF4F7;
  }
  #top section:nth-of-type(odd) .section__object {
    -webkit-text-stroke: 2px #fff;
  }
}
#top-visual .section__object {
  color: #13ACED !important;
  -webkit-text-stroke: 0px !important;
  top: -22px;
}
#top-visual .section__inner {
  padding: 130px 24px 80px;
}
#top-visual .visual {
  padding-top: 56.25%;
  position: relative;
}
#top-visual .visual img, #top-visual .visual video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#top-visual .visual__bottom {
  background: #13ACED;
  position: relative;
  overflow: hidden;
}
#top-visual .visual__bottom:before {
  content: "";
  background: url("/static/img/top/Philosophy/bg.svg") no-repeat 50% 50%;
  background-size: contain;
  display: block;
  width: 1626px;
  height: 519px;
  position: absolute;
  top: -172px;
  right: -186px;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: translateX(-80px);
  transform: translateX(-80px);
  opacity: 0;
}
#top-visual .visual__bottom.show:before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
  opacity: 0.9;
}
#top-visual .visual__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#top-visual .visual__box .section__title {
  width: 43.3333333333%;
  color: #fff;
  text-align: left;
}
#top-visual .visual__box .section__title small {
  margin-bottom: 16px;
  color: #fff;
}
@media only screen and (max-width: 1248px) {
  #top-visual .visual__box .section__title {
    font-size: 3.2051282051vw;
  }
}
#top-visual .visual__box p {
  width: 48.6666666667%;
  margin-top: 56px;
  color: #fff;
  font-size: 18px;
  line-height: 2;
}
@media only screen and (max-width: 767px) {
  #top-visual .section__object {
    font-size: 60px;
    top: -8px;
    left: -4px;
  }
  #top-visual .section__inner {
    padding: 80px 6.1538461538%;
  }
  #top-visual .visual__bottom:before {
    width: 217.1794871795%;
    top: -28.2051282051%;
    right: auto;
    left: -99.4871794872%;
  }
  #top-visual .visual__box {
    display: block;
  }
  #top-visual .visual__box .section__title {
    width: 100%;
    font-size: 26px;
  }
  #top-visual .visual__box .section__title small {
    margin-bottom: 8px;
    font-size: 18px;
  }
  #top-visual .visual__box p {
    width: 100%;
    margin-top: 24px;
  }
}
#top-news .section__inner {
  max-width: 1128px;
}
#top-news .news__list {
  margin-top: 92px;
  border-top: 1px solid #E2E9EC;
}
#top-news .news__list li {
  background: url("/static/img/icon/arrow_thin.svg") no-repeat 100% 50%;
  background-size: 24px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 64px 32px 0;
  border-bottom: 1px solid #E2E9EC;
  position: relative;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
#top-news .news__list li:hover {
  background: url("/static/img/icon/arrow_thin.svg") no-repeat calc(100% + 8px) 50%;
}
#top-news .news__list li:hover time,
#top-news .news__list li:hover span,
#top-news .news__list li:hover h3 {
  opacity: 0.7;
}
#top-news .news__list li .news__list__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#top-news .news__list li time {
  width: 136px;
  font-family: "Roboto", sans-serif;
  color: #6F92A0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#top-news .news__list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 186px;
  height: 28px;
  margin-right: 40px;
  padding: 4px 8px;
  color: #0D7CAB;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid #0D7CAB;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#top-news .news__list li h3 {
  width: calc(100% - 362px);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#top-news .news__list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#top-news .news__more {
  max-width: 320px;
  margin: 92px auto 0;
}
@media only screen and (max-width: 767px) {
  #top-news .news__list {
    margin: 32px -7.0175438596% 0;
  }
  #top-news .news__list li {
    background: url("/static/img/icon/arrow_thin.svg") no-repeat calc(100% - 24px) 50%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 32px 64px 32px 6.1538461538%;
    border-bottom: 1px solid #E2E9EC;
    -webkit-transition: none;
    transition: none;
  }
  #top-news .news__list li:hover {
    background: url("/static/img/icon/arrow_thin.svg") no-repeat calc(100% - 24px) 50%;
  }
  #top-news .news__list li:hover time,
  #top-news .news__list li:hover span,
  #top-news .news__list li:hover h3 {
    -webkit-transition: none;
    transition: none;
    opacity: 1;
  }
  #top-news .news__list li time {
    width: 105px;
  }
  #top-news .news__list li span {
    margin-right: 0;
  }
  #top-news .news__list li h3 {
    display: block;
    width: 100%;
    margin-top: 10px;
    overflow: inherit;
    line-height: 1.6;
  }
  #top-news .news__more {
    max-width: 93.567251462%;
    margin: 32px auto 0;
  }
}
#top-services .services__lead {
  margin-top: 24px;
  font-size: 22px;
  line-height: 1.6;
  text-align: center;
}
#top-services .services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 32px;
}
#top-services .services__list li {
  background: #fff;
  width: 31.5833333333%;
  padding: 0 24px 112px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
#top-services .services__list__img {
  width: 100%;
  padding-top: 72.5075528701%;
  margin: 0 auto;
  position: relative;
}
#top-services .services__list__img img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#top-services .services__list__img.ip img {
  width: 52.8700906344%;
}
#top-services .services__list__img.advisory img {
  width: 48.3383685801%;
}
#top-services .services__list__img.validator img {
  width: 47.1299093656%;
}
#top-services .services__list__title {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 1247px) and (min-width: 768px) {
  #top-services .services__list__title {
    font-size: 2.2453889334vw;
  }
}
#top-services .services__list__text {
  font-size: 18px;
  line-height: 1.8;
}
#top-services .services__list__link {
  width: 100%;
  padding: 0 24px 24px;
  position: absolute;
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 960px) and (min-width: 768px) {
  #top-services .services__list__link .btn-white {
    font-size: 1.6666666667vw;
  }
}
#top-services .services__more {
  max-width: 320px;
  margin: 32px auto 0;
}
@media only screen and (max-width: 767px) {
  #top-services .services__lead {
    text-align: left;
  }
  #top-services .services__list {
    display: block;
    margin-top: 0;
  }
  #top-services .services__list li {
    width: 100%;
    margin-top: 32px;
  }
  #top-services .services__list li .section__title-sub {
    margin-bottom: 8px;
    line-height: 2;
    text-align: center;
  }
  #top-services .services__list__img {
    width: 100%;
    padding-top: 55.7823129252%;
  }
  #top-services .services__list__img.ip img, #top-services .services__list__img.advisory img, #top-services .services__list__img.validator img {
    width: 34.0136054422%;
  }
  #top-services .services__list__text {
    line-height: 1.6;
  }
  #top-services .services__more {
    max-width: 93.567251462%;
  }
}
#top-ecosystem .ecosystem__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 132px 0 60px;
  padding: 0 74px 0 44px;
}
#top-ecosystem .ecosystem__box__left {
  width: 58.9090909091%;
}
#top-ecosystem .ecosystem__box__right {
  width: 32.5454545455%;
}
#top-ecosystem .ecosystem__title {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 1.6;
  font-weight: 700;
}
@media only screen and (max-width: 1248px) {
  #top-ecosystem .ecosystem__title {
    font-size: 2.2435897436vw;
  }
}
html[lang=ja] #top-ecosystem .ecosystem__title {
  white-space: nowrap;
}
#top-ecosystem .ecosystem__title span {
  display: inline-block;
}
#top-ecosystem .ecosystem__text {
  font-size: 18px;
  line-height: 1.8;
}
#top-ecosystem .ecosystem__list {
  max-width: 1080px;
  margin: auto;
  border-bottom: 1px solid #E2E9EC;
}
#top-ecosystem .ecosystem__list:first-of-type {
  border-top: 1px solid #E2E9EC;
}
#top-ecosystem .ecosystem__list dt {
  padding: 16px;
  color: #0D7CAB;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}
#top-ecosystem .ecosystem__list dt span {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#top-ecosystem .ecosystem__list dt:after {
  content: "";
  background: url("/static/img/icon/arrow_circle.svg") no-repeat 100% 50%;
  background-size: contain;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#top-ecosystem .ecosystem__list dt:hover span {
  opacity: 0.7;
}
#top-ecosystem .ecosystem__list dt.open:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#top-ecosystem .ecosystem__list dd {
  display: none;
  padding: 0 0 8px;
}
#top-ecosystem .ecosystem__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 12px;
}
#top-ecosystem .ecosystem__list__item li {
  width: 80px;
  margin: 0 8px 8px;
}
@media only screen and (max-width: 767px) {
  #top-ecosystem .section__inner {
    padding-bottom: 0;
  }
  #top-ecosystem .ecosystem__box {
    display: block;
    margin: 32px 0 24px;
    padding: 0;
  }
  #top-ecosystem .ecosystem__box__left {
    width: 105.8479532164%;
    margin: 0 -2.9239766082% 32px;
  }
  #top-ecosystem .ecosystem__box__right {
    width: 100%;
  }
  #top-ecosystem .ecosystem__title {
    font-size: 24px;
  }
  html[lang=ja] #top-ecosystem .ecosystem__title {
    white-space: inherit;
  }
  #top-ecosystem .ecosystem__text {
    line-height: 1.6;
  }
  #top-ecosystem .ecosystem__list {
    margin: 0 -7.0175438596%;
  }
  #top-ecosystem .ecosystem__list dt {
    padding: 16px 20.5128205128% 16px 4.1025641026%;
    line-height: 1.4;
  }
  #top-ecosystem .ecosystem__list dt span {
    -webkit-transition: none;
    transition: none;
  }
  #top-ecosystem .ecosystem__list dt:after {
    right: 4.1025641026%;
  }
  #top-ecosystem .ecosystem__list dt:hover span {
    opacity: 1;
  }
  #top-ecosystem .ecosystem__list dd {
    padding: 0 0 4.1025641026%;
  }
  #top-ecosystem .ecosystem__list__item {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 0 3.0769230769%;
  }
  #top-ecosystem .ecosystem__list__item li {
    width: 80px;
    margin: 0 4px;
  }
}
#top-partners .section__inner {
  max-width: 100%;
  padding: 80px 0;
}
#top-partners .section__title {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333333333%);
    transform: translateX(-33.3333333333%);
  }
}
@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-33.3333333333%);
    transform: translateX(-33.3333333333%);
  }
}
#top-partners .partners__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
  width: 553.8461538462%;
  height: 100%;
  padding-bottom: 8px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: slide 15s linear infinite;
  animation: slide 15s linear infinite;
}
#top-partners .partners__list li {
  width: 3.4722222222%;
  margin: 0 0.1157407407%;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#top-partners .partners__list__wrapper {
  margin: 32px 0 0;
  padding-top: 19.2307692308%;
  position: relative;
}
@media only screen and (min-width: 1248px) {
  #top-partners .partners__list__wrapper {
    padding-top: 240px;
  }
  #top-partners .partners__list__wrapper .partners__list {
    width: 6912px;
  }
  #top-partners .partners__list__wrapper .partners__list li {
    width: 240px;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 767px) {
  #top-partners .section__inner {
    padding: 80px 0 72px;
  }
  #top-partners .section__title {
    padding: 0 6.1538461538%;
  }
  #top-partners .partners__list {
    width: 590.7692307692%;
    -webkit-animation: none;
    animation: none;
  }
  #top-partners .partners__list li {
    width: 10.4166666667%;
    margin: 0 0.3472222222%;
  }
  #top-partners .partners__list__wrapper {
    margin: 24px 0 0;
    padding-top: calc(61.5384615385% + 8px);
    overflow-x: scroll;
  }
  #top-partners .partners__list__wrapper::-webkit-scrollbar {
    display: none;
  }
}
#top-company {
  background: #13ACED !important;
}
#top-company .section__object {
  color: #13ACED !important;
  -webkit-text-stroke: 4px rgba(255, 255, 255, 0.2) !important;
}
#top-company .section__title {
  color: #fff;
  text-align: left;
}
#top-company .section__title small {
  color: #fff;
}
#top-company .company__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 1080px;
  margin: 92px auto 0;
  color: #fff;
  border-top: 1px solid #E2E9EC;
}
#top-company .company__list dt {
  width: 240px;
  padding: 32px 40px 32px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  border-bottom: 1px solid #E2E9EC;
}
#top-company .company__list dd {
  width: calc(100% - 240px);
  padding: 34px 0;
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid #E2E9EC;
}
@media only screen and (max-width: 767px) {
  #top-company .section__object {
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.2) !important;
  }
  #top-company .section__title {
    text-align: center;
  }
  #top-company .company__list {
    display: block;
    margin: 32px -7.0175438596% 0;
  }
  #top-company .company__list dt {
    width: 100%;
    padding: 32px 6.1538461538% 10px;
    border-bottom: none;
  }
  #top-company .company__list dd {
    width: 100%;
    padding: 0 6.1538461538% 32px;
    line-height: 1.8;
  }
}

#news .news__sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 32px;
  padding-bottom: 13px;
}
#news .news__sort li {
  margin: 0 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  position: relative;
}
#news .news__sort li:after {
  content: "";
  background: #13ACED;
  width: calc(100% + 10px);
  height: 4px;
  border-radius: 2px;
  position: absolute;
  left: -5px;
  right: 0;
  bottom: -13px;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  opacity: 0;
}
#news .news__sort li:hover:after, #news .news__sort li.selected:after {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
#news .news__sort li a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  #news .news__sort {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 6px;
  }
  #news .news__sort li {
    margin: 0 6px 12px;
    font-size: 12px;
  }
  #news .news__sort li:after {
    width: calc(100% + 4px);
    left: -2px;
    bottom: -6px;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0;
  }
  #news .news__sort li:hover:after {
    opacity: 0;
  }
  #news .news__sort li.selected:after {
    opacity: 1;
  }
}
#news .news__search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 960px;
  margin: 32px auto 0;
}
#news .news__search input,
#news .news__search select {
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  width: 100%;
  height: 48px;
  color: #245B73;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid #245B73;
  border-radius: 24px;
  outline: none;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
#news .news__search input[type=text] {
  padding: 14px 24px;
}
#news .news__search input::-webkit-input-placeholder {
  color: rgba(36, 91, 115, 0.3);
}
#news .news__search input::-moz-placeholder {
  color: rgba(36, 91, 115, 0.3);
}
#news .news__search input:-ms-input-placeholder {
  color: rgba(36, 91, 115, 0.3);
}
#news .news__search input::-ms-input-placeholder {
  color: rgba(36, 91, 115, 0.3);
}
#news .news__search input::placeholder {
  color: rgba(36, 91, 115, 0.3);
}
#news .news__search input[type=submit] {
  background: #245B73;
  padding: 14px 52px;
  color: #fff;
  font-size: 16px;
  text-align: center;
  border: 1px solid transparent;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  -webkit-transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease;
}
#news .news__search input[type=submit]:hover {
  background: #fff;
  border: 1px solid #245B73;
  color: #245B73;
  text-decoration: none;
}
#news .news__search select {
  padding: 14px 56px 14px 24px;
}
#news .news__search > div {
  margin: 0 8px;
  position: relative;
}
#news .news__search > div.text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#news .news__search > div.select {
  width: 18.75%;
  min-width: 156px;
}
#news .news__search > div.select:after {
  content: "";
  display: block;
  background: url("/static/img/icon/arrow_blue.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  pointer-events: none;
}
#news .news__search > div.select:focus:after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#news .news__search > div.submit {
  width: 136px;
}
#news .news__search > div.submit:after {
  content: "";
  display: block;
  background: url("/static/img/icon/arrow_white.svg") no-repeat 50% 50%;
  background-size: contain;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  right: 24px;
  bottom: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  pointer-events: none;
}
#news .news__search > div.submit:hover:after {
  background: url("/static/img/icon/arrow_blue.svg") no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: translateX(8px);
  transform: translateX(8px);
}
@media only screen and (max-width: 767px) {
  #news .news__search {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;
  }
  #news .news__search input[type=submit] {
    border: none;
    -webkit-transition: none;
    transition: none;
  }
  #news .news__search input[type=submit]:hover {
    background: #245B73;
    border: none;
    color: #fff;
  }
  #news .news__search > div {
    margin: 0;
  }
  #news .news__search > div.text {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    width: 100%;
    margin-bottom: 16px;
  }
  #news .news__search > div.select {
    width: calc(50% - 8px);
    min-width: auto;
    margin-bottom: 16px;
  }
  #news .news__search > div.select:after {
    -webkit-transition: none;
    transition: none;
  }
  #news .news__search > div.submit {
    width: 100%;
  }
  #news .news__search > div.submit:after {
    -webkit-transition: none;
    transition: none;
  }
  #news .news__search > div.submit:hover:after {
    background: url("/static/img/icon/arrow_white.svg") no-repeat 50% 50%;
    background-size: contain;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  #news .news__search__wrapper {
    background: #EBF4F7;
    margin: 20px -7.0175438596%;
    padding: 32px 7.0175438596%;
  }
}
#news .news__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 92px;
}
#news .news__layout li {
  padding-left: 20px;
  padding-right: 19px;
  font-size: 16px;
  cursor: pointer;
  position: relative;
}
#news .news__layout li:before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  pointer-events: none;
}
#news .news__layout li.list:before {
  background: url("/static/img/icon/sort_list.svg") no-repeat 50% 50%;
  background-size: contain;
}
#news .news__layout li.tile:before {
  background: url("/static/img/icon/sort_tile.svg") no-repeat 50% 50%;
  background-size: contain;
}
#news .news__layout li:after {
  content: "/";
  position: absolute;
  top: 0;
  right: 6px;
}
#news .news__layout li:last-of-type {
  padding-right: 0;
}
#news .news__layout li:last-of-type:after {
  display: none;
}
#news .news__layout li:hover {
  text-decoration: underline;
}
#news .news__layout li.selected {
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #news .news__layout {
    margin-top: 32px;
  }
}
#news .news__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
#news .news__list li img,
#news .news__list li time,
#news .news__list li span,
#news .news__list li h3 {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#news .news__list li:hover img,
#news .news__list li:hover time,
#news .news__list li:hover span,
#news .news__list li:hover h3 {
  opacity: 0.7;
}
#news .news__list li .news__list__img {
  position: relative;
}
#news .news__list li .news__list__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
#news .news__list li .news__list__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
#news .news__list li .news__list__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#news .news__list li time {
  font-family: "Roboto", sans-serif;
  color: #6F92A0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
#news .news__list li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 28px;
  padding: 4px 8px;
  color: #0D7CAB;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid #0D7CAB;
  border-radius: 4px;
}
#news .news__list li h3 {
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}
#news .news__list li a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#news .news__list.layout-list {
  margin-top: 24px;
}
#news .news__list.layout-list li {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 32px 64px 32px 0;
  border-bottom: 1px solid #E2E9EC;
}
#news .news__list.layout-list li:first-of-type {
  border-top: 1px solid #E2E9EC;
}
#news .news__list.layout-list li:after {
  content: "";
  background: url("/static/img/icon/arrow_thin.svg") no-repeat 100% 50%;
  background-size: 24px 24px;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
#news .news__list.layout-list li:hover:after {
  right: -8px;
}
#news .news__list.layout-list li .news__list__img {
  width: 250px;
  height: 140px;
  margin-right: 2.962962963%;
}
#news .news__list.layout-list li .news__list__text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
#news .news__list.layout-list li time {
  width: 112px;
}
#news .news__list.layout-list li span {
  width: 186px;
}
#news .news__list.layout-list li h3 {
  -webkit-line-clamp: 3;
  margin-top: 16px;
}
#news .news__list.layout-tile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 24px -1.4814814815% -32px;
}
#news .news__list.layout-tile li {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: none;
  width: 30.3956834532%;
  margin: 0 1.4388489209% 32px;
  padding-bottom: 40px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
}
#news .news__list.layout-tile li:hover {
  background: none;
}
#news .news__list.layout-tile li .news__list__img {
  width: 100%;
  padding-top: 56.2130177515%;
}
#news .news__list.layout-tile li .news__list__text {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  height: 88px;
  margin-top: 16px;
  padding: 0 7.100591716%;
}
#news .news__list.layout-tile li .news__list__status {
  width: 100%;
}
#news .news__list.layout-tile li time {
  width: 35.8620689655%;
}
@media only screen and (max-width: 1128px) and (min-width: 768px) {
  #news .news__list.layout-tile li time {
    font-size: 1.5957446809vw;
  }
}
#news .news__list.layout-tile li span {
  width: 64.1379310345%;
}
@media only screen and (max-width: 1128px) and (min-width: 768px) {
  #news .news__list.layout-tile li span {
    height: auto;
    padding: 2.1505376344% 2.7586206897%;
    font-size: 1.2411347518vw;
  }
}
#news .news__list.layout-tile li h3 {
  -webkit-line-clamp: 2;
  margin-top: 8px;
}
#news .news__list.layout-tile li a:after {
  content: "";
  background: url("/static/img/icon/arrow_thin.svg") no-repeat 100% 50%;
  background-size: 24px 24px;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 8px;
  bottom: 8px;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}
#news .news__list.layout-tile li a:hover:after {
  right: 0;
}
@media only screen and (max-width: 767px) {
  #news .news__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
  }
  #news .news__list li img,
  #news .news__list li time,
  #news .news__list li span,
  #news .news__list li h3 {
    -webkit-transition: none;
    transition: none;
  }
  #news .news__list li:hover img,
  #news .news__list li:hover time,
  #news .news__list li:hover span,
  #news .news__list li:hover h3 {
    opacity: 1;
  }
  #news .news__list li h3 {
    width: 100%;
    font-size: 14px;
  }
  #news .news__list.layout-list {
    margin: 24px -7.0175438596% 0;
  }
  #news .news__list.layout-list li {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 72px 64px 32px 6.1538461538%;
  }
  #news .news__list.layout-list li:after {
    top: calc(50% + 6px);
    right: 24px;
    bottom: auto;
    -webkit-transition: none;
    transition: none;
  }
  #news .news__list.layout-list li:hover:after {
    right: -8px;
  }
  #news .news__list.layout-list li .news__list__img {
    width: 120px;
    height: 68px;
    margin-right: 4.6783625731%;
  }
  #news .news__list.layout-list li .news__list__status {
    width: 85.9649122807%;
    position: absolute;
    top: 32px;
    left: 7.0175438596%;
  }
  #news .news__list.layout-list li time {
    width: 94px;
    font-size: 16px;
  }
  #news .news__list.layout-list li span {
    width: 156px;
    height: 24px;
    padding: 2px 6px;
    font-size: 12px;
  }
  #news .news__list.layout-list li h3 {
    margin-top: 0;
  }
  #news .news__list.layout-tile li {
    width: 100%;
  }
  #news .news__list.layout-tile li .news__list__status {
    width: 100%;
  }
  #news .news__list.layout-tile li time {
    width: 105px;
  }
  #news .news__list.layout-tile li a:after {
    -webkit-transition: none;
    transition: none;
  }
  #news .news__list.layout-tile li a:hover:after {
    right: 8px;
  }
}
#news .news__pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#news .news__pager li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  width: 24px;
  height: 24px;
  margin: 0 4px;
  padding: 0 4px;
  color: #6F92A0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}
#news .news__pager li:hover, #news .news__pager li.selected {
  background: #13ACED;
  color: #fff;
}
#news .news__pager__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 92px;
}
#news .news__pager__wrapper i {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 4px;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#news .news__pager__wrapper i:hover {
  opacity: 0.7;
}
#news .news__pager__wrapper i.prev {
  background: url("/static/img/icon/arrow_thin.svg") no-repeat 50% 50%;
  background-size: contain;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
#news .news__pager__wrapper i.next {
  background: url("/static/img/icon/arrow_thin.svg") no-repeat 50% 50%;
  background-size: contain;
}
#news .news__pager__wrapper i.hide {
  visibility: hidden;
}
@media only screen and (max-width: 767px) {
  #news .news__pager li {
    width: 40px;
    height: 40px;
    margin: 0 6px;
    padding: 0 6px;
    font-size: 26px;
    border-radius: 6px;
    -webkit-transition: none;
    transition: none;
  }
  #news .news__pager li:hover {
    background: none;
    color: #6F92A0;
  }
  #news .news__pager li.selected {
    background: #13ACED;
    color: #fff;
  }
  #news .news__pager__wrapper {
    margin: 40px -7.0175438596%;
  }
  #news .news__pager__wrapper i {
    width: 40px;
    height: 40px;
    margin: 0 6px;
    -webkit-transition: none;
    transition: none;
  }
  #news .news__pager__wrapper i:hover {
    opacity: 1;
  }
}

#article .article__status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 80px auto 24px;
}
#article .article__status time {
  width: 112px;
  font-family: "Roboto", sans-serif;
  color: #6F92A0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#article .article__status span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 186px;
  height: 28px;
  padding: 4px 8px;
  color: #0D7CAB;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid #0D7CAB;
  border-radius: 4px;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 1;
}
#article .article__title {
  margin-bottom: 24px !important;
  padding-bottom: 24px !important;
  color: #000000 !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.6 !important;
  border-bottom: 1px solid #E0E0E0 !important;
}
#article .article h1 {
  color: #1E3A46;
}
#article .article h1, #article .article h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
#article .article h3 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
#article .article p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
  word-break: break-word;
}
#article .article a {
  display: inline;
  color: #0D7CAB;
  font-size: 18px;
  line-height: 1.8;
  text-decoration: underline;
}
#article .article a:hover {
  text-decoration: none;
}
#article .article ul {
  margin: 24px 0;
}
#article .article ul li {
  padding-left: 1em;
  font-size: 18px;
  line-height: 1.8;
  position: relative;
}
#article .article ul li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
#article .article table tbody tr {
  word-break: keep-all;
}
#article .article table tbody th, #article .article table tbody td {
  padding: 0 24px 24px;
  vertical-align: middle;
  word-break: keep-all;
}
#article .article table tbody th:first-child, #article .article table tbody td:first-child {
  padding-left: 0;
}
#article .article table tbody th:last-child, #article .article table tbody td:last-child {
  padding-right: 0;
}
#article .article img {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
}
#article .article hr {
  border-top: 1px solid #E0E0E0;
  margin: 40px auto;
}
#article .article__sns {
  margin-top: 40px;
  text-align: center;
}
#article .article__sns dt {
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 700;
}
#article .article__sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
#article .article__sns ul li {
  width: 32px;
  margin: 0 20px;
}
#article .article__sns__side {
  background: #245B73;
  height: 176px;
  padding: 0 8px;
  border-radius: 8px 0 0 8px;
  position: fixed;
  top: calc(50% - 88px);
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
  right: 0;
}
#article .article__sns__side ul li {
  width: 24px;
  margin: 16px 0;
}
#article .article__sns__side ul li a {
  display: block;
}
#article .article__sns__side.scroll {
  right: -40px;
}
#article .article__btn {
  max-width: 320px;
  margin: 40px auto 0;
}
@media only screen and (max-width: 767px) {
  #article .article__status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 20px auto 10px;
  }
  #article .article__status time {
    width: 105px;
  }
  #article .article__title {
    margin-bottom: 10px !important;
    padding-bottom: 10px !important;
  }
  #article .article h1, #article .article h2 {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  #article .article h3 {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  #article .article p {
    margin-bottom: 16px;
  }
  #article .article table tbody th, #article .article table tbody td {
    padding: 0 8px 16px;
  }
  #article .article table tbody th:first-child, #article .article table tbody td:first-child {
    padding-left: 0;
  }
  #article .article table tbody th:last-child, #article .article table tbody td:last-child {
    padding-right: 0;
  }
  #article .article__sns__side {
    height: 154px;
    padding: 0 7px;
    border-radius: 7px 0 0 7px;
    top: calc(50% - 77px);
  }
  #article .article__sns__side ul li {
    width: 21px;
    margin: 14px 0;
  }
}

#services section:nth-of-type(odd) {
  background: #fff;
}
#services section:nth-of-type(odd) .section__object {
  color: #fff;
  -webkit-text-stroke: 4px #EBF4F7;
}
#services section:nth-of-type(even) {
  background: #EBF4F7;
}
#services section:nth-of-type(even) .section__object {
  color: #EBF4F7;
  -webkit-text-stroke: 4px #fff;
}
@media only screen and (max-width: 767px) {
  #services section:nth-of-type(odd) .section__object {
    -webkit-text-stroke: 2px #EBF4F7;
  }
  #services section:nth-of-type(even) .section__object {
    -webkit-text-stroke: 2px #fff;
  }
}
#services .section__inner {
  max-width: 888px;
}
#services .section__title i {
  display: block;
  width: 120px;
  margin: 0 auto 24px;
}
#services .services__lead {
  margin-top: 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
#services .services__text {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.8;
}
#services .services__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  background: #fff;
  margin-top: 32px;
  padding: 16px;
  border-radius: 8px;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1);
}
#services .services__box__img {
  width: 47.0297029703%;
  margin-right: 2.8571428571%;
}
#services .services__box__text {
  width: 47.0297029703%;
}
#services .services__box__text time {
  font-family: "Roboto", sans-serif;
  color: #6F92A0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
#services .services__box__text h3 {
  margin: 16px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
#services .services__box .btn-white {
  min-height: 48px;
}
@media only screen and (max-width: 767px) {
  #services .services__box {
    display: block;
  }
  #services .services__box__img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 24px;
  }
  #services .services__box__text {
    width: 100%;
  }
}

#other .section__inner {
  max-width: 888px;
}
@media only screen and (max-width: 767px) {
  #other .section__title {
    font-size: 32px;
  }
}
#other .other__content {
  margin-top: 24px;
}
#other .other__content h3 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
#other .other__content h4 {
  margin-top: 24px;
  margin-bottom: 16px;
  color: #1E3A46;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
#other .other__content p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}
#other .other__content p:last-of-type {
  margin-bottom: 0;
}
#other .other__content small {
  font-size: 14px;
  line-height: 1.6;
}
#other .other__content a {
  color: #0D7CAB;
  text-decoration: underline;
  word-break: break-all;
}
#other .other__content a:hover {
  text-decoration: none;
}
#other .other__content ol {
  list-style: decimal;
  padding-left: 1.5em;
}
@media only screen and (max-width: 767px) {
  #other .other__content h3 {
    margin-top: 24px;
  }
  #other .other__content p {
    font-size: 16px;
  }
  #other .other__content small {
    font-size: 12px;
  }
}
