@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

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

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Zen Old Mincho", serif;
  font-size: 10px;
  color: #353e42;
  scroll-behavior: smooth;
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font: 700 1.6rem "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  gap: 40px;
}

.button.button__blue {
  color: #253675;
}

.button__btn {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button__btn::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #fff;
  opacity: 0.4;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button__btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: url("./public/img/icon/arrow-blu.svg") center/contain no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.button__btn.button__btn--blu {
  background-color: #253675;
  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;
}

.button__btn.button__btn--blu::before {
  background-color: #253675;
  z-index: -1;
}

.button__btn.button__btn--bg {
  width: 64px;
  height: 64px;
}

@media screen and (max-width: 767px) {
  .button__btn.button__btn--bg {
    width: 24px;
    height: 24px;
  }
}

.button__btn.button__btn--bg::before {
  width: 104px;
  height: 104px;
}

@media screen and (max-width: 767px) {
  .button__btn.button__btn--bg::before {
    width: 44px;
    height: 44px;
  }
}

.button__btn.button__btn--bg::after {
  width: 12px;
  height: 12px;
  -webkit-filter: brightness(100);
  filter: brightness(100);
}

@media screen and (max-width: 767px) {
  .button__btn.button__btn--bg::after {
    width: 8px;
    height: 8px;
  }
}

.button__btn.button__btn--white::after {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}

.button__btn.button__sm-blue {
  background-color: #253675;
}

.button__btn.button__sm-blue::before {
  background-color: #253675;
}

.button__btn.button__sm-blue::after {
  background: url("./public/img/icons/arrow-right-w.svg") no-repeat center/100% 100%;
}

.button__lg {
  width: 300px;
  height: 64px;
  border-radius: 32px;
}

@media screen and (max-width: 767px) {
  .button__lg {
    height: 54px;
  }
}

.button__lg::before {
  width: 340px;
  height: 104px;
  border-radius: 64px;
}

@media screen and (max-width: 767px) {
  .button__lg::before {
    width: 320px;
    height: 74px;
  }
}

.button__lg::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url("./public/img/icons/btn-arrow.svg") no-repeat center/100% 100%;
  position: absolute;
  left: unset;
  top: 50%;
  right: 38px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
  .button__lg::after {
    width: 10px;
    height: 10px;
  }
}

.button__lg:hover {
  -webkit-transform: scale(1.12);
  transform: scale(1.12);
}

.button__lg:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.button__lg:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}

.button__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .button__text {
    font-size: 14px;
  }
}

.button__hover:hover .button__btn {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.button__hover:hover .button__btn::before {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.button__hover:hover .button__btn::after {
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 0 5.2%;
  z-index: -2;
}

.contact::before,
.contact::after {
  content: "";
  position: absolute;
  width: 6.2%;
  height: 103%;
  background-color: #fafafa;
  right: 0;
  top: -1.5%;
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 35%, 100% 70%, 100% 100%, 50% 100%, 0 100%, 14% 97%, 14% 3%, 0 0);
  clip-path: polygon(50% 0%, 100% 0, 100% 35%, 100% 70%, 100% 100%, 50% 100%, 0 100%, 14% 97%, 14% 3%, 0 0);
  z-index: -20;
}

.contact::before {
  right: unset;
  left: 0;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.contact__content-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 20px;
}

.contact__container {
  position: relative;
  width: 100%;
  padding: 0 40px;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .contact__container {
    padding: 0 24px;
  }
}

.contact__container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #002672;
  opacity: 0.7;
  left: 0;
  top: 0;
  z-index: 1;
}

.contact__wrapper {
  position: relative;
  max-width: 944px;
  width: 100%;
  margin: 0 auto;
  padding: 95px 0 100px;
  z-index: 2;
}

.contact__bg {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -20;
}

.contact__bg video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-attachment: fixed;
}

.contact__mtxt {
  margin-top: 25px;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 2em;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .contact__mtxt {
    margin-top: 65px;
    font-size: 14px;
    text-align: left;
  }
}

.contact__contact {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 980px) {
  .contact__contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 45px;
  }
}

.contact__tel {
  width: 50%;
  color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 980px) {
  .contact__tel {
    width: 100%;
  }
}

.contact__tel:hover {
  opacity: 0.7;
}

.contact__num {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font: 700 2.4rem "Montserrat", sans-serif;
  color: #fff;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 980px) {
  .contact__num {
    margin: 0 auto;
    font-size: 16px;
  }
}

.contact__num span {
  padding-left: 6px;
  font-size: 4.8rem;
}

@media screen and (max-width: 767px) {
  .contact__num span {
    font-size: 32px;
  }
}

.contact__num p {
  font: 500 1.2rem "Noto Sans JP", sans-serif;
  text-align: center;
}

.contact__btn {
  width: 50%;
  font: 700 2.4rem "Noto Sans JP", sans-serif;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

@media screen and (max-width: 980px) {
  .contact__btn {
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .contact__btn {
    font-size: 1.6rem;
    gap: 16px;
  }
}

.footer {
  position: relative;
  z-index: 0;
}

.footer__wrapper {
  position: relative;
  width: 100%;
  padding: 0 5.2%;
  background-color: #fafafa;
  z-index: 10;
}

.footer__content {
  padding: 50px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 160px;
}

@media screen and (max-width: 767px) {
  .footer__nav {
    margin-bottom: 50px;
    gap: unset;
  }
}

.footer__nav-gr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .footer__nav-gr {
    width: 50%;
    padding-left: 15px;
  }
}

.footer__nav-gr a {
  display: block;
  font: 700 1.6rem "Montserrat", sans-serif;
  color: #253675;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .footer__nav-gr a {
    font-size: 1.4rem;
  }
}

.footer__nav-gr a:not(:last-child) {
  margin-bottom: 28px;
}

.footer__nav-gr a:hover {
  opacity: 0.7;
}

.footer__rsd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .footer__rsd {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.footer__rsd-logo {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.footer__rsd-logo:hover {
  opacity: 0.7;
}

.footer__rsd-logo img {
  width: 201px;
  height: 40px;
}

.footer__rsd-ctc {
  margin: 16px 0 8px;
  font: 500 1.2rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.6666666667em;
  color: #253675;
}

.footer__rsd-ig img {
  width: 24px;
  height: 24px;
}

.footer__rsd-cpr {
  margin-top: 23px;
  font: 700 1.2rem "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  color: #87a4b1;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.image--100 {
  height: 100%;
}

.image--auto {
  width: auto;
}

.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.title__en {
  font: 700 4.8rem "Montserrat", sans-serif;
  letter-spacing: 0.072em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .title__en {
    font-size: 4rem;
  }
}

.title__ja {
  padding-top: 10px;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .title__ja {
    font-size: 1.6rem;
  }
}

.title__ja--sm {
  padding-top: 6px;
  font-size: 1.6rem;
}

.title-lp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 45px;
}

@media screen and (max-width: 767px) {
  .title-lp {
    padding-left: 35px;
  }
}

.title-lp--white::before {
  background: url("./public/img/icons/title-icon-white.svg") no-repeat center/100% 100% !important;
}

.title-lp__en {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.072em;
}

@media screen and (max-width: 767px) {
  .title-lp__en {
    font-size: 20px;
  }
}

.title-lp__en--jp {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.title-lp__en--white {
  color: #fafafa;
}

.title-lp__jp {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .title-lp__jp {
    font-size: 14px;
  }
}

.title-lp__jp--white {
  color: #fafafa;
}

.title-lp::before {
  content: "";
  width: 21px;
  height: 41px;
  position: absolute;
  background: url("./public/img/icons/title-icon.svg") no-repeat center/100% 100%;
  left: 0;
  top: 0;
}

@media screen and (max-width: 767px) {
  .title-lp::before {
    width: 18px;
    height: 35px;
  }
}

.banner {
  padding-block: 240px 200px;
  background-color: #253675;
}

@media screen and (max-width: 767px) {
  .banner {
    padding-block: 120px 70px;
  }
}

.banner--anchor {
  padding-bottom: 148px;
}

@media screen and (max-width: 767px) {
  .banner--anchor {
    padding-bottom: 74px;
  }
}

.banner--plain {
  padding-bottom: 96px;
  background-color: #fafafa;
}

@media screen and (max-width: 767px) {
  .banner--plain {
    padding-bottom: 43px;
  }
}

.banner--plain.pb {
  padding-bottom: 44px;
}

@media screen and (max-width: 767px) {
  .banner--plain.pb {
    padding-bottom: 20px;
  }
}

.banner__wrap {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .banner__wrap {
    max-width: 100%;
  }
}

.banner__crumbs {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .banner__crumbs {
    margin-bottom: 34px;
  }
}

.banner__crumbs--plain .banner__crumbs-link {
  color: #353e42;
}

.banner__crumbs--plain .banner__crumbs-link::after {
  -webkit-filter: unset !important;
  filter: unset !important;
}

.banner__crumbs-link {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fafafa;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .banner__crumbs-link {
    font-size: 10px;
  }
}

.banner__crumbs-link:not(:last-child)::after {
  width: 6px;
  height: 10px;
  content: "";
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
  background: url("./public/img/icons/caret-right.svg") no-repeat center/contain;
}

.banner__title {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fafafa;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.banner__title--plain {
  color: #353e42;
}

.banner__title-eng {
  letter-spacing: 0.072em;
  font: 700 4.8rem "Montserrat", sans-serif;
  line-height: 1.2083333333em;
}

@media screen and (max-width: 767px) {
  .banner__title-eng {
    font-size: 34px;
  }
}

.banner__title-jp {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.3333333333em;
}

@media screen and (max-width: 767px) {
  .banner__title-jp {
    font-size: 18px;
  }
}

.banner__title-jp--big {
  font-size: 4.8rem;
}

.banner__title-jp--mid {
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  .banner__title-jp--mid {
    font-size: 18px;
  }
}

.banner__anchor-content {
  gap: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 950px) {
  .banner__anchor-content {
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .banner__anchor-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.banner__anchor-wrap {
  gap: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .banner__anchor-wrap {
    gap: 30px;
  }
}

.banner__anchor-wrap--cat {
  gap: 16px;
}

.banner__anchor-links {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 240px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .banner__anchor-links {
    max-width: 100%;
  }
}

.banner__anchor-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.6rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-block: 16px;
  color: #fafafa;
  letter-spacing: 0.05em;
  font-weight: 600;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #87a4b1;
}

@media screen and (max-width: 767px) {
  .banner__anchor-link {
    font-size: 1.4rem;
  }
}

.banner__anchor-link::after {
  content: "";
  width: 8px;
  height: 8px;
  background: url("./public/img/icons/arrow-white.svg") no-repeat center/contain;
  position: relative;
  top: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.banner__anchor-link:first-child {
  border-top: 1px solid #87a4b1;
}

.banner__anchor-link:hover::after {
  top: 5px;
}

.banner__anchor-img {
  width: 100%;
  height: 500px;
  max-width: 750px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .banner__anchor-img {
    height: 200px;
    max-width: 100%;
    border-radius: 10px;
  }
}

.banner__anchor-img img {
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  will-change: transform;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.banner__text {
  width: 100%;
  max-width: 604px;
  letter-spacing: 0.05em;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .banner__text {
    font-size: 13px;
  }
}

.banner__category {
  height: 36px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #253675;
  border-radius: 23px;
  padding-inline: 12px;
  letter-spacing: 0.05em;
  border: 1px solid #253675;
  font: 500 1.2rem "Noto Sans JP", sans-serif;
  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;
}

.top__mv {
  width: 100%;
  height: 100svh;
  position: fixed;
  z-index: 9999;
  padding: 65px 100px;
  overflow: hidden;
  background-color: #fff;
}

.top__mv.is-finished {
  position: relative;
  z-index: 0;
}

.top__mv-vid-ctr {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}

.top__mv-vid-ctr.visible {
  opacity: 1;
}

.top__mv-vid-ctr video {
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-attachment: fixed;
}

.top__mv-ctr {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top__mv-ctr {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top__mv-logo {
  width: 300px;
  height: 200px;
}

@media screen and (max-width: 767px) {
  .top__mv-logo {
    width: 150px;
    height: 100px;
  }
}

.top__mv-text {
  width: 583px;
  height: 350px;
  display: block;
  -webkit-transition: visibility 0.6s ease, opacity 0.6s ease;
  transition: visibility 0.6s ease, opacity 0.6s ease;
}

@media screen and (max-width: 767px) {
  .top__mv-text {
    width: 287px;
    height: 147.67px;
  }
}

.top__mv-text.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.top__mv-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 5%;
}

@media screen and (max-width: 1024px) {
  .top__mv-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  .top__mv-wrapper {
    display: none;
  }
}

.top__mv-wrapper .top__mv-title,
.top__mv-wrapper .top__mv-nav {
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.top__mv-wrapper .top__mv-title.is-visible,
.top__mv-wrapper .top__mv-nav.is-visible {
  opacity: 1;
}

.top__mv-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

@media screen and (max-width: 1200px) {
  .top__mv-nav {
    gap: 20px;
  }
}

.top__mv-link {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.005em;
}

.top__mv-title {
  max-width: 489.49px;
  width: 100%;
  height: auto;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 32px;
  padding-inline: 32px;
}

@media screen and (max-width: 767px) {
  .header {
    top: 16px;
    padding-inline: 16px;
  }
}

.header--hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media screen and (max-width: 767px) {
  .header--hidden {
    opacity: 1;
  }
}

.header.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header__ctr {
  padding: 16px 48px;
  background-color: #fff;
  border-radius: 40px;
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .header__ctr {
    padding: 20px 24px;
  }
}

.header__ctr.header--transparent {
  background-color: transparent;
}

.header__ctr.header--white {
  background-color: #fff;
}

.header__ctr-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__logo-ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .header__logo-ctr {
    gap: 14px;
  }
}

.header__logo {
  width: 71px;
  height: 48px;
}

@media screen and (max-width: 767px) {
  .header__logo {
    width: 35px;
    height: 24px;
  }
}

.header__text {
  width: 200px;
}

@media screen and (max-width: 1200px) {
  .header__text {
    width: 150px;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 32px;
}

@media screen and (max-width: 1200px) {
  .header__nav {
    gap: 17px;
  }
}

@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__link {
  font: 700 1.4rem "Montserrat", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  overflow: hidden;
  height: 18px;
}

.header__link span {
  display: block;
  height: 18px;
}

.header__link:hover .header__link-en,
.header__link:hover .header__link-jp {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

@media screen and (max-width: 767px) {

  .header__link:hover .header__link-en,
  .header__link:hover .header__link-jp {
    -webkit-transform: none;
    transform: none;
  }
}

.header__link-en {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__link-jp {
  font-size: "Zen Old Mincho", serif;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__hamburger {
  width: 64px;
  height: 64px;
  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;
}

@media screen and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .header__hamburger {
    width: 32px;
    height: 32px;
  }
}

.header__hamburger.is-active .header__hamburger-icon span:nth-child(1) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-icon span:nth-child(3) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header__hamburger-icon {
  width: 100%;
  height: 100%;
  position: relative;
}

.header__hamburger-icon span {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 32px;
  height: 6px;
  background-color: #253675;
  border-radius: 4px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .header__hamburger-icon span {
    width: 16px;
    height: 3px;
    border-radius: 2px;
  }
}

.header__hamburger-icon span:nth-child(1) {
  top: calc(50% - 14px);
}

@media screen and (max-width: 767px) {
  .header__hamburger-icon span:nth-child(1) {
    top: calc(50% - 7px);
  }
}

.header__hamburger-icon span:nth-child(2) {
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header__hamburger-icon span:nth-child(3) {
  top: calc(50% + 8px);
}

@media screen and (max-width: 767px) {
  .header__hamburger-icon span:nth-child(3) {
    top: calc(50% + 4px);
  }
}

.header__nav-list {
  max-height: 0;
  visibility: hidden;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}

@media screen and (min-width: 1024px) {
  .header__nav-list {
    display: none;
  }
}

.header__nav-list.is-open {
  padding-block: 90px 95px;
  max-height: 999px;
  visibility: visible;
  overflow: auto;
  height: 100svh;
}

@media screen and (max-width: 767px) {
  .header__nav-list.is-open {
    padding-block: 45px 47.5px;
  }
}

.header__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #e6e6e6;
}

.header__nav-link:first-child {
  border-top: 1px solid #e6e6e6;
}

.header__nav-wrap span {
  display: block;
}

.header__nav-link-en {
  font: 700 4rem "Montserrat", sans-serif;
  margin-bottom: 4px;
}

@media screen and (max-width: 767px) {
  .header__nav-link-en {
    font-size: 2rem;
  }
}

.header__nav-link-jp {
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .header__nav-link-jp {
    font-size: 1.2rem;
  }
}

.header__nav-arrow {
  width: 16px;
  height: 16px;
}

@media screen and (max-width: 767px) {
  .header__nav-arrow {
    width: 8px;
    height: 8px;
  }
}

.header__nav-arrow svg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top__projects {
  position: relative;
  padding: 300px 0 340px;
  z-index: 4;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top__projects {
    padding: 160px 0 180px;
  }
}

.top__projects::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #34719d;
  top: 0;
  left: 0;
  opacity: 0.7;
}

.top__projects-content {
  margin: 15px 0 88px -25px;
  width: calc(100% + 50vw);
}

@media screen and (max-width: 1200px) {
  .top__projects-content {
    width: calc(100% + 10vw);
  }
}

@media screen and (max-width: 767px) {
  .top__projects-content {
    margin: 15px 0 120px -5%;
  }
}

.top__projects-slider .splide__track {
  padding: 50px 25px 0 !important;
}

@media screen and (max-width: 767px) {
  .top__projects-slider .splide__track {
    padding-right: 65px !important;
  }
}

.top__projects-slider .splide__pagination {
  position: absolute;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 50%;
  max-width: 600px;
  left: 25px;
  bottom: -95px;
}

@media screen and (max-width: 767px) {
  .top__projects-slider .splide__pagination {
    width: calc(100% - 10vw);
    bottom: -48px;
  }
}

.top__projects-slider .splide__pagination li {
  height: 2px;
  width: 33.33%;
}

.top__projects-slider .splide__pagination__page {
  width: 100%;
  opacity: 0.3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.top__projects-slider .splide__pagination__page.is-active {
  opacity: 1;
}

.top__projects-slider-item {
  max-width: 368px;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .top__projects-slider-item {
    max-width: unset;
    width: 100%;
  }
}

.top__projects-slider-item p {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3333333333em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top__projects-slider-item p {
    font-size: 2rem;
  }
}

.top__projects-img {
  position: relative;
  border-radius: 8px;
  width: 100%;
  max-height: 270px;
  aspect-ratio: 368/270;
  -webkit-box-shadow: 0 10px 40px rgba(0, 17, 87, 0.3019607843);
  box-shadow: 0 10px 40px rgba(0, 17, 87, 0.3019607843);
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top__projects-img {
    max-height: 216px;
    aspect-ratio: 295/216;
  }
}

.top__projects-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
}

.top__projects-cat {
  margin: 20px 0 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}

.top__projects-cat-name {
  padding: 8px 12px 10px;
  font: 500 1.2rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 23px;
}

@media screen and (max-width: 767px) {
  .top__projects-cat-name {
    font-size: 10px;
  }
}

.top__projects-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.top__about {
  position: relative;
  padding: 295px 0;
  background-color: #fafafa;
  z-index: 5;
}

@media screen and (max-width: 767px) {
  .top__about {
    padding: 90px 0;
  }
}

.top__about::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: #fafafa;
  border-radius: 40px 40px 0 0;
  top: -40px;
  left: 0;
}

.top__about-wrapper {
  position: relative;
}

.top__about-wrapper--ig {
  margin-top: 300px;
}

@media screen and (max-width: 767px) {
  .top__about-wrapper--ig {
    margin-top: 94px;
  }
}

.top__about-shadow {
  position: sticky;
  width: 640px;
  height: 0;
  top: 10%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  mix-blend-mode: multiply;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .top__about-shadow {
    width: 375px;
  }
}

.top__about-shadow video {
  height: 800px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top__about-shadow video {
    height: 469px;
  }
}

.top__about-heading {
  max-width: 944px;
  width: 100%;
  margin: 0 auto 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .top__about-heading {
    margin: 0 auto 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top__about-heading>p {
  width: 50%;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .top__about-heading>p {
    width: 100%;
    margin-top: 65px;
    font-size: 1.4rem;
  }
}

.top__about-heading .title {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .top__about-heading .title {
    width: 100%;
  }
}

.top__about-mainimg {
  width: 100%;
  height: 476px;
  border-radius: 20px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .top__about-mainimg {
    position: relative;
    width: 109%;
    height: auto;
    min-height: 150px;
    border-radius: 0;
    left: -4.5%;
  }
}

@media screen and (max-width: 767px) {
  .top__about-mainimg img {
    position: relative;
    width: 105%;
    left: -2%;
  }
}

.top__about-contents {
  margin-top: 48px;
  border-top: 1px solid #e6e6e6;
}

.top__about-item {
  position: relative;
  padding: 48px 0;
  max-width: 944px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (max-width: 980px) {
  .top__about-item {
    padding: 60px 4%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 49px;
  }
}

.top__about-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top__about-item .title {
  width: 36.4%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
}

@media screen and (max-width: 980px) {
  .top__about-item .title {
    width: 100%;
  }
}

.top__about-item .button__btn {
  margin-left: 15px;
}

@media screen and (max-width: 767px) {
  .top__about-item .button__btn {
    position: absolute;
    margin: 0;
    right: 24px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.top__about-item-rg {
  position: relative;
  width: calc(63.6% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 980px) {
  .top__about-item-rg {
    width: 100%;
  }
}

.top__about-item-img {
  max-width: 440px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
}

@media screen and (max-width: 980px) {
  .top__about-item-img {
    width: 100%;
    max-width: unset;
    height: auto;
  }
}

.top__about-item-img img {
  height: 100%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.top__about-ig {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .top__about-ig {
    margin-top: 60px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.top__about-ig img {
  width: 100%;
  max-height: 193px;
  aspect-ratio: 1/1;
}

.top__business {
  padding-block: 308px 291px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .top__business {
    padding-block: 160px 150px;
  }
}

.top__business::before {
  content: "";
  background: radial-gradient(circle, rgb(55, 137, 200) 0%, rgb(37, 54, 117) 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  z-index: 1;
}

.top__business-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background: url("./public/img/top/business-bg.png") no-repeat center/cover;
  opacity: 0.2;
  mix-blend-mode: normal;
  z-index: 0;
  will-change: transform;
  pointer-events: none;
}

.top__business-shadow {
  position: absolute;
  width: 640px;
  height: 800px;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) scaleX(-1);
  transform: translateY(-50%) scaleX(-1);
  mix-blend-mode: multiply;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .top__business-shadow {
    top: 20%;
  }
}

.top__business-ctr {
  position: relative;
  z-index: 4;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .top__business-ctr {
    max-width: 100%;
  }
}

.top__business-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6%;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .top__business-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.top__business-info {
  max-width: 471px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-block: 13px 10px;
}

@media screen and (max-width: 767px) {
  .top__business-info {
    max-width: 100%;
  }
}

.top__business-desc {
  font-size: 3.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: #fff;
  margin-bottom: 55px;
}

@media screen and (max-width: 980px) {
  .top__business-desc {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .top__business-desc {
    font-size: 20px;
    margin-block: 64px 48px;
    line-height: 2em;
  }
}

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

@media screen and (max-width: 767px) {
  .top__business-btn {
    margin-top: 55px;
  }
}

.top__business-list {
  max-width: 601.64px;
  width: 100%;
  display: grid;
  grid-template: repeat(4, 1fr);
  gap: 8px;
  grid-template-areas: "item1 item1 item1 item1" "item1 item1 item1 item1" "item2 item2 item3 item3" "item4 item4 item5 item5";
}

@media screen and (max-width: 767px) {
  .top__business-list {
    max-width: 100%;
  }
}

.top__business-item {
  position: relative;
  overflow: hidden;
  -webkit-filter: drop-shadow(0 10px 20px #000);
  filter: drop-shadow(0 10px 20px #000);
  border-radius: 17px;
}

.top__business-item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top__business-item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 29, 126, 0)), to(rgba(0, 29, 126, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 29, 126, 0) 0%, rgba(0, 29, 126, 0.6) 100%);
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: normal;
  border-radius: 17px;
}

.top__business-item:nth-child(1) {
  grid-area: item1;
}

.top__business-item:nth-child(2) {
  grid-area: item2;
  border-radius: 8px;
}

.top__business-item:nth-child(3) {
  grid-area: item3;
  border-radius: 8px;
}

.top__business-item:nth-child(4) {
  grid-area: item4;
  border-radius: 8px;
}

.top__business-item:nth-child(5) {
  grid-area: item5;
  border-radius: 8px;
}

.top__business-item:not(:first-child)::after {
  border-radius: 8px;
}

.top__business-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .top__business-title {
    font-size: 14px;
    right: 8px;
    bottom: 8px;
  }
}

.business {
  background-color: #fafafa;
  padding-bottom: 128px;
}

@media screen and (max-width: 767px) {
  .business {
    padding-bottom: 60px;
  }
}

.business__text {
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .business__text {
    font-size: 14px;
  }
}

.business__text.sm {
  font-size: 1.2rem;
  line-height: 1.6666666667em;
}

.business__banner {
  height: 607px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .business__banner {
    height: 400px;
  }
}

.business__banner-img {
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  position: absolute;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.business__acc {
  margin-top: 96px;
}

@media screen and (max-width: 767px) {
  .business__acc {
    margin-top: 48px;
  }
}

.business__acc-item {
  border-bottom: 1px solid #e6e6e6;
  cursor: pointer;
}

.business__acc-item:first-child {
  border-top: 1px solid #e6e6e6;
}

.business__acc-item.active .business__acc-icon {
  background-image: url("./public/img/icons/icon-minus.svg");
}

.business__acc-header {
  padding-block: 24px;
  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;
}

@media screen and (max-width: 767px) {
  .business__acc-header {
    padding-block: 12px;
  }
}

.business__acc-title {
  font: 600 2.4rem "Zen Old Mincho", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .business__acc-title {
    font-size: 16px;
    gap: 12px;
  }
}

.business__acc-title::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 41px;
  background: url("./public/img/icons/title-icon.svg") no-repeat center/cover;
}

@media screen and (max-width: 767px) {
  .business__acc-title::before {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

.business__acc-content {
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 944px;
  margin-inline: auto;
}

.business__acc-container {
  padding-block: 4px 45px;
}

.business__acc-icon {
  height: 24px;
  aspect-ratio: 1;
  background: url("./public/img/icons/icon-plus.svg") no-repeat center/contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .business__acc-icon {
    height: 20px;
  }
}

.business__acc-icon:hover {
  opacity: 0.7;
}

.business__link {
  padding-bottom: 130px;
}

@media screen and (max-width: 767px) {
  .business__link {
    padding-bottom: 60px;
  }
}

.business__link-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-column-gap: 40px;
  -moz-column-gap: 40px;
  column-gap: 40px;
  margin-top: 128px;
}

@media screen and (max-width: 980px) {
  .business__link-container {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }
}

.business__link-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 180px;
  padding-block: 24px;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

@media screen and (max-width: 980px) {
  .business__link-item {
    border-bottom: 1px solid #e6e6e6;
    padding-block: 12px;
  }
}

.business__link-item:not(:nth-child(4)) {
  border-bottom: 1px solid #e6e6e6;
}

.business__link-item:nth-child(-n+2) {
  border-top: 1px solid #e6e6e6;
}

@media screen and (max-width: 980px) {
  .business__link-item:nth-child(-n+2) {
    border-top: none;
  }
}

@media screen and (max-width: 980px) {
  .business__link-item:nth-child(1) {
    border-top: 1px solid #e6e6e6;
  }
}

.business__link-item:hover .business__link-img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.business__link-img {
  overflow: hidden;
  max-width: 234px;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .business__link-img {
    max-width: 150px;
  }
}

.business__link-img img {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.business__link-title {
  font: 500 2.4rem "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 1.3333333333em;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .business__link-title {
    font-size: 16px;
    padding-right: 5px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

.business__link-btn {
  margin-left: 34px;
}

@media screen and (max-width: 767px) {
  .business__link-btn {
    position: relative;
    left: -10px;
  }
}

.business__btn {
  margin: 100px auto 0;
}

@media screen and (max-width: 767px) {
  .business__btn {
    margin-top: 50px;
  }
}

.business-area {
  padding-block: 128px;
}

@media screen and (max-width: 767px) {
  .business-area {
    padding-block: 60px;
  }
}

.business-area__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  max-width: 944px;
  margin-inline: auto;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .business-area__wrapper {
    gap: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 24px;
  }
}

.business-area__title {
  font: 500 3.2rem "Zen Old Mincho", serif;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .business-area__title {
    font-size: 24px;
    line-height: 1.6666666667em;
  }
}

.business-area__title.mb {
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .business-area__title.mb {
    margin-bottom: 24px;
  }
}

.business-area__info {
  width: 32.73%;
}

@media screen and (max-width: 767px) {
  .business-area__info {
    width: 100%;
  }
}

.business-area__img {
  width: 63.27%;
}

@media screen and (max-width: 767px) {
  .business-area__img {
    width: 100%;
  }
}

.business-area__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 49px;
  max-width: 944px;
  margin-inline: auto;
}

@media screen and (max-width: 767px) {
  .business-area__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

.business-area__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 282px;
}

@media screen and (max-width: 767px) {
  .business-area__item {
    max-width: 100%;
  }
}

.business-area__item img {
  height: 64px;
  aspect-ratio: 1;
}

@media screen and (max-width: 767px) {
  .business-area__item img {
    height: 48px;
  }
}

.business-area__item-title {
  font: 600 2.5rem "Zen Old Mincho", serif;
  letter-spacing: 0.05em;
  line-height: 2em;
  text-align: center;
  margin-block: 8px;
}

@media screen and (max-width: 767px) {
  .business-area__item-title {
    font-size: 16px;
    line-height: 1.7142857143em;
  }
}

.business-link {
  padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .business-link {
    padding-bottom: 60px;
  }
}

.business-link__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(368px, 1fr));
  gap: 60px 48px;
  justify-items: center;
}

@media screen and (max-width: 767px) {
  .business-link__content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.business-link__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border: none !important;
  max-width: 368px;
  max-height: unset;
  padding: 0;
  width: 100%;
}

.business-link__img {
  max-width: 368px;
  width: 100%;
}

.business-link__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  margin-top: 16px;
  padding-inline: 24px 35px;
}

.business-link__link {
  margin: 0;
  white-space: nowrap;
}

.business-support__wrapper {
  max-width: 944px;
  margin-inline: auto;
  margin-top: 64px;
}

@media screen and (max-width: 767px) {
  .business-support__wrapper {
    margin-top: 32px;
  }
}

.business-support__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  padding: 24px 48px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .business-support__item {
    gap: 24px;
    padding: 16px;
  }
}

.business-support__item:not(:last-of-type) {
  margin-bottom: 8px;
}

.business-support__item-icon {
  width: 30px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .business-support__item-icon {
    width: 24px;
    height: 20px;
  }
}

.business-support__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  padding: 40px 24px;
  border-top: 1px solid #e6e6e6;
}

@media screen and (max-width: 767px) {
  .business-support__row {
    padding: 16px;
    gap: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

.business-support__row p {
  width: 66.96%;
}

@media screen and (max-width: 767px) {
  .business-support__row p {
    width: 100%;
  }
}

.business-support__row:last-of-type {
  border-bottom: 1px solid #e6e6e6;
}

.business-support__title {
  font: 500 2.4rem "Zen Old Mincho", serif;
  line-height: 2em;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .business-support__title {
    font-size: 16px;
    line-height: 2em;
    gap: 8px;
  }
}

.business-support__title::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 4px solid #badff2;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  bottom: -18px;
}

.business-support__content {
  margin-top: 24px;
  margin-bottom: 64px;
}

@media screen and (max-width: 767px) {
  .business-support__content {
    margin-top: 16px;
    margin-bottom: 32px;
  }
}

.privacy-policy {
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.privacy-policy__outer {
  padding: 128px 0 163px 120px;
}

@media screen and (max-width: 767px) {
  .privacy-policy__outer {
    padding: 64px 0 25px;
  }
}

.privacy-policy__outer-container {
  max-width: 944px !important;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .privacy-policy__outer-container {
    max-width: 100%;
  }
}

.privacy-policy__outer-text {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__outer-text {
    font-size: 13px;
  }
}

.privacy-policy__container {
  max-width: 1072px !important;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .privacy-policy__container {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .privacy-policy__container {
    max-width: 100%;
  }
}

.privacy-policy__list {
  counter-reset: case;
  list-style: none;
}

.privacy-policy__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 117px;
}

@media screen and (max-width: 767px) {
  .privacy-policy__item-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 60px;
  }
}

.privacy-policy__item {
  position: relative;
  margin-bottom: 99px;
  counter-increment: case;
}

@media screen and (max-width: 767px) {
  .privacy-policy__item {
    margin-bottom: 39px;
  }
}

.privacy-policy__item::before {
  position: absolute;
  content: "" counter(case, decimal);
  left: 0;
  top: -4px;
  width: 100px;
  text-align: left;
  padding-right: 134px;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__item::before {
    padding-right: 100px;
    top: -8px;
  }
}

.privacy-policy__list-txt {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__list-txt {
    font-size: 26px;
  }
}

.privacy-policy__item-blk {
  margin-top: 20px;
  padding: 35px 0 0 120px;
  border-top: 1px solid #e6e6e6;
}

@media screen and (max-width: 767px) {
  .privacy-policy__item-blk {
    padding: 25px 0 0 60px;
  }
}

.privacy-policy__item-blk-txt {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__item-blk-txt {
    font-size: 13px;
  }
}

.privacy-policy__list-inner {
  margin-top: 20px;
  padding-left: 17px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__list-inner {
    font-size: 13px;
  }
}

.privacy-policy__list-inner--inner2 {
  margin-top: 0;
  padding-left: 20px;
}

.privacy-policy__list-inner--inner3 {
  margin-top: 43px;
}

@media screen and (max-width: 767px) {
  .privacy-policy__list-inner--inner3 {
    margin-top: 23px;
  }
}

.privacy-policy__list-item-inner {
  margin-top: 33px;
}

.privacy-policy__list-inner-txt {
  margin-top: 65px;
}

.privacy-policy__list-inner-txt--inner-txt2 {
  margin-top: 37px;
}

.privacy-policy__link {
  text-decoration: underline;
  color: #5ab6e6;
}

.privacy-policy__notice {
  text-align: right;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .privacy-policy__notice {
    font-size: 13px;
  }
}

.contact-p {
  padding-block: 128px;
}

@media screen and (max-width: 767px) {
  .contact-p {
    padding-block: 64px;
  }
}

.contact-p.contact-p__confirm .contact-p__ctr .contact-p__steps::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #353e42), color-stop(50%, #e6e6e6));
  background: linear-gradient(to right, #353e42 0 50%, #e6e6e6 50% 100%);
}

.contact-p.contact-p__complete .contact-p__ctr .contact-p__steps::before {
  background: #353e42;
}

.contact-p__intro {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .contact-p__intro {
    font-size: 14px;
  }
}

.contact-p__ctr {
  max-width: 944px;
  margin: 0 auto;
}

.contact-p__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 26%;
  margin-block: 64px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-p__steps {
    margin-block: 32px;
  }
}

.contact-p__steps::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  background: -webkit-gradient(linear, left top, right top, color-stop(0, #353e42), color-stop(20%, #e6e6e6));
  background: linear-gradient(to right, #353e42 0 20%, #e6e6e6 20% 100%);
  top: 30%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 20px;
}

.contact-p__steps-item {
  position: relative;
}

.contact-p__steps-item.is-active .contact-p__steps-inner {
  background-color: #353e42;
}

.contact-p__steps-item.is-active .contact-p__steps-title {
  color: #353e42;
}

.contact-p__steps-inner {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e6e6e6;
  position: relative;
  z-index: 1;
  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;
}

.contact-p__steps-num {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.072em;
  color: #fafafa;
}

.contact-p__steps-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #e6e6e6;
  text-align: center;
  margin-top: 8px;
  display: block;
}

@media screen and (max-width: 767px) {
  .contact-p__steps-title {
    font-size: 14px;
  }
}

.contact-p__form-col {
  width: 100%;
  height: 97px;
  display: grid;
  grid-template-columns: 213px 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
  padding: 25px;
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (max-width: 767px) {
  .contact-p__form-col {
    grid-template-columns: 1fr;
    height: auto;
    padding: 15px;
    gap: 20px;
  }
}

.contact-p__form-col:first-child {
  border-top: 1px solid #e6e6e6;
}

.contact-p__form-col--textarea {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  height: auto;
}

.contact-p__form-col--post-code {
  height: auto;
}

.contact-p__form-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .contact-p__form-label {
    font-size: 14px;
  }
}

.contact-p__form-label.required::after {
  content: "※必須";
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #de2356;
  display: inline-block;
}

.contact-p__form-input {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input {
    font-size: 14px;
  }
}

.contact-p__form-input input[type=text],
.contact-p__form-input input[type=number],
.contact-p__form-input input[type=email],
.contact-p__form-input input[type=tel],
.contact-p__form-input select,
.contact-p__form-input textarea {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 8px;
  outline: none;
  padding: 11px 16px 7px;
  border: 1px solid #87a4b1;
}

@media screen and (max-width: 767px) {

  .contact-p__form-input input[type=text],
  .contact-p__form-input input[type=number],
  .contact-p__form-input input[type=email],
  .contact-p__form-input input[type=tel],
  .contact-p__form-input select,
  .contact-p__form-input textarea {
    height: 40px;
    padding: 8px 14px;
  }
}

.contact-p__form-input input[type=text]::-webkit-input-placeholder,
.contact-p__form-input input[type=number]::-webkit-input-placeholder,
.contact-p__form-input input[type=email]::-webkit-input-placeholder,
.contact-p__form-input input[type=tel]::-webkit-input-placeholder,
.contact-p__form-input select::-webkit-input-placeholder,
.contact-p__form-input textarea::-webkit-input-placeholder {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 2em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.contact-p__form-input input[type=text]::-moz-placeholder,
.contact-p__form-input input[type=number]::-moz-placeholder,
.contact-p__form-input input[type=email]::-moz-placeholder,
.contact-p__form-input input[type=tel]::-moz-placeholder,
.contact-p__form-input select::-moz-placeholder,
.contact-p__form-input textarea::-moz-placeholder {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 2em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.contact-p__form-input input[type=text]:-ms-input-placeholder,
.contact-p__form-input input[type=number]:-ms-input-placeholder,
.contact-p__form-input input[type=email]:-ms-input-placeholder,
.contact-p__form-input input[type=tel]:-ms-input-placeholder,
.contact-p__form-input select:-ms-input-placeholder,
.contact-p__form-input textarea:-ms-input-placeholder {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 2em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.contact-p__form-input input[type=text]::-ms-input-placeholder,
.contact-p__form-input input[type=number]::-ms-input-placeholder,
.contact-p__form-input input[type=email]::-ms-input-placeholder,
.contact-p__form-input input[type=tel]::-ms-input-placeholder,
.contact-p__form-input select::-ms-input-placeholder,
.contact-p__form-input textarea::-ms-input-placeholder {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 2em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.contact-p__form-input input[type=text]::placeholder,
.contact-p__form-input input[type=number]::placeholder,
.contact-p__form-input input[type=email]::placeholder,
.contact-p__form-input input[type=tel]::placeholder,
.contact-p__form-input select::placeholder,
.contact-p__form-input textarea::placeholder {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #e6e6e6;
  line-height: 2em;
  letter-spacing: 0.05em;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {

  .contact-p__form-input input[type=text]::-webkit-input-placeholder,
  .contact-p__form-input input[type=number]::-webkit-input-placeholder,
  .contact-p__form-input input[type=email]::-webkit-input-placeholder,
  .contact-p__form-input input[type=tel]::-webkit-input-placeholder,
  .contact-p__form-input select::-webkit-input-placeholder,
  .contact-p__form-input textarea::-webkit-input-placeholder {
    font-size: 14px;
  }

  .contact-p__form-input input[type=text]::-moz-placeholder,
  .contact-p__form-input input[type=number]::-moz-placeholder,
  .contact-p__form-input input[type=email]::-moz-placeholder,
  .contact-p__form-input input[type=tel]::-moz-placeholder,
  .contact-p__form-input select::-moz-placeholder,
  .contact-p__form-input textarea::-moz-placeholder {
    font-size: 14px;
  }

  .contact-p__form-input input[type=text]:-ms-input-placeholder,
  .contact-p__form-input input[type=number]:-ms-input-placeholder,
  .contact-p__form-input input[type=email]:-ms-input-placeholder,
  .contact-p__form-input input[type=tel]:-ms-input-placeholder,
  .contact-p__form-input select:-ms-input-placeholder,
  .contact-p__form-input textarea:-ms-input-placeholder {
    font-size: 14px;
  }

  .contact-p__form-input input[type=text]::-ms-input-placeholder,
  .contact-p__form-input input[type=number]::-ms-input-placeholder,
  .contact-p__form-input input[type=email]::-ms-input-placeholder,
  .contact-p__form-input input[type=tel]::-ms-input-placeholder,
  .contact-p__form-input select::-ms-input-placeholder,
  .contact-p__form-input textarea::-ms-input-placeholder {
    font-size: 14px;
  }

  .contact-p__form-input input[type=text]::placeholder,
  .contact-p__form-input input[type=number]::placeholder,
  .contact-p__form-input input[type=email]::placeholder,
  .contact-p__form-input input[type=tel]::placeholder,
  .contact-p__form-input select::placeholder,
  .contact-p__form-input textarea::placeholder {
    font-size: 14px;
  }
}

.contact-p__form-input label input[type=checkbox],
.contact-p__form-input label input[type=radio] {
  display: none;
}

.contact-p__form-input label span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input label span {
    font-size: 14px;
  }
}

.contact-p__form-input label input[type=checkbox]+span::before {
  content: "";
  display: block;
  width: 22.4px;
  height: 22.4px;
  background-color: #fff;
  border: 1px solid #87a4b1;
  border-radius: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input label input[type=checkbox]+span::before {
    width: 18px;
    height: 18px;
    margin-top: 7px;
  }
}

.contact-p__form-input label input[type=radio]+span::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #87a4b1;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input label input[type=radio]+span::before {
    width: 14px;
    height: 14px;
  }
}

.contact-p__form-input label input[type=checkbox]+span::after {
  content: "✔";
  position: absolute;
  left: 4px;
  top: -1px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #87a4b1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input label input[type=checkbox]+span::after {
    font-size: 16px;
    left: 4px;
    top: 2px;
  }
}

.contact-p__form-input label input[type=radio]+span::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 3.7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #87a4b1;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input label input[type=radio]+span::after {
    left: 3px;
  }
}

.contact-p__form-input label input[type=checkbox]:not(:checked)+span::after,
.contact-p__form-input label input[type=radio]:not(:checked)+span::after {
  scale: 0;
}

.contact-p__form-input label input[type=checkbox]:checked+span::after,
.contact-p__form-input label input[type=radio]:checked+span::after {
  scale: 1;
}

.contact-p__form-input--post-code {
  max-width: 215px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input--post-code {
    max-width: 100%;
    width: 100%;
  }
}

.contact-p__form-input--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input--radio {
    gap: 18px;
  }
}

.contact-p__form-input--radio .contact-p__radio-item:last-child .contact-p__radio-text::after {
  left: 3.8px;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input--radio .contact-p__radio-item:last-child .contact-p__radio-text::after {
    left: 3px;
  }
}

.contact-p__form-input--textarea textarea {
  font-family: "Noto Sans JP", sans-serif;
  height: 240px !important;
  resize: none !important;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input--textarea textarea {
    height: 200px !important;
  }
}

.contact-p__form-input--checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  margin-block: 64px 75px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .contact-p__form-input--checkbox {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-block: 32px 37.5px;
  }
}

.contact-p__checkbox-inner {
  gap: 16px !important;
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

@media screen and (max-width: 767px) {
  .contact-p__checkbox-inner {
    gap: 10px !important;
  }
}

.contact-p__external-link {
  font-size: 1.6rem !important;
  font-weight: 500;
  text-decoration: underline;
  color: #5ab6e6;
}

@media screen and (max-width: 767px) {
  .contact-p__external-link {
    font-size: 14px !important;
  }
}

.contact-p__checkbox-text {
  font-size: 1.6rem !important;
  font-weight: 500;
  display: block !important;
}

@media screen and (max-width: 767px) {
  .contact-p__checkbox-text {
    font-size: 14px !important;
  }
}

.contact-p__form-label-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .contact-p__form-label-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 15px;
  }
}

.contact-p__form-postal-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .contact-p__form-postal-text {
    font-size: 14px;
  }
}

.contact-p__form-postal-note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  line-height: 1.6666666667em;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .contact-p__form-postal-note {
    font-size: 10px;
  }
}

.contact-p__complete-title {
  font-size: 3.2rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .contact-p__complete-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
}

.contact-p__complete-parags {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .contact-p__complete-parags {
    font-size: 14px;
  }
}

.contact-p__form-zip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-right: 24px;
}

@media screen and (max-width: 767px) {
  .contact-p__form-zip {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .contact-p__form-zip {
    width: 80%;
    margin-right: 0;
  }
}

.contact-p__btn-ctr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contact-p__complete-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 74px;
}

@media screen and (max-width: 767px) {
  .contact-p__complete-btn {
    margin-top: 37px;
  }
}

.adv {
  padding-block: 64px 104px;
}

.adv__anchor-list {
  max-width: 944px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px;
}

@media screen and (max-width: 767px) {
  .adv__anchor-list {
    grid-template-columns: 1fr 1fr;
    gap: 23.5px;
  }
}

@media screen and (max-width: 475px) {
  .adv__anchor-list {
    grid-template-columns: 1fr;
  }
}

.adv__anchor-link {
  padding: 24px 16px 24px 0;
  border-top: 1px solid #87a4b1;
  border-bottom: 1px solid #87a4b1;
  position: relative;
}

.adv__anchor-link::after {
  content: "";
  width: 8px;
  height: 8px;
  background: url("./public/img/icons/arrow-down-b.svg") no-repeat center/100% 100%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.adv__anchor-link:hover::after {
  top: 55%;
}

.adv__anchor-text {
  max-width: 208px;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 2em;
  display: block;
}

@media screen and (max-width: 767px) {
  .adv__anchor-text {
    font-size: 14px;
  }
}

.adv__content {
  margin-top: 144px;
}

@media screen and (max-width: 767px) {
  .adv__content {
    margin-top: 72px;
  }
}

.adv__sec:not(:last-child) {
  margin-bottom: 128px;
}

@media screen and (max-width: 767px) {
  .adv__sec:not(:last-child) {
    margin-bottom: 64px;
  }
}

.adv__row:not(:last-child) {
  margin-bottom: 128px;
}

@media screen and (max-width: 767px) {
  .adv__row:not(:last-child) {
    margin-bottom: 64px;
  }
}

.adv__row:first-child .adv__col {
  margin: 77px auto 0;
}

.adv__row:first-child .adv__image-tbl {
  aspect-ratio: 440/510;
}

.adv__row:nth-child(2) .adv__image-tbl {
  aspect-ratio: 440/246;
}

.adv__col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 944px;
  margin: 64px auto 0;
}

@media screen and (max-width: 767px) {
  .adv__col {
    grid-template-columns: 1fr;
    margin: 32px auto 0 !important;
  }
}

.adv__col-info {
  max-width: 440px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .adv__col-info {
    max-width: 100%;
  }
}

.adv__image-info {
  aspect-ratio: 440/248;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 24px;
}

@media screen and (max-width: 767px) {
  .adv__image-info {
    margin-bottom: 12px;
  }
}

.adv__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .adv__text {
    font-size: 13px;
  }
}

.projects {
  background-color: #fafafa;
  /** details page **/
}

.projects__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 128px;
}

@media screen and (max-width: 767px) {
  .projects__container {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .projects__container {
    padding-bottom: 64px;
  }
}

.projects__heading {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3333333333em;
  margin-bottom: 24px;
  padding-top: 128px;
}

@media screen and (max-width: 767px) {
  .projects__heading {
    font-size: 16px;
    margin-bottom: 20px;
    padding-top: 64px;
  }
}

.projects__text {
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .projects__text {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.projects__tag-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.projects__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 35px;
  padding: 8px 12px;
  border-radius: 23px;
  border: 1px solid #253675;
  font: 500 1.2rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  color: #253675;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .projects__tag {
    font-size: 10px;
    padding: 4px 12px 5px;
    height: 24px;
  }
}

.projects__tag.active,
.projects__tag:hover {
  background-color: #253675;
  color: #fafafa;
}

.projects__tag--nohover:hover {
  background-color: unset;
  color: #253675;
}

.projects__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 96px 48px;
  margin: 96px 0;
}

@media screen and (max-width: 767px) {
  .projects__list {
    margin: 48px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

.projects__list-img-container {
  display: block;
  width: 100%;
  max-height: 270px;
  height: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 18, 87, 0.1);
  box-shadow: 0 10px 20px rgba(0, 18, 87, 0.1);
  overflow: hidden;
}

@media screen and (min-width: 767px) and (max-width: 1200px) {
  .projects__list-img-container {
    max-height: 160px;
  }
}

@media screen and (max-width: 767px) {
  .projects__list-img-container {
    max-height: 120px;
    margin-bottom: 10px;
  }
}

.projects__list-item {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.projects__list-item:hover {
  opacity: 0.8;
}

.projects__list-item:hover .projects__list-img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.projects__list-img {
  border-radius: 8px;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.projects__list-title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.3333333333em;
  margin-top: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .projects__list-title {
    font-size: 16px;
    margin-top: 10px;
  }
}

.projects-detail__gallery-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 49px;
  width: 100%;
}

.projects-detail__gallery-item {
  width: 100%;
  height: 479px;
  border-radius: 8px;
  background-color: #fff;
}

.projects-detail__gallery-nav-item {
  width: 12%;
  max-height: 95px;
  background-color: #fff;
  border-radius: 8px;
}

.projects-detail__gallery-img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 8px;
}

.projects-detail__gallery-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
  border: 0;
  cursor: pointer;
}

.projects-detail__gallery-arrow--prev {
  left: 52px;
}

@media screen and (max-width: 767px) {
  .projects-detail__gallery-arrow--prev {
    left: 22px;
  }
}

.projects-detail__gallery-arrow--prev::after {
  background: url("./public/img/icon/arrow-left.svg") center/contain no-repeat;
}

.projects-detail__gallery-arrow--next {
  right: -12px;
}

@media screen and (max-width: 767px) {
  .projects-detail__gallery-arrow--next {
    right: -2px;
  }
}

.projects-detail__gallery-arrow--next::after {
  background: url("./public/img/icon/arrow-right.svg") center/contain no-repeat;
}

.projects-detail__gallery-arrow svg {
  display: none;
}

.projects-detail__gallery-arrow:hover {
  -webkit-transform: translateX(-50%) scale(1.5);
  transform: translateX(-50%) scale(1.5);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.projects-detail__gallery-arrow:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.projects-detail__gallery-arrow:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}

.projects-detail__list {
  max-width: 944px;
  width: 100%;
  margin: 63px auto 128px;
}

@media screen and (max-width: 767px) {
  .projects-detail__list {
    margin: 30px auto 64px;
  }
}

.projects-detail__list--comments {
  margin: 0 auto;
}

.projects-detail__list-item {
  border-top: 1px solid #e6e6e6;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .projects-detail__list-item {
    padding: 12px;
  }
}

.projects-detail__list-item:last-child {
  border-bottom: 1px solid #e6e6e6;
}

.projects-detail__list-item-title {
  width: 25.42%;
}

.projects-detail__list-item-title,
.projects-detail__list-item-desc {
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2em;
}

@media screen and (max-width: 767px) {

  .projects-detail__list-item-title,
  .projects-detail__list-item-desc {
    font-size: 14px;
  }
}

.projects-detail__comments-item {
  width: 30%;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-item {
    width: 100%;
  }
}

.projects-detail__comments-content {
  border-top: 1px solid #e6e6e6;
  padding: 48px 0;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-content {
    padding: 24px 0;
  }
}

.projects-detail__comments-content:first-child {
  margin-top: 48px;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-content:first-child {
    margin-top: 24px;
  }
}

.projects-detail__comments-content:last-child {
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 128px;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-content:last-child {
    margin-bottom: 64px;
  }
}

.projects-detail__comments-text {
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2em;
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-text {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.projects-detail__comments-text--desc {
  display: block;
  margin: 24px 0 0;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-text--desc {
    margin: 12px 0 0;
  }
}

.projects-detail__comments-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 25px;
  }
}

.projects-detail__comments-img {
  border-radius: 10px;
  max-height: 160px;
}

@media screen and (max-width: 767px) {
  .projects-detail__comments-img {
    max-height: unset;
  }
}

.projects-detail__pagination {
  gap: 96px;
  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;
}

@media screen and (max-width: 767px) {
  .projects-detail__pagination {
    gap: 40px;
  }
}

.projects-detail__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  line-height: 2em;
  padding-bottom: 17px;
  border-bottom: 1px solid #87a4b1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .projects-detail__all {
    gap: 8px;
    padding-bottom: 14px;
    font-size: 14px;
  }
}

.projects-detail__all::before {
  content: "";
  background-image: url("./public/img/projects/icon-blk.svg");
  width: 8px;
  height: 8px;
  background-size: cover;
}

.projects-detail__all:hover {
  opacity: 0.8;
}

.recruit__container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .recruit__container {
    max-width: 100%;
  }
}

.recruit__training {
  background-color: #fafafa;
  padding: 128px 0;
}

@media screen and (max-width: 767px) {
  .recruit__training {
    padding: 52px 0 25px;
  }
}

.recruit__recruitment {
  background-color: #fafafa;
  padding: 128px 0;
}

@media screen and (max-width: 767px) {
  .recruit__recruitment {
    padding: 48px 0 68px;
  }
}

.recruit__message {
  position: relative;
}

.recruit__message::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(37, 54, 117, 0.5);
  mix-blend-mode: multiply;
}

.recruit__inner {
  padding: 120px 0 160px;
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .recruit__inner {
    padding: 60px 0 80px;
  }
}

.recruit__message-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 0;
}

.recruit__message-blk {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  padding: 0 128px;
}

@media screen and (max-width: 767px) {
  .recruit__message-blk {
    margin-top: 30px;
    padding: 0;
  }
}

.recruit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 21px;
}

.recruit__wrap-txt {
  font-size: 1.2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.6666666667em;
  letter-spacing: 0.05em;
  color: #fafafa;
}

.recruit__wrap-txt--fs20 {
  font-size: 2rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  line-height: 1.35em;
}

@media screen and (max-width: 767px) {
  .recruit__wrap-txt--fs20 {
    font-size: 18px;
  }
}

.recruit__message-txt {
  display: block;
  margin-top: 47px;
  color: #fafafa;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .recruit__message-txt {
    margin-top: 27px;
    font-size: 13px;
  }
}

.recruit__data {
  padding: 128px 0;
}

@media screen and (max-width: 767px) {
  .recruit__data {
    padding: 68px 0;
  }
}

.recruit__data-types {
  margin-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .recruit__data-types {
    margin-top: 33px;
  }
}

.recruit__data-blk {
  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;
  width: 100%;
  max-width: 309px;
  height: 222px;
  background-color: #fafafa;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .recruit__data-blk {
    max-width: initial;
  }
}

.recruit__data-blk::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 87px;
  right: 22px;
  left: auto;
  width: 127px;
  height: 108px;
  background: url("./public/img/recruit/calendar.png") no-repeat center/contain;
}

.recruit__data-blk:nth-child(2)::before {
  background: url("./public/img/recruit/magnifying.png") no-repeat center/contain;
}
.recruit__data-blk:nth-child(3) {
  margin-left: 300px;
}
@media screen and (max-width: 1080px) {
  .recruit__data-blk:nth-child(3) {
    margin-left: 0;
  }
}
.recruit__data-blk:nth-child(3)::before {
  background: url("./public/img/recruit/clock.png") no-repeat center/contain;
}

.recruit__data-blk:nth-child(4)::before {
  background: url("./public/img/recruit/group.png") no-repeat center/contain;
}

.recruit__data-blk:nth-child(5)::before {
  background: url("./public/img/recruit/data.png") no-repeat center/contain;
}

.recruit__data-txt {
  display: block;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.3333333333em;
  letter-spacing: 0.05em;
}

.recruit__num-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  gap: 10px;
}

@media screen and (max-width: 767px) {
  .recruit__num-wrap {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.recruit__num {
  font-size: 6.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.328125em;
  letter-spacing: 0.072em;
}

@media screen and (max-width: 767px) {
  .recruit__num {
    font-size: 34px;
  }
}

.recruit__placeholder {
  font-size: 2.4rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 0.5em;
  letter-spacing: 0.05em;
}

.recruit__list-wrap {
  margin-top: 65px;
  padding: 0 128px;
}

@media screen and (max-width: 767px) {
  .recruit__list-wrap {
    margin-top: 35px;
    padding: 0;
  }
}

.recruit__steps {
  position: relative;
  counter-reset: case;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 40px;
}

@media screen and (max-width: 767px) {
  .recruit__steps {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.recruit__steps::after {
  content: "";
  position: absolute;
  top: 19px;
  width: 100%;
  height: 4px;
  background-color: #253675;
}

@media screen and (max-width: 767px) {
  .recruit__steps::after {
    width: 100%;
    left: 0;
  }
}

.recruit__steps-blk {
  width: 120px;
  position: relative;
  counter-increment: case;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .recruit__steps-blk {
    width: 100%;
  }
}

.recruit__steps-blk::before {
  position: absolute;
  content: "" counter(case, decimal-leading-zero);
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #253675;
  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;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .recruit__steps-blk::before {
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .recruit__steps-blk::after {
    content: "";
    position: absolute;
    top: 19px;
    width: 100%;
    height: 4px;
    background-color: #253675;
  }
}

@media screen and (max-width: 767px) and (max-width: 767px) {
  .recruit__steps-blk::after {
    width: 100%;
    left: 0;
  }
}

.recruit__content {
  margin-top: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .recruit__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.recruit__content-type {
  font-size: 2.4rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .recruit__content-type {
    font-size: 20px;
  }
}

.recruit__img {
  margin: 16px auto;
  width: 56px;
  height: 58px;
}

.recruit__info {
  width: 100%;
  max-width: 944px;
  margin: 0 auto;
}

.recruit__info-blk {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 24px;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

@media screen and (max-width: 767px) {
  .recruit__info-blk {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 14px;
  }
}

.recruit__info-blk:first-child {
  margin-top: 66px;
}

@media screen and (max-width: 767px) {
  .recruit__info-blk:first-child {
    margin-top: 25px;
  }
}

.recruit__info-label {
  max-width: 240px;
  width: 100%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 767px) {
  .recruit__info-label {
    max-width: initial;
    margin-bottom: 10px;
  }
}

.recruit__info-txt {
  position: relative;
  padding-left: 37px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .recruit__info-txt {
    font-size: 20px;
  }
}

.recruit__info-txt::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.5rem;
  width: 16px;
  height: 16px;
  background: url("./public/img/icon/blue-circle.svg") no-repeat center/contain;
}

.recruit__info-about-txt {
  font-size: 1.6rem;
  line-height: 2em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .recruit__info-about-txt {
    font-size: 13px;
  }
}

.recruit__employees {
  background-color: #fafafa;
}

.recruit__btn-wrapper {
  position: relative;
  z-index: 1;
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .recruit__btn-wrapper {
    margin-top: 3rem;
  }
}

.about__message {
  padding-block: 128px;
  background-color: #fafafa;
}

@media screen and (max-width: 767px) {
  .about__message {
    padding-block: 64px;
  }
}

.about__content {
  margin-top: 64px;
  padding-inline: 128px;
}

@media screen and (max-width: 1200px) {
  .about__content {
    padding-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .about__content {
    margin-top: 32px;
  }
}

.about__message-head {
  gap: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 64px;
}

@media screen and (max-width: 900px) {
  .about__message-head {
    gap: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 20px;
  }
}

.about__message-title {
  font-size: 3.2rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.75em;
}

@media screen and (max-width: 767px) {
  .about__message-title {
    font-size: 24px;
  }
}

.about__message-person {
  min-width: 440px;
}

@media screen and (max-width: 900px) {
  .about__message-person {
    min-width: 100%;
  }
}

.about__message-image {
  width: 100%;
  height: 243px;
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (max-width: 900px) {
  .about__message-image {
    margin: 0 auto;
    max-width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .about__message-image {
    height: 200px;
  }
}

.about__message-info {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 10px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 900px) {
  .about__message-info {
    max-width: 500px;
    margin: 20px auto;
  }
}

.about__message-position {
  letter-spacing: 0.05em;
  font: 500 1.2rem "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 767px) {
  .about__message-position {
    font-size: 10px;
  }
}

.about__message-name {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .about__message-name {
    font-size: 18px;
  }
}

.about__message-text {
  letter-spacing: 0.05em;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .about__message-text {
    font-size: 14px;
  }
}

.about__message-text .highlight {
  font-size: 2.4rem;
  color: #5ab6e6;
  white-space: nowrap;
  font-family: "Zen Old Mincho", serif;
  line-height: 1.3333333333em;
}

@media screen and (max-width: 767px) {
  .about__message-text .highlight {
    font-size: 18px;
  }
}

.about__company {
  padding-block: 128px;
}

@media screen and (max-width: 767px) {
  .about__company {
    padding-block: 64px;
  }
}

.about__company-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 24px 21px;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e6e6e6;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .about__company-item {
    gap: 10px;
    padding: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about__company-item:first-child {
  border-top: 1px solid #e6e6e6;
}

.about__company-item--value {
  padding-block: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .about__company-item--value {
    padding-block: 20px;
  }
}

.about__company-label {
  min-width: 344px;
}

@media screen and (max-width: 767px) {
  .about__company-label {
    min-width: 100%;
  }
}

.about__company-label--value {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.4rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
}

@media screen and (max-width: 767px) {
  .about__company-label--value {
    gap: 8px;
    font-size: 18px;
  }
}

.about__company-label--value::before {
  content: "";
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  border: 4px solid rgba(90, 182, 230, 0.4);
}

@media screen and (max-width: 767px) {
  .about__company-label--value::before {
    height: 12px;
    min-width: 12px;
  }
}

.about__company-text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .about__company-text {
    font-size: 14px;
  }
}

.about__company-text a {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #5ab6e6;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font: 700 1.2rem "Montserrat", sans-serif;
}

.about__company-text a::after {
  content: "";
  width: 12px;
  height: 11px;
  background: url("./public/img/icons/external-lik.svg") no-repeat center/contain;
}

.about__mission {
  overflow: hidden;
  position: relative;
  padding-block: 128px 190px;
}

@media screen and (max-width: 767px) {
  .about__mission {
    padding-block: 64px 80px;
  }
}

.about__mission::before {
  top: 0;
  left: 0;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.5;
  position: absolute;
  background-color: #253675;
}

.about__mission-bg {
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 110%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  will-change: transform;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.about__mission-title {
  font-size: 3.2rem;
  line-height: 1.75em;
  margin-bottom: 64px;
  color: #fafafa;
  letter-spacing: 0.05em;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .about__mission-title {
    font-size: 26px;
    margin-bottom: 32px;
  }
}

.about__mission-text {
  color: #fafafa;
  font: 500 1.6rem "Noto Sans JP", sans-serif;
  line-height: 2em;
}

@media screen and (max-width: 767px) {
  .about__mission-text {
    font-size: 14px;
  }
}

.about__value {
  padding-top: 128px;
  background-color: #fafafa;
}

@media screen and (max-width: 767px) {
  .about__value {
    padding-top: 64px;
  }
}

.about__manufacture {
  padding-block: 128px;
  background-color: #fafafa;
}

@media screen and (max-width: 767px) {
  .about__manufacture {
    padding-block: 64px;
  }
}

.about__manufacture-item {
  padding: 48px;
  border-radius: 20px;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .about__manufacture-item {
    padding: 24px;
  }
}

.overflow {
  overflow: hidden;
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

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

.text-black {
  color: #353e42;
}

.top__wrapper {
  position: relative;
  z-index: 2;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .top__wrapper {
    max-width: 100%;
  }
}

.no-scroll {
  overflow-y: hidden;
}

.pc-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .pc-flex {
    display: none;
  }
}

.sp-flex {
  display: none;
}

@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.parallax-img {
  will-change: transform;
}

.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
  }
}

.anchor {
  display: block;
  position: relative;
  top: -150px;
  visibility: hidden;
}

@media screen and (max-width: 767px) {
  .anchor {
    top: -100px;
  }
}

.zindex {
  position: relative;
  z-index: 1;
}

.contact-p__confirm .contact-p__form-col {
  height: auto;
}

.contact-p__confirm .contact-p__form .contact-p__form-input.contact-p__form-input--checkbox {
  display: none;
}

.contact-p__confirm .contact-p__form .contact-p__form-col.contact-p__form-col--textarea .contact-p__form-input.contact-p__form-input--textarea {
  word-break: break-all;
}

.contact-p__confirm .contact-p__form .contact-p__form-col.contact-p__form-col--post-code .contact-p__form-label-wrapper .contact-p__form-zip {
  width: 100%;
  margin-right: 0;
  gap: 0;
}

.contact-p__confirm .contact-p__form .contact-p__form-col.contact-p__form-col--post-code .contact-p__form-label-wrapper .contact-p__form-postal-note {
  display: none;
}

.contact-p__confirm .contact-p__form-input--post-code {
  margin-inline: 0;
}

.contact-p__confirm .contact-p__btn-ctr {
  margin-top: 85px;
}

.contact-p .contact-p__form-text input[type=checkbox]+span::before {
  content: "";
  display: block;
  width: 22.4px;
  height: 22.4px;
  background-color: #fff;
  border: 1px solid #87a4b1;
  border-radius: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .contact-p .contact-p__form-text input[type=checkbox]+span::before {
    width: 18px;
    height: 18px;
    margin-top: 7px;
  }
}

.contact-p input[type=checkbox]+span::after {
  content: "✔";
  position: absolute;
  left: 4px;
  top: -1px;
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #87a4b1;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

@media screen and (max-width: 767px) {
  .contact-p input[type=checkbox]+span::after {
    font-size: 16px;
    left: 4px;
    top: 2px;
  }
}

.contact-p .contact-p__form-input.contact-p__form-input--checkbox .wpcf7-list-item-label {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-p .wpcf7-list-item {
  margin: 0 !important;
}

.contact-p .wpcf7-not-valid-tip {
  font-size: 10px !important;
  line-height: 2em !important;
}

.contact-p .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  gap: 24px;
}

.contact-p button,
.contact-p__confirm button {
  color: #fff;
  border: 0;
}

.wp-pagenavi {
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  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;
}

@media screen and (max-width: 767px) {
  .wp-pagenavi {
    gap: 5px;
  }
}

.current,
.page {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #e6e6e6;
  font: 700 1.2rem "Montserrat", sans-serif;
  line-height: 1em;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  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;
}

@media screen and (max-width: 767px) {

  .current,
  .page {
    width: 30px;
    height: 30px;
    font-size: 10px;
    line-height: 1.2rem;
  }
}

.current:hover,
.page:hover {
  background-color: #253675;
  border-color: #253675;
  color: #fafafa;
}

.current {
  background-color: #253675;
  color: #fafafa;
}

.previouspostslink,
.nextpostslink {
  position: relative;
  width: 24px;
  height: 24px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #253675;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.previouspostslink::before,
.nextpostslink::before {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #253675;
  opacity: 0.4;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.previouspostslink::after,
.nextpostslink::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: url("./public/img/icon/arrow-right.svg") center/contain no-repeat;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.previouspostslink:hover,
.nextpostslink:hover {
  -webkit-transform: scale(1.5);
  transform: scale(1.5);
}

.previouspostslink:hover::before,
.nextpostslink:hover::before {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.previouspostslink:hover::after,
.nextpostslink:hover::after {
  -webkit-transform: translate(-50%, -50%) scale(0.8);
  transform: translate(-50%, -50%) scale(0.8);
}

.previouspostslink {
  margin-right: 42px;
}

@media screen and (max-width: 767px) {
  .previouspostslink {
    margin-right: 20px;
  }
}

.previouspostslink::after {
  background: url("./public/img/icon/arrow-left.svg") center/contain no-repeat;
}

.nextpostslink {
  margin-left: 42px;
}

@media screen and (max-width: 767px) {
  .nextpostslink {
    margin-left: 20px;
  }
}

.ellipsis {
  font: 700 1.2rem "Montserrat", sans-serif;
}

@media screen and (max-width: 767px) {
  .ellipsis {
    font-size: 10px;
  }
}