@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

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

p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

#root, #__next {
  isolation: isolate;
}

:root {
  --base: #222222;
  --black: #000000;
  --red: #E60020;
  --white: #FFFFFF;
  --light-gry: #F5F5F5;
  --dark-blue-gradient: linear-gradient(119deg, #165CA3 8%, #11477D 97%);
  --accent-gradient: linear-gradient(90deg, var(--aqua-blue-50, #06AEE5) 0%, var(--aqua-blue-40, #38BEEA) 100%);
}

/*--------------------------------------------------------------------------
    Global Variables
---------------------------------------------------------------------------*/
:root {
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "Inter", sans-serif;
  --fs-section-title: clamp(1.625rem, 1.204rem + 1.73vw, 2.5rem);
  --fs-section-title-sub: clamp(1.25rem, 1.009rem + 0.99vw, 1.75rem);
  --fs-card-title: clamp(1.125rem, 0.944rem + 0.74vw, 1.5rem);
  --fs-card-name: clamp(15px, 25vw, 20px);
  --fs-body-lg-emphasis: clamp(16px, 2vw, 18px);
  --fs-body: clamp(0.813rem, 0.752rem + 0.25vw, 0.938rem);
  --fs-body-sm: 13px;
  --fs-body-lg: 16px;
  --fs-pagenav: clamp(0.75rem, 0.569rem + 0.74vw, 1.125rem);
  --fs-section-title-en: clamp(1.75rem, 1.329rem + 1.73vw, 2.625rem);
  --fs-section-title-ja: clamp(0.813rem, 0.722rem + 0.37vw, 1rem);
  --fs-card-title: clamp(1.125rem, 0.764rem + 1.48vw, 1.875rem);
  --fs-card-sub-title: clamp(0.938rem, 0.787rem + 0.62vw, 1.25rem);
}

:root {
  --border-radius-sm: 5px;
  --border-radius-md: 10px;
  --border-radius-infinity: 9999px;
}

/*＊-------------------------------------------------------
サイト全体の基本設定
------------------------------------------------------- **/
html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100dvh;
  font-family: var(--font-family-jp, "Noto Sans JP");
  color: var(--text-base, #222);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  position: relative;
  font-size: var(--fs-body, 1.4rem);
  background: #F6F6F6;
}
body.is-fixed {
  overflow: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: initial;
}

p {
  text-wrap: initial;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: initial;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: currentColor;
  transition: opacity 0.3s;
}
button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 0.3s;
  color: var(--text-base, #222);
}
input[type=text] {
  padding: 0;
  outline: none;
  border: none;
  border-radius: 0;
  background: none;
}

textarea {
  padding: 0;
  outline: none;
  border: 0;
  background: transparent;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  background: rgb(255, 255, 255);
  box-shadow: 0 0px 4px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
}
@media (min-width: 768px) {
  .l-header {
    position: static;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 53px;
  padding: 10px 15px;
}
@media (min-width: 768px) {
  .l-header__inner {
    height: 68px;
    padding: 10px 30px;
  }
}
.l-header__logo {
  font-size: 16px;
  width: 157px;
  transition: opacity 0.3s ease-out;
}
@media (min-width: 768px) {
  .l-header__logo {
    width: 259px;
  }
}
.l-header__nav {
  display: flex;
}
.l-header .c-nav {
  display: flex;
  gap: 16px;
}
.l-header .c-nav__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 4px;
  line-height: 1;
  font-weight: 900;
  color: var(--white, #fff);
  background: var(--red, #E60020);
  font-size: clamp(0.813rem, 0.722rem + 0.37vw, 1rem);
  transition: 0.3s ease-out;
}
@media (min-width: 768px) {
  .l-header .c-nav__link {
    padding: 12px 20px;
    border-radius: 6px;
  }
  .l-header .c-nav__link:hover {
    background: #111;
  }
}
.l-footer {
  position: sticky;
  top: 100%;
  padding: 40px 15px;
  background-color: var(--white, #fff);
}
@media (min-width: 768px) {
  .l-footer {
    padding: 80px 20px;
  }
}
.l-footer__inner {
  width: min(92vw, 1240px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-footer__inner {
    width: min(94vw, 1240px);
  }
}
.l-footer__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .l-footer__info {
    flex-direction: row;
    gap: 60px;
  }
}
.l-footer__info-item {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
@media (min-width: 768px) {
  .l-footer__info-item {
    row-gap: 20px;
  }
}
.l-footer__logo {
  width: 180px;
}
@media (min-width: 768px) {
  .l-footer__logo {
    width: 240px;
  }
}
.l-footer__info-name {
  color: var(--base, #222);
  font-size: clamp(0.875rem, 0.8463rem + 0.1176vw, 0.9375rem);
  font-style: normal;
  font-weight: 500;
  line-height: 140%;
}
.l-footer__info-text {
  font-size: clamp(0.75rem, 0.6926rem + 0.2353vw, 0.875rem);
  font-weight: 400;
  line-height: 150%;
  font-style: normal;
}
@media (min-width: 768px) {
  .l-footer__info-text {
    line-height: 170%;
  }
}
.l-footer__info-text span {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.8463rem + 0.1176vw, 0.9375rem);
}
.l-footer__copyright {
  color: #666;
  font-size: clamp(0.6875rem, 0.6301rem + 0.2353vw, 0.8125rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.l-main {
  margin-top: 53px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-main {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------------------
.l-sec
---------------------------------------------------------------------------*/
.l-sec__inner {
  width: min(92vw, 1240px);
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-sec__inner {
    width: min(94vw, 1240px);
  }
}

/* --------------------------------------------------------------------------
Component: PC Nav 
-------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
Component: Anchor Navigation
-------------------------------------------------------------------------- */
.c-anchors__list {
  padding-block: 16px;
  width: min(92svw, 1240px);
  margin-inline: auto;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 4.8px;
}
@media (min-width: 768px) {
  .c-anchors__list {
    width: min(96svw, 1240px);
    padding-block: 40px;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}
.c-anchors__list li {
  container-type: inline-size;
}
.c-anchors__list li:nth-child(even) .c-anchors__link {
  background: #595959;
}
.c-anchors__list li:nth-child(even) .c-anchors__link:hover {
  background: #777;
}
.c-anchors__link {
  width: 100%;
  border-radius: var(--border-radius-sm, 6px);
  background: #343434;
  gap: 5px;
  padding: 4cqw 2.1cqw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white, #fff);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: clamp(0.688rem, 0.477rem + 0.86vw, 1.125rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  transition: 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-anchors__link {
    gap: 10px;
    padding: 7.3cqw 2.1cqw;
    border-radius: var(--border-radius-md, 10px);
  }
  .c-anchors__link:hover {
    background: #777;
  }
}
.c-anchors__link span img {
  width: 11.6cqw;
}
@keyframes slideDown {
  from {
    transform: translateY(-5px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.c-loading {
  position: fixed;
  inset: 0;
  background: #F6F6F6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-loading.is-load {
  opacity: 0;
  visibility: hidden;
}
.c-loading {
  /* HTML: <div class="loader"></div> */
}
.c-loading .loader {
  width: 45px;
  aspect-ratio: 0.75;
  --c: no-repeat linear-gradient(#c5c5c5 0 0);
  background: var(--c) 0% 100%, var(--c) 50% 100%, var(--c) 100% 100%;
  background-size: 20% 65%;
  animation: l5 1s infinite linear;
}
@keyframes l5 {
  20% {
    background-position: 0% 50%, 50% 100%, 100% 100%;
  }
  40% {
    background-position: 0% 0%, 50% 50%, 100% 100%;
  }
  60% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  80% {
    background-position: 0% 100%, 50% 100%, 100% 0%;
  }
}

.c-nav {
  display: flex;
  gap: 16px;
}
.c-nav__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border-radius: 4px;
  line-height: 1;
  font-weight: 900;
  color: var(--white, #fff);
  background: var(--red, #E60020);
  font-size: clamp(0.813rem, 0.722rem + 0.37vw, 1rem);
  transition: 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-nav__link {
    padding: 12px 20px;
    border-radius: 6px;
  }
  .c-nav__link:hover {
    background: #111;
  }
}
.c-nav__icon {
  display: inline-block;
  width: 16px;
}
@media (min-width: 768px) {
  .c-nav__icon {
    width: 20px;
  }
}

.c-cta-btn {
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: fit-content;
  padding: 10px 15px 10px 10px;
  border-radius: 4px;
  color: var(--white, #fff);
  background: var(--red, #E60020);
  transition: 0.3s ease-out;
}
@media (min-width: 768px) {
  .c-cta-btn {
    padding: 22px 30px;
    border-radius: 6px;
  }
  .c-cta-btn:hover {
    background: #111;
  }
}
.c-cta-btn__block {
  display: flex;
  justify-content: center;
}
.c-cta-btn__icon {
  display: inline-block;
  width: 16px;
}
@media (min-width: 768px) {
  .c-cta-btn__icon {
    width: 20px;
  }
}
.c-cta-btn__text {
  font-size: clamp(1.025rem, 1.005rem + 0.49vw, 1.375rem);
  font-weight: 900;
  line-height: 1;
}
.c-cta-btn--whiteLine {
  border: 1px solid var(--white, #FFF);
  box-shadow: 6px 6px 0 0 rgba(0, 0, 0, 0.25);
}
@media (min-width: 768px) {
  .c-cta-btn--whiteLine {
    border: 2px solid var(--white, #FFF);
  }
}

.c-section-title {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .c-section-title {
    margin-bottom: 34px;
  }
}
.c-section-title__en {
  display: block;
  position: relative;
  color: var(--black, #000);
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--fs-section-title-en);
  font-family: var(--font-family-en);
  margin-bottom: 0.3em;
}
.c-section-title__en::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 60px;
  height: 2px;
  letter-spacing: 0.02em;
  background: var(--red, #E60020);
}
.c-section-title__ja {
  color: var(--text-base, #222);
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: var(--fs-section-title-ja);
  font-style: normal;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.03em;
}
.c-section-title--white .c-section-title__text {
  color: var(--gray-0, #FFF);
}
.c-section-title--center {
  text-align: center;
}
.c-section-title--center .c-section-title__en::after {
  left: 50%;
  transform: translateX(-50%);
}
.c-section-title--sm .c-section-title__text {
  font-size: var(--fs-section-title-sub, 24px);
}

.c-back-to-top {
  position: fixed;
  bottom: 5%;
  right: 12px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s ease;
  width: 44px;
  height: 44px;
  opacity: 0.9;
  transform: scale(1);
}
@media (min-width: 768px) {
  .c-back-to-top {
    bottom: 5%;
    right: 4%;
    width: 52px;
    height: 52px;
  }
  .c-back-to-top:hover {
    transform: scale(1.1);
  }
}
.c-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
MV
-------------------------------------------------------------------------- */
.p-top-mv__head {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 15px 15px;
}
@media (min-width: 768px) {
  .p-top-mv__head {
    padding: 32px 20px;
  }
}
.p-top-mv__head-text {
  font-family: var(--font-family-en, "Inter");
  font-weight: 900;
  text-align: center;
  font-size: clamp(2.25rem, 1.046rem + 4.94vw, 4.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--black, #000);
  letter-spacing: 0.05em;
}
.p-top-mv__head-text span {
  display: block;
  font-size: clamp(1rem, 0.639rem + 1.48vw, 1.75rem);
  letter-spacing: 0;
}
.p-top-mv__main {
  background: url(../img/top/mv-sp.webp) no-repeat center center;
  background-size: cover;
  aspect-ratio: 390/414;
  height: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
  padding-inline: 5vw;
}
@media (min-width: 768px) {
  .p-top-mv__main {
    background: url(../img/top/mv-pc.webp) no-repeat center center;
    background-size: cover;
    aspect-ratio: 1640/869;
  }
}
.p-top-mv__main-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-top-mv__main-text {
  color: #FFF;
  text-align: left;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: clamp(2.25rem, 1.046rem + 4.94vw, 4.75rem);
  font-weight: 900;
  line-height: 130%;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .p-top-mv__main-text {
    margin-bottom: 26px;
  }
}
.p-top-mv__main-text span {
  color: var(--red, #E60020);
}
.p-top-mv__sub-text {
  color: #FFF;
  font-family: var(--font-family-jp, "Noto Sans JP");
  font-size: clamp(0.813rem, 0.481rem + 1.36vw, 1.5rem);
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-top-mv__sub-text {
    font-size: 1.6666666667vw;
    margin-bottom: 60px;
  }
}
.p-top-mv__footer {
  width: 100%;
  background: var(--white, #FFF);
  padding: 10px;
}
@media (min-width: 768px) {
  .p-top-mv__footer {
    padding: 20px;
  }
}
.p-top-mv__footer-inner {
  width: 100%;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
}
@media (min-width: 768px) {
  .p-top-mv__footer-inner {
    gap: 10px;
  }
}
.p-top-mv__footer-text {
  font-size: clamp(0.563rem, 0.442rem + 0.49vw, 0.813rem);
}
.p-top-mv__footer-logo {
  width: 44px;
}
@media (min-width: 768px) {
  .p-top-mv__footer-logo {
    width: 74px;
  }
}

/* --------------------------------------------------------------------------
  Message
-------------------------------------------------------------------------- */
.p-top-message {
  padding-block: 50px;
}
@media (min-width: 768px) {
  .p-top-message {
    padding-block: 60px 80px;
  }
}
.p-top-message__top {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-top-message__top {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
.p-top-message__img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  order: 2;
}
@media (min-width: 768px) {
  .p-top-message__img {
    margin-top: 0;
    margin-inline: 0;
    width: 32.2%;
    order: 1;
  }
}
.p-top-message__img img {
  border-radius: var(--border-radius-sm);
}
@media (min-width: 768px) {
  .p-top-message__img img {
    border-radius: var(--border-radius-md);
  }
}
.p-top-message__cont {
  display: flex;
  width: 100%;
  flex-direction: column;
  order: 1;
}
@media (min-width: 768px) {
  .p-top-message__cont {
    width: 62%;
    order: 2;
  }
}
.p-top-message__title {
  letter-spacing: 0;
  color: var(--red);
  font-weight: 900;
  font-size: clamp(1.375rem, 0.713rem + 2.72vw, 2.75rem);
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .p-top-message__title {
    font-size: var(--fs-section-title);
  }
}
.p-top-message__subtitle {
  color: var(--black);
  font-weight: 700;
  font-size: clamp(1rem, 0.88rem + 0.49vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 0.5em;
}
.p-top-message__text {
  color: var(--base, #222);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 170%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .p-top-message__text {
    margin-bottom: 30px;
    line-height: 200%;
  }
}
.p-top-message__recruiter {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  padding: 40px 15px 20px 15px;
  flex-direction: column;
  gap: 20px;
  border-radius: 10px;
  border: 2px solid var(--red, #E60020);
  background: #FFF;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.08);
  position: relative;
}
@media (min-width: 768px) {
  .p-top-message__recruiter {
    padding: 40px 30px 30px 30px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.p-top-message__recruiter-title {
  position: absolute;
  top: -1.4em;
  left: 50%;
  transform: translateX(-50%);
}
.p-top-message__recruiter-title span {
  display: inline-flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--red, #E60020);
  font-size: clamp(1rem, 0.819rem + 0.74vw, 1.375rem);
  font-weight: 700;
  line-height: 1;
  border-radius: 40px;
  border: 2px solid var(--red, #E60020);
  background: #FFF;
}
@media (min-width: 768px) {
  .p-top-message__recruiter-title span {
    padding: 10px 40px;
  }
}
.p-top-message__recruiter-img {
  width: 100%;
  max-width: 210px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .p-top-message__recruiter-img {
    margin-inline: 0;
    width: 20%;
  }
}
.p-top-message__recruiter-txt {
  width: 100%;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-top-message__recruiter-txt {
    width: 76%;
    line-height: 2;
  }
}

/* --------------------------------------------------------------------------
 Entry
-------------------------------------------------------------------------- */
.p-top-entry {
  width: 100%;
  background-color: var(--red);
  padding-block: 20px;
  color: var(--white);
}
@media (min-width: 768px) {
  .p-top-entry {
    padding-block: 40px;
  }
}
.p-top-entry .l-sec__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .p-top-entry .l-sec__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.p-top-entry__img {
  position: relative;
}
.p-top-entry__img > img, .p-top-entry__img > picture img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
}
@media (min-width: 768px) {
  .p-top-entry__img > img, .p-top-entry__img > picture img {
    border-radius: var(--border-radius-md);
  }
}
.p-top-entry__img span {
  width: 46%;
  max-width: 253px;
  display: inline-block;
  position: absolute;
  left: -1em;
  top: -2em;
  z-index: 10;
}
@media (min-width: 768px) {
  .p-top-entry__img span {
    left: -2em;
  }
}
.p-top-entry__cont {
  width: 100%;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .p-top-entry__cont {
    margin-bottom: 0;
  }
}
.p-top-entry .c-section-title .c-section-title__en {
  color: var(--white, #FFF);
}
.p-top-entry .c-section-title .c-section-title__en::after {
  display: none;
}
.p-top-entry p {
  margin-bottom: 1.4em;
}
@media (min-width: 768px) {
  .p-top-entry p {
    margin-bottom: 2em;
  }
}
.p-top-entry__btn {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-top-entry__btn {
    justify-content: flex-start;
  }
}

/* --------------------------------------------------------------------------
 Reasons
-------------------------------------------------------------------------- */
.p-top-reasons {
  background: url(../img/top/bg-reason.png) no-repeat top center/cover;
  background-blend-mode: multiply;
  padding-block: 50px;
}
@media (min-width: 768px) {
  .p-top-reasons {
    padding-block: 60px 80px;
  }
}
@supports (background-image: url("image.webp")) {
  .p-top-reasons {
    background: url(../img/top/bg-reason.webp) no-repeat top center/cover;
    background-blend-mode: multiply;
  }
}
.p-top-reasons__title-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .p-top-reasons__title-block {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 90px;
  }
}
@media (min-width: 768px) {
  .p-top-reasons .c-section-title {
    width: 25%;
  }
}
.p-top-reasons__title {
  letter-spacing: 0;
  color: var(--red);
  font-weight: 900;
  font-size: clamp(1.375rem, 0.713rem + 2.72vw, 2.75rem);
}
@media (min-width: 768px) {
  .p-top-reasons__title {
    width: 72.6%;
    font-size: var(--fs-section-title);
  }
}
.p-top-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .p-top-reasons__list {
    gap: 80px;
  }
}
.p-top-reasons__item {
  container-type: inline-size;
  position: relative;
  padding: 40px 15px 20px;
  background-color: var(--white);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .p-top-reasons__item {
    padding: 60px 40px 40px;
  }
}
.p-top-reasons__item::before {
  content: "";
  display: block;
  width: 13.8cqw;
  height: auto;
  aspect-ratio: 1/1;
  max-width: 54px;
  background-color: var(--red);
  border-radius: 50%;
  position: absolute;
  top: -5.1cqw;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-reasons__item::before {
    width: 7.2cqw;
    max-width: 92px;
    top: -3.1cqw;
  }
}
.p-top-reasons__item:nth-child(1)::before {
  background: url(../img/top/reason-num01.svg) no-repeat center center/cover;
}
.p-top-reasons__item:nth-child(2)::before {
  background: url(../img/top/reason-num02.svg) no-repeat center center/cover;
}
.p-top-reasons__item:nth-child(3)::before {
  background: url(../img/top/reason-num03.svg) no-repeat center center/cover;
}
.p-top-reasons__item-topcont {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-top-reasons__item-topcont {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
  }
}
.p-top-reasons__item-topcont-img {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-reasons__item-topcont-img {
    width: 42%;
  }
}
.p-top-reasons__item-topcont-img img {
  border-radius: var(--border-radius-sm);
}
@media (min-width: 768px) {
  .p-top-reasons__item-topcont-img img {
    border-radius: var(--border-radius-md);
  }
}
.p-top-reasons__item-topcont-txt {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-reasons__item-topcont-txt {
    width: 54.3%;
  }
}
.p-top-reasons__item-topcont-txt h4 {
  font-size: clamp(1.125rem, 0.764rem + 1.48vw, 1.875rem);
  font-style: normal;
  font-weight: 900;
  line-height: 130%; /* 39px */
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .p-top-reasons__item-topcont-txt h4 {
    margin-bottom: 20px;
  }
}
.p-top-reasons__item-topcont-txt h5 {
  color: #363636;
  font-weight: 700;
  line-height: 160%;
  font-size: clamp(0.9375rem, 0.7941rem + 0.5882vw, 1.25rem);
  margin-bottom: 10px;
}
.p-top-reasons__item-topcont-txt p {
  line-height: 1.5;
  font-size: clamp(0.813rem, 0.752rem + 0.25vw, 0.938rem);
}
@media (min-width: 768px) {
  .p-top-reasons__item-topcont-txt p {
    line-height: 2;
  }
}
.p-top-reasons__item-detail {
  display: grid;
  grid-template-columns: 1fr;
  flex-wrap: wrap;
  gap: 15px;
}
@media (min-width: 768px) {
  .p-top-reasons__item-detail {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.1%;
  }
}
.p-top-reasons__item-detail > li {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background-color: var(--light-gry);
  padding: 10px 12px 12px 15px;
  gap: 5px;
  border-radius: var(--border-radius-sm);
}
@media (min-width: 768px) {
  .p-top-reasons__item-detail > li {
    padding: 15px 20px;
    gap: 13px;
    border-radius: var(--border-radius-md);
  }
}
.p-top-reasons__item-detail.reason3 {
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (min-width: 768px) {
  .p-top-reasons__item-detail.reason3 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5%;
  }
}
.p-top-reasons__item-detail.reason3 li {
  padding: 10px 10px 10px 15px;
}
@media (min-width: 768px) {
  .p-top-reasons__item-detail.reason3 li {
    padding: 15px 15px;
  }
}
.p-top-reasons__item-icon {
  width: 90%;
  max-width: 180px;
  margin-inline: auto;
}
.p-top-reasons__item-txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-top-reasons__item-txt h6 {
  text-align: center;
  font-weight: 700;
  font-size: clamp(0.9375rem, 0.8801rem + 0.2353vw, 1.0625rem);
}
.p-top-reasons__item-txt p {
  line-height: 1.6;
  font-size: clamp(0.8125rem, 0.7551rem + 0.2353vw, 0.9375rem);
}

/* --------------------------------------------------------------------------
 recruit image
-------------------------------------------------------------------------- */
.p-recruitimg {
  display: flex;
  aspect-ratio: 390/280;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: url(../img/top/bg-recruit-sp.jpg) no-repeat center/cover;
}
@media (min-width: 768px) {
  .p-recruitimg {
    aspect-ratio: 41/15;
    background: url(../img/top/bg-recruit-pc.jpg) no-repeat center/cover;
  }
}
@supports (background-image: url("image.webp")) {
  .p-recruitimg {
    background: url(../img/top/bg-recruit-sp.webp) no-repeat center/cover;
  }
  @media (min-width: 768px) {
    .p-recruitimg {
      background: url(../img/top/bg-recruit-pc.webp) no-repeat center/cover;
    }
  }
}
.p-recruitimg__head-text {
  font-family: var(--font-family-en, "Inter");
  font-weight: 900;
  text-align: center;
  font-size: clamp(2.25rem, 1.046rem + 4.94vw, 4.75rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white, #fff);
  letter-spacing: 0.05em;
}
.p-recruitimg__head-text span {
  display: block;
  font-size: clamp(1rem, 0.639rem + 1.48vw, 1.75rem);
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------
 Voice
-------------------------------------------------------------------------- */
.p-top-voice {
  padding-block: 50px 60px;
  background-color: var(--white);
}
@media (min-width: 768px) {
  .p-top-voice {
    padding-block: 100px;
  }
}
.p-top-voice .c-section-title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-top-voice .c-section-title {
    margin-bottom: 60px;
  }
}
.p-top-voice__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  .p-top-voice__list {
    gap: 80px;
  }
}
.p-top-voice__item {
  container-type: inline-size;
  position: relative;
  cursor: pointer;
  padding: 40px 15px 20px;
  background-color: var(--white);
  border: solid 2px var(--red, #E60020);
  border-radius: 10px;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .p-top-voice__item {
    cursor: default;
    padding: 60px 40px 40px;
  }
}
.p-top-voice__item::before {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: clamp(1.375rem, 0.9735rem + 1.6471vw, 2.25rem);
  font-weight: 700;
  font-family: var(--font-family-en);
  width: 12.8cqw;
  height: auto;
  aspect-ratio: 1/1;
  max-width: 50px;
  background-color: var(--white);
  color: var(--red);
  border: solid 2px var(--red);
  border-radius: var(--border-radius-infinity);
  position: absolute;
  top: -6.4cqw;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-voice__item::before {
    width: 6.4cqw;
    max-width: 67px;
    top: -3.2cqw;
  }
}
.p-top-voice__item:nth-child(1)::before {
  content: "01";
}
.p-top-voice__item:nth-child(2)::before {
  content: "02";
}
.p-top-voice__item:nth-child(3)::before {
  content: "03";
}
.p-top-voice__item::after {
  content: url(../img/top/icon-plus.svg);
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-voice__item::after {
    display: none;
  }
}
.p-top-voice__item.is-open::after {
  content: url(../img/top/icon-minus.svg);
}
.p-top-voice__item-topcont {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont {
    cursor: pointer;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont::after {
    content: url(../img/top/icon-plus.svg);
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
  }
  .p-top-voice__item-topcont.is-open::after {
    content: url(../img/top/icon-minus.svg);
  }
}
.p-top-voice__item-topcont-img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont-img {
    width: 28.8%;
    border-radius: var(--border-radius-md);
  }
}
.p-top-voice__item-topcont-img img {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.p-top-voice .p-top-voice__item-topcont:hover .p-top-voice__item-topcont-img img {
  transform: scale(1.05);
}
.p-top-voice__item-topcont-txt {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont-txt {
    padding-right: 2em;
    width: 68%;
  }
}
.p-top-voice__item-topcont-txt p {
  font-size: clamp(0.75rem, 0.664rem + 0.3529vw, 0.9375rem);
}
.p-top-voice__item-topcont-txt h4 {
  font-size: clamp(0.9375rem, 0.7368rem + 0.8235vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont-txt h4 {
    line-height: 1.6;
  }
}
.p-top-voice__item-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 1.2em;
}
@media (min-width: 768px) {
  .p-top-voice__item-detail {
    gap: 30px;
    padding-top: 2em;
  }
}
.p-top-voice__faq {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.p-top-voice__faq li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-top-voice__faq--Q {
  color: var(--red, #E60020);
  font-size: clamp(0.9375rem, 0.8515rem + 0.3529vw, 1.125rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
}
.p-top-voice__faq--A {
  font-size: clamp(0.8125rem, 0.7551rem + 0.2353vw, 0.9375rem);
  line-height: 1.8;
}
.p-top-voice__faq-2col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .p-top-voice__faq-2col {
    flex-direction: row;
    justify-content: space-between;
  }
}
.p-top-voice__faq-2col .p-top-voice__faq {
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-voice__faq-2col .p-top-voice__faq {
    width: 77%;
  }
}
.p-top-voice__item-topcont-img-inner {
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont-img-inner {
    width: 19.4%;
  }
}
.p-top-voice__item-topcont-img-inner img {
  border-radius: var(--border-radius-sm);
}
@media (min-width: 768px) {
  .p-top-voice__item-topcont-img-inner img {
    border-radius: var(--border-radius-md);
  }
}

/* --------------------------------------------------------------------------
 Job
-------------------------------------------------------------------------- */
.p-top-job {
  padding-block: 50px 60px;
}
@media (min-width: 768px) {
  .p-top-job {
    padding-block: 100px;
  }
}
.p-top-job .c-section-title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-top-job .c-section-title {
    margin-bottom: 60px;
  }
}
.p-top-job__list {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (min-width: 768px) {
  .p-top-job__list {
    gap: 80px;
  }
}
.p-top-job__item {
  container-type: inline-size;
  position: relative;
  cursor: pointer;
  padding: 40px 15px 20px;
  background-color: var(--white);
  border: solid 2px var(--red, #E60020);
  border-radius: 10px;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .p-top-job__item {
    cursor: default;
    padding: 60px 40px 40px;
  }
}
.p-top-job__item-title {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-size: clamp(1.125rem, 0.7809rem + 1.4118vw, 1.875rem);
  font-weight: 900;
  width: auto;
  background-color: var(--white);
  color: var(--red);
  border: solid 2px var(--red);
  border-radius: 60px;
  position: absolute;
  top: -0.85em;
  line-height: 1;
  left: 50%;
  z-index: 10;
  white-space: nowrap;
  padding: 10px 20px;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-job__item-title {
    top: -3.2cqw;
  }
}
.p-top-job__item-title span {
  font-size: clamp(1rem, 0.8279rem + 0.7059vw, 1.375rem);
  font-weight: 400;
}
.p-top-job__item::after {
  content: url(../img/top/icon-plus.svg);
  width: 34px;
  height: 34px;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-job__item::after {
    display: none;
  }
}
.p-top-job__item.is-open::after {
  content: url(../img/top/icon-minus.svg);
}
.p-top-job__item-topcont {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .p-top-job__item-topcont {
    cursor: pointer;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .p-top-job__item-topcont::after {
    content: url(../img/top/icon-plus.svg);
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
    position: absolute;
    top: 50%;
    right: -17px;
    transform: translateY(-50%);
  }
  .p-top-job__item-topcont.is-open::after {
    content: url(../img/top/icon-minus.svg);
  }
}
.p-top-job__item-topcont-img {
  width: 100%;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-top-job__item-topcont-img {
    width: 45.7%;
    border-radius: var(--border-radius-md);
  }
}
.p-top-job__item-topcont-img img {
  transform: scale(1);
  transition: transform 0.3s ease;
}
.p-top-job .p-top-job__item-topcont:hover .p-top-job__item-topcont-img img {
  transform: scale(1.05);
}
.p-top-job__item-topcont-txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
@media (min-width: 768px) {
  .p-top-job__item-topcont-txt {
    padding-right: 2em;
    width: 50%;
  }
}
.p-top-job__item-topcont-txt p {
  font-size: clamp(0.75rem, 0.664rem + 0.3529vw, 0.9375rem);
  color: var(--red);
  font-weight: 700;
}
.p-top-job__item-topcont-txt h4 {
  font-size: clamp(0.9375rem, 0.7368rem + 0.8235vw, 1.375rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 13px;
}
@media (min-width: 768px) {
  .p-top-job__item-topcont-txt h4 {
    line-height: 1.6;
  }
}
.p-top-job__item-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .p-top-job__item-detail {
    gap: 30px;
    padding-top: 40px;
  }
}
.p-top-job__table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #DFDFDF;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .p-top-job__table {
    margin-bottom: 40px;
  }
}
.p-top-job__table th, .p-top-job__table td {
  border-bottom: 1px solid #ccc;
  text-align: left;
  font-weight: 400;
  vertical-align: top;
  border-bottom: 1px solid #DFDFDF;
  display: block;
}
@media (min-width: 768px) {
  .p-top-job__table th, .p-top-job__table td {
    display: table-cell;
  }
}
.p-top-job__table th {
  font-size: clamp(0.75rem, 0.664rem + 0.3529vw, 0.9375rem);
  width: 100%;
  color: #676767;
  font-weight: 700;
  padding: 10px 0 0;
  border-bottom: none;
}
@media (min-width: 768px) {
  .p-top-job__table th {
    width: 20%;
    color: var(--base, #222);
    font-weight: 400;
    padding: 10px 0;
    border-bottom: 1px solid #DFDFDF;
  }
}
.p-top-job__table td {
  font-size: clamp(0.8125rem, 0.7551rem + 0.2353vw, 0.9375rem);
  padding: 5px 0 10px;
}
@media (min-width: 768px) {
  .p-top-job__table td {
    padding: 20px 0;
  }
}

/* --------------------------------------------------------------------------
 Process
-------------------------------------------------------------------------- */
.p-top-process {
  background: url(../img/top/bg-process.png) no-repeat top center/cover;
  background-blend-mode: multiply;
  padding-block: 50px 60px;
}
@media (min-width: 768px) {
  .p-top-process {
    padding-block: 100px;
  }
}
@supports (background-image: url("image.webp")) {
  .p-top-process {
    background: url(../img/top/bg-process.webp) no-repeat top center/cover;
    background-blend-mode: multiply;
  }
}
.p-top-process .c-section-title {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .p-top-process .c-section-title {
    margin-bottom: 60px;
  }
}
.p-top-process__list {
  width: 100%;
  border-top: 1px solid #414141;
  display: flex;
  flex-direction: column;
}
.p-top-process__item {
  border-bottom: 1px solid #414141;
  padding-block: 15px;
}
@media (min-width: 768px) {
  .p-top-process__item {
    padding-block: 40px;
  }
}
.p-top-process__item h3 {
  display: block;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .p-top-process__item h3 {
    margin-bottom: 15px;
  }
}
.p-top-process__item h3 span {
  font-size: clamp(1rem, 0.8279rem + 0.7059vw, 1.375rem);
  font-weight: 700;
  color: var(--black);
  background-color: var(--white);
  line-height: 1;
  padding: 5px 15px;
}
@media (min-width: 768px) {
  .p-top-process__item h3 span {
    padding: 6px 20px;
  }
}
.p-top-process__item p {
  line-height: 1.5;
  font-size: clamp(0.8125rem, 0.7551rem + 0.2353vw, 0.9375rem);
}
@media (min-width: 768px) {
  .p-top-process__item p {
    line-height: 1.7;
  }
}
.p-top-process__item p.adress {
  display: block;
  padding-top: 10px;
}
.p-top-process__item p.adress span {
  font-weight: 700;
}
.p-top-process__step {
  width: 100%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .p-top-process__step {
    width: 90%;
    gap: 40px;
    padding-top: 40px;
  }
}
.p-top-process__step-item {
  position: relative;
  border-radius: var(--border-radius-sm);
  border: 1.5px solid var(--red, #E60020);
  background: #FFF;
  display: flex;
  padding: 24px 12px 15px 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
@media (min-width: 768px) {
  .p-top-process__step-item {
    border-radius: var(--border-radius-md);
    padding: 22px 20px 24px 90px;
  }
}
.p-top-process__step-item::after {
  content: url(../img/top/arw-btm.svg);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -34px;
}
@media (min-width: 768px) {
  .p-top-process__step-item::after {
    bottom: -34px;
  }
}
.p-top-process__step-item:last-of-type::after {
  display: none;
}
.p-top-process__step-item h4 {
  font-size: clamp(1rem, 0.8279rem + 0.7059vw, 1.375rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1.6;
  color: var(--red, #E60020);
}
.p-top-process__step-item h4 span {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.7603rem + 0.4706vw, 1.125rem);
}
.p-top-process__step-item p {
  font-size: clamp(0.8125rem, 0.7551rem + 0.2353vw, 0.9375rem);
}
.p-top-process__step-item p span {
  font-weight: 700;
}
.p-top-process__step-item p small {
  font-size: clamp(0.75rem, 0.6926rem + 0.2353vw, 0.875rem);
}
.p-top-process__step-num {
  position: absolute;
  width: 50px;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .p-top-process__step-num {
    width: 90px;
    left: -45px;
    top: 50%;
    transform: translateY(-50%) translateX(0);
  }
}
.p-top-process__sub-list {
  padding-top: 1em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-top-process__sub-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media (min-width: 768px) {
  .p-top-process__sub-list li {
    flex-direction: row;
    gap: 2em;
  }
}
.p-top-process__sub-list li h4 {
  text-indent: -1.1em;
  padding-left: 1.1em;
  font-weight: 700;
  font-size: clamp(0.8125rem, 0.7551rem + 0.2353vw, 0.9375rem);
}
@media (min-width: 768px) {
  .p-top-process__sub-list li h4 {
    width: 10em;
  }
}
.p-top-process__sub-list li h4::before {
  content: "●";
  color: var(--red);
  padding-right: 2px;
}
.p-top-process__sub-list li p {
  font-size: clamp(0.875rem, 0.8176rem + 0.2353vw, 1rem);
}
@media (min-width: 768px) {
  .p-top-process__sub-list li p {
    width: calc(100% - 12em);
  }
}

/*--------------------------------------------------------------------------
  Animation Utilities
---------------------------------------------------------------------------*/
.u-fade-up {
  opacity: 0;
}

.u-fade-up.is-show {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*--------------------------------------------------------------------------
  Color Utilities
---------------------------------------------------------------------------*/
.text-white {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

/*--------------------------------------------------------------------------
  Display Utilities
--------------------------------------------------------------------------*/
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

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

.flex {
  display: flex !important;
}

.inline-flex {
  display: inline-flex !important;
}

.grid {
  display: grid !important;
}

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

.hidden {
  display: none !important;
}

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

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

.sp-flex {
  display: flex;
}
@media (min-width: 768px) {
  .sp-flex {
    display: none;
  }
}

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

.no-link {
  pointer-events: none;
  text-decoration: none !important;
  cursor: initial;
}

/*--------------------------------------------------------------------------
 Size Utilities
---------------------------------------------------------------------------*/
.mlr-auto {
  margin-inline: auto !important;
}

/* 8pxごと */
/* マージン関連クラス */
.m-0 {
  margin: 0px !important;
}

.mt-0 {
  margin-top: 0px !important;
}

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

.mtb-0 {
  margin-block: 0px !important;
}

.ml-0 {
  margin-left: 0px !important;
}

.mr-0 {
  margin-right: 0px !important;
}

.mlr-0 {
  margin-inline: 0px !important;
}

@media (min-width: 768px) {
  .m-0-pc {
    margin: 0px !important;
  }
  .mt-0-pc {
    margin-top: 0px !important;
  }
  .mb-0-pc {
    margin-bottom: 0px !important;
  }
  .mtb-0-pc {
    margin-block: 0px !important;
  }
  .ml-0-pc {
    margin-left: 0px !important;
  }
  .mr-0-pc {
    margin-right: 0px !important;
  }
  .mlr-0-pc {
    margin-inline: 0px !important;
  }
}
/* パディング関連クラス */
.p-0 {
  padding: 0px !important;
}

.pt-0 {
  padding-top: 0px !important;
}

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

.ptb-0 {
  padding-block: 0px !important;
}

.pl-0 {
  padding-left: 0px !important;
}

.pr-0 {
  padding-right: 0px !important;
}

.plr-0 {
  padding-inline: 0px !important;
}

@media (min-width: 768px) {
  .p-0-pc {
    padding: 0px !important;
  }
  .pt-0-pc {
    padding-top: 0px !important;
  }
  .pb-0-pc {
    padding-bottom: 0px !important;
  }
  .ptb-0-pc {
    padding-block: 0px !important;
  }
  .pl-0-pc {
    padding-left: 0px !important;
  }
  .pr-0-pc {
    padding-right: 0px !important;
  }
  .plr-0-pc {
    padding-inline: 0px !important;
  }
}
.fs-0 {
  font-size: 0px !important;
}

@media (min-width: 768px) {
  .fs-0-pc {
    font-size: 0px !important;
  }
}
/* マージン関連クラス */
.m-8 {
  margin: 8px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

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

.mtb-8 {
  margin-block: 8px !important;
}

.ml-8 {
  margin-left: 8px !important;
}

.mr-8 {
  margin-right: 8px !important;
}

.mlr-8 {
  margin-inline: 8px !important;
}

@media (min-width: 768px) {
  .m-8-pc {
    margin: 8px !important;
  }
  .mt-8-pc {
    margin-top: 8px !important;
  }
  .mb-8-pc {
    margin-bottom: 8px !important;
  }
  .mtb-8-pc {
    margin-block: 8px !important;
  }
  .ml-8-pc {
    margin-left: 8px !important;
  }
  .mr-8-pc {
    margin-right: 8px !important;
  }
  .mlr-8-pc {
    margin-inline: 8px !important;
  }
}
/* パディング関連クラス */
.p-8 {
  padding: 8px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

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

.ptb-8 {
  padding-block: 8px !important;
}

.pl-8 {
  padding-left: 8px !important;
}

.pr-8 {
  padding-right: 8px !important;
}

.plr-8 {
  padding-inline: 8px !important;
}

@media (min-width: 768px) {
  .p-8-pc {
    padding: 8px !important;
  }
  .pt-8-pc {
    padding-top: 8px !important;
  }
  .pb-8-pc {
    padding-bottom: 8px !important;
  }
  .ptb-8-pc {
    padding-block: 8px !important;
  }
  .pl-8-pc {
    padding-left: 8px !important;
  }
  .pr-8-pc {
    padding-right: 8px !important;
  }
  .plr-8-pc {
    padding-inline: 8px !important;
  }
}
.fs-8 {
  font-size: 8px !important;
}

@media (min-width: 768px) {
  .fs-8-pc {
    font-size: 8px !important;
  }
}
/* マージン関連クラス */
.m-16 {
  margin: 16px !important;
}

.mt-16 {
  margin-top: 16px !important;
}

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

.mtb-16 {
  margin-block: 16px !important;
}

.ml-16 {
  margin-left: 16px !important;
}

.mr-16 {
  margin-right: 16px !important;
}

.mlr-16 {
  margin-inline: 16px !important;
}

@media (min-width: 768px) {
  .m-16-pc {
    margin: 16px !important;
  }
  .mt-16-pc {
    margin-top: 16px !important;
  }
  .mb-16-pc {
    margin-bottom: 16px !important;
  }
  .mtb-16-pc {
    margin-block: 16px !important;
  }
  .ml-16-pc {
    margin-left: 16px !important;
  }
  .mr-16-pc {
    margin-right: 16px !important;
  }
  .mlr-16-pc {
    margin-inline: 16px !important;
  }
}
/* パディング関連クラス */
.p-16 {
  padding: 16px !important;
}

.pt-16 {
  padding-top: 16px !important;
}

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

.ptb-16 {
  padding-block: 16px !important;
}

.pl-16 {
  padding-left: 16px !important;
}

.pr-16 {
  padding-right: 16px !important;
}

.plr-16 {
  padding-inline: 16px !important;
}

@media (min-width: 768px) {
  .p-16-pc {
    padding: 16px !important;
  }
  .pt-16-pc {
    padding-top: 16px !important;
  }
  .pb-16-pc {
    padding-bottom: 16px !important;
  }
  .ptb-16-pc {
    padding-block: 16px !important;
  }
  .pl-16-pc {
    padding-left: 16px !important;
  }
  .pr-16-pc {
    padding-right: 16px !important;
  }
  .plr-16-pc {
    padding-inline: 16px !important;
  }
}
.fs-16 {
  font-size: 16px !important;
}

@media (min-width: 768px) {
  .fs-16-pc {
    font-size: 16px !important;
  }
}
/* マージン関連クラス */
.m-24 {
  margin: 24px !important;
}

.mt-24 {
  margin-top: 24px !important;
}

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

.mtb-24 {
  margin-block: 24px !important;
}

.ml-24 {
  margin-left: 24px !important;
}

.mr-24 {
  margin-right: 24px !important;
}

.mlr-24 {
  margin-inline: 24px !important;
}

@media (min-width: 768px) {
  .m-24-pc {
    margin: 24px !important;
  }
  .mt-24-pc {
    margin-top: 24px !important;
  }
  .mb-24-pc {
    margin-bottom: 24px !important;
  }
  .mtb-24-pc {
    margin-block: 24px !important;
  }
  .ml-24-pc {
    margin-left: 24px !important;
  }
  .mr-24-pc {
    margin-right: 24px !important;
  }
  .mlr-24-pc {
    margin-inline: 24px !important;
  }
}
/* パディング関連クラス */
.p-24 {
  padding: 24px !important;
}

.pt-24 {
  padding-top: 24px !important;
}

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

.ptb-24 {
  padding-block: 24px !important;
}

.pl-24 {
  padding-left: 24px !important;
}

.pr-24 {
  padding-right: 24px !important;
}

.plr-24 {
  padding-inline: 24px !important;
}

@media (min-width: 768px) {
  .p-24-pc {
    padding: 24px !important;
  }
  .pt-24-pc {
    padding-top: 24px !important;
  }
  .pb-24-pc {
    padding-bottom: 24px !important;
  }
  .ptb-24-pc {
    padding-block: 24px !important;
  }
  .pl-24-pc {
    padding-left: 24px !important;
  }
  .pr-24-pc {
    padding-right: 24px !important;
  }
  .plr-24-pc {
    padding-inline: 24px !important;
  }
}
.fs-24 {
  font-size: 24px !important;
}

@media (min-width: 768px) {
  .fs-24-pc {
    font-size: 24px !important;
  }
}
/* マージン関連クラス */
.m-32 {
  margin: 32px !important;
}

.mt-32 {
  margin-top: 32px !important;
}

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

.mtb-32 {
  margin-block: 32px !important;
}

.ml-32 {
  margin-left: 32px !important;
}

.mr-32 {
  margin-right: 32px !important;
}

.mlr-32 {
  margin-inline: 32px !important;
}

@media (min-width: 768px) {
  .m-32-pc {
    margin: 32px !important;
  }
  .mt-32-pc {
    margin-top: 32px !important;
  }
  .mb-32-pc {
    margin-bottom: 32px !important;
  }
  .mtb-32-pc {
    margin-block: 32px !important;
  }
  .ml-32-pc {
    margin-left: 32px !important;
  }
  .mr-32-pc {
    margin-right: 32px !important;
  }
  .mlr-32-pc {
    margin-inline: 32px !important;
  }
}
/* パディング関連クラス */
.p-32 {
  padding: 32px !important;
}

.pt-32 {
  padding-top: 32px !important;
}

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

.ptb-32 {
  padding-block: 32px !important;
}

.pl-32 {
  padding-left: 32px !important;
}

.pr-32 {
  padding-right: 32px !important;
}

.plr-32 {
  padding-inline: 32px !important;
}

@media (min-width: 768px) {
  .p-32-pc {
    padding: 32px !important;
  }
  .pt-32-pc {
    padding-top: 32px !important;
  }
  .pb-32-pc {
    padding-bottom: 32px !important;
  }
  .ptb-32-pc {
    padding-block: 32px !important;
  }
  .pl-32-pc {
    padding-left: 32px !important;
  }
  .pr-32-pc {
    padding-right: 32px !important;
  }
  .plr-32-pc {
    padding-inline: 32px !important;
  }
}
.fs-32 {
  font-size: 32px !important;
}

@media (min-width: 768px) {
  .fs-32-pc {
    font-size: 32px !important;
  }
}
/* マージン関連クラス */
.m-40 {
  margin: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

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

.mtb-40 {
  margin-block: 40px !important;
}

.ml-40 {
  margin-left: 40px !important;
}

.mr-40 {
  margin-right: 40px !important;
}

.mlr-40 {
  margin-inline: 40px !important;
}

@media (min-width: 768px) {
  .m-40-pc {
    margin: 40px !important;
  }
  .mt-40-pc {
    margin-top: 40px !important;
  }
  .mb-40-pc {
    margin-bottom: 40px !important;
  }
  .mtb-40-pc {
    margin-block: 40px !important;
  }
  .ml-40-pc {
    margin-left: 40px !important;
  }
  .mr-40-pc {
    margin-right: 40px !important;
  }
  .mlr-40-pc {
    margin-inline: 40px !important;
  }
}
/* パディング関連クラス */
.p-40 {
  padding: 40px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

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

.ptb-40 {
  padding-block: 40px !important;
}

.pl-40 {
  padding-left: 40px !important;
}

.pr-40 {
  padding-right: 40px !important;
}

.plr-40 {
  padding-inline: 40px !important;
}

@media (min-width: 768px) {
  .p-40-pc {
    padding: 40px !important;
  }
  .pt-40-pc {
    padding-top: 40px !important;
  }
  .pb-40-pc {
    padding-bottom: 40px !important;
  }
  .ptb-40-pc {
    padding-block: 40px !important;
  }
  .pl-40-pc {
    padding-left: 40px !important;
  }
  .pr-40-pc {
    padding-right: 40px !important;
  }
  .plr-40-pc {
    padding-inline: 40px !important;
  }
}
.fs-40 {
  font-size: 40px !important;
}

@media (min-width: 768px) {
  .fs-40-pc {
    font-size: 40px !important;
  }
}
/* マージン関連クラス */
.m-48 {
  margin: 48px !important;
}

.mt-48 {
  margin-top: 48px !important;
}

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

.mtb-48 {
  margin-block: 48px !important;
}

.ml-48 {
  margin-left: 48px !important;
}

.mr-48 {
  margin-right: 48px !important;
}

.mlr-48 {
  margin-inline: 48px !important;
}

@media (min-width: 768px) {
  .m-48-pc {
    margin: 48px !important;
  }
  .mt-48-pc {
    margin-top: 48px !important;
  }
  .mb-48-pc {
    margin-bottom: 48px !important;
  }
  .mtb-48-pc {
    margin-block: 48px !important;
  }
  .ml-48-pc {
    margin-left: 48px !important;
  }
  .mr-48-pc {
    margin-right: 48px !important;
  }
  .mlr-48-pc {
    margin-inline: 48px !important;
  }
}
/* パディング関連クラス */
.p-48 {
  padding: 48px !important;
}

.pt-48 {
  padding-top: 48px !important;
}

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

.ptb-48 {
  padding-block: 48px !important;
}

.pl-48 {
  padding-left: 48px !important;
}

.pr-48 {
  padding-right: 48px !important;
}

.plr-48 {
  padding-inline: 48px !important;
}

@media (min-width: 768px) {
  .p-48-pc {
    padding: 48px !important;
  }
  .pt-48-pc {
    padding-top: 48px !important;
  }
  .pb-48-pc {
    padding-bottom: 48px !important;
  }
  .ptb-48-pc {
    padding-block: 48px !important;
  }
  .pl-48-pc {
    padding-left: 48px !important;
  }
  .pr-48-pc {
    padding-right: 48px !important;
  }
  .plr-48-pc {
    padding-inline: 48px !important;
  }
}
.fs-48 {
  font-size: 48px !important;
}

@media (min-width: 768px) {
  .fs-48-pc {
    font-size: 48px !important;
  }
}
/* マージン関連クラス */
.m-56 {
  margin: 56px !important;
}

.mt-56 {
  margin-top: 56px !important;
}

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

.mtb-56 {
  margin-block: 56px !important;
}

.ml-56 {
  margin-left: 56px !important;
}

.mr-56 {
  margin-right: 56px !important;
}

.mlr-56 {
  margin-inline: 56px !important;
}

@media (min-width: 768px) {
  .m-56-pc {
    margin: 56px !important;
  }
  .mt-56-pc {
    margin-top: 56px !important;
  }
  .mb-56-pc {
    margin-bottom: 56px !important;
  }
  .mtb-56-pc {
    margin-block: 56px !important;
  }
  .ml-56-pc {
    margin-left: 56px !important;
  }
  .mr-56-pc {
    margin-right: 56px !important;
  }
  .mlr-56-pc {
    margin-inline: 56px !important;
  }
}
/* パディング関連クラス */
.p-56 {
  padding: 56px !important;
}

.pt-56 {
  padding-top: 56px !important;
}

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

.ptb-56 {
  padding-block: 56px !important;
}

.pl-56 {
  padding-left: 56px !important;
}

.pr-56 {
  padding-right: 56px !important;
}

.plr-56 {
  padding-inline: 56px !important;
}

@media (min-width: 768px) {
  .p-56-pc {
    padding: 56px !important;
  }
  .pt-56-pc {
    padding-top: 56px !important;
  }
  .pb-56-pc {
    padding-bottom: 56px !important;
  }
  .ptb-56-pc {
    padding-block: 56px !important;
  }
  .pl-56-pc {
    padding-left: 56px !important;
  }
  .pr-56-pc {
    padding-right: 56px !important;
  }
  .plr-56-pc {
    padding-inline: 56px !important;
  }
}
.fs-56 {
  font-size: 56px !important;
}

@media (min-width: 768px) {
  .fs-56-pc {
    font-size: 56px !important;
  }
}
/* マージン関連クラス */
.m-64 {
  margin: 64px !important;
}

.mt-64 {
  margin-top: 64px !important;
}

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

.mtb-64 {
  margin-block: 64px !important;
}

.ml-64 {
  margin-left: 64px !important;
}

.mr-64 {
  margin-right: 64px !important;
}

.mlr-64 {
  margin-inline: 64px !important;
}

@media (min-width: 768px) {
  .m-64-pc {
    margin: 64px !important;
  }
  .mt-64-pc {
    margin-top: 64px !important;
  }
  .mb-64-pc {
    margin-bottom: 64px !important;
  }
  .mtb-64-pc {
    margin-block: 64px !important;
  }
  .ml-64-pc {
    margin-left: 64px !important;
  }
  .mr-64-pc {
    margin-right: 64px !important;
  }
  .mlr-64-pc {
    margin-inline: 64px !important;
  }
}
/* パディング関連クラス */
.p-64 {
  padding: 64px !important;
}

.pt-64 {
  padding-top: 64px !important;
}

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

.ptb-64 {
  padding-block: 64px !important;
}

.pl-64 {
  padding-left: 64px !important;
}

.pr-64 {
  padding-right: 64px !important;
}

.plr-64 {
  padding-inline: 64px !important;
}

@media (min-width: 768px) {
  .p-64-pc {
    padding: 64px !important;
  }
  .pt-64-pc {
    padding-top: 64px !important;
  }
  .pb-64-pc {
    padding-bottom: 64px !important;
  }
  .ptb-64-pc {
    padding-block: 64px !important;
  }
  .pl-64-pc {
    padding-left: 64px !important;
  }
  .pr-64-pc {
    padding-right: 64px !important;
  }
  .plr-64-pc {
    padding-inline: 64px !important;
  }
}
.fs-64 {
  font-size: 64px !important;
}

@media (min-width: 768px) {
  .fs-64-pc {
    font-size: 64px !important;
  }
}
/* マージン関連クラス */
.m-72 {
  margin: 72px !important;
}

.mt-72 {
  margin-top: 72px !important;
}

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

.mtb-72 {
  margin-block: 72px !important;
}

.ml-72 {
  margin-left: 72px !important;
}

.mr-72 {
  margin-right: 72px !important;
}

.mlr-72 {
  margin-inline: 72px !important;
}

@media (min-width: 768px) {
  .m-72-pc {
    margin: 72px !important;
  }
  .mt-72-pc {
    margin-top: 72px !important;
  }
  .mb-72-pc {
    margin-bottom: 72px !important;
  }
  .mtb-72-pc {
    margin-block: 72px !important;
  }
  .ml-72-pc {
    margin-left: 72px !important;
  }
  .mr-72-pc {
    margin-right: 72px !important;
  }
  .mlr-72-pc {
    margin-inline: 72px !important;
  }
}
/* パディング関連クラス */
.p-72 {
  padding: 72px !important;
}

.pt-72 {
  padding-top: 72px !important;
}

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

.ptb-72 {
  padding-block: 72px !important;
}

.pl-72 {
  padding-left: 72px !important;
}

.pr-72 {
  padding-right: 72px !important;
}

.plr-72 {
  padding-inline: 72px !important;
}

@media (min-width: 768px) {
  .p-72-pc {
    padding: 72px !important;
  }
  .pt-72-pc {
    padding-top: 72px !important;
  }
  .pb-72-pc {
    padding-bottom: 72px !important;
  }
  .ptb-72-pc {
    padding-block: 72px !important;
  }
  .pl-72-pc {
    padding-left: 72px !important;
  }
  .pr-72-pc {
    padding-right: 72px !important;
  }
  .plr-72-pc {
    padding-inline: 72px !important;
  }
}
.fs-72 {
  font-size: 72px !important;
}

@media (min-width: 768px) {
  .fs-72-pc {
    font-size: 72px !important;
  }
}
/* マージン関連クラス */
.m-80 {
  margin: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

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

.mtb-80 {
  margin-block: 80px !important;
}

.ml-80 {
  margin-left: 80px !important;
}

.mr-80 {
  margin-right: 80px !important;
}

.mlr-80 {
  margin-inline: 80px !important;
}

@media (min-width: 768px) {
  .m-80-pc {
    margin: 80px !important;
  }
  .mt-80-pc {
    margin-top: 80px !important;
  }
  .mb-80-pc {
    margin-bottom: 80px !important;
  }
  .mtb-80-pc {
    margin-block: 80px !important;
  }
  .ml-80-pc {
    margin-left: 80px !important;
  }
  .mr-80-pc {
    margin-right: 80px !important;
  }
  .mlr-80-pc {
    margin-inline: 80px !important;
  }
}
/* パディング関連クラス */
.p-80 {
  padding: 80px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

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

.ptb-80 {
  padding-block: 80px !important;
}

.pl-80 {
  padding-left: 80px !important;
}

.pr-80 {
  padding-right: 80px !important;
}

.plr-80 {
  padding-inline: 80px !important;
}

@media (min-width: 768px) {
  .p-80-pc {
    padding: 80px !important;
  }
  .pt-80-pc {
    padding-top: 80px !important;
  }
  .pb-80-pc {
    padding-bottom: 80px !important;
  }
  .ptb-80-pc {
    padding-block: 80px !important;
  }
  .pl-80-pc {
    padding-left: 80px !important;
  }
  .pr-80-pc {
    padding-right: 80px !important;
  }
  .plr-80-pc {
    padding-inline: 80px !important;
  }
}
.fs-80 {
  font-size: 80px !important;
}

@media (min-width: 768px) {
  .fs-80-pc {
    font-size: 80px !important;
  }
}
/* マージン関連クラス */
.m-88 {
  margin: 88px !important;
}

.mt-88 {
  margin-top: 88px !important;
}

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

.mtb-88 {
  margin-block: 88px !important;
}

.ml-88 {
  margin-left: 88px !important;
}

.mr-88 {
  margin-right: 88px !important;
}

.mlr-88 {
  margin-inline: 88px !important;
}

@media (min-width: 768px) {
  .m-88-pc {
    margin: 88px !important;
  }
  .mt-88-pc {
    margin-top: 88px !important;
  }
  .mb-88-pc {
    margin-bottom: 88px !important;
  }
  .mtb-88-pc {
    margin-block: 88px !important;
  }
  .ml-88-pc {
    margin-left: 88px !important;
  }
  .mr-88-pc {
    margin-right: 88px !important;
  }
  .mlr-88-pc {
    margin-inline: 88px !important;
  }
}
/* パディング関連クラス */
.p-88 {
  padding: 88px !important;
}

.pt-88 {
  padding-top: 88px !important;
}

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

.ptb-88 {
  padding-block: 88px !important;
}

.pl-88 {
  padding-left: 88px !important;
}

.pr-88 {
  padding-right: 88px !important;
}

.plr-88 {
  padding-inline: 88px !important;
}

@media (min-width: 768px) {
  .p-88-pc {
    padding: 88px !important;
  }
  .pt-88-pc {
    padding-top: 88px !important;
  }
  .pb-88-pc {
    padding-bottom: 88px !important;
  }
  .ptb-88-pc {
    padding-block: 88px !important;
  }
  .pl-88-pc {
    padding-left: 88px !important;
  }
  .pr-88-pc {
    padding-right: 88px !important;
  }
  .plr-88-pc {
    padding-inline: 88px !important;
  }
}
.fs-88 {
  font-size: 88px !important;
}

@media (min-width: 768px) {
  .fs-88-pc {
    font-size: 88px !important;
  }
}
/* マージン関連クラス */
.m-96 {
  margin: 96px !important;
}

.mt-96 {
  margin-top: 96px !important;
}

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

.mtb-96 {
  margin-block: 96px !important;
}

.ml-96 {
  margin-left: 96px !important;
}

.mr-96 {
  margin-right: 96px !important;
}

.mlr-96 {
  margin-inline: 96px !important;
}

@media (min-width: 768px) {
  .m-96-pc {
    margin: 96px !important;
  }
  .mt-96-pc {
    margin-top: 96px !important;
  }
  .mb-96-pc {
    margin-bottom: 96px !important;
  }
  .mtb-96-pc {
    margin-block: 96px !important;
  }
  .ml-96-pc {
    margin-left: 96px !important;
  }
  .mr-96-pc {
    margin-right: 96px !important;
  }
  .mlr-96-pc {
    margin-inline: 96px !important;
  }
}
/* パディング関連クラス */
.p-96 {
  padding: 96px !important;
}

.pt-96 {
  padding-top: 96px !important;
}

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

.ptb-96 {
  padding-block: 96px !important;
}

.pl-96 {
  padding-left: 96px !important;
}

.pr-96 {
  padding-right: 96px !important;
}

.plr-96 {
  padding-inline: 96px !important;
}

@media (min-width: 768px) {
  .p-96-pc {
    padding: 96px !important;
  }
  .pt-96-pc {
    padding-top: 96px !important;
  }
  .pb-96-pc {
    padding-bottom: 96px !important;
  }
  .ptb-96-pc {
    padding-block: 96px !important;
  }
  .pl-96-pc {
    padding-left: 96px !important;
  }
  .pr-96-pc {
    padding-right: 96px !important;
  }
  .plr-96-pc {
    padding-inline: 96px !important;
  }
}
.fs-96 {
  font-size: 96px !important;
}

@media (min-width: 768px) {
  .fs-96-pc {
    font-size: 96px !important;
  }
}
/* width */
.w-fit {
  width: fit-content !important;
}

.w-100 {
  width: 100% !important;
}

/* Max Width */
.max-w-content {
  max-width: 1240px !important;
}

.max-w-100 {
  max-width: 100% !important;
}

/*--------------------------------------------------------------------------
  Text Utilities
---------------------------------------------------------------------------*/
/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

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

/* Font Weight */
.font-300 {
  font-weight: 300 !important;
}

.font-400 {
  font-weight: 400 !important;
}

.font-500 {
  font-weight: 500 !important;
}

.font-600 {
  font-weight: 600 !important;
}

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

.font-800 {
  font-weight: 800 !important;
}

.font-900 {
  font-weight: 900 !important;
}

/* Line Height */
.lh-10 {
  line-height: 1 !important;
}

.lh-11 {
  line-height: 1.1 !important;
}

.lh-12 {
  line-height: 1.2 !important;
}

.lh-13 {
  line-height: 1.3 !important;
}

.lh-14 {
  line-height: 1.4 !important;
}

.lh-15 {
  line-height: 1.5 !important;
}

.lh-16 {
  line-height: 1.6 !important;
}

.lh-18 {
  line-height: 1.8 !important;
}

.lh-20 {
  line-height: 2 !important;
}

/* Text Decoration */
.underline {
  text-decoration: underline;
}

/* Text Transform */
.uppercase {
  text-transform: uppercase !important;
}

.capitalize {
  text-transform: capitalize !important;
}

.normal-case {
  text-transform: none !important;
}

/*--------------------------------------------------------------------------
  List Utilities
--------------------------------------------------------------------------*/
.dotted-list {
  list-style: "・";
  list-style-position: outside;
  padding-left: 14px;
}
.dotted-list li {
  margin-bottom: 8px;
}