@charset "UTF-8";
:root {
  --color-bg: #fff;
  --color-footer-bg: #fff;
  --text-black:#000;
  --main-gray-color:#F4F4F4;
  --gray02:#DCDCDC;
  --color-primary:#084294;
  --color-secondary:#17B5B0;
  --color-danger:#ff0000;
  --font-langJa:"Noto Sans JP", sans-serif;
  --font-langEn: "Poppins", sans-serif;
  --font-langNum: "Poppins", sans-serif;
  --pc-width:1728;
  --contents-width:1092;
  --contents-width-px:calc(var(--contents-width) * 1px);
  --radius-sm: 4px;
  --radius-md: 15px;
  --radius-lg: 20px;
}
@media (max-width: 767px) {
  :root {
    --radius-md: 8px;
    --radius-lg: 8px;
  }
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: var(--font-langJa);
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-black);
  background-color: #fff;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  text-rendering: optimizeLegibility;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 767px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img, svg {
  max-width: 100%;
  height: auto;
}

[class$=-thumb] img {
  width: 100%;
  height: auto;
}

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

.l-main {
  position: relative;
  display: block;
  flex-grow: 1;
  padding-top: 120px;
}
@media (max-width: 767px) {
  .l-main {
    padding-top: 118px;
  }
}

.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: var(--contents-width-px);
}
@media (max-width: 767px) {
  .l-inner {
    width: 88%;
  }
}
.l-inner.--small {
  max-width: 602px;
}
.l-inner.--medium {
  max-width: 936px;
}
.l-inner.--large {
  max-width: 1300px;
}
.l-inner.--fluid {
  width: 100%;
  max-width: 100%;
}

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

/**********************
* utility
**********************/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.u-link {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.u-link:hover, .u-link:active, .u-link:focus {
  text-decoration: none;
}

.u-lbl-mail {
  display: inline-block;
  padding: 0.75em 1em;
  line-height: 1;
  background-color: #fff;
}

.u-en {
  font-family: var(--font-langEn);
  font-weight: 300;
  font-style: normal;
}

.u-tal {
  text-align: left;
}

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

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

.u-fwb {
  font-weight: 700;
}

.u-red {
  color: #FF0000;
}

.u-theme-color {
  color: var(--color-primary);
}

.bg-white {
  background-color: #fff;
}

.bg-navy {
  background: linear-gradient(90deg, #042A60 0%, #084294 100%);
}

.bg-blue {
  background-color: #F3F9FF;
}

.bg-theme-color {
  background-color: var(--color-primary);
}

.bg-secondary-color {
  background-color: var(--color-secondary);
}

.u-upcs {
  text-transform: uppercase;
}

/**********************
* header
***********************/
.l-header {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 100;
  transition: 0.75s height ease-in-out;
  transition-property: opacity, height, background-color;
  background-color: #fff;
  padding: 0px;
}
.l-header::before {
  position: absolute;
  top: 0;
  left: 40px;
  content: "";
  display: block;
  width: 9px;
  height: 87px;
  background: linear-gradient(90deg, #042A60 0%, #084294 100%);
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding: 0 30px 0 40px;
  height: 100%;
  width: 100%;
  max-width: 100%;
  gap: 0 4%;
}

.header-logo {
  position: relative;
  padding-left: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-logo__link {
  position: relative;
  display: block;
  max-width: 295px;
}
.header-logo__link img {
  width: 100%;
  height: auto;
}
.header-logo__link:hover, .header-logo__link:focus {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .l-header {
    padding-bottom: 20px;
    height: 118px;
  }
  .l-header::before {
    top: 0;
    left: 4%;
    width: 5px;
    height: 97px;
  }
  .l-header .l-inner {
    padding: 0 4%;
    align-items: flex-end;
  }
  .header-logo__link {
    max-width: 198px;
  }
}
/**********************
* PC header
**********************/
.header-nav__pc {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: inherit;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
  height: 120px;
}
.header-nav__pc .gnav {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 1em 0;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: min(0.92vw,16px);
  line-height: calc(23 / 20);
  font-weight: 700;
  gap: 0;
}
.header-nav__pc .gnav__item {
  position: relative;
}
.header-nav__pc .gnav__item:first-child {
  grid-column: 1/-1;
}
.header-nav__pc .gnav__item:nth-child(n+2) {
  padding: 0 0 0 0;
}
.header-nav__pc .gnav__item:nth-child(n+3) {
  padding-left: 1em;
}
.header-nav__pc .gnav__item:nth-child(n+3)::after {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: #9E9E9E;
}
.header-nav__pc .gnav__link {
  position: relative;
  padding: 0.25em 0;
  padding-right: 1em;
  display: block;
  font-size: min(0.92vw,16px);
  font-feature-settings: "palt";
}
.header-nav__pc .gnav__link:hover, .header-nav__pc .gnav__link:focus {
  opacity: 0.8;
}
.header-nav__pc .gnav__link.is-cs {
  opacity: 0.8;
  color: #848484;
  cursor: auto;
}
.header-nav__pc .header-login__link {
  margin-left: 38px;
  padding: 1em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  height: auto;
  font-size: 1.7rem;
  font-size: min(0.98vw,17px);
  line-height: calc(21 / 17);
  font-weight: 700;
  background: linear-gradient(90deg, #EAEDFF 0%, #FFFFFF 100%);
  border: 2px solid #084294;
  border-radius: 56px;
  width: 178px;
}
.header-nav__pc .header-login__link:hover, .header-nav__pc .header-login__link:focus {
  opacity: 0.8;
}
.header-nav__pc .header-login__link.is-cs {
  position: relative;
  overflow: hidden;
  cursor: auto;
}
.header-nav__pc .header-login__link.is-cs:hover, .header-nav__pc .header-login__link.is-cs:focus {
  opacity: 1;
}
.header-nav__pc .header-login__link.is-cs::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "Coming Soon";
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.header-nav__pc .header-login__link.is-cs::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.header-nav__pc .header-matching__link {
  margin-left: 17px;
  font-size: min(0.92vw,16px);
}
.header-nav__pc .header-matching__link .small {
  font-size: min(0.86vw,15px);
}
.header-nav__pc .header-matching__link:hover, .header-nav__pc .header-matching__link:focus {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  .header-nav__pc {
    display: none;
  }
}
/*****
* SP drawer
**********************/
.header-nav__sp {
  display: none;
}

.header-nav__sp {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 100px;
}
@media (max-width: 1200px) {
  .header-nav__sp {
    display: flex;
  }
}
.header-nav__sp .gnav {
  margin-top: 40px;
  display: block;
  width: 100%;
  padding: 0 2em;
}
.header-nav__sp .gnav__item {
  padding: 1em 0;
  width: 100%;
  display: flex;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 700;
  flex-direction: column;
  text-align: center;
  border-bottom: 1px solid #D8D8D8;
}
.header-nav__sp .gnav__link {
  position: relative;
  display: block;
  padding: 0 1em 0 0;
}
.header-nav__sp .gnav__link span {
  position: relative;
}
.header-nav__sp .gnav__link:hover, .header-nav__sp .gnav__link:focus, .header-nav__sp .gnav__link:active {
  opacity: 0.6;
}
.header-nav__sp .gnav__link.is-cs {
  opacity: 0.8;
  color: #848484;
  cursor: auto;
}
.header-nav__sp .gnav__link.is-cs:hover, .header-nav__sp .gnav__link.is-cs:focus, .header-nav__sp .gnav__link.is-cs:active {
  opacity: 0.8;
}
.header-nav__sp .header-login__link {
  margin: 48px auto 0;
  padding: 1em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  height: auto;
  font-size: 1.6rem;
  line-height: calc(21 / 17);
  font-weight: 700;
  background: linear-gradient(90deg, #EAEDFF 0%, #FFFFFF 100%);
  border: 2px solid #084294;
  border-radius: 56px;
  width: 178px;
}
.header-nav__sp .header-login__link:hover, .header-nav__sp .header-login__link:focus {
  opacity: 0.8;
}
.header-nav__sp .header-login__link.is-cs {
  position: relative;
  overflow: hidden;
  cursor: auto;
}
.header-nav__sp .header-login__link.is-cs:hover, .header-nav__sp .header-login__link.is-cs:focus {
  opacity: 1;
}
.header-nav__sp .header-login__link.is-cs::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "Coming Soon";
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  z-index: 2;
  width: 100%;
}
.header-nav__sp .header-login__link.is-cs::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.header-nav__sp .header-matching__link {
  margin: 30px auto 0;
}
.header-nav__sp .header-matching__link:hover, .header-nav__sp .header-matching__link:focus {
  opacity: 0.8;
}
.header-nav__sp .menu-sp-honbu {
  margin-top: 48px;
  padding: 34px 0 38px;
  width: 100%;
}
.header-nav__sp .header-honbu__link {
  margin: 0 auto 0;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 281px;
  color: #fff;
}
.header-nav__sp .header-honbu__link span {
  position: relative;
  padding-right: 1.5em;
  display: inline-block;
}
.header-nav__sp .header-honbu__link span::after {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}
.header-nav__sp .header-honbu__link:hover, .header-nav__sp .header-honbu__link:focus {
  opacity: 0.8;
}

/* メニュー表示設定*/
.header-nav__sp {
  position: fixed;
  top: 118px;
  right: 0;
  color: var(--text-black);
  background-color: #fff;
  width: 100%;
  max-width: 410px;
  height: 100vh;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .header-nav__sp {
    max-width: 100%;
  }
}

.is-drawerActive .header-nav__sp {
  opacity: 1;
  visibility: visible;
}

/* ハンバーガーメニュー*/
.hamburger {
  display: none;
}

@media (max-width: 1200px) {
  .hamburger {
    position: absolute;
    content: "";
    top: 62px;
    right: 24px;
    bottom: 0;
    left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    outline: 0;
    border: 0;
    border-radius: 100%;
    width: 36px;
    height: 36px;
    background-color: var(--color-primary);
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .hamburger .icon {
    position: relative;
    margin-left: 2px;
    display: block;
    width: 16px;
    height: 11px;
  }
  .hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: #fff;
    height: 2px;
  }
  .hamburger__line:after,
.hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .hamburger__line:before {
    top: -5px;
  }
  .hamburger__line:after {
    top: 5px;
  }
  .is-drawerActive .hamburger__line {
    background-color: transparent;
  }
  .is-drawerActive .hamburger__line:after,
.is-drawerActive .hamburger__line:before {
    top: 0;
    background-color: #fff;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .hamburger__line:before {
    transform: rotate(-45deg);
  }
  .is-drawerActive .hamburger__line:after {
    transform: rotate(45deg);
    width: 100%;
  }
  .is-drawerActive .hamburger .text {
    margin: 0;
    width: 0;
    opacity: 0;
  }
  .is-drawerActive .l-header {
    box-shadow: none;
    border-radius: 0;
  }
}
/**********************
* footer
***********************/
.l-footer {
  margin-top: auto;
  color: #fff;
}

.footer-grid {
  padding: 85px 0 75px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 281px 1fr -webkit-max-content;
  grid-template-columns: 281px 1fr max-content;
  grid-template-rows: auto auto;
  gap: 0 6.5%;
  grid-template-areas: "g01 g02 g03" "g01 g02 g04";
}
.footer-grid .g01 {
  grid-area: g01;
}
.footer-grid .g02 {
  grid-area: g02;
}
.footer-grid .g03 {
  grid-area: g03;
}
.footer-grid .g04 {
  grid-area: g04;
}
.footer-grid .g05 {
  grid-area: g05;
}
.footer-grid.l-inner {
  max-width: 1400px;
}

.footer-logo {
  position: relative;
}

.footer-logo__link {
  display: block;
  max-width: 323px;
}
.footer-logo__link img {
  width: 100%;
  height: auto;
}
.footer-logo__link:hover, .footer-logo__link:focus {
  opacity: 0.8;
}

.footer-honbu__link {
  margin-top: 54px;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 281px;
}
.footer-honbu__link span {
  position: relative;
  padding-right: 1.5em;
  display: inline-block;
}
.footer-honbu__link span::after {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}
.footer-honbu__link:hover, .footer-honbu__link:focus {
  opacity: 0.8;
}

.footer-gnav.g02 {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .footer-gnav.g02 {
    display: none;
  }
}

.footer-gnav {
  font-size: 1.6rem;
  font-feature-settings: "palt";
  font-style: normal;
  font-weight: 700;
  min-width: 0;
}
@media (max-width: 1200px) {
  .footer-gnav {
    display: none;
  }
}
.footer-gnav > * + * {
  margin-top: 1.5em;
}

.footer-gnav__subtitle + * {
  margin-top: 0.5em;
}

.footer-gnav__list[data-type=relation] .footer-gnav__link {
  position: relative;
  padding: 0 0 0 1em;
  text-decoration: underline;
}
.footer-gnav__list[data-type=relation] .footer-gnav__link::after {
  position: absolute;
  left: 0;
  top: 0.5em;
  content: "";
  display: block;
  width: 0.75em;
  height: 0.75em;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
          mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
  background-color: #fff;
}
.footer-gnav__list[data-type=relation] .footer-gnav__item:nth-child(n+2) {
  margin-top: 0.25em;
}

.footer-gnav__item {
  position: relative;
}
.footer-gnav__item:nth-child(n+2) {
  margin-top: 0.75em;
}

.footer-gnav__link {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.87;
}
.footer-gnav__link.is-cs {
  color: #848484;
  cursor: auto;
}
.footer-gnav__link.is-cs:hover, .footer-gnav__link.is-cs:focus {
  opacity: 1;
}
.footer-gnav__link:hover, .footer-gnav__link:focus {
  opacity: 0.8;
}

.footer-submenu__list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-login__link {
  margin-top: 30px;
  padding: 1em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  height: auto;
  font-size: 1.7rem;
  line-height: calc(21 / 17);
  font-weight: 700;
  background-color: #fff;
  border-radius: 56px;
  margin-top: 25px;
  width: 178px;
}
.footer-login__link:hover, .footer-login__link:focus {
  opacity: 0.8;
}
.footer-login__link.is-cs {
  position: relative;
  overflow: hidden;
  cursor: auto;
}
.footer-login__link.is-cs:hover, .footer-login__link.is-cs:focus {
  opacity: 1;
}
.footer-login__link.is-cs::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "Coming Soon";
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.footer-login__link.is-cs::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.footer-matching__link {
  margin-top: 25px;
  max-width: 467px;
}
.footer-matching__link:hover, .footer-matching__link:focus {
  opacity: 0.8;
}

.footer-bottom {
  color: #000;
  background-color: #fff;
  height: 90px;
}
.footer-bottom .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.footer-bottom-logo {
  width: 183px;
  height: auto;
}
.footer-bottom-logo > a img {
  width: 100%;
  height: auto;
}
.footer-bottom-logo > a:hover, .footer-bottom-logo > a:focus {
  opacity: 0.8;
}

.footer-submenu__list {
  margin-left: 87px;
}

.footer-submenu__link {
  position: relative;
  display: block;
  padding: 0 0 0 1em;
}
.footer-submenu__link:hover, .footer-submenu__link:focus {
  opacity: 0.8;
}

.c-copy-text {
  margin-left: auto;
  font-size: 1.4rem;
}

@media (max-width: 1200px) {
  .has-fixed-menu .l-footer {
    padding-bottom: 92px;
  }
  .footer-grid {
    padding: 38px 0 40px;
    display: block;
  }
  .footer-logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
  .footer-logo__link {
    display: block;
    max-width: 296px;
  }
  .footer-honbu__link {
    margin: 30px auto 0;
    max-width: 281px;
  }
  .footer-honbu__link span {
    position: relative;
    padding-right: 1.5em;
    display: inline-block;
  }
  .footer-gnav.g02 {
    display: none;
  }
  .footer-button {
    display: none;
  }
  .footer-bottom {
    padding: 40px 0 50px;
    height: auto;
  }
  .footer-bottom .l-inner {
    height: auto;
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
  }
  .footer-bottom-logo {
    width: 183px;
    height: auto;
  }
  .footer-bottom-logo a {
    display: block;
  }
  .footer-submenu__list {
    margin-top: 20px;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .footer-submenu__item:nth-child(n+1) {
    margin-top: 1.25em;
  }
  .footer-submenu__link {
    padding: 0;
    font-size: 1.5rem;
  }
  .c-copy-text {
    margin: 40px auto 0;
    text-align: center;
  }
}
/**********************
* common
***********************/
/* 共通のベース */
.u-link-file {
  padding-right: 1.75em; /* アイコン分の余白 */
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 1.5em 1.5em;
}
.u-link-file:hover, .u-link-file:focus {
  opacity: 0.8;
}

/* PDF */
.u-link-file[data-file=pdf] {
  background-image: url("../img/common/icon_pdf.svg");
}

/* Word */
.u-link-file[data-file=doc] {
  background-image: url("../img/common/icon_word.svg");
}

/* Excel */
.u-link-file[data-file=xls] {
  background-image: url("../img/common/icon_excel.svg");
}

.c-title01 {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  color: var(--color-primary);
}
.c-title01-en {
  position: relative;
  font-size: 7.2rem;
  font-size: clamp(3.8rem,4.16vw,7.2rem);
  padding-left: 0.5em;
  line-height: 1;
}
.c-title01-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.2em;
  height: 0.2em;
  background-color: var(--color-primary);
  border-radius: 100%;
}

.c-title01-ja {
  display: inline-block;
  font-size: 2rem;
  font-size: clamp(1.8rem,1.15vw,2rem);
  font-weight: 700;
}

.c-title02 {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 10px;
}

.c-title02-en {
  position: relative;
  font-size: 5rem;
  font-size: clamp(2.4rem,2.54vw,4.4rem);
  line-height: 1;
  color: var(--color-primary);
}

.c-title02-ja {
  display: inline-block;
  font-size: 2.5rem;
  font-size: clamp(1.5rem,1.04vw,1.8rem);
  font-weight: 400;
  color: #000;
}

.c-subtitle01 {
  color: var(--color-primary);
  font-size: 2.8rem;
  font-size: clamp(1.8rem,1.62vw,2.8rem);
  font-weight: 700;
}
.c-subtitle01 span {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5em;
}
.c-subtitle01 span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: url(../img/common/bg_subtitle_line.svg) repeat-x bottom left;
}

.c-button01 {
  position: relative;
  display: flex;
  padding: 0.75em 4.5em 0.75em 1.5em;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.c-button01:not(.is-cs)::after {
  content: "";
  display: block;
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
  -webkit-mask-image: url(../img/common/button_arrow.svg);
          mask-image: url(../img/common/button_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  transition: color ease-in 0.3s;
  transition-property: color, background-color;
}
.c-button01:not(.is-cs):hover, .c-button01:not(.is-cs):focus {
  color: var(--color-primary);
  background-color: #fff;
}
.c-button01:not(.is-cs):hover::after, .c-button01:not(.is-cs):focus::after {
  background-color: var(--color-primary);
}
.c-button01.is-cs {
  position: relative;
  overflow: hidden;
  cursor: auto;
}
.c-button01.is-cs:hover, .c-button01.is-cs:focus {
  opacity: 1;
}
.c-button01.is-cs::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "Coming Soon";
  text-transform: capitalize;
  color: #fff;
  text-align: center;
  z-index: 2;
}
.c-button01.is-cs::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(100, 100, 100, 0.9);
  z-index: 1;
}
@media (max-width: 767px) {
  .c-button01 {
    padding: 0.75em 2.5em 0.75em 1.5em;
  }
  .c-button01::after {
    right: 1em;
  }
}

.c-text01 {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-text01 {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}

.c-text02 {
  font-size: 1.8rem;
  line-height: 2.11;
}
@media (max-width: 767px) {
  .c-text02 {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}

.c-page-title {
  padding: 1.5em 0;
  font-size: 4.5rem;
  font-size: clamp(3rem,2.6vw,4.5rem);
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 767px) {
  .c-page-title {
    padding: 0.75em 0;
    font-size: min(8vw,30px);
  }
}

.c-page-title01 {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  color: #fff;
}
.c-page-title01-en {
  position: relative;
  font-size: 4.1rem;
  font-size: clamp(2.8rem,2.37vw,4.1rem);
  padding-left: 0.5em;
  line-height: 1;
}
.c-page-title01-en::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 0.2em;
  height: 0.2em;
  background-color: #fff;
  border-radius: 100%;
}

.c-page-title01-ja {
  display: inline-block;
  font-size: 3.2rem;
  font-size: clamp(2rem,1.85vw,3.2rem);
  font-weight: 700;
  font-feature-settings: "palt";
}
@media (max-width: 767px) {
  .c-page-title01-ja {
    line-height: 1.5;
  }
}

.c-list01 {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-list01 {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}
.c-list01 li {
  position: relative;
  padding-left: 1.5em;
}
.c-list01 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-list02 {
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-list02 {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}
.c-list02 li {
  padding-left: 1em;
  text-indent: -1em;
}

.c-num-list01 {
  font-size: 1.6rem;
  line-height: 2;
  counter-reset: number 0;
}
@media (max-width: 767px) {
  .c-num-list01 {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}
.c-num-list01 li {
  position: relative;
  padding-left: 3.5em;
}
.c-num-list01 li:nth-child(n+2) {
  margin-top: 2.5em;
}
.c-num-list01 li::before {
  content: counter(number);
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0.1em;
  display: block;
  width: 2em;
  height: 2em;
  text-align: center;
  color: var(--color-primary);
  border-radius: 100%;
  border: 1px solid var(--color-primary);
}

.c-dl01 {
  display: flex;
  flex-wrap: wrap;
}
.c-dl01 dt {
  margin-top: 1em;
  width: 4em;
  font-weight: 700;
  color: var(--color-primary);
}
.c-dl01 dd {
  margin-top: 1em;
  padding-left: 1em;
  position: relative;
  width: calc(100% - 4em);
}
.c-dl01 dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: var(--color-primary);
  width: 1px;
  height: 80%;
  z-index: 1;
}

.c-dl02 dt {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary);
}
.c-dl02 dd {
  padding-top: 0.5em;
  font-size: 1.6rem;
}
.c-dl02 dd + dt {
  padding-top: 1em;
}

.c-button-matching {
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  height: auto;
  font-size: 16px;
  line-height: calc(21 / 16);
  font-weight: 700;
  text-align: center;
  background-color: #F4DA65;
  border-radius: 56px;
}
.c-button-matching span:not([class]) {
  position: relative;
  padding-right: 1.5em;
}
.c-button-matching span:not([class])::after {
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  -webkit-mask-image: url(../img/common/arrow.svg);
          mask-image: url(../img/common/arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--color-primary);
}
.c-button-matching .small {
  font-size: 15px;
}

.c-frame01 {
  padding: 1em;
  background-color: #F4F4F4;
  border-radius: 4px;
}

.c-box01 {
  padding: 1em 1em 1.5em;
  background: #FFFFFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 1.6rem;
  line-height: 2;
}
@media (max-width: 767px) {
  .c-box01 {
    font-size: 1.5rem;
    line-height: 1.86;
  }
}

.c-box01-title {
  color: var(--color-primary);
  font-weight: 700;
}

.c-box01-text {
  margin-top: 0.25em;
  font-weight: 400;
}

.c-table01 {
  border-spacing: 0;
  width: 100%;
  border-top: 1px solid var(--color-primary);
  border-left: 1px solid var(--color-primary);
  background-color: #fff;
}
.c-table01 th {
  padding: 0.5em 1em;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.28;
  background-color: #6385B5;
  color: #fff;
  border-bottom: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  text-align: center;
  vertical-align: middle;
}
.c-table01 td {
  padding: 1em 1em;
  font-size: 1.4rem;
  line-height: 1.28;
  border-bottom: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
  text-align: center;
  vertical-align: middle;
}

.c-label01 {
  display: block;
  font-size: 1.4rem;
  padding: 0.25em 1em;
  border-radius: 13px;
}
.c-label01.status-1 {
  background-color: #DB6262;
  color: #fff;
}
.c-label01.status-2 {
  background-color: #848484;
  color: #fff;
}
.c-label01.status-3 {
  background-color: var(--color-primary);
  color: #fff;
}

/**************
* fixed menu
***************/
.fixed-menu {
  display: none;
}
@media (max-width: 1200px) {
  .fixed-menu {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 92px;
    z-index: 99;
  }
  .fixed-menu.is-show {
    display: flex;
  }
}

/*************************
* TOP
**************************/
/*mv*/
.mv {
  position: relative;
  overflow: hidden;
  height: calc(100svh - 120px);
}
@media (max-width: 767px) {
  .mv {
    height: calc(100svh - 118px);
  }
}

.mv-title-wrap {
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  width: calc(914 / var(--pc-width) * 100%);
  aspect-ratio: 914/270;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 0 15px 15px 0;
}
@media (max-width: 767px) {
  .mv-title-wrap {
    width: 88%;
    border-radius: 0 12px 12px 0;
  }
}

.mv-title {
  font-size: 2.4rem;
  font-weight: 700;
  font-size: clamp(2.4rem,2.54vw,4.4rem);
}

.mv-slider-outer {
  margin: 0 0 0 auto;
  padding-bottom: calc(54 / var(--pc-width) * 100%);
  width: calc(1554 / var(--pc-width) * 100%);
  height: 100%;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
.mv-slider-outer .swiper.mv-swiper {
  overflow: visible;
}

.mv-swiper {
  height: 100%;
}

.mv-slide__thumb {
  width: 100%;
  height: 100%;
  aspect-ratio: 1554/908;
  overflow: hidden;
}
.mv-slide__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv-keyword {
  position: absolute;
  left: 6%;
  top: 17%;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75em;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  font-size: clamp(1.8rem,2.02vw,3.5rem);
  text-align: center;
  color: var(--color-primary);
}
.mv-keyword span {
  display: inline-block;
  padding: 0.25em 0.25em;
  line-height: 1;
  background-color: #fff;
}
@media (max-width: 767px) {
  .mv-keyword {
    font-size: 1.8rem;
    line-height: 1.66;
    font-size: min(4.56vw,18px);
  }
}

.slide01 .mv-keyword {
  position: absolute;
  left: auto;
  right: 8%;
  top: 31%;
}

.slide02 .mv-keyword {
  position: absolute;
  left: 8%;
  top: 31%;
}

.slide03 .mv-keyword {
  position: absolute;
  left: auto;
  right: 8%;
  top: 31%;
}

.slide04 .mv-keyword {
  position: absolute;
  left: 8%;
  top: 31%;
}

/* スライド部品　*/
/* ページネーション　*/
.mv-pagination {
  position: static;
  margin-left: auto;
  margin-top: 1em;
  width: -webkit-fit-content !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  /* 赤い進捗バー（初期は0%） */
  /* クリックで瞬時に切り替える時のチラつき軽減（任意） */
}
.mv-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 0 0 10px !important;
  width: 51px !important;
  height: 3px !important;
  border-radius: 0;
}
.mv-pagination .swiper-pagination-bullet {
  background-color: #d9d9d9;
}
.mv-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: #F29729; /* 赤 */
  transform-origin: left center;
  -webkit-animation: none;
          animation: none;
}
.mv-pagination .swiper-pagination-bullet-active::before {
  -webkit-animation: fillBar 5000ms linear forwards;
          animation: fillBar 5000ms linear forwards;
}
.mv-pagination .swiper-pagination-bullet {
  will-change: contents;
}

.mv-swiper.is-paused .swiper-pagination-bullet-active::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

@-webkit-keyframes fillBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes fillBar {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .mv {
    padding-bottom: 19%;
  }
  .mv-title-wrap {
    width: 92%;
    aspect-ratio: 365/133;
    border-radius: 0 12px 12px 0;
  }
  .mv-title {
    font-size: 2.4rem;
    font-weight: 700;
    font-size: min(6.12vw,24px);
  }
  .mv-slider-outer {
    width: 100%;
  }
  .mv-slide__thumb {
    border-radius: 0;
    aspect-ratio: 394/537;
  }
  .mv-keyword {
    position: absolute;
    left: 9%;
    top: 8%;
    right: auto;
    font-size: 1.8rem;
    line-height: 1.66;
    font-size: min(4.56vw,18px);
  }
  .slide01 .mv-keyword, .slide02 .mv-keyword, .slide03 .mv-keyword, .slide04 .mv-keyword {
    position: absolute;
    left: 9%;
    top: 8%;
  }
  .mv-slider-controller {
    display: none;
  }
}
.scroll {
  position: absolute;
  right: 20px;
  bottom: 0;
  height: 9.5714285714em;
  font-size: 14px;
  font-size: min(0.81vw,14px);
  writing-mode: vertical-rl;
}

/* 線のアニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  background-color: #fff;
  top: 0;
  content: "";
  left: -2.5em;
  margin: auto;
  position: absolute;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 10px;
  z-index: 2;
}

/* 線の背景色 */
.scroll::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  height: 9.5714285714em;
  left: -2.5em;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}

/* 線のアニメーション */
@-webkit-keyframes scroll {
  0% {
    transform: scale(1, 1);
    top: -8px;
  }
  50% {
    transform: scale(1, 1);
  }
  51% {
    transform: scale(1, 1);
  }
  100% {
    top: 100%;
    transform: scale(0, 0);
  }
}
@keyframes scroll {
  0% {
    transform: scale(1, 1);
    top: -8px;
  }
  50% {
    transform: scale(1, 1);
  }
  51% {
    transform: scale(1, 1);
  }
  100% {
    top: 100%;
    transform: scale(0, 0);
  }
}
@media (max-width: 767px) {
  .scroll {
    display: none;
  }
}
/* news*/
.top-news {
  padding-top: 197px;
  padding-bottom: 183px;
}
.top-news .l-inner {
  display: flex;
  justify-content: space-between;
}

.news-list {
  margin-left: 4%;
  width: calc(881/1300 * 100%);
}

.news-card__link {
  position: relative;
  padding: 1.75em 4.5em 1.75em 0;
  display: flex;
  gap: 20px;
  border-bottom: 2px solid #9E9E9E;
}
.news-card__link.is-cs {
  cursor: auto;
}
.news-card__link.is-cs::after {
  display: none;
}
.news-card__link::after {
  position: absolute;
  left: auto;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  -webkit-mask-image: url(../img/common/news_arrow.svg);
          mask-image: url(../img/common/news_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #000;
}

.news-card__title {
  position: relative;
  padding-left: 1em;
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  width: calc(100% - 6em);
  flex-shrink: 0;
}

.news-card__date {
  display: block;
  font-size: 1.6rem;
  color: #9E9E9E;
  width: 6em;
}

@media (max-width: 767px) {
  .top-news {
    padding-top: 50px;
    padding-bottom: 22px;
  }
  .top-news .l-inner {
    flex-direction: column;
  }
  .news-list {
    margin-top: 30px;
    margin-left: 0;
    width: 100%;
  }
  .news-card__link {
    padding: 1.75em 3.5em 1.75em 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .news-card__link::after {
    top: 64%;
  }
  .news-card__title {
    padding-left: 0;
    font-size: 1.5rem;
    width: 100%;
  }
  .news-card__date {
    font-size: 1.4rem;
    width: 100%;
  }
}
/* about */
.top-about {
  position: relative;
  padding: 216px 0;
  background: url(../img/top/bg_about.webp) no-repeat top center/cover;
}
.top-about::before {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  border-radius: 0 0 30px 30px;
  background-color: #fff;
}
.top-about::after {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  border-radius: 30px 30px 0 0;
  background-color: #fff;
}

.top-about-grid {
  padding: 102px calc(111/1300 * 100%);
  background-color: #fff;
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1fr calc(521/1104 * 100%);
  grid-template-rows: auto auto auto;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 0px calc(85/1104 * 100%);
  grid-auto-flow: row;
  grid-template-areas: "g01 g03" "g02 g03" "g04 g03";
}
.top-about-grid .g01 {
  grid-area: g01;
}
.top-about-grid .g02 {
  grid-area: g02;
}
.top-about-grid .g03 {
  grid-area: g03;
}
.top-about-grid .g04 {
  grid-area: g04;
}

.top-about-text {
  margin-top: 30px;
}

.top-about-thumb {
  align-self: center;
  aspect-ratio: 521/358;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.top-about-button {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .top-about {
    padding: 76px 0 96px;
    background: url(../img/top/bg_about_sp.webp) no-repeat top center/cover;
  }
  .top-about::before {
    height: 30px;
    border-radius: 0 0 16px 16px;
  }
  .top-about::after {
    height: 30px;
    border-radius: 16px 16px 0 0;
  }
  .top-about-grid {
    padding: 25px calc(20/355 * 100%);
    display: block;
    width: 100%;
  }
  .top-about-text {
    margin-top: 12px;
  }
  .top-about-thumb {
    margin-top: 20px;
    align-self: center;
  }
  .top-about-button {
    margin-top: 30px;
  }
  .top-about-button > * {
    margin: 0 auto;
    width: 72%;
  }
}
/* membership */
.top-membership {
  padding: 102px 0 60px;
}

.top-membership-wrap01 {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr calc(504/1302 * 100%);
  grid-template-rows: auto auto;
  gap: 0px calc(168/1302 * 100%);
  grid-template-areas: "g01 g03" "g02 g03";
}
.top-membership-wrap01 .g01 {
  grid-area: g01;
}
.top-membership-wrap01 .g02 {
  grid-area: g02;
}
.top-membership-wrap01 .g03 {
  grid-area: g03;
}

.top-membership-text {
  margin-top: 67px;
}

@media (max-width: 767px) {
  .top-membership {
    padding-top: 5px;
    padding-bottom: 22px;
  }
  .top-membership-wrap01 {
    display: block;
  }
  .top-membership-text {
    margin-top: 15px;
  }
  .top-membership-thumb {
    margin: 25px auto 0;
    width: 87%;
  }
}
.top-membership-list01 {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.top-membership-list01 > dt, .top-membership-list01 > dd {
  padding: 4.5em 0;
  border-bottom: 1px solid #9E9E9E;
}
.top-membership-list01 > dt {
  width: 230px;
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  font-size: 1.8rem;
  font-weight: 700;
}
.top-membership-list01 > dd {
  width: calc(100% - 230px);
}
.top-membership-list01 > :nth-last-child(1), .top-membership-list01 > :nth-last-child(2) {
  border-bottom: none !important;
}
@media (max-width: 767px) {
  .top-membership-list01 > dt {
    padding-top: 2em;
    padding-bottom: 0;
    width: 100%;
    border-bottom: none;
  }
  .top-membership-list01 > dt:first-child {
    padding-top: 0;
  }
  .top-membership-list01 > dd {
    padding: 1.5em 0;
    width: 100%;
  }
}

.top-membership-targetlist {
  max-width: 924px;
}
.top-membership-targetlist .small {
  font-size: 80%;
}

.top-membership-list02 {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.top-membership-list02 > dt {
  position: relative;
  padding-top: 1em;
  padding-right: 1.5em;
  width: 7em;
}
.top-membership-list02 > dt:not(:nth-last-child(2))::before {
  content: "";
  display: block;
  position: absolute;
  left: 31px;
  width: 9px;
  height: 100%;
  background: linear-gradient(0deg, #042A60 0%, #084294 100%);
  opacity: 0.3;
}
.top-membership-list02 > dt span {
  position: relative;
  padding: 0.25em 1em;
  color: #fff;
  background-color: var(--color-primary);
  text-align: center;
  border-radius: 4px;
}
.top-membership-list02 > dd {
  padding-top: 1em;
  padding-bottom: 3em;
  width: calc(100% - 7em);
  border-bottom: 1px solid #D8D8D8;
}
.top-membership-list02 > dd > * + * {
  margin-top: 1em;
}
.top-membership-list02 > :nth-last-child(1), .top-membership-list02 > :nth-last-child(2) {
  border-bottom: none !important;
}
.top-membership-list02 > :nth-fist-child(1) {
  padding-top: 0;
}
@media (max-width: 767px) {
  .top-membership-list02 > dt {
    position: relative;
    padding: 0;
    width: 100%;
  }
  .top-membership-list02 > dt span {
    position: absolute;
    left: 0;
    top: 1.5em;
  }
  .top-membership-list02 > dt:not(:nth-last-child(2))::before {
    display: none;
  }
  .top-membership-list02 > dd {
    padding-left: 0;
    width: 100%;
  }
  .top-membership-list02 dd:last-child {
    padding-bottom: 0;
  }
  .top-membership-list02 dd > .c-text01:first-child {
    padding-left: 6em;
  }
}

@media (max-width: 767px) {
  .top-membership-filelist {
    margin-top: 2em !important;
  }
}

.top-membership-list03 {
  display: flex;
  flex-wrap: wrap;
}
.top-membership-list03 > dt {
  padding: 1em;
  width: 9em;
  border-bottom: 1px solid #D8D8D8;
}
.top-membership-list03 > dd {
  padding-top: 1em;
  padding-bottom: 2em;
  width: calc(100% - 9em);
  border-bottom: 1px solid #D8D8D8;
}
.top-membership-list03 > dd * + * {
  margin-top: 1em;
}
.top-membership-list03 > dd li + li {
  margin-top: 0.5em;
}
.top-membership-list03 > :nth-last-child(1), .top-membership-list03 > :nth-last-child(2) {
  border-bottom: none !important;
}
.top-membership-list03 a, .top-membership-list03 span.u-link-file {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
@media (max-width: 767px) {
  .top-membership-list03 {
    flex-direction: column;
  }
  .top-membership-list03 > dt {
    padding: 1em 0;
    width: 100%;
    border-bottom: none;
  }
  .top-membership-list03 > dd {
    width: 100%;
  }
}

.text-search {
  display: inline-block;
  background: url(../img/top/search_text.svg) no-repeat center/contain;
}
.text-search span {
  display: inline-block;
  padding: 1em 4.5em 1em 1em;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .top-membership-mailbox * + * {
    margin-top: 0.5em;
  }
}

/***********************
* breadcrumb list
************************/
.breadcrumb {
  padding: 1.25em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: 1.4rem;
  line-height: 2.28;
}
.breadcrumb li {
  display: flex;
  margin-right: 0;
}
.breadcrumb li a {
  position: relative;
  display: block;
  color: #9E9E9E;
}
.breadcrumb li a:hover, .breadcrumb li a:focus {
  text-decoration: underline;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  margin-top: 0.75em;
  margin-right: 0;
  margin-left: 0.5em;
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  background-color: #000;
  -webkit-mask-image: url(../img/common/arrow_right.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/common/arrow_right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
@media (max-width: 767px) {
  .breadcrumb-wrap {
    display: none;
  }
}
/*************************
* about
**************************/
.page-about-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 66px;
  height: 636px;
  background: url(../img/about/about_kv.webp) no-repeat bottom center/cover;
}
.page-about-head .breadcrumb li {
  color: #fff;
}
.page-about-head .breadcrumb li::before {
  background-color: #fff;
}

.page-about-lead {
  margin-top: auto;
  color: #fff;
  width: 380px;
  font-size: 1.8rem;
  line-height: 2.11;
}

.page-about-contens {
  padding: 110px 0 116px;
}

.about-pf {
  margin-top: 80px;
  counter-reset: number 0;
}
.about-pf dt {
  padding-top: 48px;
  display: flex;
  align-items: center;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.45;
}
.about-pf dt::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  flex-shrink: 0;
  font-size: 6.6rem;
  line-height: 1.24;
  font-weight: 300;
  font-family: var(--font-langEn);
  color: var(--color-primary);
  width: 138px;
}
.about-pf dt .strong {
  font-size: 2.8rem;
  line-height: 1.14;
  text-decoration: underline;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 2px;
  color: var(--color-primary);
}
.about-pf dd {
  margin-top: 10px;
  margin-left: auto;
  width: calc(100% - 138px);
}
.about-pf dt:not(:first-child) {
  border-top: 2px solid #D2D2D2;
}
.about-pf dd:not(:last-child) {
  padding-bottom: 74px;
}

.pf-col02 {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 46% 51%;
  gap: 0 3%;
}

.pf-box-wrap {
  margin-top: 40px;
  padding: 2em 2em 3.5em;
}

.fig-pp {
  counter-reset: number 0;
  max-width: 838px;
  margin: 64px auto 0;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: auto auto auto;
  grid-template-rows: auto auto auto;
  gap: 0px 0px;
  grid-template-areas: "g02 g01 g03" "g04 g01 g05" "g04 g06 g05";
}
.fig-pp .g02 {
  grid-area: g02;
}
.fig-pp .g01 {
  grid-area: g01;
}
.fig-pp .g04 {
  grid-area: g04;
}
.fig-pp .g03 {
  grid-area: g03;
}
.fig-pp .g05 {
  grid-area: g05;
}
.fig-pp .g06 {
  grid-area: g06;
}
.fig-pp .g04, .fig-pp .g05 {
  margin-top: 1em;
}

.fig-pp-img {
  position: relative;
  padding: 2em 0 0 0;
}
.fig-pp-img > * {
  position: absolute;
  top: 3%;
  left: -7%;
  width: 96%;
}

.fig-pp-item {
  padding: 0 0.25em;
}

.fig-pp-title {
  position: relative;
  padding-left: 2em;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.75;
  font-feature-settings: "palt";
}
.fig-pp-title::before {
  content: counter(number);
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5em;
  height: 1.5em;
  text-align: center;
  color: #fff;
  z-index: 1;
  font-size: 1.8rem;
  border-radius: 100%;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.fig-pp-title.color01 {
  color: #D38AC3;
}
.fig-pp-title.color01::before {
  border: 1px solid #D38AC3;
  background-color: #D38AC3;
}
.fig-pp-title.color02 {
  color: #DCAF3B;
}
.fig-pp-title.color02::before {
  border: 1px solid #DCAF3B;
  background-color: #DCAF3B;
}
.fig-pp-title.color03 {
  color: #4BB6D7;
}
.fig-pp-title.color03::before {
  border: 1px solid #4BB6D7;
  background-color: #4BB6D7;
}
.fig-pp-title.color04 {
  color: #EF8989;
}
.fig-pp-title.color04::before {
  border: 1px solid #EF8989;
  background-color: #EF8989;
}
.fig-pp-title.color05 {
  color: #57BC92;
}
.fig-pp-title.color05::before {
  border: 1px solid #57BC92;
  background-color: #57BC92;
}

.fig-pp-text {
  margin-top: 1em;
  font-size: 1.3rem;
  line-height: 1.53;
}

.knowledge-list-wrap {
  margin-top: 40px;
}

.knowledge-list {
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 4%;
}
.knowledge-list li {
  text-align: center;
}

.knowledge-icon {
  margin: 1em auto 0;
  width: 110px;
}

@media (max-width: 767px) {
  .page-about-head {
    padding-bottom: 56px;
    height: auto;
    background: none;
  }
  .page-about-lead {
    margin-top: 20px;
    color: #000;
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.86;
  }
  .page-about-contens {
    padding: 35px 0 45px;
  }
  .page-about-lead-thumb img {
    width: 100%;
    height: auto;
  }
  .about-pf {
    margin-top: 30px;
  }
  .about-pf dt {
    padding-top: 20px;
    font-size: 1.7rem;
  }
  .about-pf dt::before {
    font-size: 4rem;
    width: 1.5em;
  }
  .about-pf dt .strong {
    font-size: 2rem;
  }
  .about-pf dd:not(:last-child) {
    border-bottom: 2px solid #D2D2D2;
  }
  .about-pf dd {
    margin-top: 25px;
    margin-left: 0;
    width: 100%;
  }
  .about-pf dd:not(:last-child) {
    padding-bottom: 38px;
  }
  .about-pf-title {
    padding-top: 1em;
  }
  .pf-col02 {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px 0;
  }
  .pf-box-wrap {
    margin-top: 20px;
  }
  .fig-pp {
    margin: 20px auto 0;
    display: block;
  }
  .fig-pp .g04, .fig-pp .g05 {
    margin-top: 2em;
  }
  .fig-pp-img {
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }
  .fig-pp-img > * {
    position: static;
    width: 100%;
  }
  .fig-pp-item {
    margin-top: 2em;
    padding: 0 0;
  }
  .fig-pp-title {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    padding-left: 2.75em;
  }
  .fig-pp-title::before {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    width: 2em;
    height: 2em;
  }
  .fig-pp-text {
    font-size: 1.3rem;
    line-height: 1.53;
  }
  .knowledge-list-wrap {
    margin-top: 40px;
  }
  .knowledge-list {
    max-width: 266px;
    gap: 0;
  }
  .knowledge-icon {
    margin: 0.5em auto 0;
    width: 50px;
  }
}
.about-activity {
  counter-reset: number 0;
}
.about-activity li {
  padding: 60px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto 1fr;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  gap: 0px 80px;
  grid-auto-flow: row;
  grid-template-areas: "activity-icon activity-title" "activity-icon activity-text" "activity-icon activity-button";
}
.about-activity li .activity-icon {
  grid-area: activity-icon;
}
.about-activity li .activity-title {
  grid-area: activity-title;
}
.about-activity li .activity-text {
  grid-area: activity-text;
}
.about-activity li .activity-button {
  grid-area: activity-button;
}
.about-activity li:not(:last-child) {
  border-bottom: 1px solid #C7C7C7;
}

.activity-icon {
  width: 160px;
}
.activity-icon img {
  width: 100%;
  height: auto;
}

.activity-title {
  position: relative;
  padding-left: 2.5em;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}
.activity-title::before {
  content: counter(number);
  counter-increment: number 1;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  text-align: center;
  color: #fff;
  background-color: var(--color-primary);
  border-radius: 100%;
  z-index: 2;
  font-size: 1.8rem;
}

.activity-text,
.activity-button {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .about-activity li {
    padding: 30px 0;
    display: block;
  }
  .activity-icon {
    margin: 0 auto;
    width: 115px;
  }
  .activity-title {
    font-size: 1.7rem;
  }
  .activity-button > * {
    margin: 0 auto;
    max-width: 345px;
  }
  .activity-button a {
    width: 100%;
    font-size: 1.4rem;
  }
  .activity-text,
.activity-button {
    margin-top: 30px;
  }
}
/**********************
* login
***********************/
.page-login-contents {
  padding: 120px 0;
}

.page-login-form {
  margin-top: 52px;
  padding: 61px 6.5% 65px;
  border-radius: 6px;
  background-color: #F3F9FF;
}
.page-login-form fieldset {
  margin: 0 auto;
  max-width: 600px;
}
.page-login-form input, .page-login-form textarea, .page-login-form select {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.page-login-form input:focus, .page-login-form textarea:focus, .page-login-form select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #335c99 inset;
}
.page-login-form input[type=text], .page-login-form input[type=password], .page-login-form textarea {
  height: 3.4em;
  max-width: 520px;
  width: 100%;
  padding: 0 16px;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #9E9E9E;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.page-login-form input[type=checkbox] {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}
.page-login-form .button_div {
  margin-top: 30px;
}
.page-login-form .buttons {
  margin: 0 auto 0;
  padding: 0.5em 2em;
  border-radius: 40px;
  border: 2px solid #084294;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  letter-spacing: 0.03em;
  color: #084294;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.page-login-lost {
  margin: 40px auto 0;
  max-width: 600px;
}

/**********************
* event
***********************/
.event-anchor-menu {
  padding: 24px 0 80px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.accordion__button {
  padding: 0.5em 0;
  display: flex;
  align-items: center;
  gap: 0 0.25em;
  width: 100%;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--color-primary);
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.accordion__button .toggle {
  position: relative;
  margin-left: auto;
  display: block;
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  background: url(../img/common/accordion_toggle.svg) no-repeat center/contain;
  transition: transform 0.3s ease-in-out;
  transform: rotate(-45deg);
}
.accordion__button .text {
  padding-top: 1em;
  padding-bottom: 1em;
  width: 100%;
  font-size: 2.2rem;
  font-weight: 700;
}

.accordion__body {
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
}

.accordion__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  transition: all 0.5s;
}

.accordion__menu.is-open .toggle {
  transform: rotate(0);
}
.accordion__menu.is-open .accordion__text {
  border-top: 1px solid var(--color-primary);
  padding: 2em 0;
}
.page-event-group {
  padding: 112px 0;
}
.page-event-group:not(:last-child) {
  border-bottom: 1px solid #D2D2D2;
}

.page-event-maintitle {
  font-size: 2.8rem;
  font-size: clamp(1.8rem,1.62vw,2.8rem);
  font-weight: 700;
  color: var(--color-primary);
}
.page-event-maintitle + .page-event-subtitle {
  margin: 0.5em;
}

.page-event-subtitle {
  position: relative;
  padding-bottom: 1em;
  color: var(--color-primary);
  font-size: 2rem;
  font-size: clamp(1.6rem,1.15vw,2rem);
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-feature-settings: "palt";
}
.page-event-subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 4px;
  background: url(../img/common/bg_subtitle_line.svg) repeat-x bottom left;
}
.page-event-subtitle span {
  position: relative;
  display: inline-block;
  padding-left: 1em;
  padding-right: 1em;
  border-left: 1px solid var(--color-primary);
  border-right: 1px solid var(--color-primary);
}

.page-event-box,
.page-event-table01-wrap {
  margin-top: 51px;
}

.page-event-table01-wrap {
  width: 100%;
  overflow: auto;
}
.page-event-table01-wrap > table {
  width: 1092px;
}
.page-event-table01-wrap th:first-child {
  width: 113px;
}
.page-event-table01-wrap th:nth-child(2) {
  width: 93px;
}
.page-event-table01-wrap th:nth-child(3) {
  width: 230px;
}
.page-event-table01-wrap th:nth-child(4) {
  width: 132px;
}
.page-event-table01-wrap th:nth-child(5) {
  width: 147px;
}
.page-event-table01-wrap th:nth-child(6) {
  width: 228px;
}
.page-event-table01-wrap th:nth-child(7) {
  width: 148px;
}
.page-event-table01-wrap td:nth-child(n+2) {
  text-align: left;
}
.page-event-table01-wrap .col-info a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.page-event-table01-wrap .col-info a:hover, .page-event-table01-wrap .col-info a:active, .page-event-table01-wrap .col-info a:focus {
  text-decoration: none;
}

.page-event-box {
  padding: 0 4%;
}

.page-event-info {
  margin-top: 40px;
  padding: 1em;
  border: 1px solid #084294;
  border-radius: 3px;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.page-event-info > * + * {
  margin-top: 1em;
}

@media (max-width: 767px) {
  .event-anchor-menu {
    padding: 24px 0 40px;
  }
  .accordion__button {
    font-size: 18px;
  }
  .accordion__button .text {
    font-size: 2rem;
  }
  .page-event-group {
    padding: 75px 0;
  }
  .page-event-maintitle {
    font-size: 2.4rem;
    font-size: clamp(2rem,1.38vw,2.4rem);
  }
  .page-event-subtitle {
    font-size: 2rem;
    font-size: clamp(1.6rem,1.15vw,2rem);
  }
  .page-event-subtitle::before {
    height: 8px;
  }
  .page-event-box,
.page-event-table01-wrap {
    margin-top: 30px;
  }
  .page-event-box {
    padding: 0 4%;
  }
  .page-event-info {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
/***********************
* マッチング
***********************/
button, input, optgroup, select, textarea {
  -webkit-appearance: auto;
  -moz-appearance: auto;
       appearance: auto;
}

.c-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
  margin: 0 auto;
  list-style: none;
}

.c-check-lbl {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
}

.c-checkbox {
  margin-top: 0.15em;
  flex-shrink: 0;
  border-color: var(--color-primary);
  width: 20px;
  height: 20px;
  accent-color: var(--color-primary);
}

/***********************
* anchorlink list
************************/
.c-anchor-menu {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 98%;
  gap: 1em 2em;
}
@media (max-width: 767px) {
  .c-anchor-menu {
    gap: 0;
  }
}
.c-anchor-menu li {
  position: relative;
}
.c-anchor-link {
  position: relative;
  padding: 1.75em 0.5em 1.75em 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  font-size: 1.8rem;
  color: var(--color-primary);
}
@media (max-width: 767px) {
  .c-anchor-link {
    padding: 0.5em 0.5em 0.5em 2em;
    font-size: 1.6rem;
  }
}
.c-anchor-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  background: url(../img/common/anchor_arrow.svg) no-repeat center/contain;
  width: 1.5em;
  height: 1.5em;
}

/*************************
* pagination
**************************/
.archivelist + .c-pagination {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .archivelist + .c-pagination {
    margin-top: 50px;
  }
}

.c-pagination {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.c-pagination .navigation.pagination .screen-reader-text {
  display: none;
}
.c-pagination .navigation.pagination .nav-links {
  text-align: center;
}
.c-pagination .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: #7EB0EC;
  background-color: #fff;
  border: 1px solid #7eb0ec;
  transition: background-color 0.3s ease-in-out;
  transition-property: background-color, color, border;
  text-align: center;
  font-weight: 400;
  border-radius: 50%;
}
.c-pagination .navigation.pagination .nav-links .page-numbers:focus, .c-pagination .navigation.pagination .nav-links .page-numbers:active, .c-pagination .navigation.pagination .nav-links .page-numbers:hover {
  color: #fff;
  background-color: #7EB0EC;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: #7EB0EC;
  border: none;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.current:active, .c-pagination .navigation.pagination .nav-links .page-numbers.current:hover {
  background-color: #7EB0EC;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev {
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover {
  color: #fff;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next svg,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev svg {
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev svg path {
  stroke: #7EB0EC;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus svg path, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active svg path, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active svg path,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover svg path {
  stroke: #fff;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next #arrow_left,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev #arrow_left {
  width: 16px;
  height: auto;
  display: block;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next #arrow_right,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev #arrow_right {
  width: 16px;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .c-pagination .navigation.pagination .nav-links .page-numbers {
    display: inline-block;
    margin: 0 2px;
  }
}
/***********************
* 404
************************/
.p-404-nodata-text {
  padding: 1em 0;
}

/***********************
* totop
************************/
.c-totop {
  position: fixed;
  bottom: 80px;
  right: 4%;
  width: 65px;
  height: 65px;
  z-index: 80;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  transition-property: opacity, visibility;
  border-radius: 50%;
  background-color: var(--color-primary);
  cursor: pointer;
}
@media (max-width: 960px) {
  .c-totop {
    width: 48px;
    height: 48px;
  }
}
.c-totop.is-show {
  opacity: 1;
  visibility: visible;
}

/*******************
* modal
*******************/
.is-modal-open {
  overflow: hidden;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  position: relative;
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  border-radius: 4px;
  overflow: hidden;
  box-sizing: border-box;
}

.modal__header {
  position: fixed;
  right: 4%;
  top: 5px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.modal__close {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 2.25rem;
  outline: #fff;
  color: #262626;
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  padding: 30px 40px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 80vh;
  overflow-y: scroll;
  overflow-x: scroll;
}

.modal_img_group {
  width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/**************************\
  Demo Animation Style
\**************************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
          animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/*************************
* animation
**************************/
.js-animation[data-type=fadeIn] {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, visibility;
}

.js-animation[data-type=fadeIn].is-show {
  visibility: visible;
  opacity: 1;
}

.js-animation[data-type=fadeInLeft] {
  transform: translate(-30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInLeft].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInRight] {
  transform: translate(30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInRight].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInUp] {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInUp].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=chgScale] {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=chgScale].is-show {
  opacity: 1;
  transform: scale(1);
}