@charset "UTF-8";

/* =========================================================
  RELOA 求人LP
  Mobile First / min-width: 375px
========================================================= */


/* =========================================================
  変数
========================================================= */

:root {
  --white: #ffffff;
  --cream: #F8F3EC;
  --gold: #b8944e;
  --text: #29241d;
  --line: #e7d8c7;
  --shadow: 0 14px 34px rgba(88, 68, 48, .12);
  --radius: 20px;

  --font-sans:
    "Noto Sans JP",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;

  --font-serif:
    "Shippori Mincho",
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    serif;
}


/* =========================================================
  リセット・共通設定
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 88px;
  min-width: 375px;
  background: #eee7df;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

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

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

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

button {
  cursor: pointer;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin-top: 0;
}

p {
  margin-bottom: 0;
}


/* =========================================================
  レイアウト
========================================================= */

.page {
  width: 100%;
  min-width: 375px;
  max-width: 430px;
  margin: 0 auto;
  background: var(--white);
  overflow: hidden;
}

.section {
  position: relative;
  padding: 80px 20px;
}


/* =========================================================
  見出し・テキスト共通
========================================================= */

h2 {
  margin-bottom: 18px;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: .08em;
  text-align: center;
}

h3 {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}

.section-heading-en {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.125;
  text-align: center;
}

.section-heading-ja {
  margin: 0 0 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  text-align: center;
}


/* =========================================================
  FV
========================================================= */

.fv {
  padding: 0 0 40px;
  text-align: center;
}

.fv__image-wrap {
  width: 100%;
}

.fv__image {
  width: 100%;
  height: auto;
}

.fv__cta-image {
  display: block;
  width: calc(100% - 48px);
  max-width: 327px;
  margin: 18px auto 0;
  transition:
    transform .25s ease,
    opacity .25s ease;
}

.fv__cta-image img {
  width: 100%;
  height: auto;
}

.fv__cta-image:hover {
  transform: translateY(-2px);
  opacity: .92;
}

.fv__cta-image:active {
  transform: translateY(0);
  opacity: 1;
}


/* =========================================================
  悩みセクション
========================================================= */

.worries {
  width: 100%;
}

.worries__block {
  width: 100%;
  line-height: 0;
}

.worries__image {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

/* =========================================================
  Promise
========================================================= */

.promise {
  padding: 80px 0;
  background: var(--cream);
}

.promise__inner {
  width: 100%;
  padding: 0 20px;
}

.promise-card {
  position: relative;
  margin-top: 52px;
  padding: 0 20px;
}

.promise-card__image-wrap {
  position: relative;
  width: 100%;
  margin: 0 0 24px;
}

.promise-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.promise-card__number {
  position: absolute;
  top: -20px;
  left: -20px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold);
  font-size: 24px;
}

.promise-card__title {
  margin: 0 0 16px;
  font-size: 15px;
  text-align: center;
}

.promise-card__text {
  margin: 0;
  text-align: justify;
}


/* =========================================================
  Work style
========================================================= */

.work-style {
  padding: 80px 0;
  background: #ECE1D8;
}

.work-style__inner {
  padding: 0 20px;
}

.work-style__lead {
  margin: 0 0 24px;
  text-align: justify;
}

.work-card {
  padding: 20px;
  background: var(--white);
}

.work-card + .work-card {
  margin-top: 22px;
}

.work-card__title {
  margin: 0 0 24px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.work-card__image {
  width: 100%;
  height: auto;
  margin: 0 0 24px;
}

.work-card__copy {
  margin: 0 0 24px;
  text-align: center;
}

.work-card__list {
  margin: 0;
}

.work-card__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid #dfd4c5;
}

.work-card__item:last-child {
  border-bottom: 1px solid #dfd4c5;
}

.work-card__item dt {
  width: 100%;
  color: var(--gold);
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.work-card__item dd {
  margin: 0;
}

.salary-box {
  margin: 24px 0 0;
  padding: 20px;
  background: var(--cream);
}

.salary-box__head {
  margin: 0 0 20px;
  padding: 2px 20px;
  background: var(--gold);
  color: var(--white);
  text-align: center;
}

.salary-box__text {
  margin: 0;
  font-family: var(--font-serif);
  text-align: left;
}

.salary-box__text + .salary-box__text {
  margin-top: 20px;
}

.salary-box__text span {
  display: inline-block;
  font-size: 16px;
  line-height: 2;
}

.salary-box__text .salary-box__accent {
  color: var(--gold);
}

/* =========================================================
  Support
========================================================= */

.support {
  padding: 80px 0;
  background: #f4eee7;
}

.support__inner {
  padding: 0 20px;
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 24px;
  margin-top: 28px;
}

.support-item {
  min-width: 0;
  text-align: center;
}

.support-item__icon {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 140px;
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--white);
  overflow: hidden;
}

.support-item__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.support-item__title {
  margin: 0 0 4px;
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.support-item__text {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.8;
  text-align: center;
}

/* =========================================================
  Information
========================================================= */

.information {
  padding: 80px 0;
  background: var(--white);
}

.information__inner {
  padding: 0 20px;
}

.information-list {
  margin: 28px 0 0;
  border-top: 1px solid #dfd4c5;
}

.information-list__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #dfd4c5;
}

.information-list__item dt {
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0;
  text-align: justify;
  text-align-last: justify;
  white-space: nowrap;
}

.information-list__item dd {
  margin: 0;
}

/* =========================================================
  Message
========================================================= */

.message-section {
  position: relative;
  padding: 80px 20px;
  background:
    linear-gradient(
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url("../images/message.jpg") center / cover no-repeat;
  color: var(--white);
}

.message-section__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.message-section__heading-en {
  color: var(--white);
}

.message-section__heading-ja {
  margin-bottom: 28px;
  color: var(--white);
}

.message-section__text {
  margin: 0;
  font-family: var(--font-serif);
  text-align: center;
}

.message-section__text + .message-section__text {
  margin-top: 24px;
}

/* =========================================================
  Entry
========================================================= */

.entry {
  padding: 80px 0;
  background: var(--white);
}

.entry__inner {
  padding: 0 20px;
}

.entry__lead {
  margin: 0 0 24px;
  text-align: center;
}


.entry-contact {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.entry-contact__icon {
  display: block;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.entry-contact__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  min-height: 46px;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-serif);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.entry-contact__button--line {
  background: var(--gold);
  color: var(--white);
}

.entry-contact__button--instagram {
  background: var(--white);
  color: var(--gold);
}


/* =========================================================
  Entry Form
========================================================= */

#mailformpro.entry-form {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 36px 20px 32px;
  border: 1px solid #d9d4ce;
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
}

#mailformpro dl.mailformpro {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

#mailformpro dl.mailformpro dt,
#mailformpro dl.mailformpro dd {
  float: none;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
}

#mailformpro dl.mailformpro dt {
  margin-bottom: 8px;
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
}

#mailformpro dl.mailformpro dd {
  margin-bottom: 24px;
}

#mailformpro dl.mailformpro dt::after,
#mailformpro dl.mailformpro dd::after {
  display: none;
  content: none;
}

#mailformpro .must {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 5px;
  background: var(--text);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: 1px;
}

#mailformpro .annotation {
  font-size: 10px;
  font-weight: 400;
}

#mailformpro .col10 {
  width: 100%;
  margin: 0;
  padding: 0;
}

#mailformpro input[type="text"],
#mailformpro input[type="email"],
#mailformpro input[type="tel"],
#mailformpro input[type="number"],
#mailformpro select,
#mailformpro textarea {
  display: block;
  width: 100%;
  max-width: none;
  height: 50px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.5;
  box-shadow: none;
  outline: none;
  appearance: none;
}

#mailformpro input[type="text"]:focus,
#mailformpro input[type="email"]:focus,
#mailformpro input[type="tel"]:focus,
#mailformpro input[type="number"]:focus,
#mailformpro select:focus,
#mailformpro textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(189, 145, 65, .12);
}

#mailformpro .form-example {
  display: block;
  margin-top: 5px;
  color: #aaaaaa;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.8;
}

#mailformpro dd.col_flex {
  display: grid;
  gap: 8px;
}

#mailformpro dd.col_flex > label {
  display: inline-block;
  align-items: center;
  gap: 7px;
  width: 100%;
  min-height: 45px;
  margin: 0;
  padding: 10px 11px;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  background: #f0f0f0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.7;
  cursor: pointer;
}

#mailformpro input[type="radio"],
#mailformpro input[type="checkbox"] {
  position: static;
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  margin: 0;
  padding: 0;
  opacity: 1;
  visibility: visible;
  appearance: auto;
  accent-color: #6f675f;
  cursor: pointer;
}

#mailformpro input[type="radio"]:focus-visible,
#mailformpro input[type="checkbox"]:focus-visible {
  outline: 1px solid #6f675f;
  outline-offset: 2px;
}

#mailformpro .checkbox-error {
  min-height: 1.7em;
  margin: 0;
  color: #b42318;
  font-family: var(--font-sans);
  font-size: 10px;
  line-height: 1.7;
}

#mailformpro dd.privacy-check {
  margin: 28px 0 24px;
  padding: 13px 12px;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: var(--white);
}

#mailformpro .privacy-check > label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  font-family: var(--font-serif);
  text-align: center;
  cursor: pointer;
}

#mailformpro .privacy-check a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

#mailformpro .mfp_buttons {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: center;
}

#mailformpro .entry-form__submit,
#mailformpro .mfp_buttons button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: #bd984d;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 12px;
  line-height: 1.5;
  box-shadow: none;
  appearance: none;
  cursor: pointer;
  text-shadow: none;
}

#mailformpro .entry-form__submit:hover,
#mailformpro .mfp_buttons button:hover {
  opacity: .9;
}

/* メールフォームプロが生成する確認・送信画面を操作可能にする */
#mfp_overlay,
#mfp_loading_screen,
#mfp_confirm_table,
#mfp_confirm_thanks {
  box-sizing: border-box;
}

#mfp_overlay {
  z-index: 10000;
}

#mfp_loading_screen {
  z-index: 10001;
}

/* =========================================================
  Footer
========================================================= */

.footer {
  padding: 0 20px 40px;
  background: var(--white);
}

.footer__copyright {
  margin: 0;
  text-align: center;
}


/* =========================================================
  下部固定CTA
========================================================= */

.fixed-entry-button {
  position: fixed;
  left: 50%;
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  max-width: 398px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);

  transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .25s ease;
}

.fixed-entry-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.fixed-entry-button:hover {
  opacity: .92;
}

.fixed-entry-button:active {
  transform: translateX(-50%) translateY(1px);
}


/* =========================================================
  PC表示時の外枠
========================================================= */

@media (min-width: 431px) {
  body {
    padding: 24px 0 112px;
  }

  .page {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .14);
  }
}


/* =========================================================
  Mailform Pro 必須ラベルの位置・装飾調整
========================================================= */

#mailformpro dl.mailformpro dt {
  display: flex !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

#mailformpro .must {
  position: static !important;
  float: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  order: 1;
  margin: 0 !important;
  padding: 1px 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--text) !important;
  color: var(--white) !important;
  box-shadow: none !important;
  text-shadow: none !important;
  font-family: var(--font-sans);
  font-size: 10px !important;
  font-weight: 400;
  line-height: 1.5 !important;
  vertical-align: middle;
}

#mailformpro .annotation {
  order: 0;
}

#mailformpro dd.privacy-check {
  overflow: hidden;
}

#mailformpro .privacy-check > label {
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

#mailformpro .privacy-check .mfp_err {
  width: 100%;
  margin-top: 6px;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

#mailformpro dd.privacy-check > label {
  padding: 10px;
}