@charset "UTF-8";
/*
reset.css
MIT License
Copyright (c) 2022 Mayank
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1.5;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border-style: solid;
}

:where(a) {
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.inline {
  display: inline;
}

.flex {
  display: -webkit-box;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: inline-flex;
}

.table {
  display: table;
}

.inline-table {
  display: inline-table;
}

.flow-root {
  display: flow-root;
}

.grid {
  display: grid;
}

.inline-grid {
  display: inline-grid;
}

.contents {
  display: contents;
}

.list-item {
  display: list-item;
}

.hidden {
  display: none;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
}

.flex-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}

.flex-col-reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
          flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-normal {
  -webkit-box-pack: normal;
          justify-content: normal;
}

.justify-start {
  -webkit-box-pack: start;
          justify-content: flex-start;
}

.justify-end {
  -webkit-box-pack: end;
          justify-content: flex-end;
}

.justify-center {
  -webkit-box-pack: center;
          justify-content: center;
}

.justify-between {
  -webkit-box-pack: justify;
          justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  -webkit-box-pack: space-evenly;
          justify-content: space-evenly;
}

.content-normal {
  align-content: normal;
}

.content-start {
  align-content: flex-start;
}

.content-end {
  align-content: flex-end;
}

.content-center {
  align-content: center;
}

.content-between {
  align-content: space-between;
}

.content-around {
  align-content: space-around;
}

.content-evenly {
  align-content: space-evenly;
}

.content-baseline {
  align-content: baseline;
}

.content-stretch {
  align-content: stretch;
}

.items-start {
  -webkit-box-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
          align-items: flex-end;
}

.items-center {
  -webkit-box-align: center;
          align-items: center;
}

.items-baseline {
  -webkit-box-align: baseline;
          align-items: baseline;
}

.items-stretch {
  -webkit-box-align: stretch;
          align-items: stretch;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.overflow-hidden {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

:root {
  --font-24-20: clamp(1.25rem, 0.9462rem + 0.6329vw, 1.5rem);
  --font-20-17: clamp(1.0625rem, 0.8347rem + 0.4747vw, 1.25rem);
  --font-16-14: clamp(0.9375rem, 0.8616rem + 0.1582vw, 1rem);
}

html {
  font-size: 16px;
  color-scheme: light !important;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

a.icon:hover,
a.icon:focus {
  -webkit-transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
  transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
  -webkit-animation: gelatine 0.5s 1;
  animation: gelatine 0.5s 1;
}

a.scale:hover, a.scale:focus {
  overflow: hidden;
}
a.scale:hover img, a.scale:focus img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

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

ul,
ol {
  list-style: none;
}

body {
  position: relative;
  width: 100%;
  min-width: 1px;
  font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, "MS UI Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 100%;
  font-weight: 500;
  line-height: 1.5;
  color: #131313;
  overflow-wrap: break-word;
  word-break: break-all;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-kerning: normal;
  font-kerning: normal;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1024px;
  }
}
body > svg {
  position: absolute;
  width: 1px;
  height: 1px;
  top: -1px;
  left: -1px;
}

@media (width >= 768px) {
  .pc-none {
    display: none !important;
  }
}

@media (width < 768px) {
  .sp-none {
    display: none !important;
  }
}

.zen {
  font-family: "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 500 !important;
}

.din {
  font-family: "DIN Alternate", "Tahoma", sans-serif;
}

.alata {
  font-family: "Alata", sans-serif;
  font-weight: 400 !important;
  font-style: normal;
}

/* font-size */
.font-size-1 {
  font-size: 63%;
}

.font-size-2 {
  font-size: 69%;
}

.font-size-3 {
  font-size: 75%;
}

.font-size-4 {
  font-size: 82%;
}

.font-size-5 {
  font-size: 88%;
}

.font-size-6 {
  font-size: 94%;
}

/* .font-size {font-size:100%;} */
.font-size-7 {
  font-size: 107%;
}

.font-size-8 {
  font-size: 113%;
}

.font-size-9 {
  font-size: 119%;
}

.font-size-10 {
  font-size: 125%;
}

.font-size-11 {
  font-size: 132%;
}

.font-size-12 {
  font-size: 138%;
}

.font-size-13 {
  font-size: 144%;
}

.font-size-14 {
  font-size: 150%;
}

.font-size-15 {
  font-size: 157%;
}

.font-size-16 {
  font-size: 163%;
}

/* font-color */
.font-color-1 {
  color: #000000;
}

/*- - - - - - - - - - - - - - - - - - - */
/* パティング ボトム
/*- - - - - - - - - - - - - - - - - - - */
.pb-0 {
  padding-bottom: 0px !important;
}

.pb-1 {
  padding-bottom: 1px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pb-3 {
  padding-bottom: 3px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

.pb-5 {
  padding-bottom: 5px !important;
}

.pb-6 {
  padding-bottom: 6px !important;
}

.pb-7 {
  padding-bottom: 7px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-9 {
  padding-bottom: 9px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pb-11 {
  padding-bottom: 11px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pb-13 {
  padding-bottom: 13px !important;
}

.pb-14 {
  padding-bottom: 14px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pb-16 {
  padding-bottom: 16px !important;
}

.pb-17 {
  padding-bottom: 17px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

.pb-19 {
  padding-bottom: 19px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pb-25 {
  padding-bottom: 25px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pb-45 {
  padding-bottom: 45px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

/*- - - - - - - - - - - - - - - - - - - */
/* マージン ボトム
/*- - - - - - - - - - - - - - - - - - - */
.mb-0 {
  margin-bottom: 0px !important;
}

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-11 {
  margin-bottom: 11px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

.mb-14 {
  margin-bottom: 14px !important;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mb-16 {
  margin-bottom: 16px !important;
}

.mb-17 {
  margin-bottom: 17px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

.mb-19 {
  margin-bottom: 19px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-25 {
  margin-bottom: 25px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-35 {
  margin-bottom: 35px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-45 {
  margin-bottom: 45px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

@media only screen and (max-width: 767px) {
  .alignright,
  .alignleft {
    float: none;
    margin: 0 auto 10px;
  }
  .mb-0 {
    margin-bottom: 0px !important;
  }
  .mb-1 {
    margin-bottom: 0.5px !important;
  }
  .mb-2 {
    margin-bottom: 1px !important;
  }
  .mb-3 {
    margin-bottom: 1.5px !important;
  }
  .mb-4 {
    margin-bottom: 2px !important;
  }
  .mb-5 {
    margin-bottom: 2.5px !important;
  }
  .mb-6 {
    margin-bottom: 3px !important;
  }
  .mb-7 {
    margin-bottom: 3.5px !important;
  }
  .mb-8 {
    margin-bottom: 4px !important;
  }
  .mb-9 {
    margin-bottom: 4.5px !important;
  }
  .mb-10 {
    margin-bottom: 5px !important;
  }
  .mb-11 {
    margin-bottom: 5.5px !important;
  }
  .mb-12 {
    margin-bottom: 6px !important;
  }
  .mb-13 {
    margin-bottom: 6.5px !important;
  }
  .mb-14 {
    margin-bottom: 7px !important;
  }
  .mb-15 {
    margin-bottom: 7.5px !important;
  }
  .mb-16 {
    margin-bottom: 8px !important;
  }
  .mb-17 {
    margin-bottom: 8.5px !important;
  }
  .mb-18 {
    margin-bottom: 9px !important;
  }
  .mb-19 {
    margin-bottom: 9.5px !important;
  }
  .mb-20 {
    margin-bottom: 10px !important;
  }
  .mb-25 {
    margin-bottom: 12.5px !important;
  }
  .mb-30 {
    margin-bottom: 15px !important;
  }
  .mb-35 {
    margin-bottom: 17.5px !important;
  }
  .mb-40 {
    margin-bottom: 20px !important;
  }
  .mb-45 {
    margin-bottom: 22.5px !important;
  }
  .mb-50 {
    margin-bottom: 25px !important;
  }
}
main {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  main {
    margin-top: 0;
  }
}

.wrap {
  padding-inline: 5.333%;
}
@media screen and (min-width: 768px) {
  .wrap {
    padding-inline: 24px;
  }
}

.container {
  width: min(100%, 1180px);
  margin-left: auto;
  margin-right: auto;
}

.wrap.container {
  width: min(100%, 1224px);
}

#center-block {
  width: min(100%, 1224px);
  margin-left: auto;
  margin-right: auto;
  padding-inline: 5.333%;
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}
@media screen and (min-width: 768px) {
  #center-block {
    padding-inline: 24px;
    padding-bottom: 120px;
  }
}

section {
  position: relative;
  z-index: 1;
}

.page-header ~ section {
  background-color: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}

.header {
  position: absolute;
  inset: 0;
  width: min(98%, 1400px);
  height: 70px;
  margin-inline: auto;
  padding-top: 10px;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .header {
    height: 106px;
    padding-top: 30px;
  }
}
.header__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  min-width: 100%;
  height: 60px;
  padding-inline: 14px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header__inner {
    -webkit-box-pack: end;
            justify-content: flex-end;
    height: 76px;
    padding-inline: 0;
    border-radius: 38px;
  }
}
.header__inner * {
  min-width: 0;
}
.header__logo {
  width: 66.666%;
  margin-right: auto;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .header__logo {
    -webkit-box-flex: 1;
            flex: 1 2 24.3%;
    width: 24.3%;
    padding-left: 1.8%;
  }
}
.header__nav {
  margin-left: 1rem;
}
.header__btn {
  width: 40px;
}

.header-register {
  flex-shrink: 0;
  margin-left: 2.142%;
}
.header-register__list {
  display: -webkit-box;
  display: flex;
  gap: 0 1px;
  width: 100%;
}
.header-register__item {
  -webkit-box-flex: 0;
          flex: 0 0 136px;
  max-width: 136px;
  height: 76px;
}
@media (width < 1300px) {
  .header-register__item {
    -webkit-box-flex: 0;
            flex: 0 0 110px;
    max-width: 110px;
  }
}
.header-register__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 5px;
  width: 136px;
  height: 100%;
}
@media (width < 1300px) {
  .header-register__item a {
    gap: 0 2px;
    -webkit-box-flex: 0;
            flex: 0 0 110px;
    max-width: 110px;
  }
}
.header-register__item a p {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  font-size: clamp(0.625rem, 0.3212rem + 0.6329vw, 0.875rem);
  color: #fff;
}
.header-register__item a p span {
  font-size: 10px;
}
@media (hover: hover) {
  .header-register__item a:hover {
    opacity: 0.8;
  }
}
.header-register__item.login a {
  background-color: #3e4d6e;
}
@media (width < 1300px) {
  .header-register__item.login a svg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
.header-register__item.signin a {
  padding-right: 8px;
  background-color: #ed7269;
}
@media (width < 1300px) {
  .header-register__item.signin a svg {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media screen and (min-width: 768px) {
  .header .header-register {
    border-radius: 0 38px 38px 0;
    overflow: hidden;
  }
}

.header-register-logged-in {
  -webkit-box-flex: 0;
          flex: 0 0 186px;
  max-width: 186px;
  height: 76px;
}
@media (width < 1300px) {
  .header-register-logged-in {
    -webkit-box-flex: 0;
            flex: 0 0 140px;
    max-width: 140px;
  }
}
.header-register-logged-in a {
  background-color: #3e4d6e;
  display: -webkit-box;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 8px;
  width: 186px;
  height: 100%;
}
@media (width < 1300px) {
  .header-register-logged-in a {
    gap: 0 5px;
    -webkit-box-flex: 0;
            flex: 0 0 140px;
    max-width: 140px;
  }
}
.header-register-logged-in a p {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  font-size: clamp(0.625rem, 0.3212rem + 0.6329vw, 0.875rem);
  color: #fff;
}
.header-register-logged-in a p span {
  font-size: 10px;
}
@media (hover: hover) {
  .header-register-logged-in a:hover {
    opacity: 0.8;
  }
}

@media screen and (min-width: 768px) {
  .header .header-register-logged-in {
    border-radius: 0 38px 38px 0;
    overflow: hidden;
  }
}

.is-menu-open .header {
  display: none;
}

.fixed-header {
  position: fixed;
  inset: -120% 0 auto;
  width: 100%;
  height: 60px;
  z-index: 1001;
  -webkit-transition: top 0.2s linear;
  transition: top 0.2s linear;
}
.fixed-header.is-fixed-show {
  inset: 0 0 auto;
}
@media screen and (min-width: 768px) {
  .fixed-header {
    height: 106px;
  }
}
.fixed-header__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  min-width: 100%;
  height: 60px;
  padding-inline: 14px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .fixed-header__inner {
    -webkit-box-pack: end;
            justify-content: flex-end;
    height: 76px;
    padding-inline: 0;
  }
}
.fixed-header__inner * {
  min-width: 0;
}
.fixed-header__logo {
  width: 66.666%;
  margin-right: auto;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .fixed-header__logo {
    width: 273px;
    padding-left: 42px;
  }
}
.fixed-header__nav {
  margin-left: 2rem;
}
.fixed-header__btn {
  width: 40px;
}

.is-menu-open .fixed-header {
  inset: 0 0 auto;
}

.footer {
  position: relative;
  padding-bottom: 60px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
}
.footer__bg {
  position: relative;
  width: 100%;
  height: 86px;
}
@media screen and (min-width: 768px) {
  .footer__bg {
    height: 180px;
  }
}
.footer__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.footer__inner {
  padding-bottom: 70px;
  padding-inline: 8%;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-bottom: 0;
    padding-inline: 20px;
  }
}
.footer__primary {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding-block: 48px;
}
@media screen and (min-width: 768px) {
  .footer__primary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    padding-block: 46px 38px;
  }
}
.footer__primary .footer-menu-list-01:first-of-type {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-01:first-of-type {
    -webkit-box-flex: 0;
            flex: 0 0 14.745%;
    max-width: 14.745%;
    width: 100%;
  }
}
.footer__primary .footer-menu-list-01:nth-of-type(2) {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-01:nth-of-type(2) {
    -webkit-box-flex: 0;
            flex: 0 0 20.338%;
    max-width: 20.338%;
    width: 100%;
    margin-top: 0;
  }
}
.footer__primary .footer-menu-list-01:nth-of-type(3) {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  margin-top: 1.2rem;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-01:nth-of-type(3) {
    -webkit-box-flex: 0;
            flex: 0 0 16.355%;
    max-width: 16.355%;
    width: 100%;
    margin-top: 0;
  }
}
.footer__primary .footer-menu-list-01 a {
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #131313;
}
@media (hover: hover) {
  .footer__primary .footer-menu-list-01 a:hover {
    opacity: 0.7;
  }
}
.footer__primary .footer-menu-list-01__title {
  font-size: 0.875rem;
  line-height: 1.25;
}
.footer__primary .footer-menu-list-01__list {
  margin-top: 8px;
}
.footer__primary .footer-menu-list-01__item {
  margin-block: 8px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-01__item {
    margin-block: 5px;
  }
}
.footer__primary .footer-menu-list-01__item a {
  font-size: 0.75rem;
}
.footer__primary .footer-menu-list-02 {
  -webkit-box-flex: 1;
          flex: auto;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-02 {
    -webkit-box-flex: 0;
            flex: 0 0 14.745%;
    max-width: 14.745%;
    width: 100%;
    margin-top: -2px;
  }
}
.footer__primary .footer-menu-list-02 a {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #131313;
}
@media (hover: hover) {
  .footer__primary .footer-menu-list-02 a:hover {
    opacity: 0.7;
  }
}
.footer__primary .footer-menu-list-02__item {
  margin-top: 8px;
  margin-bottom: 8px;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-02__item {
    margin-top: 6px;
    margin-bottom: 6px;
  }
}
.footer__primary .footer-menu-list-02__item:first-of-type {
  margin-top: 0;
}
.footer__primary .footer-menu-list-03 {
  -webkit-box-flex: 1;
          flex-grow: 1;
  margin-top: 0.6rem;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-03 {
    margin-top: -2px;
  }
}
.footer__primary .footer-menu-list-03 a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #999;
}
@media (hover: hover) {
  .footer__primary .footer-menu-list-03 a:hover {
    opacity: 0.7;
  }
}
.footer__primary .footer-menu-list-03__item {
  margin-top: 9px;
  margin-bottom: 9px;
  text-align: left;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .footer__primary .footer-menu-list-03__item {
    margin-top: 7px;
    margin-bottom: 7px;
    text-align: right;
  }
}
.footer__primary .footer-menu-list-03__item:first-of-type {
  margin-top: 0;
}
.footer__secondary {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  padding-block: 50px;
  padding-inline: 10px;
  border-top: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .footer__secondary {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    padding-inline: 0;
  }
}
.footer__secondary .address {
  margin-top: 10px;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .footer__secondary .address {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    margin-left: 2rem;
  }
}
.footer__secondary .address__text {
  display: inline;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .footer__secondary .address__text {
    display: block;
  }
}
.footer__secondary .address__map {
  display: inline-block;
  margin-left: 0.8rem;
  vertical-align: middle;
}
.footer__secondary .address__map a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  color: #131313;
}
.footer__secondary .address__map a span {
  margin-left: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (hover: hover) {
  .footer__secondary .address__map a:hover {
    opacity: 0.7;
  }
}
.footer__copyright {
  display: grid;
  place-items: center;
  height: 50px;
  background-color: #3d4d6d;
}
.footer__copyright p {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer__copyright p {
    font-size: 0.75rem;
  }
}

.to-top {
  position: fixed;
  inset: auto 5.333% 80px auto;
  width: 60px;
  height: 60px;
  border: 1px solid #ddd;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  z-index: 10000;
}
@media screen and (min-width: 768px) {
  .to-top {
    position: fixed;
    inset: auto 20px 56px auto;
    width: 78px;
    height: 78px;
  }
}
.to-top a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
.to-top a svg {
  fill: #aaa;
}

.footer__bg + .footer__inner {
  border-top: none;
}

.global-nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.global-nav > * {
  min-width: 0;
}
.global-nav__list {
  flex-shrink: 1;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 0.7rem;
  margin-right: 1.4rem;
}
@media (width > 1090px) {
  .global-nav__list {
    flex-wrap: nowrap;
  }
}
.global-nav__list > * {
  min-width: 0;
}
.global-nav__item {
  flex-shrink: 0;
}
.global-nav__item.has-child {
  position: relative;
  padding-right: 1.3rem;
}
.global-nav__item.has-child::after {
  content: "";
  position: absolute;
  inset: 0 6px 0 auto;
  margin-block: auto;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 75%;
          transform-origin: 75%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.global-nav__item.has-child:has(.global-navi__child-list.is-open)::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.global-nav__item a,
.global-nav__item span {
  color: #131313;
  font-size: clamp(0.625rem, 0.3212rem + 0.6329vw, 0.875rem);
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.global-nav__item > a {
  position: relative;
}
@media (hover: hover) {
  .global-nav__item > a:hover {
    opacity: 0.6;
  }
}
@media (hover: hover) {
  .global-nav__item > span:hover {
    opacity: 0.6;
  }
}
.global-nav .global-navi__child-list {
  display: none;
  position: absolute;
  inset: 100% auto auto -0.6rem;
  border: 1px solid #ddd;
  z-index: 1001;
}
.global-nav .global-navi__child-item:not(:last-child) {
  border-bottom: 1px solid #ddd;
}
.global-nav .global-navi__child-item a {
  display: block;
  padding: 0.6rem 0.8rem;
  background-color: #fff;
}
@media (hover: hover) {
  .global-nav .global-navi__child-item a:hover {
    background-color: #eee;
  }
}

.carousel {
  padding-block: 30px;
  background-color: #fff;
}
.carousel .carousel-slider article {
  padding-inline: 12px;
}
@media (hover: hover) {
  .carousel .carousel-slider article a:hover {
    opacity: 0.7;
  }
}

.hamburger-btn {
  display: block;
  position: relative;
  width: 40px;
  height: 60px;
  background: transparent;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}
.hamburger-btn__bar {
  display: block;
  position: absolute;
  left: calc(50% - 10px);
  width: 20px;
  height: 2px;
  background: #131313;
  border-radius: 1px;
  -webkit-transition: 0.25s ease-in-out 0.1s;
  transition: 0.25s ease-in-out 0.1s;
}
.hamburger-btn__bar:nth-child(1) {
  top: calc(50% - 5px);
}
.hamburger-btn__bar:nth-child(2) {
  top: calc(50% + 5px);
  margin: 0 auto;
}

/* メニューオープン時
/* ----------------------------------------------------------------- */
.is-menu-open .hamburger-btn__bar:nth-child(1) {
  top: calc(50% + 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.is-menu-open .hamburger-btn__bar:nth-child(2) {
  top: calc(50% + 1px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.drawer {
  position: fixed;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 70px;
  padding-bottom: 60px;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  overflow-x: scroll;
  background-color: #f0f1f5;
  -webkit-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
}
.drawer__inner {
  padding-inline: 2.666%;
}
.drawer__primary .drawer-menu-list__item {
  padding-block: 20px;
  padding-left: 0.8rem;
  border-bottom: 1px solid #131313;
}
.drawer__primary .drawer-menu-list__item a {
  line-height: 1;
  color: #131313;
}
.drawer__primary .drawer-menu-list__item.has-child {
  position: relative;
}
.drawer__primary .drawer-menu-list__item.has-child::after {
  content: "";
  display: block;
  position: absolute;
  inset: 26px 0.8rem auto auto;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #131313;
  border-right: 2px solid #131313;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.drawer__primary .drawer-menu-list__item.has-child:has(.drawer-menu-list__child-list.is-open)::after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.drawer__primary .drawer-menu-list__child-list {
  padding-left: 1.6rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.2s, visibility 0.2s;
  transition: opacity 0.2s, visibility 0.2s;
}
.drawer__primary .drawer-menu-list__child-list.is-open {
  padding-top: 16px;
  opacity: 1;
  visibility: visible;
}
.drawer__primary .drawer-menu-list__child-item {
  padding-block: 16px;
}
.drawer__secondary {
  display: -webkit-box;
  display: flex;
  gap: 0 1.5rem;
}
.drawer__secondary .drawer-sub-menu {
  -webkit-box-flex: 0;
          flex: 0 0 calc(50% - 0.75rem);
  padding-block: 20px;
  padding-inline: 10px;
}
.drawer__secondary .drawer-sub-menu__top a {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #131313;
}
.drawer__secondary .drawer-sub-menu__list {
  margin-top: 1rem;
}
.drawer__secondary .drawer-sub-menu__item {
  padding-block: 10px;
}
.drawer__secondary .drawer-sub-menu__item a {
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #999;
}

/* メニューオープン時
/* ----------------------------------------------------------------- */
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

.is-menu-open {
  position: fixed;
  width: 100%;
  height: 100%;
}
.is-menu-open .drawer {
  top: 0;
  visibility: visible;
  opacity: 1;
}

.page-header__primary {
  position: relative;
  height: 240px;
  padding-inline: 5.333%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .page-header__primary {
    height: 357px;
    padding-inline: 24px;
  }
}
.page-header__bg {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  height: 240px;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-header__bg {
    height: 357px;
  }
}
.page-header__bg img {
  position: absolute;
  inset: 0 auto 0 50%;
  max-width: none;
  height: 240px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .page-header__bg img {
    width: 100%;
    height: 357px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (width < 768px) {
  .page-header__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.26);
  }
}
.page-header__inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  width: min(100%, 1180px);
  height: 100%;
  margin-inline: auto;
  z-index: 1;
}
.page-header__title {
  margin-top: 3rem;
  color: #333;
}
@media screen and (min-width: 768px) {
  .page-header__title {
    margin-top: 5rem;
  }
}
.page-header__title h1 {
  font-size: clamp(1.375rem, 0.443rem + 1.9417vw, 1.875rem);
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: 0.1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-header__title span {
  display: block;
  margin-top: 20px;
  font-size: 0.75rem;
  line-height: 1.333;
  letter-spacing: 0.1em;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.page-header__breadcrumb {
  position: relative;
  width: min(100%, 1180px);
  margin-inline: auto;
  background-color: #fff;
  box-shadow: 0 0 0 100vmax #fff;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
  z-index: 0;
}
@media (width < 1224px) {
  .page-header__breadcrumb {
    padding-inline: 24px;
  }
}
@media (width < 768px) {
  .page-header__breadcrumb {
    padding-inline: 0;
    overflow-x: scroll;
  }
}
.page-header__breadcrumb .breadcrumb {
  display: -webkit-box;
  display: flex;
  gap: 0 1.5rem;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-block: 6px;
  margin-inline: 5.333%;
}
@media screen and (min-width: 768px) {
  .page-header__breadcrumb .breadcrumb {
    width: auto;
    padding-block: 18px 30px;
    margin-inline: 0;
  }
}
.page-header__breadcrumb .breadcrumb > * {
  min-width: 0;
}
.page-header__breadcrumb .breadcrumb__item {
  position: relative;
}
.page-header__breadcrumb .breadcrumb__item a,
.page-header__breadcrumb .breadcrumb__item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #333;
  white-space: nowrap;
}
.page-header__breadcrumb .breadcrumb__item a {
  text-decoration: underline;
}
@media (hover: hover) {
  .page-header__breadcrumb .breadcrumb__item a:hover {
    text-decoration: none;
  }
}
.page-header__breadcrumb .breadcrumb__item:not(:last-child)::after {
  content: "";
  position: absolute;
  inset: 3px -0.85rem 0 auto;
  width: 6px;
  height: 6px;
  margin-block: auto;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: transparent;
}

.cta {
  position: fixed;
  inset: auto 0 0 0;
  width: 100%;
  z-index: 1001;
}
.cta__list {
  display: -webkit-box;
  display: flex;
  width: 100%;
  max-width: 100%;
}
.cta__list * {
  min-width: 0;
}
.cta__item {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  height: 60px;
}
.cta__item:only-child {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
.cta__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 8px;
  width: 100%;
  height: 100%;
}
.cta__item a p {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  font-size: 0.875rem;
  color: #fff;
}
.cta__item a p span {
  font-size: 10px;
}
.cta__item.login a {
  background-color: #3e4d6e;
}
.cta__item.signin a {
  background-color: #ed7269;
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s ease, visibility 0s 0.5s ease;
  transition: opacity 0.5s ease, visibility 0s 0.5s ease;
}
.cookie-consent .cookie-inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  width: min(100%, 820px);
  margin: 0 auto;
  color: #fff;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .cookie-consent .cookie-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
.cookie-consent .cookie-text {
  margin-right: auto;
}
.cookie-consent .cookie-text p {
  font-size: 0.875rem;
  line-height: 1.8;
}
.cookie-consent .cookie-text p .policy-link a {
  color: #fff;
  text-decoration: underline;
}
.cookie-consent .cookie-text p .policy-link a:hover {
  text-decoration: none;
}
.cookie-consent .cookie-btns {
  display: -webkit-box;
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .cookie-consent .cookie-btns {
    margin-top: 0;
    margin-left: auto;
  }
}
.cookie-consent .cookie-agree,
.cookie-consent .cookie-reject {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 110px;
  height: 50px;
  border-radius: 4px;
  font-size: 0.875rem;
  color: #777;
  background-color: #fff;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.cookie-consent .cookie-agree:hover,
.cookie-consent .cookie-reject:hover {
  color: #fff;
  background-color: #777;
}
.cookie-consent.load-on {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s ease, visibility 0s 0s ease;
  transition: opacity 0.5s ease, visibility 0s 0s ease;
}

.main-title {
  margin-bottom: 2rem;
  padding-block: 0.4rem;
  padding-left: 1rem;
  font-size: var(--font-24-20);
  letter-spacing: 0.1em;
  color: #3d4d6d;
  border-left: 4px solid #3d4d6d;
  background-color: #f0f1f5;
}

.part-title {
  position: relative;
  padding-bottom: 12px;
  font-size: clamp(1.25rem, 0.6944rem + 1.1574vw, 1.5625rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .part-title {
    padding-bottom: 24px;
  }
}
.part-title::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 2px;
  background-color: #f0f1f5;
}
.part-title::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 200px;
  height: 2px;
  background-color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .part-title:has(span) {
    padding-right: 200px;
  }
}
.part-title span {
  display: block;
  margin-top: 4px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .part-title span {
    position: absolute;
    inset: 10px 0 auto auto;
    margin-top: 0;
  }
}

.page-title h2 {
  position: relative;
  padding-bottom: 12px;
  font-size: clamp(1.25rem, 0.6944rem + 1.1574vw, 1.5625rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .page-title h2 {
    padding-bottom: 24px;
  }
}
.page-title h2::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 2px;
  background-color: #f0f1f5;
}
.page-title h2::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 200px;
  height: 2px;
  background-color: #3d4d6d;
}

.sub-title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .sub-title {
    font-size: 1.125rem;
  }
}

.sub-title-large {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .sub-title-large {
    font-size: 1.375rem;
  }
}

.text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .text {
    font-size: 0.875rem;
  }
}

.pagination {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 60px;
  }
}
.pagination__list,
.pagination .newlist_paginate {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  .pagination__list,
  .pagination .newlist_paginate {
    flex-wrap: nowrap;
    gap: 6px 10px;
  }
}
.pagination__list li,
.pagination .newlist_paginate li {
  width: 30px;
  height: 30px;
  border: 1px solid #ddd;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #131313;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .pagination__list li,
  .pagination .newlist_paginate li {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }
}
.pagination__list li a,
.pagination .newlist_paginate li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.pagination__list li.current, .pagination__list li.active,
.pagination .newlist_paginate li.current,
.pagination .newlist_paginate li.active {
  background-color: #3d4d6d;
  color: #fff;
}
.pagination__list li:hover,
.pagination .newlist_paginate li:hover {
  background-color: #3d4d6d;
  color: #fff;
}
.pagination__list li.last, .pagination__list li.next,
.pagination .newlist_paginate li.last,
.pagination .newlist_paginate li.next {
  border: none;
}
.pagination__list li.first, .pagination__list li.prev,
.pagination .newlist_paginate li.first,
.pagination .newlist_paginate li.prev {
  border: none;
}

.release-lists + .pagination {
  margin-top: 0;
}

.column-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
          flex-direction: column-reverse;
  gap: 56px 0;
}
@media screen and (min-width: 768px) {
  .column-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    gap: 0;
    box-shadow: 0 0 0 100vmax #fff;
    -webkit-clip-path: inset(0 -100vmax);
            clip-path: inset(0 -100vmax);
  }
}
.column-content:has(.has-child), .column-content:has(.column-sidebar-bcas-btns) {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .column-content:has(.has-child), .column-content:has(.column-sidebar-bcas-btns) {
    padding-bottom: 100px;
  }
}
.column-content .column-sidebar {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .column-content .column-sidebar {
    -webkit-box-flex: 0;
            flex: 0 0 200px;
    max-width: 200px;
    padding-bottom: 60px;
    padding-right: 10px;
  }
}
.column-content .column-sidebar__item > a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-block: 0.8rem;
  padding-right: 1.3rem;
  min-height: 62px;
  border-right: 3px solid #f0f1f5;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #999;
}
@media (hover: hover) {
  .column-content .column-sidebar__item > a:hover {
    border-right: 3px solid #3d4d6d;
    color: #3d4d6d;
  }
}
.column-content .column-sidebar__item.is-active > a {
  border-right: 3px solid #3d4d6d;
  color: #3d4d6d;
}
.column-content .column-sidebar__item:has(.is-active) > a {
  border-right: 3px solid #3d4d6d;
  color: #3d4d6d;
}
.column-content .column-sidebar__item:has(.is-active) a {
  border-right: 3px solid #3d4d6d;
}
.column-content .column-sidebar__child-item > a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding-block: 0.4rem;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
  min-height: 34px;
  border-right: 3px solid #f0f1f5;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #999;
}
.column-content .column-sidebar__child-item.is-active > a {
  border-right: 3px solid #3d4d6d;
  color: #3d4d6d;
}
.column-content .column-sidebar__search {
  width: 100%;
  height: 40px;
}
.column-content .column-sidebar__search form {
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
}
.column-content .column-sidebar__search form input[type=text] {
  width: 100%;
  height: 100%;
  padding-inline: 12px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #131313;
  background-color: #fff;
  border: none;
  outline: none;
}
.column-content .column-sidebar__search form input[type=text]::-webkit-input-placeholder {
  color: #999;
}
.column-content .column-sidebar__search form input[type=text]::-moz-placeholder {
  color: #999;
}
.column-content .column-sidebar__search form input[type=text]::placeholder {
  color: #999;
}
.column-content .column-sidebar__search form button {
  position: absolute;
  inset: 2px 10px 0 auto;
  width: 20px;
  height: 22px;
  margin-block: auto;
  padding: 0;
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.column-content .column-sidebar__search form button img {
  -o-object-fit: contain;
     object-fit: contain;
}
.column-content .column-sidebar .column-sidebar-category {
  margin-top: 1rem;
}
.column-content .column-sidebar .column-sidebar-category__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1rem 0;
}
.column-content .column-sidebar .column-sidebar-category__item {
  position: relative;
  height: 40px;
}
.column-content .column-sidebar .column-sidebar-category__item::after {
  content: "";
  position: absolute;
  inset: 0 16px 3px auto;
  width: 8px;
  height: 8px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.column-content .column-sidebar .column-sidebar-category__item select {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-inline: 12px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #131313;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: 1px solid #eee;
  margin: 0;
  padding-block: 0;
  background: none transparent;
}
.column-content .column-sidebar .column-sidebar-tags {
  margin-top: 2rem;
}
.column-content .column-sidebar .column-sidebar-tags__title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3d4d6d;
}
.column-content .column-sidebar .column-sidebar-tags__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 8px;
}
.column-content .column-sidebar .column-sidebar-tags__item a {
  padding-block: 0.2rem;
  padding-inline: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #131313;
  background-color: #f0f1f5;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .column-content .column-sidebar .column-sidebar-tags__item a:hover {
    border: 3px solid #3d4d6d;
    color: #3d4d6d;
  }
}
.column-content .column-sidebar .column-sidebar-btn {
  width: 100%;
  height: 48px;
  margin-top: 30px;
}
.column-content .column-sidebar .column-sidebar-btn a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 6px;
  width: 100%;
  height: 100%;
  padding: 15px 13px;
  border: 2px solid #3d4d6d;
  font-size: 0.75rem;
  line-height: 1;
  color: #3d4d6d;
}
.column-content .column-sidebar .column-sidebar-btn a img {
  width: 20px;
  height: auto;
}
@media (hover: hover) {
  .column-content .column-sidebar .column-sidebar-btn a:hover {
    background-color: #3d4d6d;
    color: #fff;
  }
  .column-content .column-sidebar .column-sidebar-btn a:hover svg path {
    stroke: #fff;
  }
}
.column-content .column-sidebar .column-sidebar-bcas-btns {
  margin-top: 30px;
}
.column-content .column-sidebar .column-sidebar-bcas-btns .bcas-btn {
  width: 100%;
  height: 48px;
}
.column-content .column-sidebar .column-sidebar-bcas-btns .bcas-btn + .bcas-btn {
  margin-top: 10px;
}
.column-content .column-sidebar .column-sidebar-bcas-btns .bcas-btn a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 6px;
  width: 100%;
  height: 100%;
  padding: 15px 13px;
  border: 2px solid #3d4d6d;
  font-size: 0.875rem;
  line-height: 1;
  color: #3d4d6d;
}
.column-content .column-sidebar .column-sidebar-bcas-btns .bcas-btn a svg {
  width: 20px;
  height: auto;
}
@media (hover: hover) {
  .column-content .column-sidebar .column-sidebar-bcas-btns .bcas-btn a:hover {
    background-color: #3d4d6d;
    color: #fff;
  }
  .column-content .column-sidebar .column-sidebar-bcas-btns .bcas-btn a:hover svg path {
    stroke: #fff;
  }
}
.column-content .column-sidebar .column-sidebar-bcas-contact {
  margin-top: 30px;
}
.column-content .column-sidebar .column-sidebar-bcas-contact__title {
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #3d4d6d;
}
.column-content .column-sidebar .column-sidebar-bcas-contact__content {
  padding: 18px 20px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: #3d4d6d;
  background-color: #f0f1f5;
}
.column-content .column-sidebar .column-sidebar-bcas-contact__content .text-small {
  margin-top: 12px;
  font-size: 0.75rem;
}
.column-content .column-sidebar .column-sidebar-bcas-contact__content .text-small + .text-small {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #3d4d6d;
}
.column-content .column-sidebar .column-sidebar-bcas-contact__content .text-small a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .column-content .column-sidebar .column-sidebar-bcas-contact__content .text-small a:hover {
    text-decoration: none;
  }
}
.column-content .column-sidebar .column-sidebar-bcas-attention {
  margin-top: 30px;
  padding: 20px;
  border: 3px solid #f0f1f5;
}
.column-content .column-sidebar .column-sidebar-bcas-attention__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 6px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #b5180c;
}
.column-content .column-sidebar .column-sidebar-bcas-attention__title svg {
  -webkit-box-flex: 0;
          flex: 0 0 27px;
  width: 27px;
  height: auto;
}
.column-content .column-sidebar .column-sidebar-bcas-attention__text {
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-align: justify;
}
.column-content .column-sidebar .column-sidebar-bcas-attention__link {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 8px;
  margin-top: 16px;
  color: inherit;
}
.column-content .column-sidebar .column-sidebar-bcas-attention__link img {
  width: 22px;
  height: 27px;
}
.column-content .column-sidebar .column-sidebar-bcas-attention__link span {
  font-size: 0.75rem;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-decoration: underline;
}
@media (hover: hover) {
  .column-content .column-sidebar .column-sidebar-bcas-attention__link:hover span {
    text-decoration: none;
  }
}
.column-content .column-main,
.column-content #center-block {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .column-content .column-main,
  .column-content #center-block {
    max-width: calc(100% - 200px);
    padding-top: 0;
    padding-left: 4.237%;
  }
}
.column-content .column-main #center-block {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .column-content .column-main #center-block {
    max-width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
}

.pdf-link a,
.xls-link a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 1.2rem;
  min-height: 88px;
  padding: 1rem;
  border: 3px solid #f0f1f5;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: #131313;
  text-decoration: underline;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .pdf-link a,
  .xls-link a {
    padding: 1.5rem;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .pdf-link a:hover,
  .xls-link a:hover {
    text-decoration: none;
  }
}
.pdf-link__img,
.xls-link__img {
  position: relative;
  margin-left: auto;
}
.pdf-link__img iframe,
.xls-link__img iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.index-links {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 44px;
}
.index-links__item {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .index-links__item {
    -webkit-box-flex: 0;
            flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
.index-links__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  height: 80px;
  padding-inline: 32px;
  border: 3px solid #f0f1f5;
  letter-spacing: 0.08em;
  color: #131313;
}
.index-links__item a::after {
  content: "";
  position: absolute;
  inset: 0 32px 0 auto;
  width: 8px;
  height: 8px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .index-links__item a:hover {
    background-color: #f0f1f5;
  }
  .index-links__item a:hover::after {
    inset: 0 26px 0 auto;
  }
}

.index-box {
  padding: 40px 5% 36px;
  border: 3px solid #f0f1f5;
}
.index-box__list {
  margin-top: 24px;
}
.index-box__item {
  margin-bottom: 8px;
}
.index-box__item a {
  color: inherit;
  text-decoration: underline;
}
.index-box:not(:has(h2)) {
  padding-top: 36px;
}
.index-box:not(:has(h2)) .index-box__list {
  margin-top: 0;
}

.release-lists-tab {
  margin-top: 30px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .release-lists-tab {
    margin-top: 0;
    padding-bottom: 40px;
  }
}
.release-lists-tab__list {
  display: -webkit-box;
  display: flex;
  border-bottom: 2px solid #3d4d6d;
}
.release-lists-tab__item {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .release-lists-tab__item {
    height: 50px;
  }
}
.release-lists-tab__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  border: 1px solid #eee;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: #999;
}
@media screen and (min-width: 768px) {
  .release-lists-tab__item a {
    font-size: 0.875rem;
  }
}
.release-lists-tab__item.is-active a {
  border: 1px solid #3d4d6d;
  color: #fff;
  background-color: #3d4d6d;
}

.toggle-content__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  padding: 1rem;
  border: 3px solid #f0f1f5;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #131313;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 768px) {
  .toggle-content__title {
    padding: 1.5rem;
    font-size: 1.0625rem;
  }
}
@media (hover: hover) {
  .toggle-content__title:hover {
    background-color: #f0f1f5;
  }
}
.toggle-content__title::after {
  content: "";
  position: absolute;
  inset: 0 2rem 0 auto;
  width: 10px;
  height: 10px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.toggle-content__title.is-open::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.toggle-content__list {
  display: none;
  padding: 1rem;
  font-size: 0.9375rem;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .toggle-content__list {
    font-size: 0.875rem;
  }
}
.toggle-content__list li {
  margin-bottom: 1rem;
}
.toggle-content__list li:last-child {
  margin-bottom: 0;
}
.toggle-content__list li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 1.2rem;
  padding-block: 0.5rem;
  border-bottom: 1px solid #eee;
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .toggle-content__list li a:hover {
    text-decoration: none;
  }
}
.toggle-content__list-list {
  margin-top: 24px;
}

.toggle-content__title.is-open + .toggle-content__list {
  display: block;
}

#loading {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  z-index: 99999999;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
#loading img {
  width: min(74%, 209px);
  -webkit-animation: blink 0.8s ease-in-out infinite;
          animation: blink 0.8s ease-in-out infinite;
}
#loading.is-loaded {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
.info-list:not(:first-of-type) {
  margin-top: 30px;
}
.info-list li {
  padding-block: 18px;
  border-bottom: 1px solid #eee;
}
.info-list li a {
  color: inherit;
}
@media (any-hover: hover) {
  .info-list li a .text:hover {
    text-decoration: none;
  }
}
.info-list .info {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  line-height: 1;
}
.info-list .info span {
  font-size: 0.8125rem;
}
.info-list .info .label {
  margin-left: 7px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: #3d4d6d;
}
.info-list .info .enddate {
  margin-left: 5px;
  padding: 0.2rem 0.6rem;
  border: 1px solid #3d4d6d;
  font-size: 0.75rem;
  color: #3d4d6d;
}
.info-list .title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 8px;
}
.info-list .title .member {
  margin-right: 0.8rem;
  padding-inline: 6px;
  border: 1px solid #ed7269;
  font-size: 0.625rem;
  line-height: 18px;
  color: #ed7269;
  white-space: nowrap;
}
.info-list .title .text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #131313;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .info-list .title .text {
    font-size: 0.875rem;
  }
}

.background-movie {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.background-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (width < 768px) {
  .background-movie video {
    display: none;
  }
}
.background-movie img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (width >= 768px) {
  .background-movie img {
    display: none;
  }
}

.top-hero {
  position: relative;
  padding-top: 430px;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .top-hero {
    height: 100vh;
    padding-top: 0;
  }
}
.top-hero__scroll {
  position: absolute;
  inset: auto auto 85px 20px;
  width: 106px;
  height: 107px;
  z-index: 1;
}
.top-hero__scroll .circle {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border: 1px solid #131313;
  border-radius: 50%;
  background-color: transparent;
}
.top-hero__scroll .letters {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.top-hero__scroll .letters svg {
  -webkit-animation: rotate 18s linear infinite;
          animation: rotate 18s linear infinite;
}
.top-hero .hero-sliders {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1.5rem 0;
  width: 100%;
  padding: 24px 8%;
  background-color: #fff;
  -webkit-transition: right 0.6s;
  transition: right 0.6s;
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    gap: 0 64px;
    width: auto;
    position: absolute;
    inset: auto -100% 90px auto;
    padding: 24px 42px;
    border-radius: 18px 0 0 18px;
  }
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders.is-show {
    inset: auto 0 90px auto;
  }
}
.top-hero .hero-sliders > * {
  min-width: 0;
}
.top-hero .hero-sliders .hero-sliders-top {
  position: relative;
  margin-bottom: 10px;
}
.top-hero .hero-sliders .hero-sliders-top__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.top-hero .hero-sliders .hero-sliders-top__text {
  margin-top: 4px;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
}
.top-hero .hero-sliders .hero-sliders-top__link {
  position: absolute;
  inset: 0 0 0 auto;
  margin-block: auto;
}
.top-hero .hero-sliders .hero-sliders-top__link a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #131313;
}
.top-hero .hero-sliders .hero-sliders-top__link a::after {
  content: "";
  position: absolute;
  inset: auto 0 -12px 0;
  width: 100%;
  height: 2px;
  background-color: #131313;
  -webkit-transition: width 0.2s ease-in-out;
  transition: width 0.2s ease-in-out;
}
@media (hover: hover) {
  .top-hero .hero-sliders .hero-sliders-top__link a:hover::after {
    inset: auto 0 -12px auto;
    width: 0;
  }
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-info {
    -webkit-box-flex: 0;
            flex: 0 0 336px;
  }
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider-wrap {
  position: relative;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-info .hero-info-slider .slick-list {
    width: 336px;
  }
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-info .hero-info-slider article {
    width: 336px;
  }
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider article a {
  display: -webkit-box;
  display: flex;
  color: #131313;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider article a > * {
  min-width: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media (hover: hover) {
  .top-hero .hero-sliders .hero-sliders-info .hero-info-slider article a:hover .hero-info-slider__img {
    -webkit-filter: brightness(70%);
            filter: brightness(70%);
  }
  .top-hero .hero-sliders .hero-sliders-info .hero-info-slider article a:hover .hero-info-slider__body {
    opacity: 0.7;
  }
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__img {
  position: relative;
  width: 142px;
  aspect-ratio: 142/108;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__body {
  -webkit-box-flex: 0;
          flex: 0 0 calc(100% - 142px);
  max-width: calc(100% - 142px);
  position: relative;
  padding: 8px 0 0 16px;
  border: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-info .hero-info-slider__body {
    padding: 12px 0 0 16px;
  }
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__body .badge {
  display: grid;
  place-items: center;
  position: absolute;
  inset: 0 0 auto auto;
  height: 24px;
  padding-inline: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  background-color: #464646;
  color: #fff;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__body .date {
  font-size: 0.625rem;
  line-height: 1;
  letter-spacing: 0.02em;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__body .tit {
  min-height: 42px;
  margin-top: 4px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.top-hero .hero-sliders .hero-sliders-info .hero-info-slider__body .cat {
  margin-top: 4px;
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-recommend {
    -webkit-box-flex: 0;
            flex: 0 0 340px;
  }
}
.top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider-wrap {
  position: relative;
}
.top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider .slick-list {
    width: 340px;
  }
}
.top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider .slick-slide {
  padding-inline: 5px;
}
@media screen and (min-width: 768px) {
  .top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider article {
    width: 340px;
  }
}
.top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider article a {
  display: -webkit-box;
  display: flex;
  color: #131313;
}
.top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider article a > * {
  min-width: 0;
}
.top-hero .hero-sliders .hero-sliders-recommend .hero-recommend-slider article a:hover {
  -webkit-filter: brightness(70%);
          filter: brightness(70%);
}
.top-hero .hero-sliders .hero-sliders-dots {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 12px;
}
.top-hero .hero-sliders .hero-sliders-dots span {
  font-size: 0.6875rem;
}
.top-hero .hero-sliders .hero-sliders-dots .slick-dots {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  inset: 0;
}
.top-hero .hero-sliders .hero-sliders-dots .slick-dots li {
  position: relative;
  height: 3px;
  width: 20px;
  margin: 0 2px;
}
.top-hero .hero-sliders .hero-sliders-dots .slick-dots li button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #e6e6e6;
  padding: 0;
  cursor: pointer;
}
.top-hero .hero-sliders .hero-sliders-dots .slick-dots li button:before {
  content: none;
}
.top-hero .hero-sliders .hero-sliders-dots .slick-dots li.slick-active button {
  background-color: #464646;
}

.top-info-title {
  position: relative;
  width: 100%;
  margin-top: 30px;
  margin-inline: auto;
  text-align: center;
  z-index: 0;
  box-shadow: 0 0 0 100vmax #fff;
  -webkit-clip-path: inset(0 -100vmax);
          clip-path: inset(0 -100vmax);
}
@media screen and (min-width: 768px) {
  .top-info-title {
    width: 1117px;
    margin-top: 0;
  }
}
.top-info-title img {
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .top-info-title img {
    width: 1117px;
  }
}

.top-info {
  margin-top: -1px;
  padding-block: 44px 40px;
  background-color: #fff;
}
.top-info .info-content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .top-info .info-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    width: 1117px;
  }
}
.top-info .info-content__side {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  padding-inline: 8%;
}
@media screen and (min-width: 768px) {
  .top-info .info-content__side {
    -webkit-box-flex: 0;
            flex: 0 0 27.966%;
    max-width: 27.966%;
    padding-inline: 20px;
  }
}
.top-info .info-content__title {
  font-size: var(--font-24-20);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.1em;
}
.top-info .info-content .category-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .top-info .info-content .category-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    flex-wrap: nowrap;
    gap: 20px 0;
  }
}
.top-info .info-content .category-list__item {
  -webkit-box-flex: 0;
          flex: 0 0 calc((100% - 1rem) / 2);
  max-width: calc((100% - 1rem) / 2);
  height: 36px;
}
@media screen and (min-width: 768px) {
  .top-info .info-content .category-list__item {
    -webkit-box-flex: 1;
            flex: auto;
    max-width: 184px;
    width: 184px;
  }
}
.top-info .info-content .category-list__item span {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  -webkit-padding-start: 1rem;
          padding-inline-start: 1rem;
  border: 1px solid #131313;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131313;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .top-info .info-content .category-list__item span {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .top-info .info-content .category-list__item span:hover {
    background-color: #131313;
    color: #fff;
  }
}
@media screen and (min-width: 768px) {
  .top-info .info-content .category-list__item.is-active {
    width: 204px;
    max-width: 204px;
  }
}
.top-info .info-content .category-list__item.is-active span {
  background-color: #131313;
  color: #fff;
}
.top-info .info-content__body {
  margin-top: 40px;
  padding-inline: 8%;
}
@media screen and (min-width: 768px) {
  .top-info .info-content__body {
    -webkit-box-flex: 0;
            flex: 0 0 72.034%;
    max-width: 72.034%;
    margin-top: 0;
    padding-inline: 0;
  }
}
.top-info .info-content__list .news-list {
  display: none;
}
.top-info .info-content__list .news-list.is-panel-active {
  display: block;
}
.top-info .info-content__list .news-list__item {
  width: 100%;
}
.top-info .info-content__list .news-list__item a {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
  color: #131313;
}
.top-info .info-content__list .news-list__item a:has(.list-deadline) {
  padding-right: 50px;
}
.top-info .info-content__list .news-list__item a .list-meta {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.top-info .info-content__list .news-list__item a .list-meta .date {
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .top-info .info-content__list .news-list__item a .list-meta .date {
    font-size: 0.75rem;
  }
}
.top-info .info-content__list .news-list__item a .list-meta .cat {
  margin-left: 0.8rem;
  padding-inline: 10px;
  font-size: 0.625rem;
  line-height: 18px;
  background-color: #e8e8e8;
}
.top-info .info-content__list .news-list__item a .list-body {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .top-info .info-content__list .news-list__item a .list-body {
    -webkit-box-align: center;
            align-items: center;
  }
}
.top-info .info-content__list .news-list__item a .list-body .member {
  margin-right: 0.8rem;
  padding-inline: 6px;
  border: 1px solid #ed7269;
  font-size: 0.625rem;
  line-height: 18px;
  color: #ed7269;
  white-space: nowrap;
}
.top-info .info-content__list .news-list__item a .list-body .tit {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .top-info .info-content__list .news-list__item a .list-body .tit {
    font-size: 1rem;
  }
}
.top-info .info-content__list .news-list__item a .list-deadline {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: end;
          justify-content: flex-end;
  position: absolute;
  inset: 0 0 0 auto;
  width: 50px;
  margin-bottom: 14px;
}
.top-info .info-content__list .news-list__item a .list-deadline__badge {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 14px;
  font-size: 0.625rem;
  font-weight: 600;
  color: #fff;
  background-color: #3d4d6d;
}
.top-info .info-content__list .news-list__item a .list-deadline__year {
  margin-top: 5px;
  font-size: 0.625rem;
  text-align: center;
  color: #3d4d6d;
}
.top-info .info-content__list .news-list__item a .list-deadline__date {
  margin-top: 2px;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  color: #3d4d6d;
}
@media (hover: hover) {
  .top-info .info-content__list .news-list__item a:hover .tit {
    text-decoration: underline;
  }
}
.top-info .info-content__list .news-list__item:not(:first-child) a {
  padding-top: 18px;
}
.top-info .info-content__btn {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
          justify-content: flex-end;
  margin-top: 40px;
}
.top-info .info-content__btn a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  padding-inline: 28px;
  width: min(100%, 330px);
  height: 60px;
  border: 1px solid #3d4d6d;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  background-color: #3d4d6d;
  color: #fff;
}
.top-info .info-content__btn a .icon-arrow {
  fill: #fff;
}
@media (hover: hover) {
  .top-info .info-content__btn a:hover {
    background-color: #fff;
    color: #3d4d6d;
  }
  .top-info .info-content__btn a:hover .icon-arrow {
    fill: #3d4d6d;
  }
}

.top-menu {
  margin-block: 70px;
  padding-inline: 8%;
  background-color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .top-menu {
    padding-inline: 20px;
  }
}
.top-menu .menu-content {
  padding-block: 60px 80px;
}
.top-menu .menu-content__primary .primary-menu {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__primary .primary-menu {
    flex-wrap: nowrap;
  }
}
.top-menu .menu-content__primary .primary-menu__item {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  height: 102px;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__primary .primary-menu__item {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
.top-menu .menu-content__primary .primary-menu__item:first-of-type {
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__primary .primary-menu__item:first-of-type {
    border-bottom: 1px solid #fff;
    border-right: none;
  }
}
.top-menu .menu-content__primary .primary-menu__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding-inline: 40px;
  color: #fff;
}
.top-menu .menu-content__primary .primary-menu__item a .text-wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 4px 0;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__primary .primary-menu__item a .text-wrap {
    display: contents;
  }
}
.top-menu .menu-content__primary .primary-menu__item a .text-large {
  font-size: var(--font-20-17);
  font-weight: 600;
}
.top-menu .menu-content__primary .primary-menu__item a .text-small {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__primary .primary-menu__item a .text-small {
    margin-left: 2.2rem;
  }
}
.top-menu .menu-content__primary .primary-menu__item a .icon-arrow {
  margin-left: auto;
  fill: #fff;
}
@media (hover: hover) {
  .top-menu .menu-content__primary .primary-menu__item a:hover {
    background-color: #fff;
    color: #3d4d6d;
  }
  .top-menu .menu-content__primary .primary-menu__item a:hover .icon-arrow {
    fill: #3d4d6d;
  }
}
.top-menu .menu-content__title {
  margin-top: 56px;
  font-size: var(--font-20-17);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__title {
    text-align: left;
  }
}
.top-menu .menu-content__secondary .secondary-menu {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 2rem;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__secondary .secondary-menu {
    gap: 42px 4.237%;
    margin-top: 38px;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item {
  -webkit-box-flex: 0;
          flex: 0 0 calc(50% - 1rem);
  max-width: calc(50% - 1rem);
  border-bottom: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__secondary .secondary-menu__item {
    -webkit-box-flex: 0;
            flex: 0 0 30.5086666667%;
    max-width: 30.5086666667%;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  position: relative;
  width: 100%;
  height: 100%;
  padding-block: 20px;
  padding-inline: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__secondary .secondary-menu__item a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-align: center;
            align-items: center;
    padding-block: 24px;
    padding-inline: 10px;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item a::after {
  content: "";
  position: absolute;
  inset: 36px 0 auto auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__secondary .secondary-menu__item a::after {
    inset: 0 10px 0 auto;
    margin-block: auto;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item a .txt {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 4px 0;
  margin-top: 1.2rem;
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__secondary .secondary-menu__item a .txt {
    margin-top: 0;
    margin-left: 1.8rem;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item a .text-large {
  min-height: 42px;
  font-size: var(--font-16-14);
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .top-menu .menu-content__secondary .secondary-menu__item a .text-large {
    min-height: 1px;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item a .text-small {
  font-size: 0.75rem;
}
.top-menu .menu-content__secondary .secondary-menu__item a svg {
  fill: #fff;
}
@media (hover: hover) {
  .top-menu .menu-content__secondary .secondary-menu__item a:hover {
    color: #aaa;
  }
  .top-menu .menu-content__secondary .secondary-menu__item a:hover::after {
    border-top: 2px solid #aaa;
    border-right: 2px solid #aaa;
    -webkit-transform: rotate(45deg) translate(6px, -6px);
            transform: rotate(45deg) translate(6px, -6px);
  }
  .top-menu .menu-content__secondary .secondary-menu__item a:hover svg {
    fill: #aaa;
  }
}
.top-menu .menu-content__secondary .secondary-menu__item:first-of-type a svg {
  width: 39px;
}
.top-menu .menu-content__secondary .secondary-menu__item:nth-of-type(2) a svg {
  width: 41px;
}
.top-menu .menu-content__secondary .secondary-menu__item:nth-of-type(3) a svg {
  width: 42px;
}
.top-menu .menu-content__secondary .secondary-menu__item:nth-of-type(4) a svg {
  width: 44px;
}
.top-menu .menu-content__secondary .secondary-menu__item:nth-of-type(5) a svg {
  width: 36px;
}
.top-menu .menu-content__secondary .secondary-menu__item:nth-of-type(6) a svg {
  width: 38px;
}

.search-index,
#newsearch {
  padding-top: 20px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .search-index,
  #newsearch {
    padding-bottom: 56px;
  }
}
.search-index .operator-search > p,
#newsearch .operator-search > p {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .search-index .operator-search > p,
  #newsearch .operator-search > p {
    font-size: 1.125rem;
  }
}
.search-index .operator-search .newsearch_search-left,
#newsearch .operator-search .newsearch_search-left {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .search-index .operator-search .newsearch_search-left,
  #newsearch .operator-search .newsearch_search-left {
    margin-top: 4.5rem;
  }
}
.search-index .operator-search .newsearch_search-left p,
#newsearch .operator-search .newsearch_search-left p {
  position: relative;
  padding-bottom: 12px;
  font-size: clamp(1.25rem, 0.6944rem + 1.1574vw, 1.5625rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .search-index .operator-search .newsearch_search-left p,
  #newsearch .operator-search .newsearch_search-left p {
    padding-bottom: 24px;
  }
}
.search-index .operator-search .newsearch_search-left p::before,
#newsearch .operator-search .newsearch_search-left p::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 2px;
  background-color: #f0f1f5;
}
.search-index .operator-search .newsearch_search-left p::after,
#newsearch .operator-search .newsearch_search-left p::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 200px;
  height: 2px;
  background-color: #3d4d6d;
}
.search-index .operator-search .newsearch_search-right,
#newsearch .operator-search .newsearch_search-right {
  margin-top: 30px;
}
.search-index .operator-search .newsearch_search-right form,
#newsearch .operator-search .newsearch_search-right form {
  display: -webkit-box;
  display: flex;
}
.search-index .operator-search .newsearch_search-right input,
#newsearch .operator-search .newsearch_search-right input {
  width: calc(100% - 40px);
  height: 40px;
  padding-inline: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 0;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .search-index .operator-search .newsearch_search-right input,
  #newsearch .operator-search .newsearch_search-right input {
    width: 450px;
    height: 48px;
  }
}
.search-index .operator-search .newsearch_search-right button,
#newsearch .operator-search .newsearch_search-right button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background-color: #3d4d6d;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media screen and (min-width: 768px) {
  .search-index .operator-search .newsearch_search-right button,
  #newsearch .operator-search .newsearch_search-right button {
    width: 48px;
    height: 48px;
  }
}
@media (width < 768px) {
  .search-index .operator-search .newsearch_search-right button svg,
  #newsearch .operator-search .newsearch_search-right button svg {
    width: 20px;
    height: 20px;
  }
}
.search-index .newsearch_japan-wrap .newsearch_japan-tit,
#newsearch .newsearch_japan-wrap .newsearch_japan-tit {
  margin-top: 4.5rem;
}
.search-index .newsearch_japan-wrap .newsearch_japan-tit p,
#newsearch .newsearch_japan-wrap .newsearch_japan-tit p {
  position: relative;
  padding-bottom: 12px;
  font-size: clamp(1.25rem, 0.6944rem + 1.1574vw, 1.5625rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .newsearch_japan-tit p,
  #newsearch .newsearch_japan-wrap .newsearch_japan-tit p {
    padding-bottom: 24px;
  }
}
.search-index .newsearch_japan-wrap .newsearch_japan-tit p::before,
#newsearch .newsearch_japan-wrap .newsearch_japan-tit p::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 2px;
  background-color: #f0f1f5;
}
.search-index .newsearch_japan-wrap .newsearch_japan-tit p::after,
#newsearch .newsearch_japan-wrap .newsearch_japan-tit p::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 200px;
  height: 2px;
  background-color: #3d4d6d;
}
.search-index .newsearch_japan-wrap .flex-container,
#newsearch .newsearch_japan-wrap .flex-container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 2rem 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .flex-container,
  #newsearch .newsearch_japan-wrap .flex-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    gap: 0 6.44%;
  }
}
.search-index .newsearch_japan-wrap .flex-container .search-map,
#newsearch .newsearch_japan-wrap .flex-container .search-map {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .flex-container .search-map,
  #newsearch .newsearch_japan-wrap .flex-container .search-map {
    -webkit-box-flex: 0;
            flex: 0 0 40%;
    max-width: 40%;
  }
}
.search-index .newsearch_japan-wrap .flex-container .newsearch_japan,
#newsearch .newsearch_japan-wrap .flex-container .newsearch_japan {
  -webkit-box-flex: 1;
          flex: auto;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 4%;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .flex-container .newsearch_japan,
  #newsearch .newsearch_japan-wrap .flex-container .newsearch_japan {
    gap: 50px 11%;
    margin-top: 40px;
  }
}
.search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box,
#newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box {
  -webkit-box-flex: 0;
          flex: 0 0 48%;
  max-width: 48%;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box,
  #newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box {
    -webkit-box-flex: 0;
            flex: 0 0 26%;
    max-width: 26%;
  }
}
.search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box h3,
#newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box h3,
  #newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box h3 {
    font-size: 1.125rem;
  }
}
.search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul,
#newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 14px;
  gap: 6px 0;
}
@media screen and (min-width: 768px) {
  .search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul,
  #newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul {
    margin-top: 22px;
  }
}
.search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul li,
#newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul li {
  width: 50%;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}
.search-index .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul li a,
#newsearch .newsearch_japan-wrap .flex-container .newsearch_japan .newsearch_japan-box ul li a {
  color: #333;
}

.search-detail {
  padding-top: 20px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .search-detail {
    padding-bottom: 96px;
  }
}
.search-detail .com-detail {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
}
.search-detail .com-detail th,
.search-detail .com-detail td {
  padding: 1.2rem 0.75rem;
  border-bottom: 1px solid #fff;
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .search-detail .com-detail th,
  .search-detail .com-detail td {
    min-height: 84px;
    padding: 1.86rem 1.5rem;
    font-size: 0.875rem;
  }
}
.search-detail .com-detail th {
  width: 21.186%;
  font-weight: 600;
  text-align: left;
}
.search-detail .com-detail td {
  width: 78.814%;
}
.search-detail .com-detail td a {
  color: inherit;
  text-decoration: underline;
}
.search-detail .note1 {
  margin-top: 22px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #d31919;
}
.search-detail .note2 {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #d31919;
}

.search-pref {
  padding-top: 20px;
  padding-bottom: 56px;
}
@media screen and (min-width: 768px) {
  .search-pref {
    padding-bottom: 96px;
  }
}
.search-pref #newlist .section .first {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .first {
    font-size: 1.125rem;
  }
}
.search-pref #newlist .section .second {
  margin-top: 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #d31919;
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .second {
    font-size: 0.875rem;
  }
}
.search-pref #newlist .section .note {
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .note {
    font-size: 0.875rem;
  }
}
.search-pref #newlist .section .newlist_link {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.search-pref #newlist .section .newlist_link li {
  -webkit-box-flex: 0;
          flex: 0 0 33.333%;
  max-width: 33.333%;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .newlist_link li {
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%;
  }
}
.search-pref #newlist .section .newlist_link li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
  border-top: none;
  border-left: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .newlist_link li a {
    font-size: 0.875rem;
  }
}
.search-pref #newlist .section .newlist_link li a::after {
  content: "";
  position: absolute;
  inset: 0 8px 0 auto;
  width: 5px;
  height: 5px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .newlist_link li a::after {
    inset: 0 28px 0 auto;
    width: 8px;
    height: 8px;
  }
}
@media (hover: hover) {
  .search-pref #newlist .section .newlist_link li a:hover {
    background-color: #131313;
    color: #fff;
  }
  .search-pref #newlist .section .newlist_link li a:hover::after {
    border-color: #fff;
  }
}
@media (width < 768px) {
  .search-pref #newlist .section .newlist_link li:nth-child(-n+3) a {
    border-top: 1px solid #aaa;
  }
}
@media (width < 768px) {
  .search-pref #newlist .section .newlist_link li:nth-of-type(3n + 1) a {
    border-left: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .newlist_link li:nth-child(-n+5) a {
    border-top: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .newlist_link li:nth-of-type(5n + 1) a {
    border-left: 1px solid #aaa;
  }
}
.search-pref #newlist .section .section {
  margin-top: 40px;
}
.search-pref #newlist .section .section .com-index {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  border-bottom: 1px solid #fff;
}
.search-pref #newlist .section .section .com-index th,
.search-pref #newlist .section .section .com-index td {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
@media (width < 768px) {
  .search-pref #newlist .section .section .com-index th,
  .search-pref #newlist .section .section .com-index td {
    display: block;
    width: 100% !important;
  }
}
.search-pref #newlist .section .section .com-index th p,
.search-pref #newlist .section .section .com-index td p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .search-pref #newlist .section .section .com-index th p,
  .search-pref #newlist .section .section .com-index td p {
    padding: 1rem 1.5rem;
    min-height: 84px;
  }
}
.search-pref #newlist .section .section .com-index th {
  width: 21.186%;
  border-right: 1px solid #fff;
  font-weight: 600;
  text-align: left;
}
.search-pref #newlist .section .section .com-index th p {
  color: #fff;
  background-color: #3d4d6d;
}
.search-pref #newlist .section .section .com-index td {
  font-weight: 400;
  border-left: 1px solid #fff;
  background-color: #f0f1f5;
}
.search-pref #newlist .section .section .com-index td .name {
  width: 63.56%;
}
.search-pref #newlist .section .section .com-index td.tel {
  width: 15.254%;
}
.search-pref #newlist .section .section .com-index td p a {
  color: #131313;
}
.search-pref__text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .search-pref__text {
    font-size: 1.125rem;
  }
}
.search-pref__notes {
  margin-top: 22px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #d31919;
}
@media screen and (min-width: 768px) {
  .search-pref__notes {
    font-size: 0.875rem;
  }
}
.search-pref__notes .text-thin {
  font-weight: 400;
  color: #131313;
}
.search-pref .search-pref-list__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.search-pref .search-pref-list__list li {
  -webkit-box-flex: 0;
          flex: 0 0 33.333%;
  max-width: 33.333%;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .search-pref .search-pref-list__list li {
    -webkit-box-flex: 0;
            flex: 0 0 20%;
    max-width: 20%;
  }
}
.search-pref .search-pref-list__list li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
  border-top: none;
  border-left: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .search-pref .search-pref-list__list li a {
    font-size: 0.875rem;
  }
}
.search-pref .search-pref-list__list li a::after {
  content: "";
  position: absolute;
  inset: 0 8px 0 auto;
  width: 5px;
  height: 5px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .search-pref .search-pref-list__list li a::after {
    inset: 0 28px 0 auto;
    width: 8px;
    height: 8px;
  }
}
@media (hover: hover) {
  .search-pref .search-pref-list__list li a:hover {
    background-color: #131313;
    color: #fff;
  }
  .search-pref .search-pref-list__list li a:hover::after {
    border-color: #fff;
  }
}
@media (width < 768px) {
  .search-pref .search-pref-list__list li:nth-child(-n+3) a {
    border-top: 1px solid #aaa;
  }
}
@media (width < 768px) {
  .search-pref .search-pref-list__list li:nth-of-type(3n + 1) a {
    border-left: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .search-pref .search-pref-list__list li:nth-child(-n+5) a {
    border-top: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .search-pref .search-pref-list__list li:nth-of-type(5n + 1) a {
    border-left: 1px solid #aaa;
  }
}
.search-pref .search-pref-list + .search-pref-table-wrap {
  margin-top: 80px;
}
.search-pref .search-pref-table-wrap {
  margin-top: 40px;
}
.search-pref .search-pref-table {
  table-layout: fixed;
  width: 100%;
}
.search-pref .search-pref-table tr:nth-of-type(2n + 1) th,
.search-pref .search-pref-table tr:nth-of-type(2n + 1) td {
  background-color: #f0f1f5;
}
.search-pref .search-pref-table th,
.search-pref .search-pref-table td {
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
@media (width < 768px) {
  .search-pref .search-pref-table th,
  .search-pref .search-pref-table td {
    display: block;
    width: 100% !important;
  }
}
.search-pref .search-pref-table th p,
.search-pref .search-pref-table td p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.75rem;
}
@media screen and (min-width: 768px) {
  .search-pref .search-pref-table th p,
  .search-pref .search-pref-table td p {
    padding: 1rem 1.5rem;
    min-height: 84px;
  }
}
.search-pref .search-pref-table th {
  width: 21.186%;
  border-right: 1px solid #fff;
  font-weight: 600;
  text-align: left;
}
.search-pref .search-pref-table td {
  font-weight: 400;
}
.search-pref .search-pref-table td:nth-of-type(1) {
  width: auto;
}
.search-pref .search-pref-table td:nth-of-type(2) {
  width: 15.254%;
}

.jcta-index {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .jcta-index {
    padding-bottom: 100px;
  }
}

.jcta-officers {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .jcta-officers {
    padding-bottom: 120px;
  }
}
.jcta-officers .jcta-officers-table {
  overflow-x: scroll;
}
.jcta-officers .jcta-officers-table + .jcta-officers-table {
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .jcta-officers .jcta-officers-table {
    overflow-x: hidden;
  }
}
.jcta-officers .jcta-officers-table__table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 800px;
}
@media screen and (min-width: 768px) {
  .jcta-officers .jcta-officers-table__table {
    width: 100%;
  }
}
.jcta-officers .jcta-officers-table__table tr:nth-of-type(2n) td {
  background-color: #f0f1f5;
}
.jcta-officers .jcta-officers-table__table th,
.jcta-officers .jcta-officers-table__table td {
  font-size: 0.875rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .jcta-officers .jcta-officers-table__table th,
  .jcta-officers .jcta-officers-table__table td {
    line-height: 1.8;
  }
}
.jcta-officers .jcta-officers-table__table th p,
.jcta-officers .jcta-officers-table__table td p {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  padding: 0.75rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .jcta-officers .jcta-officers-table__table th p,
  .jcta-officers .jcta-officers-table__table td p {
    padding: 1.5rem;
    min-height: 84px;
    line-height: 2.5;
    letter-spacing: 0.08em;
  }
}
.jcta-officers .jcta-officers-table__table th {
  border-right: 1px solid #fff;
  font-weight: 600;
  text-align: left;
  color: #fff;
  background-color: #3d4d6d;
}
.jcta-officers .jcta-officers-table__table th:nth-of-type(1) {
  width: 20%;
}
.jcta-officers .jcta-officers-table__table th:nth-of-type(2) {
  width: 30%;
}
.jcta-officers .jcta-officers-table__table td {
  border-right: 1px solid #fff;
  font-weight: 400;
}
.jcta-officers .jcta-officers-table__table td:nth-of-type(1) {
  width: auto;
}
.jcta-officers .jcta-officers-table__table td:nth-of-type(2) {
  width: 15.254%;
}

.jcta-summary {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .jcta-summary {
    padding-bottom: 100px;
  }
}
.jcta-summary .jcta-summary-table__table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.jcta-summary .jcta-summary-table__table tr:nth-of-type(2n + 1) th,
.jcta-summary .jcta-summary-table__table tr:nth-of-type(2n + 1) td {
  background-color: #f0f1f5;
}
@media (width < 768px) {
  .jcta-summary .jcta-summary-table__table tr:nth-of-type(2n + 1) th {
    border-bottom: 1px solid #fff;
  }
}
@media (width < 768px) {
  .jcta-summary .jcta-summary-table__table tr:not(:nth-of-type(2n + 1)) th {
    border-bottom: 1px solid #f0f1f5;
  }
}
.jcta-summary .jcta-summary-table__table th,
.jcta-summary .jcta-summary-table__table td {
  font-size: 0.875rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .jcta-summary .jcta-summary-table__table th,
  .jcta-summary .jcta-summary-table__table td {
    line-height: 1.8;
  }
}
@media (width < 768px) {
  .jcta-summary .jcta-summary-table__table th,
  .jcta-summary .jcta-summary-table__table td {
    display: block;
    width: 100% !important;
  }
}
.jcta-summary .jcta-summary-table__table th > div,
.jcta-summary .jcta-summary-table__table td > div {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  padding: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .jcta-summary .jcta-summary-table__table th > div,
  .jcta-summary .jcta-summary-table__table td > div {
    padding: 1.5rem;
    min-height: 84px;
  }
}
.jcta-summary .jcta-summary-table__table th {
  width: 30%;
  border-right: 1px solid #fff;
  font-weight: 600;
  text-align: left;
  vertical-align: top;
}
.jcta-summary .jcta-summary-table__table td {
  font-weight: 400;
}
.jcta-summary .jcta-summary-table__table td li a,
.jcta-summary .jcta-summary-table__table td p a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 8px;
  padding-block: 6px;
  text-decoration: underline;
  color: #131313;
}
@media (hover: hover) {
  .jcta-summary .jcta-summary-table__table td li a:hover,
  .jcta-summary .jcta-summary-table__table td p a:hover {
    text-decoration: none;
  }
}
.jcta-summary .jcta-summary-table__table td ul.seperated > li:not(:last-of-type) {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #fff;
}
.jcta-summary .jcta-summary-table__table td ul.disc {
  list-style-type: disc;
  padding-left: 1rem;
}
.jcta-summary .jcta-summary-table__table td iframe {
  margin-block: 1rem;
}

.jcta-statistics {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .jcta-statistics {
    padding-bottom: 120px;
  }
}
.jcta-statistics__links {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px 0;
}

.jcta-business {
  padding-bottom: 100px;
}
.jcta-business__text {
  margin-bottom: 1rem;
}
.jcta-business__text:not(:first-of-type) {
  margin-top: 2.25rem;
}
.jcta-business__links {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px 0;
}

.jcta-news-lists {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .jcta-news-lists {
    padding-bottom: 100px;
  }
}

.service-cabletv {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .service-cabletv {
    padding-bottom: 100px;
  }
}
.service-cabletv > img {
  display: block;
  margin-inline: auto;
}
.service-cabletv__text {
  margin-top: 2rem;
}

.service-broadcast {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .service-broadcast {
    padding-bottom: 100px;
  }
}
.service-broadcast__title:not(:first-child) {
  margin-top: 2rem;
}
.service-broadcast__title + .service-broadcast-menu {
  margin-top: 2rem;
}
.service-broadcast .service-broadcast-menu {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
.service-broadcast .service-broadcast-menu__item {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  height: 56px;
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-menu__item {
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
    height: 68px;
  }
}
.service-broadcast .service-broadcast-menu__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding-inline: 1rem;
  border: 1px solid #aaa;
  border-top: none;
  border-left: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-menu__item a {
    padding-inline: 1.5rem;
    font-size: 0.875rem;
  }
}
.service-broadcast .service-broadcast-menu__item a::after {
  content: "";
  position: absolute;
  inset: 0 12px 0 auto;
  width: 5px;
  height: 5px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-menu__item a::after {
    inset: 0 16px 0 auto;
    width: 8px;
    height: 8px;
  }
}
@media (hover: hover) {
  .service-broadcast .service-broadcast-menu__item a:hover {
    background-color: #aaa;
    color: #fff;
  }
  .service-broadcast .service-broadcast-menu__item a:hover::after {
    border-color: #fff;
  }
}
@media (width < 768px) {
  .service-broadcast .service-broadcast-menu__item:nth-child(-n+2) a {
    border-top: 1px solid #aaa;
  }
}
@media (width < 768px) {
  .service-broadcast .service-broadcast-menu__item:nth-of-type(2n + 1) a {
    border-left: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-menu__item:nth-child(-n+4) a {
    border-top: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-menu__item:nth-of-type(4n + 1) a {
    border-left: 1px solid #aaa;
  }
}
.service-broadcast__text {
  margin-top: 2rem;
}
.service-broadcast .service-broadcast-block {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-block {
    margin-top: 46px;
  }
}
.service-broadcast .service-broadcast-block__title {
  margin-bottom: 1.6rem;
}
.service-broadcast .service-broadcast-block__subtitle {
  margin-block: 1.6rem 1rem;
}
.service-broadcast .service-broadcast-block__text a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .service-broadcast .service-broadcast-block__text a:hover {
    text-decoration: none;
  }
}
.service-broadcast .service-broadcast-block__text + .service-broadcast-block__text {
  margin-top: 1.6rem;
}
.service-broadcast .service-broadcast-block__banner-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  flex-wrap: wrap;
  gap: 10px 1rem;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .service-broadcast .service-broadcast-block__banner-list {
    -webkit-box-pack: start;
            justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0 1rem;
  }
}
.service-broadcast .service-broadcast-block__banner-list li {
  -webkit-box-flex: 0;
          flex: 0 0 200px;
  max-width: 200px;
  height: 60px;
  border: 1px solid #ccc;
}
.service-broadcast .service-broadcast-block__banner-list li a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .service-broadcast .service-broadcast-block__banner-list li a:hover {
    opacity: 0.8;
  }
}
.service-broadcast .service-broadcast-block__banner-list li a img {
  display: block;
  max-height: 100%;
}
.service-broadcast .service-broadcast-block .service-broadcast-box {
  margin-top: 40px;
  padding: 38px 4.946%;
  border: 3px solid #f0f1f5;
}
.service-broadcast .service-broadcast-block__link {
  margin-top: 1.6rem;
}
.service-broadcast .service-broadcast-block__link a {
  font-size: 0.875rem;
  color: inherit;
  text-decoration: underline;
}
.service-broadcast .service-broadcast-block__link a img {
  display: inline-block;
  -webkit-margin-start: 0.5rem;
          margin-inline-start: 0.5rem;
}
@media (hover: hover) {
  .service-broadcast .service-broadcast-block__link a:hover {
    text-decoration: none;
  }
}

.service-faq {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .service-faq {
    padding-bottom: 100px;
  }
}
.service-faq__toggle .faq-toggle-content {
  display: none;
  margin-top: 24px;
  padding-bottom: 36px;
}
.service-faq__toggle .faq-toggle-content__text:not(:first-of-type) {
  margin-top: 16px;
}
.service-faq__toggle .faq-toggle-content__text a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .service-faq__toggle .faq-toggle-content__text a:hover {
    text-decoration: none;
  }
}
.service-faq__toggle .faq-toggle-content__subtitle {
  margin-top: 20px;
  margin-bottom: 16px;
}
.service-faq__toggle .faq-toggle-content__list {
  padding-left: 1.5rem;
  list-style-type: decimal;
}
.service-faq__toggle .faq-toggle-content__list ul {
  padding-left: 1rem;
  list-style-type: disc;
}
.service-faq .service-faq-menu {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
}
.service-faq .service-faq-menu__item {
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
  height: 48px;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-menu__item {
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
    height: 40px;
  }
}
.service-faq .service-faq-menu__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem;
  border: 1px solid #aaa;
  border-top: none;
  border-left: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-menu__item a {
    font-size: 0.875rem;
  }
}
.service-faq .service-faq-menu__item a::after {
  content: "";
  position: absolute;
  inset: 0 8px 0 auto;
  width: 5px;
  height: 5px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-menu__item a::after {
    inset: 0 16px 0 auto;
    width: 8px;
    height: 8px;
  }
}
@media (hover: hover) {
  .service-faq .service-faq-menu__item a:hover {
    background-color: #aaa;
    color: #fff;
  }
  .service-faq .service-faq-menu__item a:hover::after {
    border-color: #fff;
  }
}
.service-faq .service-faq-menu__item:nth-child(-n+2) a {
  border-top: 1px solid #aaa;
}
.service-faq .service-faq-menu__item:nth-of-type(2n + 1) a {
  border-left: 1px solid #aaa;
}
.service-faq .service-faq-block-menu {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block-menu {
    margin-top: 50px;
  }
}
.service-faq .service-faq-block-menu__item {
  -webkit-box-flex: 0;
          flex: 0 0 33.333%;
  max-width: 33.333%;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block-menu__item {
    -webkit-box-flex: 0;
            flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.service-faq .service-faq-block-menu__item a {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  padding-inline: 1.5rem;
  border: 1px solid #aaa;
  border-top: none;
  border-left: none;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #131313;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block-menu__item a {
    font-size: 0.875rem;
  }
}
.service-faq .service-faq-block-menu__item a::after {
  content: "";
  position: absolute;
  inset: 0 8px 0 auto;
  width: 5px;
  height: 5px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block-menu__item a::after {
    inset: 0 16px 0 auto;
    width: 8px;
    height: 8px;
  }
}
@media (hover: hover) {
  .service-faq .service-faq-block-menu__item a:hover {
    background-color: #aaa;
    color: #fff;
  }
  .service-faq .service-faq-block-menu__item a:hover::after {
    border-color: #fff;
  }
}
@media (width < 768px) {
  .service-faq .service-faq-block-menu__item:nth-child(-n+3) a {
    border-top: 1px solid #aaa;
  }
}
@media (width < 768px) {
  .service-faq .service-faq-block-menu__item:nth-of-type(3n + 1) a {
    border-left: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block-menu__item:nth-child(-n+8) a {
    border-top: 1px solid #aaa;
  }
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block-menu__item:nth-of-type(8n + 1) a {
    border-left: 1px solid #aaa;
  }
}
.service-faq .service-faq-block:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-block:not(:first-of-type) {
    margin-top: 76px;
  }
}
.service-faq .service-faq-child-block {
  margin-top: 40px;
}
.service-faq .service-faq-box-list {
  margin-top: 40px;
}
.service-faq .service-faq-box-list--child {
  margin-top: 24px;
}
.service-faq .service-faq-box-list__item {
  padding: 38px 4.946%;
  border: 3px solid #f0f1f5;
}
.service-faq .service-faq-box-list__item + .service-faq-box-list__item {
  border-top: none;
}
.service-faq .service-faq-box-list__q {
  display: -webkit-box;
  display: flex;
  gap: 0 24px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.service-faq .service-faq-box-list__q svg {
  -webkit-box-flex: 0;
          flex: 0 0 32px;
  max-width: 32px;
}
.service-faq .service-faq-box-list__q p {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: calc(100% - 56px);
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-box-list__q p {
    font-size: 0.875rem;
  }
}
.service-faq .service-faq-box-list__a {
  display: none;
  margin-top: 8px;
  padding-left: 56px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-box-list__a {
    font-size: 1rem;
  }
}
.service-faq .service-faq-box-list__a a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .service-faq .service-faq-box-list__a a:hover {
    text-decoration: none;
  }
}
.service-faq .service-faq-box-list__title {
  font-size: 0.8125rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-box-list__title {
    font-size: 0.875rem;
  }
}
.service-faq .service-faq-box-list__text {
  margin-top: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .service-faq .service-faq-box-list__text {
    font-size: 1rem;
  }
}

.guideline-guidelines {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .guideline-guidelines {
    padding-bottom: 120px;
  }
}
.guideline-guidelines__links {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 8px 0;
}
@media screen and (min-width: 768px) {
  .guideline-guidelines__links {
    margin-top: 40px;
  }
}
.guideline-guidelines .guideline-guidelines-block {
  margin-top: 72px;
}
.guideline-guidelines .guideline-guidelines-block__title {
  position: relative;
  padding-bottom: 12px;
  font-size: clamp(1.25rem, 0.6944rem + 1.1574vw, 1.5625rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .guideline-guidelines .guideline-guidelines-block__title {
    padding-bottom: 24px;
  }
}
.guideline-guidelines .guideline-guidelines-block__title::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 2px;
  background-color: #f0f1f5;
}
.guideline-guidelines .guideline-guidelines-block__title::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 200px;
  height: 2px;
  background-color: #3d4d6d;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-lists {
  margin-top: 24px;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list {
  display: -webkit-box;
  display: flex;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list:nth-of-type(2n + 1) {
  background-color: #f0f1f5;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dt,
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dt,
  .guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd {
    min-height: 84px;
    padding: 1rem 1.5rem;
  }
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dt {
  -webkit-box-flex: 0;
          flex: 0 0 32%;
  max-width: 32%;
  border-right: 1px solid #fff;
  font-weight: 600;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd {
  -webkit-box-flex: 1;
          flex: 1 1 68%;
  max-width: 68%;
  font-weight: 400;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd a:hover {
    text-decoration: none;
  }
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd a img {
  display: inline;
}
.guideline-guidelines .guideline-guidelines-block .guideline-guidelines-block-list dd a + a {
  margin-top: 8px;
}

.guideline-operate {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .guideline-operate {
    padding-bottom: 100px;
  }
}
.guideline-operate__text:not(:first-of-type) {
  margin-top: 24px;
}
.guideline-operate__link {
  margin-top: 24px;
  margin-bottom: 24px;
}
.guideline-operate__notes {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .guideline-operate__notes {
    font-size: 0.75rem;
  }
}
.guideline-operate .guideline-operate-block {
  margin-top: 72px;
}
.guideline-operate .guideline-operate-block__link {
  margin-top: 24px;
}
.guideline-operate .guideline-operate-block__text {
  margin-top: 24px;
}
.guideline-operate .guideline-operate-block__text a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .guideline-operate .guideline-operate-block__text a {
    text-decoration: none;
  }
}

.guideline-remote {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .guideline-remote {
    padding-bottom: 100px;
  }
}
.guideline-remote__title {
  margin-block: 30px 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.333;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .guideline-remote__title {
    font-size: 0.875rem;
  }
}
.guideline-remote__text a {
  display: -webkit-box;
  display: flex;
  gap: 0 8px;
  line-height: 2;
  color: inherit;
}
.guideline-remote__text a span {
  text-decoration: underline;
}
@media (hover: hover) {
  .guideline-remote__text a:hover span {
    text-decoration: none;
  }
}
.guideline-remote__table table {
  width: 100%;
  margin-block: 16px;
  table-layout: fixed;
  border-collapse: collapse;
}
.guideline-remote__table table tr td {
  padding: 1rem 2rem;
  border: 1px solid #ccc;
}
.guideline-remote__table table tr td:first-of-type {
  width: 34%;
}
.guideline-remote__notes {
  margin-top: 24px;
}

.guideline-23ghz {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .guideline-23ghz {
    padding-bottom: 100px;
  }
}
.guideline-23ghz__text:not(:first-of-type) {
  margin-top: 24px;
}
.guideline-23ghz__text a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .guideline-23ghz__text a:hover {
    text-decoration: none;
  }
}
.guideline-23ghz .guideline-23ghz-box {
  margin-top: 30px;
  padding: 24px 4.946%;
  border: 3px solid #f0f1f5;
}
@media screen and (min-width: 768px) {
  .guideline-23ghz .guideline-23ghz-box {
    padding: 38px 4.946%;
  }
}
.guideline-23ghz .guideline-23ghz-box__text {
  margin-top: 24px;
}
.guideline-23ghz__link {
  margin-top: 24px;
}
.guideline-23ghz .guideline-23ghz-block {
  margin-top: 48px;
}
@media screen and (min-width: 768px) {
  .guideline-23ghz .guideline-23ghz-block {
    margin-top: 72px;
  }
}
.guideline-23ghz .guideline-23ghz-block__text {
  margin-top: 24px;
}
.guideline-23ghz .guideline-23ghz-block__subtitle {
  margin-top: 40px;
}

.release-lists {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .release-lists {
    padding-bottom: 72px;
  }
}
.release-lists__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 3.226%;
}
.release-lists__item {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .release-lists__item {
    -webkit-box-flex: 0;
            flex: 0 0 48.387%;
    max-width: 48.387%;
  }
}
.release-lists__item a {
  display: -webkit-box;
  display: flex;
  color: inherit;
}
@media (hover: hover) {
  .release-lists__item a:hover {
    opacity: 0.7;
  }
}
.release-lists__item a .img {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-flex: 0;
          flex: 0 0 100px;
  position: relative;
  max-width: 100px;
  aspect-ratio: 140/110;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .release-lists__item a .img {
    -webkit-box-flex: 0;
            flex: 0 0 140px;
    max-width: 140px;
  }
}
.release-lists__item a .img img {
  width: 100%;
}
.release-lists__item a .txt-box {
  -webkit-box-flex: 1;
          flex: auto;
  padding: 7px 0 0 10px;
}
@media screen and (min-width: 768px) {
  .release-lists__item a .txt-box {
    padding: 14px 0 0 20px;
  }
}
.release-lists__item a .meta {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.release-lists__item a .meta .date {
  font-size: 0.625rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .release-lists__item a .meta .date {
    font-size: 0.6875rem;
  }
}
.release-lists__item a .meta .category {
  font-size: 0.625rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .release-lists__item a .meta .category {
    font-size: 0.6875rem;
  }
}
.release-lists__item a .tit {
  margin-top: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .release-lists__item a .tit {
    margin-top: 12px;
  }
}
.release-lists__item a .company {
  margin-top: 5px;
  font-size: 0.6875rem;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (min-width: 768px) {
  .release-lists__item a .company {
    margin-top: 10px;
  }
}

.release-detail {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .release-detail {
    padding-bottom: 100px;
  }
}
.release-detail__meta {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
          align-items: center;
  gap: 0.5rem 0.75rem;
  margin-top: 1rem;
}
.release-detail__date {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.release-detail__category {
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #3d4d6d;
}
.release-detail__img {
  width: 100%;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .release-detail__img {
    margin-top: 46px;
  }
}
.release-detail__img img {
  display: block;
  margin-inline: auto;
}
.release-detail__content {
  margin-top: 2rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .release-detail__content {
    font-size: 0.875rem;
  }
}
.release-detail__content h2 {
  margin-bottom: 1.2rem;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .release-detail__content h2 {
    font-size: 1.375rem;
  }
}
.release-detail__content h2:not(:first-child) {
  margin-top: 2rem;
}
.release-detail__content h3 {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .release-detail__content h3 {
    font-size: 1.125rem;
  }
}
.release-detail__content h3:not(:first-child) {
  margin-top: 1.4rem;
}
.release-detail__content p {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .release-detail__content p {
    font-size: 0.875rem;
  }
}
.release-detail__content hr {
  margin-block: 2rem;
  border: none;
  border-top: 1px solid #3d4d6d;
}
.release-detail__content .pdf-link {
  margin-top: 40px;
}
.release-detail__pager {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .release-detail__pager {
    margin-top: 40px;
  }
}
.release-detail__pager .pager-list {
  position: relative;
  padding-block: 30px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.release-detail__pager .pager-list__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
}
.release-detail__pager .pager-list__item a {
  position: relative;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .release-detail__pager .pager-list__item a {
    font-size: 0.875rem;
  }
}
.release-detail__pager .pager-list__item a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
}
@media (hover: hover) {
  .release-detail__pager .pager-list__item a:hover {
    color: #999;
  }
  .release-detail__pager .pager-list__item a:hover::after {
    border-top: 1px solid #999;
    border-right: 1px solid #999;
  }
}
.release-detail__pager .pager-list__item--prev {
  margin-right: auto;
}
.release-detail__pager .pager-list__item--prev a {
  padding-left: 1.6rem;
}
.release-detail__pager .pager-list__item--prev a::after {
  inset: 0 auto 0 0.6rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.release-detail__pager .pager-list__item--next {
  margin-left: auto;
}
.release-detail__pager .pager-list__item--next a {
  padding-right: 1.6rem;
}
.release-detail__pager .pager-list__item--next a::after {
  inset: 0 0.6rem 0 auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.release-detail__pager .pager-list__back {
  position: absolute;
  inset: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-block: 30px;
}
.release-detail__pager .pager-list__back a {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .release-detail__pager .pager-list__back a {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .release-detail__pager .pager-list__back a:hover {
    color: #999;
  }
}

.admission {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .admission {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.admission__text {
  margin-top: 24px;
}
.admission__links {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .admission__links {
    gap: 20px 1.694%;
  }
}
.admission__links .pdf-link {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .admission__links .pdf-link {
    -webkit-box-flex: 0;
            flex: 0 0 49.153%;
    max-width: 49.153%;
  }
}
.admission .admission-block {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .admission .admission-block {
    margin-top: 56px;
  }
}
.admission .admission-block .admission-block-box {
  margin-top: 16px;
  padding: 20px;
  border: 3px solid #f0f1f5;
}
@media screen and (min-width: 768px) {
  .admission .admission-block .admission-block-box {
    padding: 20px 2.12%;
  }
}
@media (width < 768px) {
  .admission .admission-block .admission-block-box__text + .admission-block-box__text {
    margin-top: 12px;
  }
}

.link-section {
  padding-top: 30px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .link-section {
    padding-top: 0;
    padding-bottom: 120px;
  }
}
.link-section .link-section-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.link-section .link-section-table th,
.link-section .link-section-table td {
  padding: 20px 12px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .link-section .link-section-table th,
  .link-section .link-section-table td {
    padding: 20px;
  }
}
.link-section .link-section-table tr:nth-child(odd) th,
.link-section .link-section-table tr:nth-child(odd) td {
  background-color: #f0f1f5;
}
.link-section .link-section-table tr:nth-child(odd) th {
  border-right: 1px solid #fff;
}
.link-section .link-section-table th {
  width: 32%;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .link-section .link-section-table th {
    width: 30%;
  }
}
.link-section .link-section-table td {
  width: 68%;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .link-section .link-section-table td {
    width: 70%;
  }
}
.link-section .link-section-table td a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .link-section .link-section-table td a:hover {
    text-decoration: none;
  }
}
.link-section .link-section-table td a img {
  display: inline-block;
  margin-left: 5px;
  vertical-align: middle;
}

.bcas-regulations {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .bcas-regulations {
    padding-bottom: 120px;
  }
}
.bcas-regulations .bcas-regulations-block + .bcas-regulations-block {
  margin-top: 36px;
}
@media screen and (min-width: 768px) {
  .bcas-regulations .bcas-regulations-block + .bcas-regulations-block {
    margin-top: 72px;
  }
}
.bcas-regulations .bcas-regulations-block__links {
  margin-top: 30px;
}
.bcas-regulations .bcas-regulations-block__links .pdf-link + .pdf-link {
  margin-top: 20px;
}

.bcas-operation {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .bcas-operation {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.bcas-operation .bcas-operation-block {
  margin-top: 60px;
}
.bcas-operation .bcas-operation-block .figure-img {
  margin-block: 1rem;
}
.bcas-operation .bcas-operation-block__text {
  margin-top: 1rem;
}
.bcas-operation .bcas-operation-block__list {
  margin-top: 24px;
}
.bcas-operation .bcas-operation-block__list li + li {
  margin-top: 8px;
}
.bcas-operation .bcas-operation-block__list > li {
  padding-left: 1.9em;
  text-indent: -1.9em;
}
.bcas-operation .bcas-operation-block__list > li a {
  color: inherit;
  text-decoration: underline;
}
.bcas-operation .bcas-operation-block__list > li .pdf-link,
.bcas-operation .bcas-operation-block__list > li .xls-link {
  width: min(100%, 600px);
  margin-block: 1rem;
  text-indent: 0;
}
.bcas-operation .bcas-operation-block__list > li .bcas-operation-block__child-list {
  margin-top: 8px;
}
.bcas-operation .bcas-operation-block__list > li .bcas-operation-block__child-list li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.bcas-operation .bcas-operation-block__notes {
  margin-top: 10px;
  font-size: 0.75rem;
  line-height: 1.6;
  padding-left: 1.3em;
  text-indent: -1.3em;
}

.security-section {
  padding-top: 30px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .security-section {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.security-section .security-section-block + .security-section-block {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .security-section .security-section-block + .security-section-block {
    margin-top: 56px;
  }
}
.security-section .security-section-block__text {
  margin-top: 1rem;
}

.operator-index {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .operator-index {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.operator-index__index {
  margin-top: 30px;
}
.operator-index__toggle {
  margin-top: 30px;
}
.operator-index .operator-index-list-01 {
  margin-top: 30px;
}
.operator-index .operator-index-list-01 .pdf-link {
  margin-top: 24px;
}
.operator-index .operator-index-list-02 {
  display: none;
  margin-top: 30px;
}
.operator-index .operator-index-list-02__links .pdf-link {
  margin-top: 24px;
}
.operator-index .operator-index-block-wrap {
  margin-top: 30px;
}
.operator-index .operator-index-block {
  margin-top: 24px;
}
.operator-index .operator-index-block__title {
  font-size: 0.875rem;
}

.operator-jcta {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .operator-jcta {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.operator-jcta__links {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 20px 0;
  margin-top: 24px;
}
.operator-jcta .operator-jcta-block:not(:first-of-type) {
  margin-top: 30px;
}

.operator-schedule {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .operator-schedule {
    padding-bottom: 100px;
  }
}
.operator-schedule .operator-schedule-table {
  margin-top: 30px;
}
.operator-schedule .operator-schedule-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.operator-schedule .operator-schedule-table table th,
.operator-schedule .operator-schedule-table table td {
  padding: 1rem 12px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .operator-schedule .operator-schedule-table table th,
  .operator-schedule .operator-schedule-table table td {
    padding: 1rem 20px;
  }
}
.operator-schedule .operator-schedule-table table th {
  width: 18%;
  font-weight: 600;
  color: #fff;
  background-color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .operator-schedule .operator-schedule-table table th {
    width: 18%;
  }
}
.operator-schedule .operator-schedule-table table td:first-of-type {
  width: 18%;
  font-weight: 600;
}
.operator-schedule .operator-schedule-table table td:nth-of-type(2) {
  width: 64%;
  font-weight: 400;
}
.operator-schedule .operator-schedule-table table tr:nth-child(odd) td {
  background-color: #f0f1f5;
}
.operator-schedule .operator-schedule-table table tr:nth-child(odd) td:first-of-type {
  border-right: 1px solid #fff;
}
.operator-schedule .operator-schedule-table table tr:not(:last-of-type) th {
  border-bottom: 1px solid #fff;
}

.operator-conference {
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .operator-conference {
    padding-bottom: 100px;
  }
}
.operator-conference .operator-conference-block {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .operator-conference .operator-conference-block {
    margin-top: 56px;
  }
}
.operator-conference .operator-conference-block > .pdf-link {
  margin-top: 24px;
}
.operator-conference .operator-conference-block__list {
  margin-top: 24px;
}
.operator-conference .operator-conference-block__item a,
.operator-conference .operator-conference-block__item span {
  display: block;
  padding: 20px;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  background-color: #f0f1f5;
  color: inherit;
}
.operator-conference .operator-conference-block__item a {
  text-decoration: underline;
}
@media (hover: hover) {
  .operator-conference .operator-conference-block__item a:hover {
    text-decoration: none;
  }
}
.operator-conference .operator-conference-block__item:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}
.operator-conference .operator-conference-block h2,
.operator-conference .operator-conference-block h3 {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .operator-conference .operator-conference-block h2,
  .operator-conference .operator-conference-block h3 {
    font-size: 1.375rem;
  }
}
.operator-conference .operator-conference-block h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .operator-conference .operator-conference-block h4 {
    font-size: 1.125rem;
  }
}
.operator-conference .operator-conference-block .box-layout {
  margin-top: 24px;
}
.operator-conference .operator-conference-block .box-layout li {
  width: 100%;
}
.operator-conference .operator-conference-block .box-layout li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 1rem 1.5rem;
  border: 3px solid #f0f1f5;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
  color: #131313;
  text-decoration: underline;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media screen and (min-width: 768px) {
  .operator-conference .operator-conference-block .box-layout li a {
    padding: 1.5rem;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .operator-conference .operator-conference-block .box-layout li a:hover {
    text-decoration: none;
  }
}
.operator-conference .operator-conference-block .box-layout li + li {
  margin-top: 24px;
}

.operator-conference-detail .operator-conference-detail-list {
  margin-top: 30px;
}
.operator-conference-detail .operator-conference-detail-list .pdf-link + .pdf-link {
  margin-top: 24px;
}

.operator-vision {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .operator-vision {
    padding-bottom: 100px;
  }
}
.operator-vision .operator-vision__text {
  margin-top: 24px;
}
.operator-vision .index-box {
  margin-top: 46px;
}
.operator-vision .operator-vision-block:not(:first-child) {
  margin-top: 60px;
}
.operator-vision .operator-vision-block__title {
  margin-bottom: 46px;
}
.operator-vision .operator-vision-block__subtitle {
  margin-top: 46px;
}
.operator-vision .operator-vision-block__sectiontitle {
  margin-top: 40px;
}
.operator-vision .operator-vision-block__text {
  margin-top: 24px;
}
.operator-vision .operator-vision-block__text + .pdf-link {
  margin-top: 24px;
}
.operator-vision .operator-vision-block__text--flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 0;
}
@media screen and (min-width: 768px) {
  .operator-vision .operator-vision-block__text--flex {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    gap: 0 1rem;
  }
}
.operator-vision .operator-vision-block .operator-vision-box1 {
  margin-top: 24px;
  padding: 44px 4.73%;
  background-color: #f0f1f5;
}
.operator-vision .operator-vision-block .operator-vision-box1 .sub-title {
  margin-top: 18px;
}
.operator-vision .operator-vision-block .operator-vision-box1 > .text, .operator-vision .operator-vision-block .operator-vision-box1__list {
  margin-top: 12px;
}
.operator-vision .operator-vision-block .operator-vision-box1 .operator-vision-box1-list__item + .operator-vision-box1-list__item {
  margin-top: 24px;
}
.operator-vision .operator-vision-block .operator-vision-links {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
.operator-vision .operator-vision-block .operator-vision-links li {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .operator-vision .operator-vision-block .operator-vision-links li {
    lex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    width: calc(50% - 10px);
  }
}
.operator-vision .operator-vision-block .operator-vision-pdf-links {
  margin-top: 40px;
}
.operator-vision .operator-vision-block .operator-vision-pdf-links .pdf-link + .pdf-link {
  margin-top: 20px;
}

.operator-manual__links {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 0;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .operator-manual__links {
    gap: 20px;
  }
}
.operator-manual__links .pdf-link {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .operator-manual__links .pdf-link {
    -webkit-box-flex: 0;
            flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

.english {
  padding-top: 30px;
  padding-bottom: 40px;
  word-break: normal;
}
@media screen and (min-width: 768px) {
  .english {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.english__text:not(:first-of-type) {
  margin-top: 32px;
}
.english .english-block {
  margin-top: 40px;
}
.english .english-column {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 1.4rem 0;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .english .english-column {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    gap: 0 2.5rem;
  }
}
.english .english-column__img {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .english .english-column__img {
    -webkit-box-flex: 0;
            flex: 0 0 222px;
    max-width: 222px;
  }
}
.english .english-column__img img {
  display: block;
  margin-inline: auto;
}
.english .english-list {
  margin-top: 24px;
}
.english .english-d-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .english .english-d-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
  }
}
.english .english-d-list dt,
.english .english-d-list dd {
  padding: 1rem;
  border: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .english .english-d-list dt,
  .english .english-d-list dd {
    padding: 1rem 2rem;
  }
}
.english .english-d-list dt {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .english .english-d-list dt {
    -webkit-box-flex: 0;
            flex: 0 0 30%;
    max-width: 30%;
    border-bottom: 1px solid #eee;
    border-right: none;
  }
}
.english .english-d-list dd {
  -webkit-box-flex: 1;
          flex: auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .english .english-d-list dd {
    -webkit-box-flex: 0;
            flex: 0 0 70%;
    max-width: 70%;
  }
}
.english .english-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .english .english-subtitle {
    font-size: 0.875rem;
  }
}
.english .english-list2 {
  margin-top: 24px;
}
.english .english-list2__item + .english-list2__item {
  margin-top: 24px;
}
.english .english-list2__item .text {
  margin-top: 4px;
}
.english .english-box {
  margin-top: 24px;
  padding: 1.4rem 2rem;
  border: 3px solid #f0f1f5;
}

.site-map {
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .site-map {
    padding-bottom: 100px;
  }
}
.site-map a {
  color: inherit;
}
.site-map__inner {
  display: -webkit-box;
  display: flex;
  gap: 0 4.5rem;
}
.site-map .site-map-block {
  -webkit-box-flex: 0;
          flex: 0 0 calc(33.333% - 3rem);
}
.site-map .site-map-box {
  margin-top: 40px;
}
.site-map .site-map-list {
  margin-top: 12px;
}

.privacy {
  padding-top: 30px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .privacy {
    padding-top: 0;
    padding-bottom: 100px;
  }
}
.privacy .mt-8 {
  margin-top: 2rem !important;
}
.privacy .text:not(:first-child) {
  margin-top: 1.5rem;
}
.privacy .text-right {
  text-align: right;
}
.privacy .privacy-decimal-list {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  list-style: decimal;
}
.privacy .privacy-decimal-list li {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .privacy .privacy-decimal-list li {
    font-size: 0.875rem;
  }
}
.privacy .privacy-decimal-list li a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .privacy .privacy-decimal-list li a:hover {
    text-decoration: none;
  }
}
.privacy .privacy-decimal-list__item:not(:first-child) {
  margin-top: 0.5rem;
}
.privacy .privacy-child-list {
  margin-top: 0.5rem;
  padding-left: 1rem;
}
.privacy .privacy-child-list--indent > li {
  padding-left: 1.5rem;
  text-indent: -1.75rem;
}
.privacy .privacy-child-list--disc {
  padding-left: 1.7rem;
  list-style: disc;
}
.privacy .privacy-child-list--disc + .text {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .privacy .privacy-block {
    padding-inline: 2rem;
  }
}
.privacy .privacy-block:not(:first-of-type) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .privacy .privacy-block:not(:first-of-type) {
    margin-top: 5rem;
  }
}
.privacy .privacy-block__subtitle {
  margin-top: 1.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.privacy .privacy-box {
  width: min(100%, 600px);
  margin-top: 60px;
  margin-inline: auto;
  border: 1px solid #eee;
}
.privacy .privacy-box + .privacy-box {
  margin-top: 2rem;
}
.privacy .privacy-box__title {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: #f0f1f5;
}
.privacy .privacy-box__subtitle {
  margin-top: 1.2rem;
  font-size: 0.9375rem;
  font-weight: 600;
}
.privacy .privacy-box__content {
  margin-top: 0 !important;
  padding: 1rem 1.5rem 1.2rem;
}
.privacy .privacy-box__content a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .privacy .privacy-box__content a:hover {
    text-decoration: none;
  }
}
.privacy .privacy-column {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-section {
  width: 100%;
  margin-inline: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-inline: 5.333%;
}
@media screen and (min-width: 768px) {
  .contact-section {
    width: min(100%, 978px);
    padding-top: 0;
    padding-bottom: 100px;
    padding-inline: 24px;
  }
}
.contact-section__text {
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contact-section__text {
    font-size: 0.875rem;
  }
}
.contact-section .contact-section-privacy {
  height: 300px;
  margin-top: 24px;
  border: 3px solid #ccc;
  overflow-y: scroll;
}
.contact-section .contact-section-privacy .privacy-policy {
  padding: 24px 4.8%;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-section-privacy .privacy-policy {
    padding: 48px 6%;
  }
}
.contact-section .contact-section-privacy .privacy-policy__text {
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 2;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-section-privacy .privacy-policy__text {
    font-size: 0.875rem;
  }
}
.contact-section .contact-section-privacy .privacy-policy__text a {
  color: inherit;
  text-decoration: underline;
}
@media (hover: hover) {
  .contact-section .contact-section-privacy .privacy-policy__text a:hover {
    text-decoration: none;
  }
}
.contact-section .contact-form {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form {
    margin-top: 80px;
  }
}
.contact-section .contact-form .error {
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: #d61d1d;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .error {
    font-size: 0.8125rem;
  }
}
.contact-section .contact-form form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 20px 0;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form form {
    gap: 30px 0;
  }
}
.contact-section .contact-form input[type=text],
.contact-section .contact-form input[type=email],
.contact-section .contact-form input[type=tel],
.contact-section .contact-form input[type=number],
.contact-section .contact-form textarea {
  padding: 0.7rem 1.2rem;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form input[type=text],
  .contact-section .contact-form input[type=email],
  .contact-section .contact-form input[type=tel],
  .contact-section .contact-form input[type=number],
  .contact-section .contact-form textarea {
    font-size: 0.875rem;
  }
}
.contact-section .contact-form input[type=text]::-webkit-input-placeholder, .contact-section .contact-form input[type=email]::-webkit-input-placeholder, .contact-section .contact-form input[type=tel]::-webkit-input-placeholder, .contact-section .contact-form input[type=number]::-webkit-input-placeholder, .contact-section .contact-form textarea::-webkit-input-placeholder {
  color: #ccc;
}
.contact-section .contact-form input[type=text]::-moz-placeholder, .contact-section .contact-form input[type=email]::-moz-placeholder, .contact-section .contact-form input[type=tel]::-moz-placeholder, .contact-section .contact-form input[type=number]::-moz-placeholder, .contact-section .contact-form textarea::-moz-placeholder {
  color: #ccc;
}
.contact-section .contact-form input[type=text]::placeholder,
.contact-section .contact-form input[type=email]::placeholder,
.contact-section .contact-form input[type=tel]::placeholder,
.contact-section .contact-form input[type=number]::placeholder,
.contact-section .contact-form textarea::placeholder {
  color: #ccc;
}
.contact-section .contact-form input[type=text].w-full,
.contact-section .contact-form input[type=email].w-full,
.contact-section .contact-form input[type=tel].w-full,
.contact-section .contact-form input[type=number].w-full,
.contact-section .contact-form textarea.w-full {
  width: 100%;
  max-width: 100%;
}
.contact-section .contact-form input[type=text].w-120,
.contact-section .contact-form input[type=email].w-120,
.contact-section .contact-form input[type=tel].w-120,
.contact-section .contact-form input[type=number].w-120,
.contact-section .contact-form textarea.w-120 {
  width: 120px;
  max-width: 120px;
}
.contact-section .contact-form input[type=text].w-270,
.contact-section .contact-form input[type=email].w-270,
.contact-section .contact-form input[type=tel].w-270,
.contact-section .contact-form input[type=number].w-270,
.contact-section .contact-form textarea.w-270 {
  width: 270px;
  max-width: 270px;
}
.contact-section .contact-form .input-radio {
  position: relative;
  margin-left: 1.8rem;
  font-size: 0.9375rem;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .input-radio {
    font-size: 0.875rem;
  }
}
.contact-section .contact-form .input-radio + .input-radio {
  margin-left: 5rem;
}
.contact-section .contact-form .input-radio::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -1.8rem;
  width: 1.3rem;
  height: 1.3rem;
  margin-block: auto;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: transparent;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.contact-section .contact-form .input-radio:has(input:checked)::before {
  background-color: #ccc;
}
.contact-section .contact-form .input-radio input {
  display: none;
}
.contact-section .contact-form .form-element__list {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .form-element__list {
    flex-wrap: nowrap;
    gap: 0;
  }
}
.contact-section .contact-form .form-element dt {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  padding-top: 0.8rem;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .form-element dt {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .form-element dt {
    -webkit-box-flex: 0;
            flex: 0 0 27%;
    max-width: 27%;
  }
}
.contact-section .contact-form .form-element dt .required {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  margin-left: 0.6rem;
  font-size: 0.8125rem;
  line-height: 1;
  color: #fff;
  background-color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .form-element dt .required {
    font-size: 0.75rem;
  }
}
.contact-section .contact-form .form-element dd {
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .form-element dd {
    -webkit-box-flex: 1;
            flex: auto;
    max-width: 73%;
  }
}
.contact-section .contact-form .form-element dd.pt-5 {
  padding-top: 1.25rem;
}
.contact-section .contact-form .form-confirm {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  margin-top: 16px;
}
.contact-section .contact-form .form-confirm input[type=checkbox] {
  display: none;
}
.contact-section .contact-form .form-confirm label {
  position: relative;
  margin-left: 30px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form .form-confirm label {
    margin-left: 1.2rem;
    font-size: 0.875rem;
  }
}
.contact-section .contact-form .form-confirm label::before {
  content: "";
  position: absolute;
  inset: 0 auto 1px -30px;
  width: 1.2rem;
  height: 1.2rem;
  margin: auto 0;
  border: 1px solid #ccc;
  background-color: transparent;
}
.contact-section .contact-form .form-confirm label::after {
  content: none;
  position: absolute;
  inset: 0 auto 3px -23px;
  width: 6px;
  height: 12px;
  margin: auto 0;
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
  background-color: transparent;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.contact-section .contact-form .form-confirm input[type=checkbox]:checked + label::after {
  content: "";
}
.contact-section .contact-form .form-submit {
  margin-top: 16px;
}
.contact-section .contact-form .form-submit button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: min(86%, 330px);
  height: 60px;
  margin-inline: auto;
  border: 1px solid #3d4d6d;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background-color: #3d4d6d;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (hover: hover) {
  .contact-section .contact-form .form-submit button:hover {
    background-color: #fff;
    color: #3d4d6d;
  }
}
.contact-section .contact-form__text {
  margin-top: 50px;
  font-size: 0.9375rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form__text {
    font-size: 0.875rem;
  }
}
.contact-section .contact-form__text .large {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .contact-section .contact-form__text .large {
    font-size: 1.125rem;
  }
}

.auth .content {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: min(80%, 600px);
  padding: 5vh 0 10vh;
}
.auth .content .sub-title-large {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .auth .content .sub-title-large {
    margin-bottom: 48px;
  }
}
.auth .content .hint {
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .auth .content .hint {
    margin-top: 48px;
    font-size: 0.875rem;
  }
}
.auth .content .hint a {
  color: inherit;
  text-decoration: underline;
}
.auth .content .hint a:hover {
  text-decoration: none;
}

.login-form table {
  width: 100%;
  border-collapse: collapse;
}
.login-form table th,
.login-form table td {
  padding: 1rem;
}
.login-form table th {
  text-align: left;
}
.login-form table th p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3d4d6d;
}
@media screen and (min-width: 768px) {
  .login-form table th p {
    font-size: 0.875rem;
  }
}
.login-form table td input[type=text],
.login-form table td input[type=password] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #eee;
  border-radius: 0;
  font-size: 0.9375rem;
  color: #131313;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.login-form table td input[type=text]:focus,
.login-form table td input[type=password]:focus {
  border-color: #aaa;
}
.login-form .text-center {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .login-form .text-center {
    margin-top: 48px;
  }
}
.login-form .text-center input[type=submit] {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 180px;
  height: 48px;
  margin-inline: auto;
  border: 1px solid #3d4d6d;
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  background-color: #3d4d6d;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.login-form .text-center input[type=submit]:hover {
  color: #3d4d6d;
  background-color: #fff;
}

.auth-form .alert {
  margin-block: 30px;
}
.auth-form .alert button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 180px;
  height: 48px;
  margin-inline: auto;
  border: 1px solid #3d4d6d;
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  background-color: #3d4d6d;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auth-form .alert button:hover {
  color: #3d4d6d;
  background-color: #fff;
}
.auth-form p {
  margin-top: 30px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .auth-form p {
    margin-top: 48px;
    font-size: 0.875rem;
  }
}
.auth-form .form-group input[type=text],
.auth-form .form-group input[type=password] {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #eee;
  border-radius: 0;
  font-size: 0.9375rem;
  color: #131313;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.auth-form .form-group input[type=text]:focus,
.auth-form .form-group input[type=password]:focus {
  border-color: #aaa;
}
.auth-form .form-actions {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .auth-form .form-actions {
    margin-top: 48px;
  }
}
.auth-form .form-actions input[type=submit] {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 180px;
  height: 48px;
  margin-inline: auto;
  border: 1px solid #3d4d6d;
  border-radius: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  background-color: #3d4d6d;
  color: #fff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.auth-form .form-actions input[type=submit]:hover {
  color: #3d4d6d;
  background-color: #fff;
}

.error-404 {
  display: grid;
  place-items: center;
  height: 100vh;
  text-align: center;
}
.error-404 p {
  margin-top: 24px;
  line-height: 2;
}
.error-404 p a {
  font-size: 85%;
  text-decoration: underline;
  color: inherit;
}
@media (hover: hover) {
  .error-404 p a:hover {
    text-decoration: none;
  }
}

.page-body__meta {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 16px 0;
}
@media screen and (min-width: 768px) {
  .page-body__meta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -webkit-box-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
            align-items: center;
  }
}
.page-body__meta .search_box form {
  -webkit-box-flex: 1;
          flex: auto;
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 40px;
  border: 1px solid #eee;
}
@media screen and (min-width: 768px) {
  .page-body__meta .search_box form {
    -webkit-box-flex: 0;
            flex: 0 1 600px;
    max-width: 600px;
    width: 600px;
  }
}
.page-body__meta .search_box form input[type=text] {
  width: 100%;
  height: 100%;
  padding-inline: 12px 40px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #131313;
  background-color: #fff;
  border: none;
  outline: none;
}
.page-body__meta .search_box form input[type=text]::-webkit-input-placeholder {
  color: #999;
}
.page-body__meta .search_box form input[type=text]::-moz-placeholder {
  color: #999;
}
.page-body__meta .search_box form input[type=text]::placeholder {
  color: #999;
}
.page-body__meta .search_box form button {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  inset: 0 0 0 auto;
  width: 40px;
  height: 40px;
  margin-block: auto;
  padding: 0;
  border: none;
  outline: none;
  background-color: #3d4d6d;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.page-body__meta .search_box form button img {
  width: 24px;
  height: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-body__meta .category-select {
  -webkit-box-flex: 1;
          flex: auto;
  position: relative;
  max-width: 200px;
  width: 200px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .page-body__meta .category-select {
    -webkit-box-flex: 0;
            flex: 0 1 200px;
  }
}
.page-body__meta .category-select::after {
  content: "";
  position: absolute;
  inset: 0 16px 3px auto;
  width: 8px;
  height: 8px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.page-body__meta .category-select select {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding-inline: 12px;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: #131313;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  border: 1px solid #eee;
  margin: 0;
  padding-block: 0;
  background: none transparent;
}
.page-body__meta + .info-list {
  margin-top: 30px;
}

.detail-meta {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 1rem;
  margin-top: 1rem;
}
.detail-meta .post-date {
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.08em;
}
.detail-meta .label01 {
  padding: 0.2rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
  background-color: #3d4d6d;
}

.info-single {
  margin-top: 2rem;
}
.info-single a {
  color: #131313;
}

.page-foot {
  margin-top: 30px;
  padding-block: 30px;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 768px) {
  .page-foot {
    margin-top: 40px;
  }
}
.page-foot .list-1 {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
}
.page-foot .list-1 .link-prev a,
.page-foot .list-1 .link-next a {
  position: relative;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .page-foot .list-1 .link-prev a,
  .page-foot .list-1 .link-next a {
    font-size: 0.875rem;
  }
}
.page-foot .list-1 .link-prev a::after,
.page-foot .list-1 .link-next a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  margin-block: auto;
  border-top: 1px solid #131313;
  border-right: 1px solid #131313;
}
@media (hover: hover) {
  .page-foot .list-1 .link-prev a:hover,
  .page-foot .list-1 .link-next a:hover {
    color: #999;
  }
  .page-foot .list-1 .link-prev a:hover::after,
  .page-foot .list-1 .link-next a:hover::after {
    border-top: 1px solid #999;
    border-right: 1px solid #999;
  }
}
.page-foot .list-1 .link-prev {
  margin-right: auto;
}
.page-foot .list-1 .link-prev a {
  padding-left: 1.6rem;
}
.page-foot .list-1 .link-prev a::after {
  inset: 0 auto 0 0.6rem;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.page-foot .list-1 .link-next {
  margin-left: auto;
}
.page-foot .list-1 .link-next a {
  padding-right: 1.6rem;
}
.page-foot .list-1 .link-next a::after {
  inset: 0 0.6rem 0 auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-foot .list-1 .link-index {
  position: absolute;
  inset: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.page-foot .list-1 .link-index a {
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: inherit;
}
@media screen and (min-width: 768px) {
  .page-foot .list-1 .link-index a {
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .page-foot .list-1 .link-index a:hover {
    color: #999;
  }
}

.u-kokoro {
  font-family: "ab-kokoro-no3", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
}

.fade-up {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-delay: 0.64s;
          animation-delay: 0.64s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
.step span {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.1s;
}
.step span:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.step span:nth-child(2) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.step span:nth-child(3) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.step span:nth-child(4) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.step span:nth-child(5) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}
.step span:nth-child(6) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.step span:nth-child(7) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}
.step span:nth-child(8) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}
.step span:nth-child(9) {
  -webkit-transition-delay: 0.9s;
          transition-delay: 0.9s;
}
.step span:nth-child(10) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.step span:nth-child(11) {
  -webkit-transition-delay: 1.1s;
          transition-delay: 1.1s;
}
.step span:nth-child(12) {
  -webkit-transition-delay: 1.2s;
          transition-delay: 1.2s;
}
.step span:nth-child(13) {
  -webkit-transition-delay: 1.3s;
          transition-delay: 1.3s;
}
.step span:nth-child(14) {
  -webkit-transition-delay: 1.4s;
          transition-delay: 1.4s;
}
.step span:nth-child(15) {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.step span:nth-child(16) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.step span:nth-child(17) {
  -webkit-transition-delay: 1.7s;
          transition-delay: 1.7s;
}
.step span:nth-child(18) {
  -webkit-transition-delay: 1.8s;
          transition-delay: 1.8s;
}
.step span:nth-child(19) {
  -webkit-transition-delay: 1.9s;
          transition-delay: 1.9s;
}
.step span:nth-child(20) {
  -webkit-transition-delay: 2s;
          transition-delay: 2s;
}
.step span:nth-child(21) {
  -webkit-transition-delay: 2.1s;
          transition-delay: 2.1s;
}
.step span:nth-child(22) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.step span:nth-child(23) {
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
}
.step span:nth-child(24) {
  -webkit-transition-delay: 2.4s;
          transition-delay: 2.4s;
}
.step span:nth-child(25) {
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
}
.step span:nth-child(26) {
  -webkit-transition-delay: 2.6s;
          transition-delay: 2.6s;
}
.step span:nth-child(27) {
  -webkit-transition-delay: 2.7s;
          transition-delay: 2.7s;
}
.step span:nth-child(28) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.step span:nth-child(29) {
  -webkit-transition-delay: 2.9s;
          transition-delay: 2.9s;
}
.step span:nth-child(30) {
  -webkit-transition-delay: 3s;
          transition-delay: 3s;
}
.step span:nth-child(31) {
  -webkit-transition-delay: 3.1s;
          transition-delay: 3.1s;
}
.step span:nth-child(32) {
  -webkit-transition-delay: 3.2s;
          transition-delay: 3.2s;
}
.step span:nth-child(33) {
  -webkit-transition-delay: 3.3s;
          transition-delay: 3.3s;
}
.step span:nth-child(34) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.step span:nth-child(35) {
  -webkit-transition-delay: 3.5s;
          transition-delay: 3.5s;
}
.step span:nth-child(36) {
  -webkit-transition-delay: 3.6s;
          transition-delay: 3.6s;
}
.step span:nth-child(37) {
  -webkit-transition-delay: 3.7s;
          transition-delay: 3.7s;
}
.step span:nth-child(38) {
  -webkit-transition-delay: 3.8s;
          transition-delay: 3.8s;
}
.step span:nth-child(39) {
  -webkit-transition-delay: 3.9s;
          transition-delay: 3.9s;
}
.step span:nth-child(40) {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.step.-visible span {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.step2 span {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  -webkit-transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: all cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
}
.step2 span:nth-child(1) {
  -webkit-transition-delay: 1.12s;
          transition-delay: 1.12s;
}
.step2 span:nth-child(2) {
  -webkit-transition-delay: 1.24s;
          transition-delay: 1.24s;
}
.step2 span:nth-child(3) {
  -webkit-transition-delay: 1.36s;
          transition-delay: 1.36s;
}
.step2 span:nth-child(4) {
  -webkit-transition-delay: 1.48s;
          transition-delay: 1.48s;
}
.step2 span:nth-child(5) {
  -webkit-transition-delay: 1.6s;
          transition-delay: 1.6s;
}
.step2 span:nth-child(6) {
  -webkit-transition-delay: 1.72s;
          transition-delay: 1.72s;
}
.step2 span:nth-child(7) {
  -webkit-transition-delay: 1.84s;
          transition-delay: 1.84s;
}
.step2 span:nth-child(8) {
  -webkit-transition-delay: 1.96s;
          transition-delay: 1.96s;
}
.step2 span:nth-child(9) {
  -webkit-transition-delay: 2.08s;
          transition-delay: 2.08s;
}
.step2 span:nth-child(10) {
  -webkit-transition-delay: 2.2s;
          transition-delay: 2.2s;
}
.step2 span:nth-child(11) {
  -webkit-transition-delay: 2.32s;
          transition-delay: 2.32s;
}
.step2 span:nth-child(12) {
  -webkit-transition-delay: 2.44s;
          transition-delay: 2.44s;
}
.step2 span:nth-child(13) {
  -webkit-transition-delay: 2.56s;
          transition-delay: 2.56s;
}
.step2 span:nth-child(14) {
  -webkit-transition-delay: 2.68s;
          transition-delay: 2.68s;
}
.step2 span:nth-child(15) {
  -webkit-transition-delay: 2.8s;
          transition-delay: 2.8s;
}
.step2 span:nth-child(16) {
  -webkit-transition-delay: 2.92s;
          transition-delay: 2.92s;
}
.step2 span:nth-child(17) {
  -webkit-transition-delay: 3.04s;
          transition-delay: 3.04s;
}
.step2 span:nth-child(18) {
  -webkit-transition-delay: 3.16s;
          transition-delay: 3.16s;
}
.step2 span:nth-child(19) {
  -webkit-transition-delay: 3.28s;
          transition-delay: 3.28s;
}
.step2 span:nth-child(20) {
  -webkit-transition-delay: 3.4s;
          transition-delay: 3.4s;
}
.step2 span:nth-child(21) {
  -webkit-transition-delay: 3.52s;
          transition-delay: 3.52s;
}
.step2 span:nth-child(22) {
  -webkit-transition-delay: 3.64s;
          transition-delay: 3.64s;
}
.step2 span:nth-child(23) {
  -webkit-transition-delay: 3.76s;
          transition-delay: 3.76s;
}
.step2 span:nth-child(24) {
  -webkit-transition-delay: 3.88s;
          transition-delay: 3.88s;
}
.step2 span:nth-child(25) {
  -webkit-transition-delay: 4s;
          transition-delay: 4s;
}
.step2 span:nth-child(26) {
  -webkit-transition-delay: 4.12s;
          transition-delay: 4.12s;
}
.step2 span:nth-child(27) {
  -webkit-transition-delay: 4.24s;
          transition-delay: 4.24s;
}
.step2 span:nth-child(28) {
  -webkit-transition-delay: 4.36s;
          transition-delay: 4.36s;
}
.step2 span:nth-child(29) {
  -webkit-transition-delay: 4.48s;
          transition-delay: 4.48s;
}
.step2 span:nth-child(30) {
  -webkit-transition-delay: 4.6s;
          transition-delay: 4.6s;
}
.step2 span:nth-child(31) {
  -webkit-transition-delay: 4.72s;
          transition-delay: 4.72s;
}
.step2 span:nth-child(32) {
  -webkit-transition-delay: 4.84s;
          transition-delay: 4.84s;
}
.step2 span:nth-child(33) {
  -webkit-transition-delay: 4.96s;
          transition-delay: 4.96s;
}
.step2 span:nth-child(34) {
  -webkit-transition-delay: 5.08s;
          transition-delay: 5.08s;
}
.step2 span:nth-child(35) {
  -webkit-transition-delay: 5.2s;
          transition-delay: 5.2s;
}
.step2 span:nth-child(36) {
  -webkit-transition-delay: 5.32s;
          transition-delay: 5.32s;
}
.step2 span:nth-child(37) {
  -webkit-transition-delay: 5.44s;
          transition-delay: 5.44s;
}
.step2 span:nth-child(38) {
  -webkit-transition-delay: 5.56s;
          transition-delay: 5.56s;
}
.step2 span:nth-child(39) {
  -webkit-transition-delay: 5.68s;
          transition-delay: 5.68s;
}
.step2 span:nth-child(40) {
  -webkit-transition-delay: 5.8s;
          transition-delay: 5.8s;
}
.step2.-visible span {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.slick-slider {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.hero-sliders .slick-prev,
.hero-sliders .slick-next {
  height: 32px;
  width: 32px;
  top: 40px;
  -webkit-transform: none;
          transform: none;
  border: 1px solid #464646;
  border-radius: 50%;
  background-color: #fff;
  z-index: 2;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.hero-sliders .slick-prev::before,
.hero-sliders .slick-next::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background-color: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .hero-sliders .slick-prev:hover,
  .hero-sliders .slick-next:hover {
    background-color: #464646;
  }
  .hero-sliders .slick-prev:hover::before,
  .hero-sliders .slick-next:hover::before {
    border-color: #fff !important;
  }
}
.hero-sliders .slick-prev {
  left: -22px;
}
.hero-sliders .slick-prev::before {
  border-top: 2px solid #464646;
  border-left: 2px solid #464646;
  -webkit-transform: rotate(-45deg) translate(1px, 1px);
          transform: rotate(-45deg) translate(1px, 1px);
}
.hero-sliders .slick-next {
  right: -22px;
}
.hero-sliders .slick-next::before {
  border-top: 2px solid #464646;
  border-right: 2px solid #464646;
  -webkit-transform: rotate(45deg) translate(-1px, 1px);
          transform: rotate(45deg) translate(-1px, 1px);
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-sliders .slick-dotted.slick-slider {
  margin-bottom: 18px;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal, [data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}
.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay, .remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening, .remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}
.remodal-overlay.remodal-is-opening, .remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}
.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

@supports not ((-webkit-backdrop-filter: blur(15px)) or (backdrop-filter: blur(15px))) {
  .remodal-overlay {
    background: rgba(0, 0, 0, 0.6);
  }
}
/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  width: 648px;
  max-width: 90%;
  max-height: 505px;
  margin-inline: auto;
  border-radius: 4px;
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 10px;
  padding: 35px 24px 20px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
  vertical-align: middle;
}
.remodal.remodal-is-opening, .remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}
.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}
.remodal__map iframe {
  display: block;
  max-width: 100% !important;
  margin-inline: auto;
}

/* Vertical align of the modal dialog */
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.remodal-close:hover, .remodal-close:focus {
  color: #2b2e38;
}
.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm, .remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}
.remodal-confirm:hover, .remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}
.remodal-cancel:hover, .remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner, .remodal-cancel::-moz-focus-inner, .remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}
.lt-ie9 .remodal {
  width: 700px;
}

.remodal-close {
  position: absolute;
  inset: 0 0 auto auto;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}
.remodal-close::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 35px;
  border-top: 1px solid #555;
  font-size: 25px;
  line-height: 35px;
  text-align: center;
  -webkit-transform: rotate(45deg) translate(0px, 17px);
          transform: rotate(45deg) translate(0px, 17px);
}
.remodal-close::after {
  content: "";
  width: 35px;
  height: 35px;
  display: block;
  border-top: 1px solid #555;
  -webkit-transform: rotate(-45deg) translate(0px, 17px);
          transform: rotate(-45deg) translate(0px, 17px);
}