@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Noto+Sans+JP:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  object-fit: cover;
}

em {
  font-style: normal;
}

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

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

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

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --black: #333;
  --text: #1f1f20;
  --red: #FF4141;
  --light-gray: #F1F1F1;
  --gray: #99A9AA;
  --light-yellow: #FBF7EF;
  --light-yellow2: #FE6B44;
  --yellow: #FFD082;
  --deep-yellow: #F6AD33;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --josefinsans: "Josefin Sans", sans-serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: min(0.6944444444vw, 10px);
  margin-top: 0 !important;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: min(2.5641025641vw, 14px);
  }
}

body {
  font-weight: 400;
  line-height: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
}

a {
  color: var(--black);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}
a[href^="tel:"] {
  pointer-events: none;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
    text-decoration: underline !important;
  }
}

.palt {
  font-feature-settings: "palt";
}

p,
h2,
h3,
h4,
span {
  font-weight: 500;
  color: var(--black);
}

svg {
  width: 100%;
  height: 100%;
}

#wpadminbar {
  position: fixed !important;
  top: auto;
  bottom: 0;
  left: 0;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 101;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  width: 18.4rem;
  height: 12.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0.2rem;
  padding-bottom: 0.3rem;
  background: var(--white);
  border-bottom-right-radius: 4rem;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 9.6rem;
    height: 9rem;
    padding-right: 0rem;
    padding-bottom: 0rem;
    border-bottom-right-radius: 2rem;
  }
}
.header__logo img {
  width: 7.6rem;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 4.6rem;
  }
}
.header__nav {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-bottom-left-radius: 4rem;
  padding: 4rem 5rem;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .header__nav {
    border-bottom-left-radius: 2rem;
    padding: 2.1rem 2.6rem 2rem 2.5rem;
    gap: 2.7rem;
  }
}
@media screen and (max-width: 768px) {
  .header__nav .header__menu {
    display: none;
  }
}
.header__nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__nav-sp {
    position: fixed;
    display: block;
    top: 0;
    right: -100%;
    width: 27.4rem;
    height: 100vh;
    background: var(--white);
    z-index: 100;
    transition: 0.3s;
    padding-top: 15.1rem;
    padding-left: 5rem;
  }
  .header__nav-sp.is-active {
    right: 0;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }
}
.header__menu-item {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .header__menu-item {
    font-weight: 400;
    letter-spacing: 0.1em;
  }
}
.header__button {
  width: 19.5rem;
  height: 4.5rem;
  border: 1px solid var(--black);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .header__button {
    width: inherit;
    height: inherit;
    border-radius: 0rem;
    border: none;
    flex-direction: column-reverse;
  }
}
.header__button-text {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .header__button-text {
    font-size: 1rem;
    line-height: 1.5;
  }
}
.header__button-icon {
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__button-icon {
    width: 3rem;
  }
}
@media screen and (min-width: 769px) {
  .header__button:hover .header__button-icon {
    transform: translateX(0.5rem);
  }
}

.overlay {
  display: none;
}
@media screen and (max-width: 768px) {
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    width: 3.6rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 101;
  }
  .hamburger .hamburger__line {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.3s;
    width: 3.6rem;
    height: 2.2rem;
  }
  .hamburger .hamburger__line span {
    width: 3.6rem;
    height: 2px;
    display: block;
    position: absolute;
    transition: 0.3s;
    left: 0;
    z-index: 30;
    background: var(--black);
  }
  .hamburger .hamburger__line span:nth-child(1) {
    top: 0rem;
  }
  .hamburger .hamburger__line span:nth-child(2) {
    top: 1rem;
  }
  .hamburger .hamburger__line span:nth-child(3) {
    bottom: 0rem;
    opacity: 1;
    animation-delay: 1s;
  }
  .hamburger.is-active .hamburger__line span:nth-child(1) {
    top: 1rem;
    transform: rotate(45deg);
  }
  .hamburger.is-active .hamburger__line span:nth-child(2) {
    top: 1rem;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line span:nth-child(3) {
    bottom: 0rem;
    opacity: 0;
  }
}

#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.footer {
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 5rem 6rem 0;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 0;
  }
}
.footer__inner {
  display: flex;
  gap: 8rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .footer__inner {
    gap: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 3rem;
  }
}
.footer__head {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .footer__head {
    flex-direction: column;
    gap: 3.5rem;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    gap: 2rem;
  }
}
.footer__logo-img {
  width: 11.2rem;
}
@media screen and (max-width: 768px) {
  .footer__logo-img {
    width: 10rem;
  }
}
.footer__logo-company {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  .footer__logo-company {
    width: 18rem;
  }
}
.footer__address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__address-title {
  font-size: max(1.8rem, 16px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .footer__address-title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.footer__address-text {
  font-size: max(1.6rem, 14px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .footer__address-text {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
.footer__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__body-title {
  font-size: max(2rem, 16px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  font-family: var(--josefinsans);
  text-transform: uppercase;
}
.footer__menu {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu-item {
  font-size: max(1.6rem, 14px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
.footer__copyright {
  padding: 6rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 5rem 0 2rem;
  }
}
.footer__copyright-text {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-family: var(--josefinsans);
}
@media screen and (max-width: 768px) {
  .footer__copyright-text {
    font-size: 1.2rem;
  }
}

/* page */
.page__header {
  position: relative;
  width: 100%;
  height: 60rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page__header {
    height: 40rem;
  }
}
.page__header-title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--black);
}
.page--contact .page__header {
  background-image: url(../images/contact-bg.webp);
  background-size: cover;
  background-position: center;
}
.page--contact-confirm {
  margin-top: 16.5rem;
}
@media screen and (max-width: 768px) {
  .page--contact-confirm {
    margin-top: 11rem;
  }
}
.page--contact-thanks {
  margin-top: 18.5rem;
}
@media screen and (max-width: 768px) {
  .page--contact-thanks {
    margin-top: 11rem;
  }
}
.page--philosophy .page__header {
  background-image: url(../images/philosophy-bg.webp);
  background-size: cover;
  background-position: center;
}
.page--merchandise .page__header {
  background-image: url(../images/merchandise-bg.webp);
  background-size: cover;
  background-position: center;
}
.page--recruit .page__header {
  background-image: url(../images/recruit-bg.webp);
  background-size: cover;
  background-position: center;
}
.page--company .page__header {
  background-image: url(../images/company-bg.webp);
  background-size: cover;
  background-position: center;
}

.page__main {
  margin-bottom: 10rem;
  padding-inline: 1.5rem;
}
@media screen and (max-width: 768px) {
  .page__main {
    margin-bottom: 5rem;
  }
}
.page__main--contact {
  margin-top: 6rem;
  max-width: 94rem;
  padding: 0 2rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .page__main--contact {
    max-width: 104rem;
  }
}
@media screen and (max-width: 768px) {
  .page__main--contact {
    margin-top: 3rem;
  }
}

.c-section-title {
  font-size: max(3.2rem, 24px);
  line-height: 1.8125;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 2.2rem;
  position: relative;
}
.c-section-title::after {
  content: "";
  display: block;
  width: 12rem;
  height: 0.2rem;
  background-color: var(--yellow);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .c-section-title {
    font-size: 2.4rem;
    padding-bottom: 1.6rem;
  }
  .c-section-title::after {
    width: 8rem;
  }
}

.c-text-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 0 2rem;
}
@media screen and (max-width: 768px) {
  .c-text-section {
    gap: 1.5rem;
  }
}
.c-text-section__title {
  font-size: 8rem;
  font-weight: 400;
  line-height: 1;
  font-family: var(--josefinsans);
  letter-spacing: 0.35em;
  color: var(--yellow);
}
.c-text-section__title.fadeIn {
  opacity: 0.4 !important;
}
@media screen and (max-width: 768px) {
  .c-text-section__title {
    font-size: 4rem;
  }
}
.c-text-section__sub-title {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
  padding-inline: 2.5rem;
  width: fit-content;
  position: relative;
}
.c-text-section__sub-title::before, .c-text-section__sub-title::after {
  content: "";
  display: block;
  width: 0.95rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .c-text-section__sub-title::before, .c-text-section__sub-title::after {
    width: 0.75rem;
    height: 2rem;
  }
}
.c-text-section__sub-title::before {
  border-top: 0.2rem solid var(--yellow);
  border-left: 0.2rem solid var(--yellow);
  position: absolute;
  top: 0;
  left: 0;
}
.c-text-section__sub-title::after {
  border-bottom: 0.2rem solid var(--yellow);
  border-right: 0.2rem solid var(--yellow);
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .c-text-section__sub-title {
    font-size: 2rem;
  }
}
.c-text-section__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .c-text-section__content {
    gap: 1.5rem;
  }
}
.c-text-section__text {
  font-size: max(1.6rem, 14px);
  line-height: 2;
  text-align: center;
  font-weight: 400;
}
.c-text-section__text--thanks {
  font-size: max(1.8rem, 16px);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .c-text-section__text {
    font-size: 1.4rem;
  }
  .c-text-section__text--thanks {
    font-size: 1.6rem;
  }
}

.c-btn {
  position: relative;
  width: fit-content;
  padding: 0.5625em 1.8125em;
  background-color: var(--white);
  border-radius: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0.1rem solid var(--black);
  font-size: max(1.6rem, 14px);
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 1.4rem;
  }
}
.c-btn span {
  position: relative;
  z-index: 1;
  pointer-events: none;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--black);
}
.c-btn::after {
  content: "";
  width: 1.5625em;
  height: 1.5625em;
  background-image: url(../images/next-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn::after {
    width: 2rem;
    height: 2rem;
  }
}
.c-btn--reverse {
  flex-direction: row-reverse;
}
.c-btn--reverse::after {
  scale: -1 -1;
}
.c-btn:hover::after {
  transform: translateX(0.5rem);
}

.c-top-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
}
.c-top-head__title {
  font-size: 6.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--yellow);
  font-family: var(--josefinsans);
}
@media screen and (max-width: 768px) {
  .c-top-head__title {
    font-size: 4.8rem;
  }
}
.c-top-head__sub-title {
  font-size: 3.3rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .c-top-head__sub-title {
    font-size: 2.8rem;
  }
}

body {
  overflow-x: hidden;
}

.wrapper {
  max-width: 126rem;
  padding-inline: 3rem;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.fdc--row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mt40 {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .mt40 {
    margin-top: 2rem;
  }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .contact__form {
    gap: 2rem;
  }
}
.contact__form-item {
  display: flex;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item {
    flex-direction: column;
    gap: 2rem;
  }
}
.contact__form-item-label {
  width: 11.1111111111em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: max(1.8rem, 16px);
}
@media screen and (max-width: 768px) {
  .contact__form-item-label {
    gap: 1.2rem;
    width: fit-content;
    font-size: 1.6rem;
  }
}
.contact__form-item-label-text {
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
}
.contact__form-item-label .hissu {
  font-size: max(1.5rem, 13px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  width: fit-content;
  padding: 0.4rem;
  border-radius: 0.4rem;
  background: var(--red);
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .contact__form-item-label .hissu {
    font-size: 1.4rem;
    padding: 0.3rem;
  }
}
.contact__form-item-label--textarea, .contact__form-item-label--checkbox {
  align-self: flex-start;
}
.contact__form-item-input {
  flex: 1;
}
.contact__form-item-input .wpcf7-form-control-wrap {
  width: 100%;
}
.contact__form-item-input .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .contact__form-item-input .wpcf7-checkbox {
    gap: 1rem;
  }
}
.contact__form-item-input .wpcf7-list-item {
  margin-left: 0;
  position: relative;
}
.contact__form-item-input .wpcf7-list-item::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background-image: url(../images/check-before.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact__form-item-input .wpcf7-list-item:has(input:checked)::before {
  background-image: url(../images/check-after.webp);
}
.contact__form-item-input .wpcf7-list-item input {
  width: 1.8rem;
  opacity: 0;
}
.contact__form-item-input .wpcf7-list-item label {
  font-size: max(1.6rem, 14px);
  line-height: 150%;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.contact__form-item-input p {
  font-size: max(1.8rem, 16px);
  line-height: 150%;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact__form-item-input p {
    font-size: max(1.6rem, 16px);
  }
}
.contact__form-item-input input {
  width: 100%;
  border: 0.1rem solid var(--gray);
  border-radius: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: max(1.8rem, 16px);
  line-height: 150%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .contact__form-item-input input {
    font-size: max(1.6rem, 16px);
  }
}
.contact__form-item-input input[type=text], .contact__form-item-input input[type=email] {
  max-width: 52rem;
}
.contact__form-item-input input[type=tel] {
  max-width: 36rem;
}
.contact__form-item-input input:placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.contact__form-item-input textarea {
  width: 100%;
  border: 0.1rem solid var(--gray);
  height: 14.4rem;
  border-radius: 0.6rem;
  padding: 0.9rem 2rem;
  font-size: max(1.8rem, 16px);
}
@media screen and (max-width: 768px) {
  .contact__form-item-input textarea {
    height: 20rem;
    font-size: max(1.6rem, 16px);
  }
}
.contact__form-item-input textarea:placeholder {
  color: rgba(51, 51, 51, 0.3);
}
.contact__form-submit {
  margin-top: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .contact__form-submit {
    margin-top: 2rem;
    gap: 2rem;
  }
}
.contact__form-submit-btn {
  position: relative;
  width: 9.6666666667em;
  height: 2.375em;
  margin-inline: auto;
  background-color: var(--yellow);
  color: var(--black);
  border-radius: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  border: 0.1rem solid var(--black);
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .contact__form-submit-btn {
    width: 20rem;
    height: 4.8rem;
    font-size: 1.6rem;
  }
}
.contact__form-submit-btn span {
  position: relative;
  z-index: 1;
  pointer-events: none;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  font-size: 16px;
}
.contact__form-submit-btn::after {
  content: "";
  width: 1.0416666667em;
  height: 1.0416666667em;
  background-image: url(../images/next-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.contact__form-submit-btn input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.contact__form-submit-btn:hover::after {
  transform: translateX(0.5rem);
}
.contact__form-submit-btn .wpcf7-spinner {
  display: none;
}
.contact__form-submit-btn--previous {
  background-color: var(--white);
  color: var(--black);
  width: 13.25em;
  height: 2.8125em;
  font-size: max(1.6rem, 14px);
  margin-inline: auto;
  flex-direction: row-reverse;
}
.contact__form-submit-btn--previous::after {
  scale: -1 -1;
}
.contact__form-submit-btn--previous span {
  font-size: max(1.6rem, 14px);
}
@media screen and (max-width: 768px) {
  .contact__form-submit-btn--previous {
    width: 18rem;
    height: 4rem;
  }
  .contact__form-submit-btn--previous span {
    font-size: 1.4rem;
  }
}

.policy {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .policy {
    margin-top: 2rem;
  }
}
.policy__inner {
  max-width: 80rem;
  width: 100%;
  height: 18.3rem;
  border: 1px solid var(--gray);
  margin-left: auto;
  border-radius: 0.4rem;
  overflow: hidden;
  overflow-y: auto;
  padding: 2rem 3rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .policy__inner {
    max-width: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .policy__inner {
    height: 17rem;
    padding: 1rem 2rem;
  }
}
.policy__scroll {
  min-height: fit-content;
}
.policy__scroll h3 {
  font-size: max(2.4rem, 18px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
}
.policy__scroll h3 + p {
  margin-top: 1rem;
  font-size: max(1.6rem, 14px);
}
@media screen and (max-width: 768px) {
  .policy__scroll h3 {
    font-size: max(2rem, 16px);
  }
  .policy__scroll h3 + p {
    font-size: 1.4rem;
  }
}
.policy__scroll a {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
.policy__scroll h4 {
  font-size: max(1.6rem, 14px);
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 2rem;
  padding-bottom: 0.6rem;
  border-bottom: 0.2rem solid var(--yellow);
}
@media screen and (max-width: 768px) {
  .policy__scroll h4 {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
.policy__scroll p,
.policy__scroll li {
  font-size: max(1.4rem, 12px);
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .policy__scroll p,
  .policy__scroll li {
    font-size: 1.2rem;
  }
}
.policy__scroll p {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .policy__scroll p {
    margin-top: 1rem;
  }
}
.policy__scroll ul {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .policy__scroll ul {
    margin-top: 1rem;
  }
}
.policy__scroll li {
  list-style: disc;
  margin-left: 2em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .policy__scroll li {
    margin-left: 1.5em;
  }
}
.policy__text {
  text-align: center;
  font-size: max(1.6rem, 14px);
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .policy__text {
    font-size: 1.4rem;
  }
}

.thanks__body {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .thanks__body {
    gap: 4rem;
    margin-top: 4rem;
  }
}
.thanks__box {
  max-width: max(88.8rem, 800px);
  background-color: var(--light-gray);
  padding: 3rem 4rem;
  border-radius: 0.6rem;
  margin-inline: auto;
}
.thanks__box-text {
  font-size: max(1.8rem, 16px);
  line-height: 150%;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .thanks__box-text {
    font-size: 1.6rem;
  }
}
.thanks__btn {
  margin-inline: auto;
}
.thanks__btn-text {
  font-size: max(1.6rem, 14px);
  line-height: 150%;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.greet {
  margin-top: 5rem;
  padding-block: 6rem;
  background-color: var(--light-yellow);
  width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .greet {
    width: 100%;
    max-width: 80%;
  }
}
.greet__inner {
  max-width: 80rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .greet__inner {
    max-width: 100%;
    padding-inline: 2.5rem;
  }
}
.greet__body {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.greet__body-text {
  font-size: max(1.6rem, 12px);
  line-height: 180%;
}
.greet__body-text--right {
  text-align: right;
}

.mission {
  margin-top: 10rem;
}
@media screen and (max-width: 768px) {
  .mission {
    margin-top: 5rem;
  }
}
.mission__inner {
  margin-top: 4rem;
  background: url(../images/mission-bg.webp) no-repeat center center/cover;
  aspect-ratio: 1440/482;
  width: 100%;
  padding-block: 11.1rem;
}
@media screen and (max-width: 768px) {
  .mission__inner {
    padding-block: 5rem;
  }
}
.mission__body {
  background-color: var(--white);
  padding: 4rem 8rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .mission__body {
    padding: 2rem 2rem;
  }
}
.mission__body-text {
  text-align: center;
  line-height: 200%;
  font-size: 3rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mission__body-text {
    font-size: 1.7rem;
  }
}
.mission__body .marks {
  padding-inline: 2.4rem;
}
@media screen and (max-width: 768px) {
  .mission__body .marks {
    padding-inline: 1rem;
  }
}
.mission__body .marks::before, .mission__body .marks:after {
  width: 1.6rem;
  height: 4.2rem;
}
@media screen and (max-width: 768px) {
  .mission__body .marks::before, .mission__body .marks:after {
    width: 1rem;
    height: 2.8rem;
  }
}

.marks {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  position: relative;
}
.marks::before, .marks:after {
  content: "";
  position: absolute;
  display: block;
}
.marks::before {
  top: 0;
  left: 0;
  border-top: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
}
.marks:after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
}

.company {
  margin-block: 10rem;
}
@media screen and (max-width: 768px) {
  .company {
    margin-block: 5rem;
  }
}
.company__inner {
  max-width: calc(800px + 8rem);
  padding-inline: 8rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .company__inner {
    max-width: 100%;
    padding-inline: 2rem;
  }
}
.company__body {
  margin-top: 4rem;
}
.company .c-table__row-item:nth-child(odd) {
  background-color: var(--light-gray);
}

.c-table__row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.c-table__row-item {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-table__row-item {
    flex-direction: column;
  }
}
.c-table__row-title {
  font-size: max(2rem, 16px);
  padding-inline: 2rem;
  padding-block: 0.85rem;
  width: 16rem;
  min-width: 140px;
  border-right: 1px solid #333;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-table__row-title {
    width: 100%;
    padding-inline: 1rem;
    border-right: none;
  }
}
.c-table__row-content {
  font-size: max(1.8rem, 14px);
  line-height: 150%;
  flex: 1;
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  .c-table__row-content {
    padding: 1rem 1rem;
    padding-top: 0;
  }
}

.philosophy {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin-top: 6rem;
  }
}
.philosophy__inner {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .philosophy__inner {
    gap: 6rem;
  }
}
.philosophy__item {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: 7rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .philosophy__item {
    padding-bottom: 0;
    padding-inline: 1.5rem;
  }
}
.philosophy__item::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: 0;
  width: 100%;
  height: calc(100% - 5rem);
  background: var(--light-yellow);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .philosophy__item::before {
    display: none;
  }
}
.philosophy__item-inner {
  display: flex;
  gap: 5rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .philosophy__item-inner {
    flex-direction: column;
    gap: 2rem;
  }
}
.philosophy__item--01 .philosophy__item-img {
  width: 50rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .philosophy__item--01 .philosophy__item-img {
    width: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item--01 .philosophy__item-img {
    width: 30.6rem;
    margin-right: auto;
  }
}
.philosophy__item--02 .philosophy__item-inner {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .philosophy__item--02 .philosophy__item-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item--02 .philosophy__item-body::before {
    top: -7rem;
    height: calc(100% + 7rem);
  }
}
.philosophy__item--02 .philosophy__item-img {
  width: 47.5rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .philosophy__item--02 .philosophy__item-img {
    width: 57.5rem;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item--02 .philosophy__item-img {
    width: 32rem;
    margin-left: auto;
  }
}
.philosophy__item--03 .philosophy__item-img {
  width: 50rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .philosophy__item--03 .philosophy__item-img {
    width: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item--03 .philosophy__item-img {
    width: 30.6rem;
    margin-right: auto;
  }
}
.philosophy__item--03 .philosophy__item-text {
  max-width: 50rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .philosophy__item--03 .philosophy__item-text {
    max-width: inherit;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item--03 .philosophy__item-text {
    max-width: inherit;
  }
}
.philosophy__item--04 .philosophy__item-inner {
  flex-direction: row-reverse;
  padding-left: 7.7rem;
}
@media screen and (max-width: 768px) {
  .philosophy__item--04 .philosophy__item-inner {
    flex-direction: column;
    padding-left: 0;
  }
}
.philosophy__item--04 .philosophy__item-img {
  width: 57.7rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .philosophy__item--04 .philosophy__item-img {
    width: 67.7rem;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item--04 .philosophy__item-img {
    width: 35.7rem;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item-img {
    position: relative;
    z-index: 2;
  }
}
.philosophy__item-body {
  width: 45rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .philosophy__item-body {
    width: 60rem;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__item-body {
    gap: 2rem;
    width: 100%;
    padding-bottom: 6rem;
    position: relative;
    z-index: 1;
  }
  .philosophy__item-body::before {
    content: "";
    position: absolute;
    top: -5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 3rem);
    height: calc(100% + 5rem);
    background: var(--light-yellow);
    z-index: -1;
  }
}
.philosophy__item-point {
  font-size: 6.6rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--yellow);
  font-family: var(--josefinsans);
}
@media screen and (max-width: 768px) {
  .philosophy__item-point {
    font-size: 4rem;
  }
}
.philosophy__item-title {
  font-size: max(2.8rem, 18px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .philosophy__item-title {
    font-size: 2rem;
  }
}
.philosophy__item-text {
  font-size: max(1.6rem, 12px);
  letter-spacing: 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .philosophy__item-text {
    font-size: 1.5rem;
  }
}
.philosophy__item-text p {
  font-weight: 400;
}
.philosophy__item-text h4 {
  margin-top: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .philosophy__item-text h4 {
    margin-top: 1.6rem;
  }
}
.philosophy__item-text ul {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .philosophy__item-text ul {
    margin-top: 1.6rem;
  }
}
.philosophy__item-text ul li {
  position: relative;
  padding-left: 1.5em;
}
@media screen and (max-width: 768px) {
  .philosophy__item-text ul li {
    padding-left: 0;
  }
}
.philosophy__item-text ul li span {
  font-size: 0.875em;
  margin-left: -1.5em;
}
@media screen and (max-width: 768px) {
  .philosophy__item-text ul li span {
    font-size: 0.8666666667em;
    margin-left: 0;
  }
}
.philosophy__item-text ul li::before {
  content: "・";
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .philosophy__item-text ul li::before {
    display: none;
  }
}

.equipment {
  background: var(--light-gray);
  padding-block: 6rem 8rem;
  padding-inline: 3rem;
  margin-top: 13rem;
}
@media screen and (max-width: 768px) {
  .equipment {
    padding-block: 4rem;
    padding-inline: 3rem;
    margin-top: 6rem;
  }
}
.equipment__inner {
  max-width: 100rem;
  margin-inline: auto;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .equipment__inner {
    max-width: 110rem;
  }
}
@media screen and (max-width: 768px) {
  .equipment__inner {
    max-width: 100%;
  }
}
.equipment__text {
  margin-top: 2.5rem;
  text-align: center;
  line-height: 1.8;
  font-weight: 400;
}
.equipment__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 4rem 4rem;
  background: var(--white);
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .equipment__box {
    padding: 3rem;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}
.equipment__box-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: fit-content;
  margin-inline: auto;
}
.equipment__box-item {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  width: fit-content;
  font-size: max(1.6rem, 12px);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .equipment__box-item {
    flex-direction: column;
    align-items: flex-start;
    font-size: 1.4rem;
    gap: 0.5rem;
  }
}
.equipment__box-item dt {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 1.3rem;
  width: 8.9375em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .equipment__box-item dt {
    width: 100%;
    gap: 1rem;
  }
}
.equipment__box-item dt span {
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--yellow);
  font-family: var(--josefinsans);
}
@media screen and (max-width: 768px) {
  .equipment__box-item dt span {
    font-size: 3rem;
  }
}
.equipment__box-item dd {
  font-weight: 400;
}
.equipment__box-img {
  max-width: 80rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.9rem;
}
@media screen and (max-width: 1024px) and (min-width: 769px) {
  .equipment__box-img {
    max-width: 90rem;
  }
}
@media screen and (max-width: 768px) {
  .equipment__box-img {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
}

.commitment__title {
  margin-top: 3rem;
  font-size: 3.2rem;
  text-align: center;
  font-weight: 400;
  line-height: 200%;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .commitment__title {
    font-size: 2rem;
  }
}
.commitment .marks {
  padding-inline: 2rem;
  gap: 1rem;
  width: fit-content;
  margin-inline: auto;
}
.commitment .marks::before, .commitment .marks:after {
  width: 0.95rem;
  height: 2.5rem;
}
@media screen and (max-width: 768px) {
  .commitment .marks::before, .commitment .marks:after {
    width: 0.6rem;
    height: 1.7rem;
  }
}
.commitment__text {
  margin-top: 3rem;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
}
.commitment__images {
  margin-top: 4rem;
  display: flex;
  max-width: 1000px;
  padding-inline: 8rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .commitment__images {
    padding-inline: 2rem;
    flex-direction: column;
    width: 80%;
    max-width: 500px;
  }
}
.commitment__images img {
  display: block;
  width: 33.3%;
}
@media screen and (max-width: 768px) {
  .commitment__images img {
    width: 100%;
  }
}

.recruit-entry {
  margin-top: 10rem;
  background-color: var(--light-yellow);
  padding-block: 6rem 8rem;
  padding-inline: 10rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit-entry {
    padding-inline: 2rem;
    padding-block: 4rem 6rem;
    margin-top: 5rem;
  }
}
.recruit-entry__title {
  font-size: 3.2rem;
  text-align: center;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -3rem;
  padding-inline: 3rem;
  width: max-content;
}
.recruit-entry__title:after, .recruit-entry__title:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 5rem;
  background-color: var(--deep-yellow);
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .recruit-entry__title:after, .recruit-entry__title:before {
    width: 0.3rem;
    height: 4rem;
  }
}
.recruit-entry__title:after {
  transform: rotate(30deg);
  right: -1.5rem;
}
.recruit-entry__title:before {
  transform: rotate(-30deg);
  left: -1.5rem;
}
@media screen and (max-width: 768px) {
  .recruit-entry__title {
    font-size: 2rem;
  }
}
.recruit-entry__body {
  background-color: var(--white);
  padding-block: 4rem;
  max-width: 1000px;
  margin-inline: auto;
}
.recruit-entry__list {
  max-width: 800px;
  padding-inline: 4rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .recruit-entry__list {
    max-width: 100%;
    padding-inline: 2rem;
  }
}
.recruit-entry__item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .recruit-entry__item {
    gap: 1rem;
  }
}
.recruit-entry__item span {
  flex-shrink: 1;
}
.recruit-entry__item p {
  font-size: max(1.8rem, 16px);
  line-height: 180%;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .recruit-entry__item p {
    font-size: max(1.6rem, 12px);
  }
}
.recruit-entry__sub-title {
  text-align: center;
  margin-top: 3rem;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .recruit-entry__sub-title {
    font-size: 1.8rem;
  }
}

.recruit {
  margin-block: 10rem;
}
@media screen and (max-width: 768px) {
  .recruit {
    margin-block: 5rem;
  }
}
.recruit__inner {
  max-width: calc(800px + 8rem);
  padding-inline: 8rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .recruit__inner {
    max-width: 100%;
    padding-inline: 2rem;
  }
}
.recruit__body {
  margin-top: 4rem;
}
.recruit .c-table__row-item:nth-child(odd) {
  background-color: var(--light-yellow);
}

.package {
  background: url(../images/recruit-package-bg.webp) no-repeat center center/cover;
  padding-inline: 10rem;
  padding-block: 6rem 8rem;
}
@media screen and (max-width: 768px) {
  .package {
    padding-block: 5rem;
    padding-inline: 2rem;
  }
}
.package__body {
  margin-top: 3rem;
  max-width: 1000px;
  margin-inline: auto;
  background-color: var(--white);
  padding-block: 3rem 4rem;
  padding-inline: 4rem;
}
@media screen and (max-width: 768px) {
  .package__body {
    padding-inline: 2rem;
  }
}
.package__list {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  gap: 4rem;
  margin-inline: auto;
}
.package__item h3 {
  background-color: var(--deep-yellow);
  padding-block: 0.8rem;
  padding-inline: 2rem;
  width: 100%;
  text-align: center;
  line-height: 180%;
  color: var(--white);
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .package__item h3 {
    font-size: 1.8rem;
  }
}
.package__item p {
  font-size: 18px;
  line-height: 200%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .package__item p {
    font-size: 1.6rem;
  }
}
.package:nth-child(2) h3 {
  margin-bottom: 3rem;
}
.package__list-sub {
  display: flex;
  justify-content: center;
  gap: 2rem 6rem;
  flex-wrap: wrap;
  max-width: 550px;
  max-width: 700px;
  margin-inline: auto;
}
.package__list-sub li {
  width: fit-content;
}
.package__list-sub li p {
  margin-bottom: 1rem;
  text-align: center;
}
.package__list-sub li svg {
  width: 12rem;
  height: auto;
  min-width: 120px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .package__list-sub {
    gap: 1rem 3rem;
    max-width: 280px;
  }
  .package__list-sub li svg {
    min-width: auto;
    width: 8rem;
  }
}

.recruit-process {
  margin-block: 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .recruit-process {
    margin-block: 5rem;
  }
}
.recruit-process__inner {
  padding-inline: 10rem;
}
@media screen and (max-width: 768px) {
  .recruit-process__inner {
    padding-inline: 4rem;
  }
}
.recruit-process__list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}
.recruit-process__list::before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--yellow);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.recruit-process__list li {
  background-color: var(--yellow);
  border-radius: 0.6rem;
  padding-block: 0.8rem;
  font-size: max(2rem, 18px);
  text-align: center;
  line-height: 180%;
  letter-spacing: 0.05em;
}
.recruit-process__contact {
  margin-top: 4rem;
  background-color: var(--light-gray);
  padding-block: 3rem;
  padding-inline: 4rem;
  border-radius: 0.6rem;
  width: fit-content;
  display: flex;
  gap: 3rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .recruit-process__contact {
    padding-inline: 2rem;
    gap: 1.5rem;
  }
}
.recruit-process__contact p {
  flex: 1;
  font-size: 18px;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .recruit-process__contact p {
    font-size: 1.4rem;
  }
}
.recruit-process__contact p a {
  cursor: pointer;
  text-decoration: underline;
  transition: 0.3s;
}
.recruit-process__contact p a:hover {
  text-decoration: none;
  transition: 0.3s;
}

.merchandise-lineup {
  margin-block: 9rem 10rem;
}
@media screen and (max-width: 768px) {
  .merchandise-lineup {
    margin-block: 6rem 8rem;
  }
}
.merchandise-lineup__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 10rem;
  display: flex;
  flex-direction: column;
  gap: 10rem;
  container-type: inline-size;
}
@media screen and (max-width: 768px) {
  .merchandise-lineup__inner {
    padding-inline: 2rem;
    gap: 5rem;
  }
}
.merchandise-lineup__list {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem 4rem;
}
@container (max-width: 800px) {
  .merchandise-lineup__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem 3rem;
  }
}
@container (max-width: 600px) {
  .merchandise-lineup__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
.merchandise-lineup__list li img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.merchandise-lineup__list li h3 {
  margin-top: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .merchandise-lineup__list li h3 {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}
.merchandise-lineup__list li p {
  margin-top: 0.8rem;
  font-size: 1.6rem;
  line-height: 180%;
  /*   display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis; */
}
@media screen and (max-width: 768px) {
  .merchandise-lineup__list li p {
    font-size: 1.2rem;
    margin-top: 0rem;
  }
}
.mv {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/mv.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    background-image: url(../images/mv-sp.webp);
  }
}
.mv__title {
  text-align: center;
  width: fit-content;
  padding: 1.3rem 1.8rem 1.6rem;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .mv__title {
    background: transparent;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8rem;
  }
}
.mv__title span {
  font-size: 4rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  .mv__title span {
    font-size: 3.2rem;
    padding: 0.7rem 0.7rem;
    width: fit-content;
    background: var(--white);
  }
}

.scroll {
  position: absolute;
  right: 7rem;
  bottom: -8.6rem;
  writing-mode: vertical-rl;
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: var(--josefinsans);
}
@media screen and (max-width: 768px) {
  .scroll {
    font-size: 1.6rem;
    right: 2rem;
    bottom: -6rem;
  }
}
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: 7.4rem;
  content: "";
  height: 13rem;
  margin: auto;
  position: absolute;
  right: 50%;
  transform: translateX(50%);
  width: 1px;
}
@media screen and (max-width: 768px) {
  .scroll::before {
    height: 10rem;
    bottom: 5.5rem;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.top-company {
  position: relative;
  margin-top: 13.2rem;
  padding-bottom: 12.5rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-company {
    margin-top: 6.1rem;
    padding-bottom: 4rem;
    padding-inline: 1.5rem;
  }
}
.top-company::before {
  content: "";
  position: absolute;
  top: 10.2rem;
  left: 0;
  width: 100%;
  height: calc(100% - 10.2rem);
  background-color: #FDF1DD;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top-company::before {
    top: 4.8rem;
    height: calc(100% - 4.8rem);
  }
}
.top-company__inner {
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 12rem;
  padding-left: 4rem;
}
@media screen and (max-width: 768px) {
  .top-company__inner {
    flex-direction: column-reverse;
    gap: 2rem;
    padding-left: 0;
  }
}
.top-company__img {
  width: 68.1rem;
}
@media screen and (max-width: 768px) {
  .top-company__img {
    max-width: 36rem;
    width: 100%;
    margin-inline: auto;
  }
}
.top-company__body {
  width: fit-content;
  padding-top: 18rem;
}
@media screen and (max-width: 768px) {
  .top-company__body {
    padding-top: 0rem;
    width: 100%;
  }
}
.top-company__head {
  align-items: flex-start;
  gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .top-company__head {
    gap: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .top-company__sub-title {
    font-size: 3.2rem;
  }
}
.top-company__sub-title02 {
  text-align: left;
  font-size: 2.6rem;
  margin-top: 2rem;
  padding-inline: 1.95rem;
}
@media screen and (max-width: 768px) {
  .top-company__sub-title02 {
    font-size: 1.8rem;
    padding-inline: 1.8rem;
  }
}
.top-company__btn {
  margin-top: 2rem;
}
.top-company__text {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 4rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-company__text {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

.top-philosophy {
  position: relative;
  padding-block: 8rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top-philosophy {
    padding-block: 4rem 6rem;
    padding-inline: 1.5rem;
  }
}
.top-philosophy__inner {
  max-width: 144rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 0.7rem;
  padding-left: 16rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__inner {
    flex-direction: column;
    gap: 2rem;
    padding-left: 0;
  }
}
.top-philosophy__img {
  width: 58.7rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__img {
    max-width: 36rem;
    width: 100%;
    margin-inline: auto;
  }
}
.top-philosophy__body {
  width: 60rem;
  padding-top: 6.6rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__body {
    width: 100%;
    padding-top: 0rem;
  }
}
.top-philosophy__head {
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (min-width: 769px) {
  .top-philosophy__sub-title {
    font-size: 3.2rem;
  }
}
.top-philosophy__sub-title02 {
  font-size: max(2.6rem, 18px);
  padding-inline: 1.95rem;
  margin-top: 4.3rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__sub-title02 {
    font-size: 1.8rem;
    margin-top: 2rem;
    padding-inline: 1.75rem;
    text-align: left;
  }
}
.top-philosophy__btn {
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__btn {
    margin-top: 2rem;
  }
}
.top-philosophy__text {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .top-philosophy__text {
    font-size: 1.4rem;
    margin-top: 3rem;
  }
}

.top-lineup {
  padding: 8rem 0;
  background-color: var(--light-gray);
}
.top-lineup__inner {
  max-width: 1120px;
  width: calc(100% - 20rem);
  margin: 0 auto;
  padding: 0;
  gap: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top-lineup__inner {
    width: calc(100% - 4rem);
  }
}
@media screen and (min-width: 769px) {
  .top-lineup__head {
    gap: 2rem;
  }
}
@media screen and (min-width: 769px) {
  .top-lineup__sub-title {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-lineup__sub-title {
    letter-spacing: 0;
  }
}
.top-lineup .merchandise-lineup__swiper {
  width: 100%;
}
.top-lineup .merchandise-lineup__list {
  gap: 0rem !important;
  width: 100%;
}
@container (max-width: 800px) {
  .top-lineup .merchandise-lineup__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .top-lineup .merchandise-lineup__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}
.top-lineup .merchandise-lineup__list li {
  padding: 3rem 1.2rem;
  border-radius: 1rem;
  background-color: var(--white);
}
.top-lineup .merchandise-lineup__list li img {
  padding-inline: 0.8rem;
}
@media screen and (max-width: 768px) {
  .top-lineup .merchandise-lineup__list li {
    padding: 2rem 1rem;
  }
}
@media screen and (min-width: 769px) {
  .top-lineup .merchandise-lineup__list:not(:has(li:nth-child(5))) + .top-lineup__el {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .top-lineup .merchandise-lineup__list:not(:has(li:nth-child(3))) + .top-lineup__el {
    display: none !important;
  }
}
.top-lineup .top-lineup__el {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
}
.top-lineup .top-lineup__next-arrow,
.top-lineup .top-lineup__prev-arrow {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  background-image: url(../images/next-arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.top-lineup .top-lineup__next-arrow.swiper-button-disabled,
.top-lineup .top-lineup__prev-arrow.swiper-button-disabled {
  opacity: 0.5;
}
.top-lineup .top-lineup__prev-arrow {
  scale: -1 -1;
}
.top-lineup .top-lineup__pagination.swiper-pagination-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  counter-reset: number 0;
}
.top-lineup .top-lineup__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--black);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  opacity: 0.5;
  margin: 0;
}
.top-lineup .top-lineup__pagination.swiper-pagination-bullets .swiper-pagination-bullet::before {
  counter-increment: number 1;
  content: counter(number) " ";
  font-size: 1.6rem;
}
.top-lineup .top-lineup__pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}
.top-lineup__btn {
  margin-top: 4rem;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .top-lineup__btn {
    margin-top: 2rem;
  }
}

.cta__col {
  display: flex;
}
@media screen and (max-width: 768px) {
  .cta__col {
    display: contents;
  }
}
@media screen and (min-width: 769px) {
  .cta__col .cta__item {
    flex: 1;
    padding-block: 14.5rem;
  }
}
.cta__item {
  width: 100%;
  padding-block: 7.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.cta__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}
.cta__item:hover::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .cta__item {
    padding-block: 5rem;
    gap: 1rem;
  }
}
.cta__item--contact {
  background-image: url(../images/cta-item01.webp);
}
.cta__item--merchandise {
  background-image: url(../images/cta-item02.webp);
}
.cta__item--recruit {
  background-image: url(../images/cta-item03.webp);
}
.cta__item-title {
  font-size: max(3.3rem, 24px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .cta__item-title {
    font-size: 2.4rem;
  }
}
.cta__item-text {
  font-size: max(2rem, 16px);
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .cta__item-text {
    font-size: 1.6rem;
  }
}

.top-corporate {
  padding: 8rem 3rem;
  background-image: url(../images/top-corporate-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .top-corporate {
    padding: 5rem 2rem;
  }
}
.top-corporate__inner {
  max-width: 100rem;
  width: 100%;
  margin: 0 auto;
  background: var(--white);
  padding: 8rem 10rem 6rem;
}
@media screen and (max-width: 768px) {
  .top-corporate__inner {
    padding: 4rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  .top-corporate__title {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  .top-corporate__sub-title {
    font-size: 3.2rem;
  }
}
.top-corporate__text {
  font-size: max(1.6rem, 14px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: 4.2rem;
}
@media screen and (max-width: 768px) {
  .top-corporate__text {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}
.top-corporate__btn {
  margin-top: 3rem;
  margin-inline: auto;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .top-corporate__btn {
    margin-top: 2rem;
  }
}

/*# sourceMappingURL=style.css.map */
