@charset "UTF-8";
/* ============================================
   CSS VARIABLES & RESET
============================================= */
:root {
  --fw-r: 400;
  --fw-m: 500;
  --fw-sb: 600;
  --fw-b: 700;
  --color-main: #054EA6;
  --color-main-l: #F3F8FF;
  --color-blue: #028ACC;
  --color-blue-l: #028ACC;
  --color-blue-d:#002A22;
  --color-skyblue: #89BFCC;
  --color-red: #080404;
  --color-green: #339966;
  --color-white: #ffffff;
  --color-black: #2E2E2E;
  --color-gray: #6D6D6D;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Poppins", sans-serif;
}

body {
  font-family: "Noto Sans JP", "Poppins", sans-serif;
  color: var(--color-black);
  font-weight: var(--fw-r);
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  font-style: normal;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: clip;
}

main {
  flex: 1;
}

a {
  position: relative;
  text-decoration: none;
  color: inherit;
  transition: 0.2s ease all;
}

p {
  word-break: break-all;
  line-height: 1.7;
  line-break: normal;
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

figcaption {
  text-align: center;
  font-size: 0.9rem;
}

.expand-img {
  overflow: hidden;
}

.expand-img > img {
  transition: 0.5s ease all;
}

.expand-img:hover > img {
  transform: scale(1.1);
}

/* ============================================
   COMMON COMPONENTS
============================================= */
.logo {
  display: flex;
  gap: 0.5rem;
  letter-spacing: 0;
  align-items: center;
  color: #000;
}
.logo img {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
}
.logo h1 {
  font-size: 0.95rem;
  margin-bottom: 0;
  font-weight: var(--fw-b);
}
.logo span {
  display: block;
  font-size: 0.8rem;
  font-weight: var(--fw-m);
  margin-bottom: 5px;
}

.section-title {
  font-family: var(--font-en);
  text-transform: capitalize;
  font-size: 3rem;
  font-weight: var(--fw-b);
  background-image: linear-gradient(90deg, var(--color-main), var(--color-blue-l));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 3rem;
}

.text-link {
  display: inline;
  color: var(--color-main);
  text-decoration: underline;
}
.text-link[target=_blank]::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 13px;
  background: url(../images/common/icon-windowout.svg) no-repeat center/contain;
  transition: 0.3s ease all;
}

.btn-outline {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  min-width: 230px;
  padding: 1.3rem 1.5rem 1.3rem 2rem;
  border: 1px solid var(--color-main);
  border-radius: 50px;
  color: var(--color-main);
  font-weight: var(--fw-sb);
  background: transparent;
  gap: 1rem;
}
.btn-outline::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-main);
  flex-shrink: 0;
  transition: 0.2s ease all;
}
.btn-outline[target=_blank]::after {
  width: 13px;
  height: 13px;
  mask-image: url(../images/common/icon-windowout.svg);
}
.btn-outline[target=_blank]::after {
  mask-image: url(../images/common/icon-windowout.svg);
}
.btn-outline[href$=".pdf"]::after, .btn-outline[href$=".doc"]::after, .btn-outline[href$=".docm"]::after, .btn-outline[href$=".docx"]::after, .btn-outline[href$=".xls"]::after, .btn-outline[href$=".xlsx"]::after {
  position: relative;
  display: inline-block;
  mask-image: none;
  font-size: 11px;
  letter-spacing: 0;
  padding: 3px;
  width: 35px;
  height: 17px;
  margin-left: 3px;
  background-color: var(--color-gray);
  color: #fff;
  text-align: center;
  line-height: 1;
}
.btn-outline[href$=".pdf"]:hover::after, .btn-outline[href$=".doc"]:hover::after, .btn-outline[href$=".docm"]:hover::after, .btn-outline[href$=".docx"]:hover::after, .btn-outline[href$=".xls"]:hover::after, .btn-outline[href$=".xlsx"]:hover::after {
  color: #fff;
  background-color: var(--color-gray);
}
.btn-outline[href$=".pdf"]::after {
  content: "PDF";
}
.btn-outline[href$=".doc"]::after, .btn-outline[href$=".docx"]::after, .btn-outline[href$=".docm"]::after {
  content: "Word";
}
.btn-outline[href$=".xls"]::after, .btn-outline[href$=".xlsx"]::after, .btn-outline[href$=".xlsm"]::after {
  content: "Excel";
}
.btn-outline:hover {
  background: var(--color-main);
  color: var(--color-white);
}
.btn-outline:hover::after {
  background-color: var(--color-white);
}
.btn-outline--blue {
  color: #fff;
  background-color: var(--color-main);
}
.btn-outline--blue::after {
  background: initial;
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}
.btn-outline--blue:hover {
  color: var(--color-main);
  background-color: var(--color-white);
}
.btn-outline--blue:hover::after {
  background-color: var(--color-main);
}
.btn-outline--white {
  background-color: var(--color-white);
  border: 1px solid var(--color-white) !important;
}
.btn-outline--sm {
  padding: 1.1rem 1.3rem 1.1rem 1.5rem;
}
.btn-outline--en, .btn-outline--home {
  gap: 3px;
  justify-content: center;
}
.btn-outline--en::after, .btn-outline--home::after {
  content: none;
}
.btn-outline--en::before, .btn-outline--home::before {
  content: "";
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url(../images/common/icon-lang.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.btn-outline--home::before {
  background: url(../images/common/icon-sitemap.svg) no-repeat center/contain;
}

/* ============================================
   HEADER
============================================= */
.header {
  background: var(--color-white);
  padding: 1.5rem 0 2rem;
}
.header__sub-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}
.header__sub-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--color-blue-d);
  transition: 0.2s ease all;
}
.header__sub-link::before {
  content: "";
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.header__sub-link-en::before {
  background: url(../images/common/icon-lang.svg) no-repeat center/contain;
}
.header__sub-link-home::before {
  background: url(../images/common/icon-sitemap.svg) no-repeat center/contain;
}
.header__sub-link:hover {
  color: var(--color-main);
}
.header__nav-list {
  display: flex;
  gap: 1rem;
  font-size: 1rem;
  font-weight: var(--fw-sb);
}
.header__nav-item {
  position: relative;
}
.header__nav-item span {
  position: relative;
  padding: 0.5rem 0;
  cursor: pointer;
  transition: 0.2s ease all;
}
.header__nav-item:hover span::after {
  visibility: visible;
  opacity: 1;
}
.header__nav-item:hover > .header__dropdown-nav {
  opacity: 1;
  visibility: visible;
}
.header .header__dropdown-nav {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  min-width: 240px;
  transition: all 0.2s ease;
  z-index: 10;
  background-color: var(--color-main-l);
  margin: 0;
  padding: 1rem;
  border-radius: 5px;
  right: 0;
  top: 40px;
}
.header .header__dropdown-nav a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  gap: 0.3rem;
}
.header .header__dropdown-nav a:hover {
  color: var(--color-main);
}

/* ============================================
   FOOTER
============================================= */
.footer {
  padding: 2rem 0;
}
.footer__nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 0;
  font-size: 0.9rem;
}
.footer__nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem 0.2rem 0;
  font-weight: var(--fw-sb);
}
.footer__nav a::before {
  content: "";
  position: relative;
  width: 9px;
  height: 9px;
  background: url(../images/common/icon-arrow.svg) no-repeat center/contain;
  flex-shrink: 0;
  margin-right: 5px;
}
.footer__nav a:hover {
  color: var(--color-main);
}
.footer__copyright {
  font-family: var(--font-en);
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: var(--color-black);
  margin-bottom: 0;
}

#pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(45deg, #054ea6, #0e85dc 49%, #028acc);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease all;
}
#pagetop::before {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  top: 1px;
  transform: rotate(-90deg);
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}
#pagetop.active {
  visibility: visible;
  opacity: 1;
}

/* ============================================
   RESPONSIVE
============================================= */
@media screen and (min-width: 1200px) {
  .logo h1 {
    font-size: 1.1rem;
  }
  .logo span {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 991.98px) {
  .header {
    padding: 0.5rem 0;
  }
  .logo h1 {
    font-size: 0.8rem;
  }
  .logo span {
    font-size: 0.6rem;
  }
  .logo img {
    width: 40px;
  }
  .btn-outline {
    min-width: 190px;
    padding: 1.2rem 1.4rem 1.2rem 1.5rem;
    border: 2px solid var(--color-main);
  }
  .btn-outline--sm {
    padding: 1em 1rem 1rem 1.2em;
  }
  .footer__copyright {
    text-align: center;
  }
  .footer .logo img {
    width: 60px;
  }
  #pagetop {
    width: 40px;
    height: 40px;
  }
  #pagetop::before {
    width: 12px;
    height: 12px;
  }
}
.gnav {
  position: fixed;
  width: 100%;
  height: 100lvh;
  background-color: #E5EBF3;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.gnav.panelactive {
  opacity: 1;
  z-index: 999;
}
.gnav__inner {
  width: 100%;
  height: 90dvh;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  gap: 2rem;
  padding: 0.5rem 0 3rem;
}
.gnav__list {
  margin: 0.5rem auto 2rem;
}
.gnav__list li {
  border-bottom: 1px var(--color-gray-d) solid;
}
.gnav__link {
  padding: 1.4rem 0.5rem 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 1rem;
  transition: 0.2s ease all;
  color: var(--color-black);
  font-weight: var(--fw-sb);
  border-bottom: 1px solid #9AAFCB;
}
.gnav__link::after {
  content: "";
  position: relative;
  width: 25px;
  height: 25px;
  background: url(../images/common/icon-arrowcircle.svg) no-repeat center/contain;
  flex-shrink: 0;
  flex-shrink: 0;
}
.gnav__link:first-of-type {
  border-top: 1px solid #9AAFCB;
}

.openbtn {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  background: var(--color-main-l);
  width: 50px;
  height: 50px;
  border-radius: 3px;
  transition: 0.4s ease all;
}
.openbtn__container {
  position: fixed;
  top: 8px;
  right: 16px;
  z-index: 1000;
}
.openbtn.active {
  background-color: var(--color-white);
}
.openbtn.active span:nth-of-type(1) {
  top: 25px;
  transform: rotate(-35deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 25px;
  transform: rotate(35deg);
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 5px;
  background-color: var(--color-main);
  width: 46%;
  border-radius: 10px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
}
.openbtn span:nth-of-type(3) {
  top: 34px;
}

/* ============================================
   HERO SECTION
============================================= */
.hero__inner {
  display: flex;
  height: 550px;
  background-image: linear-gradient(to top, var(--color-skyblue) 0%, var(--color-main));
}
.hero__left {
  width: 48%;
}
.hero__right {
  position: relative;
  width: 52%;
  background-image: linear-gradient(to top, var(--color-skyblue) 0%, var(--color-main));
  z-index: 0;
}
.hero__right::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg-noise.webp) no-repeat center/cover;
  left: 0;
  top: 0;
  z-index: -1;
  mix-blend-mode: difference;
}
.hero-swiper {
  position: relative;
  height: 100%;
  min-height: 500px;
}
.hero__img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__caption {
  display: flex;
  position: absolute;
  bottom: 0.8rem;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-black);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}
.hero__caption--link {
  padding: 0.8rem 1rem 0.8rem;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  transition: 0.2s ease all;
}
.hero__caption--linka::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  background: url(../images/common/icon-arrow.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.hero__caption--linka:hover {
  opacity: 0.6;
}
.hero__content {
  padding: 5rem 2rem 3rem 3.5rem;
  color: var(--color-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__title {
  font-family: var(--font-en);
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: var(--fw-sb);
}
.hero__subtitle {
  font-size: 1.8rem;
  font-weight: var(--fw-b);
  line-height: 1.5;
  margin-bottom: 2rem;
}
.hero__desc {
  font-size: 0.9rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  margin-bottom: 0;
  letter-spacing: 0;
}
.hero__sub-img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: contain;
}

.en .hero__content .col-8 {
  display: flex;
  align-items: center;
}

/* ============================================
   ABOUT SECTION
============================================= */
.home-about {
  padding: 5rem 0;
}
.home-about__title {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: var(--fw-b);
  color: #2E86BE;
}
.home-about__title span {
  color: var(--color-green);
}
.home-about__subtitle {
  display: block;
  font-size: 1.2rem;
  font-weight: var(--fw-sb);
  margin-bottom: 3rem;
}
.home-about__text {
  margin-bottom: 3rem;
}
.home-about__text p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.home-about__img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 580px;
}

.en .home-about__title {
  margin-bottom: 3rem;
}

/* ============================================
   PICK UP SECTION
============================================= */
.home-pickup {
  position: relative;
  padding: 6rem 0;
}

.home-pickup__inner {
  position: relative;
  padding: 3rem 0 3rem 3.5rem;
}
.home-pickup__inner-bg {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  height: 100%;
  background: var(--color-main-l) no-repeat center/cover;
  border-radius: 40px;
  left: 0px;
  top: 0;
  z-index: -1;
  overflow: hidden;
}
.home-pickup__inner-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg-noise.webp) no-repeat center/cover;
  left: 0;
  top: 0;
  z-index: -1;
  mix-blend-mode: difference;
}

.pickup-card {
  display: block;
  height: 100%;
  transition: transform 0.3s;
}
.pickup-card__img-box {
  position: relative;
}
.pickup-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 87/59;
}
.pickup-card__location {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 0;
  background: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  padding: 8px 10px;
  line-height: 1;
}
.pickup-card__location::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  background: url(../images/common/icon-map.svg) no-repeat center/contain;
  margin-right: 4px;
}
.pickup-card__title {
  display: flex;
  align-items: center;
  position: relative;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: var(--fw-m);
  color: var(--color-black);
  margin-bottom: 0;
}
.pickup-card__title::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-arrow.svg) no-repeat center/contain;
  margin-right: 4px;
}
.pickup-card__tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.75rem;
  padding: 2px 1.1rem;
  border-radius: 20px;
  background: #fff;
  color: var(--color-main);
  font-weight: var(--fw-m);
}

/* Swiper Overrides */
.pickup-swiper {
  padding-bottom: 4rem !important;
  padding: 0 1rem 0 1rem;
}

.pickup-swiper-pagination, .links-swiper-pagination {
  padding-right: 2rem;
  text-align: right;
}
.pickup-swiper-pagination .swiper-pagination-bullet, .links-swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  opacity: 1;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 14px) !important;
}
.pickup-swiper-pagination .swiper-pagination-bullet-active, .links-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-main);
}

.pickup-swiper-button-prev,
.pickup-swiper-button-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #054ea6, #0e85dc 49%, #028acc);
}
.pickup-swiper-button-prev::after,
.pickup-swiper-button-next::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  mask-image: url(../images/common/icon-arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
}

.pickup-swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -27px);
}
.pickup-swiper-button-prev::after {
  transform: translate(-50%, -50%) scale(-1, 1);
  -webkit-transform: translate(-50%, -50%) scale(-1, 1);
}

.pickup-swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -27px);
}

/* ============================================
   TOPICS SECTION
============================================= */
.home-topics {
  padding: 6rem 0;
}
.home-topics .post-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}
.home-topics .post-item__title {
  margin: 0;
  font-size: 1rem;
  font-weight: var(--fw-sb);
}
.home-topics .post-item time {
  flex-shrink: 0;
  font-weight: var(--fw-r);
  font-size: 1rem;
}

/* ============================================
   RESULTS SECTION
============================================= */
.home-results {
  position: relative;
  background-image: linear-gradient(to top, var(--color-skyblue) 0%, var(--color-main));
  padding: 6rem 0 4.5rem;
  border-radius: 30px 30px 0 0;
  z-index: 0;
  overflow: hidden;
}
.home-results::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg-noise.webp) no-repeat center/cover;
  left: 0;
  top: 0;
  mix-blend-mode: difference;
  z-index: -1;
}
.home-results .section-title {
  background-image: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #fff;
  margin-bottom: 0.5rem;
}
.home-results__subtitle {
  font-size: 1rem;
}

.result-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: opacity 0.3s;
  min-height: 200px;
  gap: 1rem;
}
.result-card:hover {
  opacity: 0.7;
}
.result-card__title {
  font-size: 1.1rem;
  font-weight: var(--fw-sb);
  color: var(--color-black);
  line-height: 1.4;
  margin-bottom: 0;
}
.result-card__subtitle {
  display: flex;
  align-items: center;
  position: relative;
  font-weight: var(--fw-sb);
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.5;
}
.result-card__subtitle::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 80%;
  background-image: linear-gradient(to bottom, #0da2eb 0%, #0da2eb 25%, #028acc 25%, #028acc 50%, #054ea6 50%, #054ea6 75%, #1b2f6e 75%, #1b2f6e 100%);
  margin-right: 0.5rem;
}
.result-card__date {
  margin: auto 0 0;
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ============================================
   BANNER LINKS SECTION
============================================= */
.home-links {
  position: relative;
  padding: 5rem 0 4rem;
}

.link-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  border: 1px solid #D6D6D6;
  color: var(--color-main);
  font-weight: var(--fw-sb);
  position: relative;
  background: var(--color-white);
  padding: 0.5rem;
  transition: 0.3s;
  max-width: 210px;
  margin: 0 auto;
}
.link-box:hover {
  border-color: var(--color-main);
  background: var(--color-main-l);
}
.link-box__text {
  line-height: 1.2;
  text-align: center;
  font-size: clamp(0.6rem, 2vw, 0.9rem);
}
.link-box__img {
  object-fit: contain;
  max-height: 100%;
  width: 100%;
}

.links-swiper__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.links-swiper-pagination {
  bottom: -0.5rem !important;
}

/* ============================================
   RESPONSIVE
============================================= */
@media screen and (max-width: 991.98px) {
  .hero__inner {
    flex-wrap: wrap;
    height: auto;
  }
  .hero__right, .hero__left {
    width: 100%;
  }
  .hero__left {
    position: relative;
    top: -2rem;
    z-index: 1;
  }
  .hero__title {
    font-size: 3rem;
    font-size: 1.8rem;
  }
  .hero__subtitle {
    font-size: 1.1rem;
  }
  .hero__content {
    padding: 3rem 1.5rem 4rem;
  }
  .hero__sub-img {
    height: auto;
  }
  .hero__img {
    aspect-ratio: 3/2;
    height: auto;
  }
  .hero__caption {
    font-size: 0.8rem;
  }
  .hero__caption--link {
    padding: 0.5rem 0.8rem 0.5rem;
  }
  .hero-swiper {
    width: 90%;
    height: auto;
    min-height: initial;
  }
  .home-about {
    padding: 0 0;
  }
  .home-about__subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .home-about__text {
    margin-bottom: 1rem;
  }
  .home-about__text p {
    line-height: 1.5;
    letter-spacing: 0;
  }
  .home-about__img {
    width: 90%;
  }
  .en .home-about__title {
    margin-bottom: 2rem;
  }
  .home-pickup {
    padding: 5rem 0;
  }
  .home-pickup__inner {
    padding: 2.5rem 0.5rem;
  }
  .home-pickup__inner-bg {
    border-radius: 0;
    width: 100lvw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .home-pickup__inner-bg::after {
    border-radius: 0;
    width: 100lvw;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .pickup-swiper {
    padding: 0;
  }
  .pickup-swiper-button-prev, .pickup-swiper-button-next {
    width: 40px;
    height: 40px;
  }
  .pickup-swiper-button-prev::after, .pickup-swiper-button-next::after {
    width: 14px;
    height: 14px;
  }
  .pickup-swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, -5px);
  }
  .pickup-swiper-button-next {
    right: var(--swiper-navigation-sides-offset, -5px);
  }
  .tag {
    padding: 6px 1.1rem;
  }
  .pickup-swiper-pagination, .links-swiper-pagination {
    text-align: center;
    padding: 0;
  }
  .pickup-swiper-pagination .swiper-pagination-bullet, .links-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
  .home-topics {
    padding: 0 0 4rem;
  }
  .home-topics .section-title {
    margin-bottom: 1rem;
    text-align: center;
  }
  .home-topics .post-item {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
    padding: 1rem 0;
  }
  .home-topics .post-item__title {
    line-height: 1.5;
  }
  .home-results {
    padding: 4rem 0 4.5rem;
  }
  .result-card {
    padding: 1.5rem 1.2rem;
  }
  .links-swiper__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767.98px) {
  .home-links {
    padding: 2.5rem 0 2rem;
  }
  .home-links > .container {
    display: contents;
  }
  .links-swiper__inner {
    display: flex;
    gap: 0;
  }
}
/* ============================================
   SUB PARTS
============================================= */
.page-title {
  position: relative;
  background-image: linear-gradient(to top, var(--color-skyblue) 0%, var(--color-main));
  padding: 2rem 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: var(--fw-sb);
}
.page-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg-noise.webp) no-repeat center/cover;
  left: 0;
  top: 0;
  z-index: -1;
  mix-blend-mode: difference;
}
.page-title__inner {
  position: relative;
  gap: 0.5rem;
  color: var(--color-white);
  padding-left: 1rem;
}
.page-title__inner::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 4px;
  height: 100%;
  background-color: var(--color-white);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.page-title h1 {
  display: block;
  line-height: 1;
  color: var(--color-white);
  z-index: 1;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  padding: 0.3rem 0;
  margin-bottom: 0;
}
.page-title span {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--color-white);
}

.pankuzu__container {
  position: relative;
  background-color: var(--color-main-l);
  padding: 1.2rem 0 1.2rem 1.2rem;
  display: block;
}
.pankuzu__container::after {
  content: "";
  position: absolute;
  border-style: none;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  z-index: 2;
  display: block;
  width: 100px;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(243, 248, 255, 0.9) 40px, var(--color-main-l) 100px);
}
.pankuzu__inner {
  overflow-x: scroll;
  white-space: nowrap;
}
.pankuzu__inner::-webkit-scrollbar {
  display: none;
}
.pankuzu__list {
  display: flex;
  gap: 0.5rem;
}
.pankuzu__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--color-black);
  font-size: 0.9rem;
  gap: 0.5rem;
  font-weight: var(--fw-m);
}
.pankuzu__item:not(:last-child)::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  background: url(../images/common/icon-arrow.svg) no-repeat center/contain;
  flex-shrink: 0;
  bottom: -1px;
}
.pankuzu__item:last-child {
  padding-right: 100px;
}
.pankuzu__link:hover {
  text-decoration: underline;
}

.sidemenu {
  position: relative;
  width: 100%;
  background-color: var(--color-main-l);
  border-radius: 10px;
  padding: 2.2rem;
  overflow: hidden;
}
.sidemenu::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../images/common/bg-noise.webp) no-repeat center/cover;
  left: 0;
  top: 0;
  z-index: 0;
  mix-blend-mode: difference;
}
.sidemenu h2 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--color-main);
  font-weight: var(--fw-sb);
  position: relative;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.sidemenu h2::before {
  content: "";
  position: relative;
  width: 6px;
  height: 6px;
  background: var(--color-main) no-repeat center/contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.sidemenu li:not(:last-child) {
  border-bottom: 1px #9AAFCB solid;
}
.sidemenu a {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: 1rem;
  transition: 0.2s ease all;
  color: var(--color-black);
}
.sidemenu a:hover {
  color: var(--color-main);
}

.anchor-link {
  margin-bottom: 3rem;
}
.anchor-link ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1rem;
}
.anchor-link a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem 0;
  border-top: 1px solid #9AAFCB;
  border-bottom: 1px solid #9AAFCB;
  margin-bottom: -1px;
  gap: 0.5rem;
}
.anchor-link a::before {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-arrow.svg) no-repeat center/contain;
  flex-shrink: 0;
  transition: 0.2s ease all;
  margin-left: 0.4rem;
}
.anchor-link a[target=_blank]::before {
  background: url(../images/common/icon-windowout.svg) no-repeat center/contain;
}
.anchor-link a[href^="#"]::before {
  background: url(../images/common/icon-arrow-down.svg) no-repeat center/contain;
}
.anchor-link a:hover {
  color: var(--color-main);
}
.anchor-link a:hover::after {
  transform: translateY(8px);
}

.link-group {
  margin-bottom: 3rem;
}
.link-group ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1rem;
}
.link-group a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 0.8rem;
  border-bottom: 1px solid #9AAFCB;
  margin-bottom: -1px;
  gap: 0.5rem;
  transition: 0.2s ease all;
}
.link-group a::after {
  content: "";
  position: relative;
  width: 12px;
  height: 12px;
  background: url(../images/common/icon-arrow-down.svg) no-repeat center/contain;
  flex-shrink: 0;
  transform: rotate(-90deg);
  transition: 0.2s ease all;
}
.link-group a:hover {
  color: var(--color-main);
}
.link-group a:hover::after {
  transform: rotate(-90deg) translateY(8px);
}

.report-item {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: auto 1fr;
  gap: 0.5rem 1rem;
  align-items: start;
  margin-bottom: 2rem;
}
.report-item img {
  width: 100%;
  height: auto;
  grid-row: 1/3;
  grid-column: 1/2;
}
.report-item a {
  position: relative;
  color: var(--color-main);
  text-decoration: underline;
  grid-row: 1/2;
  grid-column: 2/3;
  font-weight: var(--fw-sb);
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.5;
  padding-left: 1rem;
}
.report-item a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 8px;
  height: 20px;
  background: var(--color-main) no-repeat center/contain;
  flex-shrink: 0;
  top: 5px;
  left: 0;
  margin-right: 10px;
}
.report-item p {
  grid-row: 2/3;
  grid-column: 2/3;
  margin-bottom: 0;
}

.sitemap-list a {
  font-size: 1.2rem;
}

/* ============================================
   CONTENTS PARTS
============================================= */
.content {
  margin: 4rem auto 5rem;
}

.content-box {
  /*ファイルリンクのスタイル*/
  /* 複雑なテーブル */
}
.content-box > *:first-child {
  margin-top: 0 !important;
}
.content-box h2 + h3 {
  margin-top: 0 !important;
}
.content-box h2:not([class]) {
  position: relative;
  display: flex;
  margin: 2rem 0 1rem;
  color: var(--color-black);
  background-color: var(--color-main-l);
  font-size: 1.3rem;
  font-weight: var(--fw-sb);
  padding: 1.4rem;
  align-items: center;
  gap: 0.2rem;
}
.content-box h2:not([class])::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 18px;
  background-image: linear-gradient(to top, var(--color-blue) 0%, var(--color-blue) 50%, var(--color-main) 50%, var(--color-main) 100%);
  margin-right: 0.5rem;
  flex-shrink: 0;
}
.content-box h3:not([class]) {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  color: var(--color-black);
  font-weight: var(--fw-sb);
  position: relative;
  padding: 1rem;
  background-color: var(--color-main-l);
}
.content-box h4:not([class]) {
  position: relative;
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
  font-weight: var(--fw-sb);
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.content-box h4:not([class])::before {
  content: "";
  position: relative;
  width: 26px;
  height: 26px;
  background: url(../images/common/icon-arrowcircle2.svg) no-repeat center/contain;
  flex-shrink: 0;
}
.content-box h5:not([class]) {
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
  color: var(--blue);
  font-weight: var(--fw-sb);
  position: relative;
  padding-left: 1rem;
}
.content-box h5:not([class])::before {
  content: "";
  position: absolute;
  display: inline-block;
  background: var(--color-main) no-repeat center/contain;
  width: 6px;
  height: 95%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.content-box h6:not([class]) {
  margin: 2rem 0 1rem;
  font-size: 1.2rem;
  color: var(--color-main);
  font-weight: var(--fw-sb);
  position: relative;
}
.content-box a:not([class]) {
  display: inline;
  color: var(--color-main);
  transition: 0.2s ease all;
  text-decoration: underline;
}
.content-box a:not([class]):hover {
  color: var(--color-main);
}
.content-box a[target=_blank]:not([class]) {
  display: inline;
}
.content-box a[target=_blank]:not([class])::after {
  content: "";
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 13px;
  mask-image: url(../images/common/icon-windowout.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-main);
  transition: 0.3s ease all;
}
.content-box a[href$=".pdf"]:not([class]), .content-box a[href$=".doc"]:not([class]),
.content-box a[href$=".docm"]:not([class]), .content-box a[href$=".docx"]:not([class]),
.content-box a[href$=".xls"]:not([class]), .content-box a[href$=".xlsx"]:not([class]) {
  position: relative;
  display: inline;
}
.content-box a[href$=".pdf"]:not([class])::after, .content-box a[href$=".doc"]:not([class])::after,
.content-box a[href$=".docm"]:not([class])::after, .content-box a[href$=".docx"]:not([class])::after,
.content-box a[href$=".xls"]:not([class])::after, .content-box a[href$=".xlsx"]:not([class])::after {
  position: relative;
  display: inline-block;
  mask-image: none;
  font-size: 11px;
  letter-spacing: 0;
  padding: 3px;
  width: 35px;
  height: 17px;
  margin-left: 3px;
  background-color: var(--color-gray);
  color: #fff;
  text-align: center;
  line-height: 1;
}
.content-box a[href$=".pdf"]:not([class])::after {
  content: "PDF";
}
.content-box a[href$=".doc"]:not([class])::after, .content-box a[href$=".docx"]:not([class])::after, .content-box a[href$=".docm"]:not([class])::after {
  content: "Word";
}
.content-box a[href$=".xls"]:not([class])::after, .content-box a[href$=".xlsx"]:not([class])::after, .content-box a[href$=".xlsm"]:not([class])::after {
  content: "Excel";
}
.content-box ul, .content-box ol {
  padding-left: 0;
}
.content-box ul li:not(.list-inline-item) {
  position: relative;
  list-style: none;
  padding-left: 1rem;
  line-height: 1.8;
  text-indent: 0rem;
  padding-left: 1.5rem;
  letter-spacing: 0px;
  color: var(--color-black);
}
.content-box ul li:not(.list-inline-item)::before {
  content: "";
  vertical-align: middle;
  background-color: var(--color-main);
  border-radius: 50%;
  left: 2px;
  width: 7px;
  height: 7px;
  position: absolute;
  top: 13px;
}
.content-box ol {
  list-style-type: none;
  counter-reset: num;
  padding-left: 0;
  letter-spacing: 0.1rem;
  line-height: 180%;
  margin-bottom: 1rem;
}
.content-box ol li {
  line-height: 1.8;
  text-indent: -2rem;
  padding-left: 1.5rem;
  letter-spacing: 0px;
  color: var(--color-black);
}
.content-box ol li::before {
  counter-increment: num;
  content: counter(num) ".";
  padding-right: 0.3rem;
  color: var(--color-main);
  display: inline-block;
  width: 2em;
  text-align: right;
  font-weight: var(--fw-sb);
}
.content-box table {
  width: 100%;
  margin: 2rem 0;
}
.content-box table th {
  color: #fff;
  border: 1px solid #9AAFCB;
  padding: 1rem;
  background-color: var(--color-main-l);
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--color-main);
  font-weight: var(--fw-sb);
}
.content-box table td {
  border: 1px solid #9AAFCB;
  background-color: #fff;
  padding: 1.2rem 1rem;
  font-size: 0.9rem;
}
.content-box table td p {
  margin-bottom: 0;
}
.content-box .table2 {
  white-space: nowrap;
}
.content-box .table2 th {
  display: table-cell;
  width: initial;
}
.content-box .table2 td {
  display: table-cell;
  width: initial;
}
.content-box img {
  max-width: 100%;
  height: auto;
}
.content-box .mt-be-columns {
  flex-wrap: wrap;
}
.content-box .column2_55 .mt-be-columns {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.content-box .column2_37 .mt-be-columns {
  display: grid !important;
  grid-template-columns: 3fr 7fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.content-box .column2_73 .mt-be-columns {
  display: grid !important;
  grid-template-columns: 7fr 3fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.content-box .btn-outline_container {
  margin: 1.5rem 0.5rem;
}
.content-box .asset-image {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 991.98px) {
  .anchor-link ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .anchor-link a {
    padding: 0.7rem 0;
  }
  .link-group ul {
    grid-template-columns: repeat(1, 1fr);
  }
  .link-group__item {
    padding: 0.7rem 0.2rem;
  }
  .pankuzu__container {
    padding: 0.8rem 0 0.8em 0.5rem;
  }
  .pankuzu__item {
    font-size: 0.8rem;
  }
  .page-title {
    padding: 1.5rem 0.5rem;
    min-height: 120px;
    font-size: 1.25rem;
  }
  .page-title__inner::before {
    content: none;
  }
  .page-title h1 {
    font-size: 1.4rem;
    padding: 0;
  }
  .page-title span {
    font-size: 0.9rem;
  }
  .report-item {
    grid-template-columns: 1fr 2fr;
    gap: 0.5rem 0.8rem;
  }
  .report-item a {
    font-size: 1rem;
    padding-left: 0.8rem;
  }
  .report-item a::before {
    width: 5px;
    height: 18px;
  }
  .report-item p {
    font-size: 0.9rem;
  }
  .content {
    margin: 3rem auto 4rem;
  }
  .content-box h2:not([class]) {
    font-size: 1.2rem;
    padding: 1.1rem 0.4rem;
  }
  .content-box h2:not([class])::before {
    transform: scale(0.75);
    margin-right: 0;
  }
  .content-box h3:not([class]) {
    font-size: 1.25rem;
    padding: 0.7rem 0.4rem;
  }
  .content-box h4:not([class]) {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  .content-box h4:not([class])::before {
    width: 20px;
    height: 20px;
  }
  .content-box h5:not([class]) {
    font-size: 1.15rem;
  }
  .content-box h6:not([class]) {
    font-size: 1.1rem;
  }
  .content-box table:not(.table-schedule) {
    width: 100%;
  }
  .content-box table:not(.table-schedule) th {
    padding: 0.5rem;
    margin-top: -1px;
    width: 100%;
    display: block;
  }
  .content-box table:not(.table-schedule) td {
    margin-top: -1px;
    width: 100%;
    display: block;
  }
  .content-box .column2_55 .mt-be-columns, .content-box .column2_37 .mt-be-columns, .content-box .column2_73 .mt-be-columns {
    grid-template-columns: 1fr;
  }
  .content-box .mt-be-columns {
    display: block !important;
  }
  .sidemenu {
    padding: 2rem 1.5rem 1rem;
  }
  .sidemenu h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .sidemenu__link {
    padding: 0.6rem 0;
  }
}
/* ============================================
   ARCHIVE
============================================= */
.post-title {
  position: relative;
  display: flex;
  align-items: start;
  gap: 0.8rem;
  margin: 0 0 2rem;
  color: var(--color-black);
  background-color: var(--color-main-l);
  padding: 1.4rem;
}
.post-title::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 21px;
  height: 18px;
  background-image: linear-gradient(to top, var(--color-blue) 0%, var(--color-blue) 50%, var(--color-main) 50%, var(--color-main) 100%);
  flex-shrink: 0;
  top: 5px;
}
.post-title h2 {
  font-size: 1.4rem;
  font-weight: var(--fw-sb);
  margin-bottom: 0;
}
.post-title time {
  display: inline-block;
  width: 100%;
  color: var(--color-gray);
  flex-shrink: 0;
  font-size: 1rem;
  margin: 0.8rem 0 0;
  font-weight: var(--fw-m);
}

.post-item {
  position: relative;
  display: block;
  border-bottom: 1px solid #E5EBF3;
  padding: 1.3rem 0;
  font-weight: var(--fw-m);
  height: 100%;
}
.post-item time {
  display: inline-block;
  color: var(--color-black);
  margin-bottom: 0;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.post-item__title {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 0;
  font-weight: var(--fw-sb);
}
.post-item:hover {
  color: var(--color-main);
}
.post-item:hover time {
  color: var(--color-main);
}

.pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 0.8em;
}
.pager__container {
  margin: 3rem auto;
}
.pager__item {
  display: grid;
  place-items: center;
  height: 37px;
  width: 55px;
  border-radius: 7px;
  border: 2px solid var(--color-main);
  background-color: #fff;
  color: var(--color-main);
  transition: 0.2s ease all;
  font-size: 0.9rem;
  font-weight: var(--fw-sb);
}
.pager__item--prev, .pager__item--next {
  position: relative;
  width: 37px;
}
.pager__item--prev::after, .pager__item--next::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 1px var(--color-main);
  border-left: solid 1px var(--color-main);
  position: absolute;
  top: 52%;
  left: 57%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  margin: auto;
  transition: 0.2s ease all;
  z-index: 1;
}
.pager__item--next::after {
  transform: translate(-50%, -50%) rotate(135deg);
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  left: 47%;
}
.pager__item:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}
.pager__item:hover::after {
  border-top: solid 1px var(--color-white);
  border-left: solid 1px var(--color-white);
}

/*スマホ・SPサイズのスタイル====================================================================*/
@media screen and (max-width: 991.98px) {
  .pager {
    margin: 2rem auto 0;
  }
  .pager ul {
    gap: 0.5rem;
  }
  .post-title {
    padding: 1.1rem 0.5rem;
    gap: 0.3rem;
  }
  .post-title h2 {
    font-size: 1.2rem;
  }
  .post-title::before {
    transform: scale(0.75);
    margin-right: 0;
  }
}
/* ============================================
   SINGLE
============================================= */
@media screen and (max-width: 991.98px) {
  .post-item {
    padding: 1rem 0.5rem 1rem 0;
  }
  .post-item p {
    line-height: 1.5;
  }
  .post-item p::after {
    right: -15px;
  }
}/*# sourceMappingURL=style.css.map */