@charset "UTF-8";

/* =========================================================
  Amato Recruit LP Styles
  - Base typography (Mincho)
  - Layout (max 720px)
  - Sticky header (logo + CTA PNG)
  - Utility spacing
  - Voice
  - New Shop
  - FAQ accordion
  - Flow / Job Description blocks
========================================================= */

/* =========================================================
  Common Variables (shared only)
========================================================= */
:root{
  --bg: #000;
  --text: #e6e6e6;
  --maxw: 720px;

  --blur-bg: rgba(0,0,0,0.8);
  --blur: 6px;

  --panel: rgba(41,41,41,0.77);
  --border: rgba(255,255,255,0.06);

  --paper: rgba(230,230,230,0.73);

  --icon: 20px;
}

/* =========================================================
  Base
========================================================= */
html, body{ height: 100%; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);

  font-family:
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Yu Mincho",
    "YuMincho",
    "Noto Serif JP",
    serif;

  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.05em;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* images: prevent overflow */
img{
  display: block;
  max-width: 100%;
  height: auto;
}

/* button UA font inheritance */
button{
  font: inherit;
}

/* =========================================================
  Layout Shell (max 720px centered)
========================================================= */
.lp-shell{
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--bg);
}

/* =========================================================
  Sticky Header (Logo + CTA PNG)
========================================================= */
.lp-stickybar{
  position: sticky;
  top: 0;
  z-index: 1000;

  background: var(--blur-bg);
  backdrop-filter: blur(var(--blur));
  -webkit-backdrop-filter: blur(var(--blur));
}

.lp-stickybar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap; /* prevent column drop */
}

.lp-logo,
.lp-cta{
  min-width: 0;
  display: flex;
  align-items: center;
}

/* Logo: max 580px (shrinkable) */
.lp-logo{
  flex: 1 1 580px;
}
.lp-logo img{
  width: 100%;
  max-width: 580px;
}

/* CTA: max 490px (shrinkable) */
.lp-cta{
  flex: 0 1 490px;
  justify-content: flex-end;
}
.lp-cta img{
  width: 100%;
  max-width: 490px;
}
.lp-cta:active{
  transform: translateY(1px);
}

/* =========================================================
  Text Block + Width Utilities
  (HTML: <div class="text w80"> ... )
========================================================= */
.text{
  margin: 0 auto;
  font-size: 14px;
}

.w90{ margin-left: 5%;  margin-right: 5%;  }
.w88{ margin-left: 6%;  margin-right: 6%;  }
.w86{ margin-left: 7%;  margin-right: 7%;  }
.w84{ margin-left: 8%;  margin-right: 8%;  }
.w82{ margin-left: 9%;  margin-right: 9%;  }
.w80{ margin-left: 10%; margin-right: 10%; }

/* =========================================================
  Spacing Utilities
========================================================= */
.mb-10{  margin-bottom: 10px !important; }
.mb-20{  margin-bottom: 20px !important; }
.mb-30{  margin-bottom: 30px !important; }
.mb-40{  margin-bottom: 40px !important; }
.mb-50{  margin-bottom: 50px !important; }
.mb-60{  margin-bottom: 60px !important; }
.mb-70{  margin-bottom: 70px !important; }
.mb-80{  margin-bottom: 80px !important; }
.mb-90{  margin-bottom: 90px !important; }
.mb-100{ margin-bottom: 100px !important; }

/* =========================================================
  Image Size Tweaks (centered)
========================================================= */
img.reason{
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
}
img.curriculum-detail{
  max-width: 94%;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
  Voice
========================================================= */
.voice-item .staff-name {
  padding-bottom: 20px;;
  line-height: 20px;
}

.voice-item .staff-name span{
  display: inline-block;
  padding-right: 10px;
  font-size: 20px;
}

/* =========================================================
  New Shop
========================================================= */
.new-shop{
  width: 86%;
  margin: 0 auto;
}
.new-shop-item .new-shop-info{
  color: #bb955e;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 20px;;
}

.new-shop-item .new-shop-info  span{
  display: block;
  font-size: 14px;
  padding-bottom: 5px;
}

/* =========================================================
  FAQ (Accordion)
========================================================= */
.faq{
  width: 90%;
  margin: 0 auto;
  font-size: 14px;
  line-height: 1.5;
}

.faq__list{
  display: grid;
  gap: 20px;
}

.faq-item{
  background: var(--panel);
}

/* Q button */
.faq-btn{
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  gap: 12px;
  padding: 22px 18px;

  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;

  color: var(--text);

  /* Mincho inheritance */
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.faq-q__left{
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 0;
}

.faq-icon{
  width: var(--icon);
  height: var(--icon);
  flex: 0 0 auto;
  display: block; /* prevent baseline shift */
}

/* Question text: wrap (Solution B) */
.faq-q__text{
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* Plus/Minus: Gothic only */
.faq-mark{
  flex: 0 0 auto;
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
  opacity: 0.9;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    "Yu Gothic",
    "YuGothic",
    "Noto Sans JP",
    sans-serif;
  font-weight: 500;
}

/* A panel */
.faq-a{
  border-top: 1px solid var(--border);
  padding: 18px 18px 22px;
}

.faq-a__inner{
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.faq-a__text{
  margin: 0;
}

/* =========================================================
  Flow / JD Blocks (Paper tone)
========================================================= */
#flow{
  scroll-margin-top: 80px; /* ヘッダー高さに合わせて調整 */
}

.flow,
.flow-item,
.jd{
  background-color: var(--paper);
  color: #000;
}

.flow{
  margin-top: 60px;
  padding: 30px 10px;
}

.flow-item{
  margin-bottom: 30px;
  padding: 10px 0 30px;
}

.flow-line{
  display: block;
  width: 80%;
  margin: 0 auto;
}

.jd{
  padding: 0 5% 50px;
}

.jd-title{
  font-size: 20px;
  margin-bottom: 30px;
}

.jd-text{
  font-size: 13px;
}

.shop-list{
  padding: 10px 0 10px 10px;
}

.shop-name{
  display: inline-block;
  border-bottom: 1px solid #000;
  line-height: 1.5;
}

.shop-addr{
  display: block;
}

.shop-item + .shop-item{
  margin-top: 4px;
}

.benefits{
  padding: 0 0 10px 10px;
}

.experience{
  padding: 0 0 10px 10px;
  font-weight: bold;
}

.company{
  color: #000;
  text-decoration: none;
}

.company:hover{
  text-decoration: none;
  opacity: 0.75;
}

.company:visited{
  color: #000;
}

/* =========================
   Motion (for .motion only)
   Calm / premium style
========================= */

/* 初期状態（見せない） */
.motion{
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 700ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* 表示状態 */
.motion.is-inview{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ほんの少しだけ奥行き（任意：追加したい画像だけに .motion--scale も付ける） */
.motion.motion--scale{
  transform: translate3d(0, 18px, 0) scale(1.01);
}
.motion.motion--scale.is-inview{
  transform: translate3d(0, 0, 0) scale(1);
}

/* 連続画像の見た目を整える（任意） */
.motion{ backface-visibility: hidden; }

/* アクセシビリティ：動きを減らす設定 */
@media (prefers-reduced-motion: reduce){
  .motion{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
