@charset "UTF-8";
/*--
  break points
--*/
/*--
  colors
--*/
/*--
  easing
 */
/*--
  easing
 */
/*--
  line-height
  - XDの行送り / フォントサイズ
--*/
/*--
  letter-spacing
  - XDのAV / 1000
--*/
/*--
  calcVw
  - 主にSPで使う想定の関数。
  - 第2引数のデフォルトはsp。sp以外で使用する際はtb || pcを指定する
  - デザイン上の子要素のwidth / デザイン上の画面サイズを算出する
  - デザイン上の画面サイズ = pc: 1366, sp: 375
  - 第3引数にtrueを指定すると、マイナスで算出する
--*/
/*--
  box-shadow
- $x: XDのドロップシャドウのX
- $y: XDのドロップシャドウのY
- $b: XDのドロップシャドウのB
--*/
/*--
  media queries
  - $breakpoint: _variables.scssの$breakpointsからキーを選んで入力。デフォルトはsp
--*/
/*--------------------------------------------------
  hover animation
  - ホバーでふんわり透過
  - aタグ以外にも適用可
  - $property:      all, opacity, width, border-widthなど
  - $time:          500など
  - $isOpacity:     デフォルトはtrue、falseを指定するとhover時に透過しない
  - $transparency:  デフォルトは0.6、値を指定するとhover時の透過度を変更、$isOpacityをfalseにした場合はhover時に透過しない
--------------------------------------------------*/
/*--------------------------------------------------
  hover時のタイミングだけ管理
  - aタグはデフォルトで付与しているため、追加不要
--------------------------------------------------*/
/*--------------------------------------------------
  hover:透過, focus:囲みborder
  - $outLineColor: outlineの線の色
--------------------------------------------------*/
/*--------------------------------------------------
  hover:透過+border, focus:囲みborder
  - $outLineColor: outlineの線の色
--------------------------------------------------*/
/*--------------------------------------------------
  抜粋ベース
--------------------------------------------------*/
/*--
  SVG
--*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("/font/NotoSansJP-Regular.woff2") format("woff2"), url("/font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("/font/NotoSansJP-Bold.woff2") format("woff2"), url("/font/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Barlow Condensed";
  src: url("/font/BarlowCondensed-Regular.woff2") format("woff2"), url("/font/BarlowCondensed-Regular.woff") format("woff");
}
/*--------------------------------------------------
  base style
--*/
:root {
  --text: #fff;
  --bs-body-color: #000;
  --text-turn: #fff;
  --text-link: #fff;
  --font-family: 'Noto Sans JP', sans-serif;
  --content-size: 1170px;
  --border-radius: 5px;
  --bs-gutter-x: 25px;
}

::placeholder {
  color: #474848;
}

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
  background: var(--text);
  font-family: var(--font-family);
  font-weight: 400;
}
body:has(main.main) {
  color: var(--text);
  background: var(--bs-body-color);
}
body:has(main.main) a,
body:has(main.main) a:hover,
body:has(main.main) a:visited,
body:has(main.main) a:active {
  color: var(--text-link);
}

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

.container {
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (min-width: 992px) {
  .container {
    padding-right: var(--bs-gutter-x);
    padding-left: var(--bs-gutter-x);
    max-width: var(--content-size);
    width: 100%;
  }
}
@media screen and (min-width: 1300px) {
  .container {
    max-width: var(--content-size);
    width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: var(--content-size);
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: var(--content-size);
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .sp-only {
    display: none;
  }
}

/*--------------------------------------------------
  common-sec
--*/
.common-sec:not(:first-child) {
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .common-sec:not(:first-child) {
    margin-top: 112px;
  }
}
.common-sec a:not(.common-sec__button) {
  text-decoration: underline;
}
.common-sec a:not(.common-sec__button)[target=_blank]::after {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.25em;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/images/common/icon_blank.svg);
  mask-image: url(/images/common/icon_blank.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
.common-sec a:not(.common-sec__button):hover {
  text-decoration: none;
}
.common-sec__title {
  position: relative;
  margin: 0 -10px 36px;
  padding: 0 10px 29px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #A7A9AB;
}
@media screen and (min-width: 992px) {
  .common-sec__title {
    margin: 0 0 36px;
    padding: 0 0 30px;
  }
}
.common-sec__title02 {
  margin: 0 0 13px;
  line-height: 1.5;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .common-sec__title02 {
    margin-bottom: 19px;
  }
}
.common-sec__title03 {
  margin: 1.5em 0 0;
  line-height: 1.5;
  font-size: 1.8rem;
  font-weight: bold;
}
.common-sec__title04 {
  margin: 1.5em 0 0;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: bold;
}
.common-sec__title04::before {
  content: "＜";
}
.common-sec__title04::after {
  content: "＞";
}
.common-sec__title05 {
  margin: 15px 0 0;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: bold;
}
.common-sec__text {
  margin: 15px 0 0;
  line-height: 1.5;
  font-size: 1.6rem;
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__text.right {
  text-align: right;
}
.common-sec__text.indent01 {
  padding-left: 1em;
}
.common-sec__text.box {
  padding: 20px;
  background: none;
  border: 1px solid #868686;
  border-radius: 5px;
  box-shadow: none;
}
.common-sec__text.mb15 {
  margin-bottom: 15px;
}
.common-sec__button {
  transition: 400ms ease-out;
  transition-property: color, background;
  transition-delay: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 63px auto 0;
  padding: 10px;
  max-width: 480px;
  width: 100%;
  min-height: 55px;
  font-weight: bold;
  font-size: 1.6rem;
  border: 2px solid #454545;
  border-radius: 2px;
}
@media screen and (min-width: 992px) {
  .common-sec__button {
    max-width: 100%;
  }
}
.common-sec__button:hover {
  text-decoration: none;
  background: #fff;
}
body:has(main.main) .common-sec__button:hover {
  color: #000;
}
:root .common-sec__button:hover:not(.data)::after {
  background: #000;
}
.common-sec__button[target=_blank]::after {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  content: "";
  margin-left: 12px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/images/common/icon_blank.svg);
  mask-image: url(/images/common/icon_blank.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
.common-sec__button.list {
  background: rgba(15, 68, 120, 0.5);
  border-color: #96ABBA;
}
.common-sec__button.list:hover {
  background: #0F4478;
}
body:has(main.main) .common-sec__button.list:hover {
  color: var(--text-link);
}
.common-sec__button.list:hover::before {
  background: var(--text-link);
}
.common-sec__button.list::before {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  content: "";
  margin-right: 12px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/images/common/icon_list.svg);
  mask-image: url(/images/common/icon_list.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
.common-sec__button.data {
  background: rgba(15, 68, 120, 0.5);
  border-color: #96ABBA;
}
.common-sec__button.data:hover {
  background: #0F4478;
}
body:has(main.main) .common-sec__button.data:hover {
  color: var(--text-link);
}
.common-sec__button.data:hover::before {
  background: var(--text-link);
}
.common-sec__button.data::before {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  content: "";
  margin-right: 12px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/images/common/icon_data.svg);
  mask-image: url(/images/common/icon_data.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
.common-sec__table {
  margin: 15px 0 0;
  line-height: 1.5;
  font-size: 1.6rem;
  overflow: auto;
}
.common-sec__table table {
  width: 100%;
}
.common-sec__table caption {
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}
.common-sec__table th,
.common-sec__table td {
  padding: 3px 5px;
  border: 1px solid #fff;
}
.common-sec__table th {
  white-space: nowrap;
  background: #474848;
}
.common-sec__table th.w30p {
  width: 30%;
}
.common-sec__table02 {
  margin: 15px 0 0;
  line-height: 1.5;
  font-size: 1.6rem;
  overflow: auto;
}
.common-sec__table02 table {
  width: 100%;
}
.common-sec__table02 caption {
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
}
.common-sec__table02 th,
.common-sec__table02 td {
  padding: 3px 5px;
  border: 1px solid #fff;
}
.common-sec__table02 th {
  width: 30%;
  white-space: nowrap;
  background: #474848;
}
.common-sec__list {
  margin: 15px 0 0;
  padding: 0;
  line-height: 1.87;
  font-size: 1.6rem;
}
.common-sec__list li {
  list-style: none;
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__list li::before {
  content: "・";
}
.common-sec__list02 {
  padding: 0;
  line-height: 1.87;
  font-size: 1.6rem;
}
.common-sec__list02 li {
  position: relative;
  margin-top: 15px;
  padding-left: 1em;
  list-style: none;
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__list02 li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.common-sec__list02 .common-sec__text {
  margin-top: 5px;
}
.common-sec__numberlist {
  counter-reset: olList;
  margin-top: 15px;
  padding: 0;
  line-height: 1.87;
  font-size: 1.6rem;
}
.common-sec__numberlist li {
  counter-increment: olList;
  position: relative;
  padding-left: 1.5em;
  list-style: none;
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__numberlist li::before {
  content: counter(olList) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.common-sec__numberlist02 {
  counter-reset: olList;
  padding: 0;
  line-height: 1.87;
  font-size: 1.6rem;
}
.common-sec__numberlist02 li {
  counter-increment: olList;
  position: relative;
  margin-top: 15px;
  padding-left: 1.5em;
  list-style: none;
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__numberlist02 li::before {
  content: counter(olList) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.common-sec__pre {
  margin: 5px 0 0;
  padding: 1em;
  color: var(--text);
  background: rgba(15, 68, 120, 0.5);
  border: 2px solid #96ABBA;
  border-radius: 2px;
}
.common-sec__define {
  margin: 1.5em 0 0;
  font-size: 1.6rem;
}
.common-sec__define dt {
  margin: 1em 0 0.5em;
  font-weight: bold;
}
.common-sec__define dd {
  margin: 0;
  line-height: 1.87;
  letter-spacing: -0.02em;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .common-sec__define dd {
    letter-spacing: -0.08em;
  }
}

/*--------------------------------------------------
  anchor
--*/
.anchor {
  display: flex;
  flex-direction: column;
  gap: 35px;
  font-size: 2rem;
}
.anchor__item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .anchor__item {
    flex-direction: row;
    gap: 32px;
  }
}
.anchor__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 180px;
  height: 50px;
  background: #454545;
  border-radius: 25px;
}
@media screen and (min-width: 992px) {
  .anchor__title {
    margin: 0;
  }
}
.anchor__content {
  flex: 1;
}

.anchor-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .anchor-list {
    padding: 10px 0 0;
  }
}
.anchor-list__item {
  list-style: none;
}

/*--------------------------------------------------
  tabs
--*/
.tabs__title {
  position: relative;
  margin: 0 -10px 48px;
  padding: 0 10px 13px;
  font-size: 3.6rem;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #A7A9AB;
}
@media screen and (min-width: 992px) {
  .tabs__title {
    margin: 0 0 48px;
    padding: 0 0 13px;
  }
}
.tabs__item[hidden] {
  display: block;
  height: 0;
  overflow: hidden;
}
.tabs__link {
  display: inline-block;
  margin: 29px 0 0;
  color: #fff;
  font-size: 1.8rem;
}
.tabs__link:hover {
  color: #fff;
}
.tabs__link::before {
  content: "";
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 9px;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  background: url(/images/common/icon_file.svg) no-repeat 50% 50%;
  background-size: cover;
}
.tabs__biz {
  display: flex;
  justify-content: center;
  max-width: calc(100vw - 20px) !important;
}

.tabs-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
@media screen and (min-width: 992px) {
  .tabs-list {
    flex-direction: row;
  }
}
.tabs-list__item {
  list-style: none;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .tabs-list__item {
    width: auto;
  }
}
.tabs-list__button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 10px;
  width: 100%;
  height: 66px;
}
.tabs-list__button:hover, .tabs-list__button[aria-selected=true] {
  font-weight: bold;
  background: #0A4C61;
}

/*--
commons   共通要素のレイアウト(common, footer, コンテンツwrapperなど)
pages/               ページ
--*/
.navbar {
  display: block;
  padding: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  color: #fff;
  background: #000;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .container::before, .header .container::after {
  display: none;
}
.header .container > .navbar-collapse {
  padding: 0;
}
.header .account-masthead .container {
  justify-content: flex-end;
}
.header__logo {
  margin: 0;
}
.header__logo a {
  display: flex;
  align-items: stretch;
  height: 80px;
}
.header__logo img {
  width: 324px;
}
.header__bottom {
  background: #474848;
}
@media screen and (max-width: 991px) {
  .header__bottom {
    display: none;
  }
}
.header .navbar {
  margin: 0;
  border: none;
}
.header .navbar-nav {
  display: flex;
  align-items: center;
  float: none;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  list-style: none;
}
.header .navbar-nav li {
  position: relative;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav li {
    float: none;
  }
}
.header .navbar-nav li ul {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  width: 100%;
  background: #474848;
}
.header .navbar-nav li li {
  list-style: none;
}
.header .navbar-nav li li a {
  padding: 13px 10px 15px;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav li li a {
    justify-content: flex-start;
    padding: 0 10px;
  }
}
.header .navbar-nav a {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  display: flex;
  align-items: center;
  padding: 23px 10px 25px;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav a {
    justify-content: center;
    padding: 0 10px;
    height: 60px;
  }
}
.header .navbar-nav a:hover {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav a:hover {
    background: #003D5D;
  }
}
.header .navbar-nav a[target=_blank]::after {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  content: "";
  margin-left: 12px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/images/common/icon_blank.svg);
  mask-image: url(/images/common/icon_blank.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
.header details {
  position: relative;
}
@media screen and (min-width: 992px) {
  .header details[open] summary::after {
    transform: rotateX(180deg);
  }
}
.header summary {
  display: flex;
  align-items: center;
  padding: 13px 10px 15px;
  list-style: none;
  pointer-events: none;
}
@media screen and (min-width: 992px) {
  .header summary {
    transition: 400ms ease-out;
    transition-property: background;
    transition-delay: 0;
    padding: 0 10px;
    height: 60px;
    pointer-events: auto;
    cursor: pointer;
  }
  .header summary:hover {
    background: #003D5D;
  }
  .header summary:hover::after {
    transform: rotateX(180deg);
  }
}
.header summary::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 992px) {
  .header summary::after {
    content: "";
    display: block;
    margin-left: 3px;
    width: 24px;
    height: 24px;
    background: url(/images/common/icon_arrow.svg) no-repeat 50% 50%;
    background-size: cover;
    transform: rotateX(0deg);
    transition: 400ms ease-out;
    transition-property: transform;
    transition-delay: 0;
  }
}
.header .navbar-toggle {
  float: none;
}
@media screen and (max-width: 991px) {
  .header .navbar-toggle {
    display: block;
  }
}
.header .navbar-toggle .fa {
  font-size: 2rem;
}
.header .navbar-toggler {
  position: relative;
  padding: 0;
  width: 44px;
  height: 44px;
  border: none;
}
.header .navbar-toggler[aria-expanded=true] span:nth-child(1) {
  top: calc(50% - 2px);
  left: calc(50% - 2px);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .navbar-toggler[aria-expanded=true] span:nth-child(2) {
  top: calc(50% + 2px);
  left: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(-45deg);
}
.header .navbar-toggler[aria-expanded=true] span:nth-child(3) {
  top: calc(50% - 2px);
  left: calc(50% + 2px);
  transform: translate(-50%, -50%) rotate(45deg);
}
.header .navbar-toggler span {
  transition: 400ms ease-out;
  transition-property: transform;
  transition-delay: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  padding: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.header .navbar-toggler span:nth-child(1) {
  top: 8px;
}
.header .navbar-toggler span:nth-child(2) {
  top: 17px;
}
.header .navbar-toggler span:nth-child(3) {
  top: 26px;
}
.header__account {
  position: absolute;
  top: 100%;
  right: 20px;
}
@media screen and (max-width: 991px) {
  .header__account {
    display: none;
  }
}
.header__account a {
  display: block;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  background: #0A4C61;
  border-radius: 0 0 5px 5px;
  transition: 400ms ease-out;
  transition-property: opacity;
  transition-delay: 0;
}
.header__account a:hover {
  color: #fff;
  opacity: 0.6;
  text-decoration: none;
}

.footer {
  color: #fff;
}
.footer a {
  color: #fff;
}
.footer .container::before {
  display: none;
}
.footer .container > .navbar-collapse {
  padding: 0;
  box-shadow: none;
  border: none;
}
.footer__pagetop {
  position: fixed;
  z-index: 10;
  bottom: 12px;
  right: 12px;
}
@media screen and (min-width: 992px) {
  .footer__pagetop {
    bottom: 30px;
    right: 30px;
  }
}
.footer__top {
  background: #474848;
}
@media screen and (min-width: 992px) {
  .footer__top {
    display: none;
  }
}
.footer__top .container {
  padding: 5px 10px;
}
@media screen and (min-width: 992px) {
  .footer__top .container {
    padding: 0 25px;
  }
}
@media screen and (max-width: 991px) {
  .footer__top .collapse {
    display: block;
  }
}
.footer__logo {
  margin: 0;
}
.footer__logo a {
  display: flex;
  align-items: stretch;
  height: 80px;
}
.footer__logo img {
  width: 324px;
}
@media screen and (max-width: 991px) {
  .footer .main-navbar {
    margin: 0 -10px;
    background: #474848;
  }
}
.footer .navbar-nav {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  list-style: none;
}
.footer .navbar-nav li {
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer .navbar-nav li {
    float: none;
  }
}
.footer .navbar-nav li li {
  list-style: none;
}
.footer .navbar-nav li li a {
  padding: 5px 10px;
}
.footer .navbar-nav a {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  display: flex;
  align-items: center;
  padding: 5px 10px;
  color: #fff;
}
.footer .navbar-nav a:hover {
  text-decoration: none;
}
.footer .navbar-nav a[target=_blank]::after {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  content: "";
  margin-left: 12px;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(/images/common/icon_blank.svg);
  mask-image: url(/images/common/icon_blank.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background: #fff;
}
.footer details {
  position: relative;
}
.footer summary {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  list-style: none;
}
.footer summary::-webkit-details-marker {
  display: none;
}
.footer__bottom {
  background: #1E1E1E;
}
.footer__bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}
@media screen and (min-width: 992px) {
  .footer__bottom .container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 25px;
    height: 160px;
  }
}
.footer__bottom .container::after {
  display: none;
}
.footer__copy {
  font-size: 1.6rem;
}

.main {
  position: relative;
  z-index: 0;
  padding: 147px 0 50px;
  background: none;
}
@media screen and (min-width: 992px) {
  .main {
    padding: 208px 0 83px;
  }
}
.main.top {
  position: relative;
  padding-top: 114px;
  background: url(/images/home/bg_hero.webp) no-repeat 50% 0;
  background-size: 2060px auto;
}
@media screen and (min-width: 992px) {
  .main.top {
    padding-top: 211px;
    background-size: 100% auto;
  }
}
.main.top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, #000 1082px, #000 1082px, #000 100%);
}

/*--------------------------------------------------
  top-section
--*/
.top-section {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
@media screen and (min-width: 992px) {
  .top-section {
    margin-top: 80px;
  }
}
.top-section.top-hero {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .top-section__inner:has(.top-section) {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 44px;
    margin-top: 80px;
  }
  .top-section__inner:has(.top-section)::before, .top-section__inner:has(.top-section)::after {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .top-section__inner:has(.top-section) .top-section {
    margin-top: 0;
  }
}

/*--------------------------------------------------
  top-hero
--*/
.top-hero__title {
  margin: 0;
  padding: 0 0 0 24px;
}
@media screen and (min-width: 992px) {
  .top-hero__title {
    padding: 0;
    text-align: center;
  }
}
.top-hero__list {
  display: flex;
  gap: 20px;
  margin: 48px 10px 0;
}
@media screen and (min-width: 992px) {
  .top-hero__list {
    justify-content: space-between;
    gap: 57px;
    margin-top: 54px;
    padding: 0 48px;
  }
}
.top-hero__item {
  display: flex;
  gap: 6px;
  width: calc(50% - 10px);
}
@media screen and (min-width: 992px) {
  .top-hero__item {
    gap: 20px;
  }
}
.top-hero__title02 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  background: #0A4C61;
}
@media screen and (min-width: 992px) {
  .top-hero__title02 {
    width: 47px;
    font-size: 2.4rem;
  }
}
.top-hero__content {
  flex: 1;
  text-align: center;
}
.top-hero__number {
  line-height: 0.6;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 300;
}
@media screen and (min-width: 992px) {
  .top-hero__number {
    font-size: 11rem;
  }
}
.top-hero__last {
  display: block;
  margin-top: 14px;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .top-hero__last {
    font-size: 1.6rem;
  }
}
.top-hero .site-search {
  position: relative;
  float: none !important;
  margin: 50px 10px 0;
  width: calc(100% - 20px);
}
@media screen and (min-width: 992px) {
  .top-hero .site-search {
    margin: 73px 0 0;
    width: 100%;
  }
}
.top-hero .form-control {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  vertical-align: middle;
  box-sizing: border-box;
  padding: 0 52px 0 23px;
  height: 50px !important;
  background: #fff;
  border-radius: 23px;
}
@media screen and (min-width: 992px) {
  .top-hero .form-control {
    padding: 0 23px 0 52px;
    box-shadow: inset 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
.top-hero .form-control {
  color: #000;
}
.top-hero .field .btn-search {
  right: 26px;
  transform: translateY(-50%);
  margin-top: 0;
  width: auto;
  height: auto;
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
  .top-hero .field .btn-search {
    right: auto;
    left: 26px;
  }
}
.top-hero__link {
  margin: 50px 0 0;
  padding: 0 10px;
}
@media screen and (min-width: 992px) {
  .top-hero__link {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 44px;
    margin-top: 40px;
    padding: 0;
  }
}
.top-hero__link .common-sec__button {
  margin-top: 0;
}
.top-hero__link li {
  list-style: none;
  margin-top: 15px;
}
@media screen and (min-width: 992px) {
  .top-hero__link li {
    margin-top: 23px;
  }
}

/*--------------------------------------------------
  top-list
--*/
.top-list {
  margin: -23px 0 0;
  padding: 0;
  font-size: 1.4rem;
}
.top-list__item {
  list-style: none;
  margin: 0 -10px;
  border-bottom: 1px solid #454545;
}
.top-list__link {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  padding: 30px 10px 8px;
  color: #fff;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); /* easeOutSine */
  transition-duration: 0.3s;
}
.top-list__link:hover, .top-list__link:focus-visible {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  transition-duration: 0.1s;
}
.top-list__link:hover {
  opacity: 0.6;
}
.top-list__link:focus-visible {
  outline: 3px solid #fff;
}
.top-list__link:hover {
  text-decoration: none;
}
.top-list__tag {
  padding: 5px 13px;
  background: #4786C2;
  border-radius: 5px;
}
.top-list__title {
  margin-top: 10px;
  font-size: 1.8rem;
  text-decoration: underline;
}
.top-list__date {
  margin-top: 6px;
  color: #A7A9AB;
}

/*--------------------------------------------------
  top-group
--*/
.top-group {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .top-group {
    gap: 40px;
  }
}
.top-group__item {
  list-style: none;
  max-width: calc(50% - 20px);
  text-align: center;
}
@media screen and (max-width: 991px) {
  .top-group__item {
    width: calc(50% - 20px);
  }
}
.top-group__title {
  margin: 14px 0 0;
  font-size: 1.6rem;
}
.top-group a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1); /* easeOutSine */
  transition-duration: 0.3s;
}
.top-group a:hover, .top-group a:focus-visible {
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1); /* easeOutQuart */
  transition-duration: 0.1s;
}
.top-group a:hover {
  opacity: 0.6;
}
.top-group a:focus-visible {
  outline: 3px solid #fff;
}
.top-group a:hover {
  text-decoration: none;
}
.top-group img {
  width: 88px;
  height: auto;
}

/*# sourceMappingURL=custom_theme.css.map */

