@charset "UTF-8";

/* ====================
  Reset
==================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1, h2, h3, h4, h5, h6,
p, ul, ol, li, dl, dt, dd, figure {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-decoration: none;
  text-align: inherit;
  cursor: pointer;
}

/* ====================
  Variables & Base
==================== */
:root {
  --base-width: 414;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1714;
}

section {
  scroll-margin-top: 61px;
}

.bg-wrapper {
  background-image: url("../img/bg-sp.webp");
  background-position: center top;
  background-size: auto 1024px;
  background-repeat: repeat-y;
}

@media screen and (min-width: 501px) {
  a:hover,
  a:active,
  button:hover,
  button:active {
    opacity: 0.7;
    transition: opacity 0.3s;
  }

  a:focus-visible,
  button:focus-visible {
    opacity: 0.85;
  }
}

/* ====================
  Common
==================== */
.p-entry-btn {
  width: 100%;
  background-color: #C8102E;
  border-radius: 999px;
  border: 2px solid #FFFFFF;
  box-shadow: 0px 10px 30px -8px #C8102E80;
}

.p-entry-btn a {
  display: block;
  position: relative;
  text-align: center;
  width: 100%;
  color: #FBF7EF;
  font-family: "Noto Serif JP", serif;
  padding: 20.5px 50px 22.5px 18px;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.125;
  letter-spacing: 0.75px;
}
.p-entry-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 32px;
  height: 32px;
  background-image: url("../img/icon-cta-arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
}

.-red {
  color: #C8102E;
}

/* ====================
  Header
==================== */
.l-header {
  width: 100%;
  padding: 2px 0;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (max-width: 959px) {
  .l-header { padding: 8px 0; }
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  padding: 0 48px;
}
@media screen and (max-width: 500px) {
  .l-header__inner { padding: 0 10px; }
}

.l-header__logo a { display: block; }
.l-header__logo img {
  width: 269px;
  height: 56px;
}
@media screen and (max-width: 959px) {
  .l-header__logo img {
    width: 212px;
    height: 44px;
  }
}

/* ====================
  PC 横ナビ（960px以上）
==================== */
.pc-side { display: none; }

@media screen and (min-width: 501px) {
  .pc-side {
    display: block;
    position: fixed;
    z-index: 0;
    top: 61px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100vh - 61px);
    background-image: url("../img/bg-pc.webp");
    background-position: center;
    background-size: cover;
  }
  .pc-side__inner { display: none; }
}

@media screen and (min-width: 960px) {
  .pc-side__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
  }
  .pc-side__logo,
  .pc-side__nav {
    width: calc(50vw - 207px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .pc-side__logo { padding: 0 calc((23 / 1440) * 100vw); }

  .pc-side__logo img {
    width: 100%;
    max-width: 467px;
    height: auto;
  }

  .pc-side__nav { padding: 0 calc((64 / 1440) * 100vw); }

  .pc-side__anchor {
    width: 100%;
    max-width: 385px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .pc-side__anchor li {
    width: 100%;
    border-bottom: 2px solid;
    border-image: linear-gradient(92.13deg, #C8102E 0.15%, #FFC9A7 99.85%) 1;
  }

  .pc-side__anchor li a {
    display: block;
    position: relative;
    padding: 8px 16px;
    padding-right: 32px;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 2;
  }
  .pc-side__anchor li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 16px;
    height: 16px;
    background-image: url("../img/icon-anchor-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translateY(-50%);
  }

  .pc-side__nav .p-entry-btn{
    max-width: 385px;
    margin-top: 32px;
  }
}

@media screen and (max-height: 600px) {
  .pc-side__nav { display: none; }
}

/* ====================
  SP main
==================== */
.sp-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (min-width: 501px) {
  .sp-wrapper {
    max-width: 414px;
    box-shadow: 0px 0px 40px #1A17141A;
  }
}

/* ====================
  MV
==================== */
.p-mv {
  padding: 0 20px;
  background: linear-gradient(270deg, #FFF2EE 0%, #FFFBFA 100%);
  position: relative;
}

.p-mv__inner {
  padding: 80px 0 40px;
  background-image: url("../img/bg-line.svg");
  background-position: center top;
  background-size: cover;
}

.p-mv__badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 414px) {
  .p-mv__badge {
    width: calc((200 / 414) * 100vw);
  }
}

.p-mv__title {
  margin-bottom: 24px;
}

.p-mv__lead-box {
  margin-bottom: 24px;
}

.p-mv__lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
  margin-bottom: 24px;
}

.p-mv__features {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

.p-mv__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #E5DCC9;
  margin-bottom: 24px;
}

.p-mv__stat {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-right: 1px solid #E5DCC9;
  border-bottom: 1px solid #E5DCC9;
}

.p-mv__stat:nth-child(even) {
  border-right: none;
}

.p-mv__stat:nth-child(n+3) {
  border-bottom: none;
}

.p-mv__stat-num {
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 1.04px;
}

.p-mv__stat-num .-large {
  font-family: "Bebas Neue", sans-serif;
  color: #C8102E;
  font-size: 72px;
  font-weight: 400;
  line-height: 0.833;
  letter-spacing: -0.02em;
  padding-right: 4px;
}

.p-mv__stat-label {
  font-weight: 300;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: #7A7268;
}

.p-mv__target {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* ====================
  VOICE
==================== */
.p-voice {
  background-image: url("../img/bg-voice.webp"); 
  background-size: cover;
  background-position: top center;
  padding: 80px 0;
  color: #fff;
}

.p-voice__title {
  text-shadow: 0px 0px 20px #000000;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
  margin-bottom: 40px;
}

.p-voice__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 40px;
  margin-bottom: 40px;
}

.p-voice__item {
  width: fit-content;
  background: #FFFFFF52;
  border: 1px solid #FFFFFF80;
  padding: 20px;
}

.p-voice__item:nth-child(odd) {
  align-self: flex-start;
}
.p-voice__item:nth-child(even) {
  align-self: flex-end;
}

.p-voice__text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.938;
  letter-spacing: 0.32px;
}
.p-voice__text .-red {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.824;
}

.p-voice__message {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 0 10px;
  background-color: #1A1714;
  padding: 60px 24px;
  text-align: center;
}
.p-voice__message::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(70.71% 141.42% at 50% 100%, rgba(177, 177, 177, 0.3) 0%, rgba(177, 177, 177, 0) 70%);
  pointer-events: none;
}

.p-voice__message-title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
  margin-bottom: 15px;
  text-shadow: 0px 0px 20px #000000;
}

.p-voice__message-desc {
  text-align: left;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

/* =========================================
  働く環境
========================================= */
.p-culture {
  padding: 0 20px;
  background: linear-gradient(270deg, #FFF2EE 0%, #FFFBFA 100%);
}

.p-culture__inner {
  padding: 80px 0 140px;
  background-image: url("../img/bg-line.svg");
  background-position: center top;
  background-size: cover;
}

.p-culture__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  color: #000;
}

.p-culture__lead {
  margin-top: 24px;
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

.p-culture__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}

.p-culture__item {
  background-position: right top;
  background-size: 125px 125px;
  background-repeat: no-repeat;
}
@media (max-width: 414px) {
  .p-culture__item {
    background-size: calc((125 / 414) * 100vw) calc((125 / 414) * 100vw);
  }
}
.p-culture__item:nth-child(1) {
  background-image: url("../img/icon-culture-01.svg");
}
.p-culture__item:nth-child(2) {
  background-image: url("../img/icon-culture-02.svg");
}
.p-culture__item:nth-child(3) {
  background-image: url("../img/icon-culture-03.svg");
}


.p-culture__item-head {
  height: 34.560001373291016px;
  margin-bottom: 8px;
}

.p-culture__item-head img {
  height: 100%;
}

.p-culture__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.633;
  margin-bottom: 24px;
}

.p-culture__item-desc {
  margin-bottom: 12px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

/* =========================================
  給与・手当
========================================= */
.p-benefits {
  background-color: #fff;
  border: 1px solid #D9CFBE;
  border-radius: 20px;
  padding: 80px 15px 60px;
}

.p-benefits__title {
  margin-bottom: 40px;
}

.p-benefits__model {
  text-align: center;
  margin-bottom: 48px;
}

.p-benefits__model-label {
  display: inline-block;
  background: #C8102E;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding: 8px 32px;
  border-radius: 56px;
  margin-bottom: 24px;
}

.p-benefits__model-salary {
  width: 233.5559539794922px;
  margin: 0 auto 40px;
}

.p-benefits__model-note {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
  text-align: left;
}
.p-benefits__model-note span {
  font-weight: 700;
}

.p-benefits__allowances {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.p-benefits__allowance-group {
  background-color: #FBF7EF;
  border: 1px solid #00000033;
  border-radius: 8px;
  padding: 32px 28px;
}

.p-benefits__allowance-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
  margin-bottom: 20.5px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.p-benefits__allowance-heading::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background: #C8102E;
  flex-shrink: 0;
}

.p-benefits__allowance-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-benefits__allowance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed #D9CFBE;
}
.p-benefits__allowance-item:last-child {
  border: none;
}

.p-benefits__allowance-grade {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

.p-benefits__allowance-amount {
  display: flex;
  align-items: center;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.393;
  color: #C8102E;
}

.p-benefits__allowance-amount small {
  padding-left: 4px;
  font-size: 12px;
  font-weight: 100;
  line-height: 1.75;
  letter-spacing: 0.32px;
  color: #3C3631;
}

/* ====================
  1日のスケジュール
==================== */
.p-schedule {
  margin-top: -60px;
  background-image: url("../img/bg-schedule.webp");
  background-position: center top;
  background-size: cover;
  padding: 120px 0 80px;
}

.p-schedule__hero {
  color: #fff;
}

.p-schedule__hero-title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.p-schedule__hero-title span {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.35;
}

.p-schedule__hero-lead {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: -0.01em;
  padding: 0 20px;
  margin-bottom: 40px;
}

.p-schedule__timeline {
  margin: 0 auto 60px;
  width: 257.22601318359375px;
}

.p-schedule__reasons {
  padding: 0 20px;
}

.p-schedule__reason {
  padding: 32px 0 64px;
  border-top: 1px solid #FBF7EF80;
  color: #fff;
}

.p-schedule__reason-num {
  height: 34.56px;
}

.p-schedule__reason-num img {
  height: 100%;
}

.p-schedule__reason-title {
  margin-top: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.633;
  margin-bottom: 10px;
}

.p-schedule__reason-desc {
  margin-top: 10.8px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.p-schedule__btn {
  padding: 0 20px;
}

/* ====================
  仕事内容
==================== */
.p-work {
  padding: 0 20px;
  background: linear-gradient(270deg, #FFF2EE 0%, #FFFBFA 100%);
}

.p-work__inner {
  padding: 80px 0;
  background-image: url("../img/bg-line.svg");
  background-position: center top;
  background-size: cover;
}

.p-work__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  color: #000;
}

.p-work__list {
  margin-top: 48px;
}

.p-work__item {
  padding: 32px 0;
  border-top: 1px solid #D9CFBE;
}

.p-work__item:last-child {
  padding-bottom: 0;
}

.p-work__item-title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.417;
  letter-spacing: 0.32px;
  margin-bottom: 6.94px;
}

.p-work__item-desc {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  margin: -0.01em;
}

/* ====================
  求める人物像
==================== */
.p-profile {
  background-color: #EBE3D4;
  padding: 80px 20px;
}

.p-profile__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  color: #000;
}

.p-profile__list {
  margin: 48px 0 60px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-profile__item {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
}

.p-profile__item-icon img {
  width: 56px;
  height: 56px;
}

.p-profile__item-title {
  margin-top: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.32px;
}

.p-profile__item-desc {
  margin-top: 11px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

/* ====================
  募集要項
==================== */
.p-careers {
  background-color: #fff;
  padding: 80px 20px;
}

.p-careers__title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.05em;
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 2px solid #000000;
}

.p-careers__list {
  margin-bottom: 60px;
}

.p-careers__item {
  padding: 24px 0;
  border-bottom: 1px solid #D9CFBE;
}

.p-careers__term {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.389;
  letter-spacing: 0.7px;
  margin-bottom: 4px;
}

.p-careers__term::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C8102E;
  flex-shrink: 0;
}

.p-careers__desc {
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.p-careers__desc--text {
  padding: 2px 0;
}

.p-careers__desc ul {
  display: flex;
  flex-direction: column;
}

.p-careers__desc ul li {
  display: flex;
  gap: 4px;
  padding: 2px 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

.p-careers__desc ul li::before {
  content: "・";
  color: #C8102E;
}

/* ====================
  採用スケジュール
==================== */
.p-process {
  background: linear-gradient(270deg, #FFF2EE 0%, #FFFBFA 100%);
  padding: 80px 20px;
}

.p-process__title {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.35;
  letter-spacing: -0.05em;
  color: #000;
}

.p-process__lead {
  margin-top: 24px;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
  color: #3C3631;
}

.p-process__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin: 48px 0;
}

.p-process__step {
  width: 100%;
  background: #FBF7EF;
  border-radius: 20px;
  border: 1px solid #D9CFBE;
  text-align: center;
  padding: 31px 20px 32px;
  position: relative;
}

.p-process__step:not(:last-child)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #D9CFBE;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.p-process__step--last {
  background: #C8102E;
  border: 1px solid #C8102E;
  color: #fff;
}

.p-process__step-num {
  display: inline-block;
  background: #C8102E;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding: 7px 24px 4px;
  border-radius: 24px;
  margin-bottom: 7px;
}

.p-process__step--last .p-process__step-num {
  background: #fff;
  color: #C8102E;
}

.p-process__step-label {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 0.32px;
}

/* ====================
  Footer
==================== */
.l-footer {
  padding: 140px 20px;
  text-align: center;
  background-image: url("../img/bg-footer.webp");
  background-position: center top;
  background-size: cover;
  color: #fff;
}

.l-footer__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  font-size: 40px;
  line-height: 1.625;
  letter-spacing: 0.32px;
  color: #FBF7EF;
}

.l-footer__desc {
  margin: 25px 0 49px;
  text-align: left;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: -0.01em;
}

.l-footer__note {
  margin-top: 24px;
  font-weight: 100;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.32px;
}
