@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #000000;
  background: #FFFFFF;
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

ul, ol {
  list-style: none;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: 980px;
}

.display {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
}

.page {
  padding-top: 64px;
}

.hn {
  display: inline-block;
}

.hn__sp {
  display: inline-block;
}

.hn__c {
  display: inline-block;
  vertical-align: bottom;
  position: relative;
  overflow: hidden;
  line-height: 1.15;
}
.hn__c > span {
  display: block;
  transition: transform 0.22s cubic-bezier(0.7, 0, 0.2, 1);
  transition-delay: calc(var(--i) * 0.035s);
}
.hn__c::after {
  content: attr(data-c);
  position: absolute;
  left: 0;
  top: 0;
  color: #FF5500;
  transform: translateY(100%);
  transition: transform 0.22s cubic-bezier(0.7, 0, 0.2, 1);
  transition-delay: calc(var(--i) * 0.035s);
}

a:hover .hn__c > span {
  transform: translateY(-100%);
}

a:hover .hn__c::after {
  transform: translateY(0);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(237, 237, 237, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}
.header.is-scrolled {
  background: #FFFFFF;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}
.header.is-unfixed {
  transform: translateY(-100%);
}
.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  height: 34px;
  width: auto;
  display: block;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 38px;
}
.header__nav a {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.header__nav a.is-current {
  color: #FF5500;
}
@media (max-width: 900px) {
  .header__nav {
    display: none;
  }
}
.header__burger {
  display: none;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  position: relative;
}
.header__burger span {
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  background: #000000;
  transition: 0.25s;
}
.header__burger span:nth-child(1) {
  top: 16px;
}
.header__burger span:nth-child(2) {
  top: 22px;
}
.header__burger span:nth-child(3) {
  top: 28px;
}
@media (max-width: 900px) {
  .header__burger {
    display: block;
  }
}
@media (max-width: 900px) {
  .header__contact {
    display: none;
  }
}

.btn-contact {
  background: #000000;
  color: #FFFFFF;
  font-family: "Unbounded", sans-serif;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  border: 2px solid #000000;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-contact:hover {
  background: #FFFFFF;
  color: #000000;
}

.btn-contact.header__contact {
  font-family: "Unbounded", sans-serif;
  width: 180px;
  height: 40px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .btn-contact.header__contact {
    display: none;
  }
}

.navmenu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #FFFFFF;
  padding: 18px 26px 40px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
.navmenu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.navmenu__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.navmenu__bar img {
  height: 34px;
}
.navmenu__close {
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
}
.navmenu__close span {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 19px;
  height: 2px;
  background: #000000;
}
.navmenu__close span:nth-child(1) {
  transform: rotate(45deg);
}
.navmenu__close span:nth-child(2) {
  transform: rotate(-45deg);
}
.navmenu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.navmenu__nav a {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: #000000;
  transition: color 0.2s ease;
}
.navmenu__nav a:hover {
  color: #FF5500;
}
.navmenu__privacy {
  margin-top: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #444;
}
.navmenu__privacy:hover {
  color: #FF5500;
}
.navmenu__contact {
  margin-top: auto;
  font-family: "Unbounded", sans-serif;
  background: #000000;
  color: #FFFFFF;
  text-align: center;
  height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  font-size: 14px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 2px solid #000000;
  transition: background 0.2s ease, color 0.2s ease;
}
.navmenu__contact:hover {
  background: #FFFFFF;
  color: #000000;
}

.contact-band {
  background: #000000;
  color: #FFFFFF;
  padding: 90px 0;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 1;
  margin-top: -24px;
}
.contact-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "head round" "ja   round";
  align-items: center;
  column-gap: 30px;
  row-gap: 10px;
}
.contact-band .display {
  grid-area: head;
  font-size: 72px;
}
.contact-band__ja {
  grid-area: ja;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
}
.contact-band__round {
  grid-area: round;
  align-self: center;
  width: 112px;
  height: 76px;
  border-radius: 76px;
  background: #FFFFFF;
  color: #000000;
  display: grid;
  place-items: center;
  font-size: 30px;
  flex-shrink: 0;
  border: 2px solid #FFFFFF;
  transition: background 0.25s ease, color 0.25s ease;
}
.contact-band__inner:hover .contact-band__round {
  background: transparent;
  color: #FFFFFF;
}
@media (max-width: 900px) {
  .contact-band .display {
    font-size: 48px;
  }
}
@media (max-width: 600px) {
  .contact-band__inner {
    grid-template-areas: "head head" "ja   round";
    text-align: left;
  }
  .contact-band .display {
    font-size: 34px;
  }
  .contact-band__ja {
    font-size: 14px;
  }
  .contact-band__round {
    width: 65px;
    height: 45px;
    font-size: 22px;
  }
  .contact-band__round .ic-arrow {
    height: 17px;
  }
}

.footer {
  background: #FFFFFF;
  padding: 50px 0;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 1;
  margin-top: -24px;
}
.footer__inner {
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
}
.footer__logo {
  height: 60px;
}
.footer__nav {
  display: flex;
  gap: 40px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
}
.footer__nav a {
  transition: color 0.2s ease;
}
.footer__nav a:hover {
  color: #FF5500;
}
.footer__meta {
  text-align: right;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.footer__meta div {
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
  }
  .footer__meta {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 50px 0 46px;
  }
  .footer__inner {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas: "logo nav" "meta nav";
    justify-content: space-between;
    align-items: start;
    text-align: left;
    row-gap: 64px;
    column-gap: 20px;
    flex-wrap: nowrap;
  }
  .footer__inner > a {
    grid-area: logo;
  }
  .footer__logo {
    height: 56px;
  }
  .footer__nav {
    grid-area: nav;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
    max-width: none;
    margin: 0;
    font-size: 18px;
  }
  .footer__meta {
    grid-area: meta;
    align-self: end;
    text-align: left;
    font-size: 13px;
  }
}

.page-hero {
  background: #ededed;
  padding: 182px 0 100px;
}
.page-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}
.page-hero .display {
  font-size: 59px;
  font-weight: 700;
}
.page-hero__ja {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.page-hero__lead {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 500;
  max-width: 620px;
}
.page-hero__art {
  position: absolute;
  right: 24px;
  top: -30px;
  width: 420px;
}
.page-hero__art img {
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .page-hero {
    padding: 130px 0 80px;
  }
  .page-hero .display {
    font-size: 40px;
  }
  .page-hero__art {
    position: static;
    width: 210px;
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  .page-hero__art {
    width: 230px;
    margin-left: auto;
    margin-right: auto;
  }
}

.ic-arrow {
  display: inline-block;
  width: 14px;
  height: 11px;
  background-color: currentColor;
  -webkit-mask: url("../assets/common/archi.svg") no-repeat center/contain;
  mask: url("../assets/common/archi.svg") no-repeat center/contain;
  flex-shrink: 0;
}

.ic-arrow--left {
  transform: scaleX(-1);
}

.arr .ic-arrow {
  width: 12px;
  height: 10px;
}

.contact-band__round .ic-arrow {
  width: 26px;
  height: 20px;
}

.circle-arr {
  width: 50px;
  height: 30px;
  border-radius: 18px;
  background: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px;
  transition: background 0.2s ease, color 0.2s ease;
}
.circle-arr:hover {
  background: transparent;
  color: #000000;
}

.btn-arrow, .btn-list {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  background: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  border-radius: 41px;
  padding: 0 24px;
  width: 254px;
  height: 56px;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  min-width: 0;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-arrow .arr, .btn-list .arr {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: transparent;
  transition: color 0.2s ease;
}
.btn-arrow:hover, .btn-list:hover {
  background: transparent;
  color: #000000;
}

.btn-list {
  width: auto;
  height: auto;
  min-width: 120px;
  padding: 10px 16px 10px 26px;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.btn-list .arr {
  width: 22px;
  height: 22px;
  font-size: 12px;
}

.tag {
  font-size: 11px;
  color: #FFFFFF;
  padding: 3px 12px;
  border-radius: 16px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  display: inline-block;
}
.tag--info {
  background: #00277E;
}
.tag--notice {
  background: #FF5500;
}
.tag--press {
  background: #A50000;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 22px;
  border-radius: 24px;
  letter-spacing: 0.06em;
}
.store--amazon {
  background: #0a3d8f;
}
.store--rakuten {
  background: #FF5500;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
.marquee__track {
  display: inline-block;
  animation: marquee-scroll 24s linear infinite;
}

.mq-seq {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  font-weight: 600;
}

.marquee__track .mq-seq {
  font-size: 100px;
}

.ecom-sp {
  display: none;
  text-align: center;
  margin-top: 30px;
}
.ecom-sp__head {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 0 auto;
}
.ecom-sp__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin: 24px 0 18px;
}
.ecom-sp__desc {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.95;
  text-align: left;
  max-width: 680px;
  margin: 0 auto;
}
.ecom-sp__img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  margin: 28px auto 0;
}
@media (max-width: 600px) {
  .ecom-sp {
    display: block;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.peek {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: transparent;
  display: grid;
  place-items: center;
  position: relative;
}
.peek svg {
  grid-area: 1/1;
  width: 96%;
  height: 96%;
  animation: spin 16s linear infinite;
}
.peek text {
  fill: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
  font-family: "Unbounded", sans-serif;
  letter-spacing: 1px;
}
.peek__center {
  grid-area: 1/1;
  align-self: center;
  justify-self: center;
  width: 70%;
  height: 70%;
  background: #FFFFFF;
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  color: #FF5500;
  font-weight: 700;
  font-size: 16px;
}
.peek__center .a {
  font-size: 20px;
  display: block;
  margin-top: 4px;
}

.sec-head .display {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.sec-head__ja {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-top: 6px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
body.is-menu-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .sec-head .display {
    font-size: 38px;
  }
  .sec-head__ja {
    font-size: 20px;
  }
  .page-hero .display {
    font-size: 30px;
  }
}
.sp-br {
  display: none;
}

@media (max-width: 600px) {
  .sp-br {
    display: inline;
  }
}
.form-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 50px 60px 60px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .form-card {
    padding: 32px 24px 40px;
  }
}

.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
}
.form-row__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding-top: 10px;
}
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.req {
  background: #A40000;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 12px;
  letter-spacing: 0.04em;
}

.field {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 14px 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 15px;
  background: #FFFFFF;
  color: #000000;
}
.field::placeholder {
  color: #b0b0b0;
}
.field:focus {
  outline: none;
  border-color: #FF5500;
}

textarea.field {
  min-height: 140px;
  resize: vertical;
}

select.field {
  -webkit-appearance: none;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #555 50%), linear-gradient(135deg, #555 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.file-drop {
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 16px;
  font-size: 14px;
  color: #888;
}
.file-drop .link {
  color: #00277E;
}

.form-agree {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 30px;
  font-size: 14px;
}
.form-agree .link {
  color: #00277E;
  text-decoration: underline;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  cursor: pointer;
  border-radius: 30px;
  padding: 15px 40px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  margin: 0 auto;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-submit:hover {
  background: #FFFFFF;
  color: #000000;
}

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

.form-confirm__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  padding: 18px 4px;
  border-bottom: 1px solid #ececec;
}
@media (max-width: 900px) {
  .form-confirm__row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
.form-confirm__label {
  font-weight: 700;
  font-size: 14px;
  color: #333;
}
.form-confirm__value {
  font-size: 15px;
  white-space: pre-wrap;
  word-break: break-word;
}

.form-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-send, .btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 290px;
  padding: 16px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-send .ar, .btn-back .ar {
  position: absolute;
  font-size: 16px;
}
@media (max-width: 600px) {
  .btn-send, .btn-back {
    min-width: 0;
    width: 100%;
  }
}

.btn-back {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}
.btn-back .ar {
  left: 28px;
}
.btn-back:hover {
  background: #000000;
  color: #FFFFFF;
}

.btn-send {
  background: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}
.btn-send .ar {
  right: 28px;
}
.btn-send:hover {
  background: #FFFFFF;
  color: #000000;
}

.hero {
  background: #ededed;
  padding: 180px 0;
  text-align: center;
  position: relative;
}
.hero__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  letter-spacing: 0.05em;
}
.hero .display.big {
  font-size: 62px;
}
.hero__with {
  font-size: 62px;
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
}
.hero__sub {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.5em;
  margin-top: 22px;
  padding-left: 0.5em;
}
.hero__pill {
  background: #FFFFFF;
  border-radius: 999px;
  width: 6.6em;
  height: 1.6em;
  overflow: hidden;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.hero__rotator {
  display: block;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-animation: hero-words 10s cubic-bezier(0.86, 0, 0.07, 1) infinite;
  animation: hero-words 10s cubic-bezier(0.86, 0, 0.07, 1) infinite;
}
.hero__word {
  display: block;
  height: 1.6em;
  line-height: 1.6em;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero .display.big, .hero__with {
    font-size: 40px;
  }
  .hero__pill {
    width: 6.4em;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 150px 0 0;
  }
  .hero__head {
    flex-wrap: nowrap;
    gap: 8px;
  }
  .hero .display.big, .hero__with {
    font-size: 23px;
  }
  .hero__pill {
    width: 142px;
    flex: 0 0 auto;
  }
  .hero__with {
    width: 160px;
    flex: 0 0 auto;
  }
  .hero__sub {
    width: 188px;
    margin: 14px auto 0;
    font-size: 17px;
    letter-spacing: 0.3em;
  }
}

@-webkit-keyframes hero-words {
  0%, 14% {
    -webkit-transform: translateY(0);
  }
  18%, 34% {
    -webkit-transform: translateY(-1.6em);
  }
  38%, 54% {
    -webkit-transform: translateY(-3.2em);
  }
  58%, 74% {
    -webkit-transform: translateY(-4.8em);
  }
  78%, 94% {
    -webkit-transform: translateY(-6.4em);
  }
  100% {
    -webkit-transform: translateY(-8em);
  }
}
@keyframes hero-words {
  0%, 14% {
    transform: translateY(0);
  }
  18%, 34% {
    transform: translateY(-1.6em);
  }
  38%, 54% {
    transform: translateY(-3.2em);
  }
  58%, 74% {
    transform: translateY(-4.8em);
  }
  78%, 94% {
    transform: translateY(-6.4em);
  }
  100% {
    transform: translateY(-8em);
  }
}
@keyframes hero-pop {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__rotator,
  .philosophy__art,
  .philosophy__art img {
    -webkit-animation: none;
    animation: none;
  }
}
.philosophy {
  position: relative;
  background-color: #ededed;
  background-image: url("../assets/top/hero_bg_top.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  color: #FFFFFF;
  padding: 0;
  overflow: hidden;
  padding-top: 200px;
  margin-top: -56px;
}
.philosophy__art {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 20px;
  animation: hero-pop 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.philosophy__art img {
  display: inline-block;
  width: 84%;
  max-width: 1060px;
  animation: hero-float 6s ease-in-out 1.1s infinite;
  margin-top: -330px;
}
.philosophy .container {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin-top: -50px;
}
.philosophy p {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 34px;
  line-height: 2.8;
}
.philosophy .em {
  font-weight: 700;
}
.philosophy__marquee {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.philosophy__marquee .marquee__track {
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 96px;
  color: #FFFFFF;
  padding-top: 150px;
  line-height: 1;
}
.philosophy__marquee span {
  padding-right: 40px;
}
@media (max-width: 900px) {
  .philosophy__marquee .marquee__track {
    font-size: 48px;
  }
}
@media (max-width: 900px) {
  .philosophy {
    padding-top: 48px;
    margin-top: 0;
  }
  .philosophy__art {
    margin-bottom: 10px;
  }
  .philosophy__art img {
    width: 82%;
    max-width: 520px;
    margin-top: 0;
  }
  .philosophy .container {
    max-width: none;
    margin-top: 0;
  }
  .philosophy p {
    font-size: 16px;
    line-height: 2.1;
    margin-bottom: 26px;
  }
  .philosophy__marquee {
    margin-top: 20px;
  }
  .philosophy__marquee .marquee__track {
    padding-top: 0;
  }
}

.navcards {
  background: #FFFFFF;
  padding: 96px 0;
}
.navcards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.navcards a {
  transition: transform 0.25s;
}
.navcards a img {
  width: 100%;
  border-radius: 14px;
}
.navcards a:hover {
  transform: translateY(-6px);
}
@media (max-width: 900px) {
  .navcards__grid {
    grid-template-columns: 1fr;
  }
}

#company {
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 2;
  margin-top: -24px;
}
@media (max-width: 600px) {
  #company {
    margin-top: 0;
    border-radius: 0;
  }
}

.news {
  background: #FFFFFF;
  padding: 90px 0 120px;
}
.news__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-template-areas: "head list" "more list";
  column-gap: 30px;
  row-gap: 20px;
  align-items: start;
}
.news .sec-head {
  grid-area: head;
}
.news .sec-head .display {
  font-size: 64px;
}
.news__list {
  grid-area: list;
}
.news__more {
  grid-area: more;
  justify-self: start;
  min-width: 0;
  padding: 10px 14px 10px 22px;
}
@media (max-width: 900px) {
  .news__layout {
    grid-template-columns: 1fr;
    grid-template-areas: "head" "list" "more";
  }
  .news__more {
    justify-self: center;
    margin-top: 6px;
  }
}

.news-item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas: "head head" "title arr";
  column-gap: 18px;
  row-gap: 10px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid #e6e6e6;
}
.news-item:last-child {
  border-bottom: 1px solid #e6e6e6;
}
.news-item__head {
  grid-area: head;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.news-item__date {
  font-weight: 700;
  font-size: 14px;
  font-family: "Unbounded", sans-serif;
  white-space: nowrap;
}
.news-item__title {
  grid-area: title;
  min-width: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news-item .circle-arr {
  grid-area: arr;
}
.news-item:hover .circle-arr {
  background: transparent;
  color: #000000;
}
@media (max-width: 600px) {
  .news-item__title {
    white-space: normal;
    overflow: visible;
  }
}

.business {
  background: #efefef;
  border-radius: 24px 24px 0 0;
  margin: 0;
  padding: 130px 0 0;
  position: relative;
  z-index: 1;
}
.business__top {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 30px;
  align-items: center;
}
.business .display {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.business__ja {
  font-size: 24px;
  font-weight: 500;
  margin: 6px 0 40px;
  letter-spacing: 0.12em;
}
.business h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}
.business__desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  max-width: 560px;
}
.business__diagram img {
  width: 100%;
}
@media (max-width: 900px) {
  .business__top {
    grid-template-columns: 1fr;
  }
}

.ecom {
  position: relative;
  margin-top: 30px;
}
.ecom__watermark {
  position: absolute;
  right: -80px;
  top: 80px;
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 90px;
  color: #FFFFFF;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}
.ecom__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.ecom__illust img {
  width: 100%;
  max-width: 520px;
}
.ecom__info {
  padding-top: 150px;
}
.ecom__info h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
}
.ecom__info p {
  font-size: 14px;
  font-weight: 500;
}
.ecom__detail {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 24px;
  align-items: start;
  margin-top: 14px;
}
.ecom__product {
  width: 100%;
}
.ecom__product img {
  border-radius: 10px;
  width: 100%;
  display: block;
}
@media (max-width: 900px) {
  .ecom__row {
    grid-template-columns: 1fr;
  }
  .ecom__detail {
    grid-template-columns: 1fr;
  }
  .ecom__product {
    max-width: 200px;
  }
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  height: 60px;
  background: #FF5500;
  color: #FFFFFF;
  border-radius: 30px;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 20px;
}

.photos {
  margin-top: 70px;
  overflow: hidden;
}
.photos__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}
.photos__set {
  display: flex;
  gap: 8px;
  padding-right: 8px;
  flex: 0 0 auto;
}
.photos img {
  width: 480px;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
@media (max-width: 600px) {
  .photos {
    margin-top: 36px;
  }
}

.brands {
  background: #FFFFFF;
  padding: 130px 0;
}
.brands__top {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 60px;
}
.brands__art img {
  width: 100%;
  max-width: 520px;
}
.brands .display {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.brands__ja {
  font-size: 24px;
  font-weight: 500;
  margin: 6px 0 26px;
  letter-spacing: 0.12em;
}
.brands h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}
.brands__desc {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  max-width: 520px;
}
@media (max-width: 900px) {
  .brands__top {
    grid-template-columns: 1fr;
  }
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 900px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}

.brand-card {
  background: #efefef;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.brand-card__logobox {
  background: #FFFFFF;
  border-radius: 12px;
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}
.brand-card__logobox img {
  max-height: 90px;
  width: auto;
}
.brand-card__logobox--wide img {
  width: 150px;
  max-height: 100px;
}
.brand-card__name {
  font-size: 20px;
  font-weight: 700;
  min-height: 56px;
}
.brand-card__name small {
  font-size: 13px;
  font-weight: 500;
  color: #333;
}
.brand-card__rule {
  border: none;
  border-top: 1px solid #cfcfcf;
  margin: 14px 0;
}
.brand-card__lead {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  line-height: 1.6;
  min-height: 48px;
}
.brand-card__txt {
  font-size: 13px;
  font-weight: 500;
  color: #444;
  min-height: 64px;
}
.brand-card__stores {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
}
.brand-card__stores .store {
  width: 124px;
  height: 32px;
  border-radius: 16px;
  justify-content: center;
  padding: 0;
  gap: 6px;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}
.brand-card__stores .store--amazon {
  border-color: #0a3d8f;
}
.brand-card__stores .store--amazon:hover {
  background: #FFFFFF;
  color: #0a3d8f;
}
.brand-card__stores .store--rakuten {
  border-color: #FF5500;
}
.brand-card__stores .store--rakuten:hover {
  background: #FFFFFF;
  color: #FF5500;
}

.band {
  background: #ededed;
  padding: 83px 0;
  overflow: hidden;
  white-space: nowrap;
  border-radius: 24px 24px 0 0;
  position: relative;
  z-index: 1;
  margin-top: -24px;
}
.band .marquee__track {
  animation: marquee-scroll 18s linear infinite;
}
.band__word {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 77px;
  background: #FFFFFF;
  border-radius: 40px;
  margin: 0 12px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 0.06em;
}
.band__word--plain {
  background: transparent;
}

.recruit-banner {
  background: #ededed;
}
.recruit-banner__card {
  background: #FF5500;
  border-radius: 24px 24px 0 0;
  margin: 0;
  padding: 14px;
  position: relative;
}
.recruit-banner__panel {
  background: #FFFFFF;
  border-radius: 20px;
  position: relative;
  padding: 0 60px;
  overflow: hidden;
  max-width: none;
  margin: 0 auto;
}
.recruit-banner__content {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}
.recruit-banner__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 94px;
  color: #FF5500;
  position: relative;
  z-index: 3;
  line-height: 0.68;
}
.recruit-banner__people {
  display: block;
  margin: -44px auto 0;
  max-width: 800px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.recruit-banner__saiyo {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 56px;
  font-weight: 900;
  color: #FF5500;
  letter-spacing: 0.1em;
  z-index: 2;
  line-height: 1;
}
.recruit-banner__lower {
  position: relative;
  padding: 83px 60px;
  max-width: none;
  margin: 0 auto;
}
.recruit-banner__body {
  position: relative;
  z-index: 3;
  color: #FFFFFF;
  max-width: 1120px;
  margin: 0 auto;
}
.recruit-banner__body p {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.recruit-banner .peek {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 245px;
  height: 245px;
}
.recruit-banner .peek__center {
  padding-top: 10px;
}

@media (max-width: 600px) {
  .business .display, .brands .display {
    font-size: 32px;
  }
  .news .sec-head .display {
    font-size: 32px;
  }
  .business__ja, .brands__ja {
    font-size: 18px;
    margin-bottom: 22px;
  }
  .business__desc, .brands__desc {
    font-size: 15px;
  }
  .philosophy {
    padding-top: 60px;
    background-size: cover;
  }
  .philosophy p {
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
  }
  .philosophy__art img {
    width: 448px;
    max-width: 100%;
    height: auto;
  }
  .philosophy__marquee {
    margin-top: 80px;
  }
  .philosophy__marquee span {
    padding-right: 12px;
  }
  .marquee__track .mq-seq {
    font-size: 44px;
  }
  .photos {
    overflow: hidden;
  }
  .photos img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    aspect-ratio: auto;
  }
  .brands__top {
    display: flex;
    flex-direction: column;
  }
  .brands__art {
    order: 2;
    margin-top: 20px;
  }
  .navcards {
    padding: 40px 0;
  }
  .news {
    padding: 30px 0 60px;
  }
  .business {
    padding: 56px 0 0;
  }
  .business h3 {
    font-size: 21px;
  }
  .ecom {
    display: none;
  }
  .brands {
    padding: 56px 0;
  }
  .brands h3 {
    font-size: 24px;
  }
  .ecom-sp__title {
    text-align: left;
  }
  .band__word {
    width: auto;
    height: auto;
    padding: 8px 26px;
    font-size: 22px;
  }
  .recruit-banner__card {
    margin: 0 10px;
  }
  .recruit-banner__title {
    font-size: 48px;
  }
  .recruit-banner__panel {
    padding: 24px 20px 0;
  }
  .recruit-banner__lower {
    padding: 30px 20px 40px;
  }
  .recruit-banner__saiyo {
    font-size: 26px;
    right: 20px;
  }
  .recruit-banner__body p {
    font-size: 15px;
  }
  .peek {
    width: 150px;
    height: 150px;
  }
  .peek__center {
    font-size: 13px;
  }
  .peek__center .a {
    font-size: 15px;
    margin-top: 2px;
  }
  .recruit-banner .peek {
    position: static;
    transform: none;
    margin: 24px auto 0;
  }
  .recruit-banner__people {
    margin: 15px 0 25px;
  }
}
.company-page .header {
  background: #FFFFFF;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.cmp-tagline {
  padding-top: 240px;
  padding-bottom: 178px;
}
.cmp-tagline__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 900px) {
  .cmp-tagline {
    padding-top: 110px;
  }
  .cmp-tagline__text {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .cmp-tagline__text {
    font-size: 22px;
  }
}

.cmp-message {
  padding-bottom: 107px;
}
.cmp-message .sec-head .display {
  font-size: 64px;
  font-weight: 700;
}
.cmp-message .sec-head__ja {
  font-size: 24px;
  font-weight: 500;
}
.cmp-message__layout {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 470px 1fr;
  gap: 56px;
  align-items: start;
}
.cmp-message__portrait img {
  width: 100%;
  border-radius: 24px 24px 0 0;
}
.cmp-message__body {
  padding-top: 8px;
}
.cmp-message__body p {
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 700;
  line-height: 2.4;
}
.cmp-message__sign {
  margin-top: 40px;
  text-align: right;
  font-weight: 500;
  line-height: 1.9;
}
@media (max-width: 900px) {
  .cmp-message .sec-head .display {
    font-size: 48px;
  }
  .cmp-message__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cmp-message__portrait img {
    max-width: 360px;
  }
}

.cmp-office {
  margin: 20px 0 0;
}
.cmp-office img {
  width: 100%;
  display: block;
}

.cmp-company {
  background: #ededed;
  margin-top: -40px;
  padding: 130px 0 90px;
}
.cmp-company__head {
  position: relative;
}
.cmp-company .sec-head .display {
  font-size: 64px;
}
.cmp-company__illust {
  position: absolute;
  right: 0;
  top: -30px;
  width: 485px;
  z-index: 3;
}
.cmp-company__illust img {
  width: 100%;
  display: block;
}
.cmp-company__card {
  margin-top: 36px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 50px 60px;
}
.cmp-company__maps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.cmp-company__maps img {
  width: 100%;
  border-radius: 8px;
}
.cmp-company__map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: 8px;
  display: block;
}
@media (max-width: 900px) {
  .cmp-company {
    padding: 90px 0 70px;
  }
  .cmp-company .sec-head .display {
    font-size: 48px;
  }
  .cmp-company__illust {
    width: 240px;
    top: -10px;
    opacity: 0.9;
  }
  .cmp-company__card {
    padding: 30px 24px;
  }
  .cmp-company__maps {
    grid-template-columns: 1fr;
  }
}

.cmp-table__row {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #e6e6e6;
  align-items: baseline;
}
.cmp-table__row:first-child {
  padding-top: 8px;
}
.cmp-table dt {
  font-weight: 700;
  font-size: 15px;
}
.cmp-table dd {
  font-size: 15px;
}
.cmp-table__row--locations dd {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cmp-loc p {
  line-height: 1.7;
}
.cmp-loc__name {
  font-weight: 700;
  margin-bottom: 4px;
}
.cmp-loc .cmp-company__map {
  margin-top: 16px;
}
.cmp-loc .cmp-company__map iframe {
  height: 260px;
}
.cmp-loc__map {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 13px;
  color: #707070;
  text-decoration: underline;
}
.cmp-loc__map .cmp-loc__mapicon {
  width: 28px;
  height: auto;
  transition: filter 0.2s ease;
}
.cmp-loc__map:hover {
  color: #FF5500;
}
.cmp-loc__map:hover .cmp-loc__mapicon {
  filter: invert(1);
}

.cmp-cred {
  position: relative;
  z-index: 2;
  background: #ededed;
  padding: 110px 0;
}
.cmp-cred .sec-head {
  text-align: center;
}
.cmp-cred .sec-head .display {
  font-size: 60px;
}
.cmp-cred .sec-head__ja {
  font-size: 20px;
  letter-spacing: 0.08em;
}
.cmp-cred__block + .cmp-cred__block {
  margin-top: 96px;
}
.cmp-cred__lead {
  margin-top: 28px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.cmp-cred__card {
  margin-top: 40px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 54px 60px;
}
.cmp-cred__card--cert {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
}
.cmp-cred__cert img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
.cmp-cred__desc p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
}
.cmp-cred__label {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  padding-left: 16px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cmp-cred__label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 5px;
  border-radius: 3px;
  background: #FF5500;
}
.cmp-cred__card--sdgs {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
}
.cmp-cred__sdgs-text p {
  font-size: 15px;
  font-weight: 500;
  line-height: 2.2;
}
.cmp-cred__sdgs-text p + p {
  margin-top: 20px;
}
.cmp-cred__goals {
  margin-top: 34px;
}
.cmp-cred__goals img {
  width: 100%;
  display: block;
}
.cmp-cred__decl img {
  width: 100%;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .cmp-cred {
    padding: 80px 0;
  }
  .cmp-cred .sec-head .display {
    font-size: 46px;
  }
  .cmp-cred__lead {
    font-size: 24px;
  }
  .cmp-cred__card {
    padding: 36px 28px;
  }
  .cmp-cred__card--cert {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }
  .cmp-cred__card--sdgs {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .cmp-cred__decl {
    max-width: 440px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .cmp-cred {
    padding: 60px 0;
  }
  .cmp-cred .sec-head .display {
    font-size: 34px;
  }
  .cmp-cred__block + .cmp-cred__block {
    margin-top: 64px;
  }
  .cmp-cred__lead {
    font-size: 20px;
  }
  .cmp-cred__card {
    padding: 26px 20px;
  }
  .cmp-cred__card--cert {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .cmp-cred__cert {
    max-width: 260px;
    margin: 0 auto;
  }
  .cmp-cred__label {
    font-size: 19px;
  }
}

.cmp-bottombg {
  background-color: #ededed;
  background-image: url("../assets/company/mvv_background.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.cmp-about {
  position: relative;
  background: transparent;
  overflow: hidden;
  padding-bottom: 120px;
}
.cmp-about .container {
  position: relative;
  z-index: 2;
}
.cmp-about__head {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 250px 0 10px;
  color: #FFFFFF;
}
.cmp-about__head .display {
  font-size: 64px;
  font-weight: 700;
}
.cmp-about__ja {
  color: #FFFFFF;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-top: 6px;
  padding-bottom: 50px;
}
@media (max-width: 900px) {
  .cmp-about__head .display {
    font-size: 44px;
  }
}

.cmp-pyramid {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 70px;
  text-align: center;
}
.cmp-pyramid__img img {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 900px) {
  .cmp-pyramid {
    padding: 36px 24px;
  }
  .cmp-pyramid__img img {
    max-width: 100%;
  }
}

.cmp-pill {
  display: inline-block;
  background: #000000;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 20px;
  letter-spacing: 0.08em;
}

.cmp-block {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  padding: 80px 0 0;
  color: #FFFFFF;
}
.cmp-block__label .cmp-block__en {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
}
.cmp-block__label .cmp-block__ja {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.cmp-block__title {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}
.cmp-block__title--lg {
  font-size: 40px;
  letter-spacing: 0.08em;
}
.cmp-block__body p {
  font-size: 15px;
  font-weight: 700;
  line-height: 2.3;
}
.cmp-block__lines {
  line-height: 2.3;
}
@media (max-width: 900px) {
  .cmp-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 60px;
  }
  .cmp-block__label .cmp-block__en {
    font-size: 26px;
  }
  .cmp-block__title {
    font-size: 26px;
  }
  .cmp-block__title--lg {
    font-size: 28px;
  }
}

.cmp-block--ci .cmp-ci {
  background: #FFFFFF;
  color: #000000;
  border-radius: 24px;
  padding: 50px 60px;
}
.cmp-block--ci .cmp-ci__logo {
  text-align: center;
  margin-bottom: 36px;
}
.cmp-block--ci .cmp-ci__logo img {
  width: 140px;
  margin: 0 auto;
}
.cmp-block--ci .cmp-ci__txt h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cmp-block--ci .cmp-ci__txt h4 + p {
  margin-bottom: 28px;
}
.cmp-block--ci .cmp-ci__txt p:last-child {
  margin-bottom: 0;
}
.cmp-block--ci .cmp-ci__txt p {
  font-size: 15px;
  font-weight: 700;
  line-height: 2.3;
}
@media (max-width: 900px) {
  .cmp-block--ci .cmp-ci {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .cmp-message .sec-head .display,
  .cmp-company .sec-head .display {
    font-size: 34px;
  }
  .cmp-about__head .display {
    font-size: 34px;
  }
  .cmp-tagline {
    padding-top: 104px;
    padding-bottom: 44px;
  }
  .cmp-tagline__text {
    font-size: 26px;
  }
  .cmp-company__illust {
    width: 220px;
    top: 30px;
    opacity: 1;
  }
  .cmp-office img {
    aspect-ratio: 3/2;
    object-fit: cover;
  }
  .cmp-block__title--lg {
    line-height: 1.3;
  }
  .cmp-table__row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cmp-table__row--locations dd {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cmp-table dd {
    word-break: break-word;
  }
}
body.page-recruit {
  background-color: #F0EFEF;
}

.page-recruit .container,
.page-recruit .container--narrow {
  padding-left: 20px;
  padding-right: 20px;
}

.rc-hero {
  background: #F0EFEF;
  padding-top: 150px;
  padding-bottom: 60px;
  overflow: hidden;
}
.rc-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  min-height: 540px;
}
.rc-hero__people {
  position: absolute;
  left: 0;
  top: 60px;
  width: 620px;
}
.rc-hero__people img {
  width: 100%;
  display: block;
}
.rc-hero__title {
  position: absolute;
  right: 0;
  top: 0;
  width: 600px;
  max-width: 56%;
}
.rc-hero__copy {
  margin-left: auto;
  width: 40%;
  max-width: 460px;
  padding-top: 180px;
}
.rc-hero__catch {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.rc-hero__body {
  margin-top: 30px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.9;
}
.rc-hero__body p {
  margin: 0;
}
.rc-hero__join {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 180px;
  z-index: 90;
  transition: transform 0.2s ease;
}
.rc-hero__join img {
  width: 100%;
  display: block;
}
.rc-hero__join:hover {
  transform: translateY(-4px);
}
@media (max-width: 900px) {
  .rc-hero__inner {
    min-height: 0;
  }
  .rc-hero__people {
    position: static;
    width: 320px;
    margin: 0 auto;
  }
  .rc-hero__title {
    position: static;
    width: 100%;
    max-width: 480px;
    margin: 10px auto 0;
    display: block;
  }
  .rc-hero__copy {
    width: 100%;
    max-width: none;
    padding-top: 30px;
  }
  .rc-hero__catch {
    font-size: 24px;
  }
  .rc-hero__join {
    width: 92px;
  }
}

.rc-whats {
  padding: 50px 0 90px;
  background: #FFFFFF;
}
@media (max-width: 900px) {
  .rc-whats {
    background: transparent;
  }
}
.rc-whats__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.rc-whats__text {
  flex: 1;
  min-width: 0;
}
.rc-whats__en {
  color: #FF5500;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.05;
}
.rc-whats__ja {
  margin-top: 8px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.rc-whats__lead {
  margin-top: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.7;
}
.rc-whats__desc {
  margin-top: 22px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
.rc-whats .btn-arrow, .rc-whats .btn-list {
  margin-top: 34px;
}
.rc-whats__art {
  flex-shrink: 0;
  width: 440px;
}
.rc-whats__art img {
  width: 100%;
  display: block;
}
@media (max-width: 900px) {
  .rc-whats__inner {
    flex-direction: column;
  }
  .rc-whats__en {
    font-size: 38px;
  }
  .rc-whats__art {
    width: 300px;
  }
}
@media (max-width: 600px) {
  .rc-whats__en {
    font-size: 30px;
  }
  .rc-whats__lead {
    font-size: 22px;
  }
}

.rc-job {
  background: #F0EFEF;
  padding-bottom: 100px;
}
.rc-job__photos {
  overflow: hidden;
}
.rc-job__photos-track {
  display: flex;
  width: 100%;
}
.rc-job__photos-track img {
  display: block;
  width: 100%;
  height: auto;
}
.rc-job__photos-track img:nth-child(2) {
  display: none;
}
.rc-job__marquee {
  margin: 10px 0 60px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #FFFFFF;
}
.rc-job__marquee .marquee__track span {
  padding-right: 40px;
}
.rc-job__head {
  display: flex;
  align-items: flex-end;
  gap: 90px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .rc-job__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.rc-job__intro {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  padding-bottom: 8px;
}
.rc-job .sec-head .display {
  color: #FF5500;
}
.rc-job__nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .rc-job__nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .rc-job__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 12px;
  }
}

.rc-jobnav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #000000;
}
@media (max-width: 600px) {
  .rc-jobnav {
    width: 28%;
  }
}
.rc-jobnav__circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  display: block;
}
.rc-jobnav__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .rc-jobnav__circle {
    width: 92px;
    height: 92px;
  }
}
@media (max-width: 600px) {
  .rc-jobnav__circle {
    width: 90px;
    height: 90px;
  }
}
.rc-jobnav__en {
  margin-top: 14px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media (max-width: 600px) {
  .rc-jobnav__en {
    font-size: 9px;
    margin-top: 8px;
    line-height: 1.3;
    min-height: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.rc-jobnav__ja {
  margin-top: 0;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .rc-jobnav__ja {
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
    min-height: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
  }
}
.rc-jobnav__arrow {
  margin-top: 14px;
  width: 16px;
  height: 20px;
  font-size: 0;
  background-color: #aaa;
  -webkit-mask: url("../assets/common/archi_2.svg") no-repeat center/contain;
  mask: url("../assets/common/archi_2.svg") no-repeat center/contain;
}

a.rc-jobnav:hover .rc-jobnav__ja {
  color: #FF5500;
}

@media (min-width: 601px) {
  .rc-job__nav .rc-jobnav:first-child .rc-jobnav__circle {
    overflow: visible;
    width: auto;
  }
  .rc-job__nav .rc-jobnav:first-child .rc-jobnav__circle img {
    width: auto;
  }
}
.rc-jobcard {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 50px 56px;
  margin-bottom: 30px;
}
.rc-jobcard__top {
  display: flex;
  align-items: center;
  gap: 40px;
}
.rc-jobcard__person {
  flex-shrink: 0;
  width: 300px;
  display: grid;
  place-items: center;
}
.rc-jobcard__person img {
  height: 300px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.rc-jobcard__info {
  flex: 1;
  min-width: 0;
}
.rc-jobcard__en {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.04em;
}
.rc-jobcard__title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 8px;
}
.rc-jobcard__sub {
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
}
.rc-jobcard__desc {
  margin-top: 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 900px) {
  .rc-jobcard {
    padding: 34px 26px;
  }
  .rc-jobcard__top {
    flex-direction: column;
  }
  .rc-jobcard__person {
    width: 180px;
  }
  .rc-jobcard__title {
    font-size: 28px;
  }
}

.rc-sched {
  margin-top: 34px;
}
.rc-sched summary {
  list-style: none;
  cursor: pointer;
  border-radius: 30px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  position: relative;
}
.rc-sched summary::-webkit-details-marker {
  display: none;
}
.rc-sched summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 400;
}
.rc-sched[open] summary::after {
  content: "–";
}
.rc-sched--pink summary {
  background: #E5318B;
}
.rc-sched--blue summary {
  background: #0a2e8f;
}
.rc-sched--orange summary {
  background: #FF5500;
}
.rc-sched__body {
  padding: 36px 4px 10px;
}
.rc-sched__head {
  display: flex;
  gap: 50px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.rc-sched__role {
  flex-shrink: 0;
  width: 320px;
  font-weight: 700;
  font-size: 20px;
  padding-top: 4px;
}
.rc-sched__bio {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}
@media (max-width: 900px) {
  .rc-sched__head {
    flex-direction: column;
    gap: 14px;
  }
  .rc-sched__role {
    width: auto;
  }
}

.rc-timeline {
  display: flex;
  gap: 26px;
  position: relative;
  padding: 22px 2px 8px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.rc-timeline .rc-tl {
  position: relative;
  flex: 0 0 232px;
  scroll-snap-align: start;
}
.rc-timeline .rc-tl::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: calc(100% + 26px);
  height: 1px;
  background: #ddd;
  z-index: 0;
}
.rc-timeline .rc-tl:last-child::after {
  width: 100%;
}
.rc-timeline .rc-tl::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  z-index: 1;
}
.rc-timeline--pink .rc-tl::before {
  background: #E5318B;
}
.rc-timeline--blue .rc-tl::before {
  background: #0a2e8f;
}
.rc-timeline--orange .rc-tl::before {
  background: #FF5500;
}
.rc-timeline::-webkit-scrollbar {
  height: 6px;
}
.rc-timeline::-webkit-scrollbar-track {
  background: transparent;
}
.rc-timeline::-webkit-scrollbar-thumb {
  background: #cfcfcf;
  border-radius: 3px;
}
.rc-timeline--pink::-webkit-scrollbar-thumb {
  background: #E5318B;
}
.rc-timeline--blue::-webkit-scrollbar-thumb {
  background: #0a2e8f;
}
.rc-timeline--orange::-webkit-scrollbar-thumb {
  background: #FF5500;
}
@media (max-width: 600px) {
  .rc-timeline .rc-tl {
    flex-basis: 200px;
  }
}

.rc-tl__time {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 20px;
  margin-top: 14px;
}
.rc-tl__name {
  margin-top: 10px;
  font-weight: 700;
  font-size: 16px;
}
.rc-tl__txt {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  color: #333;
}

.rc-pers {
  position: relative;
  background-color: #F0EFEF;
  background-image: url("../assets/recruit/hero_background.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  color: #FFFFFF;
  padding: 289px 20px 110px;
  text-align: center;
  overflow: hidden;
}
.rc-pers__title {
  position: relative;
  z-index: 1;
}
.rc-pers__title .display {
  font-size: 64px;
}
.rc-pers__ja {
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: 0.2em;
  font-size: 24px;
}
.rc-pers__lead {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.2;
}
.rc-pers__board {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 50px auto 0;
}
.rc-pers__group img {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: block;
}
.rc-pers__sp {
  display: none;
}
.rc-pers__sp img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  display: block;
}
@media (max-width: 900px) {
  .rc-pers__title .display {
    font-size: 40px;
  }
  .rc-pers {
    padding: 80px 20px 80px;
  }
  .rc-pers__group {
    display: none;
  }
  .rc-pers__sp {
    display: block;
  }
}
@media (max-width: 600px) {
  .rc-pers__title .display {
    font-size: 30px;
  }
}

.rc-numbers {
  background: #F0EFEF;
  padding: 80px 0 100px;
  border-radius: 36px 36px 0 0;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.rc-numbers__head {
  text-align: center;
  margin-bottom: 50px;
}
.rc-numbers__head .display {
  color: #FF5500;
}
.rc-numbers__head .sec-head__ja {
  letter-spacing: 0.12em;
}

.rc-num__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) {
  .rc-num__grid {
    grid-template-columns: 1fr;
  }
}

.rc-num {
  background: transparent;
  padding: 0;
  text-align: center;
  display: block;
}
.rc-num img {
  width: 100%;
  height: auto;
  display: block;
}
.rc-num__label {
  background: #000000;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  padding: 7px 28px;
  border-radius: 22px;
  letter-spacing: 0.08em;
}
.rc-num__visual {
  margin-top: 26px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rc-num__value {
  margin-top: 18px;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 58px;
  line-height: 1;
  color: #000000;
}
.rc-num__value span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-left: 4px;
}
.rc-num__visual--people {
  flex-wrap: wrap;
  max-width: 220px;
  gap: 8px;
  line-height: 1;
}
.rc-num__visual--people svg {
  width: 30px;
  height: 35px;
}

.rc-num__ratio {
  gap: 14px;
}
.rc-num__ratio .rc-num__icon-m,
.rc-num__ratio .rc-num__icon-f {
  width: 40px;
  height: 46px;
}

.rc-donut {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: conic-gradient(#0a2e8f 0 25%, #E5318B 25% 100%);
  display: grid;
  place-items: center;
  position: relative;
}
.rc-donut::before {
  content: "";
  position: absolute;
  inset: 16px;
  background: #FFFFFF;
  border-radius: 50%;
}
.rc-donut__txt {
  position: relative;
  text-align: center;
  line-height: 1.2;
}
.rc-donut__txt small {
  font-size: 11px;
  font-weight: 700;
  color: #444;
}
.rc-donut__txt b {
  display: block;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 26px;
}

.rc-num__bubbles {
  position: relative;
  width: 240px;
  height: 150px;
}
.rc-num__bubbles .rc-agb {
  position: absolute;
  border-radius: 50%;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.1;
}
.rc-num__bubbles .rc-agb b {
  font-family: "Unbounded", sans-serif;
  font-size: 26px;
  font-weight: 800;
}
.rc-num__bubbles .rc-agb b i {
  font-style: normal;
  font-size: 14px;
}
.rc-num__bubbles .rc-agb--20 {
  width: 120px;
  height: 120px;
  background: #FF5500;
  left: 20px;
  top: 15px;
}
.rc-num__bubbles .rc-agb--20 b {
  font-size: 34px;
}
.rc-num__bubbles .rc-agb--30 {
  width: 64px;
  height: 64px;
  background: #0a2e8f;
  right: 6px;
  top: 0;
}
.rc-num__bubbles .rc-agb--40 {
  width: 64px;
  height: 64px;
  background: #2BB23B;
  right: 18px;
  bottom: 0;
}

.rc-num__roles {
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  width: 220px;
}

.rc-role {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-role__ico {
  font-size: 26px;
  width: 34px;
}
.rc-role__name {
  font-weight: 700;
  font-size: 16px;
  width: 56px;
  text-align: left;
}
.rc-role__pct {
  margin-left: auto;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #000000;
}
.rc-role__pct small {
  font-size: 16px;
  margin-left: 2px;
}

.rc-num__origin {
  gap: 8px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
}
.rc-num__origin__plane {
  font-size: 34px;
  align-self: center;
}

.rc-origin {
  text-align: center;
}
.rc-origin__name {
  display: block;
  font-weight: 700;
  font-size: 16px;
}
.rc-origin__pct {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: #000000;
}
.rc-origin__pct small {
  font-size: 18px;
}
.rc-origin--ov {
  align-self: flex-end;
}

.rc-num__icons {
  gap: 6px;
  font-size: 34px;
}

.rc-message {
  padding: 90px 0 100px;
}
.rc-message__head {
  margin-bottom: 50px;
}
.rc-message__head .display {
  color: #FF5500;
}
.rc-message__layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.rc-message__photo {
  flex-shrink: 0;
  width: 360px;
}
.rc-message__photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
.rc-message__body {
  flex: 1;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}
.rc-message__body p {
  margin: 0 0 24px;
}
.rc-message__sign {
  text-align: right;
  font-weight: 500;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .rc-message__layout {
    flex-direction: column;
  }
  .rc-message__photo {
    width: 260px;
    margin: 0 auto;
  }
}

.rc-faq {
  background: #F0EFEF;
  padding: 0 0 90px;
}
.rc-faq__bubble {
  text-align: center;
  line-height: 0;
}
.rc-faq__bubble img {
  display: inline-block;
  width: 300px;
  margin-top: -75px;
}
.rc-faq__list {
  margin-top: 40px;
  margin: 50px auto;
}

.rc-q {
  border-bottom: 1px solid #ccc;
  padding: 22px 0;
}
.rc-q:first-child {
  border-top: 1px solid #ccc;
}
.rc-q summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.6;
  position: relative;
  padding-right: 36px;
}
.rc-q summary::-webkit-details-marker {
  display: none;
}
.rc-q summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 0;
  font-size: 22px;
  font-weight: 400;
  color: #333;
}
.rc-q[open] summary::after {
  content: "−";
}
.rc-q__mark {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  flex-shrink: 0;
}
.rc-q__mark--a {
  color: #000000;
}
.rc-q__answer {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.rc-q__answer p {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  color: #333;
}

.rc-entry {
  background: #F0EFEF;
  padding: 0 0 70px;
}
.rc-entry__card {
  background: #FF5500;
  border-radius: 18px;
  color: #FFFFFF;
  padding: 60px 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: transform 0.2s ease;
}
.rc-entry__card:hover {
  transform: translateY(-4px);
}
.rc-entry__lead {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.06em;
}
.rc-entry__big {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 1;
  margin-top: 14px;
}
.rc-entry__peek {
  flex-shrink: 0;
  width: 230px;
  height: 230px;
}
@media (max-width: 900px) {
  .rc-entry__card {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
  }
  .rc-entry__big {
    font-size: 64px;
  }
}

@media (max-width: 600px) {
  .rc-hero {
    padding-top: 100px;
  }
  .rc-hero__catch {
    font-size: 20px;
    text-align: left;
  }
  .rc-hero__body {
    font-size: 16px;
    line-height: 2;
  }
  .rc-whats {
    padding-bottom: 50px;
  }
  .page-recruit .sec-head__ja {
    font-size: 18px;
  }
  .rc-whats__inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .rc-whats__text {
    display: contents;
  }
  .rc-whats__en {
    order: 1;
    text-align: left;
  }
  .rc-whats__ja {
    order: 2;
    font-size: 18px;
    text-align: left;
    margin: 0;
  }
  .rc-whats__art {
    order: 3;
    margin: 0 auto;
  }
  .rc-whats__lead {
    order: 4;
    text-align: left;
  }
  .rc-whats__desc {
    order: 5;
  }
  .rc-whats__text .btn-arrow, .rc-whats__text .btn-list {
    order: 6;
  }
  .rc-jobcard__top {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }
  .rc-jobcard__info {
    display: contents;
  }
  .rc-jobcard__en {
    order: 1;
    font-size: 16px;
  }
  .rc-jobcard__title {
    order: 2;
    font-size: 24px;
  }
  .rc-jobcard__person {
    order: 3;
    width: 220px;
  }
  .rc-jobcard__person img {
    height: 240px;
  }
  .rc-jobcard__sub {
    order: 4;
    font-size: 20px;
    text-align: left;
    line-height: 1.4;
    margin-top: 12px;
    margin-right: auto;
  }
  .rc-jobcard__desc {
    order: 5;
    font-size: 13px;
    text-align: left;
  }
  .rc-sched summary {
    font-size: 11px;
  }
  .rc-jobnav {
    width: 30%;
  }
  .rc-jobnav__circle {
    width: 90px;
    height: 90px;
    overflow: hidden;
  }
  .rc-jobnav__circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .rc-jobnav__arrow {
    display: block;
  }
  .rc-pers {
    background-image: url("../assets/recruit/hero_background_sp.webp");
  }
  .rc-message__body p,
  .rc-q__answer p, .rc-sched__bio, .rc-tl__txt, .rc-tl__name {
    font-size: 13px;
  }
  .page-recruit .ecom-sp {
    display: none;
  }
  .page-recruit .ecom-sp__desc,
  .rc-whats__desc, .rc-job__intro, .rc-pers__lead {
    font-size: 14px;
    font-weight: 700;
  }
  .rc-job__intro {
    margin-top: 28px;
  }
  .rc-pers__ja {
    font-size: 18px;
  }
  .rc-faq {
    padding: 0 20px 50px;
  }
  .rc-job__photos {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .rc-job__photos-track {
    width: max-content;
  }
  .rc-job__photos-track img {
    width: auto;
    height: 200px;
  }
  .rc-job__photos::-webkit-scrollbar {
    height: 4px;
  }
  .rc-job__photos::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 4px;
  }
  .rc-entry {
    padding-bottom: 100px;
  }
  .rc-entry__card {
    padding: 32px 22px;
    gap: 18px;
  }
  .rc-entry__lead {
    font-size: 20px;
  }
  .rc-entry__big {
    font-size: 48px;
  }
  .rc-entry__peek {
    width: 180px;
    height: 180px;
  }
}
.req-tabs {
  background: #ededed;
  padding-bottom: 0;
}
.req-tabs__row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}

.req-tab {
  flex: 1;
  border: 0;
  cursor: pointer;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: #707070;
  background: #E3E3E3;
  border-radius: 18px 18px 0 0;
  padding: 26px 0 34px;
  text-align: center;
}
.req-tab--active {
  background: #FF5500;
  color: #FFFFFF;
}

.req-panel {
  background: #ededed;
  padding: 0 0 80px;
}
.req-panel__card {
  background: #FFFFFF;
  border-radius: 24px 24px 0 0;
  padding: 56px 48px 60px;
  position: relative;
  z-index: 2;
  margin-top: -12px;
}

.req-flow {
  margin-bottom: 44px;
}
.req-flow__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 34px;
}
.req-flow__head .display {
  font-size: 40px;
}
.req-flow__ja {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.12em;
}
.req-flow__steps {
  display: flex;
  align-items: center;
  gap: 0;
}
.req-flow__arrow {
  color: #000000;
  font-size: 16px;
  padding: 0 14px;
  margin-top: 24px;
  flex-shrink: 0;
}

.req-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.req-step__no {
  position: relative;
  z-index: 2;
  color: #FF5500;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: -19px;
}
.req-step__box {
  position: relative;
  background: #efefef;
  border-radius: 12px;
  padding: 34px 8px 22px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.req-table {
  background: #efefef;
  border-radius: 14px;
  padding: 18px 40px;
}

.req-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 28px 0;
}
.req-row + .req-row {
  border-top: 1px solid #d9d9d9;
}
.req-row__label {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.06em;
}
.req-row__value {
  font-size: 16px;
  line-height: 1.85;
}
.req-row__value p {
  margin: 0;
}
.req-row__value p + p {
  margin-top: 2px;
}

.req-group {
  font-weight: 700;
  margin-top: 18px !important;
}
.req-group:first-child {
  margin-top: 0 !important;
}

.req-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.req-list li {
  position: relative;
  padding-left: 18px;
}
.req-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 1px;
}

.req-note {
  margin-top: 22px !important;
}

.req-entry {
  background: #ededed;
  padding: 60px 0 90px;
}
.req-entry__card {
  position: relative;
  background: #FF5500;
  border-radius: 24px;
  padding: 64px 70px 72px;
  overflow: hidden;
  min-height: 240px;
}
.req-entry__lead {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}
.req-entry__big {
  color: #FFFFFF;
  font-size: 88px;
  line-height: 1;
  margin: 0;
}
.req-entry__peek {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .req-entry__card {
    padding: 48px 36px 130px;
  }
  .req-entry__big {
    font-size: 64px;
  }
  .req-entry__peek {
    position: static;
    transform: none;
    margin: 24px auto 0;
  }
}

@media (max-width: 900px) {
  .req-panel__card {
    padding: 40px 24px 44px;
  }
  .req-table {
    padding: 8px 22px;
  }
  .req-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .req-flow__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
  .req-flow__steps .req-flow__arrow {
    display: none;
  }
  .req-step {
    flex: 0 0 46%;
  }
}
@media (max-width: 600px) {
  .req-flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .req-flow__steps .req-flow__arrow {
    display: block;
    align-self: center;
    transform: rotate(90deg);
    margin: 10px 0;
    color: #000000;
  }
  .req-step {
    flex: none;
    display: flex;
    align-items: center;
    gap: 22px;
    background: #efefef;
    border-radius: 12px;
    padding: 16px 26px;
    position: static;
    text-align: left;
  }
  .req-step__no {
    margin: 0;
  }
  .req-step__box {
    background: transparent;
    padding: 0;
    flex: 1;
    text-align: center;
  }
  .req-entry {
    padding: 30px 0 96px;
  }
  .req-entry__card {
    padding: 36px 22px 40px;
    min-height: 0;
  }
  .req-entry__lead {
    font-size: 17px;
  }
  .req-entry__big {
    font-size: 52px;
  }
  .req-entry__peek {
    width: 168px;
    height: 168px;
    margin: 16px auto 0;
  }
}
.news-list {
  background: #ededed;
  padding: 0 0 90px;
}
.news-list__filters {
  display: flex;
  gap: 28px;
  margin: 0 0 26px;
}
.news-list__select {
  width: 230px;
  border: 1px solid #000000;
  border-radius: 0;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 500;
  background: #FFFFFF;
  cursor: pointer;
  box-sizing: border-box;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .news-list__select {
    width: 100%;
    padding: 13px 14px;
    font-size: 12px;
  }
}
.news-list__panel {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 26px 46px;
}
@media (max-width: 900px) {
  .news-list__panel {
    padding: 20px 24px;
  }
}
.news-list .news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas: "head arr" "title arr";
  align-items: center;
  column-gap: 24px;
  row-gap: 8px;
  padding: 24px 6px;
  border-bottom: 1px solid #dadada;
}
.news-list .news-item:last-child {
  border-bottom: none;
}
.news-list .news-item:hover .news-item__title {
  color: #FF5500;
}
.news-list .news-item:hover .circle-arr {
  background: #FF5500;
  border-color: #FF5500;
  color: #FFFFFF;
}
.news-list .news-item__head {
  grid-area: head;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  gap: 16px;
}
.news-list .news-item__date {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.news-list .news-item__title {
  grid-area: title;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.7;
  transition: color 0.2s;
}
.news-list .news-item .circle-arr {
  grid-area: arr;
  width: 42px;
  height: 26px;
}
@media (max-width: 600px) {
  .news-list .news-item {
    grid-template-columns: 1fr auto;
    grid-template-areas: "head arr" "title arr";
  }
}
.news-list .news-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
}
.news-list .news-pager__num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #000000;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
.news-list .news-pager__num:hover {
  background: #E3E3E3;
}
.news-list .news-pager__num.is-current {
  background: #000000;
  color: #FFFFFF;
}
.news-list .news-pager__dots {
  font-weight: 700;
  color: #707070;
  letter-spacing: 0.1em;
  padding: 0 4px;
}
.news-list .news-pager__next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #000000;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 13px;
  transition: background 0.2s;
}
.news-list .news-pager__next:hover {
  background: #FF5500;
}

.news-detail {
  background: #ededed;
  padding: 0 0 120px;
}
.news-detail__card {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 70px 0 56px;
}
.news-detail__inner {
  margin: 0 auto;
}
.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.news-detail__date {
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}
.news-detail__title {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.news-detail__hero {
  margin-top: 34px;
  border-radius: 12px;
  overflow: hidden;
}
.news-detail__hero img {
  width: 100%;
  display: block;
}
@media (min-width: 901px) {
  .news-detail__hero {
    height: 545px;
  }
  .news-detail__hero img {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 900px) {
  .news-detail__hero img {
    aspect-ratio: 980/545;
    height: auto;
    object-fit: cover;
  }
}
.news-detail__body {
  margin: 54px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}
.news-detail__body p {
  margin-bottom: 32px;
}
.news-detail__body p:last-child {
  margin-bottom: 0;
}
.news-detail__note {
  margin-bottom: 12px !important;
}
.news-detail__link a {
  color: #000000;
  text-decoration: none;
  word-break: break-all;
}
.news-detail__link a:hover {
  color: #FF5500;
  text-decoration: underline;
}
.news-detail__nav {
  max-width: 980px;
  margin: 60px auto 0;
  padding-top: 44px;
  border-top: 1px solid #E3E3E3;
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: center;
  column-gap: clamp(40px, 12vw, 140px);
  align-items: center;
}
.news-detail__pill {
  width: 52px;
  height: 31px;
  border-radius: 30px;
  background: #000000;
  color: #FFFFFF;
  display: grid;
  place-items: center;
  font-size: 14px;
  transition: background 0.2s;
}
.news-detail__pill:first-child {
  justify-self: start;
}
.news-detail__pill:last-child {
  justify-self: end;
}
.news-detail__pill:hover {
  background: #FF5500;
}
.news-detail__list {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #000000;
}
.news-detail__list:hover {
  color: #FF5500;
}
@media (max-width: 900px) {
  .news-detail {
    padding: 40px 0 80px;
  }
  .news-detail__card {
    padding: 44px 24px 40px;
    border-radius: 20px;
  }
  .news-detail__title {
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .news-detail__nav {
    margin-top: 40px;
    padding-top: 32px;
  }
}

@media (max-width: 600px) {
  .news-detail {
    padding-top: 0;
  }
}
.entry {
  padding: 0 0 80px;
  background: #ededed;
}
.entry .form-card {
  max-width: 1040px;
  padding: 60px 70px 70px;
}
@media (max-width: 900px) {
  .entry .form-card {
    padding: 32px 24px 40px;
  }
}
.entry .form-row {
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 16px 0;
}
@media (max-width: 900px) {
  .entry .form-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.entry textarea.field {
  min-height: 170px;
}
.entry .file-drop {
  text-align: center;
  cursor: pointer;
}
.entry .file-drop .file-drop__clip {
  margin-right: 6px;
  color: #888;
}
.entry .file-drop .link {
  text-decoration: none;
}
.entry .form-agree {
  justify-content: flex-start;
  margin: 18px 0 0;
}
.entry .form-agree input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: #FF5500;
}
.entry .form-submit {
  margin-top: 44px;
}

.contact-form {
  background: #ededed;
  padding: 0 0 90px;
}
.contact-form .form-row {
  grid-template-columns: 280px 60px 1fr;
  gap: 0;
  align-items: center;
  padding: 18px 0;
}
.contact-form .form-row__label {
  font-weight: 700;
  font-size: 15px;
  padding-top: 0;
}
.contact-form .form-row__req {
  display: flex;
  justify-content: flex-end;
  padding-right: 18px;
}
.contact-form .form-row__field {
  min-width: 0;
}
.contact-form .form-row:has(textarea) {
  align-items: start;
}
.contact-form .form-row:has(textarea) .form-row__label,
.contact-form .form-row:has(textarea) .form-row__req {
  padding-top: 12px;
}
@media (max-width: 900px) {
  .contact-form .form-row {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: center;
  }
  .contact-form .form-row__req {
    justify-content: flex-start;
    padding-right: 0;
  }
  .contact-form .form-row__field {
    grid-column: 1/-1;
  }
}

.file-drop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.file-drop__icon {
  margin-right: 2px;
  filter: grayscale(1);
  opacity: 0.7;
}

.form-agree {
  margin: 34px 0 36px;
}
.form-agree__check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.form-agree__check input {
  width: 18px;
  height: 18px;
}

@media (max-width: 600px) {
  .contact-form {
    padding-top: 0;
  }
  .contact-form .form-card {
    margin-top: 0;
  }
  .form-agree {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.privacy-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 900px) {
  .privacy-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.privacy-hero__text {
  flex: 1;
  min-width: 0;
}

.privacy-hero__art {
  position: static;
  width: 420px;
  transform: none;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .privacy-hero__art {
    width: 200px;
    margin: 6px 0 0;
  }
}

.privacy {
  background: #ededed;
  padding: 0 0 80px;
}
@media (max-width: 600px) {
  .privacy {
    padding-bottom: 56px;
  }
}

.privacy-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 56px 64px 64px;
}
@media (max-width: 900px) {
  .privacy-card {
    padding: 44px 40px;
  }
}
@media (max-width: 600px) {
  .privacy-card {
    padding: 32px 22px;
    border-radius: 16px;
  }
}
.privacy-card__intro {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  margin: 0 0 28px;
}

.privacy-sec {
  padding: 24px 0;
  border-top: 1px solid #E3E3E3;
}
.privacy-sec:first-of-type {
  border-top: none;
}
.privacy-sec__title {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}
.privacy-sec__num {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 19px;
}
.privacy-sec p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 10px;
}
.privacy-sec p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .privacy-sec__title {
    font-size: 16px;
  }
}

.privacy-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
}
.privacy-list li {
  font-size: 14px;
  line-height: 1.95;
}

.privacy-contact {
  padding: 28px 0 0;
  border-top: 1px solid #E3E3E3;
}
.privacy-contact__title {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 14px;
}
.privacy-contact p {
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.privacy-contact__lines {
  margin-top: 4px;
}
@media (max-width: 600px) {
  .privacy-contact__title {
    font-size: 16px;
  }
}

.privacy-sign {
  margin-top: 36px;
  text-align: right;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 500;
}

@media (max-width: 600px) {
  .privacy-hero {
    padding-bottom: 28px;
  }
  .privacy-hero__art {
    width: 230px;
    margin: 8px auto 0;
    align-self: center;
  }
}
