/* ---------------------------------------------------
mixin
---------------------------------------------------- */
/*-------------------------------------------
font
-------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
/*-------------------------------------------
:root
-------------------------------------------*/
:root {
  --blk1: #272727;
  --gray1: #dcdcdc;
  --gray2: #9f9f9f;
  --gray3: #f7f7f7;
  --red1: #d32f2f;
  --txtlink: #1558d6;
  --sat: #0244e2;
  --sun: #d61a01;
}

/*-------------------------------------------
base
-------------------------------------------*/
html {
  font-size: 62.5%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: #fff;
  color: var(--blk1);
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}

a {
  color: var(--blk1);
}
a:hover {
  opacity: 0.7;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*-------------------------------------------
header
-------------------------------------------*/
.header-wrapper {
  background: #fff;
  border-bottom: var(--gray1) 1px solid;
  -webkit-transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
  transition: transform 0.5s, opacity 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .header-wrapper {
    border: none;
  }
}
.header-wrapper img {
  width: auto;
  height: 100%;
}
.header-wrapper .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-wrapper .header-inner > * {
  height: 96px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner > * {
    height: 56px;
  }
}
.header-wrapper .header-inner .header-btn {
  width: calc(100% - 192px - 96px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 12px 2% 0 0;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-inner .header-btn {
    display: none;
  }
}
.header-wrapper .header-inner .header-btn li + li {
  margin-left: 15px;
}
.header-wrapper .header-inner .header-btn img {
  max-height: 82px;
}
.header-wrapper .header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-wrapper .header-menu .drawer_hidden {
  display: none;
}
.header-wrapper .header-menu .drawer_open {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 96px;
  height: 96px;
  background: #fff;
  border-left: var(--gray1) 1px solid;
  z-index: 100;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .drawer_open {
    width: 56px;
    height: 56px;
    background: var(--gray2);
    border: none;
  }
}
.header-wrapper .header-menu .drawer_open span, .header-wrapper .header-menu .drawer_open span:before, .header-wrapper .header-menu .drawer_open span:after {
  position: absolute;
  content: "";
  display: block;
  background: var(--blk1);
  height: 2px;
  width: 24px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .drawer_open span, .header-wrapper .header-menu .drawer_open span:before, .header-wrapper .header-menu .drawer_open span:after {
    background: #fff;
    width: 18px;
  }
}
.header-wrapper .header-menu .drawer_open span:before {
  bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .drawer_open span:before {
    bottom: 6px;
  }
}
.header-wrapper .header-menu .drawer_open span:after {
  top: 8px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .drawer_open span:after {
    top: 6px;
  }
}
.header-wrapper .header-menu .drawer_open:hover {
  background: var(--blk1);
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .drawer_open:hover {
    background: var(--gray2);
  }
}
.header-wrapper .header-menu .drawer_open:hover span, .header-wrapper .header-menu .drawer_open:hover span:before, .header-wrapper .header-menu .drawer_open:hover span:after {
  background: #fff;
}
.header-wrapper .header-menu #drawer_input:checked ~ .drawer_open {
  background: var(--gray2);
}
.header-wrapper .header-menu #drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
.header-wrapper .header-menu #drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: #fff;
}
.header-wrapper .header-menu #drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: #fff;
}
.header-wrapper .header-menu .menu-nav {
  position: fixed;
  background: #fff;
  width: 100%;
  height: 100%;
  top: -180%;
  left: 0;
  z-index: 99;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav {
    display: block;
    overflow-y: scroll;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-inner {
  display: grid;
  grid-template-columns: auto minmax(530px, 43.4%);
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-inner {
    display: block;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-bg {
  display: grid;
  place-content: center;
  background: url("../img/bg_header01_pc.webp") no-repeat 0 0;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-bg {
    display: none;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-bg img {
  width: 16.6vw;
  max-width: 240px;
}
.header-wrapper .header-menu .menu-nav .menu-nav-logo {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-logo {
    display: block;
  }
  .header-wrapper .header-menu .menu-nav .menu-nav-logo img {
    width: 112px;
    height: 56px;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow-y: auto;
  padding: 2%;
}
@media screen and (max-width: 1366px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link {
    padding: 1%;
  }
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link {
    display: block;
    width: 96%;
    margin: 2vw auto;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link {
    margin: 4vw auto;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li {
  padding: 0 3%;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a {
  position: relative;
  display: inline-block;
  width: calc(100% - 96px - 10px);
  font-size: clamp(1.5rem, 1.1vw, 1.6rem);
  font-weight: 700;
  border-radius: 3px;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a {
    width: 100%;
    border-bottom: var(--gray1) 1px solid;
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a {
    font-size: clamp(1.3rem, 4.1vw, 1.6rem);
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blk1);
  border-right: 2px solid var(--blk1);
  top: 50%;
  right: 40px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a:after {
    border-width: 1px;
    right: 10px;
    opacity: 1;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a:hover {
  background: var(--gray1);
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a:hover {
    background: transparent;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a:hover:after {
  right: 20px;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu01 li a:hover:after {
    right: 10px;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu02, .header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2%;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu02 {
  margin-left: calc(3% + 10px);
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu02 {
    display: none;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu02 li + li {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 {
    margin-bottom: 4%;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 li {
  padding: 3%;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 li a {
  position: relative;
  display: inline-block;
  font-size: clamp(1.3rem, 0.97vw, 1.4rem);
  font-weight: 700;
  padding: 0 20px 0 10px;
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 li a {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 li a:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--blk1);
  border-right: 2px solid var(--blk1);
  top: 50%;
  right: 5px;
  margin-top: -4px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 li a:hover:after {
  right: 0;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu03 li + li {
  margin-left: 3%;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 3%;
  }
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 {
    display: block;
    padding: 3%;
  }
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 li a {
  display: block;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 li a img {
  width: 100%;
  height: auto;
}
.header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 li + li {
  margin-left: 15px;
}
@media screen and (max-width: 768px) {
  .header-wrapper .header-menu .menu-nav .menu-nav-link .menu04 li + li {
    margin-top: 15px;
    margin-left: 0;
  }
}
.header-wrapper .header-menu #drawer_input:checked ~ .menu-nav {
  top: 0;
}
@media screen and (max-width: 1024px) {
  .header-wrapper.js-hdMenu {
    background: transparent;
    width: auto;
    left: auto;
    right: 0;
  }
  .header-wrapper.js-hdMenu .header-inner {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header-wrapper.js-hdMenu .header-inner .header-logo {
    display: none;
  }
}

.btn-switch-img {
  position: relative;
  display: block;
  -webkit-filter: drop-shadow(2px 3px 10px #d2d2d2);
          filter: drop-shadow(2px 3px 10px #d2d2d2);
}
.btn-switch-img img {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.btn-switch-img img:last-of-type {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.btn-switch-img:hover img:first-of-type {
  opacity: 0;
}
.btn-switch-img:hover img:last-of-type {
  opacity: 1;
}

main {
  margin-top: 96px;
}
@media screen and (max-width: 1024px) {
  main {
    margin-top: 56px;
  }
}

/*-------------------------------------------
footer
-------------------------------------------*/
.footer-wrapper-btn {
  width: 100%;
  background: var(--gray1);
}
.footer-wrapper-btn .footer-inner {
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .footer-wrapper-btn .footer-inner {
    padding: 12px 20px;
  }
}
.footer-wrapper-btn .footer-inner > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 1094px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper-btn .footer-inner > ul {
    width: 100%;
  }
}
.footer-wrapper-btn .footer-inner > ul > li {
  width: calc((100% - 35px) / 2);
}
@media screen and (max-width: 768px) {
  .footer-wrapper-btn .footer-inner > ul > li {
    width: calc((100% - 20px) / 2);
  }
}
.footer-wrapper-btn .footer-inner > ul > li > a {
  position: relative;
  display: block;
  background: #fff;
  border: var(--blk1) 1px solid;
  border-radius: 5px;
  font-size: clamp(1.5rem, 1.1vw, 1.7rem);
  font-weight: 700;
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .footer-wrapper-btn .footer-inner > ul > li > a {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    text-align: left;
    padding: 20px 0 20px 14%;
  }
}
.footer-wrapper-btn .footer-inner > ul > li > a i {
  position: absolute;
  display: inline-block;
  width: 24px;
  height: 24px;
  top: 50%;
  right: 24px;
  margin-top: -12px;
}
@media screen and (max-width: 768px) {
  .footer-wrapper-btn .footer-inner > ul > li > a i {
    right: 8px;
  }
}
@media screen and (max-width: 320px) {
  .footer-wrapper-btn .footer-inner > ul > li > a i {
    width: 20px;
    height: 20px;
    margin-top: -10px;
  }
}
.footer-wrapper-btn .footer-inner > ul > li > a i img {
  width: 100%;
}
.footer-wrapper-btn .footer-inner > ul > li > a:hover {
  background: var(--blk1);
  color: #fff;
  opacity: 1;
}
.footer-wrapper-btn .footer-inner > ul > li > a:hover i > img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}
.footer-wrapper-btn .footer-inner > ul > li + li {
  margin-left: 35px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper-btn .footer-inner > ul > li + li {
    margin-left: 20px;
  }
}

.footer-wrapper {
  width: 100%;
  background: var(--blk1);
}
.footer-wrapper .footer-inner {
  width: 1320px;
  padding: 70px 0 20px;
  margin: 0 auto;
}
@media screen and (max-width: 1320px) {
  .footer-wrapper .footer-inner {
    width: calc(100% - 70px);
  }
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .footer-inner {
    width: calc(100% - 48px);
    padding: 50px 0 20px;
  }
}
.footer-wrapper .footer-inner .footer01, .footer-wrapper .footer-inner .footer02 {
  width: 100%;
}
.footer-wrapper .footer-inner .footer01 > dl, .footer-wrapper .footer-inner .footer02 > dl {
  width: calc((100% - 70px) / 3);
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .footer-inner .footer01 > dl, .footer-wrapper .footer-inner .footer02 > dl {
    width: calc((100% - 40px) / 3);
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer01 > dl, .footer-wrapper .footer-inner .footer02 > dl {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-wrapper .footer-inner .footer01 > dl > dt, .footer-wrapper .footer-inner .footer02 > dl > dt {
  border-bottom: var(--gray2) 1px solid;
}
.footer-wrapper .footer-inner .footer01 > *, .footer-wrapper .footer-inner .footer02 > * {
  margin-right: 35px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .footer-inner .footer01 > *, .footer-wrapper .footer-inner .footer02 > * {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer01 > *, .footer-wrapper .footer-inner .footer02 > * {
    margin-right: 0;
  }
}
.footer-wrapper .footer-inner .footer01 > *:nth-child(3n), .footer-wrapper .footer-inner .footer02 > *:nth-child(3n) {
  margin-right: 0;
}
.footer-wrapper .footer-inner .footer01 > dl > dt a {
  display: block;
  position: relative;
  color: #fff;
  font-size: clamp(1.5rem, 1.1vw, 1.7rem);
  font-weight: 700;
  padding: 10px 0;
}
.footer-wrapper .footer-inner .footer01 > dl > dt a:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .footer-inner .footer01 > dl > dt a:after {
    right: 10px;
  }
}
.footer-wrapper .footer-inner .footer01 > dl > dt a:hover:after {
  right: 10px;
}
.footer-wrapper .footer-inner .footer02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer02 {
    display: block;
  }
}
.footer-wrapper .footer-inner .footer02 > dl > dt {
  color: #fff;
  font-size: clamp(1.5rem, 1.1vw, 1.7rem);
  font-weight: 700;
  padding: 10px 0;
  margin-bottom: 10px;
}
.footer-wrapper .footer-inner .footer02 > dl > dt > i {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer02 > dl > dt > i {
    position: absolute;
    display: block;
    width: 24px;
    height: 24px;
    border: #fff 1px solid;
    border-radius: 50%;
    bottom: 10px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer02 > dl > dt {
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .footer-wrapper .footer-inner .footer02 > dl > dt:before, .footer-wrapper .footer-inner .footer02 > dl > dt:after {
    position: absolute;
    content: "";
    right: 6px;
    bottom: 21px;
    width: 12px;
    height: 1px;
    background: #fff;
  }
  .footer-wrapper .footer-inner .footer02 > dl > dt:after {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .footer-wrapper .footer-inner .footer02 > dl > dt.is-open:after {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer02 > dl > dd {
    display: none;
  }
}
.footer-wrapper .footer-inner .footer02 > dl > dd ul > li > a {
  position: relative;
  display: block;
  color: var(--gray1);
  padding: 10px 5px 10px 20px;
  -webkit-transition: 0.1s;
  transition: 0.1s;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .footer-inner .footer02 > dl > dd ul > li > a {
    padding: 5px 5px 5px 15px;
  }
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer02 > dl > dd ul > li > a {
    padding: 10px 5px 10px 20px;
  }
}
.footer-wrapper .footer-inner .footer02 > dl > dd ul > li > a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--gray1);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.footer-wrapper .footer-inner .footer02 > dl > dd ul > li > a:hover {
  opacity: 1;
  padding: 10px 5px 10px 25px;
}
.footer-wrapper .footer-inner .footer02 > dl > dd ul > li > a:hover:before {
  -webkit-animation: UpDown 0.1s;
          animation: UpDown 0.1s;
}
.footer-wrapper .footer-inner .footer-logo {
  text-align: center;
  margin: 74px auto 60px;
}
@media screen and (max-width: 1024px) {
  .footer-wrapper .footer-inner .footer-logo {
    margin: 50px auto 40px;
  }
}
.footer-wrapper .footer-inner .footer-logo a {
  display: block;
}
.footer-wrapper .footer-inner .footer-logo a img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer-logo a img {
    width: 120px;
  }
}
.footer-wrapper .footer-inner .footer-txt {
  color: #fff;
  font-size: 1.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-wrapper .footer-inner .footer-txt {
    font-size: 1rem;
  }
}

@-webkit-keyframes UpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes UpDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/*-------------------------------------------
fixed button [for sp]
-------------------------------------------*/
.fixed-btn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .fixed-btn {
    width: 100%;
    display: block;
    position: fixed;
    background: #fff;
    border-top: var(--blk1) 2px solid;
    bottom: 0;
    padding: 5px;
    z-index: 5;
  }
  .fixed-btn > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fixed-btn > ul li + li {
    margin-left: 5px;
  }
}

/*-------------------------------------------
page top
-------------------------------------------*/
.pagetop-btn {
  position: fixed;
  bottom: 2%;
  right: 2%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .pagetop-btn {
    bottom: 14px;
  }
}
@media screen and (max-width: 768px) {
  .pagetop-btn {
    bottom: 12%;
  }
}
.pagetop-btn a {
  display: block;
}
.pagetop-btn a img {
  width: 64px;
}
@media screen and (max-width: 1024px) {
  .pagetop-btn a img {
    width: 54px;
  }
}
@media screen and (max-width: 768px) {
  .pagetop-btn a img {
    width: 48px;
  }
}

/*-------------------------------------------
main
-------------------------------------------*/
.contents-wrapper {
  width: 100%;
  max-width: 100%;
  padding: 40px 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper {
    padding: 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .contents-wrapper {
    padding: 20px 0;
  }
}
.contents-wrapper:last-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper:last-child {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .contents-wrapper:last-child {
    margin-bottom: 20px;
  }
}
.contents-wrapper .contents-inner {
  position: relative;
  width: 94vw;
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 1320px) {
  .contents-wrapper .contents-inner {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contents-wrapper .contents-inner {
    width: 90vw;
  }
}
.contents-wrapper .contents-inner + .contents-inner {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .contents-wrapper .contents-inner + .contents-inner {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contents-wrapper .contents-inner + .contents-inner {
    margin-top: 30px;
  }
}

/*-------------------------------------------
elementlist
-------------------------------------------*/
.c-title__h1 {
  font-size: clamp(3.2rem, 2.5vw, 3.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .c-title__h1 {
    font-size: clamp(2rem, 6.1vw, 2.4rem);
  }
}

.c-title__h2 {
  font-size: clamp(2.4rem, 1.9vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  border-bottom: var(--blk1) 2px solid;
  padding-bottom: 0.3em;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 768px) {
  .c-title__h2 {
    font-size: clamp(1.6rem, 5.1vw, 2rem);
    text-align: left;
  }
}

.c-title__h3 {
  background: var(--gray2);
  border-radius: 5px;
  color: #fff;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 20px;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .c-title__h3 {
    font-size: clamp(1.3rem, 3.8vw, 1.4rem);
    padding: 8px 15px;
  }
}

.c-title__h4 {
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  .c-title__h4 {
    font-size: clamp(1.3rem, 3.84vw, 1.5rem);
  }
}

.c-title__h5 {
  font-size: clamp(1.5rem, 1.18vw, 1.7rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .c-title__h5 {
    font-size: clamp(1.2rem, 3.58vw, 1.4rem);
  }
}

.c-read {
  margin-bottom: 20px;
}
.c-read * {
  font-size: clamp(1.5rem, 1.1vw, 1.7rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .c-read * {
    font-size: clamp(1.4rem, 4.1vw, 1.6rem);
    text-align: left;
  }
}
.c-read * + * {
  margin-top: 10px;
}
.c-read h5 {
  font-size: clamp(1.8rem, 2.2vw, 2rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-read h5 {
    font-size: clamp(1.4rem, 4.6vw, 1.6rem);
  }
}

.c-text {
  margin-bottom: 20px;
}
.c-text * {
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .c-text * {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}
.c-text * + * {
  margin-top: 10px;
}

.c-text-small, .c-text-small * {
  font-size: clamp(1.1rem, 0.83vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  .c-text-small, .c-text-small * {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
  }
}

.c-border__gray {
  border: var(--gray2) 2px solid;
  padding: 30px;
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-border__gray {
    padding: 20px;
  }
}
.c-border__gray *:last-child {
  margin-bottom: 0;
}

.c-bg__gray {
  background: var(--gray3);
  border-radius: 10px;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .c-bg__gray {
    padding: 30px 15px;
  }
}

.c-link-text {
  color: var(--txtlink);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-link-text {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}

.c-link-blank {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  text-decoration: underline;
  padding-right: 34px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-link-blank {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}
.c-link-blank:after {
  position: absolute;
  content: url("../img/ic_link_blank.svg");
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  margin-top: -13px;
}

.c-link-pdf {
  position: relative;
  display: inline-block;
  color: var(--txtlink);
  font-weight: 700;
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  text-decoration: underline;
  padding-right: 34px;
}
@media screen and (max-width: 768px) {
  .c-link-pdf {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}
.c-link-pdf:after {
  position: absolute;
  content: url("../img/ic_link_pdf.svg");
  width: 24px;
  height: 24px;
  top: 50%;
  right: 0;
  margin-top: -13px;
}

.u-font-color__red {
  color: var(--red1) !important;
}

.u-font-color__sat {
  color: var(--sat) !important;
}

.u-font-color__sun {
  color: var(--sun) !important;
}

.u-font-bold {
  font-weight: 700 !important;
}

.c-list-memo li {
  display: block;
  position: relative;
  line-height: 1.5;
  padding-left: 1.4em;
}
.c-list-memo li .u-memo__mark {
  position: absolute;
  top: 3px;
  left: 0;
  font-size: 70%;
}
.c-list-memo li + li {
  margin-top: 0.3em;
}

.c-list-memo__number li {
  display: block;
  position: relative;
  line-height: 1.5;
  padding-left: 1.5em;
}
.c-list-memo__number li .u-memo__mark {
  position: absolute;
  top: 0;
  left: 0;
}
.c-list-memo__number li + li {
  margin-top: 0.3em;
}

.c-list-link li {
  display: block;
  position: relative;
  line-height: 1.5;
  padding-left: 1.5em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-list-link li .u-memo__mark {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--txtlink);
  border-right: 1px solid var(--txtlink);
  top: 6px;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-list-link li a {
  color: var(--txtlink);
}
.c-list-link li + li {
  margin-top: 0.3em;
}
.c-list-link li:hover {
  padding-left: 2em;
}

.c-list-dl > dl {
  margin-bottom: 20px;
}
.c-list-dl > dl > dt {
  font-size: clamp(1.5rem, 1.1vw, 1.7rem);
  font-weight: 700;
  padding-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-list-dl > dl > dt {
    font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  }
}
@media screen and (max-width: 768px) {
  .c-list-dl > dl > dt {
    font-size: clamp(1.2rem, 4.1vw, 1.6rem);
    padding-bottom: 10px;
  }
}
.c-list-dl > dl > dd {
  border-top: var(--gray2) 1px solid;
  border-bottom: var(--gray2) 1px solid;
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .c-list-dl > dl > dd {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
    padding: 10px 0;
  }
}

.c-dl-block {
  margin-bottom: 20px;
}
.c-dl-block > dl {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: var(--gray2) 1px solid;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl {
    display: block;
  }
}
.c-dl-block > dl:first-of-type {
  border-top: var(--gray2) 1px solid;
}
.c-dl-block > dl.bdr-dot {
  border-bottom: var(--gray2) 1px dashed;
}
.c-dl-block > dl > * {
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl > * {
    padding: 10px;
  }
}
.c-dl-block > dl > dt {
  place-self: center;
  font-size: clamp(1.5rem, 1.1vw, 1.7rem);
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .c-dl-block > dl > dt {
    font-size: clamp(1.4rem, 1.56vw, 1.6rem);
  }
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl > dt {
    font-size: clamp(1.2rem, 4.1vw, 1.6rem);
    padding-bottom: 5px;
  }
}
.c-dl-block > dl > dd {
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  text-align: left;
  border: none;
}
@media screen and (max-width: 768px) {
  .c-dl-block > dl > dd {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
    padding-top: 5px;
  }
}
.c-dl-block.c-dl-block__w40p > dl {
  grid-template-columns: 2fr 3fr;
}
.c-dl-block.c-dl-block__w60p > dl {
  grid-template-columns: 3fr 2fr;
}

.c-button--black {
  position: relative;
  display: inline-block;
  background: var(--blk1);
  border-radius: 30px;
  min-width: 360px;
  padding: 20px 70px 20px 40px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--black {
    min-width: 100%;
    padding: 20px 40px 20px 20px;
  }
}
.c-button--black .c-button__inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--black .c-button__inner {
    font-size: clamp(1.3rem, 3.5vw, 1.4rem);
    text-align: left;
  }
}
.c-button--black:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 37px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--black:after {
    right: 25px;
  }
}
.c-button--black:hover {
  opacity: 1;
  background: var(--gray1);
}
.c-button--black:hover .c-button__inner {
  color: var(--blk1);
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.c-button--black:hover:after {
  right: 32px;
  border-color: var(--blk1);
}
@media screen and (max-width: 768px) {
  .c-button--black:hover:after {
    right: 25px;
  }
}

.c-button--white {
  position: relative;
  display: inline-block;
  background: #fff;
  border: var(--blk1) 1px solid;
  border-radius: 30px;
  min-width: 360px;
  padding: 20px 70px 20px 40px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--white {
    min-width: 100%;
    padding: 20px 40px 20px 20px;
  }
}
.c-button--white .c-button__inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: var(--blk1);
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--white .c-button__inner {
    font-size: clamp(1.3rem, 3.5vw, 1.4rem);
    text-align: left;
  }
}
.c-button--white:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blk1);
  border-right: 2px solid var(--blk1);
  top: 50%;
  right: 37px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--white:after {
    right: 25px;
  }
}
.c-button--white:hover {
  opacity: 1;
  background: var(--gray1);
  border-color: var(--gray1);
}
.c-button--white:hover .c-button__inner {
  color: var(--blk1);
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.c-button--white:hover:after {
  right: 32px;
  border-color: var(--blk1);
}
@media screen and (max-width: 768px) {
  .c-button--white:hover:after {
    right: 25px;
  }
}

.c-button--normal {
  position: relative;
  display: inline-block;
  background: var(--gray2);
  border-radius: 30px;
  max-width: 100%;
  min-width: 360px;
  padding: 15px 70px 15px 40px;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--normal {
    min-width: 100%;
    padding: 15px 40px 15px 20px;
  }
}
.c-button--normal .c-button__inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--normal .c-button__inner {
    font-size: clamp(1.3rem, 3.5vw, 1.4rem);
    text-align: left;
  }
}
.c-button--normal:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
  right: 37px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-button--normal:after {
    right: 25px;
  }
}
.c-button--normal:hover {
  opacity: 1;
  background: var(--gray1);
}
.c-button--normal:hover .c-button__inner {
  color: var(--blk1);
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}
.c-button--normal:hover:after {
  right: 32px;
  border-color: var(--blk1);
}
@media screen and (max-width: 768px) {
  .c-button--normal:hover:after {
    right: 25px;
  }
}
.c-button--normal.anchor:after {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  margin-top: -7px;
}
@media screen and (max-width: 768px) {
  .c-button--normal.anchor:after {
    right: 25px;
  }
}
.c-button--normal.anchor:hover .c-button__inner {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.c-button--normal.anchor:hover:after {
  right: 37px;
  margin-top: -4px;
}
@media screen and (max-width: 768px) {
  .c-button--normal.anchor:hover:after {
    right: 25px;
    margin-top: -7px;
  }
}

.c-button--plus {
  position: relative;
  display: inline-block;
  background: #fff;
  border: var(--blk1) 1px solid;
  border-radius: 30px;
  max-width: 100%;
  padding: 10px 40px 10px 20px;
  margin-bottom: 20px;
  cursor: pointer;
}
.c-button--plus .c-button__inner {
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  color: var(--blk1);
  font-weight: 700;
  line-height: 1;
}
.c-button--plus:before, .c-button--plus:after {
  position: absolute;
  content: "";
  top: calc(50% - 1px);
  right: 14px;
  width: 10px;
  height: 2px;
  background: var(--blk1);
}
@media screen and (max-width: 1024px) {
  .c-button--plus:before, .c-button--plus:after {
    right: 10px;
  }
}
.c-button--plus:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-button--plus:hover {
  background: var(--blk1);
  opacity: 1;
}
.c-button--plus:hover .c-button__inner {
  color: #fff;
}
.c-button--plus:hover:before, .c-button--plus:hover:after {
  background: #fff;
}

.c-table-clm {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
.c-table-clm tr > * {
  color: var(--blk1);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 25px 10px;
}
@media screen and (max-width: 1024px) {
  .c-table-clm tr > * {
    padding: 20px 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-table-clm tr > * {
    padding: 10px 5px;
  }
}
.c-table-clm tr > th {
  font-size: clamp(1.6rem, 1.3vw, 2rem);
}
@media screen and (max-width: 768px) {
  .c-table-clm tr > th {
    font-size: clamp(1.4rem, 3.8vw, 1.6rem);
  }
}
.c-table-clm tr > td {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .c-table-clm tr > td {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}
.c-table-clm thead tr > th {
  border-bottom: var(--blk1) 1px solid;
}
.c-table-clm thead tr > th.noBdr {
  border: none;
}
.c-table-clm tbody tr > td {
  position: relative;
}
.c-table-clm tbody tr > td:after {
  position: absolute;
  display: block;
  background: var(--gray1);
  content: "";
  width: 94%;
  height: 1px;
  bottom: 0;
  left: 3%;
}

.c-table-clm-bdr {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
.c-table-clm-bdr tr > * {
  border: var(--gray1) 1px solid;
  color: var(--blk1);
  text-align: center;
  vertical-align: middle;
  padding: 10px;
}
@media screen and (max-width: 1024px) {
  .c-table-clm-bdr tr > * {
    padding: 5px 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-table-clm-bdr tr > * {
    padding: 5px;
  }
}
.c-table-clm-bdr tr > th {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-table-clm-bdr tr > th {
    font-size: clamp(1.2rem, 3.58vw, 1.4rem);
  }
}
.c-table-clm-bdr tr > th.u-bg-black {
  background: var(--blk1);
  color: #fff;
}
.c-table-clm-bdr tr > td {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .c-table-clm-bdr tr > td {
    font-size: clamp(1.2rem, 3.58vw, 1.4rem);
  }
}
.c-table-clm-bdr thead tr > th {
  background: var(--blk1);
  color: #fff;
  font-weight: 700;
}
.c-table-clm-bdr thead tr > th.blank {
  background: transparent;
  border-top: 0;
  border-left: 0;
}

.c-table-stage {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 20px;
}
.c-table-stage tr {
  border-bottom: var(--blk1) 1px solid;
}
.c-table-stage tr > * {
  color: var(--blk1);
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  padding: 20px 10px;
}
@media screen and (max-width: 1024px) {
  .c-table-stage tr > * {
    padding: 15px 5px;
  }
}
@media screen and (max-width: 768px) {
  .c-table-stage tr > * {
    padding: 10px 5px;
  }
}
.c-table-stage thead tr > th {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(3.4rem, 2.5vw, 3.6rem);
  line-height: 1;
  padding: 20px 10px 5px;
}
@media screen and (max-width: 1024px) {
  .c-table-stage thead tr > th {
    font-size: clamp(2.8rem, 2.9vw, 3rem);
  }
}
@media screen and (max-width: 768px) {
  .c-table-stage thead tr > th {
    font-size: clamp(1.8rem, 5.12vw, 2rem);
  }
}
.c-table-stage tbody tr > th {
  width: 18%;
  font-size: clamp(1.2rem, 0.97vw, 1.4rem);
  text-align: left;
}
@media screen and (max-width: 1024px) {
  .c-table-stage tbody tr > th {
    font-size: clamp(1.1rem, 1.26vw, 1.3rem);
  }
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr > th {
    width: 100%;
  }
}
.c-table-stage tbody tr > td {
  position: relative;
  width: 13.6666666667%;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  line-height: 1.2;
}
@media screen and (max-width: 1024px) {
  .c-table-stage tbody tr > td {
    font-size: clamp(1.4rem, 1.25vw, 1.6rem);
  }
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr > td {
    width: 16.6666666667%;
    font-size: clamp(0.9rem, 2.82vw, 1.1rem);
  }
}
.c-table-stage tbody tr > td:before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 15%;
  left: 0;
  width: 2px;
  height: 70%;
  border-left: var(--gray2) 2px dotted;
}
.c-table-stage tbody tr > td:first-of-type:before {
  border-left: var(--gray2) 2px solid;
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr > td:first-of-type:before {
    border-left: none;
  }
}
.c-table-stage tbody tr > td .u-stage {
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr > td .u-stage {
    font-size: clamp(0.8rem, 2.56vw, 1rem);
  }
}
.c-table-stage tbody tr > td .u-stage.black {
  background: var(--blk1);
  color: #fff;
}
.c-table-stage tbody tr > td .u-stage.white {
  background: #fff;
  border: var(--blk1) 1px solid;
  color: var(--blk1);
}
.c-table-stage tbody tr > td .u-stage.junior {
  background: var(--gray2);
  color: #fff;
  margin-top: 5px;
}
.c-table-stage tbody tr > td .u-sale {
  width: 90%;
  background: var(--blk1);
  border-radius: 30px;
  color: #fff;
  padding: 5px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr > td .u-sale {
    padding: 3px;
  }
}
.c-table-stage tbody tr > td .u-times {
  font-size: clamp(3.4rem, 2.5vw, 3.6rem);
  margin: 0 0.1em;
}
@media screen and (max-width: 1024px) {
  .c-table-stage tbody tr > td .u-times {
    font-size: clamp(2.8rem, 2.9vw, 3rem);
  }
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr > td .u-times {
    font-size: clamp(1.8rem, 5.12vw, 2rem);
  }
}
.c-table-stage tbody tr > td.u-line {
  position: relative;
}
.c-table-stage tbody tr > td.u-line:after {
  position: absolute;
  content: "";
  width: 60%;
  height: 1px;
  background: var(--blk1);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .c-table-stage tbody tr.forSPSE {
    display: table-row !important;
    border-bottom: var(--gray2) 1px dotted;
  }
}
.c-table-stage tbody tr.forSPSE > th {
  text-align: center;
}

.c-card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .c-card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-card-wrapper {
    display: block;
  }
}

.c-card-v01, .c-card-v02, .c-card-v03 {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .c-card-v01, .c-card-v02, .c-card-v03 {
    margin-bottom: 20px;
  }
}
.c-card-v01 .c-card-img img, .c-card-v02 .c-card-img img, .c-card-v03 .c-card-img img {
  width: 100%;
}
.c-card-v01 .c-card-txt, .c-card-v02 .c-card-txt, .c-card-v03 .c-card-txt {
  background: var(--gray3);
  padding: 25px;
}
@media screen and (max-width: 1024px) {
  .c-card-v01 .c-card-txt, .c-card-v02 .c-card-txt, .c-card-v03 .c-card-txt {
    padding: 20px;
  }
}
.c-card-v01 .c-card-txt .c-card-txt__ttl, .c-card-v02 .c-card-txt .c-card-txt__ttl, .c-card-v03 .c-card-txt .c-card-txt__ttl {
  font-weight: 700;
}
.c-card-v01 .c-card-txt .c-card-txt__txt, .c-card-v02 .c-card-txt .c-card-txt__txt, .c-card-v03 .c-card-txt .c-card-txt__txt {
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-card-v01 .c-card-txt .c-card-txt__txt, .c-card-v02 .c-card-txt .c-card-txt__txt, .c-card-v03 .c-card-txt .c-card-txt__txt {
    margin-bottom: 15px;
  }
}
.c-card-v01 .c-card-txt .c-card-txt__link, .c-card-v02 .c-card-txt .c-card-txt__link, .c-card-v03 .c-card-txt .c-card-txt__link {
  text-align: center;
  margin-top: auto;
}
.c-card-v01 .c-card-txt .c-card-txt__link a, .c-card-v02 .c-card-txt .c-card-txt__link a, .c-card-v03 .c-card-txt .c-card-txt__link a {
  display: inline-block;
  position: relative;
  font-weight: 700;
  padding-right: 25px;
}
.c-card-v01 .c-card-txt .c-card-txt__link a:after, .c-card-v02 .c-card-txt .c-card-txt__link a:after, .c-card-v03 .c-card-txt .c-card-txt__link a:after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blk1);
  border-right: 2px solid var(--blk1);
  top: 50%;
  right: 5px;
  margin-top: -5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-card-v01 .c-card-txt .c-card-txt__link a:hover:after, .c-card-v02 .c-card-txt .c-card-txt__link a:hover:after, .c-card-v03 .c-card-txt .c-card-txt__link a:hover:after {
  right: 0;
}

.c-card-v01 {
  background: var(--gray3);
  border-radius: 8px;
}
.c-card-v01 .c-card-img img {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.c-card-v01 .c-card-txt {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.c-card-v01 .c-card-txt .c-card-txt__ttl {
  font-size: clamp(1.6rem, 1.3vw, 2rem);
  margin-bottom: 20px;
}
@media screen and (max-width: 1024px) {
  .c-card-v01 .c-card-txt .c-card-txt__ttl {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-card-v01 .c-card-txt .c-card-txt__ttl {
    font-size: clamp(1.6rem, 4.8vw, 1.8rem);
  }
}

.c-card-v02 {
  background: var(--gray3);
  border-radius: 8px;
}
.c-card-v02 .c-card-ttl {
  background: var(--blk1);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #fff;
  font-size: clamp(1.6rem, 1.3vw, 2rem);
  font-weight: 700;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c-card-v02 .c-card-ttl {
    font-size: clamp(1.6rem, 4.8vw, 1.8rem);
  }
}
.c-card-v02 .c-card-txt {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.c-card-v03 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.c-card-v03 .c-card-img img {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
}
.c-card-v03 .c-card-txt {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .c-card-v03 .c-card-txt {
    padding: 15px;
  }
}
.c-card-v03 .c-card-txt .c-card-txt__ttl {
  margin-bottom: 10px;
}
.c-card-v03 .c-card-txt .c-card-txt__txt {
  margin-bottom: 10px;
}
.c-card-v03 .c-card-txt .c-card-txt__txt p {
  font-size: clamp(1.3rem, 0.97vw, 1.4rem);
}
@media screen and (max-width: 768px) {
  .c-card-v03 .c-card-txt .c-card-txt__txt p {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }
}
.c-card-v03 .c-card-txt .c-card-txt__link {
  text-align: left;
}
.c-card-v03 .c-card-txt .c-card-txt__link a {
  font-size: clamp(1.3rem, 0.97vw, 1.4rem);
}
@media screen and (max-width: 768px) {
  .c-card-v03 .c-card-txt .c-card-txt__link a {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }
}

.c-acc__block {
  border-bottom: var(--gray1) 1px solid;
}
.c-acc__block .c-acc__button {
  position: relative;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: clamp(1.6rem, 1.38vw, 2rem);
  font-weight: 700;
  padding: 30px 60px 30px 0;
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__button {
    font-size: clamp(1.4rem, 1.5vw, 1.6rem);
    padding: 25px 50px 25px 0;
  }
}
.c-acc__block .c-acc__button:before, .c-acc__block .c-acc__button:after {
  position: absolute;
  content: "";
  top: 0;
  right: 14px;
  bottom: 0;
  width: 12px;
  height: 1px;
  margin: auto;
  background: var(--blk1);
}
@media screen and (max-width: 1024px) {
  .c-acc__block .c-acc__button:before, .c-acc__block .c-acc__button:after {
    right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__button:before, .c-acc__block .c-acc__button:after {
    top: 34px;
    margin: 0 auto;
  }
}
.c-acc__block .c-acc__button:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-acc__block .c-acc__button.is-open:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-acc__block .c-acc__button > i {
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  border: var(--gray2) 1px solid;
  border-radius: 50%;
  top: 50%;
  right: 0;
  margin-top: -20px;
}
@media screen and (max-width: 1024px) {
  .c-acc__block .c-acc__button > i {
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__button > i {
    top: 18px;
    margin-top: 0;
  }
}
.c-acc__block .c-acc__content {
  display: none;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .c-acc__block .c-acc__content {
    padding-bottom: 25px;
  }
}
.c-acc__block .c-acc__content.is-open {
  display: block;
}
.c-acc__block.faq .c-acc__button {
  padding: 30px 60px;
}
@media screen and (max-width: 1024px) {
  .c-acc__block.faq .c-acc__button {
    padding: 25px 50px;
  }
}
.c-acc__block.faq .c-acc__button .icon {
  position: absolute;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  top: 50%;
  left: 0;
  border-radius: 50%;
  background: var(--blk1);
  color: #fff;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  margin-top: -20px;
}
@media screen and (max-width: 1024px) {
  .c-acc__block.faq .c-acc__button .icon {
    font-size: 16px;
    width: 32px;
    height: 32px;
    margin-top: -16px;
  }
}
@media screen and (max-width: 768px) {
  .c-acc__block.faq .c-acc__button .icon {
    top: 18px;
    margin-top: 0;
  }
}
.c-acc__block.faq .c-acc__content {
  position: relative;
  padding: 0 0 30px 60px;
}
@media screen and (max-width: 1024px) {
  .c-acc__block.faq .c-acc__content {
    padding: 0 0 25px 50px;
  }
}
.c-acc__block.faq .c-acc__content:before {
  position: absolute;
  content: "A";
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--gray2);
  color: #fff;
  font-size: 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .c-acc__block.faq .c-acc__content:before {
    font-size: 16px;
    width: 32px;
    height: 32px;
  }
}
.c-acc__block.faq .c-acc__content > * + * {
  margin-top: 10px;
}
.c-acc__block.faq .c-acc__content > *:last-child {
  margin-bottom: 0;
}
.c-acc__block.faq .c-acc__content > *:last-child .c-button--black {
  margin-bottom: 0;
}

.c-acc .c-acc_inner {
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .c-acc .c-acc_inner {
    padding: 0 10px;
  }
}
.c-acc .c-acc_inner .c-acc_more {
  display: none;
  margin-bottom: 20px;
}
.c-acc .c-acc_inner .c-acc_btn {
  text-align: center;
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt {
  display: none;
  min-width: 300px;
  background: #fff;
  border: var(--blk1) 1px solid;
  border-radius: 30px;
  text-align: center;
  padding: 10px 50px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt {
    min-width: 100%;
  }
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner {
  position: relative;
  font-size: clamp(1.3rem, 0.97vw, 1.4rem);
  font-weight: 700;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner {
    font-size: clamp(1.2rem, 3.5vw, 1.4rem);
  }
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner.open:before, .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner.open:after, .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner.close:before, .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner.close:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 1px;
  margin: auto;
  background: var(--blk1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner.open:after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt .c-acc_btnTxt__inner.close:after {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt:hover {
  background: var(--blk1);
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt:hover .c-acc_btnTxt__inner {
  color: #fff;
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt:hover .c-acc_btnTxt__inner.open:before, .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt:hover .c-acc_btnTxt__inner.open:after, .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt:hover .c-acc_btnTxt__inner.close:before, .c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt:hover .c-acc_btnTxt__inner.close:after {
  background: #fff;
}
.c-acc .c-acc_inner .c-acc_btn .c-acc_btnTxt.is-active {
  display: inline-block;
}

.pagettl-wrapper {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .pagettl-wrapper {
    width: 94vw;
    margin: 0 auto;
  }
}
.pagettl-wrapper .c-breadcrumbs {
  padding: 15px 20px;
}
@media screen and (max-width: 1024px) {
  .pagettl-wrapper .c-breadcrumbs {
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .pagettl-wrapper .c-breadcrumbs {
    padding: 15px 0;
  }
}
.pagettl-wrapper .c-breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.pagettl-wrapper .c-breadcrumbs ul * {
  color: var(--blk1);
  font-size: clamp(1.1rem, 0.84vw, 1.2rem);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .pagettl-wrapper .c-breadcrumbs ul * {
    font-size: clamp(1rem, 3.07vw, 1.2rem);
  }
}
.pagettl-wrapper .c-breadcrumbs ul li a:hover {
  text-decoration: underline;
}
.pagettl-wrapper .c-breadcrumbs ul li + li:before {
  display: inline-block;
  content: ">";
  width: 1.5em;
  text-align: center;
}
.pagettl-wrapper > .c-title__h1 {
  margin: 40px auto;
}
@media screen and (max-width: 1024px) {
  .pagettl-wrapper > .c-title__h1 {
    margin: 10px auto 30px;
  }
}
@media screen and (max-width: 768px) {
  .pagettl-wrapper > .c-title__h1 {
    margin: 30px auto;
  }
}

.c-page-anchor {
  width: 94vw;
  max-width: 1094px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  .c-page-anchor {
    max-width: 100%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 768px) {
  .c-page-anchor {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.c-page-anchor > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .c-page-anchor > ul {
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .c-page-anchor > ul {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}
.c-page-anchor > ul > li a {
  position: relative;
  display: block;
  background: var(--gray2);
  color: #fff;
  font-weight: 500;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .c-page-anchor > ul > li a {
    font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  }
}
@media screen and (max-width: 768px) {
  .c-page-anchor > ul > li a {
    font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  }
}
.c-page-anchor > ul > li a:after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.2px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
.c-page-anchor > ul.column3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .c-page-anchor > ul.column3 {
    grid-template-columns: 1fr;
  }
}
.c-page-anchor > ul.column4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1024px) {
  .c-page-anchor > ul.column4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .c-page-anchor > ul.column4 {
    grid-template-columns: 1fr;
  }
}

#alert-top > .c-bg__gray {
  width: 640px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  #alert-top > .c-bg__gray {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #alert-top > .c-bg__gray {
    width: 90%;
    margin: 0 auto 30px;
  }
}
@media screen and (max-width: 320px) {
  #alert-top > .c-bg__gray {
    width: 100%;
    padding: 30px 10px;
  }
}
#alert-top > .c-bg__gray .c-read {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #alert-top > .c-bg__gray .c-read p {
    text-align: center;
  }
}

/*-------------------------------------------
swiper
-------------------------------------------*/
.js-swiper {
  position: relative;
  overflow: hidden;
}
.js-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.js-swiper .swiper-wrapper.jst-c {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-wrapper.jst-c {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.js-swiper .swiper-wrapper .swiper-slide {
  width: 100% !important;
}
.js-swiper .c-swiper-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}
.js-swiper .c-swiper-button {
  position: relative;
  width: 111px;
  height: 48px;
}
@media screen and (max-width: 1024px) {
  .js-swiper .c-swiper-button {
    width: 87px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper .c-swiper-button {
    width: 79px;
  }
}
.js-swiper .swiper-pagination {
  position: relative;
  bottom: auto;
  color: var(--gray2);
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-family: "Inter", sans-serif;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-pagination {
    font-size: clamp(1.1rem, 3.07vw, 1.2rem);
  }
}
.js-swiper .swiper-pagination .swiper-pagination-current {
  color: var(--blk1);
}
.js-swiper .swiper-button-prev, .js-swiper .swiper-button-next {
  position: absolute;
  top: 0;
  display: grid;
  place-content: center;
  background: #fff;
  border: var(--gray2) 1px solid;
  width: 48px;
  height: 48px;
  border-radius: 40px;
  margin-top: 0 !important;
}
@media screen and (max-width: 1024px) {
  .js-swiper .swiper-button-prev, .js-swiper .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper .swiper-button-prev, .js-swiper .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.js-swiper .swiper-button-prev:after, .js-swiper .swiper-button-next:after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blk1);
  border-right: 2px solid var(--blk1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .js-swiper .swiper-button-prev:after, .js-swiper .swiper-button-next:after {
    width: 6px;
    height: 6px;
  }
}
@media (any-hover: hover) {
  .js-swiper .swiper-button-prev:hover, .js-swiper .swiper-button-next:hover {
    background: var(--blk1);
  }
  .js-swiper .swiper-button-prev:hover:after, .js-swiper .swiper-button-next:hover:after {
    border-color: #fff;
  }
}
@media (any-hover: none) {
  .js-swiper .swiper-button-prev:active, .js-swiper .swiper-button-next:active {
    background: var(--blk1);
  }
  .js-swiper .swiper-button-prev:active:after, .js-swiper .swiper-button-next:active:after {
    border-color: #fff;
  }
}
.js-swiper .swiper-button-prev.swiper-button-disabled, .js-swiper .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
.js-swiper .swiper-button-prev.swiper-button-disabled:hover, .js-swiper .swiper-button-next.swiper-button-disabled:hover {
  pointer-events: none;
  background: #fff;
}
.js-swiper .swiper-button-prev.swiper-button-disabled:hover:after, .js-swiper .swiper-button-next.swiper-button-disabled:hover:after {
  border-color: var(--blk1);
}
.js-swiper .swiper-button-prev {
  left: 0;
}
.js-swiper .swiper-button-prev:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.js-swiper .swiper-button-next {
  right: 0;
}
.js-swiper .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media screen and (max-width: 768px) {
  .js-swiper__sp {
    position: relative;
  }
  .js-swiper__sp .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .js-swiper__sp .c-swiper-control {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 0;
  }
  .js-swiper__sp .c-swiper-button {
    position: relative;
    width: 79px;
    height: 79px;
  }
  .js-swiper__sp .swiper-pagination {
    position: relative;
    bottom: auto;
    color: var(--gray2);
    font-size: clamp(1.1rem, 3.07vw, 1.2rem);
    font-family: "Inter", sans-serif;
    text-align: left;
  }
  .js-swiper__sp .swiper-pagination .swiper-pagination-current {
    color: var(--blk1);
  }
  .js-swiper__sp .swiper-button-prev, .js-swiper__sp .swiper-button-next {
    position: absolute;
    top: 0;
    display: grid;
    place-content: center;
    background: #fff;
    border: var(--gray2) 1px solid;
    width: 32px;
    height: 32px;
    border-radius: 40px;
    margin-top: 0 !important;
  }
  .js-swiper__sp .swiper-button-prev:after, .js-swiper__sp .swiper-button-next:after {
    display: inline-block;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--blk1);
    border-right: 2px solid var(--blk1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) and (any-hover: hover) {
  .js-swiper__sp .swiper-button-prev:hover, .js-swiper__sp .swiper-button-next:hover {
    background: var(--blk1);
  }
  .js-swiper__sp .swiper-button-prev:hover:after, .js-swiper__sp .swiper-button-next:hover:after {
    border-color: #fff;
  }
}
@media screen and (max-width: 768px) and (any-hover: none) {
  .js-swiper__sp .swiper-button-prev:active, .js-swiper__sp .swiper-button-next:active {
    background: var(--blk1);
  }
  .js-swiper__sp .swiper-button-prev:active:after, .js-swiper__sp .swiper-button-next:active:after {
    border-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper__sp .swiper-button-prev.swiper-button-disabled, .js-swiper__sp .swiper-button-next.swiper-button-disabled {
    opacity: 0.3;
  }
  .js-swiper__sp .swiper-button-prev.swiper-button-disabled:hover, .js-swiper__sp .swiper-button-next.swiper-button-disabled:hover {
    pointer-events: none;
    background: #fff;
  }
  .js-swiper__sp .swiper-button-prev.swiper-button-disabled:hover:after, .js-swiper__sp .swiper-button-next.swiper-button-disabled:hover:after {
    border-color: var(--blk1);
  }
  .js-swiper__sp .swiper-button-prev {
    left: 0;
  }
  .js-swiper__sp .swiper-button-prev:after {
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .js-swiper__sp .swiper-button-next {
    right: 0;
  }
  .js-swiper__sp .swiper-button-next:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}

.js-swiper__rspsv {
  position: relative;
  overflow: hidden;
}
.js-swiper__rspsv .swiper-wrapper .swiper-slide {
  width: calc((100% - 40px) / 4) !important;
  margin: 0 5px;
}
@media screen and (max-width: 1024px) {
  .js-swiper__rspsv .swiper-wrapper .swiper-slide {
    width: calc((100% - 30px) / 3) !important;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper__rspsv .swiper-wrapper .swiper-slide {
    width: 80% !important;
  }
}
.js-swiper__rspsv .c-swiper-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}
.js-swiper__rspsv .c-swiper-button {
  position: relative;
  width: 111px;
  height: 48px;
}
@media screen and (max-width: 1024px) {
  .js-swiper__rspsv .c-swiper-button {
    width: 87px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper__rspsv .c-swiper-button {
    width: 79px;
  }
}
.js-swiper__rspsv .swiper-pagination {
  position: relative;
  bottom: auto;
  color: var(--gray2);
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-family: "Inter", sans-serif;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .js-swiper__rspsv .swiper-pagination {
    font-size: clamp(1.1rem, 3.07vw, 1.2rem);
  }
}
.js-swiper__rspsv .swiper-pagination .swiper-pagination-current {
  color: var(--blk1);
}
.js-swiper__rspsv .swiper-button-prev, .js-swiper__rspsv .swiper-button-next {
  position: absolute;
  top: 0;
  display: grid;
  place-content: center;
  background: #fff;
  border: var(--gray2) 1px solid;
  width: 48px;
  height: 48px;
  border-radius: 40px;
  margin-top: 0 !important;
}
@media screen and (max-width: 1024px) {
  .js-swiper__rspsv .swiper-button-prev, .js-swiper__rspsv .swiper-button-next {
    width: 36px;
    height: 36px;
  }
}
@media screen and (max-width: 768px) {
  .js-swiper__rspsv .swiper-button-prev, .js-swiper__rspsv .swiper-button-next {
    width: 32px;
    height: 32px;
  }
}
.js-swiper__rspsv .swiper-button-prev:after, .js-swiper__rspsv .swiper-button-next:after {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--blk1);
  border-right: 2px solid var(--blk1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1024px) {
  .js-swiper__rspsv .swiper-button-prev:after, .js-swiper__rspsv .swiper-button-next:after {
    width: 6px;
    height: 6px;
  }
}
@media (any-hover: hover) {
  .js-swiper__rspsv .swiper-button-prev:hover, .js-swiper__rspsv .swiper-button-next:hover {
    background: var(--blk1);
  }
  .js-swiper__rspsv .swiper-button-prev:hover:after, .js-swiper__rspsv .swiper-button-next:hover:after {
    border-color: #fff;
  }
}
@media (any-hover: none) {
  .js-swiper__rspsv .swiper-button-prev:active, .js-swiper__rspsv .swiper-button-next:active {
    background: var(--blk1);
  }
  .js-swiper__rspsv .swiper-button-prev:active:after, .js-swiper__rspsv .swiper-button-next:active:after {
    border-color: #fff;
  }
}
.js-swiper__rspsv .swiper-button-prev.swiper-button-disabled, .js-swiper__rspsv .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
.js-swiper__rspsv .swiper-button-prev.swiper-button-disabled:hover, .js-swiper__rspsv .swiper-button-next.swiper-button-disabled:hover {
  pointer-events: none;
  background: #fff;
}
.js-swiper__rspsv .swiper-button-prev.swiper-button-disabled:hover:after, .js-swiper__rspsv .swiper-button-next.swiper-button-disabled:hover:after {
  border-color: var(--blk1);
}
.js-swiper__rspsv .swiper-button-prev {
  left: 0;
}
.js-swiper__rspsv .swiper-button-prev:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.js-swiper__rspsv .swiper-button-next {
  right: 0;
}
.js-swiper__rspsv .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*-------------------------------------------
modal
-------------------------------------------*/
@media screen and (max-width: 768px) {
  .remodal-close {
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
  }
}

.remodal-is-initialized {
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .remodal-is-initialized {
    border-radius: 0;
    padding: 20px;
  }
}
.remodal-is-initialized .c-modal-inner {
  text-align: left;
  padding: 40px 0 20px;
}
@media screen and (max-width: 768px) {
  .remodal-is-initialized .c-modal-inner {
    padding: 40px 0 20px;
  }
}

/*-------------------------------------------
tab
-------------------------------------------*/
.l-tab, .l-tab-topbtm {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-tab, .l-tab-topbtm {
    width: 90vw;
  }
}
.l-tab .l-tab-list, .l-tab-topbtm .l-tab-list {
  position: relative;
}
.l-tab .l-tab-list > ul, .l-tab-topbtm .l-tab-list > ul {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: var(--blk1) 3px solid;
  margin: 0 auto;
}
.l-tab .l-tab-list > ul > li, .l-tab-topbtm .l-tab-list > ul > li {
  width: calc((100% - 16px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--gray3);
  border-bottom: none;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list > ul > li, .l-tab-topbtm .l-tab-list > ul > li {
    width: calc((100% - 4px) / 3);
  }
}
.l-tab .l-tab-list > ul > li + li, .l-tab-topbtm .l-tab-list > ul > li + li {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list > ul > li + li, .l-tab-topbtm .l-tab-list > ul > li + li {
    margin-left: 2px;
  }
}
.l-tab .l-tab-list > ul > li > a, .l-tab-topbtm .l-tab-list > ul > li > a {
  display: block;
  width: 100%;
  color: var(--blk1);
  font-size: clamp(1.4rem, 0.97vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  padding: 25px 10px;
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list > ul > li > a, .l-tab-topbtm .l-tab-list > ul > li > a {
    font-size: clamp(1.2rem, 3.1vw, 1.4rem);
    padding: 20px 5px;
  }
}
.l-tab .l-tab-list > ul > li.is-active, .l-tab-topbtm .l-tab-list > ul > li.is-active {
  background: var(--blk1);
}
.l-tab .l-tab-list > ul > li.is-active > a, .l-tab-topbtm .l-tab-list > ul > li.is-active > a {
  color: #fff;
}
.l-tab .l-tab-list > ul > li.is-active:hover, .l-tab-topbtm .l-tab-list > ul > li.is-active:hover {
  background: var(--blk1);
}
.l-tab .l-tab-list > ul > li:hover, .l-tab-topbtm .l-tab-list > ul > li:hover {
  background: var(--gray1);
}
.l-tab .l-tab-list > ul > li:hover > a, .l-tab-topbtm .l-tab-list > ul > li:hover > a {
  opacity: 1;
}
.l-tab .l-tab-list.tab-bottom > ul, .l-tab-topbtm .l-tab-list.tab-bottom > ul {
  border-top: var(--blk1) 3px solid;
  border-bottom: none;
}
.l-tab .l-tab-list.tab-bottom > ul > li, .l-tab-topbtm .l-tab-list.tab-bottom > ul > li {
  border-top: none;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.l-tab .l-tab-list.l-tab-list__btn4 > ul > li, .l-tab-topbtm .l-tab-list.l-tab-list__btn4 > ul > li {
  width: calc((100% - 24px) / 4);
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list.l-tab-list__btn4 > ul > li, .l-tab-topbtm .l-tab-list.l-tab-list__btn4 > ul > li {
    width: calc((100% - 6px) / 4);
  }
}
.l-tab .l-tab-list.l-tab-list__btn2 > ul > li, .l-tab-topbtm .l-tab-list.l-tab-list__btn2 > ul > li {
  width: calc((100% - 8px) / 2);
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-list.l-tab-list__btn2 > ul > li, .l-tab-topbtm .l-tab-list.l-tab-list__btn2 > ul > li {
    width: calc((100% - 2px) / 2);
  }
}
.l-tab .l-tab-panel, .l-tab-topbtm .l-tab-panel {
  display: none;
  padding: 60px 100px;
}
@media screen and (max-width: 1024px) {
  .l-tab .l-tab-panel, .l-tab-topbtm .l-tab-panel {
    padding: 40px 50px;
  }
}
@media screen and (max-width: 768px) {
  .l-tab .l-tab-panel, .l-tab-topbtm .l-tab-panel {
    padding: 40px 0;
  }
}
.l-tab .l-tab-panel.is-active, .l-tab-topbtm .l-tab-panel.is-active {
  display: block;
}
.l-tab .l-tab-panel > *:last-child, .l-tab-topbtm .l-tab-panel > *:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=common.css.map */