@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter&family=Oswald:wght@200..700&family=Noto+Sans+JP:wght@400;700&display=swap");
/*--
  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
--*/
/*--------------------------------------------------
  base style
--*/
:root {
  --text: #000;
  --bs-body-color: #000;
  --text-turn: #fff;
  --text-link: #A82127;
  --font-family: "Inter", "Noto Sans JP", sans-serif;
  --font-family-ja: "Noto Sans JP", sans-serif;
  --content-size: 1170px;
  --border-radius: 5px;
  --bs-gutter-x: 25px;
}

::placeholder {
  color: #474848;
}

html {
  color: var(--text);
}

body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  min-height: 100dvh;
  font-family: var(--font-family);
  font-weight: 400;
}

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

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

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

@media screen and (max-width: 991px) {
  .mobileHidden {
    display: none !important;
  }
}

/*--------------------------------------------------
  common-sec
--*/
.common-sec + .common-sec {
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .common-sec + .common-sec {
    margin-top: 112px;
  }
}
.common-sec .common-sec:not(:first-child) {
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .common-sec .common-sec:not(:first-child) {
    margin-top: 112px;
  }
}
.common-sec a {
  color: #B2B852;
}
.common-sec a:hover {
  color: #B2B852;
}
.common-sec a[href^="mailto:"]::after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: url(/images/common/icon_mail.svg) no-repeat 50% 50%;
  background-size: cover;
}
.common-sec a[target=_blank]::after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: url(/images/common/icon_blank.svg) no-repeat 50% 50%;
  background-size: cover;
}
.common-sec__title {
  position: relative;
  margin: 0 -10px 27px;
  padding-bottom: 9px;
  font-size: 2rem;
  font-family: var(--font-family-ja);
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #B2B852;
}
@media screen and (min-width: 992px) {
  .common-sec__title {
    margin: 0 0 39px;
    padding-bottom: 17px;
  }
}
.common-sec__title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #B2B852;
}
.common-sec__title02 {
  margin: 0 0 13px;
  line-height: 1.5;
  font-family: var(--font-family-ja);
  font-size: 1.25rem;
  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-family: var(--font-family-ja);
  font-size: 1.125rem;
  font-weight: bold;
}
.common-sec__define {
  margin: 34px 0 0;
}
@media screen and (min-width: 992px) {
  .common-sec__define {
    margin-top: 63px;
  }
}
.common-sec__define.center {
  text-align: center;
}
.common-sec__define dt {
  margin: 0 0 13px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .common-sec__define dt {
    margin-bottom: 19px;
  }
}
.common-sec__define dd {
  margin: 15px 0 0;
  line-height: 1.87;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .common-sec__define dd {
    margin: 0;
    letter-spacing: -0.08em;
  }
}
.common-sec__define dd a {
  font-size: 1.25rem;
}
.common-sec__define02 {
  margin: 1.5em 0 0;
  font-size: 1rem;
}
.common-sec__define02 dt {
  margin: 1em 0 0.5em;
  font-family: var(--font-family-ja);
  font-weight: bold;
}
.common-sec__define02 dd {
  margin: 0;
  line-height: 1.87;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .common-sec__define02 dd {
    letter-spacing: -0.08em;
  }
}
.common-sec__text {
  margin: 15px 0 0;
  line-height: 1.87;
  letter-spacing: -0.02em;
  font-size: 1rem;
  word-break: break-all;
  word-wrap: break-word;
}
@media screen and (min-width: 992px) {
  .common-sec__text {
    letter-spacing: -0.08em;
  }
}
.common-sec__text.center {
  text-align: center;
}
.common-sec__list {
  margin: 15px 0 0;
  padding: 0;
  line-height: 1.87;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .common-sec__list {
    letter-spacing: -0.08em;
  }
}
.common-sec__list .common-sec__list {
  margin-top: 0;
  padding-left: 1em;
}
.common-sec__list li {
  list-style: none;
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__list:not(.none) li::before {
  content: "・";
}
.common-sec__list.none li {
  padding-left: 2em;
  text-indent: -2em;
}
.common-sec__list.none li * {
  text-indent: 0;
}
.common-sec__group {
  padding: 15px;
  border: 15px solid #D8ED7B;
  border-radius: 15px;
}
.common-sec pre {
  margin: 0;
  padding: 15px;
  white-space: pre-wrap;
  word-break: break-all;
  word-wrap: break-word;
  border-radius: 5px;
  border: 1px solid #B2B852;
  background: #D8ED7B;
}
.common-sec code {
  word-break: break-all;
  word-wrap: break-word;
}
.common-sec__image {
  margin: 1.5em 0 0;
}
.common-sec__image.border {
  border: 1px solid #404040 !important;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  padding: 18px 0;
  width: 100%;
  color: #fff;
  background: #000;
}
@media screen and (min-width: 992px) {
  .header {
    padding: 0;
  }
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 992px) {
  .header .container {
    max-width: 100%;
  }
}
.header__logo {
  margin-bottom: 0;
  width: 200px;
}
@media screen and (max-width: 991px) {
  .header .main-navbar {
    margin: 18px -25px -18px;
    padding: 0 15px 18px;
    width: 100%;
    order: 2;
    background: rgba(0, 111, 145, 0.95);
  }
}
.header .navbar-nav {
  flex: 1;
  justify-content: space-between;
  font-size: 1.25rem;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav {
    flex: 0 0 auto;
    gap: 5px;
    margin: 0 20px 0 auto;
    font-size: 1rem;
  }
}
.header .navbar-nav li {
  position: relative;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav li {
    border-bottom: none;
  }
}
@media screen and (min-width: 992px) {
  .header .navbar-nav li ul {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    width: 100%;
    background: #000;
  }
}
.header .navbar-nav li li {
  list-style: none;
}
.header .navbar-nav li li:last-child {
  border-bottom: 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 20px;
  }
}
.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 20px;
    height: 60px;
  }
}
.header .navbar-nav a:hover {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav a:hover {
    background: #003D5D;
  }
}
@media screen and (min-width: 992px) {
  .header .navbar-nav a:hover::before {
    background: #D8ED7B;
  }
}
.header .navbar-nav a::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 11px;
  height: 11px;
  background: #000;
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav a::before {
    background: #B2B852;
    transition: 400ms ease-out;
    transition-property: background;
    transition-delay: 0;
  }
}
.header .navbar-nav a::after {
  margin-left: 0.5em;
  color: #B5B6B3;
  font-weight: normal;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .header .navbar-nav a::after {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 1300px) {
  .header .navbar-nav a::after {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .header .navbar-nav a::after {
    display: block;
  }
}
.header details {
  position: relative;
}
@media screen and (min-width: 992px) {
  .header details[open] summary::before {
    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::-webkit-details-marker {
  display: none;
}
@media screen and (min-width: 992px) {
  .header summary::before {
    content: "";
    display: block;
    margin-right: 8px;
    width: 11px;
    height: 11px;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    background: #B2B852;
    transform: rotateX(0deg);
    transition: 400ms ease-out;
    transition-property: transform;
    transition-delay: 0;
  }
}
.header form {
  position: relative;
  margin-top: 18px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .header form {
    margin-top: 0;
    padding: 0;
    width: 194px;
  }
}
.header form input {
  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 30px 0 15px;
  width: 100%;
  height: 34px;
  font-size: 1rem;
  background: #fff;
  border: 1px solid #474848;
  border-radius: 5px;
}
.header form input:placeholder-shown {
  color: #474848;
}
.header form input::-webkit-input-placeholder {
  color: #474848;
}
.header form input:-moz-placeholder {
  color: #474848;
  opacity: 1;
}
.header form input::-moz-placeholder {
  color: #474848;
  opacity: 1;
}
.header form input:-ms-input-placeholder {
  color: #474848;
}
.header form .btn {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 24px;
  height: 24px;
  font-size: 1.125rem;
}
.header .navbar-toggler {
  position: relative;
  padding: 0;
  width: 44px;
  height: 44px;
}
.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[aria-expanded=true] span:nth-child(4) {
  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;
  background: #B2B852;
}
.header .navbar-toggler span:nth-child(4) {
  top: 35px;
  background: #B2B852;
}
.header__account {
  position: absolute;
  top: 100%;
  right: 20px;
}
.header__account a {
  display: block;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  background: #003D5D;
  border-radius: 0 0 5px 5px;
  transition: 400ms ease-out;
  transition-property: background, border;
  transition-delay: 0;
}
.header__account a:hover {
  color: #000;
  background: #00759B;
  text-decoration: none;
}
.header .account-masthead .container {
  justify-content: flex-end;
}

.footer {
  padding-top: 48px;
  color: #fff;
  background: #404040;
}
@media screen and (min-width: 992px) {
  .footer {
    padding-top: 76px;
  }
}
.footer a {
  color: #fff;
}
.footer__pagetop {
  position: fixed;
  z-index: 10;
  bottom: 12px;
  right: 12px;
}
@media screen and (min-width: 992px) {
  .footer__pagetop {
    bottom: 30px;
    right: 30px;
  }
}
.footer__logo {
  margin: 0 auto 46px;
  max-width: 600px;
}
@media screen and (min-width: 992px) {
  .footer__logo {
    margin-bottom: 48px;
  }
}
.footer__top {
  display: none;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .footer__top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
}
.footer__top a {
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}
.footer__top a:hover {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .footer__top a:hover {
    background: #003D5D;
  }
}
.footer__top a:hover::before {
  background: #D8ED7B;
}
.footer__top a::before {
  content: "";
  display: block;
  margin-right: 8px;
  width: 11px;
  height: 11px;
  background: #B2B852;
  transition: 400ms ease-out;
  transition-property: background;
  transition-delay: 0;
}
.footer__bottom {
  font-size: 1.125rem;
  gap: 35px;
}
@media screen and (min-width: 992px) {
  .footer__bottom {
    justify-content: center;
    align-items: center;
    gap: 63px;
    margin-top: 12px;
    font-size: 0.75rem;
  }
}
.footer__bottom li::before {
  content: "・";
  color: #B2B852;
}
.footer__info {
  position: relative;
  margin: 36px 0 0;
  padding: 34px 0 34px;
  text-align: center;
  border-top: 1px solid #B2B852;
}
@media screen and (min-width: 992px) {
  .footer__info {
    margin: 56px 0 0;
    padding: 40px 0 25px;
  }
}
.footer__info::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #B2B852;
}
.footer__info dl {
  margin: 0;
}
.footer__info dt {
  margin-bottom: 17px;
  letter-spacing: 0.5em;
  font-size: 1.75rem;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .footer__info dt {
    margin-bottom: 23px;
  }
}
.footer__info dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (min-width: 992px) {
  .footer__info dd {
    line-height: 2;
  }
}
.footer__space {
  display: block;
}
@media screen and (min-width: 992px) {
  .footer__space {
    display: inline-block;
    width: 1em;
  }
}
.footer__number {
  font-size: 0.875rem;
}
.footer__copy {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  color: var(--text-turn);
  font-size: 0.625rem;
  background: var(--text);
}

.main {
  position: relative;
  z-index: 0;
  padding: 124px 0 80px;
  background: url(/images/common/bg_main.png) repeat 50% 0;
  background-size: cover;
}
@media screen and (min-width: 992px) {
  .main {
    padding-top: 104px;
  }
}
.main.top {
  padding-top: 80px;
}
@media screen and (min-width: 992px) {
  .main.top {
    padding-top: 60px;
  }
}

/*--------------------------------------------------
  top-sec
--*/
.top-sec {
  margin-top: 27px;
  scroll-margin-top: 100px;
}
@media screen and (min-width: 992px) {
  .top-sec {
    margin-top: 61px;
    scroll-margin-top: 80px;
  }
}
.top-sec + .top-sec {
  margin-top: 45px;
}
@media screen and (min-width: 992px) {
  .top-sec + .top-sec {
    margin-top: 112px;
  }
}
.top-sec__section {
  scroll-margin-top: 100px;
}
@media screen and (min-width: 992px) {
  .top-sec__section {
    display: flex;
    flex-direction: column;
    gap: 19px;
    scroll-margin-top: 80px;
  }
}
@media screen and (max-width: 991px) {
  .top-sec__section + .top-sec__section:has(.top-sec__image:not(.mobileHidden)) {
    scroll-margin-top: 0;
    margin-top: 63px;
    padding-top: 63px;
    border-top: 1px dashed #B2B852;
  }
}
@media screen and (min-width: 992px) {
  .top-sec__section + .top-sec__section {
    scroll-margin-top: 0;
    margin-top: 63px;
    padding-top: 63px;
    border-top: 1px dashed #B2B852;
  }
}
.top-sec__title {
  position: relative;
  margin: 0 -10px 27px;
  padding-bottom: 9px;
  font-size: 2rem;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #B2B852;
}
@media screen and (min-width: 992px) {
  .top-sec__title {
    margin: 0 0 39px;
    padding-bottom: 17px;
  }
}
.top-sec__title::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #B2B852;
}
.top-sec h3 {
  font-weight: normal;
}
.top-sec__image {
  margin: 0;
  overflow-x: hidden;
}
.top-sec__image img {
  border: 1px solid #dedede;
  border-radius: 5px;
}
@media screen and (min-width: 992px) {
  .top-sec__image img {
    border-radius: 10px;
  }
}
.top-sec__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 13px 0 0;
  padding: 5px 10px;
  min-height: 46px;
  color: #000;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  background: #D8ED7B;
  border: 5px solid #B2B852;
  border-radius: 43px;
}
@media screen and (max-width: 991px) {
  .top-sec__link:first-child {
    margin: 0 0 13px;
  }
}
@media screen and (min-width: 992px) {
  .top-sec__link {
    margin: -3px auto 0;
    max-width: 330px;
    width: 100%;
    transition: 400ms ease-out;
    transition-property: color background;
    transition-delay: 0;
  }
  .top-sec__link:hover {
    color: #000;
    background: #B2B852;
    text-decoration: none;
  }
}
.top-sec__link[target=_blank]::after {
  content: "";
  position: relative;
  top: -1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: url(/images/common/icon_blank.svg) no-repeat 50% 50%;
  background-size: cover;
}
.top-sec__link.sp-only {
  position: relative;
  padding: 10px 28px 10px 10px;
  background: #F2F7E2;
  border-width: 2px;
  border-radius: 10px;
}
.top-sec__link.sp-only[target=_blank]::after {
  position: absolute;
  top: 50%;
  right: 4px;
  margin: 0;
  transform: translateY(-50%);
}
.top-sec__text {
  margin: 15px 0 0;
  line-height: 1.87;
  letter-spacing: -0.02em;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .top-sec__text {
    margin: 0;
    letter-spacing: -0.08em;
  }
}
.top-sec__biz {
  display: flex;
  justify-content: center;
  max-width: calc(100vw - 50px) !important;
}

@media screen and (max-width: 991px) {
  #sec06 .top-sec__section:nth-child(3) {
    margin-top: 13px;
  }
}

/*--------------------------------------------------
  top-hero
--*/
.top-hero {
  position: relative;
  padding-top: 41px;
  background: url(/images/home/bg_hero.png) no-repeat 65% -180px, linear-gradient(180deg, #00769c, #004d64);
  background-size: auto 1560px;
  overflow: clip;
}
@media screen and (min-width: 992px) {
  .top-hero {
    padding-top: 115px;
    background-position: 50% 15%;
    background-size: auto 1438px;
  }
}
.top-hero__title {
  margin-bottom: 25px;
}
@media screen and (min-width: 992px) {
  .top-hero__title {
    margin-bottom: 59px;
  }
}
.top-hero__title img:nth-child(1) {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .top-hero__title img:nth-child(1) {
    display: none;
  }
}
.top-hero__title img:nth-child(2) {
  display: none;
}
@media screen and (min-width: 992px) {
  .top-hero__title img:nth-child(2) {
    display: inline;
  }
}
.top-hero__define {
  margin: 0;
}
@media screen and (min-width: 992px) {
  .top-hero__define {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr repeat(2, auto);
    grid-column-gap: 40px;
  }
}
@media screen and (min-width: 992px) {
  .top-hero__define::before {
    content: "";
    grid-area: 1/2/2/3;
  }
}
.top-hero__define div {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding: 10px 0 21px;
  border-bottom: 1px dashed #fff;
}
@media screen and (min-width: 992px) {
  .top-hero__define div {
    padding: 16px 0 15px;
    border-color: #D8ED7B;
  }
}
.top-hero__define div:nth-child(1) dt, .top-hero__define div:nth-child(2) dt {
  letter-spacing: 0.3em;
  text-indent: 0.3em;
}
.top-hero__define div:nth-child(1) {
  padding-bottom: 17px;
}
@media screen and (min-width: 992px) {
  .top-hero__define div:nth-child(1) {
    grid-area: 1/1/3/2;
  }
}
.top-hero__define div:nth-child(1) dt {
  margin-right: 15px;
}
.top-hero__define div:nth-child(1) dd {
  line-height: 1;
  font-size: 5.375rem;
  font-weight: 300;
}
@media screen and (min-width: 992px) {
  .top-hero__define div:nth-child(1) dd {
    font-size: 7.5rem;
  }
}
@media screen and (min-width: 992px) {
  .top-hero__define div:nth-child(1) span {
    margin-left: 10px;
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 992px) {
  .top-hero__define div:nth-child(2) {
    grid-area: 3/1/4/2;
  }
}
@media screen and (min-width: 992px) {
  .top-hero__define div:nth-child(3) {
    grid-area: 2/2/3/3;
  }
}
@media screen and (min-width: 992px) {
  .top-hero__define div:nth-child(4) {
    grid-area: 3/2/4/3;
  }
}
.top-hero__define dt {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 19px;
  width: 80px;
  height: 30px;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  background: #D8ED7B;
}
@media screen and (min-width: 992px) {
  .top-hero__define dt {
    margin-right: 23px;
  }
}
.top-hero__define dd {
  flex: 1;
  position: relative;
  bottom: -10px;
  margin: 0;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 2.25rem;
}
.top-hero__define span {
  position: relative;
  margin-left: 4px;
  color: #D8ED7B;
  font-family: var(--font-family);
  font-size: 1.375rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .top-hero__define span {
    top: -2px;
    margin-left: 7px;
  }
}
.top-hero__time {
  margin: 13px 0 0;
  color: #fff;
  text-align: right;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .top-hero__time {
    margin-top: 15px;
  }
}
.top-hero__link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto 0;
  height: 60px;
  color: #000;
  font-size: 1.125rem;
  font-weight: bold;
  background: #D8ED7B;
  border: 5px solid #B2B852;
  border-radius: 43px;
}
@media screen and (min-width: 992px) {
  .top-hero__link {
    margin-top: 56px;
    width: 330px;
    transition: 400ms ease-out;
    transition-property: color, background;
    transition-delay: 0;
  }
  .top-hero__link:hover {
    color: #000;
    background: #B2B852;
    text-decoration: none;
  }
}
.top-hero__section02 {
  position: relative;
  margin: 42px -25px 0;
}
@media screen and (min-width: 992px) {
  .top-hero__section02 {
    margin: 55px 0 0;
  }
}
.top-hero__section02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #057897;
  mix-blend-mode: multiply;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .top-hero__section02::before {
    left: 50%;
    transform: translateX(-50%);
    width: 100dvw;
  }
}
.top-hero__section02 dt {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .top-hero__section02 dt {
    display: none;
  }
}
.top-hero__section02 dd {
  position: relative;
  z-index: 1;
  padding: 0 25px 25px;
}
@media screen and (min-width: 992px) {
  .top-hero__section02 dd {
    padding: 34px 0;
  }
}
.top-hero__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;
  width: 100%;
  height: 103px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
}
.top-hero__button[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.top-hero__button::before {
  content: "";
  margin-right: 12px;
  width: 56px;
  height: 56px;
  background: url(/images/home/icon_menu.svg) no-repeat 50% 50%;
  background-size: contain;
}
.top-hero__button::after {
  content: "";
  margin-left: 18px;
  width: 60px;
  height: 60px;
  background: url(/images/home/icon_arrow.svg) no-repeat 50% 50%;
  background-size: contain;
}
.top-hero__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .top-hero__list {
    gap: 17px 11px;
  }
}
.top-hero__list li {
  list-style: none;
}
.top-hero__list a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  height: 46px;
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  background: #003D5D;
  border: 5px solid #00759B;
  border-radius: 43px;
}
@media screen and (min-width: 992px) {
  .top-hero__list a {
    height: 60px;
    font-size: 1.125rem;
    transition: 400ms ease-out;
    transition-property: background, border;
    transition-delay: 0;
  }
  .top-hero__list a:hover {
    color: #000;
    background: #00759B;
    text-decoration: none;
  }
}
.top-hero__news {
  margin: 55px auto;
  padding: 12px;
  max-width: 600px;
  color: #fff;
  font-weight: bold;
  font-size: 0.875rem;
  text-align: center;
  border: 5px solid #fff;
}
.top-hero__news dt {
  text-align: center;
}
.top-hero__news dd {
  margin: 0;
}

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