@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: YakuHanJP, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  color: #0D0A08;
  background: var(--ink);
  color: var(--paper);
  font-weight: 500;
  line-height: 1.9;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
  color: inherit;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  max-width: 1114px;
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 40px;
  }
}

/*ヘッダーのスタイル*/
.site_header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
  z-index: 999;
}
.site_header.is-open .site_header_logo_jp {
  color: #0D0A08;
}
.site_header.is-open .global_nav_list_link {
  color: #0D0A08;
}
.site_header.scrolled {
  background-color: rgba(13, 10, 8, 0.85);
  backdrop-filter: blur(12px);
}
@media (min-width: 920px) {
  .site_header {
    padding: 12px 40px;
  }
}
.site_header_logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 9999;
}
.site_header_logo_jp {
  color: #F4EDE4;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.35;
  vertical-align: middle;
  transition: color 0.3s ease-out;
}
@media (min-width: 920px) {
  .site_header_logo_jp {
    font-size: clamp(18px, 1.7142857143vw, 24px);
  }
}
.site_header_logo_en {
  color: #E85D04;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.12em;
  vertical-align: middle;
}

.global_nav {
  position: relative;
  z-index: 99;
}
.global_nav_toggle {
  box-shadow: none;
  display: block;
  width: 42px;
  height: 42px;
  border: none;
  position: relative;
  z-index: 1001;
  background: transparent;
  color: #F4EDE4;
  transition: 0.3s linear;
  text-align: left;
  padding: 0;
  border-radius: 0;
  background: linear-gradient(108.74deg, #FF8C1A 0%, #E85D04 40%, #C9420A 70%, #9D3C02 100%);
  box-shadow: 0px 8px 30px 0px rgba(232, 93, 4, 0.4509803922);
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
@media (min-width: 920px) {
  .global_nav_toggle {
    display: none;
  }
}
.global_nav_toggle_bar {
  height: 1px;
  background: #F4EDE4;
  display: block;
  transition: 0.3s linear;
  transition-property: transform, opacity, width;
  transform-origin: 100% 50%;
  right: 0;
  width: 24px;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-top {
  transform: translate(-3px, -3px) rotate(-45deg);
}
.global_nav_toggle.is-active .global_nav_toggle_bar-mid {
  opacity: 0;
}
.global_nav_toggle.is-active .global_nav_toggle_bar-btm {
  transform: translate(-4px, 0) rotate(45deg);
}
@media (max-width: 919px) {
  .global_nav_overlay {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transition: all 0.3s linear;
    overflow-y: auto;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}
@media (max-width: 919px) {
  .global_nav_overlay.is-open {
    visibility: visible;
    opacity: 1;
  }
}
.global_nav_container {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 919px) {
  .global_nav_container {
    padding: 120px 20px 50px;
    position: relative;
    z-index: 0;
    flex-direction: column;
    align-items: center;
    margin: auto;
    width: 100%;
    min-height: 100%;
  }
}
.global_nav_wrap {
  display: flex;
  align-items: center;
  gap: 27px;
}
@media (max-width: 919px) {
  .global_nav_wrap {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.global_nav_list {
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 920px) {
  .global_nav_list {
    gap: 20px;
    flex-direction: row;
    width: auto;
  }
}
@media (min-width: 920px) {
  .global_nav_list_item {
    display: flex;
    align-items: center;
  }
}
.global_nav_list_link {
  display: inline-block;
  transition: opacity 0.3s ease-out;
  position: relative;
  overflow: hidden;
  color: #0D0A08;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #F4EDE4;
  font-size: 15px;
}
@media (min-width: 920px) {
  .global_nav_list_link::after {
    background-color: #F4EDE4;
    bottom: 0;
    content: "";
    height: 1%;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease-out;
    width: 100%;
  }
  .global_nav_list_link:hover::after {
    transform-origin: left top; /* 変形の原点を左上に指定 */
    transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
  }
}

.entry_btn {
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0px 8px 30px 0px rgba(232, 93, 4, 0.4509803922);
  border-radius: 999px;
  background: linear-gradient(108.74deg, #FF8C1A 0%, #E85D04 40%, #C9420A 70%, #9D3C02 100%);
  padding: 14px 16px 14px 24px;
  max-width: 200px;
  transition: transform 0.25s, box-shadow 0.25s;
}
@media (min-width: 920px) {
  .entry_btn {
    max-width: none;
  }
  .entry_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(232, 93, 4, 0.6);
  }
}
.entry_btn_txt {
  color: #F4EDE4;
  font-weight: 700;
  font-size: 18px;
  line-height: 135%;
}
.entry_btn_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
  position: relative;
}
.entry_btn_arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 4px);
  background-color: #F4EDE4;
  opacity: 0.2;
}

/*フッターのスタイル*/
.site_footer {
  background: #080604;
  padding: 60px 0 80px;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 59px 0 116px;
  }
}

/* ---------- フッター ---------- */
footer {
  background: #080604;
  padding: 56px 0 110px;
  font-size: 13px;
  color: var(--paper-dim);
}

.foot-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.foot-co {
  font-weight: 900;
  font-size: 16px;
  line-height: 1.9;
  vertical-align: middle;
  color: var(--paper);
  margin-bottom: 15px;
}

.foot-copy {
  margin-top: 36px;
  color: #CFC4B6;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.022em;
  vertical-align: middle;
  opacity: 0.6;
}
@media (min-width: 920px) {
  .foot-copy {
    margin-top: -17px;
  }
}

.foot-address {
  color: #CFC4B6;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.9;
  vertical-align: middle;
}

.site_footer_link {
  color: #CFC4B6;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.9;
  vertical-align: middle;
  text-decoration: underline;
}
@media (min-width: 920px) {
  .site_footer_link {
    text-decoration: none;
    background-image: linear-gradient(to right, #CFC4B6, #CFC4B6);
    /* 線の色 */
    background-size: 100% 1px;
    background-position: bottom left;
    background-repeat: no-repeat;
    /* 背景を繰り返さない */
    padding-bottom: 0;
  }
  .site_footer_link:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
  @keyframes linkLineReverse {
    0% {
      background-size: 100% 1px;
      background-position: bottom right;
    }
    50% {
      background-size: 0 1px;
      /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
      background-position: bottom right;
    }
    51% {
      background-position: bottom left;
    }
    100% {
      background-size: 100% 1px;
    }
  }
}
.site_footer_link_container {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 920px) {
  .site_footer_link_container {
    gap: 40px;
    align-items: flex-end;
  }
}
.site_footer_link_ttl {
  color: #CFC4B6;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.9;
  vertical-align: middle;
}

/* ---------- モーダル ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
}
.modal.open {
  display: flex;
}
.modal .bg {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.8);
  backdrop-filter: blur(6px);
  animation: mfade 0.3s ease;
}
.modal .panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(64svh, 640px);
  overflow-y: auto;
  background: var(--ink-2);
  border: 1px solid rgba(232, 93, 4, 0.4);
  border-radius: 24px;
  padding: 20px;
  animation: mpop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (min-width: 920px) {
  .modal .panel {
    padding: clamp(28px, 4vw, 48px);
    max-height: min(84svh, 860px);
  }
}
.modal .close {
  position: sticky;
  top: 0;
  float: right;
  margin: -8px -8px 0 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(244, 237, 228, 0.08);
  font-size: 20px;
  color: var(--paper);
  transition: background 0.25s, transform 0.25s;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 920px) {
  .modal .close {
    width: 44px;
    height: 44px;
  }
}
.modal .close:hover {
  background: var(--copper);
  transform: rotate(90deg);
}
.modal .modal-txt {
  font-size: 14px;
  color: var(--paper-dim);
  line-height: 1.9;
}
.modal .modal-txt strong {
  color: var(--paper);
}
.modal h3 {
  font-family: var(--font-min);
  font-weight: 800;
  font-size: 18px;
  margin: 6px 0 18px;
  letter-spacing: 0.04em;
}
@media (min-width: 920px) {
  .modal h3 {
    font-size: clamp(22px, 2.1428571429vw, 30px);
  }
}
.modal .m-photo {
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  margin: 18px 0;
  position: relative;
}
.modal .m-photo img {
  width: 100%;
}

@keyframes mfade {
  from {
    opacity: 0;
  }
}
@keyframes mpop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
}
.modal .modal .close .modal .m-en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--copper);
}

.m-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.m-en {
  font-family: "Bebas Neue", sans-serif;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--copper);
}

.m-table th,
.m-table td {
  padding: 14px 8px;
  border-bottom: 1px solid rgba(244, 237, 228, 0.14);
  font-size: 13.5px;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.m-table th {
  color: var(--copper-hot);
  font-weight: 900;
  white-space: nowrap;
  width: 34%;
}

.m-table td {
  color: var(--paper);
}

.m-table td small {
  color: var(--paper-dim);
}

.cycle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 6px;
}

.cyc {
  font-weight: 900;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(232, 93, 4, 0.16);
  border: 1px solid rgba(232, 93, 4, 0.4);
  white-space: nowrap;
}

.cyc.off {
  background: rgba(244, 237, 228, 0.08);
  border-color: rgba(244, 237, 228, 0.25);
  color: var(--paper-dim);
}

.cyc .d {
  font-family: var(--font-en);
  font-size: 1.1em;
  margin-left: 4px;
  color: var(--copper-hot);
}

.cyc.off .d {
  color: var(--paper-dim);
}

.video-slot {
  aspect-ratio: 16/9;
  border-radius: 14px;
  margin: 18px 0;
  position: relative;
  background: var(--ink-3);
  border: 1px dashed rgba(244, 237, 228, 0.3);
  display: grid;
  place-items: center;
}

.video-slot .play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--molten);
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 30px rgba(232, 93, 4, 0.5);
}

.video-slot .cap {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(244, 237, 228, 0.55);
}

/* ---------- モバイル固定バー ---------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 12px 14px 20px;
  background: rgba(13, 10, 8, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(232, 93, 4, 0.4);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-cta.show {
  transform: none;
}

.mobile-cta a {
  flex: 1;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.08em;
  padding: 14px 8px;
  border-radius: 12px;
}

.mobile-cta .f {
  background: var(--molten);
  color: #fff;
}

.mobile-cta .g {
  border: 1.5px solid rgba(244, 237, 228, 0.4);
}

.other_job_link {
  background: linear-gradient(108.74deg, #FF8C1A 0%, #E85D04 40%, #C9420A 70%, #9D3C02 100%);
  padding: 16px 16px 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s;
}
@media (min-width: 920px) {
  .other_job_link:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(232, 93, 4, 0.6);
  }
}
.other_job_link_txt {
  font-weight: 700;
  font-size: 16px;
  text-box-trim: trim-both;
  line-height: 1.35;
  color: #F4EDE4;
  text-decoration: none;
}
@media (min-width: 920px) {
  .other_job_link_txt {
    font-size: 18px;
  }
}
.other_job_link_arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-content_wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 920px) {
  .modal-content_wrapper {
    gap: 28px;
  }
}
.modal-content_img {
  overflow: hidden;
  border-radius: 14px;
}

.modal-q {
  font-weight: 700;
  font-size: 18px;
  text-box-trim: trim-both;
  line-height: 1.35;
  color: #fff;
  padding-left: 16px;
  border-left: 2px solid #fff;
}
@media (min-width: 920px) {
  .modal-q {
    font-size: 20px;
  }
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 1020px) {
  .num-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
  .pd .thumb {
    aspect-ratio: 16/7;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .voice .photo-slot {
    aspect-ratio: 16/9;
  }
  .pride .cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 700px) {
  .gnav-links {
    display: none;
  }
  .foryou .check-grid {
    grid-template-columns: 1fr;
  }
  .hcards {
    grid-template-columns: 1fr;
  }
  .chip-grid {
    grid-template-columns: 1fr 1fr;
  }
  .shift-facts {
    grid-template-columns: 1fr;
  }
  .num-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-cta {
    display: flex;
  }
  .sal-hero .money {
    font-size: clamp(56px, 17vw, 80px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .main_visual_ttl .line span {
    transform: none;
  }
  .hero-sub,
  .hero-cta,
  .hero-honest {
    opacity: 1;
  }
}/*# sourceMappingURL=base.css.map */