@charset "UTF-8";
/* 要素基本設定 */
:root {
  --header-height: clamp(60px, 7.5vw, 85px);
  --wpadminbar-height: 0px;
}
@media (max-width: 960px) {
  :root {
    --header-height: 60px;
  }
}
body {
  color: #1e1e1e;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  font-family: var(--main-font);
  line-height: 1.8;
  letter-spacing: 0.03em;
  min-width: 375px;
}
.main {
  margin-top: var(--header-height);
  transition:
    visibility 0s ease 0.1s,
    margin-top 0.3s ease;
}
.header {
  top: 0;
}
img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  object-position: top;
}
a {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: 0.4s;
}
/* 操作アクション */
/* ホバー時 */
@media (hover: hover) {
  a:hover {
    transition: 0.4s;
    opacity: 1;
  }
  /*
  a:active {
    transform: scale(0.9);
    transition: 0.1s;
  }
  */
}
/* クリック（タップ）時 */
/*
@media (hover: none) {
  a:active {
    transform: scale(0.9);
    transition: 0.1s;
  }
}
*/

/* 共通クラス */
/* フォント */
:root {
  --main-font: "Noto Sans JP", sans-serif;
  --sub-font01: "Roboto Condensed", sans-serif;
  /* --sub-font02: ; */
}
.mainFont {
  font-family: var(--main-font);
}
.subFont01 {
  font-family: var(--sub-font01);
}
/* .subFont02 {
  font-family: var(--sub-font02);
} */
/* 要素最大幅 */
.mw {
  width: min(83.3%, 1440px);
  margin: 0 auto;
}
.mws {
  width: min(75%, 1080px);
  margin: 0 auto;
}
/* レスポンシブ */
.pc {
  display: block;
}
.tab {
  display: none;
}
.pc.tab {
  display: block;
}
.sp {
  display: none;
}
/* フレックス */
.flex {
  display: flex;
}
/* 非表示 */
.none {
  display: none;
}
/* テキストリンク */
.tLink {
  text-decoration: underline;
  display: inline-block;
}
/* 注意書き */
.notes {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: calc(18 / 12);
  letter-spacing: calc(20em / 1000);
  width: fit-content;
  margin: 10px 0 0 auto;
}
/* アスペクト比 */
.img16-9 {
  aspect-ratio: 16/9;
}
.img9-16 {
  aspect-ratio: 9/16;
}
.img5-2 {
  aspect-ratio: 5/2;
}
.img4-1 {
  aspect-ratio: 4/1;
}
.img3-2 {
  aspect-ratio: 3/2;
}
.img3-1 {
  aspect-ratio: 3/1;
}
.img2-1 {
  aspect-ratio: 2/1;
}
.img1-1 {
  aspect-ratio: 1/1;
}
/* セクション */
.comSec120 {
  padding: clamp(60px, 11vw, 120px) 0;
}
.comSec100 {
  padding: clamp(60px, 6vw, 100px) 0 clamp(90px, 9vw, 140px);
}
.comSec95 {
  padding: clamp(55px, 5.6vw, 95px) 0 clamp(60px, 6vw, 110px);
}
.comSec80 {
  padding: clamp(53.3px, 5.33vw, 80px) 0;
}
.under-comSec100 {
  padding: clamp(60px, 6vw, 100px) 0 clamp(90px, 9vw, 140px);
}
/* ボタン */
.comMore__link {
  width: clamp(250px, 25vw, 325px);
  padding: 24px 0;
  margin: 0 auto;
  background: #18318b;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  border: 1px solid #18318b;
  transition: 0.4s;
  box-shadow: 0px 2px 40px 0px rgba(25, 50, 140, 0.32);
}
.blueBtn {
  display: inline-block;
  background-color: #18318b;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  box-shadow: 0px 2px 40px 0px rgba(25, 50, 140, 0.32);
  padding: 24px 80px;
}
/* 白ボタン */
.wh__btn {
  background: #fff;
  border: 1px solid #18318b;
  color: #18318b;
  box-shadow: 0px 2px 30px 0px rgba(18, 37, 65, 0.15);
}

/* メディアクエリ */
/* TAB時 */
@media (max-width: 960px) {
  .pc {
    display: none;
  }
  .tab {
    display: block;
  }
  .mw {
    width: 85%;
  }
  .mws {
    width: 82%;
  }
}
/* SP時 */
@media (max-width: 520px) {
  body {
    font-size: clamp(1.4rem, 2.6vw, 1.6rem);
  }
  .pc.tab {
    display: none;
  }
  .sp {
    display: block;
  }
  .mw {
    width: 89%;
  }
  .mws {
    width: 89%;
  }
}

/* 固定要素 */
/* 投稿無しテキスト */
.not__text {
  text-align: center;
  font-weight: bold;
  margin: 20px auto;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}
/* 404 & comingsoon & maintenance */
.notFound,
.comingSoon,
.maintenance {
  margin: clamp(80px, 20vw, 180px) auto;
  text-align: center;
}
.notFound__ttl,
.comingSoon__ttl,
.maintenance__ttl {
  font-family: var(--sub-font01);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: bold;
}
.notFound__text,
.comingSoon__text,
.maintenance__text {
  margin-top: 50px;
  font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 1.4;
}
.notFound__url {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-top: 50px;
}
/* パンくず */
.breadcrumb {
  margin-top: clamp(20px, 2.5vw, 35px);
  justify-content: flex-end;
  flex-wrap: nowrap;
  overflow: hidden;
  row-gap: 5px;
}
.breadcrumb__item {
  position: relative;
  font-size: clamp(1.4rem, 1.4vw, 1.7rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  margin-right: 29px;
}
.breadcrumb__item--back {
  color: #18318b;
  cursor: pointer;
}
.breadcrumb__item--back:hover {
  opacity: 0.8;
}
.breadcrumb__item--open {
  font-weight: 500;
}
.breadcrumb__item::after {
  position: absolute;
  content: "";
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background: url(../img/breadcrumb-arrow.png) center / cover;
}
.breadcrumb__item:last-child {
  /* flex: 1 1 auto; */
  min-width: 0;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-right: 0;
}
.breadcrumb__item:last-child::after {
  display: none;
}

/* 以下新規記述 */
/* 文字色 */
.comColor {
  color: #093149; /* navy */
}
.comColor__white {
  color: #fff;
}
.comColor__blue {
  color: #18318b;
}
/* 背景色 */
.comBg__navy {
  background-color: #093149;
}
.comBg__white {
  background-color: #fff;
}
.comBg__blue {
  background-color: #18318b;
}
.comBg__lightBlue {
  background-color: #e9eff2;
}
/* タイトル */
/* セクションタイトル */
.comSecTtl {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  color: #093149;
}
.comSecTtl__en {
  font-family: var(--sub-font01);
  font-size: clamp(5.8rem, 9vw, 12rem);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
  letter-spacing: 0;
}
.comSecTtl__ja {
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.comSecTtl__sub {
  display: inline;
  color: #fff;
  background-color: #093149;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 8px 2px;
}
/* ボタン */
.comRightArrow {
  display: flex;
  justify-content: right;
  align-items: center;
}
.comRightArrow__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(34px, 6vw, 52px);
  height: clamp(34px, 6vw, 52px);
  text-align: center;
  color: #18318b;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  background-color: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  transition:
    transform 0.8s ease,
    box-shadow 0.8s ease;
  transition: 0.4s;
}
.comRightArrow__still {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(45px, 6vw, 52px);
  height: clamp(45px, 6vw, 52px);
  text-align: center;
  color: #18318b;
  font-size: 1.6rem;
  background-color: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
}
/* フォントサイズ */
.font128 {
  font-size: clamp(8.5rem, 8.5vw, 12.8rem);
}
.font24 {
  font-size: clamp(2rem, 2vw, 2.4rem);
}

.maskAnime span {
  display: inline-block;
  position: relative;
  color: transparent;
  overflow: hidden;
  width: fit-content;
}
/* マスク */
.maskAnime span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #18318b;
  z-index: 2;
  transform: translateX(-101%);
}
.maskAnime span.maskAnime__hero::before {
  background: #18318b;
}
.maskAnime span.maskAnime__navy::before {
  background: #093149;
}
.maskAnime span.maskAnime__black::before {
  background: #1e1e1e;
}
.maskAnime span.maskAnime__khaki::before {
  background: #43677c;
}
.maskAnime span.maskAnime__white::before {
  background: #fff;
}
/* マスクアニメ開始 */
.maskAnime span.show::before {
  animation: maskSlide 1s ease forwards;
}

@keyframes maskSlide {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(101%);
  }
}

/* 下層FV
--------------------------------------------------------------- */
.comUnder__fv {
  background: url(../img/comUnder-fv-bg.png) center / cover;
  padding: clamp(40px, 4vw, 66px) 0 18.5px;
  border-bottom: 1px solid #d8d8d8;
}
.comUnder__fv__inner__ttl {
  display: flex;
  width: fit-content;
  flex-direction: column;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}
.comUnder__fv__inner__ttl__small {
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 960px) {
  .comUnder__fv {
    background: url(../img/comUnder-fv-bg-sp.png) center / cover;
    padding: clamp(30px, 5.7vw, 40px) 0 13px;
  }
  .font128 {
    font-size: clamp(5.5rem, 10.5vw, 8.5rem);
  }
  .comUnder__fv__inner__ttl {
    line-height: 1.1;
  }
  .comUnder__fv__inner__ttl__small {
    font-size: clamp(1.4rem, 2.6vw, 2rem);
  }
}
@media screen and (max-width: 520px) {
  .font128 {
    font-size: clamp(4.8rem, 9.2vw, 5.5rem);
  }
  .comSecTtl {
    gap: 0;
  }
}

/*
------------------------------------------------------------------------- */
.header {
  position: fixed;
  width: 100%;
  height: var(--header-height);
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}
.header__logo {
  width: clamp(111px, 14vw, 160px);
  height: auto;
  align-items: center;
  margin-left: clamp(20px, 3.2vw, 45px);
}
.header__logo__link__img:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.header__nav__list {
  justify-content: space-between;
  align-items: center;
  gap: clamp(1.2em, 1.8vw, 1.5em);
}
.header__nav__list__item__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #093149;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  white-space: nowrap;
}
.header__nav__list__item__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.header__nav__list__item__link__img {
  width: 17px;
}
.divider {
  width: 1px;
  height: 16px;
  background-color: #8996a4;
}
.header__nav__list__langSelect {
  justify-content: space-between;
  align-items: center;
  gap: 0.5em;
}
.header__nav__list__langSelect__link {
  font-family: var(--sub-font01);
  border-bottom: 2px solid #8996a4;
  color: #8996a4;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.header__nav__list__langSelect__link {
  transition: 0.4s;
  opacity: 0.8;
}
.header__nav__list__langSelect__link.active {
  color: #093149;
  border-bottom: none;
  pointer-events: none;
}
.header__nav__list__btn {
  align-items: center;
  height: var(--header-height);
  background-color: #18318b;
  padding: 0 48px;
  margin-left: 10px;
}
.header__nav__list__btn:hover {
  background-color: #fff;
}
.header__nav__list__btn:hover .header__nav__list__btn__link {
  color: #18318b;
}
.header__nav__list__btn__link {
  color: #fff;
}
/* ハンバーガーボタン */
.no-scroll {
  overflow: hidden;
  height: 100%;
}
.header__hbgMenu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 16px;
  background-color: #e9eff2;
  z-index: 999;
  cursor: pointer;
  position: relative;
}
.header__hbgMenu__line {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #18318b;
  transition: all 0.4s ease;
  position: relative;
}
.header__hbgMenu.active .header__hbgMenu__line:nth-child(1) {
  transform: rotate(45deg);
  top: 7px;
  position: absolute;
}
.header__hbgMenu.active .header__hbgMenu__line:nth-child(2) {
  opacity: 0;
}
.header__hbgMenu.active .header__hbgMenu__line:nth-child(3) {
  transform: rotate(-45deg);
  top: 7px;
  position: absolute;
}
.header__hbgNav {
  position: fixed;
  top: var(--header-height);
  right: -100%;
  width: 100%;
  height: calc(100vh - var(--header-height));
  max-height: 100vh;
  background-color: #e9eff2;
  padding: 40px;
  z-index: 998;
}
.header__hbgNav.active {
  right: 0;
}
.header__hbgNav__contents {
  flex-direction: column;
  gap: 2em;
}
.header__hbgNav__contents__link {
  display: flex;
  flex-direction: column;
}
.header__hbgNav__contents__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.header__hbgNav__contents__link__en {
  color: #18318b;
  font-family: var(--sub-font01);
  font-size: 3.6rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}
.header__hbgNav__contents__link__en__img {
  width: 17px;
  vertical-align: baseline;
}
.header__hbgNav__contents__link__jp {
  color: #18318b;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.header__hbgNav__contents__langSelect {
  align-items: center;
  gap: 0.5em;
}
.header__hbgNav__contents__langSelect__img {
  width: 16px;
  object-fit: contain;
}
.header__hbgNav__contents__langSelect__contents {
  align-items: center;
  gap: 1em;
}
.header__hbgNav__contents__langSelect__contents__link {
  font-family: var(--sub-font01);
  border-bottom: 2px solid #8996a4;
  color: #8996a4;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
.header__hbgNav__contents__langSelect__contents__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.header__hbgNav__contents__langSelect__contents__link.active {
  color: #18318b;
  border-bottom: none;
}
.header__hbgNav__contents__btn {
  align-items: center;
  width: 71%;
  background-color: #18318b;
  box-shadow: 0px 2px 40px 0px #19328c52;
  box-shadow: 0px 0px 6px 0px #ffffff29;
  padding: 24px 0;
  margin: 0 auto;
}
.header__hbgNav__contents__btn:hover {
  background-color: #fff;
}
.header__hbgNav__contents__btn:hover .header__hbgNav__contents__btn__link {
  color: #18318b;
}
.header__hbgNav__contents__btn__link {
  color: #fff;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .header {
    padding-left: 15px;
    padding-right: 18px;
  }
  .header__logo {
    margin-left: 0;
  }
  .header__hbgMenu {
    display: flex;
  }
}

/* top
--------------------------------------------------------------- */
.top__hero {
  position: relative;
  aspect-ratio: 9/5;
  width: 100%;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}
.top__hero__video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.top__hero__contents {
  width: 78%;
  margin-bottom: clamp(30px, 5vw, 70px);
  z-index: 1;
}
.top__hero__contents__ttlWrap__ttl {
  max-width: 100%;
  color: #fff;
  font-family: var(--sub-font01);
  font-size: clamp(4.6rem, 9vw, 12.8rem);
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.21;
  letter-spacing: 0;
}
.heroSp {
  display: none !important;
}
.top__hero__contents__btns {
  gap: 2vw;
  margin-top: clamp(10px, 1.4vw, 20px);
}
.top__hero__contents__btns__whiteBtn {
  color: #18318b;
  background-color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0px 2px 30px 0px rgba(18, 37, 65, 0.15);
  padding: clamp(10px, 1.8vw, 24px) clamp(20px, 3vw, 40px);
}
.top__hero__contents__btns__blueBtn {
  font-size: clamp(1rem, 1.3vw, 1.6rem);
  padding: clamp(10px, 1.8vw, 24px) clamp(40px, 6vw, 80px);
}

@media (max-width: 520px) {
  .top__hero {
    aspect-ratio: 75/137;
    justify-content: center;
    align-items: end;
  }
  .top__hero__contents {
    width: 89%;
    margin-bottom: clamp(65px, 18vw, 90px);
  }
  .top__hero__contents__ttlWrap__ttl {
    font-size: clamp(5.5rem, 16vw, 8rem);
    line-height: 1.2;
  }
  .heroSp {
    display: inline-block !important;
  }
  .top__hero__contents__btns {
    flex-direction: column;
    gap: 1em;
    width: 100%;
    text-align: center;
    margin-top: 9vw;
  }
  .top__hero__contents__btns__whiteBtn {
    font-size: 1.6rem;
    padding: 20px 40px;
  }
  .top__hero__contents__btns__blueBtn {
    font-size: 1.6rem;
    padding: 20px 80px;
  }
}
@media (max-width: 470px) {
  .top__hero__contents {
    margin-bottom: clamp(45px, 13vw, 60px);
  }
}

@media (hover: hover) {
  .top__hero__contents__btns__whiteBtn:hover {
    color: #fff;
    background: #18318b;
  }
  .top__hero__contents__btns__whiteBtn:active {
    color: #fff;
    background: #18318b;
  }
}
@media (hover: none) {
  .top__hero__contents__btns__whiteBtn:active {
    color: #fff;
    background: #18318b;
  }
}

/* top news
--------------------------------------------------------------- */
.top__news__wrapper {
  gap: 1%;
}
.top__news__wrapper__ttl {
  width: 32%;
}
.top__news__wrapper__contents {
  width: 67%;
}
.top__news__wrapper__contents__list__item {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border-bottom: 1px solid #bfbfbf;
  padding: clamp(10px, 1.8vw, 25px) 10px;
}
.top__news__wrapper__contents__list
  .top__news__wrapper__contents__list__item:first-child {
  padding: 0 10px clamp(10px, 1.8vw, 25px) 10px;
}
.top__news__wrapper__contents__list__item__info {
  display: flex;
  align-items: center;
  gap: 2em;
}
.top__news__wrapper__contents__list__item__info__time {
  font-family: var(--sub-font01);
  color: #888;
  line-height: 19.2px;
  letter-spacing: 0;
}
.top__news__wrapper__contents__list__item__info__category {
  color: #18318b;
  background-color: #ececfa;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 16.8px;
  letter-spacing: 0;
  padding: 4px 13px;
}
.top__news__wrapper__contents__list__item__info__category__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.top__news__wrapper__contents__list__item__linkWrap__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.top__news__wrapper__contents__list__item__linkWrap__link__flexbox {
  gap: 1em;
}
.top__news__wrapper__contents__list__item__linkWrap__link__flexbox__ttl {
  flex: 1;
  font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  font-weight: 500;
  line-height: 19.2px;
  letter-spacing: 0;
}
.top__news__wrapper__contents__list__item__linkWrap__link__flexbox__btnWrap {
  width: 13%;
  margin-left: auto;
}
.top__news__wrapper__contents__list__item__linkWrap:is(:hover, :active)
  .top__news__wrapper__contents__list__item__linkWrap__link__flexbox__ttl {
  color: #18318b;
  transition: 0.4s;
}
.top__news__wrapper__contents__list__item__linkWrap:is(:hover, :active)
  .comRightArrow__link {
  color: #fff;
  background: #18318b;
  transition: 0.4s;
}
.top__news__wrapper__contents__list__item__linkWrap:hover .comRightArrow__link {
  transform: translateX(5px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}

@media (max-width: 520px) {
  .top__news__wrapper {
    flex-direction: column;
    gap: 35px;
  }
  .top__news__wrapper__ttl {
    width: 100%;
  }
  .top__news__wrapper__contents {
    width: 100%;
  }
  .top__news__wrapper__contents__list__item {
    gap: clamp(10px, 3.9vw, 20px);
    padding: 20px 0;
  }
  .top__news__wrapper__contents__list
    .top__news__wrapper__contents__list__item:first-child {
    padding: 0 0 20px 0;
  }
  .top__news__wrapper__contents__list__item__linkWrap__link__flexbox__ttl {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

/* top vision
--------------------------------------------------------------- */
.top__vision {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.top__vision__bg {
  position: absolute;
  display: block;
  content: "";
  width: 52%;
  height: 47%;
  background-image: url(../img/top/vision-bg.png);
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__vision__wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.top__vision__wrapper__ttl {
  align-items: center;
}
.top__vision__wrapper__ttl__en {
  line-height: 1.2;
}
.top__vision__wrapper__ttl__jp {
  color: #1e1e1e !important;
  font-size: clamp(2.1rem, 2.9vw, 3.6rem);
  font-weight: 500;
  line-height: 1.4;
}
.top__vision__wrapper__ttl__jp::before {
  background: #1e1e1e;
}
.top__vision__wrapper__text1 {
  font-size: clamp(1.7rem, 2.3vw, 2rem);
  font-weight: 700;
  text-align: center;
  padding-top: clamp(2.5em, 5.8vw, 3em);
}
.top__vision__wrapper__text2 {
  font-size: clamp(1.7rem, 2.3vw, 2.1rem);
  font-weight: 700;
  text-align: center;
  padding-top: clamp(1.5em, 4vw, 2em);
}

@media (max-width: 520px) {
  .top__vision__bg {
    width: 100%;
    height: 65%;
  }
  .top__vision__wrapper__text1,
  .top__vision__wrapper__text2 {
    text-align: left;
  }
}

/* top business
--------------------------------------------------------------- */
.top__business__wrapper {
  flex-direction: column;
  gap: clamp(2em, 5vw, 3em);
}
.top__business__wrapper__ttl {
  flex-direction: row;
  align-items: baseline;
  gap: 2em;
}
.top__business__wrapper__ttl__en {
  line-height: 1.2;
}
.top__business__wrapper__contents__list {
  gap: clamp(12px, 1.8vw, 24px);
}
.top__business__wrapper__contents__list__item {
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 16px);
  width: 33%;
  background-color: #fff;
  box-shadow: 0px 2px 40px 0px rgba(25, 50, 140, 0.24);
  padding: clamp(25px, 3.2vw, 32px) clamp(16px, 2.4vw, 32px);
}
.top__business__wrapper__contents__list__item__imgWrap {
  text-align: center;
}
.top__business__wrapper__contents__list__item__imgWrap__img {
  width: 33.9%;
  height: auto;
}
.top__business__wrapper__contents__list__item__ttl {
  font-family: var(--sub-font01);
  color: #18318b;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.5;
  text-align: center;
}
.br840 {
  display: none;
}
.top__business__wrapper__contents__list__item__txt {
  font-size: clamp(1.2rem, 1.5vw, 1.5rem);
  line-height: 1.7;
}
.top__business__wrapper__btn {
  text-align: center;
}

@media (max-width: 1350px) {
  .top__business__br {
    display: none;
  }
}
@media (max-width: 920px) {
  .top__business__wrapper__contents__list__item__imgWrap__img {
    width: 40%;
  }
}
@media (max-width: 840px) {
  .top__business__wrapper__contents__list__item__imgWrap__img {
    width: 50%;
  }
  .br840 {
    display: block;
  }
}
@media (max-width: 767px) {
  .top__business__wrapper__contents__list {
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .top__business__wrapper__contents__list__item {
    width: 45%;
    gap: 16px;
    box-shadow: 0px 2px 20px 0px rgba(25, 50, 140, 0.15);
  }
  .top__business__wrapper__contents__list__item__imgWrap__img {
    width: 38%;
  }
  .br840 {
    display: none;
  }
  .top__business__br {
    display: block;
  }
}
@media (max-width: 710px) {
  .top__business__wrapper__contents__list__item {
    width: 47%;
  }
}
@media (max-width: 675px) {
  .top__business__wrapper__contents__list {
    flex-direction: column;
    align-items: center;
  }
  .top__business__wrapper__contents__list__item {
    width: 60%;
    padding: 30px 22px 34px 22px;
  }
  .top__business__br {
    display: none;
  }
}
@media (max-width: 535px) {
  .top__business__wrapper__ttl {
    justify-content: space-between;
    gap: 0;
  }
  .top__business__wrapper__contents__list__item {
    width: 80%;
  }
}
@media (max-width: 520px) {
  .top__business__wrapper {
    gap: 3.5em;
  }
  .top__business__wrapper__ttl {
    flex-direction: column;
    justify-content: center;
  }
  .top__business__wrapper__contents__list__item {
    width: 100%;
  }
  .top__business__wrapper__contents__list__item__imgWrap__img {
    width: 33%;
  }
  .top__business__wrapper__contents__list__item__ttl {
    font-size: 3rem;
    font-weight: 500;
    white-space: nowrap;
  }
  .top__business__wrapper__contents__list__item__txt {
    font-size: 1.4rem;
  }
}

/* top service
--------------------------------------------------------------- */
.top__service__wrapper {
  flex-direction: column;
  gap: clamp(60px, 8vw, 80px);
}
.top__service__wrapper__ttlWrap__ttl {
  width: 50%;
}
.top__service__wrapper__ttlWrap__ttl__en {
  color: #43677c;
}
.top__service__wrapper__ttlWrap__ttl__jp {
  color: #fff;
}
.top__service__wrapper__ttlWrap__right {
  width: 50%;
  display: inline-block;
  flex-direction: column;
  margin-top: auto;
  gap: 10px;
}
.top__service__wrapper__ttlWrap__right__txt {
  color: #093149;
  background-color: #fff;
  font-size: 500;
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  letter-spacing: 0.05em;
  padding: 0 8px 2px 8px;
}
.top__service__wrapper__solution {
  color: #fff;
}
.top__service__wrapper__solution__left {
  width: 50%;
  margin: auto 0;
}
.top__service__wrapper__solution__left__imgWrap {
  margin-left: clamp(-120px, calc(-60px + (100vw - 960px) * -0.125), -60px);
}
.top__service__wrapper__solution__left__imgWrap__img {
  width: 100%;
}
.top__service__wrapper__solution__right {
  width: 50%;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5em, 3.5vw, 3em);
  padding-left: clamp(40px, 5.2vw, 100px);
}
.top__service__wrapper__solution__right__ttl {
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 700;
  line-height: 33.6px;
}
.top__service__wrapper__solution__btn {
  display: none;
  order: 3;
}
.top__service__wrapper__links {
  flex-direction: column;
  color: #fff;
}
.top__service__wrapper__links__link__item {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 0;
  background-color: #093149;
  padding: clamp(60px, 7vw, 80px) clamp(30px, 3.5vw, 40px);
}
.top__service__wrapper__links__link__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease-out;
  z-index: -1;
}
#top-services-solution-1:after {
  background-image: url(../img/top/top-services-solution-1.png);
}
#top-services-solution-2:after {
  background-image: url(../img/top/top-services-solution-2.png);
}
#top-services-solution-3:after {
  background-image: url(../img/top/top-services-solution-3.png);
}
#top-services-solution-4:after {
  background-image: url(../img/top/top-services-solution-4.png);
}
.top__service__wrapper__links__link__item:hover:after {
  transform: scale(1.1);
}
.top__service__wrapper__links__link__item__left {
  width: 79%;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
.top__service__wrapper__links__link__item__left__ttl {
  font-size: clamp(2.6rem, 2.9vw, 3.2rem);
  font-weight: 700;
  line-height: 33.6px;
}
.top__service__wrapper__links__link__item__left__txt {
  font-size: 1.4rem;
}
.top__service__wrapper__links__link__item__right {
  width: 20%;
  justify-content: right;
  align-items: center;
}
.top__service__wrapper__links__link__item__right__wrapper {
  gap: clamp(10px, 1vw, 20px);
  transition: transform 0.4s ease;
}
.top__service__wrapper__links__link__item__right__wrapper__txt {
  font-family: var(--sub-font01);
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 16.8px;
  margin: auto 0;
}
.top__service__wrapper__links__link__item__right__wrapper__btnWrap__btn {
  width: clamp(32px, 6vw, 52px);
  height: clamp(32px, 6vw, 52px);
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
}
.top__service__wrapper__links__link__item:is(:hover, :active)
  .top__service__wrapper__links__link__item__right__wrapper {
  transform: translateX(5px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}
.top__service__wrapper__links__link__item:is(:hover, :active)
  .top__service__wrapper__links__link__item__right__wrapper__btnWrap__btn {
  color: #18318b;
  background-color: #fff;
}

@media (max-width: 1040px) {
  .top__service__wrapper__links__link__item__left {
    width: 74%;
  }
  .top__service__wrapper__links__link__item__right {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .top__service__wrapper__ttlWrap {
    flex-direction: column;
    gap: 1.5em;
  }
  .top__service__wrapper__ttlWrap__ttl {
    width: 100%;
  }
  .top__service__wrapper__ttlWrap__right {
    width: 100%;
  }
  .top__service__wrapper__solution {
    flex-direction: column;
    gap: 1.5em;
  }
  .top__service__wrapper__solution__left {
    width: 100%;
    align-self: center;
    order: 2;
  }
  .top__service__wrapper__solution__left__imgWrap {
    margin-left: 0;
  }
  .top__service__wrapper__solution__right {
    width: 100%;
    order: 1;
    padding-left: 0;
  }
  .top__service__wrapper__solution__right__ttl {
    line-height: 1.6;
  }
  .top__service__wrapper__solution__right__btn {
    display: none;
  }
  .top__service__wrapper__solution__btn {
    display: block;
    text-align: center;
  }
  .top__service__wrapper__links__link__item {
    flex-direction: column;
    gap: 30px;
    padding: 40px 22px 26px;
  }
  .top__service__wrapper__links__link__item__left {
    width: 100%;
  }
  .top__service__wrapper__links__link__item__left__ttl {
    line-height: 1.5;
  }
  .top__service__wrapper__links__link__item__right {
    width: 100%;
  }
  .top__service__wrapper__links__link__item__right__wrapper__txt {
    font-size: 1.5rem;
  }
}
@media (max-width: 520px) {
  .top__service {
    padding-bottom: 0;
  }
  .top__service__wrapper__linksWrap {
    position: relative;
  }
  .top__service__wrapper__links {
    position: relative;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
  }
}

/* top seminor
--------------------------------------------------------------- */
.top__seminor__wrapper {
  flex-direction: column;
  gap: 2em;
}
.top__seminor__wrapper__ttlWrap {
  flex-direction: column;
  gap: 2em;
}
.top__seminor__wrapper__contents {
  flex-direction: column;
  gap: 2em;
}
.top__seminor__wrapper__contents__btnWrap {
  justify-content: flex-end;
  gap: clamp(1.2em, 1.2vw, 2em);
}
.top__seminor__wrapper__contents__btnWrap__left {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(34px, 6vw, 52px);
  height: clamp(34px, 6vw, 52px);
  text-align: center;
  color: #18318b;
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  background-color: #fff;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  transition:
    transform 0.8s ease,
    box-shadow 0.8s ease;
}
.top__seminor__wrapper__contents__slider {
  width: calc(100vw - 8.35%);
}
.top__seminor__wrapper__contents__slider__track {
  flex-wrap: nowrap;
  overflow: visible;
  transition: transform 0.4s ease;
}
.top__seminor__wrapper__contents__slider__track__card.swiper-slide {
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: #fff;
}
.top__seminor__wrapper__contents__slider__track__card__imgWrap {
  position: relative;
  overflow: hidden;
}
.top__seminor__wrapper__contents__slider__track__card__imgWrap__img {
  aspect-ratio: 1.77/1;
  object-fit: cover;
  transition: transform 0.3s ease-out;
}
.top__seminor__wrapper__contents__slider__track__card:hover
  .top__seminor__wrapper__contents__slider__track__card__imgWrap__img {
  transform: scale(1.1);
}
.top__seminor__wrapper__contents__slider__track__card:hover
  .top__seminor__wrapper__contents__slider__track__card__info__link {
  transition: 0.4s;
  opacity: 0.8;
  border: none;
}
.top__seminor__wrapper__contents__slider__track__card__info {
  flex: 1;
  flex-direction: column;
  gap: 20px;
  padding: clamp(14px, 2.8vw, 40px);
}
.top__seminor__wrapper__contents__slider__track__card__info__date {
  font-family: var(--sub-font01);
  color: #48505c;
  line-height: 1.5;
  letter-spacing: 0;
}
.top__seminor__wrapper__contents__slider__track__card__info__txt {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
}
.top__seminor__wrapper__contents__slider__track__card__info__link {
  color: #19328c;
  font-weight: 700;
  line-height: 16.8px;
  border-bottom: 1px solid #19328c;
  align-self: end;
  transition: 0.4s;
  margin-top: auto;
}
.top__seminor__wrapper__bottom {
  justify-content: space-between;
  gap: 7%;
}
.top__seminor__wrapper__bottom__progressBar {
  flex: 1;
  justify-content: right;
  align-items: center;
}
.top__seminor__wrapper__bottom__progressBar__wrapper {
  width: 100%;
  height: 2px;
  background-color: #bfbfbf;
  position: relative;
}
.top__seminor__wrapper__bottom__progressBar__wrapper__progress {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 100%;
  background-color: #f7ca16;
}

@media (max-width: 960px) {
  .top__seminor__wrapper__contents__slider {
    width: calc(100vw - 7.5%);
  }
}
@media (max-width: 767px) {
  .top__seminor__wrapper__bottom {
    flex-direction: column;
    justify-content: center;
    gap: 45px;
  }
  .top__seminor__wrapper__bottom__btn {
    order: 2;
    align-self: center;
    width: auto;
  }
  .top__seminor__wrapper__bottom__progressBar {
    order: 1;
    flex: 0;
    justify-content: center;
  }
}
@media (max-width: 520px) {
  .top__seminor__wrapper__contents__slider {
    width: calc(100vw - 5.5%);
  }
}

@media (hover: hover) {
  .top__seminor__wrapper__contents__btnWrap__left:hover {
    color: #fff;
    background: #18318b;
    transform: translateX(-5px);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
  }
  .top__seminor__wrapper__contents__btnWrap__left:active {
    color: #fff;
    background: #18318b;
    cursor: pointer;
  }
}
@media (hover: none) {
  .top__seminor__wrapper__contents__btnWrap__left:active {
    color: #fff;
    background: #18318b;
    cursor: pointer;
  }
}

/* top clients
--------------------------------------------------------------- */
.top__clients {
  flex-direction: column;
  padding-top: clamp(60px, 11vw, 120px);
}
.top__clients__wrapper__ttlWrap {
  flex-direction: column;
  gap: 2em;
}
.top__clients__wrapper__ttlWrap__ttl__en {
  font-size: clamp(5rem, 9vw, 12rem);
  margin: 0 auto;
}
.client__br {
  display: none;
}
.top__clients__wrapper__ttlWrap__ttl__jp {
  margin: 0 auto;
}
.top__clients__wrapper__ttlWrap__bottom {
  text-align: center;
}
.top__clients__wrapper__contents {
  padding-top: clamp(2em, 6vw, 5em);
  padding-bottom: clamp(200px, 34vw, 360px);
  /**/
  overflow: hidden;
}
.swiper-row2 {
  margin-top: clamp(40px, 5vw, 60px);
}
.swiper-row2 .top__clients__wrapper__contents__grid__item {
  transform: translateX(-50%);
}
.top__clients__wrapper__contents__grid {
  display: flex;
  height: clamp(78px, 12vw, 120px);
  align-items: center;
  padding: 0 clamp(10px, 1.5vw, 20px);
  /**/
  flex-shrink: 0;
}
.top__clients__wrapper__contents__grid__item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(200px, 27vw, 272px);
  height: clamp(78px, 12vw, 120px);
  /**/
  flex: 0 0 auto;
}
.top__clients__wrapper__contents__grid__item__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 70%;
  max-height: clamp(78px, 12vw, 120px);
  object-fit: contain;
}

@media (max-width: 550px) {
  .top__clients__wrapper__contents {
    padding-bottom: 60px;
  }
}
@media (max-width: 520px) {
  .top__clients {
    padding-bottom: 0;
  }
  .top__clients__wrapper__ttlWrap__ttl__en {
    font-size: 5.8rem;
    margin: 0;
  }
  .client__br {
    display: block;
  }
  .top__clients__wrapper__ttlWrap__ttl__jp {
    margin: 0;
  }
  .top__clients__wrapper__ttlWrap__bottom {
    text-align: left;
  }
  .top__clients__wrapper__contents__grid {
    padding: 0;
  }
}

/* top recruit
--------------------------------------------------------------- */
.top__sectionWrap {
  position: relative;
  height: clamp(300px, 29.5vw, 420px);
  z-index: 0;
}
.top__recruit {
  position: absolute;
  top: -240px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.top__recruit__wrapper {
  position: relative;
  width: 91.65%;
  aspect-ratio: 2.35 / 1;
  justify-content: right;
  align-items: center;
  overflow: hidden;
  z-index: 0;
}
.top__recruit__wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/top/recruit-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease-out;
  z-index: -1;
}
.top__recruit__wrapper:hover:after {
  transform: scale(1.1);
}
.top__recruit__wrapper:is(:hover, :active)
  .top__recruit__wrapper__contents__btnWrap__btn {
  color: #fff;
  background-color: #18318b;
  transform: translateX(5px);
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
.top__recruit__wrapper__contents {
  flex-direction: column;
  gap: clamp(1em, 2.3vw, 2em);
  margin-right: clamp(50px, 8.4vw, 100px);
}
.top__recruit__wrapper__contents__txtWrap__txt {
  color: #093149;
  background-color: #fff;
}
.top__recruit__wrapper__contents__btnWrap {
  align-self: end;
}
.top__recruit__wrapper__contents__btnWrap__btn {
  transition: 0.4s;
}

@media (max-width: 1200px) {
  .top__sectionWrap {
    height: clamp(280px, 27vw, 300px);
  }
}
@media (max-width: 991px) {
  .top__sectionWrap {
    height: clamp(190px, 28.5vw, 280px);
  }
  .top__recruit {
    top: -180px;
  }
}
@media (max-width: 800px) {
  .top__sectionWrap {
    height: clamp(170px, 24vw, 190px);
  }
}
@media (max-width: 670px) {
  .top__sectionWrap {
    height: 270px;
  }
  .top__recruit__wrapper {
    height: 400px;
    aspect-ratio: 375 / 348;
  }
  .top__recruit__wrapper:after {
    background-image: url(../img/top/recruit-bg-sp.png);
  }
  .top__recruit__wrapper__contents {
    gap: 2em;
    margin-left: auto;
  }
}
@media (max-width: 600px) {
  .top__sectionWrap {
    height: 380px;
  }
  .top__recruit__wrapper {
    height: 500px;
  }
}
@media (max-width: 550px) {
  .top__sectionWrap {
    height: 570px;
  }
  .top__recruit {
    position: static;
  }
  .top__recruit__wrapper {
    width: 100%;
    height: auto;
    background-size: contain;
  }
}
@media (max-width: 520px) {
  .top__sectionWrap {
    height: auto;
  }
  .top__recruit__wrapper {
    justify-content: center;
  }
  .top__recruit__wrapper__contents {
    gap: 2em;
    margin-right: 0;
    margin-left: 0;
  }
}

/* top contact
--------------------------------------------------------------- */
.top__contact {
  width: 100%;
  height: clamp(280px, 30vw, 350px);
  position: relative;
  z-index: 2;
}
.top__contact__wrapper {
  background: linear-gradient(to bottom, #093149, #334956);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.top__contact__wrapper__contents {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5em;
  padding: clamp(60px, 7.5vw, 80px) clamp(20px, 3vw, 40px);
}
.top__contact__wrapper__contents__ttl {
  align-items: center;
}
.top__contact__wrapper__contents__ttl__en {
  line-height: 1.16;
  letter-spacing: 0.03em;
}
.top__contact__wrapper__contents__ttl__jp {
  font-size: clamp(1.4rem, 1.8vw, 2.2rem);
}
.top__contact__wrapper__contents__txt {
  color: #fff;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem);
  font-weight: 500;
  text-align: center;
}
.top__contact__wrapper__contents__btnWrap {
  gap: clamp(1em, 2.7vw, 2em);
  justify-content: center;
  width: 100%;
}
.top__contact__wrapper__contents__btnWrap__downloadBtn,
.top__contact__wrapper__contents__btnWrap__mailBtn {
  display: flex;
  align-items: center;
  gap: 1.5em;
  background-color: #fff;
  border: solid 1px #fff;
  transition: 0.4s;
}
.top__contact__wrapper__contents__btnWrap__downloadBtn {
  width: 21.8%;
  padding: 14px 20px;
}
.top__contact__wrapper__contents__btnWrap__mailBtn {
  width: 22.6%;
  padding: 13px 20px;
}

.top__contact__wrapper__contents__btnWrap__downloadBtn__txt,
.top__contact__wrapper__contents__btnWrap__mailBtn__txt {
  font-weight: 500;
  color: #093149;
}
.top__contact__wrapper__contents__btnWrap__downloadBtn::before,
.top__contact__wrapper__contents__btnWrap__mailBtn::before {
  content: "";
  display: inline-block;
  mask-position: center center;
  mask-repeat: no-repeat;
  mask-size: contain;
  background: #093149;
}
.top__contact__wrapper__contents__btnWrap__downloadBtn::before {
  width: 31px;
  height: 31px;
  mask-image: url(../img/icon/icon-download.svg);
}
.top__contact__wrapper__contents__btnWrap__mailBtn::before {
  width: 32px;
  height: 32px;
  mask-image: url(../img/icon/icon-mail.svg);
}

.top__contact__wrapper__contents__btnWrap__downloadBtn:hover,
.top__contact__wrapper__contents__btnWrap__mailBtn:hover {
  background-color: #093149;
}

.top__contact__wrapper__contents__btnWrap__downloadBtn:hover
  .top__contact__wrapper__contents__btnWrap__downloadBtn__txt,
.top__contact__wrapper__contents__btnWrap__mailBtn:hover
  .top__contact__wrapper__contents__btnWrap__mailBtn__txt {
  color: #fff;
}

.top__contact__wrapper__contents__btnWrap__downloadBtn:hover::before,
.top__contact__wrapper__contents__btnWrap__mailBtn:hover::before {
  background: #fff;
}

@media (max-width: 1125px) {
  .top__contact__wrapper__contents__btnWrap__downloadBtn {
    width: 31.8%;
  }
  .top__contact__wrapper__contents__btnWrap__mailBtn {
    width: 32.6%;
  }
}
@media (max-width: 780px) {
  .top__contact__wrapper__contents__btnWrap__downloadBtn {
    width: 41.8%;
  }
  .top__contact__wrapper__contents__btnWrap__mailBtn {
    width: 42.6%;
  }
}
@media (max-width: 610px) {
  .top__contact__wrapper__contents__btnWrap__downloadBtn {
    flex: 1;
  }
  .top__contact__wrapper__contents__btnWrap__mailBtn {
    flex: 1;
  }
}
@media (max-width: 565px) {
  .top__contact__wrapper__contents__btnWrap {
    flex-direction: column;
  }
  .top__contact__wrapper__contents__btnWrap__downloadBtn,
  .top__contact__wrapper__contents__btnWrap__mailBtn {
    width: 100%;
    justify-content: center;
    flex: auto;
    position: relative;
  }
  .top__contact__wrapper__contents__btnWrap__downloadBtn::before,
  .top__contact__wrapper__contents__btnWrap__mailBtn::before {
    content: "";
    position: absolute;
    left: 20px;
  }
}
@media (max-width: 520px) {
  .top__contact {
    height: auto;
  }
  .top__contact__wrapper {
    position: static;
    transform: translateX(0);
    width: min(100%);
  }
  .top__contact__wrapper__contents__ttl__en {
    line-height: 1.15;
    letter-spacing: 0;
  }
}

/* footer
--------------------------------------------------------------- */
.footer {
  background-color: #2b2b2f;
  z-index: 1;
}
.footer__top {
  padding-top: clamp(200px, 18vw, 220px);
}
.footer__wrapper {
  padding: clamp(30px, 5vw, 60px) clamp(20px, 9vw, 119px);
}
.footer__wrapper__contents {
  justify-content: space-between;
  gap: 2em;
}
.footer__wrapper__contents__left {
  flex-direction: column;
  gap: 2em;
  color: #fff;
}
.footer__wrapper__contents__left__ttl__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.footer__wrapper__contents__left__ttl__link__logo {
  width: clamp(170px, 23vw, 200px);
}
.footer__wrapper__contents__left__ttl__link__txt {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 10px;
}
.footer__wrapper__contents__right {
  column-gap: clamp(1em, 3.5vw, 3em);
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.footer__wrapper__contents__right__contentWrap {
  flex-direction: column;
  gap: 1em;
}
.footer__wrapper__contents__right__contentWrap__ttl {
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__wrapper__contents__right__contentWrap__ttl::before {
  content: "•";
  color: #f7ca16;
  font-weight: bold;
  margin-right: 0.5em;
}
.footer__wrapper__contents__right__contentWrap__ttl__link {
  display: inline-block;
}
.footer__wrapper__contents__right__contentWrap__ttl__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.footer__wrapper__contents__right__contentWrap__list {
  flex-direction: column;
  gap: 0.5em;
}
.footer__wrapper__contents__right__contentWrap__list__item__link {
  font-size: 1.4rem;
  font-weight: 500;
  margin-left: 1.2em;
}
.footer__wrapper__contents__right__contentWrap__list__item__link:hover {
  transition: 0.4s;
  opacity: 0.8;
}
.footer__wrapper__bottom {
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  margin-top: 7em;
}
.footer__wrapper__bottom__copyright {
  color: #d8dbe4;
  font-family: var(--sub-font01);
}
.footer__wrapper__bottom__privacy {
  color: #fff;
  font-weight: 500;
}
.footer__wrapper__bottom__privacy:hover {
  transition: 0.4s;
  opacity: 0.8;
}

@media (max-width: 1180px) {
  .footer__wrapper__contents {
    flex-direction: column;
    gap: 3em;
  }
  .footer__wrapper__contents__left {
    gap: 1em;
  }
  .footer__wrapper__contents__right {
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: clamp(1em, 3.5vw, 3em);
    row-gap: 2.5em;
  }
  .footer__wrapper__bottom {
    flex-direction: column;
    gap: 4em;
    margin-top: 4em;
  }
  .footer__wrapper__bottom__copyright {
    order: 2;
    align-self: center;
  }
  .footer__wrapper__bottom__privacy {
    order: 1;
  }
}
@media (max-width: 1090px) {
  .footer__wrapper {
    padding: clamp(30px, 5vw, 60px) 60px;
  }
  .footer__top {
    padding-top: 200px;
  }
  .footer__wrapper__contents {
    gap: 1em;
  }
  .footer__wrapper__contents__right {
    column-gap: 1em;
  }
}
@media (max-width: 960px) {
  .footer__wrapper {
    padding: clamp(30px, 5vw, 60px) clamp(20px, 9vw, 119px);
  }
  .footer__top {
    padding-top: 180px;
  }
}
@media (max-width: 565px) {
  .footer__top {
    padding-top: 230px;
  }
}
@media (max-width: 520px) {
  .footer__top {
    padding-top: 0;
  }
  .footer__wrapper {
    padding: clamp(30px, 5vw, 60px) clamp(20px, 9vw, 119px);
  }
  .footer__wrapper__contents {
    gap: 4em;
  }
  .footer__wrapper__contents__left {
    gap: 2em;
  }
  .footer__wrapper__contents__right__contentWrap__ttl {
    font-size: 1.5rem;
  }
  .footer__wrapper__contents__right__contentWrap__list__item__link {
    font-size: 1.2rem;
  }
  .footer__wrapper__bottom {
    font-size: 1.2rem;
  }
}

/* 操作アクション */
/* ホバー時 */
@media (hover: hover) {
  .comMore__link:hover {
    background: #fff;
    color: #18318b;
    border: 1px solid #fff;
    transition: 0.4s;
  }
  .comMore__link:active {
    background: #fff;
    color: #18318b;
    border: 1px solid #fff;
    transition: 0.4s;
  }
  .wh__btn:hover {
    color: #fff;
    background: #18318b;
    border-color: #fff;
    transition: 0.4s;
  }
  .wh__btn:active {
    color: #fff;
    background: #18318b;
    border-color: #fff;
    transition: 0.4s;
  }
  .blueBtn:hover {
    color: #18318b;
    background: #fff;
    transition: 0.4s;
  }
  .blueBtn:active {
    color: #18318b;
    background: #fff;
    transition: 0.4s;
  }
  .comRightArrow__link:hover {
    color: #fff;
    background: #18318b;
    transform: translateX(5px);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.4s;
  }
  .comRightArrow__link:active {
    color: #fff;
    background: #18318b;
    cursor: pointer;
    transition: 0.4s;
  }
}
/* クリック（タップ）時 */
@media (hover: none) {
  .comMore__link:active {
    background: #fff;
    color: #18318b;
    border: 1px solid #fff;
    transition: 0.4s;
  }
  .wh__btn:active {
    color: #fff;
    background: #18318b;
    border-color: #fff;
    transition: 0.4s;
  }
  .blueBtn:active {
    color: #18318b;
    background: #fff;
    transition: 0.4s;
  }
  .comRightArrow__link:active {
    color: #fff;
    background: #18318b;
    cursor: pointer;
    transition: 0.4s;
  }
}

/* メディアクエリ */
/* TAB時 */
@media (max-width: 960px) {
}
/* SP時 */
@media (max-width: 520px) {
  .breadcrumb__item {
    font-size: clamp(1.2rem, 2.3vw, 1.4rem);
  }
}
