@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* base
--------------------------- */
/* ----- color ----- */
/* ----- font-family ----- */
/* ----- breakpoint ----- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  line-height: 1;
  background-color: #121212;
}

body {
  width: 100%;
  min-width: 350px;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #fff;
}

img,
video,
object {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
}

a {
  color: #0066c0;
  text-decoration: none;
}

a:hover img {
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 99;
  width: 100%;
  max-width: 500px;
  padding-left: 15px;
  height: 50px;
  display: flex;
  align-items: center;
  background-color: #121212;
}
.l-header__logo a {
  display: inline-block;
}
.l-header__logo a img {
  width: 200px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 500px) {
  .l-header {
    height: 65px;
  }
  .l-header__logo a img {
    width: 265px;
  }
}

.l-main {
  overflow: hidden;
}

.l-footer {
  background: #121212;
  padding-bottom: max(18.6666666667vw, 70px);
  overflow: hidden;
  max-width: 500px;
  margin-inline: auto;
}
.l-footer__loop-imgs {
  width: max(333.3333333333vw, 1250px);
  height: max(10.6666666667vw, 40px);
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  background-color: #fff;
}
.l-footer__loop-img {
  width: max(333.3333333333vw, 1250px);
  height: max(10.6666666667vw, 40px);
  background-image: url("../img/common/footer-ttl.svg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: loopImg 10s infinite linear;
  transform: translateX(-100%);
}
.l-footer__list {
  margin-top: max(18.6666666667vw, 70px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: max(4vw, 15px);
  place-items: center;
}
.l-footer__list-item {
  line-height: 1;
}
.l-footer__item-link img {
  width: auto;
  height: max(8vw, 30px);
  object-fit: contain;
}
.l-footer__lower-item-link img {
  height: max(5.3333333333vw, 20px);
}
.l-footer__copyright {
  margin-top: max(8vw, 30px);
}
.l-footer__copyright small img {
  margin: 0 auto;
  width: auto;
  height: max(3.2vw, 12px);
  object-fit: contain;
}
@media (min-width: 500px) {
  .l-footer {
    padding-bottom: 90px;
  }
  .l-footer__loop-imgs {
    padding-block: 10px;
    width: 1250px;
    height: 40px;
  }
  .l-footer__loop-img {
    width: 1250px;
    height: 40px;
  }
  .l-footer__list {
    margin-top: 90px;
    gap: 20px;
  }
  .l-footer__item-link {
    transition: 0.3s;
  }
  .l-footer__item-link:hover {
    opacity: 0.8;
  }
  .l-footer__item-link img {
    height: 40px;
  }
  .l-footer__lower-item-link img {
    height: 30px;
  }
  .l-footer__copyright {
    margin-top: 40px;
  }
  .l-footer__copyright small img {
    height: 16px;
  }
}

/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
.c-btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  cursor: pointer;
  overflow: visible;
}

.c-ham-btn {
  position: fixed;
  top: 16px;
  right: 12px;
  z-index: 999;
  width: max(6.4vw, 24px);
  height: max(4.5333333333vw, 17px);
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
}
.c-ham-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: max(0.8vw, 3px);
  background: #002364;
  border: 1px solid #fff;
  transition: 0.3s;
  border-radius: 1px;
}
.c-ham-btn span:nth-of-type(1) {
  background: #BC002D;
  top: max(0.2666666667vw, 1px);
}
.c-ham-btn span:nth-of-type(2) {
  top: max(1.3333333333vw, 5px);
}
.c-ham-btn span:nth-of-type(3) {
  bottom: max(1.3333333333vw, 5px);
}
.c-ham-btn span:nth-of-type(4) {
  bottom: max(0.2666666667vw, 1px);
}
@media (min-width: 500px) {
  .c-ham-btn {
    top: 25px;
  }
}
@media (min-width: 768px) {
  .c-ham-btn {
    width: 32px;
    height: 23px;
  }
  .c-ham-btn span {
    height: 3px;
  }
  .c-ham-btn span:nth-of-type(1) {
    top: 1px;
  }
  .c-ham-btn span:nth-of-type(2) {
    top: 7px;
  }
  .c-ham-btn span:nth-of-type(3) {
    bottom: 7px;
  }
  .c-ham-btn span:nth-of-type(4) {
    bottom: 1px;
  }
}
@media (min-width: 1024px) {
  .c-ham-btn {
    display: none;
  }
}

.close-on {
  top: 12px;
  z-index: 9999;
  transform: rotate(90deg);
  transition: 0.3s;
  width: max(6.4vw, 24px);
  height: max(6.4vw, 24px);
}
.close-on span {
  transition: 0.3s;
}
.close-on span:nth-of-type(1) {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  transform: rotate(-45deg);
}
.close-on span:nth-of-type(2) {
  opacity: 0;
}
.close-on span:nth-of-type(3) {
  opacity: 0;
}
.close-on span:nth-of-type(4) {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  transform: rotate(45deg);
}
@media (min-width: 500px) {
  .close-on {
    top: 25px;
  }
}
@media (min-width: 768px) {
  .close-on {
    top: 15px;
    width: 32px;
    height: 32px;
  }
}

/* ----- loading ----- */
.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: #000000;
  overflow: hidden;
}
.c-loading__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-loading__movie {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-loading__movie video {
  max-width: 500px;
  width: 100%;
  height: auto;
  min-height: max(165.3333333333vw, 620px);
  object-fit: cover;
}
.c-loading__fallback {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-loading__fallback img {
  max-width: 500px;
  width: 100%;
  height: auto;
  min-height: max(165.3333333333vw, 620px);
  object-fit: cover;
}
@media (min-width: 500px) {
  .c-loading__movie {
    width: 100%;
    height: 100%;
  }
  .c-loading__movie video {
    min-height: auto;
    min-height: 100vh;
  }
  .c-loading__fallback {
    width: 100%;
    height: 100%;
  }
  .c-loading__fallback img {
    min-height: auto;
    min-height: 100vh;
  }
}

/*-------------------
  * project
  -------------------*/
.p-header-nav {
  position: fixed;
  top: 50px;
  right: 0;
  padding-top: 25px;
  padding-left: 40px;
  padding-right: 40px;
  width: 325px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: -999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.p-header-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-header-nav__menu-item {
  line-height: 1;
}
.p-header-nav__menu-link {
  position: relative;
  padding-left: 55px;
  display: block;
}
.p-header-nav__menu-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 45px;
  height: 2px;
  background-color: #fff;
}
.p-header-nav__menu-link img {
  width: auto;
  height: 20px;
  object-fit: contain;
}
.p-header-nav__btn-mypage {
  margin-top: 40px;
}
.p-header-nav__btn-mypage a {
  width: 225px;
  height: 70px;
  line-height: 1;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  background-image: url("../img/common/btn-layout_05.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-header-nav__btn-join {
  margin-top: 15px;
}
.p-header-nav__btn-join a {
  width: 225px;
  height: 70px;
  line-height: 1;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
  background-image: url("../img/common/btn-layout_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-header-nav__btn-line {
  margin-top: 40px;
}
.p-header-nav__btn-line a {
  width: 225px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  line-height: 1.25;
  font-weight: 700;
  font-size: 8px;
  color: #fff;
  background-image: url("../img/common/btn-layout_06.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-header-nav__btn-line-in {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-header-nav__btn-line-in img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.p-header-nav__btn-line-in span {
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: 25px;
  color: #fff;
}
.p-header-nav__en-link {
  margin-top: 20px;
  display: block;
  text-align: center;
}
.p-header-nav__en-link a {
  display: inline-block;
  line-height: 1;
  font-family: "Alumni Sans", sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: #fff;
}
@media (min-width: 500px) {
  .p-header-nav {
    top: 65px;
  }
}
@media (min-width: 1024px) {
  .p-header-nav {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
    height: auto;
    position: absolute;
    top: min(10.980966325vw, 150px);
    right: max(-21.9619326501vw, -300px);
    width: fit-content;
    background-color: transparent;
    z-index: 999;
    opacity: 1;
    visibility: visible;
  }
  .p-header-nav__menu {
    align-items: center;
    gap: min(1.8301610542vw, 25px);
  }
  .p-header-nav__menu-link {
    padding-left: 0;
    transition: 0.3s;
  }
  .p-header-nav__menu-link::after {
    display: none;
  }
  .p-header-nav__menu-link:hover {
    opacity: 0.8;
  }
  .p-header-nav__menu-link img {
    height: min(2.196193265vw, 30px);
  }
  .p-header-nav__btn-mypage {
    margin-top: min(2.196193265vw, 30px);
  }
  .p-header-nav__btn-mypage a {
    width: min(16.4714494876vw, 225px);
    height: min(5.1244509517vw, 70px);
    font-size: min(1.8301610542vw, 25px);
  }
  .p-header-nav__btn-join {
    margin-top: min(1.8301610542vw, 25px);
  }
  .p-header-nav__btn-join a {
    width: min(16.4714494876vw, 225px);
    height: min(5.1244509517vw, 70px);
    font-size: min(1.8301610542vw, 25px);
  }
  .p-header-nav__btn-line {
    margin-top: min(1.8301610542vw, 25px);
  }
  .p-header-nav__btn-line a {
    width: min(16.4714494876vw, 225px);
    height: min(5.8565153734vw, 80px);
    gap: min(0.3660322108vw, 5px);
    font-size: min(0.5856515373vw, 8px);
  }
  .p-header-nav__btn-line-in {
    gap: min(0.7320644217vw, 10px);
  }
  .p-header-nav__btn-line-in img {
    width: min(2.196193265vw, 30px);
    height: min(2.196193265vw, 30px);
  }
  .p-header-nav__btn-line-in span {
    font-size: min(1.8301610542vw, 25px);
  }
}

.p-header-nav-faq {
  right: 0;
}
@media (min-width: 1024px) {
  .p-header-nav-faq {
    right: max(-8.4187408492vw, -115px);
  }
}
@media (min-width: 1366px) {
  .p-header-nav-faq {
    right: max(-18.3016105417vw, -250px);
  }
}

.p-recruit-header-nav {
  position: fixed;
  top: 50px;
  right: 0;
  padding-top: 120px;
  padding-left: 40px;
  width: 305px;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity 0.4s;
  z-index: -999;
  visibility: hidden;
  opacity: 0;
}
.p-recruit-header-nav__menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-recruit-header-nav__menu-item {
  line-height: 1;
}
.p-recruit-header-nav__menu-link {
  position: relative;
  padding-left: 55px;
  display: block;
}
.p-recruit-header-nav__menu-link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 45px;
  height: 2px;
  background-color: #fff;
}
.p-recruit-header-nav__menu-link img {
  width: auto;
  height: 20px;
  object-fit: contain;
}
.p-recruit-header-nav__btn-entry {
  margin-top: 50px;
}
.p-recruit-header-nav__btn-entry a {
  width: 225px;
  height: 70px;
  background-image: url("../img/common/btn-layout_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-recruit-header-nav__btn-entry a img {
  width: 85px;
  height: 25px;
  object-fit: contain;
}
@media (min-width: 500px) {
  .p-recruit-header-nav {
    top: 65px;
  }
}
@media (min-width: 1024px) {
  .p-recruit-header-nav {
    padding-top: 0;
    padding-left: 0;
    height: auto;
    position: absolute;
    top: min(23.4260614934vw, 320px);
    right: max(-21.9619326501vw, -300px);
    width: fit-content;
    background-color: transparent;
    z-index: 999;
    opacity: 1;
    visibility: visible;
  }
  .p-recruit-header-nav__menu {
    align-items: center;
    gap: min(1.8301610542vw, 25px);
  }
  .p-recruit-header-nav__menu-link {
    padding-left: 0;
    transition: 0.3s;
  }
  .p-recruit-header-nav__menu-link::after {
    display: none;
  }
  .p-recruit-header-nav__menu-link:hover {
    opacity: 0.8;
  }
  .p-recruit-header-nav__menu-link img {
    height: min(1.8301610542vw, 25px);
  }
  .p-recruit-header-nav__btn-entry {
    margin-top: min(3.6603221083vw, 50px);
  }
  .p-recruit-header-nav__btn-entry a {
    width: min(16.4714494876vw, 225px);
    height: min(5.1244509517vw, 70px);
  }
  .p-recruit-header-nav__btn-entry a img {
    width: min(6.2225475842vw, 85px);
    height: min(1.8301610542vw, 25px);
    object-fit: contain;
  }
}

.show-on {
  z-index: 999;
  visibility: visible;
  opacity: 1;
  transition: opacity 0.4s;
}

.active-on {
  opacity: 0.8;
}

/* stylelint-disable-next-line unit-case */
@media (min-width: 500px) {
  body {
    background-image: url("../img/common/bg-pc.webp");
    background-repeat: repeat;
    background-position: center;
    background-size: cover;
  }
}

/* ----- fv ----- */
.p-fv {
  position: relative;
}
.p-fv__img img {
  width: 100%;
  min-height: max(165.3333333333vw, 620px);
  height: 100%;
  object-fit: contain;
}
.p-fv__ttl {
  position: absolute;
  top: max(68vw, 255px);
  left: max(4vw, 15px);
  z-index: 1;
}
.p-fv__ttl h2 img {
  width: max(69.3333333333vw, 260px);
  height: auto;
  object-fit: contain;
}
.p-fv__ttl h3 {
  margin-top: max(1.3333333333vw, 5px);
}
.p-fv__ttl h3 span {
  display: inline-block;
  line-height: 2.2;
  font-style: italic;
  font-weight: 700;
  font-size: max(2.6666666667vw, 10px);
  color: #fff;
}
@media (min-width: 500px) {
  .p-fv {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
  .p-fv__img img {
    min-height: 825px;
  }
  .p-fv__ttl {
    top: 340px;
    left: 18px;
  }
  .p-fv__ttl h2 img {
    width: 340px;
  }
  .p-fv__ttl h3 {
    margin-top: 4px;
  }
  .p-fv__ttl h3 span {
    line-height: 2.2307692308;
    font-size: 13px;
  }
}

/* ----- concept ----- */
.p-cnpt__out {
  padding-top: max(13.3333333333vw, 50px);
  padding-bottom: max(13.3333333333vw, 50px);
  padding-inline: max(9.3333333333vw, 35px);
  background-image: url("../img/top/cnpt.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-cnpt__in {
  padding-top: max(2.6666666667vw, 10px);
  padding-bottom: max(2.6666666667vw, 10px);
  max-width: max(93.3333333333vw, 350px);
  background: #121212;
}
.p-cnpt__txt {
  margin-top: max(5.3333333333vw, 20px);
}
.p-cnpt__txt p {
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.3333333333;
  font-feature-settings: "palt";
  font-weight: 700;
  font-size: max(4.8vw, 18px);
  color: #fff;
  white-space: nowrap;
}
.p-cnpt__txt p span {
  padding-bottom: max(0.5333333333vw, 2px);
  padding-inline: max(1.0666666667vw, 4px);
  display: inline-block;
}
.p-cnpt__txt p .-bg-01 {
  background-color: #BC002D;
}
.p-cnpt__txt p .-bg-02 {
  background-color: #002364;
}
.p-cnpt__txt:nth-of-type(1) {
  margin-top: 0;
}
.p-cnpt__btn-area {
  background-color: #121212;
  overflow: hidden;
}
.p-cnpt__loop-imgs {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: max(666.6666666667vw, 2500px);
  height: max(17.3333333333vw, 65px);
}
.p-cnpt__loop-img-top, .p-cnpt__loop-img-bot {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: max(666.6666666667vw, 2500px);
  height: max(17.3333333333vw, 65px);
}
.p-cnpt__loop-img-top {
  background-image: url("../img/top/cnpt-txt_01.svg");
  animation: loopImgTop 20s infinite linear;
  transform: translateX(-100%);
}
.p-cnpt__loop-img-bot {
  background-image: url("../img/top/cnpt-txt_02.svg");
  animation: loopImgBot 20s infinite linear;
  transform: translateX(0%);
}
.p-cnpt__btn-join {
  padding-block: max(5.3333333333vw, 20px);
  background-image: url("../img/top/btn-bg.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.p-cnpt__btn-join a {
  margin: 0 auto;
  width: max(80vw, 300px);
  height: max(25.3333333333vw, 95px);
  background-image: url("../img/common/btn-layout_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1.4333333333;
  font-weight: 700;
  font-size: 30px;
  font-size: max(8vw, 30px);
  color: #fff;
}
@media (min-width: 500px) {
  .p-cnpt {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
  .p-cnpt__out {
    padding-top: 66px;
    padding-bottom: 55px;
    padding-inline: 50px;
  }
  .p-cnpt__in {
    padding-top: 14px;
    padding-bottom: 14px;
    max-width: 400px;
  }
  .p-cnpt__txt {
    margin-top: 25px;
  }
  .p-cnpt__txt p {
    line-height: 1.25;
    font-size: 24px;
  }
  .p-cnpt__txt p span {
    padding-bottom: 2px;
    padding-inline: 5px;
  }
  .p-cnpt__loop-imgs {
    width: 3400px;
    height: 86px;
  }
  .p-cnpt__loop-img-top, .p-cnpt__loop-img-bot {
    width: 3400px;
    height: 86px;
  }
  .p-cnpt__btn-join {
    padding-block: 30px;
  }
  .p-cnpt__btn-join a {
    width: 400px;
    height: 126px;
    line-height: 1.45;
    font-size: 40px;
    transition: 0.3s;
  }
  .p-cnpt__btn-join a:hover {
    opacity: 0.8;
  }
}

/* ----- portfolio ----- */
.p-pf {
  position: relative;
  padding-top: max(13.3333333333vw, 50px);
  padding-bottom: max(13.3333333333vw, 50px);
  padding-inline: max(4vw, 15px);
}
.p-pf::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/top/pf-bg.svg");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 50%;
  z-index: 1;
}
.p-pf::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("../img/top/pf-bg.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 100%;
  height: 50%;
  z-index: 1;
}
.p-pf__wrap {
  position: relative;
  z-index: 5;
}
.p-pf__ttl {
  text-align: center;
}
.p-pf__ttl h2 img {
  margin: 0 auto;
  width: max(53.3333333333vw, 200px);
  height: auto;
  object-fit: contain;
}
.p-pf__ttl .-ttl-sub {
  display: block;
  line-height: 1.4230769231;
  font-weight: 700;
  font-size: max(6.9333333333vw, 26px);
  color: #fff;
}
.p-pf__cont {
  max-width: max(92vw, 345px);
  margin: 0 auto;
  margin-top: max(5.3333333333vw, 20px);
  padding-bottom: max(6.6666666667vw, 25px);
  background-color: #121212;
  border-radius: max(2.6666666667vw, 10px);
}
.p-pf .-cont-new {
  position: relative;
}
.p-pf .-cont-new::before {
  content: "";
  position: absolute;
  top: max(2.1333333333vw, 8px);
  left: max(1.0666666667vw, 4px);
  z-index: 10;
  width: max(25.3333333333vw, 95px);
  height: max(12vw, 45px);
  background-image: url("../img/top/pf_new.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-pf__swiper {
  overflow: hidden;
  border-radius: max(2.6666666667vw, 10px) max(2.6666666667vw, 10px) 0 0;
}
.p-pf__swiper-slide {
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.p-pf__swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-pf__swiper-thumb-wrap {
  margin-top: max(1.3333333333vw, 5px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.p-pf__swiper-thumb-slide {
  position: relative;
  margin-top: 5px;
  transition: opacity 0.3s;
  opacity: 1;
  cursor: pointer;
}
.p-pf__swiper-thumb-slide:hover {
  opacity: 0.6;
}
.p-pf__swiper-thumb-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-pf .swiper-slide-thumb-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
}
.p-pf__cont-ttl {
  margin-top: max(2.6666666667vw, 10px);
  text-align: center;
  margin-left: min(-1.0666666667vw, -4px);
}
.p-pf__cont-ttl h2 {
  line-height: 1.4;
  font-style: italic;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-pf__list-out {
  display: flex;
  justify-content: center;
}
.p-pf dl {
  margin-top: max(2.6666666667vw, 10px);
  position: relative;
}
.p-pf dl::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(14.6666666667vw, 55px);
  background-color: #d9d9d9;
  width: 1px;
  height: 100%;
}
.p-pf__list-in {
  display: flex;
}
.p-pf dt {
  min-width: max(12vw, 45px);
  text-align: left;
  line-height: 1.2727272727;
  font-weight: 500;
  font-size: max(2.9333333333vw, 11px);
  color: #d9d9d9;
}
.p-pf dd {
  margin-left: max(4vw, 15px);
  line-height: 1.2727272727;
  font-weight: 500;
  font-size: max(2.9333333333vw, 11px);
  color: #d9d9d9;
}
.p-pf__btn-map {
  margin-top: max(5.3333333333vw, 20px);
}
.p-pf__btn-map a {
  margin: 0 auto;
  padding-bottom: 2px;
  width: max(60vw, 225px);
  height: max(13.3333333333vw, 50px);
  background-image: url("../img/common/btn-layout_02.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1.4375;
  font-weight: 700;
  font-size: max(4.2666666667vw, 16px);
  color: #5d6369;
  padding-left: max(13.3333333333vw, 50px);
  justify-content: flex-start;
}
.p-pf__btn-map a .-btn-map-icon {
  position: relative;
}
.p-pf__btn-map a .-btn-map-icon::after {
  content: "";
  position: absolute;
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  right: min(-8.5333333333vw, -32px);
  width: max(4.8vw, 18px);
  height: max(4.8vw, 18px);
  background-image: url("../img/top/google-map_icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 500px) {
  .p-pf {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    padding-top: 65px;
    padding-bottom: 65px;
    padding-inline: 20px;
  }
  .p-pf__ttl h2 img {
    width: 268px;
  }
  .p-pf__ttl .-ttl-sub {
    line-height: 1.4230769231;
    font-size: 35px;
  }
  .p-pf__cont {
    max-width: 460px;
    margin-top: 25px;
    padding-bottom: 35px;
    border-radius: 14px;
  }
  .p-pf .-cont-new::before {
    top: 10px;
    left: 2px;
    width: 125px;
    height: 60px;
  }
  .p-pf__swiper {
    border-radius: 14px 14px 0 0;
  }
  .p-pf__swiper-thumb-wrap {
    margin-top: 6px;
  }
  .p-pf__cont-ttl {
    margin-top: 15px;
    margin-left: -5px;
  }
  .p-pf__cont-ttl h2 {
    font-size: 26px;
  }
  .p-pf dl {
    margin-top: 15px;
  }
  .p-pf dl::before {
    left: 72px;
  }
  .p-pf dt {
    min-width: 55px;
    font-size: 14px;
  }
  .p-pf dd {
    margin-left: 25px;
    font-size: 14px;
  }
  .p-pf__btn-map {
    margin-top: 25px;
  }
  .p-pf__btn-map a {
    width: 300px;
    height: 60px;
    font-size: 18px;
    padding-left: 60px;
    transition: 0.3s;
  }
  .p-pf__btn-map a:hover {
    opacity: 0.8;
  }
  .p-pf__btn-map a .-btn-map-icon::after {
    right: -75px;
    width: 25px;
    height: 35px;
  }
}

/* ----- price ----- */
.p-price {
  padding-top: max(13.3333333333vw, 50px);
  padding-bottom: max(13.3333333333vw, 50px);
  padding-inline: max(9.3333333333vw, 35px);
  position: relative;
  background-color: #121212;
}
.p-price__ttl {
  text-align: center;
}
.p-price__ttl h2 {
  display: block;
}
.p-price__ttl h2 img {
  margin: 0 auto;
  height: auto;
  object-fit: contain;
}
.p-price__ttl h2:nth-of-type(1) img {
  width: max(61.3333333333vw, 230px);
}
.p-price__ttl h2:nth-of-type(2) {
  margin-top: max(2.6666666667vw, 10px);
}
.p-price__ttl h2:nth-of-type(2) img {
  width: max(81.3333333333vw, 305px);
}
.p-price__ttl .-ttl-sub {
  margin-top: max(2.6666666667vw, 10px);
  display: block;
  line-height: 1.4074074074;
  font-weight: 700;
  font-size: max(7.2vw, 27px);
  color: #fff;
}
.p-price__info {
  margin-top: max(21.3333333333vw, 80px);
}
.p-price__info-in {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-price__info-in span {
  display: inline-block;
  line-height: 1.4242424242;
  font-weight: 700;
  font-size: max(8.8vw, 33px);
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
  color: #002364;
}
.p-price__info-img {
  margin-inline: max(2.6666666667vw, 10px);
}
.p-price__info-img img {
  width: max(49.3333333333vw, 185px);
  height: auto;
  object-fit: contain;
}
.p-price__info-txt {
  margin-top: max(2.6666666667vw, 10px);
}
.p-price__info-txt p {
  text-align: center;
  line-height: 1.4;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
}
.p-price__sub-copy {
  margin-top: max(13.3333333333vw, 50px);
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  display: flex;
  justify-content: center;
}
.p-price__sub-copy-in {
  max-width: 500px;
  width: 100%;
}
.p-price__sub-copy-in h3 {
  text-align: center;
  line-height: 1.4090909091;
  font-style: italic;
  font-weight: 700;
  font-size: max(5.8666666667vw, 22px);
  display: block;
}
.p-price__sub-copy-in h3:nth-of-type(1) {
  background-color: #BC002D;
}
.p-price__sub-copy-in h3:nth-of-type(2) {
  background-color: #002364;
}
.p-price__detail {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  margin-top: max(21.3333333333vw, 80px);
}
.p-price__detail-out {
  overflow: hidden;
  max-width: 500px;
  margin-inline: auto;
  position: relative;
}
.p-price__detail-in {
  margin-top: max(2.6666666667vw, 10px);
  padding: max(1.3333333333vw, 5px) 0;
  overflow: hidden;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-price__detail-in:nth-of-type(1) {
  margin-top: 0;
}
.p-price__detail-in:nth-of-type(2n-1) .loop-container {
  animation: loopAnimation01 40s linear infinite;
}
.p-price__detail-in:nth-of-type(2n) .loop-container {
  animation: loopAnimation02 40s linear infinite;
}
.p-price__detail-in .loop-container {
  display: inline-block;
  white-space: nowrap;
}
.p-price__detail-in .loop-container span {
  display: inline-block;
  padding: 0 max(2.6666666667vw, 10px);
  font-size: max(5.3333333333vw, 20px);
  font-weight: 700;
  color: #fff;
}
@keyframes loopAnimation01 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes loopAnimation02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-price .-detail-line {
  position: relative;
}
.p-price .-detail-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: 1;
  transform: translate(0, -50%);
  width: 0;
  height: 3px;
  background-color: #BC002D;
}
.p-price__detail-main-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 85%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-price__detail-main-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/top/price-detail-bg.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.p-price__detail-main-txt p {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.4333333333;
  font-weight: 700;
  font-size: max(8vw, 30px);
}
.p-price__detail-main-txt p span {
  display: block;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
}
.p-price__detail-main-txt p span:nth-of-type(1) {
  color: #BC002D;
}
.p-price__detail-main-txt p span:nth-of-type(2) {
  color: #002364;
}
.p-price__desc {
  margin-top: max(22.6666666667vw, 85px);
}
.p-price__desc-ttl {
  text-align: center;
}
.p-price__desc-ttl h2 {
  line-height: 0.7;
  font-family: "Alumni Sans", sans-serif;
  font-weight: 700;
  font-size: max(15.2vw, 57px);
  color: #002364;
  -webkit-text-stroke: 3px #fff;
  text-stroke: 3px #fff;
  paint-order: stroke;
  padding-inline: max(1.3333333333vw, 5px);
}
.p-price__desc-ttl .-ttl-sub {
  margin-top: max(2.6666666667vw, 10px);
  display: block;
  text-align: center;
  line-height: 1.4615384615;
  font-weight: 700;
  font-size: max(6.9333333333vw, 26px);
}
.p-price__desc-txt {
  margin-top: max(6.6666666667vw, 25px);
}
.p-price__desc-txt p {
  text-align: center;
  font-family: "Alumni Sans", sans-serif;
  font-weight: 700;
  font-feature-settings: "palt";
}
.p-price__desc-txt p .-txt-size-01 {
  line-height: 1.2;
  font-size: max(13.3333333333vw, 50px);
}
.p-price__desc-txt p .-txt-size-02 {
  line-height: 1.2;
  font-size: max(8vw, 30px);
}
.p-price__desc-txt p .-txt-size-03 {
  line-height: 1.2;
  font-size: max(14.6666666667vw, 55px);
}
.p-price__desc-txt p .-txt-size-04 {
  line-height: 1.2;
  font-size: max(10.6666666667vw, 40px);
}
.p-price__desc-lists {
  margin-top: max(5.3333333333vw, 20px);
  margin-left: max(10.6666666667vw, 40px);
}
.p-price__desc-list {
  position: relative;
  margin-top: max(5.3333333333vw, 20px);
  line-height: 1.1666666667;
  font-family: "Alumni Sans", sans-serif;
  font-weight: 700;
  font-size: max(6.4vw, 24px);
}
.p-price__desc-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: min(-6.6666666667vw, -25px);
  z-index: 1;
  transform: translate(-50%, -50%);
  width: max(6.6666666667vw, 25px);
  height: max(6.6666666667vw, 25px);
  border: 1px solid #fff;
}
.p-price__desc-list:nth-of-type(1) {
  margin-top: 0;
}
.p-price__desc-list::after {
  content: "";
  position: absolute;
  top: max(2.6666666667vw, 10px);
  left: min(-5.8666666667vw, -22px);
  z-index: 1;
  transform: translate(-50%, -50%);
  width: max(13.3333333333vw, 50px);
  height: max(8vw, 30px);
  background-image: url("../img/top/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
}
.p-price__btn-line {
  margin-top: max(13.3333333333vw, 50px);
  display: flex;
  align-items: center;
}
.p-price__btn-line a {
  position: relative;
  width: max(30.6666666667vw, 115px);
  height: max(30.6666666667vw, 115px);
  border-radius: 100%;
  background-color: #00b900;
  opacity: 0;
}
.p-price__btn-line a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: max(20vw, 75px);
  height: max(18.6666666667vw, 70px);
  background-image: url("../img/top/btn-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-price__btn-line span {
  margin-left: max(5.3333333333vw, 20px);
  display: inline-block;
  line-height: 1.45;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-price__btn-area {
  margin: 0 calc(50% - 50vw);
  margin-top: max(18.6666666667vw, 70px);
  width: 100vw;
}
.p-price__btn-area-in {
  margin-inline: auto;
  max-width: 500px;
  overflow: hidden;
}
.p-price__loop-imgs {
  margin: 0 calc(50% - 50vw);
  width: max(693.3333333333vw, 2600px);
  height: max(17.3333333333vw, 65px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.p-price__loop-img-top, .p-price__loop-img-bot {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: max(693.3333333333vw, 2600px);
  height: max(17.3333333333vw, 65px);
}
.p-price__loop-img-top {
  background-image: url("../img/top/cnpt-txt_01.svg");
  animation: loopImgTop 20s infinite linear;
  transform: translateX(-100%);
}
.p-price__loop-img-bot {
  background-image: url("../img/top/cnpt-txt_02.svg");
  animation: loopImgBot 20s infinite linear;
  transform: translateX(0%);
}
.p-price__btn-join {
  padding-block: 20px;
  padding-block: max(5.3333333333vw, 20px);
  background-image: url("../img/top/btn-bg.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.p-price__btn-join a {
  margin: 0 auto;
  width: max(80vw, 300px);
  height: max(25.3333333333vw, 95px);
  background-image: url("../img/common/btn-layout_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1.4333333333;
  font-weight: 700;
  font-size: max(8vw, 30px);
  color: #fff;
  transition: 0.3s;
}
.p-price__btn-join a:hover {
  opacity: 0.8;
}
@media (max-width: 374px) {
  .p-price {
    padding-inline: min(6.6666666667vw, 25px);
  }
}
@media (min-width: 500px) {
  .p-price {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    padding-top: 65px;
    padding-bottom: 65px;
    padding-inline: 50px;
  }
  .p-price__ttl h2:nth-of-type(1) img {
    width: 320px;
  }
  .p-price__ttl h2:nth-of-type(2) {
    margin-top: 15px;
  }
  .p-price__ttl h2:nth-of-type(2) img {
    width: 395px;
  }
  .p-price__ttl .-ttl-sub {
    margin-top: 25px;
    font-size: 35px;
  }
  .p-price__info {
    margin-top: 110px;
  }
  .p-price__info-in span {
    font-size: 44px;
  }
  .p-price__info-img {
    margin-inline: 10px;
  }
  .p-price__info-img img {
    width: 248px;
  }
  .p-price__info-txt {
    margin-top: 15px;
  }
  .p-price__info-txt p {
    font-size: 26px;
  }
  .p-price__sub-copy {
    margin-top: 65px;
  }
  .p-price__sub-copy-in h3 {
    font-size: 29px;
  }
  .p-price__detail {
    margin-top: 110px;
  }
  .p-price__detail-in {
    margin-top: 15px;
    padding-block: 5px;
  }
  .p-price__detail-in:nth-of-type(1) {
    margin-top: 0;
  }
  .p-price__detail-in .loop-container span {
    padding-inline: 15px;
    font-size: 26px;
  }
  .p-price__detail-main-txt {
    height: 90%;
  }
  .p-price__detail-main-txt p {
    font-size: 40px;
  }
  .p-price__desc {
    margin-top: 120px;
  }
  .p-price__desc-ttl h2 {
    -webkit-text-stroke: 5px #fff;
    text-stroke: 5px #fff;
    padding-inline: 5px;
    font-size: 76px;
  }
  .p-price__desc-ttl .-ttl-sub {
    margin-top: 15px;
    font-size: 35px;
  }
  .p-price__desc-txt {
    margin-top: 35px;
  }
  .p-price__desc-txt p .-txt-size-01 {
    font-size: 66px;
  }
  .p-price__desc-txt p .-txt-size-02 {
    font-size: 40px;
  }
  .p-price__desc-txt p .-txt-size-03 {
    font-size: 73px;
  }
  .p-price__desc-txt p .-txt-size-04 {
    font-size: 53px;
  }
  .p-price__desc-lists {
    margin-top: 25px;
    margin-left: 50px;
  }
  .p-price__desc-list {
    margin-top: 25px;
    font-size: 31px;
  }
  .p-price__desc-list::before {
    left: -30px;
    width: 35px;
    height: 35px;
  }
  .p-price__desc-list::after {
    top: 10px;
    left: -20px;
  }
  .p-price__btn-line {
    margin-top: 65px;
  }
  .p-price__btn-line a {
    width: 150px;
    height: 150px;
  }
  .p-price__btn-line a:hover::before {
    opacity: 0.8;
  }
  .p-price__btn-line a::before {
    width: 100px;
    height: 95px;
    transition: 0.3s;
  }
  .p-price__btn-line span {
    margin-left: 25px;
    font-size: 25px;
  }
  .p-price__btn-area {
    margin-top: 70px;
  }
  .p-price__loop-imgs {
    width: 3400px;
    height: 85px;
  }
  .p-price__loop-img-top, .p-price__loop-img-bot {
    width: 3400px;
    height: 85px;
  }
  .p-price__btn-join {
    padding-block: 30px;
  }
  .p-price__btn-join a {
    width: 400px;
    height: 125px;
    line-height: 1.45;
    font-size: 40px;
    transition: 0.3s;
  }
  .p-price__btn-join a:hover {
    opacity: 0.8;
  }
}

/* stylelint-disable-next-line unit-case */
/* ----- fv ----- */
.p-recruit-fv {
  position: relative;
}
.p-recruit-fv__img img {
  width: 100%;
  min-height: max(165.3333333333vw, 620px);
  height: 100%;
  object-fit: cover;
}
.p-recruit-fv__ttl {
  position: absolute;
  top: max(67.2vw, 252px);
  left: max(3.2vw, 12px);
  z-index: 1;
}
.p-recruit-fv__ttl h1 img {
  width: max(27.2vw, 102px);
  height: auto;
  object-fit: contain;
}
.p-recruit-fv__ttl h2 {
  margin-top: max(1.0666666667vw, 4px);
}
.p-recruit-fv__ttl h2 span {
  display: inline-block;
  line-height: 2.2;
  font-style: italic;
  font-weight: 700;
  font-size: max(2.6666666667vw, 10px);
  color: #fff;
}
.p-recruit-fv__txt {
  position: absolute;
  bottom: max(8vw, 30px);
  left: 0;
  right: 0;
  margin-inline: auto;
  z-index: 1;
}
.p-recruit-fv__txt p {
  text-align: center;
}
.p-recruit-fv__txt p img {
  display: inline-block;
  width: max(92vw, 345px);
  height: auto;
  object-fit: contain;
}
@media (min-width: 500px) {
  .p-recruit-fv {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
  }
  .p-recruit-fv__img img {
    min-height: 825px;
  }
  .p-recruit-fv__ttl {
    top: 340px;
    left: 18px;
  }
  .p-recruit-fv__ttl h1 img {
    width: 136px;
  }
  .p-recruit-fv__ttl h2 {
    margin-top: 4px;
  }
  .p-recruit-fv__ttl h2 span {
    line-height: 2.2307692308;
    font-size: 13px;
  }
  .p-recruit-fv__txt {
    bottom: 40px;
  }
  .p-recruit-fv__txt p img {
    width: 460px;
  }
}

/* ----- concept ----- */
.p-recruit-cnpt {
  padding-top: max(4vw, 15px);
  padding-bottom: max(2.6666666667vw, 10px);
  padding-inline: max(4vw, 15px);
  background-image: url("../img/recruit/cnpt-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.p-recruit-cnpt__ttl img {
  margin-inline: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-recruit-cnpt__in {
  margin-top: max(46.6666666667vw, 175px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: max(4vw, 15px);
}
.p-recruit-cnpt__txt p {
  line-height: 1.2857142857;
  font-weight: 700;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
  white-space: nowrap;
}
.p-recruit-cnpt__txt p span {
  padding-bottom: max(0.5333333333vw, 2px);
  padding-inline: max(1.0666666667vw, 4px);
  display: inline-block;
}
.p-recruit-cnpt__txt p .-bg-01 {
  background-color: #BC002D;
}
.p-recruit-cnpt__txt p .-bg-02 {
  background-color: #002364;
}
.p-recruit-cnpt__txt:nth-last-of-type(1) p {
  line-height: 1.2;
  font-size: max(5.3333333333vw, 20px);
}
.p-recruit-cnpt__btn-area {
  background-color: #121212;
  overflow: hidden;
}
.p-recruit-cnpt__loop-imgs {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: max(666.6666666667vw, 2500px);
  height: max(17.3333333333vw, 65px);
}
.p-recruit-cnpt__loop-img-top, .p-recruit-cnpt__loop-img-bot {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: max(666.6666666667vw, 2500px);
  height: max(17.3333333333vw, 65px);
}
.p-recruit-cnpt__loop-img-top {
  background-image: url("../img/cnpt-txt_01.svg");
  animation: loopImgTop 20s infinite linear;
  transform: translateX(-100%);
}
.p-recruit-cnpt__loop-img-bot {
  background-image: url("../img/cnpt-txt_02.svg");
  animation: loopImgBot 20s infinite linear;
  transform: translateX(0%);
}
.p-recruit-cnpt__btn-join {
  padding-block: max(5.3333333333vw, 20px);
  background-image: url("../img/common/btn-bg.webp");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}
.p-recruit-cnpt__btn-join a {
  margin: 0 auto;
  width: max(80vw, 300px);
  height: max(25.3333333333vw, 95px);
  background-image: url("../img/common/btn-layout_01.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1.4333333333;
  font-weight: 700;
  font-size: 30px;
  font-size: max(8vw, 30px);
  color: #fff;
}
@media (min-width: 500px) {
  .p-recruit-cnpt {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    padding-top: max(4vw, 15px);
    padding-top: 20px;
    padding-inline: 20px;
    padding-bottom: 15px;
  }
  .p-recruit-cnpt__in {
    margin-top: 228px;
    gap: 20px;
  }
  .p-recruit-cnpt__txt p {
    line-height: 1.3333333333;
    font-size: 18px;
  }
  .p-recruit-cnpt__txt p span {
    padding-bottom: 2px;
    padding-inline: 5px;
  }
  .p-recruit-cnpt__txt p .-bg-01 {
    background-color: #BC002D;
  }
  .p-recruit-cnpt__txt p .-bg-02 {
    background-color: #002364;
  }
  .p-recruit-cnpt__txt:nth-last-of-type(1) p {
    line-height: 1.1923076923;
    font-size: 26px;
  }
  .p-recruit-cnpt__loop-imgs {
    width: 3400px;
    height: 86px;
  }
  .p-recruit-cnpt__loop-img-top, .p-recruit-cnpt__loop-img-bot {
    width: 3400px;
    height: 86px;
  }
  .p-recruit-cnpt__btn-join {
    padding-block: 30px;
  }
  .p-recruit-cnpt__btn-join a {
    width: 400px;
    height: 126px;
    line-height: 1.45;
    font-size: 40px;
    transition: 0.3s;
  }
  .p-recruit-cnpt__btn-join a:hover {
    opacity: 0.8;
  }
}

/* ----- job ----- */
.p-recruit-job {
  position: relative;
  padding-top: max(16vw, 60px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(5.3333333333vw, 20px);
  overflow: hidden;
}
.p-recruit-job::before {
  content: "";
  position: absolute;
  top: max(5.3333333333vw, 20px);
  left: 0;
  background-image: url("../img/recruit/job-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-recruit-job__wrap {
  position: relative;
  z-index: 5;
}
.p-recruit-job__ttl {
  text-align: center;
}
.p-recruit-job__ttl h2 img {
  margin: 0 auto;
  width: max(84vw, 315px);
  height: auto;
  object-fit: contain;
}
.p-recruit-job__ttl .-ttl-sub {
  margin-top: max(5.3333333333vw, 20px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-job__list {
  margin-top: max(9.3333333333vw, 35px);
  padding-inline: max(5.3333333333vw, 20px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: max(12vw, 45px);
}
.p-recruit-job__list-item {
  padding-top: max(6.6666666667vw, 25px);
  padding-bottom: max(6.6666666667vw, 25px);
  border-radius: max(2.6666666667vw, 10px);
  background-color: #121212;
}
.p-recruit-job__item-ttl {
  padding-block: max(1.3333333333vw, 5px);
  padding-left: max(2.6666666667vw, 10px);
  background-color: #BC002D;
  width: 92%;
}
.p-recruit-job__item-ttl h3 {
  line-height: 1;
  font-weight: 900;
  font-style: italic;
  font-size: max(4.2666666667vw, 16px);
  color: #fff;
}
.p-recruit-job__item-ttl h3 span {
  line-height: 1;
  font-weight: 700;
  font-size: max(3.4666666667vw, 13px);
}
.p-recruit-job__item-img {
  margin-top: max(5.3333333333vw, 20px);
}
.p-recruit-job__item-img img {
  margin-inline: auto;
  width: auto;
  height: max(21.3333333333vw, 80px);
  object-fit: contain;
}
.p-recruit-job__item-in {
  margin-top: max(4vw, 15px);
  padding-inline: max(4vw, 15px);
}
.p-recruit-job__item-txt {
  position: relative;
  padding-top: max(4vw, 15px);
}
.p-recruit-job__item-txt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #002364;
  border: 1px solid #fff;
}
.p-recruit-job__item-txt p {
  text-align: center;
  line-height: 1.6363636364;
  font-weight: 700;
  font-size: max(2.9333333333vw, 11px);
  color: #fff;
}
@media (min-width: 500px) {
  .p-recruit-job {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    padding-top: max(16vw, 60px);
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 26px;
  }
  .p-recruit-job::before {
    top: 26px;
  }
  .p-recruit-job__ttl h2 img {
    width: 420px;
  }
  .p-recruit-job__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-recruit-job__list {
    margin-top: 46px;
    padding-inline: 26px;
    gap: 58px;
  }
  .p-recruit-job__list-item {
    padding-top: 32px;
    padding-bottom: 32px;
    border-radius: 14px;
  }
  .p-recruit-job__item-ttl {
    padding-block: 6px;
    padding-left: 15px;
    width: 92%;
  }
  .p-recruit-job__item-ttl h3 {
    font-size: 20px;
  }
  .p-recruit-job__item-ttl h3 span {
    font-size: 17px;
  }
  .p-recruit-job__item-img {
    margin-top: 26px;
  }
  .p-recruit-job__item-img img {
    height: 104px;
  }
  .p-recruit-job__item-in {
    margin-top: 20px;
    padding-inline: 20px;
  }
  .p-recruit-job__item-txt {
    padding-top: 20px;
  }
  .p-recruit-job__item-txt p {
    line-height: 1.6428571429;
    font-size: 14px;
  }
}

/* ----- interview ----- */
.p-recruit-interview {
  position: relative;
  padding-top: max(16vw, 60px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(4vw, 15px);
  overflow: hidden;
}
.p-recruit-interview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/recruit/interview-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-recruit-interview__wrap {
  position: relative;
  z-index: 5;
}
.p-recruit-interview__ttl {
  text-align: center;
}
.p-recruit-interview__ttl h2 img {
  margin: 0 auto;
  width: max(62.6666666667vw, 235px);
  height: auto;
  object-fit: contain;
}
.p-recruit-interview__ttl .-ttl-sub {
  margin-top: max(5.3333333333vw, 20px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-interview__list {
  margin-top: max(12vw, 45px);
  padding-inline: max(5.8666666667vw, 22px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: max(12vw, 45px);
}
.p-recruit-interview__item-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-recruit-interview__item-ttl {
  margin-top: max(2.6666666667vw, 10px);
}
.p-recruit-interview__item-ttl h3 {
  text-align: center;
  line-height: 1;
  font-weight: 700;
  font-size: max(4.8vw, 18px);
  color: #fff;
}
.p-recruit-interview__item-ttl h3 span {
  display: block;
  line-height: 2;
  font-size: max(4.2666666667vw, 16px);
}
.p-recruit-interview__item-ttl h3 small {
  margin-left: max(1.3333333333vw, 5px);
  display: inline-block;
  font-size: max(2.6666666667vw, 10px);
}
.p-recruit-interview__btn {
  margin-top: max(4vw, 15px);
}
.p-recruit-interview__btn a {
  margin: 0 auto;
  width: max(57.3333333333vw, 215px);
  height: max(16vw, 60px);
  background-image: url("../img/common/btn-layout_03.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  font-weight: 700;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
  transition: 0.3s;
}
.p-recruit-interview__btn a:hover {
  opacity: 0.8;
}
@media (min-width: 500px) {
  .p-recruit-interview {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    position: relative;
    padding-top: max(16vw, 60px);
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 20px;
    overflow: hidden;
  }
  .p-recruit-interview__ttl h2 img {
    width: 312px;
  }
  .p-recruit-interview__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-recruit-interview__list {
    margin-top: 60px;
    padding-inline: 30px;
    gap: 58px;
  }
  .p-recruit-interview__item-ttl {
    margin-top: 14px;
  }
  .p-recruit-interview__item-ttl h3 {
    font-size: 24px;
  }
  .p-recruit-interview__item-ttl h3 span {
    font-size: 22px;
  }
  .p-recruit-interview__item-ttl h3 small {
    margin-left: 6px;
    font-size: 13px;
  }
  .p-recruit-interview__btn {
    margin-top: 20px;
  }
  .p-recruit-interview__btn a {
    margin: 0 auto;
    width: 286px;
    height: 80px;
    font-size: 18px;
  }
}

/* ----- message ----- */
.p-recruit-message {
  padding-top: max(16vw, 60px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(4vw, 15px);
  background-color: #121212;
}
.p-recruit-message__wrap {
  position: relative;
  z-index: 5;
}
.p-recruit-message__ttl {
  text-align: center;
}
.p-recruit-message__ttl h2 img {
  margin: 0 auto;
  width: max(92vw, 345px);
  height: auto;
  object-fit: contain;
}
.p-recruit-message__ttl .-ttl-sub {
  margin-top: max(5.3333333333vw, 20px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-message__item {
  margin-top: max(12vw, 45px);
}
.p-recruit-message__item-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-recruit-message__item-ttl {
  margin-top: max(12vw, 45px);
}
.p-recruit-message__item-ttl h3 {
  text-align: center;
  line-height: 1;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: max(6.9333333333vw, 26px);
  color: #fff;
}
.p-recruit-message__item-in {
  position: relative;
  margin-top: max(6.6666666667vw, 25px);
  padding-inline: max(2.6666666667vw, 10px);
  max-height: max(113.3333333333vw, 425px);
  overflow: hidden;
  transition: max-height 1s ease;
}
.p-recruit-message__item-in::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: max(53.3333333333vw, 200px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #121212);
  pointer-events: none;
  transition: opacity 1s ease;
}
.p-recruit-message__item-in.is-open {
  max-height: max(346.6666666667vw, 1300px);
}
.p-recruit-message__item-in.is-open::after {
  opacity: 0;
}
.p-recruit-message__item-txt {
  margin-top: max(3.7333333333vw, 14px);
}
.p-recruit-message__item-txt p {
  text-indent: 1em;
  line-height: 1.5714285714;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
}
.p-recruit-message__item-txt:nth-of-type(1) {
  margin-top: 0;
}
.p-recruit-message__item-name {
  margin-top: max(8vw, 30px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: max(2.6666666667vw, 10px);
}
.p-recruit-message__item-name p {
  line-height: 1.5;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
}
.p-recruit-message__item-name p span {
  display: inline-block;
  font-size: max(2.6666666667vw, 10px);
}
.p-recruit-message__item-name h3 {
  font-weight: 700;
  font-size: max(4.8vw, 18px);
}
.p-recruit-message__item-name h3 span {
  margin-right: max(1.3333333333vw, 5px);
  display: inline-block;
  font-size: max(3.7333333333vw, 14px);
}
.p-recruit-message__item-name h3 small {
  font-family: "Alumni Sans", sans-serif;
  font-size: max(4.2666666667vw, 16px);
}
.p-recruit-message__item-btn {
  margin-top: max(10.6666666667vw, 40px);
  margin-inline: auto;
  width: max(44vw, 165px);
  height: max(12vw, 45px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(2.6666666667vw, 10px);
  background-image: url("../img/common/btn-layout_03.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-recruit-message__item-btn p {
  line-height: 1;
  font-weight: 700;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
}
.p-recruit-message__item-btn .open-arrow {
  position: relative;
  width: max(4vw, 15px);
  height: max(4vw, 15px);
  display: block;
  transition: 0.5s;
}
.p-recruit-message__item-btn .open-arrow::before, .p-recruit-message__item-btn .open-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
  transform-origin: center;
}
.p-recruit-message__item-btn .open-arrow::before {
  transform: rotate(90deg);
}
.p-recruit-message__item-btn .open-arrow::after {
  z-index: 1;
}
.p-recruit-message__item-btn .close-arrow::before {
  transform: rotate(0deg);
}
.p-recruit-message__item-btn .close-arrow::after {
  opacity: 0;
}
@media (min-width: 500px) {
  .p-recruit-message {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    position: relative;
    padding-top: max(16vw, 60px);
    padding-top: 80px;
    padding-bottom: 66px;
    padding-inline: 20px;
    overflow: hidden;
  }
  .p-recruit-message__ttl h2 img {
    width: 460px;
  }
  .p-recruit-message__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-recruit-message__item {
    margin-top: 60px;
  }
  .p-recruit-message__item-ttl {
    margin-top: 60px;
  }
  .p-recruit-message__item-ttl h3 {
    font-size: 34px;
  }
  .p-recruit-message__item-in {
    margin-top: 32px;
    padding-inline: 14px;
    max-height: 450px;
  }
  .p-recruit-message__item-in::after {
    height: 150px;
  }
  .p-recruit-message__item-in.is-open {
    max-height: 1750px;
  }
  .p-recruit-message__item-txt {
    margin-top: 18px;
  }
  .p-recruit-message__item-txt p {
    font-size: 18px;
  }
  .p-recruit-message__item-name {
    margin-top: 40px;
    gap: 14px;
  }
  .p-recruit-message__item-name p {
    font-size: 18px;
  }
  .p-recruit-message__item-name p span {
    font-size: 14px;
  }
  .p-recruit-message__item-name h3 {
    font-size: 24px;
  }
  .p-recruit-message__item-name h3 span {
    margin-right: 6px;
    font-size: 18px;
  }
  .p-recruit-message__item-name h3 small {
    font-size: 21px;
  }
  .p-recruit-message__item-btn {
    margin-top: 55px;
    width: 220px;
    height: 60px;
    gap: 14px;
  }
  .p-recruit-message__item-btn p {
    font-size: 18px;
  }
  .p-recruit-message__item-btn .open-arrow {
    width: 20px;
    height: 20px;
  }
}

/* ----- loop text ----- */
.p-recruit-loop {
  margin-inline: auto;
  max-width: 500px;
  overflow: hidden;
}
.p-recruit-loop__imgs {
  width: max(333.3333333333vw, 1250px);
  height: max(10.6666666667vw, 40px);
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #fff;
}
.p-recruit-loop__img {
  width: max(333.3333333333vw, 1250px);
  height: max(10.6666666667vw, 40px);
  background-image: url("../img/common/footer-ttl.svg");
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: loopImg 10s infinite linear;
  transform: translateX(-100%);
}
@media (min-width: 500px) {
  .p-recruit-loop__imgs {
    padding-block: 10px;
    width: 1250px;
    height: 40px;
  }
  .p-recruit-loop__img {
    margin-inline: 8px;
    width: 1250px;
    height: 40px;
  }
}

/* ----- entry ----- */
.p-recruit-entry {
  padding-top: max(16vw, 60px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(4vw, 15px);
  background-image: url("../img/recruit/entry-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.p-recruit-entry__wrap {
  position: relative;
  z-index: 5;
}
.p-recruit-entry__ttl {
  text-align: center;
}
.p-recruit-entry__ttl h2 img {
  margin: 0 auto;
  width: max(33.3333333333vw, 125px);
  height: auto;
  object-fit: contain;
}
.p-recruit-entry__ttl .-ttl-sub {
  margin-top: max(2.6666666667vw, 10px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-entry__form {
  margin-top: max(12vw, 45px);
}
.p-recruit-entry__form .form-block {
  margin-top: max(5.3333333333vw, 20px);
}
.p-recruit-entry__form .form-block label {
  display: block;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
}
.p-recruit-entry__form .form-block input[type=email] {
  margin-top: max(2.1333333333vw, 8px);
  width: 100%;
  height: max(7.4666666667vw, 28px);
  padding-inline: max(2.6666666667vw, 10px);
  display: flex;
  align-items: center;
  background-color: #fff;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #121212;
}
.p-recruit-entry__form .form-block input[type=email]:focus {
  font-size: 16px;
}
.p-recruit-entry__form .form-block .form-position {
  position: relative;
}
.p-recruit-entry__form .form-block .form-position::after {
  content: "";
  position: absolute;
  right: max(2.6666666667vw, 10px);
  top: 50%;
  transform: translateY(-50%);
  width: max(1.6vw, 6px);
  height: max(1.6vw, 6px);
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid #121212;
  border-bottom: 1px solid #121212;
}
.p-recruit-entry__form .form-block .form-position select {
  margin-top: max(2.1333333333vw, 8px);
  width: 100%;
  height: max(7.4666666667vw, 28px);
  padding-inline: max(2.6666666667vw, 10px);
  display: flex;
  align-items: center;
  background-color: #fff;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #121212;
  appearance: none;
  -webkit-appearance: none;
}
.p-recruit-entry__form .form-block .form-position select.is-placeholder {
  color: #5d5d5d;
}
.p-recruit-entry__form .form-block input[type=text] {
  margin-top: max(2.1333333333vw, 8px);
  padding-inline: max(2.6666666667vw, 10px);
  width: 100%;
  height: max(7.4666666667vw, 28px);
  display: flex;
  align-items: center;
  flex: 1;
  background-color: #fff;
  line-height: 1;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #121212;
}
.p-recruit-entry__form .form-block input[type=text]:focus {
  font-size: 16px;
}
.p-recruit-entry__form .form-block:nth-of-type(1) {
  margin-top: 0;
}
.p-recruit-entry__form .form-row {
  margin-top: max(2.1333333333vw, 8px);
  display: flex;
  flex-wrap: wrap;
  gap: max(2.6666666667vw, 10px);
}
.p-recruit-entry__form .form-row input[type=text],
.p-recruit-entry__form .form-row input[type=tel] {
  margin-top: 0;
  padding-inline: max(2.6666666667vw, 10px);
  width: 100%;
  height: max(7.4666666667vw, 28px);
  display: flex;
  align-items: center;
  background-color: #fff;
  flex: 1;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #121212;
}
.p-recruit-entry__form .form-row input[type=text]:focus,
.p-recruit-entry__form .form-row input[type=tel]:focus {
  font-size: 16px;
}
.p-recruit-entry__form .form-gender__label {
  margin-right: max(2.6666666667vw, 10px);
  display: flex;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
}
.p-recruit-entry__form .form-gender__label input[type=radio] {
  position: relative;
  margin-left: max(1.3333333333vw, 5px);
  width: max(4.2666666667vw, 16px);
  height: max(4.2666666667vw, 16px);
  background-color: #fff;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  transition: all 0.2s ease;
}
.p-recruit-entry__form .form-gender__label input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: max(2.6666666667vw, 10px);
  height: max(2.6666666667vw, 10px);
  display: block;
  background: #002364;
  border-radius: 50%;
}
.p-recruit-entry__form .form-date {
  display: flex;
  flex-wrap: nowrap;
}
.p-recruit-entry__form .form-date__item {
  position: relative;
  display: flex;
  flex: 1;
  align-items: flex-end;
}
.p-recruit-entry__form .form-date__item::after {
  content: "";
  position: absolute;
  right: max(6.6666666667vw, 25px);
  top: 50%;
  transform: translateY(-50%);
  width: max(1.6vw, 6px);
  height: max(1.6vw, 6px);
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid #121212;
  border-bottom: 1px solid #121212;
}
.p-recruit-entry__form .form-date__item select {
  padding-inline: max(2.6666666667vw, 10px);
  width: 100%;
  height: max(7.4666666667vw, 28px);
  display: flex;
  align-items: center;
  background-color: #fff;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #121212;
  appearance: none;
  -webkit-appearance: none;
}
.p-recruit-entry__form .form-date__item select.is-placeholder {
  color: #5d5d5d;
}
.p-recruit-entry__form .form-date__label {
  margin-left: max(1.3333333333vw, 5px);
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
}
.p-recruit-entry__form .form-tel {
  align-items: center;
}
.p-recruit-entry__form .form-tel input[type=tel] {
  max-width: max(16vw, 60px);
  text-align: center;
}
.p-recruit-entry__form .form-postal-code {
  align-items: center;
}
.p-recruit-entry__form .form-postal-code input[type=text] {
  max-width: max(16vw, 60px);
  text-align: center;
}
.p-recruit-entry__form input::placeholder,
.p-recruit-entry__form textarea::placeholder {
  color: #5d5d5d;
}
.p-recruit-entry__form .form-btn {
  margin-top: max(8vw, 30px);
  display: flex;
  justify-content: center;
}
.p-recruit-entry__form .form-btn input[type=submit] {
  width: max(49.3333333333vw, 185px);
  height: max(12vw, 45px);
  text-align: center;
  background-image: url("../img/common/btn-layout_03.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  font-weight: 600;
  font-size: max(4.2666666667vw, 16px);
  color: #fff;
  cursor: pointer;
}
.p-recruit-entry__form-conts {
  padding-block: max(8vw, 30px);
  padding-inline: max(8vw, 30px);
  background-color: #121212;
}
@media (min-width: 500px) {
  .p-recruit-entry {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    padding-inline: 20px;
    overflow: hidden;
  }
  .p-recruit-entry__ttl h2 img {
    width: 166px;
  }
  .p-recruit-entry__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-recruit-entry__form {
    margin-top: 60px;
  }
  .p-recruit-entry__form .form-block {
    margin-top: 26px;
  }
  .p-recruit-entry__form .form-block label {
    font-size: 18px;
  }
  .p-recruit-entry__form .form-block input[type=email] {
    margin-top: 10px;
    padding-inline: 14px;
    height: 38px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-block input[type=email]:focus {
    font-size: 18px;
  }
  .p-recruit-entry__form .form-block .form-position::after {
    right: 32px;
    width: 8px;
    height: 8px;
  }
  .p-recruit-entry__form .form-block .form-position select {
    margin-top: 10px;
    padding-inline: 14px;
    height: 38px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-block input[type=text] {
    margin-top: 10px;
    padding-inline: 14px;
    height: 38px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-block input[type=text]:focus {
    font-size: 18px;
  }
  .p-recruit-entry__form .form-row {
    margin-top: 10px;
    gap: 14px;
  }
  .p-recruit-entry__form .form-row input[type=text],
  .p-recruit-entry__form .form-row input[type=tel] {
    margin-top: 0;
    padding-inline: 14px;
    height: 38px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-row input[type=text]:focus,
  .p-recruit-entry__form .form-row input[type=tel]:focus {
    font-size: 18px;
  }
  .p-recruit-entry__form .form-gender__label {
    margin-right: 14px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-gender__label input[type=radio] {
    margin-left: 8px;
    width: 20px;
    height: 20px;
  }
  .p-recruit-entry__form .form-gender__label input[type=radio]:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 12px;
    height: 12px;
  }
  .p-recruit-entry__form .form-date__item::after {
    right: 32px;
    width: 8px;
    height: 8px;
  }
  .p-recruit-entry__form .form-date__item select {
    padding-inline: 14px;
    height: 38px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-date__item select.is-placeholder {
    color: #5d5d5d;
  }
  .p-recruit-entry__form .form-date__label {
    margin-left: 8px;
    font-size: 18px;
  }
  .p-recruit-entry__form .form-tel input[type=tel] {
    max-width: 80px;
  }
  .p-recruit-entry__form .form-postal-code {
    align-items: center;
  }
  .p-recruit-entry__form .form-postal-code input[type=text] {
    max-width: 80px;
  }
  .p-recruit-entry__form input::placeholder,
  .p-recruit-entry__form textarea::placeholder {
    color: #5d5d5d;
  }
  .p-recruit-entry__form .form-btn {
    margin-top: 40px;
  }
  .p-recruit-entry__form .form-btn input[type=submit] {
    width: 245px;
    height: 60px;
    font-size: 20px;
  }
  .p-recruit-entry__form-conts {
    padding-block: 40px;
    padding-inline: 40px;
  }
}

/* ----- entry confirm ----- */
.p-recruit-entry-confirm {
  position: relative;
  padding-top: max(26.6666666667vw, 100px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(4vw, 15px);
  background-image: url("../img/recruit/entry-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.p-recruit-entry-confirm__wrap {
  position: relative;
  z-index: 5;
}
.p-recruit-entry-confirm__ttl {
  text-align: center;
}
.p-recruit-entry-confirm__ttl h2 img {
  margin: 0 auto;
  width: max(33.3333333333vw, 125px);
  height: auto;
  object-fit: contain;
}
.p-recruit-entry-confirm__ttl .-ttl-sub {
  margin-top: max(2.6666666667vw, 10px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-entry-confirm__lead {
  margin-top: max(12vw, 45px);
}
.p-recruit-entry-confirm__lead p {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-entry-confirm__form {
  margin-top: max(2.6666666667vw, 10px);
}
.p-recruit-entry-confirm__form-conts {
  padding-block: max(8vw, 30px);
  padding-inline: max(8vw, 30px);
  background-color: #121212;
}
.p-recruit-entry-confirm__form-conts dl dt {
  margin-top: max(5.3333333333vw, 20px);
  display: block;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
}
.p-recruit-entry-confirm__form-conts dl dt:nth-of-type(1) {
  margin-top: 0;
}
.p-recruit-entry-confirm__form-conts dl dd {
  margin-top: max(2.1333333333vw, 8px);
  padding-inline: max(2.6666666667vw, 10px);
  width: 100%;
  height: max(7.4666666667vw, 28px);
  display: flex;
  align-items: center;
  flex: 1;
  background-color: #fff;
  line-height: 1;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #121212;
  -webkit-text-fill-color: #121212;
}
.p-recruit-entry-confirm__btns {
  margin-top: max(5.3333333333vw, 20px);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: max(2.6666666667vw, 10px);
}
.p-recruit-entry-confirm__btn {
  height: max(12vw, 45px);
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  font-weight: 600;
  font-size: max(4.2666666667vw, 16px);
  color: #fff;
  cursor: pointer;
}
.p-recruit-entry-confirm__btn:nth-of-type(1) {
  width: max(49.3333333333vw, 185px);
  background-image: url("../img/common/btn-layout_03.webp");
}
.p-recruit-entry-confirm__btn:nth-of-type(2) {
  width: max(40vw, 150px);
  background-image: url("../img/common/btn-layout_04.webp");
}
.p-recruit-entry-confirm__error p {
  line-height: 2;
  text-align: center;
  display: block;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
}
@media (min-width: 500px) {
  .p-recruit-entry-confirm {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    padding-inline: 20px;
    overflow: hidden;
  }
  .p-recruit-entry-confirm__ttl h2 img {
    width: 166px;
  }
  .p-recruit-entry-confirm__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-recruit-entry-confirm__lead {
    margin-top: 60px;
  }
  .p-recruit-entry-confirm__lead p {
    font-size: 26px;
  }
  .p-recruit-entry-confirm__form {
    margin-top: 14px;
  }
  .p-recruit-entry-confirm__form-conts {
    padding-block: 40px;
    padding-inline: 40px;
  }
  .p-recruit-entry-confirm__form-conts dl dt {
    margin-top: 26px;
    font-size: 18px;
  }
  .p-recruit-entry-confirm__form-conts dl dd {
    margin-top: 10px;
    padding-inline: 14px;
    height: 38px;
    font-size: 18px;
  }
  .p-recruit-entry-confirm__btns {
    margin-top: 26px;
    gap: 14px;
  }
  .p-recruit-entry-confirm__btn {
    height: 60px;
    font-size: 20px;
  }
  .p-recruit-entry-confirm__btn:nth-of-type(1) {
    width: 245px;
  }
  .p-recruit-entry-confirm__btn:nth-of-type(2) {
    width: 200px;
  }
  .p-recruit-entry-confirm__error p {
    font-size: 18px;
  }
}

/* ----- entry complete ----- */
.p-recruit-entry-complete {
  position: relative;
  padding-top: max(26.6666666667vw, 100px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(4vw, 15px);
  background-image: url("../img/recruit/entry-bg.webp");
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}
.p-recruit-entry-complete__wrap {
  position: relative;
  z-index: 5;
}
.p-recruit-entry-complete__ttl {
  text-align: center;
}
.p-recruit-entry-complete__ttl h2 img {
  margin: 0 auto;
  width: max(33.3333333333vw, 125px);
  height: auto;
  object-fit: contain;
}
.p-recruit-entry-complete__ttl .-ttl-sub {
  margin-top: max(2.6666666667vw, 10px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-entry-complete__lead {
  margin-top: max(12vw, 45px);
}
.p-recruit-entry-complete__lead p {
  display: block;
  text-align: center;
  line-height: 1.25;
  font-weight: 600;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-recruit-entry-complete__form {
  margin-top: max(6.6666666667vw, 25px);
}
.p-recruit-entry-complete__txt {
  display: flex;
  flex-direction: column;
  gap: max(2.6666666667vw, 10px);
}
.p-recruit-entry-complete__txt p {
  text-align: left;
  line-height: 1.25;
  display: block;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
}
.p-recruit-entry-complete__btn {
  margin-top: max(8vw, 30px);
  display: flex;
  justify-content: center;
}
.p-recruit-entry-complete__btn a {
  width: max(49.3333333333vw, 185px);
  height: max(12vw, 45px);
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/common/btn-layout_03.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  line-height: 1;
  font-weight: 600;
  font-size: max(3.7333333333vw, 14px);
  color: #fff;
  cursor: pointer;
}
@media (min-width: 500px) {
  .p-recruit-entry-complete {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    padding-top: 130px;
    padding-bottom: 80px;
    padding-inline: 20px;
  }
  .p-recruit-entry-complete__ttl h2 img {
    width: 166px;
  }
  .p-recruit-entry-complete__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-recruit-entry-complete__lead {
    margin-top: 60px;
  }
  .p-recruit-entry-complete__lead p {
    font-size: 26px;
  }
  .p-recruit-entry-complete__form {
    margin-top: 32px;
  }
  .p-recruit-entry-complete__txt {
    gap: 14px;
  }
  .p-recruit-entry-complete__txt p {
    font-size: 18px;
  }
  .p-recruit-entry-complete__btn {
    margin-top: 40px;
  }
  .p-recruit-entry-complete__btn a {
    height: 60px;
    font-size: 20px;
    width: 245px;
  }
}

/* stylelint-disable-next-line unit-case */
/* ----- interview ----- */
.p-interview {
  position: relative;
  padding-top: max(24vw, 90px);
  padding-bottom: max(16vw, 60px);
  padding-inline: max(9.3333333333vw, 35px);
  overflow: hidden;
}
.p-interview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/recruit/staff-interview-bg.webp");
  background-repeat: repeat;
  background-position: top;
  background-size: contain;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-interview__wrap {
  position: relative;
  z-index: 5;
}
.p-interview__ttl {
  text-align: center;
}
.p-interview__ttl h2 img {
  margin: 0 auto;
  width: max(62.6666666667vw, 235px);
  height: auto;
  object-fit: contain;
}
.p-interview__ttl .-ttl-sub {
  margin-top: max(5.3333333333vw, 20px);
  display: block;
  line-height: 1;
  font-weight: 700;
  font-size: max(5.3333333333vw, 20px);
  color: #fff;
}
.p-interview__item {
  margin-top: max(28vw, 105px);
}
.p-interview__item-head {
  position: relative;
}
.p-interview__item-img picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-interview__item-lead {
  position: absolute;
  top: min(-9.3333333333vw, -35px);
  right: min(-9.3333333333vw, -35px);
  z-index: 1;
  padding-block: max(2.6666666667vw, 10px);
  padding-right: max(2.6666666667vw, 10px);
  padding-left: max(5.3333333333vw, 20px);
  background-color: #BC002D;
}
.p-interview__item-lead p {
  line-height: 1.125;
  font-style: italic;
  font-weight: 600;
  font-size: max(4.2666666667vw, 16px);
  color: #fff;
}
.p-interview__item-name {
  position: absolute;
  bottom: min(-4vw, -15px);
  left: min(-9.3333333333vw, -35px);
  z-index: 1;
  padding-block: max(2.6666666667vw, 10px);
  padding-right: max(6.6666666667vw, 25px);
  padding-left: max(10.6666666667vw, 40px);
  background-color: #002364;
}
.p-interview__item-name span {
  display: block;
  line-height: 1.5;
  font-weight: 600;
  font-size: max(2.9333333333vw, 11px);
}
.p-interview__item-name h3 {
  font-weight: 700;
  font-size: max(4.2666666667vw, 16px);
  color: #fff;
}
.p-interview__item-out {
  margin-top: max(13.3333333333vw, 50px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: max(9.3333333333vw, 35px);
}
.p-interview__item-in {
  padding-block: max(5.3333333333vw, 20px);
  padding-inline: max(5.3333333333vw, 20px);
  background-color: #121212;
  border-radius: max(2.6666666667vw, 10px);
}
.p-interview__item-ttl {
  position: relative;
  padding-bottom: max(3.2vw, 12px);
  display: flex;
  align-items: center;
  gap: max(3.2vw, 12px);
}
.p-interview__item-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #002364;
  border: 1px solid #fff;
}
.p-interview__item-ttl h3 {
  line-height: 1.25;
  font-weight: 700;
  font-size: max(4.2666666667vw, 16px);
  color: #fff;
}
.p-interview__item-ttl img {
  width: auto;
  height: max(5.3333333333vw, 20px);
  object-fit: contain;
}
.p-interview__item-txt {
  margin-top: max(4vw, 15px);
}
.p-interview__item-txt p {
  text-indent: 1em;
  line-height: 1.3636363636;
  font-weight: 600;
  font-size: max(2.9333333333vw, 11px);
  color: #fff;
}
@media (min-width: 500px) {
  .p-interview {
    max-width: 500px;
    width: 100%;
    margin-inline: auto;
    position: relative;
    position: relative;
    padding-top: 120px;
    padding-bottom: 80px;
    padding-inline: 46px;
    overflow: hidden;
  }
  .p-interview__ttl h2 img {
    width: 312px;
  }
  .p-interview__ttl .-ttl-sub {
    margin-top: 26px;
    font-size: 26px;
  }
  .p-interview__item {
    margin-top: 140px;
  }
  .p-interview__item-lead {
    top: -45px;
    right: -46px;
    padding-block: 14px;
    padding-right: 14px;
    padding-left: 26px;
  }
  .p-interview__item-lead p {
    font-size: 20px;
  }
  .p-interview__item-name {
    bottom: -20px;
    left: -46px;
    padding-block: 14px;
    padding-right: 32px;
    padding-left: 52px;
  }
  .p-interview__item-name span {
    font-size: 14px;
  }
  .p-interview__item-name h3 {
    font-size: 21px;
  }
  .p-interview__item-out {
    margin-top: 65px;
    gap: 45px;
  }
  .p-interview__item-in {
    padding-block: 26px;
    padding-inline: 26px;
    border-radius: 14px;
  }
  .p-interview__item-ttl {
    padding-bottom: 15px;
    gap: 15px;
  }
  .p-interview__item-ttl h3 {
    font-size: 20px;
  }
  .p-interview__item-ttl img {
    height: 26px;
  }
  .p-interview__item-txt {
    margin-top: 20px;
  }
  .p-interview__item-txt p {
    font-size: 15px;
  }
}

/* stylelint-disable-next-line unit-case */
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* base
--------------------------- */
/* ----- color ----- */
/* ----- font-family ----- */
/* ----- breakpoint ----- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html.faq {
  height: 100%;
  line-height: 1;
  background-color: #121212;
  background-image: url("../img/faq/faq-bg-mid.png");
  background-repeat: repeat;
  background-position: center;
  background-size: contain;
}

body {
  width: 100%;
  min-width: 350px;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  color: #fff;
}

body.faq {
  background-image: none;
}

/*--------------------------------------*
* layout
*--------------------------------------*/
/*--------------------------------------*
* layout
*--------------------------------------*/
@media (min-width: 500px) {
  .l-header-faq {
    max-width: 500px;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .l-header-faq {
    max-width: 625px;
  }
}
@media (min-width: 1024px) {
  .l-header-faq {
    max-width: 850px;
  }
}
.l-header-faq {
  background-color: transparent;
  padding-left: 15px;
}

/*--------------------------------------*
* object
*--------------------------------------*/
/*-------------------
* component
-------------------*/
@keyframes loopAnimation01 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes loopAnimation02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ----- faq ----- */
.p-faq {
  position: relative;
  padding-top: max(13.3333333333vw, 50px);
  padding-bottom: max(13.3333333333vw, 50px);
  padding-inline: max(9.3333333333vw, 35px);
  overflow: hidden;
}

.p-faq {
  min-width: 350px;
  width: 100%;
  margin-inline: auto;
  padding-top: 66px;
  padding-bottom: 66px;
  padding-inline: 35px;
}

@media (min-width: 500px) {
  .p-faq {
    max-width: 600px;
  }
}
@media (min-width: 768px) {
  .p-faq {
    padding-inline: 0;
  }
}
@media (min-width: 1366px) {
  .p-faq {
    max-width: 850px;
  }
}
.p-faq__wrap {
  position: relative;
  z-index: 5;
}

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

.p-faq__ttl h2 img {
  margin: 0 auto;
  width: max(18.6666666667vw, 70px);
  height: auto;
  object-fit: contain;
}

.p-faq__ttl span {
  margin-top: max(2.6666666667vw, 10px);
  display: block;
  line-height: 1.4;
  font-weight: 700;
  font-size: min(5vw, 20px);
  color: #fff;
}

.p-faq__list {
  position: relative;
  margin-top: max(5.3333333333vw, 20px);
  padding-bottom: max(5.3333333333vw, 20px);
  border-radius: 1px;
}

.p-faq__q {
  display: flex;
  justify-content: space-between;
  background-color: #002364;
}

.p-faq__q p {
  padding-right: max(4vw, 15px);
  line-height: 2;
  font-weight: 700;
  font-size: max(4.5vw, 18px);
  color: white;
}

.p-faq__q .open-arrow {
  position: relative;
  width: max(5.3333333333vw, 20px);
  height: max(5.3333333333vw, 20px);
  transition: 0.3s;
}

.p-faq__q .open-arrow::before,
.p-faq__q .open-arrow::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 100%;
  height: 3px;
  border: 1px solid #fff;
  border-radius: 1px;
  transition: 0.3s;
  transform-origin: center;
}

.p-faq__q .open-arrow::before {
  background: #bc002d;
  transform: rotate(90deg);
}

.p-faq__q .open-arrow::after {
  background: #002364;
  z-index: 1;
}

.p-faq__q .close-arrow::before {
  transform: rotate(-45deg);
}

.p-faq__q .close-arrow::after {
  transform: rotate(45deg);
}

.p-faq__a {
  position: relative;
  margin-top: max(5.3333333333vw, 20px);
  display: none;
  background-color: white;
}

.p-faq__a p {
  margin-left: max(8vw, 30px);
  padding-right: max(2.6666666667vw, 10px);
  line-height: 1.1666666667;
  font-weight: 700;
  font-size: max(4.5vw, 18px);
  color: #002364;
}

.p-faq__a span img {
  width: max(5.8666666667vw, 22px);
  height: auto;
  object-fit: contain;
}

.p-faq__ttl h2 img {
  width: 95px;
}

.p-faq__ttl span {
  margin-top: 15px;
  font-size: min(6.5w, 26px);
}

.p-faq__tabs {
  margin-top: 30px;
  display: flex;
}

.p-faq__tab {
  flex: 1;
  color: white;
  background-color: #002364;
  border: 1px solid white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding-top: 15px;
  padding-bottom: 10px;
  cursor: pointer;
}

.p-faq__tab.active {
  color: #002364;
  background-color: white;
  border: 1px solid white;
}

.p-faq__tab p.top {
  text-align: center;
  font-size: min(4.5vw, 22px);
  line-height: 26px;
  font-weight: 700;
}

@media (min-width: 750px) {
  .p-faq__tab p.top {
    text-align: center;
    font-size: min(5.5vw, 22px);
    line-height: 26px;
    font-weight: 700;
  }
}
.p-faq__tab p.bottom {
  padding-inline: 4px;
  text-align: center;
  line-height: 18px;
  font-size: min(3.5vw, 14px);
  font-weight: 700;
}

.p-faq__lists {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #002364;
  background-color: white;
  display: none;
}

.p-faq__lists.active {
  display: block;
  padding-bottom: 0px;
}

.p-faq__lists.other {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  display: block !important;
}

.p-faq__list {
  margin: 10px;
  padding: 0px;
  border: 3px solid #002364;
  border-radius: 5px;
}

.p-faq__q {
  transition: 0.3s;
  cursor: pointer;
}

.p-faq__lists.active .p-faq__list:last-child {
  margin-bottom: 0px !important;
}

.p-faq__lists.other .p-faq__list:first-child {
  margin-top: 0px !important;
}

.p-faq__lists.other .p-faq__list:last-child {
  margin-bottom: 0px !important;
}

.p-faq__lists .p-faq__lists {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: white;
  display: block;
}

.p-faq__lists .p-faq__lists .p-faq__list {
  margin: 10px 0px 10px 0px;
  border: 3px solid #002364;
  border-radius: 5px;
}

.p-faq__lists .p-faq__lists .p-faq__list:first-child {
  margin-top: 0px !important;
}

.p-faq__lists .p-faq__lists .p-faq__list:last-child {
  margin-bottom: 0px !important;
}

.p-faq__q {
  transition: 0.3s;
  cursor: pointer;
}

.p-faq__q p,
.p-faq__a .p-faq__q p {
  padding-left: 10px;
  padding-right: 15px;
  font-size: min(4.5vw, 18px);
  line-height: 2;
  color: white;
}

.p-faq__q .open-arrow {
  display: inline-block;
  width: 25px;
  height: 25px;
  cursor: pointer;
}

.p-faq__q div.question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.p-faq__q div.question div.arrow {
  width: 25px;
  height: 25px;
}

.p-faq__a {
  margin: 0px;
  padding: 15px 10px;
}

.p-faq__a > * {
  margin: 15px 0px !important;
}

.p-faq__a > :first-child {
  margin-top: 0px !important;
}

.p-faq__a > :last-child {
  margin-bottom: 0px !important;
}

.p-faq__a p {
  margin: 0px;
  padding: 0px;
}

.p-faq__a hr {
  border-top: 3px solid #002364;
  margin: 15px 0px !important;
}

.p-faq__a hr.dotted {
  border-top: 3px dotted #002364;
}

.p-faq__a a {
  color: #bc002d;
  text-decoration: underline;
}

.p-faq__a a.tel {
  color: #0084ff;
  text-decoration: underline;
}

.p-faq__a p {
  font-size: min(4.5vw, 18px);
  line-height: 1.5;
}

.p-faq__a p.normal {
  font-size: min(4.5vw, 18px);
}

.p-faq__a p.email_domain {
  font-weight: 900;
  font-size: min(3.5vw, 14px);
  text-align: center;
}

.p-faq__a p.small {
  font-size: min(3vw, 12px);
  margin: 15px 0px;
}

.p-faq__a p.small2 {
  font-size: min(4vw, 16px);
  margin: 15px 0px;
}

.p-faq__a div.step {
  display: flex;
  align-items: center;
  padding: 0px 0px;
  margin: 15px 0px;
}

.p-faq__a div.step div.count {
  background-color: #002364;
  border-radius: 5px;
  margin-right: 10px;
}

.p-faq__a div.step div.count p {
  color: #ffffff;
  padding: 5px;
  font-size: min(4.5vw, 18px);
}

.p-faq__a ul.list > li {
  list-style-type: disc;
  margin-left: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.p-faq__a ul.list > li.circle {
  list-style-type: none;
  position: relative;
}

.p-faq__a ul.list > li.circle::before {
  position: absolute;
  content: "●";
  left: -1.2rem;
  top: 0.4em;
  font-size: 1rem;
}

.p-faq__a ul.list > li:first-child {
  margin-top: 0px;
}

.p-faq__a ul.list > li:last-child {
  margin-bottom: 0px;
}

.p-faq__a ul.list > li > *:first-child {
  margin-top: 0px !important;
}

.p-faq__a ul.list > li > *:last-child {
  margin-bottom: 0px !important;
}

.p-faq__a ul.list > li > p {
  margin: 0px;
}

.p-faq__a ul.list > li > ul {
  margin-left: 15px;
  margin-top: 0px;
}

.p-faq__a ul.list > li > ul > li {
  list-style-type: square;
}

.p-faq__a ul.list > li > ul > li > *:first-child {
  margin-top: 0px !important;
}

.p-faq__a ul.list > li > ul > li > *:last-child {
  margin-bottom: 0px !important;
}

.p-faq__a p.red {
  color: #bc002d;
}

.p-faq__a span {
  top: 5px;
}

.p-faq__a span img {
  width: 28px;
}

img.rule {
  width: 100%;
}

/*-------------------
  * javascript
  -------------------*/
/* ---------- scroll animation ---------- */
/* ----- mask ----- */
.mask-out {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.mask-out::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateX(-105%);
  transition: all 0.3s ease-in-out 0.3s;
  background: #BC002D;
}
.mask-out .mask-in {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.mask-out-bg-01::after {
  background: #BC002D;
}

.mask-out-bg-02::after {
  background: #002364;
}

.mask-out-bg-03::after {
  background: #fff;
}

.mask-on::after {
  left: 0;
  animation: maskOut 1.5s cubic-bezier(0.56, 0, 0.11, 1) forwards;
}
.mask-on .mask-in {
  animation: maskIn 1s ease-in-out forwards;
}

@keyframes maskOut {
  0% {
    transform: translateX(-105%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(105%);
  }
}
@keyframes maskIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  90% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* ----- check ----- */
.check-on::after {
  animation: checkOnSp 1.2s ease-in-out forwards;
}
@media (min-width: 500px) {
  .check-on::after {
    animation: checkOnTablet 1.5s ease-in-out forwards;
  }
}

@keyframes checkOnSp {
  0% {
    opacity: 0;
  }
  80% {
    width: max(18.6666666667vw, 70px);
    height: max(13.3333333333vw, 50px);
    opacity: 1;
  }
  100% {
    width: max(13.3333333333vw, 50px);
    height: max(8vw, 30px);
    opacity: 1;
  }
}
@keyframes checkOnTablet {
  0% {
    opacity: 0;
  }
  80% {
    width: 85px;
    height: 65px;
    opacity: 1;
  }
  100% {
    width: 65px;
    height: 45px;
    opacity: 1;
  }
}
/* ----- btn ----- */
.btn-on {
  animation: btnOn 0.8s ease-in-out forwards;
  animation-delay: 0.8s;
}

@keyframes btnOn {
  0% {
    opacity: 0;
  }
  70% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* ----- loop ----- */
@keyframes loopImgTop {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loopImgBot {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loopImg {
  0% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loopSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ----- line ----- */
.line-on::before {
  animation: drawLine 3s ease-in-out forwards 0.5s;
}

@keyframes drawLine {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
/*-------------------
  * utility
  -------------------*/
.u-dn {
  display: none;
}

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

.u-db {
  display: block;
}

.u-dib-sp {
  display: none;
}

.u-db-sp {
  display: none;
}

@media (min-width: 500px) {
  .u-dn-tablet {
    display: none;
  }
}

.u-db-tablet {
  display: none;
}
@media (min-width: 500px) {
  .u-db-tablet {
    display: block;
  }
}

.u-db-tablet-dn-sp {
  display: none;
}
@media (min-width: 500px) {
  .u-db-tablet-dn-sp {
    display: block;
  }
}

.u-db-tablet-sp-xs {
  display: none;
}
@media (min-width: 500px) {
  .u-db-tablet-sp-xs {
    display: block;
  }
}
@media (max-width: 374px) {
  .u-db-tablet-sp-xs {
    display: block;
  }
}

.u-db-pc-dn-tablet {
  display: block;
}
@media (min-width: 500px) {
  .u-db-pc-dn-tablet {
    display: none !important;
  }
}

.u-db-pc {
  display: block;
}

.u-db-pc-dn-sp-xs {
  display: block;
}
@media (max-width: 374px) {
  .u-db-pc-dn-sp-xs {
    display: none !important;
  }
}

.u-dib-pc {
  display: inline-block;
}

.u-dn-pc {
  display: block;
}
@media (min-width: 768px) {
  .u-dn-pc {
    display: none;
  }
}

.u-ff-jp {
  font-family: "Noto Sans JP", sans-serif;
}/*# sourceMappingURL=style.css.map */