@charset "UTF-8";
:root {
  --black: #232323;
  --danger: #ff0000;
  --lime: #dfff00;
  --bg-gray: #eeeeee;
  --blue: #5b72e7;
  --green: #4ec95f;
}

.pink {
  color: #ff0c75;
}

.purple {
  color: #8b93ed;
}

.green {
  color: #57b75f;
}

.mazenda {
  color: #CE1F9D;
}

.gray {
  color: #65688E;
}

.red {
  color: #FF0000;
}

.greenery {
  color: #119C1D;
}

.indigo {
  color: #5A61E8;
}

body {
  color: var(--black);
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Inter", "Monomaniac One", sans-serif;
  line-height: 1.8;
}

.text-bold {
  font-weight: 600;
}

a {
  display: inline-block;
  transition: transform 0.4s ease;
}
a:hover {
  transform: scale(1.1);
}

.blob {
  position: absolute;
  top: 100px;
  pointer-events: none;
  z-index: -1;
}

@keyframes blobFloat01 {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(30px, -20px);
  }
  50% {
    transform: translate(-25px, 35px);
  }
  75% {
    transform: translate(20px, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
/*----------------------------------
  青
-----------------------------------*/
.blob-blue {
  animation: blobFloat01 8s ease-in-out infinite;
}

.blob-blue--fv {
  position: absolute;
  top: -100px;
  left: clamp(-80px, -5vw, 0px);
  width: 100%;
  max-width: min(100%, 735px);
  height: 100%;
  z-index: -1;
  overflow: hidden;
  box-sizing: border-box;
}
.blob-blue--fv svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.blob-blue--news {
  position: absolute;
  top: 20px;
  right: 0;
  left: auto;
  width: min(100%, 735px);
  max-width: 100%;
  height: 100%;
  z-index: -1;
}
.blob-blue--news svg {
  display: block;
  height: auto;
}

.blob-blue--about {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: min(100%, 700px);
  max-width: 100%;
  height: auto;
  z-index: -1;
}
.blob-blue--about svg {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .blob-blue--about {
    top: 200px;
    width: 400px;
  }
}

.blob-blue--contact {
  position: absolute;
  top: -50px;
  right: auto;
  left: -100px;
  width: min(100%, clamp(460px, 460px + 190 * (100vw - 768px) / 732, 600px));
  max-width: 100%;
  height: auto;
  z-index: -1;
}
.blob-blue--contact svg {
  display: block;
  width: 100%;
  height: auto;
}

/*----------------------------------
  黄
-----------------------------------*/
.blob-yellow {
  animation: blobFloat01 8s ease-in-out infinite;
}

.blob-yellow--about {
  position: absolute;
  top: -100px;
  left: -120px;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blob-yellow--about {
    top: 500px;
  }
}

.blob-yellow--gymmap {
  position: absolute;
  top: 250px;
  left: -250px;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blob-yellow--gymmap {
    left: -150px;
    overflow: visible;
  }
}

.blob-yellow--ecsite {
  position: absolute;
  top: 420px;
  right: 0;
  left: auto;
  width: 430px;
  max-width: min(430px, 100vw);
  height: auto;
  z-index: -1;
  overflow: visible;
  /* 図のように右端で円形が切れる見え方 */
  transform: translateX(28%);
}
.blob-yellow--ecsite svg {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
@media (max-width: 1023px) {
  .blob-yellow--ecsite {
    top: 560px;
    width: min(360px, 90vw);
    transform: translateX(20%);
  }
}
@media (max-width: 767px) {
  .blob-yellow--ecsite {
    top: 600px;
    width: min(300px, 85vw);
    transform: translateX(15%);
  }
}

.blob-yellow--spirit {
  position: absolute;
  top: 0;
  left: -200px;
  width: 430px;
  max-width: min(430px, 100vw);
  height: auto;
  overflow: visible;
  z-index: 0;
  /* 図のように右端で円形が切れる見え方 */
  transform: translateX(28%);
}
.blob-yellow--spirit svg {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}
@media (max-width: 767px) {
  .blob-yellow--spirit {
    top: 380px;
    left: -80px;
    width: min(300px, 85vw);
    transform: translateX(15%);
  }
}

.header {
  background: #FFF;
  color: #000;
  box-shadow: 0 3.861px 3.861px rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 11px;
  margin-inline: 27px;
  border-radius: 50px;
  margin-block-start: 11px;
  z-index: 102;
  isolation: isolate;
}
.header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.header.is-scrolled {
  background: transparent;
  box-shadow: 0 3.861px 3.861px rgba(0, 0, 0, 0.15);
}
.header.is-scrolled::before {
  opacity: 1;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
}
@media (max-width: 1070px) {
  .header {
    margin-inline: 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  }
}
@media (max-width: 767px) {
  .header {
    top: 0;
    margin-block-start: 0;
  }
}

.header__inner {
  position: relative;
  z-index: 1;
  align-items: center;
  display: flex;
  gap: 56px;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 69px;
  padding-inline: 28px 43px;
}
@media (max-width: 1379px) {
  .header__inner {
    gap: 30px;
    padding-inline: 14px 21px;
  }
}
@media (max-width: 1299px) {
  .header__inner {
    gap: 20px;
  }
}
@media (max-width: 499px) {
  .header__inner {
    padding: 0 10px;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo img {
  width: 46px;
  height: 46px;
}

.logo__text {
  color: #000;
  font-family: ABeeZee;
  font-size: 15px;
  font-weight: 400;
}

.header__nav {
  display: flex;
  gap: 19px;
  margin-left: auto;
}
@media (max-width: 1070px) {
  .header__nav {
    display: none;
  }
}

.header__nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header__nav-en {
  color: #000;
  font-size: 19px;
  font-weight: 600;
}
@media (max-width: 1299px) {
  .header__nav-en {
    font-size: 15px;
  }
}

.header__nav-ja {
  color: #FF0000;
  font-size: 8px;
  font-weight: 600;
}

.header-cta {
  display: flex;
  gap: 16px;
  margin-inline-end: 25px;
}
@media (max-width: 1070px) {
  .header-cta {
    display: none;
  }
}

.header__sp-tools {
  display: none;
  align-items: center;
  flex-shrink: 0;
  gap: 20px;
  margin-left: auto;
}
@media (max-width: 1070px) {
  .header__sp-tools {
    display: flex;
    margin-inline-end: 0;
  }
}

.header-btn.header-btn--sp {
  flex-shrink: 0;
  display: none;
}
@media (max-width: 1070px) {
  .header-btn.header-btn--sp {
    width: 171px;
    display: inline-flex;
  }
}
@media (max-width: 499px) {
  .header-btn.header-btn--sp {
    display: none;
  }
}

/*----------------------------------
  アイコン
-----------------------------------*/
.drawer__icon {
  flex-shrink: 0;
  align-self: center;
  width: 46px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drawer__icon--bars {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  position: relative; /* ← ×アニメーションの基準 */
}

.drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}

/*----------------------------------
  メニューが開いている時
-----------------------------------*/
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 6px;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -6px;
}

/*----------------------------------
  ドロワーメニュー
-----------------------------------*/
.drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100svh;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
}
.drawer.js-show {
  translate: 0;
}

.drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 140px 40px;
  padding-left: 34px;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-block-end: 40px;
}
.drawer__list li a {
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 19.307px;
  font-weight: 600;
}

.drawer-btn {
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  background: #ff0000;
  width: 178px;
  padding: 12px 24px;
  position: relative;
}
.drawer-btn span {
  flex: 1;
  text-align: center;
}
.drawer-btn svg {
  position: absolute;
  right: 19px;
}

.drawer__item-ja {
  color: #FF0000;
  font-size: 12px;
  font-weight: 600;
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

.footer {
  background-image: url(../../images/footer__bg.webp);
  background-color: #000;
  background-position: center 74%;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  position: relative;
}
@media (max-width: 767px) {
  .footer {
    background-image: url(../../images/footer__bg-sp.webp);
  }
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 34px 76px 0 60px;
}
@media (max-width: 1024px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 40px 24px 14px;
  }
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 43px 41px 20px;
    gap: 45px;
  }
}

.footer__title {
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (max-width: 1024px) {
  .footer__title {
    gap: 24px;
  }
}

.footer__address-wrap {
  color: #FFF;
  font-size: 12px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer__address-wrap {
    font-size: 14px;
  }
}

.footer__info-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 41px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 863px;
}
@media (max-width: 1199px) {
  .footer__info {
    width: auto;
  }
}
@media (max-width: 1024px) {
  .footer__info {
    width: 100%;
  }
}

.footer__nav {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .footer__nav {
    flex-direction: column;
    row-gap: 17px;
  }
}

.footer__nav a {
  font-size: 20px;
  font-weight: 700;
}

.footer__cta-wrap {
  padding-inline: 21px;
}

.footer-cta {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
@media (max-width: 1024px) {
  .footer-cta {
    margin-left: 0;
    width: 100%;
  }
  .footer-cta a {
    flex: 1;
  }
}

.footer-cta--sp {
  display: none;
}
@media (max-width: 767px) {
  .footer-cta--sp {
    display: flex;
    gap: 16px;
    padding-inline: 21px;
  }
  .footer-cta--sp a {
    width: 100%;
    justify-content: center;
    font-size: 12px;
  }
}

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

.footer__name {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .footer__name {
    font-size: 28px;
  }
}
@media (max-width: 500px) {
  .footer__name {
    font-size: 24px;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  padding-block: 16px 14px;
}

.header-btn {
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  background: #ff0000;
  width: 171px;
  padding: 12px 24px;
  position: relative;
}
.header-btn span {
  flex: 1;
  text-align: center;
}
.header-btn svg {
  position: absolute;
  right: 19px;
}
@media (max-width: 1299px) {
  .header-btn {
    width: 120px;
  }
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-block: 16px;
  padding-inline: 40px;
  min-width: 300px;
  border-radius: 999px;
  background: transparent;
  overflow: visible;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--btn-color);
  border: 1px solid #000;
  z-index: 1;
}
.btn::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #000;
  border: 1px solid #000;
  z-index: 0;
}
.btn span {
  position: relative;
  text-align: center;
  font-weight: 600;
  z-index: 2;
}
.btn svg {
  position: absolute;
  right: 27px;
  z-index: 2;
}

.fv__btn {
  position: relative;
  border-radius: 67.64px;
  background: linear-gradient(to right, #581fe7, #ac83df);
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 60px;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  max-width: min(300px, 100%);
  align-self: flex-start;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .fv__btn {
    width: 240px;
    max-width: 240px;
    padding: 14px 30px;
  }
}
.fv__btn span {
  text-align: center;
}
@media (max-width: 767px) {
  .fv__btn span {
    font-size: 14px;
  }
}
.fv__btn svg {
  position: absolute;
  right: 22px;
}

.news__btn {
  width: 301px;
  margin: 0 auto;
  border-radius: 50px;
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
  border-radius: 67.64px;
  border: 1px solid #000;
  padding: 15px 20px;
  text-decoration: none;
  margin-block: 9px 87px;
  display: flex;
  align-items: center;
  position: relative;
}
.news__btn span {
  flex: 1;
  text-align: center;
}
.news__btn svg {
  position: absolute;
  right: 27px;
}

.about__btn {
  align-self: flex-start;
}
@media (max-width: 767px) {
  .about__btn {
    align-self: center;
  }
}

.service-btn {
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  min-width: 300px;
  margin-inline: auto;
  padding: 18px 20px 20px;
  position: relative;
  border: 1px solid #000;
}
.service-btn svg {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .service-btn {
    font-size: 15px;
    font-weight: 600;
  }
}

.footer__btn {
  width: 178px;
  font-size: 10px;
  font-weight: 600;
  background: #ff0000;
  position: relative;
  border-radius: 67.64px;
  border: 1px solid #000;
  padding: 11px 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__btn {
    width: 219px;
  }
}
.footer__btn span {
  text-align: center;
}
@media (max-width: 767px) {
  .footer__btn span {
    font-size: 12px;
  }
}
.footer__btn svg {
  position: absolute;
  right: 13px;
}

.cta-banner__btn {
  min-width: 301px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 999px;
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 19px;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.cta-banner__btn span {
  color: #000;
  font-size: 15px;
  font-weight: 600;
}
.cta-banner__btn svg {
  flex-shrink: 0;
  position: absolute;
  right: 50px;
}
@media (max-width: 999px) {
  .cta-banner__btn {
    margin-inline: auto;
  }
}
@media (max-width: 767px) {
  .cta-banner__btn {
    min-width: 216px;
    margin-inline: auto;
    padding-block: 13px;
  }
  .cta-banner__btn span {
    font-size: 10.5px;
  }
}

.btn--lg {
  font-size: 16px;
  min-width: 300px;
  padding: 19px 20px;
}

.btn--danger {
  --btn-color: var(--danger);
  color: #fff;
}

.btn--vivid-pink {
  --btn-color: #FF00C3;
  color: #fff;
}

.btn--dark {
  background: #000;
  color: #fff;
}

.btn--light {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.btn--blue {
  --btn-color: linear-gradient(90deg, #c0c7eb, #5971e8);
  color: #fff;
}

.btn--green {
  --btn-color: linear-gradient(90deg, #26f456, #50d88b);
}

.btn--lime {
  background: var(--lime);
  border: 1px solid #000;
  color: #000;
}

.btn--pink {
  --btn-color: linear-gradient(90deg, #F0F 0%, #900 100%);
  color: #fff;
}

.section {
  margin: 0 auto;
  max-width: 1100px;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .section {
    padding-inline: 37px;
  }
}

.section-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 40px;
    font-weight: 600;
  }
}

.section-subtitle {
  color: #1A00FF;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 15px;
  font-weight: 600;
  line-height: 200%;
  text-align: center;
}

.section-text {
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN";
  font-size: 15px;
  font-weight: 300;
  line-height: 200%;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  font-size: 14px;
  padding-block-start: 12px;
  margin-inline-start: 50px;
}
@media (max-width: 767px) {
  .breadcrumb__list {
    margin-inline-start: 24px;
  }
}

.breadcrumb__item + .breadcrumb__item::before {
  content: ">";
  margin-right: 4px;
  color: #000;
}

.breadcrumb__item a {
  text-decoration: none;
  color: #000;
  /*     &:hover {
          text-decoration: underline;
      } */
}

body:has(.common-fv) .header {
  margin-block-start: 19px;
  top: 19px;
}
@media (max-width: 767px) {
  body:has(.common-fv) .header {
    margin-block-start: 0;
    top: 0;
  }
}

.common-fv {
  position: relative;
  padding-inline: 20px;
  padding-block-start: 8px;
  margin-block-start: -88px;
}
@media (max-width: 767px) {
  .common-fv {
    margin-block-start: -69px;
    padding-inline: 0;
  }
}

.common-fv__bg-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  min-height: 180px;
}
@media (max-width: 767px) {
  .common-fv__bg-wrap {
    min-height: 0;
  }
}

.common-fv__bg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 180px;
  aspect-ratio: 1480/263;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .common-fv__bg {
    aspect-ratio: 460/280;
    min-height: 0;
    max-height: clamp(160px, 38vw, 232px);
  }
}

.common-fv__content {
  position: absolute;
  bottom: 0;
  left: 9px;
  right: 20px;
  padding-block-end: clamp(16px, 2.733vw, 41px);
  padding-inline-start: clamp(20px, 13.533vw, 203px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.common-fv__title {
  color: #FFF;
  font-size: clamp(28px, 3.5vw, 50.667px);
  font-weight: 600;
  line-height: 1;
}

.common-fv__subtitle {
  color: #FFF;
  font-size: clamp(13px, 1.4vw, 20px);
  font-weight: 600;
}

/* * {
  outline: 1px solid red;
} */
.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.fv {
  position: relative;
  overflow-x: clip;
  padding-inline: 32px;
  width: 100%;
  height: 828px;
  min-height: 100svh;
  padding-block-start: 17px;
  /* 上から覆い被せたかったら以下を使う */
  /*   position: fixed;
  z-index: -1; */
}
@media (max-width: 767px) {
  .fv {
    padding-inline: 17px;
    height: 100svh;
    min-height: unset;
  }
}

.fv__bg {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 30px;
}
@media (max-width: 767px) {
  .fv__bg {
    height: 600px;
  }
}

.fv__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-inline-start: 108px;
  padding-block-start: 223px;
  padding-block-end: 40px;
  z-index: 1;
}
@media (max-width: 1100px) {
  .fv__content {
    padding-inline-start: 44px;
  }
}
@media (max-width: 768px) {
  .fv__content {
    display: block;
    padding-block-start: 120px;
    padding-block-end: 40px;
    margin-block-start: 0;
  }
}

.fv__lines {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .fv__lines {
    row-gap: 10px;
  }
}
.fv__lines span {
  display: inline-block;
  color: #fff;
  font-size: 50px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .fv__lines span {
    font-size: 33px;
  }
}
@media (max-width: 499px) {
  .fv__lines span {
    font-size: 26px;
  }
}

.fv__lines-accent {
  position: relative;
  padding-bottom: 10px;
  z-index: 1;
}
.fv__lines-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: url("../../images/yellow-brush.webp") no-repeat left center;
  background-size: 100% auto;
  z-index: -1;
}

.fv__text {
  color: #FFF;
  font-size: 24px;
  font-weight: 600;
  line-height: 40px;
  margin-block-start: 141px;
}
@media (max-width: 1000px) {
  .fv__text {
    font-size: 16px;
    line-height: 1.5;
    margin-inline-end: 37px;
    margin-block-start: 40px;
  }
}
@media (max-width: 499px) {
  .fv__text {
    font-size: 14px;
  }
}

.fv__text-br {
  display: none;
}
@media (max-width: 767px) {
  .fv__text-br {
    display: block;
  }
}

.fv__cta {
  display: flex;
  gap: 20px;
  margin-block-start: 35px;
  margin-inline-start: 30px;
}
@media (max-width: 1000px) {
  .fv__cta {
    margin-inline-start: 15px;
  }
}
@media (max-width: 768px) {
  .fv__cta {
    margin-block-start: 40px;
    margin-inline-start: 0;
  }
}

.fv__badge {
  position: absolute;
  bottom: -121px;
  right: 0;
  max-width: 431px;
  height: auto;
  aspect-ratio: 431/323;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1185px) {
  .fv__badge {
    max-width: 300px;
    aspect-ratio: 300/223;
    bottom: -100px;
  }
}
@media (max-width: 767px) {
  .fv__badge {
    max-width: 253px;
    aspect-ratio: 253/223;
    bottom: -30px;
  }
}

/*----------------------------------
  上から覆い被せたかったらここを使う。
-----------------------------------*/
/* .container{
  margin-block-start: 100vh;
  background: #FFF;
} */
.news-wrap {
  position: relative;
  overflow-x: clip;
  padding-inline: 20px;
}

.news {
  max-width: 1136px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .news {
    margin-block-start: 53px;
    padding-inline: 0;
  }
}

.news__inner {
  display: flex;
  flex-direction: column;
}

.news__title {
  color: #000;
  font-size: 50.667px;
  font-weight: 600;
  text-align: center;
}

.news__subtitle {
  color: #1A00FF;
  font-size: 15px;
  font-weight: 600;
  line-height: 2;
  /* 30px */
  text-align: center;
}

.news__list {
  display: grid;
  padding-block-start: 43px;
}
@media (max-width: 767px) {
  .news__list {
    padding-block-start: 41px;
  }
}

.news__item {
  padding-inline: 34px;
}
@media (max-width: 499px) {
  .news__item {
    padding-inline: 0;
  }
}

.news__item a {
  display: grid;
  grid-template-columns: auto 120px 1fr auto;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.news__item a:hover {
  transform: none;
}
@media (max-width: 767px) {
  .news__item a {
    gap: 10px;
    grid-template-columns: auto 71px 1fr auto;
  }
}
@media (max-width: 499px) {
  .news__item a {
    grid-template-columns: auto 100px 1fr auto;
    gap: 8px 16px;
  }
  .news__item a .news__date {
    align-self: center;
  }
  .news__item a .news__category {
    align-self: center;
  }
  .news__item a .news__text {
    grid-column: 1/-1;
  }
  .news__item a .news__link {
    grid-column: 4;
    grid-row: 1;
  }
}

.news__date,
.news__text {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 300;
}

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

.news__text {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  min-width: 0;
  font-weight: 600;
}

.news__category {
  color: #FFF;
  font-size: 15px;
  font-weight: 600;
  border-radius: 30px;
  background: linear-gradient(90deg, #D9D9D9 0%, #2283F2 100%);
  text-align: center;
}
@media (max-width: 767px) {
  .news__category {
    font-size: 10px;
  }
}

.news__link {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  -moz-column-gap: 24px;
       column-gap: 24px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 899px) {
  .news__link span {
    display: none;
  }
}

.news__border {
  max-width: 1096px;
  width: 100%;
  height: 1px;
  margin-inline: auto;
  background: #C8C8C8;
  margin-block: 18px;
}

.about {
  position: relative;
  margin-block: 120px 70px;
  max-width: 1300px;
  margin-inline: auto;
  padding-inline-start: 60px;
}
@media (max-width: 767px) {
  .about {
    margin-block-start: 24px;
    padding-inline: 0;
  }
}

.scroll-indicator {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.scroll-indicator.is-visible {
  opacity: 1;
  visibility: visible;
}

.scroll-indicator__text {
  color: #2200FF;
  font-family: "Hiragino Kaku Gothic Pro";
  font-size: 15px;
  font-weight: 600;
  line-height: 30px;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.scroll-indicator__line {
  width: 1px;
  height: 142px;
  background: #2200FF;
}

.about__title,
.about__subtitle {
  text-align: left;
}
@media (max-width: 767px) {
  .about__title,
  .about__subtitle {
    text-align: center;
  }
}

.about__grid {
  align-items: center;
  display: grid;
  gap: 27px;
  grid-template-columns: 1fr min(767px, 55vw);
  margin-block-start: 42px;
}
@media (max-width: 767px) {
  .about__grid {
    grid-template-columns: 1fr;
    margin-block-start: 14px;
    gap: 47px;
  }
  .about__grid picture {
    order: -1;
  }
}

.stacked-image {
  position: relative;
  max-width: 473px;
  width: 100%;
  height: auto;
  margin: 0;
}
@media (max-width: 1023px) {
  .stacked-image {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .stacked-image {
    max-width: 414px;
  }
}

.stacked-image::before {
  background: var(--lime);
  border: 1px solid #000;
  border-radius: 10px;
  content: "";
  height: calc(100% - 8px);
  left: 20px;
  position: absolute;
  top: 20px;
  width: calc(100% - 8px);
  z-index: 0;
}
@media (max-width: 767px) {
  .stacked-image::before {
    left: 10px;
    top: 10px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}

.stacked-image img {
  border-radius: 10px;
  display: block;
  position: relative;
  width: 100%;
  z-index: 1;
}

.about__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.about__text {
  margin-block: 21px 38px;
}
@media (max-width: 767px) {
  .about__text {
    margin-block: 16px 40px;
    padding-inline: 18px;
  }
}

.about__img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 767px) {
  .about__img {
    width: 96vw;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 32px 0;
  }
}

.about__btn::after {
  display: none;
}

.media {
  margin-block-end: 146px;
}
@media (max-width: 767px) {
  .media {
    margin-block: 46px 63px;
    padding-top: 0;
  }
}

.media__intro {
  color: #000;
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  line-height: 200%;
  padding-block-start: 43px;
  margin-block-end: 49px;
}
@media (max-width: 767px) {
  .media__intro {
    padding-block-start: 21px;
    margin-block-end: 28px;
  }
}

.media-card {
  align-items: center;
  display: grid;
  -moz-column-gap: 35px;
       column-gap: 35px;
  row-gap: 0;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "img header" "img body";
}
.media-card figure {
  grid-area: img;
}
.media-card h3 {
  grid-area: header;
  align-self: end;
}
.media-card .media-card__body {
  grid-area: body;
  align-self: start;
  padding-block-start: 24px;
}
@media (max-width: 767px) {
  .media-card {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "img" "body";
    row-gap: 24px;
  }
  .media-card .media-card__body {
    padding-block-start: 0;
  }
}

.media-card__img {
  border-radius: 10px;
  display: block;
  width: 100%;
  max-width: 477px;
  height: auto;
}

.media h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .media h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
  }
}

.media-card__title--magazine {
  border-bottom: 8px solid #76A1F7;
}

.media-card__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.media-card__text {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 200%;
  padding-block-end: 120px;
}
@media (max-width: 767px) {
  .media-card__text {
    padding-block: 0 27px;
  }
}

.media-card--reverse {
  grid-template-areas: "header img" "body   img";
}
@media (max-width: 767px) {
  .media-card--reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "img" "body";
  }
}

.media-card--gymmap {
  position: relative;
  padding-block-start: 163px;
}
@media (max-width: 767px) {
  .media-card--gymmap {
    padding-block-start: 55px;
  }
}

.media-card__title--gymmap {
  border-bottom: 8px solid #99D681;
}

.media__btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

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

.service {
  position: relative;
  overflow-x: clip;
}

.service__intro {
  margin: 27px auto 47px;
  max-width: 1024px;
  text-align: center;
}
@media (max-width: 767px) {
  .service__intro {
    padding-inline: 25px 30px;
    text-align: center;
    font-size: 15px;
    font-weight: 300;
    line-height: 200%;
    /* 30px */
  }
}

.service__btn {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
}

.service-card-wrap {
  margin-block: 133px 107px;
  padding-inline: 20px;
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  row-gap: 170px;
}
@media (max-width: 1023px) {
  .service-card-wrap {
    row-gap: 60px;
  }
}
@media (max-width: 767px) {
  .service-card-wrap {
    padding-inline: 39px;
    margin-block: 70px 18px;
  }
}
@media (max-width: 499px) {
  .service-card-wrap {
    padding-inline: 20px;
  }
}

.service-card {
  border-radius: 10px;
  padding: 0 0 8px;
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .service-card {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
@media (max-width: 1023px) {
  .service-card {
    flex-direction: column;
    row-gap: 27px;
  }
}

.service-card--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .service-card--reverse {
    flex-direction: column;
    row-gap: 40px;
  }
}

.service-card--ecsite {
  isolation: isolate;
}

.service-card__title {
  font-size: 30px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .influencer-title {
    font-size: 28px !important;
  }
}
@media (max-width: 499px) {
  .influencer-title {
    font-size: 22px !important;
  }
}

@media (max-width: 400px) {
  .service-card:has(.influencer-title) .service-btn span {
    font-size: 13px;
  }
}

.service-card__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 200%;
}

.service-card img {
  background: #d9d9d9;
  border-radius: 10px;
  display: block;
  height: auto;
  aspect-ratio: 473/348;
  width: 100%;
  max-width: 473px;
  position: relative;
  z-index: 1;
}

.service-card h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 499px) {
  .service-card h3 {
    font-size: 22px;
  }
}

.chip-group {
  padding-block: 49px 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}
@media (max-width: 1023px) {
  .chip-group {
    padding-block: 10px 32px;
  }
}
@media (max-width: 767px) {
  .chip-group {
    gap: 14px;
  }
}
@media (max-width: 460px) {
  .chip-group {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
  }
  .chip-group .chip, .page-service .chip-group .chip {
    flex: 0 1 auto;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 13px;
    font-size: 11px;
    line-height: 1.35;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.chip {
  background: linear-gradient(90deg, #d9d9d9 0%, #6ff128 100%);
  border-radius: 9999px;
  display: inline-block;
  margin: 0 8px 8px 0;
  padding: 4px 27px;
  color: #000;
  font-size: 13.75px;
  font-weight: 600;
  line-height: 200%;
  text-align: center;
}
@media (max-width: 1023px) {
  .chip {
    padding: 2px 14px;
    margin: 0;
    font-size: 12px;
  }
}

.chip-ecsite-group {
  padding-block: 49px 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 17px;
}
@media (max-width: 1023px) {
  .chip-ecsite-group {
    padding-block: 10px 32px;
  }
}
@media (max-width: 767px) {
  .chip-ecsite-group {
    gap: 4px;
    flex-wrap: nowrap;
  }
}
@media (max-width: 640px) {
  .chip-ecsite-group {
    gap: 10px;
    flex-wrap: wrap;
  }
}
@media (max-width: 499px) {
  .chip-ecsite-group {
    gap: 5px;
  }
}

.chip-website-group {
  box-sizing: border-box;
  max-width: 100%;
  padding-block: 49px 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 25px;
}
@media (max-width: 1023px) {
  .chip-website-group {
    padding-block: 10px 32px;
  }
}
@media (max-width: 460px) {
  .chip-website-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px 8px;
    justify-content: stretch;
  }
  .chip-website-group .chip, .page-service .chip-website-group .chip {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    font-size: 10.9px;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
  }
}

.bg-gray {
  background: #EEE;
}

.column {
  background: var(--bg-gray);
  max-width: 100%;
}
@media (max-width: 767px) {
  .column {
    padding-inline: 16px;
  }
}

.column__title {
  padding-block-start: 49px;
}

.column__swiper-container {
  max-width: 1380px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block-start: 19px;
}

.column__swiper {
  width: 100%;
  overflow: hidden;
  flex: 1;
  padding-right: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}

.stacked-image--yellow {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 265/180;
}

.stacked-image--yellow::before {
  background: #FFEA00;
  border: 0.876px solid #000;
  border-radius: 13px;
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.column-card img {
  border-radius: 13px;
  border: 0.876px solid #000;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .column-card img {
    aspect-ratio: 216/146;
  }
}

.column-card .tag {
  border: 1px solid #000;
  border-radius: 24px;
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  margin-block-start: 18px;
  padding: 5px 12px;
}

.column-card h3 {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  margin-block: 15px 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 2lh;
}

.column-card .date {
  color: #938d8d;
  font-size: 12px;
}

.column__swiper-button-prev,
.column__swiper-button-next {
  position: static;
  flex-shrink: 0;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.column__swiper-button-prev {
  left: -10px;
}

.column__swiper-button-next {
  right: -10px;
}

.column__btn {
  margin-block-start: 45px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column__btn::after {
  display: none;
}

@media (max-width: 767px) {
  .column__swiper-button-prev,
  .column__swiper-button-next {
    display: none;
  }
  .column__swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px 25px;
    transform: none !important;
    width: 100% !important;
  }
  .column__swiper .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
  }
}
.company {
  background: var(--bg-gray);
  padding-block-start: 80px;
  max-width: 100%;
  padding-inline: clamp(20px, 12vw, 217px);
}
@media (max-width: 767px) {
  .company {
    padding-block-start: 42px;
    padding-inline: 18px;
  }
}

.company__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px;
  padding-block: 36px 98px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .company__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .company__grid {
    padding-block: 32px 27px;
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .company__grid .stacked-image {
    width: 100%;
  }
}

.company__img {
  border: 1px solid #000;
  width: 100%;
  height: auto;
  display: block;
}

.company__text {
  color: #000;
  font-size: 15px;
  font-weight: 300;
  line-height: 200%;
}

.company__text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-block-start: 49px;
}
@media (max-width: 767px) {
  .company__text-wrap {
    padding-block-start: 0;
  }
}

.company__btn {
  margin-block-start: 42px;
  margin-inline: auto;
}
.company__btn::after {
  display: none;
}

.images-liner {
  overflow: hidden;
  padding-block-end: 52px;
}
@media (max-width: 767px) {
  .images-liner {
    padding-block-end: 49px;
  }
}

.images-liner--92 {
  padding-block-end: 92px;
}

.images-liner-inner {
  display: inline-flex;
  gap: 13px;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.images-liner img {
  width: 289px;
  height: 179px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .images-liner img {
    width: 173px;
    height: 107px;
  }
}

/* .images-liner--large {
  img {
    @media (max-width: 767px) {
      width: 239px;
      height: 148px;
    }
  }
} */
.page-about-us__body {
  background: #F0F2F3;
}

.about-fv {
  position: relative;
  padding-inline: 20px;
  padding-block-start: 20px;
}

.about-fv__bg {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1500/664;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .about-fv__bg {
    aspect-ratio: 460/418;
  }
}

.about-fv__content {
  position: absolute;
  inset: 20px 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.about-fv__title {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  row-gap: 11px;
  margin-block-start: clamp(79px, -25.5px + 13.7vw, 180px);
  margin-inline-start: clamp(13px, 0.54px + 3.32vw, 26px);
  align-items: flex-start;
}
@media (max-width: 767px) {
  .about-fv__title {
    margin-block-start: clamp(121px, 70.3px + 13.52vw, 174px);
  }
}
.about-fv__title span {
  display: inline-block;
  background: #fff;
  font-size: clamp(22px, -7.38px + 3.825vw, 43px);
  font-weight: 600;
  padding-inline: 29px 15px;
}
@media (max-width: 767px) {
  .about-fv__title span {
    font-size: clamp(22px, 7.3px + 3.92vw, 28px);
    padding-inline: clamp(15px, 4.5px + 2.1vw, 29px) clamp(8px, 2.5px + 1.2vw, 15px);
  }
}

.about-fv__subtitle {
  margin-block-start: 59px;
  margin-inline-start: 26px;
  font-weight: 600;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  background: #fff;
  font-size: clamp(14px, 11.5px + 0.9vw, 25px);
  padding-inline: 22px 24px;
}
@media (max-width: 767px) {
  .about-fv__subtitle {
    margin-block-start: 32px;
  }
}
@media (max-width: 499px) {
  .about-fv__subtitle {
    margin-block-start: 23px;
  }
}

.about-sec__header {
  text-align: center;
  margin-block-end: 27px;
}

.about-sec__subtitle {
  color: #62ACE7;
  font-family: "Monomaniac One";
  font-size: 20px;
  padding-block-start: 31px;
}

.about-sec__heading {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .about-sec__heading {
    font-size: 28px;
  }
}
@media (max-width: 499px) {
  .about-sec__heading {
    font-size: 20px;
  }
}

.about__sub-top {
  margin-block-start: 69px;
  position: relative;
  z-index: -1;
}
@media (max-width: 767px) {
  .about__sub-top {
    margin-block-start: 36px;
  }
}

.about__sub-top-inner {
  max-width: 1250px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .about__sub-top-inner {
    max-width: 661px;
    padding-inline: 53px;
  }
}

.about__sub-top-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about__sub-top-content {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    row-gap: 24px;
  }
}

@media (min-width: 768px) {
  .scroll-indicator.scroll-indicator--about-sub-top {
    display: none !important;
  }
}

.about__sub-top-title {
  font-size: 45px;
  font-weight: 600;
  line-height: 70px;
}
@media (max-width: 955px) {
  .about__sub-top-title {
    font-size: 34px;
  }
}
@media (max-width: 767px) {
  .about__sub-top-title {
    font-size: 24px;
    line-height: 37.036px;
  }
}

.about__sub-top-text {
  color: #363636;
  font-family: "Noto Sans";
  font-size: 20px;
  line-height: 35px;
  padding-block-start: 32px;
}
@media (max-width: 955px) {
  .about__sub-top-text {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .about__sub-top-text {
    font-size: 15px;
    padding-block-start: 10px;
  }
}

.about__sub-top-title--en {
  line-height: 1;
}
@media (max-width: 767px) {
  .about__sub-top-title--en {
    text-align: center;
  }
}
.about__sub-top-title--en span {
  color: #FFF;
  font-family: "Monomaniac One";
  font-size: 96px;
}
@media (max-width: 955px) {
  .about__sub-top-title--en span {
    font-size: 82px;
  }
}
@media (max-width: 767px) {
  .about__sub-top-title--en span {
    font-size: 47px;
  }
}

/*----------------------------------
  手書きフォント
-----------------------------------*/
.handwritten {
  font-family: "Grape Nuts", cursive;
  vertical-align: middle;
  color: #20F;
  font-size: 35px;
  line-height: 2;
  display: inline-block;
  transform: rotate(-8.331deg) translateY(-8px);
}
@media (max-width: 767px) {
  .handwritten {
    font-size: 18.518px;
    line-height: 49.638px;
  }
}
@media (max-width: 500px) {
  .handwritten {
    font-size: 24.49px;
  }
}

.handwritten--right {
  padding-inline-start: 53px;
  transform: rotate(-8.331deg) translateY(-8px);
}

.why-choose {
  padding-block: 53px 35px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media (max-width: 767px) {
  .why-choose {
    padding-block: 60px;
    padding-inline: 25px;
  }
}

.why-choose__inner {
  max-width: 1286px;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
  border-radius: 20px;
  background: #FFF;
}
@media (max-width: 1199px) {
  .why-choose__inner {
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .why-choose__inner {
    padding-inline: 16px;
  }
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 17px;
  padding-block-end: 38px;
}
@media (max-width: 1023px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .why-choose__grid {
    grid-template-columns: 1fr;
  }
}

.why-choose__card {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 16.71px;
       column-gap: 16.71px;
  max-width: 362px;
  width: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 22px 20px 25px 29px;
  overflow: hidden;
  border-radius: 8.824px;
  box-shadow: 0 0 10.324px -1.765px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1023px) {
  .why-choose__card {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .why-choose__card {
    width: 100%;
    padding: 27px 31px 34px 33px;
  }
}
@media (max-width: 499px) {
  .why-choose__card {
    flex-direction: column;
    row-gap: 20px;
  }
}

.why-choose__img {
  background-color: #d9d9d9;
  border-radius: 50%;
  width: 54px;
  height: 54px;
}

.why-choose__card-num-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.why-choose__number {
  display: block;
  color: #62ACE7;
  font-family: "Kdam Thmor Pro";
  font-size: 35.294px;
  font-weight: 400;
  line-height: 1;
}
@media (max-width: 499px) {
  .why-choose__number {
    font-size: 33px;
  }
}

.why-choose__card-title {
  font-size: 13px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .why-choose__card-title {
    font-size: 15px;
  }
}
@media (max-width: 499px) {
  .why-choose__card-title {
    font-size: 14px;
  }
}

.why-choose__card-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
}
@media (max-width: 767px) {
  .why-choose__card-text {
    font-size: 15px;
  }
}
@media (max-width: 499px) {
  .why-choose__card-text {
    font-size: 13px;
    line-height: 1.4;
    padding-block-start: 10px;
  }
}

.our-spirit {
  margin-block-end: 80px;
}

.our-spirit__inner {
  max-width: 1316px;
  width: 100%;
  padding-inline: 30px;
  margin-inline: auto;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .our-spirit__inner {
    padding-inline: 20px;
  }
}

.our-spirit__contents {
  display: flex;
  flex-direction: column;
  row-gap: 42px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.our-spirit__content {
  position: relative;
  z-index: 0;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.our-spirit__content + .our-spirit__content {
  z-index: 1;
}
.our-spirit__content + .our-spirit__content + .our-spirit__content {
  z-index: 2;
}
.our-spirit__content img {
  position: relative;
  z-index: 2;
  flex: 0 1 auto;
  min-width: 0;
  width: min(682px, 56%);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .our-spirit__content {
    flex-direction: column-reverse;
  }
}

.our-spirit__blob {
  position: relative;
}

.our-spirit__content--reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.our-spirit__content-text-wrap {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  max-width: 40%;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .our-spirit__content {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .our-spirit__content img {
    width: min(52%, 682px);
  }
  .our-spirit__content-text-wrap {
    max-width: 44%;
  }
}
@media (max-width: 767px) {
  .our-spirit__contents {
    row-gap: 28px;
  }
  .our-spirit__content,
  .our-spirit__content--reverse {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 18px;
  }
  .our-spirit__content + .our-spirit__content {
    margin-block-start: 0;
  }
  .our-spirit__content img,
  .our-spirit__content--reverse img {
    width: 100%;
    max-width: 476px;
    height: auto;
    aspect-ratio: 476/386;
    border-radius: 10px;
    margin-inline: auto;
  }
  .our-spirit__content img {
    order: -1;
  }
  .our-spirit__content-text-wrap {
    flex: none;
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}
@media (max-width: 500px) {
  .our-spirit__content,
  .our-spirit__content--reverse {
    row-gap: 47px;
  }
  .our-spirit__contents {
    row-gap: 60px;
  }
}
.our-spirit__content-title {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
}
.our-spirit__content-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background-color: #20F;
}
@media (max-width: 767px) {
  .our-spirit__content-title::after {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .our-spirit__content-title {
    padding-inline-start: 20px;
    font-size: 21px;
  }
}
@media (max-width: 499px) {
  .our-spirit__content-title {
    padding-inline-start: 0;
  }
}

.our-spirit__content-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 200%;
  padding-block-start: 18px;
}
@media (max-width: 767px) {
  .our-spirit__content-text {
    padding-inline-start: 20px;
  }
}
.our-spirit__content-text span {
  font-weight: 600;
}
@media (max-width: 499px) {
  .our-spirit__content-text {
    font-size: 13px;
    padding-inline-start: 0;
  }
}

.about-company {
  padding-block: 22px 49px;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .about-company {
    padding-block-end: 0;
  }
}

.about-company__inner {
  max-width: 948px;
  margin-inline: auto;
}

.about-company__contents {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .about-company__contents {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
}

.about-company__contents > .about-company__content {
  flex: 1 1 auto;
  min-width: 0;
}

.about-company__contents > .stacked-image {
  flex: 0 0 clamp(300px, 43%, 449px);
}
@media (max-width: 767px) {
  .about-company__contents > .stacked-image {
    flex: none;
    width: 100%;
  }
}

.about-company__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-company__contents .stacked-image iframe {
  border-radius: 10px;
  border: 1px solid #000;
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 449/420;
  z-index: 1;
}

.about-company__title {
  margin-block-end: 19px;
  font-size: 28px;
  font-weight: 600;
  align-self: flex-start;
}

.about-company__table {
  width: 448px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background: #FDFDFD;
  box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.25);
  margin-block-end: 58px;
}

.about-company__row:not(:last-child) th,
.about-company__row:not(:last-child) td {
  border-block-end: 1px solid #c9c9c9;
}

.about-company__th {
  background: #d9d9d9;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
  width: 124px;
}
@media (max-width: 767px) {
  .about-company__th {
    padding: 16px;
  }
}
@media (max-width: 499px) {
  .about-company__th {
    width: 100px;
  }
}

.about-company__td {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
  background: #FDFDFD;
  border-inline-start: 1px solid #e0e0e0;
}

.stacked-image--about::before {
  background: var(--lime);
  border: 1px solid #000;
  border-radius: 10px;
  content: "";
  height: calc(100% - 8px);
  left: 20px;
  position: absolute;
  top: 20px;
  width: calc(100% - 8px);
  z-index: 0;
}
@media (max-width: 767px) {
  .stacked-image--about::before {
    left: 10px;
    top: 10px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
}

.cta-banner {
  padding-inline: 55px;
  padding-block-end: 25px;
}
@media (max-width: 767px) {
  .cta-banner {
    padding-block-start: 25px;
    padding-inline: 20px;
  }
}
@media (max-width: 499px) {
  .cta-banner {
    padding-block: 22px 20px;
    padding-inline: 10px;
  }
}

.cta-banner__inner {
  position: relative;
  background: linear-gradient(to right, #6478eb, #aca4f2);
  border-radius: 20px;
  overflow: clip;
  padding-block: 40px;
  padding-inline: 136px 67px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1460px;
  margin-inline: auto;
}
@media (max-width: 1290px) {
  .cta-banner__inner {
    padding-inline: 67px;
  }
}
@media (max-width: 999px) {
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 42px 12px;
    gap: 24px;
  }
}

.cta-banner__content {
  flex: 1;
}

.cta-banner__title {
  color: #FFF;
  font-size: 30px;
  font-weight: 600;
  margin-block-end: 10px;
}
@media (max-width: 499px) {
  .cta-banner__title {
    font-size: 20px;
  }
}

.cta-banner__text {
  color: #FFF;
  font-family: "Grape Nuts";
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 499px) {
  .cta-banner__text {
    font-size: 11px;
  }
}

.cta-banner__handwritten {
  display: inline-block;
  color: #FFF;
  font-family: "Grape Nuts";
  font-size: 35px;
  line-height: 1;
  transform: rotate(-23.085deg);
  position: absolute;
  top: 34px;
  left: 34px;
}
@media (max-width: 1290px) {
  .cta-banner__handwritten {
    top: 15px;
  }
}
@media (max-width: 767px) {
  .cta-banner__handwritten {
    font-size: 24.49px;
    top: 16px;
    left: 6px;
  }
}

.cta-banner__sp-only {
  display: none;
}
@media (max-width: 499px) {
  .cta-banner__sp-only {
    display: block;
  }
}

.bg-white {
  background: #fff;
}

.company__intro {
  margin-block-start: 80px;
}

.company-intro__inner {
  max-width: 1052px;
  margin: 0 auto;
  padding: 0 20px;
}

.company-intro__title {
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-block-end: 36px;
}
.company-intro__title::before {
  content: "";
  display: block;
  width: 10px;
  height: 36px;
  background: #A47DEB;
  flex-shrink: 0;
}

.company-intro__content {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .company-intro__content {
    flex-direction: column;
    row-gap: 50px;
  }
}

.company-intro__content > .stacked-image {
  flex: 0 0 clamp(300px, 40%, 414px);
}

.company-intro__text,
.company-representative__text-wrap {
  flex: 1 1 auto;
  min-width: 0;
}

.company-intro__img {
  border-radius: 10px;
  display: block;
  width: 100%;
  max-width: 414px;
  height: auto;
  aspect-ratio: 414/307;
  border: 1px solid #000;
}

/* .company__overview{
    margin-block-start: 66px;
}
.company__contents{
    display: flex;
    column-gap: 60px;
    align-items: center;
} */
.company__overview {
  margin-block-start: 66px;
}

.company__contents {
  display: flex;
  -moz-column-gap: 60px;
       column-gap: 60px;
  align-items: center;
}
@media (max-width: 767px) {
  .company__contents {
    flex-direction: column;
    row-gap: 40px;
  }
}

.about-company__table {
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}

.company__contents > div {
  flex: 1 1 auto;
  min-width: 0;
}

.company__contents > .stacked-image {
  flex: 0 0 clamp(300px, 43%, 449px);
}
@media (max-width: 767px) {
  .company__contents > .stacked-image {
    flex: none;
    width: 100%;
  }
}

.company__contents .stacked-image iframe {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 449/420;
}

.company__representative {
  margin-block: 59px 105px;
}

.company-representative__text-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 51px;
  align-items: center;
}
.company-representative__text-wrap a {
  width: -moz-fit-content;
  width: fit-content;
}

.service__wrap {
  margin-block: 78px 93px;
}

.service__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  row-gap: 170px;
}
@media (max-width: 1023px) {
  .service__inner {
    row-gap: 60px;
  }
}
@media (max-width: 767px) {
  .service__inner {
    padding-inline: 39px;
    margin-block: 70px 18px;
  }
}
@media (max-width: 499px) {
  .service__inner {
    padding-inline: 20px;
  }
}

.page-service .chip {
  padding: 4px 20px;
}

.page-service .chip-ecsite-group .chip {
  padding: 4px 27px;
}
@media (max-width: 1023px) {
  .page-service .chip-ecsite-group .chip {
    padding: 2px 14px;
  }
}

.privacy-policy {
  padding-block: 44px 25px;
}

.privacy-policy__inner {
  --privacy-inline-gutter: 40px;
  width: min(100%, 1260px);
  margin: 0 auto;
  box-sizing: border-box;
  padding-inline: var(--privacy-inline-gutter);
  border-top: 1px solid #BDBDBD;
}
@media (max-width: 767px) {
  .privacy-policy__inner {
    --privacy-inline-gutter: 20px;
    padding-inline: 20px;
  }
}

.privacy-policy__lead {
  font-size: 15px;
  color: #000;
  font-weight: 300;
  padding-block: 44px 19px;
}
@media (max-width: 767px) {
  .privacy-policy__lead {
    font-size: 14px;
    line-height: 1.5;
  }
}

.privacy-article {
  position: relative;
  padding-block-end: 40px;
}
.privacy-article::before {
  content: "";
  display: block;
  width: calc(100% + var(--privacy-inline-gutter) * 2);
  margin-inline: calc(var(--privacy-inline-gutter) * -1);
  border-top: 1px solid #BDBDBD;
}
.privacy-article:first-of-type::before {
  display: none;
}
@media (max-width: 767px) {
  .privacy-article {
    padding-block: 28px 40px;
  }
}

.privacy-article:last-of-type {
  padding-block-end: 0;
}

.privacy-article__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-block-end: 27px;
  padding-block-start: 38px;
  padding-inline-start: 18px;
}
@media (max-width: 767px) {
  .privacy-article__header {
    gap: 12px;
    margin-block-end: 20px;
    padding-inline-start: 0;
  }
}

.privacy-article:first-of-type .privacy-article__header {
  padding-block-start: 0;
}

.privacy-article__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 97px;
  height: 41px;
  padding: 0 12px;
  border-radius: 50px;
  background: linear-gradient(to right, #4f95ff, #f6b3b3);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .privacy-article__badge {
    font-size: 16px;
    min-width: 80px;
    height: 34px;
  }
}

.privacy-article__title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}
@media (max-width: 767px) {
  .privacy-article__title {
    font-size: 16px;
  }
}

.privacy-article__body p {
  font-size: 15px;
  line-height: 1.4;
  color: #000;
}
@media (max-width: 767px) {
  .privacy-article__body p {
    font-size: 14px;
  }
}
.privacy-article__body ul,
.privacy-article__body ol {
  padding-inline-start: 23px;
  font-size: 15px;
  color: #000;
}
@media (max-width: 767px) {
  .privacy-article__body ul,
  .privacy-article__body ol {
    font-size: 14px;
  }
}
.privacy-article__body ul {
  list-style: none;
  padding-inline-start: 1.5em;
}
.privacy-article__body ul li {
  position: relative;
}
.privacy-article__body ul li::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #000;
  position: absolute;
  left: -1em;
  top: 0.7em;
}
.privacy-article__body ol {
  list-style: decimal;
}

.privacy-contact {
  background: #f6f6f6;
  border-radius: 20px;
  padding: 20px 64px 24px;
  margin-block-start: 27px;
}
@media (max-width: 767px) {
  .privacy-contact {
    padding: 20px 24px;
    border-radius: 12px;
  }
}

.privacy-contact__company {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-block-end: 16px;
}
@media (max-width: 767px) {
  .privacy-contact__company {
    font-size: 16px;
    margin-block-end: 12px;
  }
}

.privacy-contact__row {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .privacy-contact__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.privacy-contact__tel-wrap,
.privacy-contact__email-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 499px) {
  .privacy-contact__tel-wrap {
    display: grid;
    grid-template-columns: 34px 1fr;
    -moz-column-gap: 10px;
         column-gap: 10px;
    row-gap: 4px;
    align-items: center;
  }
  .privacy-contact__tel-wrap > img {
    grid-column: 1;
    grid-row: 1;
  }
  .privacy-contact__tel {
    grid-column: 2;
    grid-row: 1;
  }
  .privacy-contact__tel-time {
    grid-column: 2;
    grid-row: 2;
  }
}
.privacy-contact__icon {
  flex-shrink: 0;
}

.privacy-contact__tel {
  font-size: 20px;
  font-weight: 700;
  color: var(--danger);
  text-decoration: none;
}
@media (max-width: 767px) {
  .privacy-contact__tel {
    font-size: 18px;
  }
}

.privacy-contact__tel-time {
  font-size: 15px;
  color: #000;
}
@media (max-width: 767px) {
  .privacy-contact__tel-time {
    font-size: 13px;
  }
}

.privacy-contact__email {
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
@media (max-width: 767px) {
  .privacy-contact__email {
    font-size: 14px;
  }
}

.privacy-dates {
  margin-block-start: 22px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .privacy-dates {
    font-size: 14px;
    margin-block-start: 28px;
  }
}

.news-list {
  padding-block: 14px 80px;
}
@media (max-width: 767px) {
  .news-list {
    padding-block: 24px 60px;
  }
}

.news-list__inner {
  width: min(100%, 1034px);
  margin-inline: auto;
  padding-inline: 30px;
  box-sizing: border-box;
}

.news-list__items {
  list-style: none;
  border-top: 1px solid #c8c8c8;
}
.news-list__items:first-child {
  border-top: none;
}

.news-list__item {
  border-bottom: 1px solid #c8c8c8;
}

.news-list__link {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(100%, 940px);
  margin-inline: auto;
  padding-block: 15px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}
@media (max-width: 767px) {
  .news-list__link {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding-block: 14px;
  }
}

.news-list__link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

.news-list__date {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 300;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news-list__date {
    font-size: 13px;
  }
}

.news-list__category {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  height: 29px;
  border-radius: 30px;
  background: linear-gradient(to right, #d9d9d9, #2283f2);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .news-list__category {
    width: 90px;
    height: 26px;
    font-size: 13px;
  }
}

.news-list__title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 767px) {
  .news-list__title {
    font-size: 14px;
    width: 100%;
    flex: none;
  }
}

.news-list__read-more {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  white-space: nowrap;
  margin-inline-start: auto;
}
@media (max-width: 767px) {
  .news-list__read-more {
    display: none;
  }
}

.column-list {
  padding-block: 38px 80px;
}
@media (max-width: 767px) {
  .column-list {
    padding-block: 16px 60px;
  }
}

.column-list__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 0 77px;
  padding-inline-end: 45px;
  padding-inline-start: 20px;
}
@media (max-width: 1199px) {
  .column-list__inner {
    gap: 0 40px;
  }
}
@media (max-width: 1023px) {
  .column-list__inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 0 28px;
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .column-list__inner {
    grid-template-columns: 1fr;
    gap: 40px 0;
    padding-inline: 16px;
  }
}

.column-list__main {
  min-width: 0;
  padding-inline-start: 181px;
}
@media (max-width: 1199px) {
  .column-list__main {
    padding-inline-start: 40px;
  }
}
@media (max-width: 1023px) {
  .column-list__main {
    padding-inline-start: 0;
  }
}

.column-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 28px;
  margin: 0;
  padding: 0;
}
@media (max-width: 1199px) {
  .column-grid {
    gap: 40px 14px;
  }
}
@media (max-width: 1023px) {
  .column-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 14px;
  }
}
@media (max-width: 767px) {
  .column-grid {
    gap: 21px 25px;
  }
}

/* .column-card {
    @media (max-width: 1023px) {
        & {
            max-width: none;
        }
    }

    img{
        @media (max-width: 767px) {
            width: 216px;
            height: 146px;
            max-width: 100%;
            aspect-ratio: 216 / 146;
        }
    }
} */
@media (max-width: 1023px) {
  .column-card {
    max-width: none;
  }
}

.column-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}
.column-card__link:hover {
  transform: scale(1.05);
}

/* .column__stacked-image--yellow {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 216 / 146;

    @media (max-width: 767px) {
        width: 216px;
        height: 146px;
        max-width: 100%;
        aspect-ratio: 216 / 146;
    }

    &::before {
        background: #FFEA00;
        border: 0.876px solid #000;
        border-radius: 13px;
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        width: 100%;
        height: auto;
        z-index: 0;
        aspect-ratio: 216 / 146;

        @media (max-width: 767px) {
            top: 5px;
            left: 5px;
            width: 216px;
            height: 146px;
            max-width: 100%;
            aspect-ratio: 216 / 146;
        }
    }
} */
.column__stacked-image--yellow {
  position: relative;
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 216/146;
}
@media (max-width: 500px) {
  .column__stacked-image--yellow {
    max-width: 216px;
  }
}
.column__stacked-image--yellow::before {
  background: #FFEA00;
  border: 0.876px solid #000;
  border-radius: 13px;
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: auto;
  z-index: 0;
  aspect-ratio: 216/146;
}

.column-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 50px;
}

.column-pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 37px;
  background: #adadad;
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.column-pagination__item:hover {
  opacity: 0.8;
}
.column-pagination__item--active {
  background: var(--danger);
}

.column-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: start;
}

.sidebar-banner {
  width: 100%;
}

.sidebar-banner__img-wrap {
  width: 100%;
}
.sidebar-banner__img-wrap img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.sidebar-search {
  display: flex;
  align-items: center;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  height: 52px;
}

.sidebar-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  color: #8b8b8b;
  background: transparent;
}
.sidebar-search__input::-moz-placeholder {
  color: #8b8b8b;
}
.sidebar-search__input::placeholder {
  color: #8b8b8b;
}

.sidebar-search__btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.sidebar-ad-banners {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-ad-banners__item {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}
.sidebar-ad-banners__item img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.sidebar-ad-banners__item:hover {
  transform: scale(1.05);
}

.sidebar-ranking__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background: linear-gradient(to right, #d68a4b, #89a5d8);
  border-radius: 90px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

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

.sidebar-search.sidebar--pc-only {
  display: flex;
}
@media (max-width: 767px) {
  .sidebar-search.sidebar--pc-only {
    display: none;
  }
}

.sidebar--sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sidebar--sp-only {
    display: flex;
  }
}

.single-main {
  padding-inline-start: 0;
}

.single-column-list__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 0 77px;
  padding-inline: 20px;
  margin-inline: auto;
  max-width: 1140px;
}
@media (max-width: 1199px) {
  .single-column-list__inner {
    gap: 0 40px;
  }
}
@media (max-width: 1023px) {
  .single-column-list__inner {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 0 28px;
    padding-inline: 20px;
  }
}
@media (max-width: 767px) {
  .single-column-list__inner {
    grid-template-columns: 1fr;
    gap: 40px 0;
    padding-inline: 16px;
  }
}

.single-article__title {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 12px;
  padding-inline-start: 30px;
}
@media (max-width: 767px) {
  .single-article__title {
    font-size: 20px;
  }
}

.single-article__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-inline-start: 30px;
}
@media (max-width: 767px) {
  .single-article__meta {
    flex-wrap: wrap;
    gap: 8px;
  }
}

.single-article__category {
  display: inline-flex;
  align-items: center;
  background: #5a93ff;
  color: #fff;
  font-size: 13px;
  padding: 2px 8px;
  white-space: nowrap;
}

.single-article__date {
  font-size: 13px;
  color: var(--black);
}

.author-box {
  position: relative;
  border: 1px solid #e7e7e7;
  border-radius: 5px;
  padding: 20px 20px 16px;
  margin-bottom: 16px;
  margin-inline-start: 30px;
}

.author-box__label {
  position: absolute;
  top: -9px;
  left: 46px;
  display: inline-flex;
  align-items: center;
  height: 18px;
  padding: 0 12px;
  background: linear-gradient(to right, #8787f5, #737373);
  border-radius: 50px;
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
}

.author-box__body {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 8px;
}

.author-box__avatar {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.author-box__info {
  flex: 1;
  min-width: 0;
}

.author-box__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.author-box__bio {
  font-size: 10px;
  color: var(--black);
  line-height: 1.8;
  margin: 0;
}

.single-article__policy {
  display: inline-block;
  font-size: 13px;
  color: var(--black);
  text-decoration: underline;
  margin-bottom: 24px;
  transition: opacity 0.3s ease;
}
.single-article__policy:hover {
  opacity: 0.7;
}

.single-article__featured-image {
  border: 1px solid #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 32px;
}

.single-article__featured-image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.single-article__content {
  margin-bottom: 40px;
  line-height: 1.9;
  padding-inline: 30px;
}

.single-article__content p {
  margin-bottom: 1.5em;
}

.single-article__content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 40px;
}

.single-article__content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 32px;
}

.single-article__content img {
  max-width: 100%;
  height: auto;
}

.sidebar-ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ranking-item {
  position: relative;
}

.ranking-item__num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 44px;
  background: #000;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.ranking-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.ranking-item__img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 368/237;
}

.ranking-item__title {
  font-size: 20px;
  color: var(--black);
  padding: 8px 0 24px;
  margin: 0;
}
@media (max-width: 1199px) {
  .ranking-item__title {
    font-size: 16px;
  }
}

.sticky-banner {
  position: fixed;
  bottom: 0;
  right: 40px;
  width: 555px;
  z-index: 100;
}
@media (max-width: 1023px) {
  .sticky-banner {
    width: 380px;
    right: 20px;
  }
}
@media (max-width: 767px) {
  .sticky-banner {
    width: 100%;
    right: 0;
  }
}

.sticky-banner__close {
  position: absolute;
  top: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  border-radius: 50%;
  line-height: 1;
  padding: 0;
}

.sticky-banner__link {
  display: block;
}

.sticky-banner__img {
  display: block;
  width: 100%;
  height: auto;
}

.contact__header {
  top: 23px;
}
@media (max-width: 767px) {
  .contact__header {
    top: 0;
    margin-block-start: 0;
  }
}

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: min(42vw, 639px);
}
@media (max-width: 767px) {
  .contact-hero {
    min-height: auto;
    padding-block: 40px 60px;
  }
}

.contact-hero__bg {
  position: absolute;
  inset-inline-end: 0;
  top: 2%;
  bottom: 0;
  left: 38%;
  width: 56%;
  pointer-events: none;
  overflow: hidden;
}
.contact-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
@media (max-width: 1185px) {
  .contact-hero__bg img {
    -o-object-position: left center;
       object-position: left center;
  }
}
@media (max-width: 600px) {
  .contact-hero__bg {
    display: none;
  }
}

.contact-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 83px;
  padding-block: 86px 80px;
}
@media (max-width: 1023px) {
  .contact-hero__inner {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .contact-hero__inner {
    padding-inline: 28px;
    padding-block: 40px 40px;
  }
}

.contact-hero__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-block-end: 36px;
}
@media (max-width: 767px) {
  .contact-hero__top {
    flex-direction: column;
    gap: 24px;
    margin-block-end: 24px;
  }
}

.contact-hero__text {
  max-width: 530px;
}
@media (max-width: 767px) {
  .contact-hero__text {
    max-width: 100%;
  }
}

.contact-hero__badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to right, #4f95ff, #f6b3b3);
  color: #fff;
  font-size: clamp(13px, 13px + 7 * (100vw - 768px) / 732, 20px);
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  margin-block-end: 16px;
}
@media (max-width: 767px) {
  .contact-hero__badge {
    font-size: 13px;
    padding: 4px 12px;
  }
}

.contact-hero__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 16px;
  margin-block-end: 41px;
  line-height: 1.2;
}

.contact-hero__title-red {
  font-size: clamp(36px, 36px + 24 * (100vw - 768px) / 732, 60px);
  font-weight: 700;
  color: var(--danger);
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .contact-hero__title-red {
    font-size: 36px;
  }
}

.contact-hero__title-amp {
  font-size: clamp(30px, 30px + 20 * (100vw - 768px) / 732, 50px);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .contact-hero__title-amp {
    font-size: 30px;
  }
}

.contact-hero__title-black {
  flex-basis: 100%;
  font-size: clamp(36px, 36px + 24 * (100vw - 768px) / 732, 60px);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .contact-hero__title-black {
    font-size: 36px;
  }
}

.contact-hero__desc {
  font-size: clamp(14px, 14px + 6 * (100vw - 768px) / 732, 20px);
  font-weight: 600;
  line-height: 1.75;
  color: #000;
}
@media (max-width: 767px) {
  .contact-hero__desc {
    font-size: 14px;
  }
}

.contact-hero__cards {
  display: flex;
  gap: 23px;
}
@media (max-width: 1185px) {
  .contact-hero__cards {
    flex-direction: column;
    gap: 24px;
  }
}

.contact-hero__card {
  display: flex;
  align-items: center;
  gap: 23px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 5.4px 3px rgba(0, 0, 0, 0.25);
  padding: 17px 20px;
  width: 344px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .contact-hero__card {
    width: 324px;
    gap: 12px;
    padding: 12px 16px;
  }
}
@media (max-width: 600px) {
  .contact-hero__card {
    width: 100%;
  }
}

.contact-hero__card-icon {
  flex-shrink: 0;
  display: block;
  width: 48px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.contact-hero__card-body {
  flex: 1;
}

.contact-hero__card-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  color: #000;
  margin-block-end: 4px;
  white-space: nowrap;
}

.contact-hero__card-title-red {
  color: var(--danger);
}

.contact-hero__card-text {
  font-size: 13px;
  font-weight: 600;
  color: #000;
  line-height: 1.6;
}

.contact-hero__free {
  position: absolute;
  top: 36px;
  right: 0;
  width: clamp(140px, 140px + 38 * (100vw - 768px) / 732, 178px);
  height: clamp(140px, 140px + 38 * (100vw - 768px) / 732, 178px);
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .contact-hero__free {
    top: 300px;
    right: 100px;
  }
}
@media (max-width: 767px) {
  .contact-hero__free {
    display: none;
  }
}

.contact-hero__free-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.contact-hero__free-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-hero__free-label {
  font-size: clamp(10px, 10px + 3 * (100vw - 768px) / 732, 13px);
  font-weight: 600;
  color: #000;
}

.contact-hero__free-text {
  font-size: clamp(30px, 30px + 10 * (100vw - 768px) / 732, 40px);
  font-weight: 600;
  color: var(--danger);
  letter-spacing: 0.19em;
  line-height: 1.2;
}

.contact-hero__free-sub {
  font-size: clamp(8px, 8px + 2 * (100vw - 768px) / 732, 10px);
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  text-align: center;
  padding-block-start: clamp(6px, 6px + 4 * (100vw - 768px) / 732, 10px);
}

.contact-body {
  padding-block-end: 80px;
}
@media (max-width: 767px) {
  .contact-body {
    padding-block: 20px 60px;
  }
}

.contact-body__inner {
  display: grid;
  grid-template-columns: 1fr 353px;
  gap: 38px;
  align-items: flex-start;
  justify-content: center;
  max-width: 1332px;
  margin-inline: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 25.8px -3px rgba(0, 0, 0, 0.25);
  padding: 27px 58px 37px 31px;
}
@media (max-width: 1100px) {
  .contact-body__inner {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 1023px) {
  .contact-body__inner {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }
}

.contact-form__wrap {
  border-radius: 20px;
  border: 1px solid #E4E4E4;
  --contact-form-wrap-pad-inline-start: 44px;
  padding-inline-start: var(--contact-form-wrap-pad-inline-start);
}

.contact-form-area__title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-block-end: 19px;
  padding-inline-start: 26px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  align-items: center;
  gap: 21px;
  width: calc(100% + var(--contact-form-wrap-pad-inline-start));
  margin-inline-start: calc(-1 * var(--contact-form-wrap-pad-inline-start));
  padding-inline: var(--contact-form-wrap-pad-inline-start) 10px;
  border-block-start: 1px solid #e4e4e4;
  padding-block: 21px;
}
.contact-form__row:has(.contact-form__textarea), .contact-form__row:has(.contact-form__checkbox-group--wrap) {
  align-items: flex-start;
}
.contact-form__row:first-of-type {
  border-block-start: none;
}
@media (max-width: 767px) {
  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 16px;
    padding-inline-end: 0;
    align-items: start;
  }
}

.contact-form__label-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-form__label-wrap {
    padding-block-start: 0;
  }
}

.contact-form__label {
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.contact-form__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border-radius: 3px;
  padding: 1px 5px;
  flex-shrink: 0;
}
.contact-form__badge--required {
  background: var(--danger);
}
.contact-form__badge--optional {
  background: #adadad;
}

.contact-form__field {
  padding-inline-start: 16px;
}
@media (max-width: 767px) {
  .contact-form__field {
    padding-inline-start: 0;
  }
}

.contact-form__input {
  display: block;
  width: 100%;
  max-width: 361px;
  height: 41px;
  padding-inline: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #fff;
  font-family: inherit;
}
.contact-form__input::-moz-placeholder {
  color: #e9e9e9;
}
.contact-form__input::placeholder {
  color: #e9e9e9;
}
.contact-form__input:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.contact-form__input--name {
  max-width: 122px;
  display: inline-block;
  width: auto;
}

.contact-form__name-group {
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
}

.contact-form__textarea {
  display: block;
  width: 100%;
  max-width: 584px;
  height: 79px;
  padding: 10px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #fff;
  font-family: inherit;
  resize: vertical;
}
.contact-form__textarea::-moz-placeholder {
  color: #e9e9e9;
}
.contact-form__textarea::placeholder {
  color: #e9e9e9;
}
.contact-form__textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.contact-form__select-wrap {
  position: relative;
  display: inline-block;
  width: 190px;
}
.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  inset-inline-end: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='9' viewBox='0 0 20 9' fill='none'%3E%3Cpath d='M19.5015 0.680664L10.0015 7.68066L0.501465 0.680664' stroke='%23D9D9D9' stroke-width='1.69101'/%3E%3C/svg%3E") no-repeat center;
  pointer-events: none;
}
.contact-form__select-wrap select {
  display: block;
  width: 100%;
  max-width: 361px;
  height: 41px;
  padding-inline: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #E9E9E9;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.contact-form__select-wrap select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.contact-form__select {
  display: block;
  width: 100%;
  height: 41px;
  padding-inline: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #E9E9E9;
  background: #fff;
  font-family: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
.contact-form__select:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.contact-form__radio-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  color: #000;
}
.contact-form__radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  background-color: #fff;
  background-image: none;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form__radio input[type=radio]:checked {
  border-color: #d4d4d4;
  background-image: radial-gradient(circle at center, transparent 0, transparent 4px, #fff 4.5px, #fff 100%), linear-gradient(90deg, #e26969 0%, #435cb5 100%);
}
.contact-form__radio input[type=radio]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.contact-form__checkbox-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.contact-form__checkbox-group--wrap {
  max-width: 560px;
  align-items: flex-start;
}

.contact-form__checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  color: #000;
}
.contact-form__checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 15px;
  height: 16px;
  margin: 0;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form__checkbox input[type=checkbox]:checked {
  border-color: #E26969;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 3.5L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/10px 8px, linear-gradient(90deg, #E26969 0%, #435CB5 100%);
}
.contact-form__checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.contact-form__privacy {
  margin-block-start: 22px;
  text-align: center;
}
.contact-form__privacy p {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.7;
}

.contact-form__privacy-link {
  color: var(--danger);
  text-decoration: underline;
}
.contact-form__privacy-link:hover {
  transform: none;
}

.contact-form__submit-wrap {
  display: flex;
  justify-content: center;
  margin-block-start: 24px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, #e26969, #435cb5);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  padding: 14px 40px;
  width: 346px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact-form__submit img {
  display: block;
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact-form__submit:hover {
  opacity: 0.85;
}

.contact-form-area .wpcf7 form {
  margin: 0;
  padding: 0;
}
.contact-form-area .contact-form__wrap {
  padding-inline: 36px;
  border-radius: 20px;
  border: 1px solid #e4e4e4;
}
.contact-form-area input[type=text],
.contact-form-area input[type=email],
.contact-form-area input[type=tel],
.contact-form-area input[type=url],
.contact-form-area input[type=number] {
  display: block;
  width: 100%;
  max-width: 361px;
  height: 41px;
  padding-inline: 12px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #fff;
  font-family: inherit;
  box-sizing: border-box;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.contact-form-area input[type=text]::-moz-placeholder, .contact-form-area input[type=email]::-moz-placeholder, .contact-form-area input[type=tel]::-moz-placeholder, .contact-form-area input[type=url]::-moz-placeholder, .contact-form-area input[type=number]::-moz-placeholder {
  color: #e9e9e9;
}
.contact-form-area input[type=text]::placeholder,
.contact-form-area input[type=email]::placeholder,
.contact-form-area input[type=tel]::placeholder,
.contact-form-area input[type=url]::placeholder,
.contact-form-area input[type=number]::placeholder {
  color: #e9e9e9;
}
.contact-form-area input[type=text]:focus,
.contact-form-area input[type=email]:focus,
.contact-form-area input[type=tel]:focus,
.contact-form-area input[type=url]:focus,
.contact-form-area input[type=number]:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.contact-form-area textarea {
  display: block;
  width: 100%;
  max-width: 584px;
  height: 79px;
  padding: 10px 12px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  background: #fff;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}
.contact-form-area textarea::-moz-placeholder {
  color: #e9e9e9;
}
.contact-form-area textarea::placeholder {
  color: #e9e9e9;
}
.contact-form-area textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}
.contact-form-area .wpcf7-radio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.contact-form-area .wpcf7-radio .wpcf7-list-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  margin: 0;
}
.contact-form-area .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 6px;
       column-gap: 6px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  color: #000;
  margin: 0;
}
.contact-form-area .wpcf7-radio input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-sizing: border-box;
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin: 0;
  border: 1px solid #d4d4d4;
  border-radius: 50%;
  background-color: #fff;
  background-image: none;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
}
.contact-form-area .wpcf7-radio input[type=radio]:checked {
  border-color: #d4d4d4;
  background-image: radial-gradient(circle at center, transparent 0, transparent 4px, #fff 4.5px, #fff 100%), linear-gradient(90deg, #e26969 0%, #435cb5 100%);
}
.contact-form-area .wpcf7-radio input[type=radio]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.contact-form-area .wpcf7-checkbox {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.contact-form-area .wpcf7-checkbox .wpcf7-list-item {
  display: flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  margin: 0;
}
.contact-form-area .wpcf7-checkbox .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 11px;
       column-gap: 11px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 300;
  color: #000;
  margin: 0;
}
.contact-form-area .wpcf7-checkbox input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  width: 15px;
  height: 16px;
  min-width: 15px;
  margin: 0;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  background-color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  display: inline-block;
}
.contact-form-area .wpcf7-checkbox input[type=checkbox]:checked {
  border-color: #e26969;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8' fill='none'%3E%3Cpath d='M1 3.5L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/10px 8px, linear-gradient(90deg, #e26969 0%, #435cb5 100%);
}
.contact-form-area .wpcf7-checkbox input[type=checkbox]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.contact-form-area input[type=submit],
.contact-form-area button[type=submit],
.contact-form-area .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(to right, #e26969, #435cb5);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  padding: 0 40px;
  height: 54px;
  width: 346px;
  max-width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}
.contact-form-area input[type=submit] img,
.contact-form-area button[type=submit] img,
.contact-form-area .wpcf7-submit img {
  display: block;
  width: 20px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.contact-form-area input[type=submit]:hover,
.contact-form-area button[type=submit]:hover,
.contact-form-area .wpcf7-submit:hover {
  opacity: 0.85;
}
.contact-form-area p:has(input[type=submit]),
.contact-form-area p:has(button[type=submit]) {
  display: flex;
  justify-content: center;
  margin-block-start: 24px;
  margin-block-end: 0;
}
.contact-form-area .contact-form__privacy,
.contact-form-area p.wpcf7-privacy {
  margin-block-start: 22px;
  text-align: center;
}
.contact-form-area .contact-form__privacy p, .contact-form-area .contact-form__privacy,
.contact-form-area p.wpcf7-privacy p,
.contact-form-area p.wpcf7-privacy {
  font-size: 15px;
  font-weight: 600;
  color: #000;
  line-height: 1.7;
}
.contact-form-area .contact-form__privacy a,
.contact-form-area p.wpcf7-privacy a {
  color: var(--danger);
  text-decoration: underline;
}
.contact-form-area .contact-form__privacy a:hover,
.contact-form-area p.wpcf7-privacy a:hover {
  transform: none;
}
.contact-form-area .wpcf7-not-valid-tip {
  font-size: 12px;
  color: var(--danger);
  margin-block-start: 4px;
}
.contact-form-area .wpcf7-response-output {
  margin-block-start: 16px;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid #d4d4d4;
}

.contact-form__input--name {
  max-width: 122px !important;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-block-start: 31px;
}
@media (max-width: 1023px) {
  .contact-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 599px) {
  .contact-sidebar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1023px) and (min-width: 600px) {
  .contact-sidebar__block:last-child {
    grid-column: 1/-1;
  }
}

.contact-sidebar__block {
  background: #fbfbfa;
  border-radius: 20px;
  padding: 18px 21px 52px;
}
.contact-sidebar__block--tel {
  border: 1px solid #a1a1a1;
  padding: 19px 10px 22px;
}
@media (max-width: 767px) {
  .contact-sidebar__block {
    padding: 24px 20px;
  }
}

.contact-sidebar__title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-block-end: 27px;
  margin-inline-start: 16px;
}

.contact-recommend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-recommend__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}
.contact-recommend__item img {
  display: block;
  width: 32px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}

.contact-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.contact-steps__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding-block-end: 45px;
}
.contact-steps__item:last-child {
  padding-block-end: 0;
}
.contact-steps__item:last-child::before {
  display: none;
}
.contact-steps__item::before {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: #f00;
}

.contact-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  background: var(--danger);
  border-radius: 50%;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.contact-steps__body {
  flex: 1;
  padding-block-start: 2px;
}

.contact-steps__name {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-block-end: 4px;
}

.contact-steps__desc {
  font-size: 15px;
  font-weight: 300;
  color: #000;
}

.contact-tel__lead {
  font-size: 14.5px;
  font-weight: 700;
  color: #000;
  margin-block-end: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.contact-tel__num-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block-end: 12px;
}
.contact-tel__num-wrap img {
  display: block;
  width: 38px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
@media (min-width: 1023px) and (max-width: 1100px) {
  .contact-tel__num-wrap img {
    width: 30px;
  }
}

.contact-tel__num {
  font-size: 30px;
  font-weight: 700;
  color: var(--danger);
  text-decoration: none;
  letter-spacing: 0.02em;
}
@media (min-width: 1023px) and (max-width: 1100px) {
  .contact-tel__num {
    font-size: clamp(22px, 2.5vw + 1px, 30px);
  }
}
.contact-tel__num:hover {
  opacity: 0.8;
}
@media (max-width: 767px) {
  .contact-tel__num {
    font-size: 29px;
  }
}

.contact-tel__hours {
  font-size: 14.5px;
  font-weight: 700;
  color: #000;
  padding-inline-start: 50px;
}
@media (max-width: 767px) {
  .contact-tel__hours {
    padding-inline-start: 40px;
  }
}

.recruit-fv {
  padding-inline-end: 20px;
  padding-block-start: 8px;
  display: flex;
  gap: 0;
}

.recruit-fv__main {
  flex: 1;
  min-width: 0;
  background: #dbf656;
  border-radius: 0 20px 20px 0;
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 50vw, 720px);
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  .recruit-fv__main {
    border-radius: 0 10px 10px 0;
    min-height: 480px;
  }
}

.recruit-fv__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.recruit-fv__bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit-fv__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(72, 73, 65, 0.5), rgba(255, 255, 255, 0.5) 61%);
}

.recruit-fv__badge {
  position: absolute;
  top: clamp(14px, 2vw, 20px);
  right: clamp(14px, 2vw, 20px);
  z-index: 2;
  display: inline-block;
  background: #fff;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  padding: 8px 20px;
}
@media (max-width: 767px) {
  .recruit-fv__badge {
    font-size: 13px;
    padding: 6px 14px;
  }
}

.recruit-fv__content {
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3.6vw, 54px);
  padding-block-start: clamp(60px, 10vw, 130px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .recruit-fv__content {
    padding: 60px 20px 40px;
  }
}

.recruit-fv__bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 767px) {
  .recruit-fv__bottom {
    gap: 16px;
  }
}

.recruit-fv__heading {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #000;
}

.recruit-fv__heading--blue {
  color: #3751ff;
}

.recruit-fv__heading--red {
  color: var(--danger);
}

.recruit-fv__text {
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .recruit-fv__text {
    font-size: 14px;
  }
}

.recruit-fv__btn-wrap {
  position: relative;
}

.recruit-fv__btn-shadow {
  position: absolute;
  inset: 4px 0 -4px 4px;
  background: #060606;
  border-radius: 68px;
  z-index: 0;
}

.recruit-fv__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(to right, #ff3b00, #4593ff);
  border: 1px solid #000;
  border-radius: 68px;
  color: #fff;
  font-size: clamp(14px, 1.3vw, 17px);
  font-weight: 600;
  padding: 16px 36px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit-fv__btn:hover {
  transform: none;
  opacity: 0.85;
}
.recruit-fv__btn svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-fv__btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}

.recruit-fv__side {
  width: clamp(32px, 4vw, 60px);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-block-start: clamp(40px, 6vw, 80px);
  gap: 16px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
@media (max-width: 767px) {
  .recruit-fv__side {
    display: none;
  }
}

.recruit-fv__side-en {
  font-size: clamp(10px, 1.2vw, 17px);
  font-weight: 600;
  color: #000;
  letter-spacing: 0.05em;
}

.recruit-fv__side-ja {
  font-size: clamp(8px, 0.9vw, 13px);
  font-weight: 600;
  color: var(--danger);
  letter-spacing: 0.05em;
}

.recruit-mission {
  padding-block: clamp(60px, 8vw, 100px);
  padding-inline: 20px;
}

.recruit-mission__inner {
  max-width: 1460px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 4vw, 60px);
}
@media (max-width: 767px) {
  .recruit-mission__inner {
    flex-direction: column;
    gap: 0;
  }
}

.recruit-mission__left {
  flex-shrink: 0;
  width: clamp(240px, 40vw, 595px);
}
@media (max-width: 767px) {
  .recruit-mission__left {
    width: 100%;
  }
}

.recruit-mission__label-wrap {
  margin-block-end: -10px;
  padding-inline-start: 10px;
}
@media (max-width: 767px) {
  .recruit-mission__label-wrap {
    margin-block-end: -16px;
  }
}

.recruit-mission__label-en {
  font-family: "Grape Nuts", cursive;
  font-size: clamp(60px, 7vw, 100px);
  color: var(--danger);
  line-height: 1;
  transform: rotate(-8.33deg);
  transform-origin: left center;
  display: block;
  white-space: nowrap;
}

.recruit-mission__label-ja {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 700;
  color: #000;
  transform: rotate(-8.33deg);
  transform-origin: left center;
  display: block;
  margin-block-start: 4px;
  margin-inline-start: 8px;
  white-space: nowrap;
}

.recruit-mission__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 595/382;
  -o-object-fit: cover;
     object-fit: cover;
}

.recruit-mission__content {
  flex: 1;
  padding-block-start: clamp(40px, 8vw, 100px);
}
@media (max-width: 767px) {
  .recruit-mission__content {
    padding-block-start: 30px;
  }
}

.recruit-mission__heading {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 2;
}

.recruit-mission__heading--red {
  color: var(--danger);
}

.recruit-mission__heading--blue {
  color: #0400ff;
}

.recruit-mission__text {
  margin-block-start: 16px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 2;
}
@media (max-width: 767px) {
  .recruit-mission__text {
    font-size: 14px;
  }
}

.recruit-mission__btn-wrap {
  margin-block-start: 32px;
  position: relative;
  display: inline-block;
}

.recruit-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid #000;
  border-radius: 68px;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  color: #000;
  padding: 16px 36px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit-btn::before {
  content: "";
  position: absolute;
  inset: 3px 0 -3px 4px;
  background: #060606;
  border-radius: 68px;
  z-index: -1;
}
.recruit-btn:hover {
  transform: none;
  opacity: 0.85;
}
.recruit-btn svg {
  flex-shrink: 0;
}

.recruit-btn--yellow {
  background: #e2ff28;
}

.recruit-btn--cyan {
  background: #4bf9ff;
}

.recruit-btn--white {
  background: #fff;
}

.recruit-works {
  padding-block: clamp(60px, 8vw, 100px);
  padding-inline: 20px;
  background: #f8f8f8;
}

.recruit-works__inner {
  max-width: 1460px;
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 40px);
}
@media (max-width: 1023px) {
  .recruit-works__inner {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .recruit-works__inner {
    flex-direction: column;
    gap: 0;
  }
}

.recruit-works__label-wrap {
  flex-shrink: 0;
  padding-block-start: 20px;
}
@media (max-width: 767px) {
  .recruit-works__label-wrap {
    padding-block-start: 0;
    margin-block-end: -20px;
    z-index: 1;
  }
}

.recruit-works__label-en {
  font-family: "Grape Nuts", cursive;
  font-size: clamp(60px, 7vw, 100px);
  color: var(--danger);
  line-height: 1;
  transform: rotate(-8.33deg);
  transform-origin: left center;
  display: block;
  white-space: nowrap;
}

.recruit-works__content {
  flex: 1;
  min-width: 280px;
  padding-block-start: clamp(20px, 4vw, 60px);
}
@media (max-width: 767px) {
  .recruit-works__content {
    min-width: unset;
    width: 100%;
    padding-block-start: 30px;
  }
}

.recruit-works__heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 2;
}

.recruit-works__heading--red {
  color: var(--danger);
}

.recruit-works__heading--purple {
  color: #9500ff;
}

.recruit-works__text {
  margin-block-start: 16px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 2;
}
@media (max-width: 767px) {
  .recruit-works__text {
    font-size: 14px;
  }
}

.recruit-works__btn-wrap {
  margin-block-start: 32px;
}

.recruit-works__cards {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .recruit-works__cards {
    width: 100%;
    flex-basis: 100%;
    margin-block-start: 30px;
  }
}
@media (max-width: 767px) {
  .recruit-works__cards {
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-block-end: 8px;
  }
}

.recruit-works__card {
  position: relative;
  width: clamp(100px, 15vw, 224px);
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
}
.recruit-works__card:first-child {
  border-radius: 10px 0 0 10px;
}
.recruit-works__card:last-child {
  border-radius: 0 10px 10px 0;
}
.recruit-works__card img {
  display: block;
  width: 100%;
  aspect-ratio: 224/427;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .recruit-works__card {
    width: 160px;
    border-radius: 10px;
    scroll-snap-align: start;
  }
  .recruit-works__card:first-child, .recruit-works__card:last-child {
    border-radius: 10px;
  }
}

.recruit-works__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(174, 154, 154, 0.7), rgba(0, 0, 0, 0.7));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 12px;
}

.recruit-works__card-title {
  color: #fff;
  font-size: clamp(13px, 1.2vw, 17px);
  font-weight: 600;
  white-space: nowrap;
}

.recruit-works__card-text {
  color: #fff;
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.5;
  margin-block-start: 6px;
}
@media (max-width: 767px) {
  .recruit-works__card-text {
    display: none;
  }
}

.recruit-partner {
  padding-block: clamp(60px, 8vw, 100px);
  padding-inline: 20px;
}

.recruit-partner__inner {
  max-width: 1460px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: clamp(20px, 3vw, 40px);
       column-gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
@media (max-width: 767px) {
  .recruit-partner__inner {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.recruit-partner__label-wrap {
  grid-column: 1;
  grid-row: 1;
  padding-block-start: 20px;
}
@media (max-width: 767px) {
  .recruit-partner__label-wrap {
    padding-block-start: 0;
    margin-block-end: -20px;
    z-index: 1;
  }
}

.recruit-partner__label-en {
  font-family: "Grape Nuts", cursive;
  font-size: clamp(60px, 7vw, 100px);
  color: var(--danger);
  line-height: 1;
  transform: rotate(-8.33deg);
  transform-origin: left center;
  display: block;
  white-space: nowrap;
}

.recruit-partner__body {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: clamp(30px, 4vw, 60px);
       column-gap: clamp(30px, 4vw, 60px);
  align-items: start;
  padding-block-start: clamp(20px, 4vw, 40px);
}
@media (max-width: 767px) {
  .recruit-partner__body {
    grid-template-columns: 1fr;
    padding-block-start: 30px;
    gap: 30px;
  }
}

.recruit-partner__content {
  padding-block-start: 10px;
}

.recruit-partner__heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 2;
}

.recruit-partner__heading--salmon {
  color: #ed7272;
}

.recruit-partner__text {
  margin-block-start: 16px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 2;
}
@media (max-width: 767px) {
  .recruit-partner__text {
    font-size: 14px;
  }
}

.recruit-partner__images {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
}
.recruit-partner__images img {
  display: block;
  flex: 1;
  min-width: 0;
  aspect-ratio: 254/320;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .recruit-partner__images {
    flex-direction: column;
    gap: 8px;
    border-radius: 0;
    overflow: visible;
  }
  .recruit-partner__images img {
    border-radius: 10px;
    aspect-ratio: 16/9;
  }
}

.recruit-entame {
  padding-block: clamp(60px, 8vw, 100px);
  padding-inline: 20px;
  background: #f8f8f8;
}

.recruit-entame__inner {
  max-width: 1460px;
  margin-inline: auto;
}

.recruit-entame__label-wrap {
  margin-block-end: -30px;
}
@media (max-width: 767px) {
  .recruit-entame__label-wrap {
    margin-block-end: -16px;
  }
}

.recruit-entame__label-en {
  font-family: "Grape Nuts", cursive;
  font-size: clamp(40px, 5vw, 60px);
  color: var(--danger);
  line-height: 1;
  transform: rotate(-8.33deg);
  transform-origin: left center;
  display: block;
  white-space: nowrap;
}

.recruit-entame__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: clamp(30px, 4vw, 60px);
       column-gap: clamp(30px, 4vw, 60px);
  align-items: start;
}
@media (max-width: 767px) {
  .recruit-entame__body {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.recruit-entame__photos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.recruit-entame__photos img {
  display: block;
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 338/221;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .recruit-entame__photos {
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding-block-end: 4px;
  }
  .recruit-entame__photos img {
    flex-shrink: 0;
    width: 60vw;
    max-width: 280px;
  }
}

.recruit-entame__content {
  padding-block-start: 20px;
}

.recruit-entame__heading {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 2;
}

.recruit-entame__text {
  margin-block-start: 16px;
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 2;
}
@media (max-width: 767px) {
  .recruit-entame__text {
    font-size: 14px;
  }
}

.recruit-entame__benefits {
  margin-block-start: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
}
@media (max-width: 767px) {
  .recruit-entame__benefits {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    margin-block-start: 24px;
  }
}

.recruit-entame__benefit {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.recruit-entame__benefit img {
  display: block;
  width: auto;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.recruit-entame__benefit p {
  font-size: clamp(11px, 1vw, 13.5px);
  font-weight: 300;
  line-height: 1.4;
  color: #000;
}

.recruit-entame__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-block-start: 24px;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  padding-block-end: 2px;
  transition: opacity 0.3s ease;
}
.recruit-entame__link:hover {
  transform: none;
  opacity: 0.7;
}

.recruit-cta {
  padding-inline: clamp(20px, 3vw, 50px);
  padding-block: clamp(20px, 3vw, 40px);
}

.recruit-cta__inner {
  background: linear-gradient(to right, #eb6464, #aca4f2);
  border-radius: 20px;
  padding: clamp(30px, 4vw, 50px) clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 24px;
    gap: 16px;
  }
}

.recruit-cta__deco {
  font-family: "Grape Nuts", cursive;
  font-size: clamp(24px, 2.5vw, 35px);
  color: #fff;
  transform: rotate(-23.08deg);
  transform-origin: center center;
  flex-shrink: 0;
  line-height: 1;
  white-space: nowrap;
  margin-inline-end: 10px;
}

.recruit-cta__content {
  flex: 1;
  min-width: 0;
}

.recruit-cta__heading {
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .recruit-cta__heading {
    white-space: normal;
    font-size: 20px;
  }
}

.recruit-cta__text {
  margin-block-start: 6px;
  font-size: clamp(12px, 1.1vw, 15px);
  color: #fff;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .recruit-cta__text {
    font-size: 13px;
  }
}

.recruit-cta__btn-wrap {
  flex-shrink: 0;
  position: relative;
}
@media (max-width: 767px) {
  .recruit-cta__btn-wrap {
    align-self: flex-start;
  }
}

.recruit-cta__btn-shadow {
  position: absolute;
  inset: 4px 0 -4px 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 68px;
  z-index: 0;
}

.recruit-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 68px;
  color: #000;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 600;
  padding: 16px 40px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit-cta__btn:hover {
  transform: none;
  opacity: 0.85;
}
.recruit-cta__btn svg {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .recruit-cta__btn {
    padding: 14px 30px;
  }
}/*# sourceMappingURL=style.css.map */