@charset "UTF-8";
/* 基本スタイル */
/* line 4, style.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

/* line 13, style.scss */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6; }

/* line 17, style.scss */
.webfont {
  font-family: 'Noto Serif JP', serif;
  font-weight: normal;
  font-display: swap;
  /* フォントが読み込まれるまでシステムフォントが表示され、読み込み後に指定したフォントに切り替わる */ }

/* line 22, style.scss */
p, li, dt, dd {
  font-size: 0.9rem; }

@media (max-width: 768px) {
  /* line 26, style.scss */
  p, li, dt, dd {
    font-size: 0.75rem; } }
/* line 30, style.scss */
.ib-line {
  display: inline-block; }

/* line 33, style.scss */
.textForyou {
  font-family: 'Dancing Script', cursive;
  /* 筆記体のフォント */
  font-size: 2em;
  /* サイズ調整 */ }

/* line 37, style.scss */
.container {
  width: 98%;
  max-width: 1280px;
  margin: 0 auto; }

/* line 42, style.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  overflow: hidden; }

/* ヘッダー */
/* line 55, style.scss */
header .container {
  width: 100%;
  display: flex;
  /* Flexboxを使用して横並びに配置 */
  justify-content: space-between;
  /* ロゴとメニューを両端に配置 */
  align-items: center;
  /* 垂直方向に中央揃え */
  padding: 10px 20px;
  /* 上下のパディング */
  color: #8c7a6f;
  z-index: 10;
  /* ヘッダーが他の要素の上に表示されるように */
  border-bottom: 0.1px solid #8c7a6f; }
  /* line 64, style.scss */
  header .container .logo {
    display: flex;
    align-items: center;
    /* ロゴを中央に垂直揃え */
    justify-content: center;
    /* 横方向にも中央に配置 */ }
    /* line 68, style.scss */
    header .container .logo img {
      width: auto;
      height: 64px;
      /* ハンバーガーメニューに合わせた高さ */ }

@media (max-width: 768px) {
  /* line 77, style.scss */
  header .container {
    padding: 5px 10px;
    /* 上下のパディング */ }
    /* line 80, style.scss */
    header .container .logo img {
      width: auto;
      height: 44px;
      /* ハンバーガーメニューに合わせた高さ */ } }
/* ナビゲーション */
/* line 89, style.scss */
nav {
  display: flex;
  align-items: center;
  /* メニューを中央揃え */ }
  /* line 92, style.scss */
  nav ul {
    list-style: none;
    float: right; }
    /* line 95, style.scss */
    nav ul li {
      display: inline;
      margin-left: 20px; }
      /* line 98, style.scss */
      nav ul li a {
        color: #a3948b;
        text-decoration: none; }

/* ハンバーガーメニュー */
/* line 108, style.scss */
.hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 25px;
  flex-direction: column;
  justify-content: space-between;
  z-index: 20;
  /* ハンバーガーアイコンが他の要素より上に表示されるように */ }
  /* line 116, style.scss */
  .hamburger .bar {
    width: 30px;
    height: 5px;
    background-color: #a3948b;
    border-radius: 10px; }

/* line 125, style.scss */
.menu {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  z-index: 15;
  /* メニューのz-indexを設定 */ }
  /* line 130, style.scss */
  .menu li {
    margin-left: 20px; }
    /* line 132, style.scss */
    .menu li a {
      color: #a3948b;
      text-decoration: none; }

/* モバイル用 */
@media (max-width: 768px) {
  /* line 143, style.scss */
  .menu {
    display: none;
    flex-direction: column;
    background-color: #FFF;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: 10px;
    text-align: center;
    z-index: 10;
    /* メニューが他の要素より上に表示されるように */ }
    /* line 154, style.scss */
    .menu li {
      margin: 10px 0; }

  /* line 158, style.scss */
  .hamburger {
    display: flex; }

  /* line 162, style.scss */
  .menu.show {
    display: flex; } }
/* メインコンテンツ */
/* line 168, style.scss */
main {
  position: relative;
  width: 100%;
  height: auto;
  /* ビューポートの高さに合わせる */ }

/* line 175, style.scss */
.fancy-heading {
  position: relative;
  display: inline-block;
  padding: 1rem;
  font-size: clamp(18px, 2.6vw, 34px);
  line-height: 1.5;
  font-family: "tot-shizukardmin-stdn", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-align: center;
  margin-bottom: 5vw; }
  /* line 189, style.scss */
  .fancy-heading::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: -4px -8px;
    background: rgba(0, 0, 0, 0.88);
    transform: skew(-8deg);
    /* ← 斜め感 */
    border-radius: 12px; }

/* テキストオーバーレイ */
/* line 199, style.scss */
.text-overlay {
  position: absolute;
  top: 50%;
  /* 上下中央に配置 */
  left: 50%;
  /* 左右中央に配置 */
  transform: translate(-50%, -50%);
  /* 中心から正確に配置 */
  padding: 20px;
  text-align: center;
  white-space: nowrap;
  font-size: 2em;
  /* 見出しの文字サイズ */
  color: #8c7a6f;
  /* テキストカラー */
  z-index: 3;
  /* 背景が最背面に来るように */
  /* 背景用のスタイル（テキストの後ろに配置） */
  /* 各行のテキストに対するスタイル */
  /* h1タグのスタイル */ }
  /* line 225, style.scss */
  .text-overlay .text-line {
    display: inline-block;
    position: relative;
    z-index: 1;
    /* 背景の上に表示 */
    line-height: 1.1; }
  /* line 231, style.scss */
  .text-overlay .fancy-heading {
    position: relative;
    display: inline-block;
    padding: 40px 40px;
    font-size: 1.8rem;
    color: #13ae67;
    text-align: center;
    background: url("/recruit/img/bgWhite.svg") center/100% 100% no-repeat;
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.5)); }
    @media (max-width: 769px) {
      /* line 231, style.scss */
      .text-overlay .fancy-heading {
        font-size: 1.1rem;
        padding: 20px 20px; } }
  /* line 246, style.scss */
  .text-overlay h1 {
    font-size: 1.6em;
    /* 見出しのフォントサイズ */
    margin: 0;
    /* 見出しの余白をなくす */
    color: white;
    /* 見出しのテキストカラー */ }

/* モバイル用 */
@media (max-width: 768px) {
  /* line 255, style.scss */
  .text-overlay {
    padding: 10px;
    top: 80%;
    /* 上下中央に配置 */
    /* 各行のテキストに対するスタイル */ }
    /* line 258, style.scss */
    .text-overlay .text-line-background {
      box-shadow: 8px 8px 0 #a3948b;
      /* 茶色のシャドウ（位置を少しずらす） */
      padding: 0.4rem .6rem;
      /* 内側のパディングを調整 */
      width: calc(100% + 1rem);
      /* 横幅を少し広げて調整 */
      height: 2.5rem;
      /* 高さを設定 */ }
    /* line 266, style.scss */
    .text-overlay .text-line {
      line-height: 1.1; }
    /* line 269, style.scss */
    .text-overlay h1 {
      padding: .4rem .4rem;
      /* 内側のパディング */
      font-size: 0.7em;
      /* モバイルで見出しの文字サイズを調整 */ } }
/* セクション */
/* line 277, style.scss */
.section {
  padding: 40px 0;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    /* line 277, style.scss */
    .section {
      padding: 10px 0;
      margin-bottom: 00px; } }

/* line 285, style.scss */
h2 {
  font-size: 1.8em;
  margin-bottom: 20px; }

/* line 290, style.scss */
#about {
  padding-bottom: 9rem;
  background-image: url("/recruit/img/bgMeassage.png");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 80% auto;
  border-bottom: 1px solid #a3948b; }
  /* line 291, style.scss */
  #about h3 {
    margin: 0;
    font-size: clamp(18px, 2.6vw, 34px);
    font-family: "sicellemin", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    /* フォントが読み込まれるまでシステムフォントが表示され、読み込み後に指定したフォントに切り替わる */ }
  @media (max-width: 768px) {
    /* line 290, style.scss */
    #about {
      padding-bottom: 6rem;
      background-size: 90% auto; } }

/* line 310, style.scss */
.tategaki {
  writing-mode: vertical-rl;
  /* 縦書き（右から左へ） */
  text-orientation: mixed;
  /* 英数字はそのままの向きで表示 */ }

/* スライダーのラッパー */
/* line 315, style.scss */
.sliderWrapper {
  width: 100%;
  overflow: hidden;
  /* コンテナ外の要素を隠す */
  position: relative; }

/* スライダー */
/* line 322, style.scss */
.slider {
  margin: 5vh 0 5vh;
  display: flex;
  transition: transform 0.5s linear;
  /* スムーズな移動 */
  will-change: transform;
  /* パフォーマンス向上 */
  transition: none;
  gap: 2vw; }
  @media (max-width: 768px) {
    /* line 322, style.scss */
    .slider {
      gap: 5vw; } }

/* 各スライド */
/* line 335, style.scss */
.slide {
  max-width: 280px;
  /* スライド幅 */
  flex: 0 0 auto; }

/* line 340, style.scss */
.slide img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 20px 0 20px 0; }

@media (max-width: 769px) {
  /* 各スライド */
  /* line 350, style.scss */
  .slide {
    max-width: 320px;
    /* スライド幅 */ } }
/* レイアウト全体 */
/* line 355, style.scss */
.contentWrapper {
  margin: 2rem auto;
  display: flex;
  align-items: center;
  /* 垂直方向に中央配置 */
  justify-content: center;
  /* 横方向に中央配置 */
  flex-wrap: wrap;
  /* スマホなど小さい画面で折り返し */ }
  /* line 361, style.scss */
  .contentWrapper h3.webfont {
    color: #a3948b;
    text-align: center;
    font-weight: normal;
    font-size: 1.4rem; }

/* line 368, style.scss */
.leadBox {
  text-align: center;
  padding: 1rem 0; }
  /* line 371, style.scss */
  .leadBox p {
    padding: 1rem 0;
    text-align: left;
    display: inline-block;
    margin: auto; }

/* line 378, style.scss */
.photoEmploye {
  position: relative; }
  /* line 380, style.scss */
  .photoEmploye h3 {
    position: absolute;
    margin: auto;
    top: 10%;
    left: 0;
    right: 0; }
    /* line 386, style.scss */
    .photoEmploye h3 span {
      display: inline-block; }

/* line 392, style.scss */
.textOnSlider {
  margin: auto;
  width: 60%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 1rem;
  padding: 3rem; }
  @media (max-width: 768px) {
    /* line 392, style.scss */
    .textOnSlider {
      width: 90%;
      padding: 1rem;
      right: 5vw; } }
  /* line 405, style.scss */
  .textOnSlider p {
    font-size: clamp(14px, 1.6vw, 18px);
    font-family: "sicellemin", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-display: swap;
    /* フォントが読み込まれるまでシステムフォントが表示され、読み込み後に指定したフォントに切り替わる */ }

/* 追加CSS */
/* line 414, style.scss */
.textOnSlider > * {
  opacity: 0;
  transform: translateY(24px);
  /* ← ここだけ Y に */
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform; }

/* 見えたら発火。子要素の--iで遅延を付与 */
/* line 424, style.scss */
.textOnSlider.in-view > * {
  opacity: 1;
  transform: translateY(0);
  /* ← Y を 0 に */
  transition-delay: calc(var(--i, 0) * 140ms); }

/* 既にアニメ後に別ページ遷移→戻った時のチラつき防止（任意） */
/* line 432, style.scss */
.textOnSlider.in-view {
  contain: paint; }

/* 動きが苦手なユーザー配慮 */
@media (prefers-reduced-motion: reduce) {
  /* line 438, style.scss */
  .textOnSlider > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important; } }
/* 画像のスタイル */
/* line 446, style.scss */
.photoEmploye img {
  width: 100%;
  /* 親要素の幅に合わせて画像を100%にする */
  height: auto;
  /* 高さは自動調整で縦横比を保持 */
  border-radius: 15px;
  box-shadow: 5px 3px 0 10px rgba(19, 174, 103, 0.5), -5px -3px 0 10px rgba(19, 174, 103, 0.5);
  /* 茶色と緑のシャドウ */
  object-fit: cover;
  /* 画像の縦横比を保持して表示 */ }

/* PC版 - 横並びでタイトルを上下中央に配置 */
@media (min-width: 1020px) {
  /* line 455, style.scss */
  .contentWrapper {
    display: flex;
    flex-direction: row;
    /* 横並び */
    align-items: center;
    /* タイトルを上下中央揃え */
    justify-content: space-between;
    /* 全体を均等配置 */ }

  /* line 462, style.scss */
  .photoEmploye {
    flex-grow: 1;
    /* 画像部分を可変幅に設定 */
    max-width: calc(100% - 532px);
    /* leadBoxを考慮した最大幅（20px余白含む） */
    margin-right: 20px; }

  /* line 467, style.scss */
  .photoEmploye h3.webfont {
    font-size: clamp(1.1rem, 2vw, 2.5rem);
    /* フォントサイズを親要素に応じて動的に調整 */
    line-height: 1.4;
    /* 行間を適切に設定 */ }

  /* line 471, style.scss */
  .photoEmploye img {
    width: 100%;
    /* 親要素の幅に合わせる */
    height: auto;
    /* 縦横比を保持 */ }

  /* line 476, style.scss */
  .leadBox {
    width: 500px;
    /* 固定幅 */
    flex-shrink: 0;
    /* 幅を固定し、縮小しないようにする */ } }
/* スマホ版 - 縦並びに変更 */
@media (max-width: 1019px) {
  /* line 484, style.scss */
  .contentWrapper {
    display: flex;
    flex-direction: column;
    /* 縦並び */
    align-items: center;
    /* 中央揃え */
    margin: 1rem auto 0; }

  /* line 491, style.scss */
  .photoEmploye {
    width: 90%;
    /* 幅を親要素に合わせる */
    margin: 0 auto 20px;
    /* 下部に余白を追加 */ }

  /* line 496, style.scss */
  .leadBox {
    width: 96%;
    /* 幅を親要素に合わせる */
    margin: 0 auto 20px;
    /* 下部に余白を追加 */ }

  /* line 501, style.scss */
  .photoEmploye img {
    width: 100%;
    /* 画像を親要素に合わせて100%に */
    height: auto;
    /* 縦横比を保持 */ }

  /* line 505, style.scss */
  .photoEmploye h3.webfont {
    font-size: clamp(1rem, 4vw, 1.8rem);
    /* スマホではより小さなサイズで可変 */
    text-align: center;
    /* テキストを中央揃え */
    line-height: 1.4; }

  /* line 510, style.scss */
  .leadBox {
    margin-bottom: 0;
    /* 最後の要素の余白をなくす */ } }
/* スタイル */
/* line 516, style.scss */
h2.webfont {
  margin: 2rem auto 4rem;
  text-align: center;
  font-weight: normal;
  display: flex;
  color: #a3948b;
  align-items: center;
  /* h2内の文字を上下中央に配置 */
  justify-content: center;
  /* h2内の文字を横中央に配置 */
  height: 100%;
  /* コンテナ内で中央配置するため */ }
  /* line 525, style.scss */
  h2.webfont span {
    color: #13ae67;
    /* 緑色 */ }

@media (max-width: 768px) {
  /* line 531, style.scss */
  h2.webfont {
    margin: 1rem auto;
    font-size: 1rem; } }
/* line 537, style.scss */
.welfareSection {
  background-color: #e0f7e0;
  /* 緑系の背景色 */
  padding: 20px;
  border-radius: 10px; }

/* line 543, style.scss */
.welfareDetails {
  display: flex; }

/* line 547, style.scss */
.welfareInfo {
  width: 45%; }

/* line 551, style.scss */
.welfareInfo h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px; }

/* line 557, style.scss */
.welfareInfo ul {
  list-style-type: disc;
  padding-left: 20px; }

/* line 562, style.scss */
.welfareImages {
  position: absolute;
  margin: auto;
  top: -120%;
  right: 0;
  left: 0;
  width: 70%; }
  /* line 569, style.scss */
  .welfareImages img {
    width: 100%;
    height: auto; }

/* line 575, style.scss */
.staffImage {
  width: 48%;
  height: auto;
  border-radius: 10px; }

/* line 581, style.scss */
.jobSection {
  background-color: #f9f9f0;
  /* 背景色を淡い緑に変更 */
  padding: 20px;
  border-radius: 10px; }

/* line 588, style.scss */
.jobText {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6; }

/* line 594, style.scss */
.jobText p {
  margin-bottom: 15px; }
  /* line 596, style.scss */
  .jobText p:last-child {
    margin-bottom: 0; }

/* line 601, style.scss */
.jobImages {
  position: absolute;
  bottom: 0;
  margin: auto;
  bottom: -170%;
  right: 0;
  width: 70%; }
  /* line 608, style.scss */
  .jobImages img {
    width: 100%;
    height: auto; }

/* 全体のレイアウト */
/* line 616, style.scss */
.sectionWrapper {
  width: 100%;
  max-width: 980px;
  margin: 3rem auto; }

/* welfareSectionとjobSectionの基本スタイル */
/* line 623, style.scss */
.welfareSection, .jobSection {
  display: flex;
  justify-content: space-around;
  /* セクション間のスペースを均等に */
  gap: 20px;
  /* セクション間の隙間 */
  flex-wrap: wrap;
  /* スマホで折り返しが効くようにする */
  margin-bottom: 2rem; }

/* welfareSectionのスタイル */
/* line 632, style.scss */
.welfareSection {
  background-color: #e0f7e0;
  /* 緑系の背景 */ }

/* line 636, style.scss */
.jobTitle, .welfareTitle {
  align-items: center;
  align-self: center;
  text-align: center;
  position: relative; }

/* line 643, style.scss */
.welfareDetails {
  width: 75%;
  /* PCでは2つのセクションを横並びに */
  border-radius: 10px; }

/* jobSectionのスタイル */
/* line 649, style.scss */
.jobSection {
  background-color: #f9f9f0;
  /* 薄い緑系の背景 */ }

/* line 654, style.scss */
.jobText {
  width: 75%;
  /* PCでは2つのセクションを横並びに */
  border-radius: 10px; }

/* スマホ表示対応 */
@media (max-width: 920px) {
  /* line 661, style.scss */
  .jobImages {
    bottom: -72%;
    right: -30%;
    width: 60%; } }
@media (max-width: 768px) {
  /* line 668, style.scss */
  .sectionWrapper {
    margin: 1rem auto; }

  /* line 672, style.scss */
  .welfareSection, .jobSection {
    width: 100%;
    /* スマホでは横幅100% */
    flex-direction: column;
    /* スマホでは縦並びに変更 */ }
    /* line 675, style.scss */
    .welfareSection .welfareDetails, .jobSection .welfareDetails {
      width: 100%;
      /* スマホでは横幅100% */
      padding: 10px; }
    /* line 679, style.scss */
    .welfareSection .jobText, .jobSection .jobText {
      width: 100%;
      /* スマホでは横幅100% */
      padding: 10px; }

  /* line 684, style.scss */
  .welfareImages {
    top: -118%; } }
/* line 689, style.scss */
#jobs, #apply, #contact, #news {
  text-align: center; }

/* line 692, style.scss */
#apply, #contact, #news {
  text-align: center;
  margin-top: clamp(30px, 15vw, 120px); }

/* line 697, style.scss */
#apply button {
  background-color: #13ae67;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 1rem; }

/* タブコンテナ */
/* line 709, style.scss */
.tab-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  font-family: Arial, sans-serif; }

/* タブ全体のスタイル */
/* line 717, style.scss */
.tabs {
  display: flex;
  width: 100%;
  /* タブの幅を全幅に */
  background-color: #f9f9f0;
  padding: 0;
  border-radius: 30px;
  /* タブ全体に角丸 */
  margin-bottom: 20px; }

/* 各タブボタン */
/* line 727, style.scss */
.tab {
  width: 50%;
  /* ボタンが半分ずつ占める */
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  background-color: #e0e0e0;
  text-align: center; }

/* 角丸を取り除きシームレスにする */
/* タブにホバー時のエフェクト */
/* line 747, style.scss */
.tab:hover {
  background-color: #d0d0d0; }

/* 選択されたタブのスタイル */
/* line 752, style.scss */
.tab.active {
  background: rgba(0, 0, 0, 0.88);
  color: #fff; }

/* タブコンテンツのスタイル */
/* line 758, style.scss */
.tab-content {
  opacity: 0;
  /* 初期状態で透明 */
  padding: 20px;
  margin-top: 20px;
  transition: opacity 0.5s ease-in-out, visibility 0s 0.5s;
  /* visibilityの遅延 */
  visibility: hidden;
  /* 初期状態では非表示 */
  display: block;
  /* 表示状態を保持 */
  --base: #e0e0e0;
  --line: rgba(0,0,0,.12);
  --line-w: 2px;
  --gap: 10px;
  --deg: 135deg;
  /* 斜線（前面） → ベース（背面）の順にする */
  background: repeating-linear-gradient(var(--deg), var(--line) 0 var(--line-w), transparent var(--line-w) calc(var(--line-w) + var(--gap))), linear-gradient(var(--base), var(--base));
  margin-top: 6rem;
  position: relative; }
  /* line 781, style.scss */
  .tab-content:before {
    content: "";
    display: block;
    height: 5rem;
    width: 50%;
    background: image-set(url("/recruit/img/entry01.webp") type("image/webp"), url("/recruit/img/entry01.png") type("image/png")) no-repeat 50% 0;
    background-size: contain;
    position: absolute;
    top: -5rem; }

/* line 795, style.scss */
#naikin.tab-content {
  /* 斜線（前面） → ベース（背面）の順にする */ }
  /* line 798, style.scss */
  #naikin.tab-content:before {
    content: "";
    display: block;
    height: 5rem;
    width: 50%;
    background: image-set(url("/recruit/img/entry02.webp") type("image/webp"), url("/recruit/img/entry02.png") type("image/png")) no-repeat 50% 0;
    background-size: contain;
    position: absolute;
    top: -5rem;
    right: 0; }

/* アクティブなタブコンテンツ */
/* line 815, style.scss */
.tab-content.active {
  visibility: visible;
  /* 表示 */
  opacity: 1;
  /* 不透明に */
  display: block;
  /* 表示状態にする */
  transition: opacity 0.5s ease-in-out;
  /* opacityの変化だけをアニメーション */ }

/* line 823, style.scss */
.job-list {
  text-align: left;
  display: flex;
  gap: 20px;
  margin-top: 1rem; }
  @media (max-width: 768px) {
    /* line 823, style.scss */
    .job-list {
      flex-direction: column; } }

/* line 833, style.scss */
.job {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  flex: 1; }

/* line 841, style.scss */
.job h3 {
  font-size: 1.3em;
  margin-bottom: 10px; }

/* line 846, style.scss */
.bg-area {
  position: relative;
  height: 40vw;
  /* 画面幅に応じて高さ可変 */
  max-height: 580px;
  /* ただし最低高さ580pxは確保 */
  display: flex;
  align-items: center;
  /* 中身を縦中央寄せ */
  justify-content: center;
  overflow: hidden;
  clip-path: inset(0 0 0 0 round 0 0 0 40px);
  /* 左下だけ角丸っぽく */ }
  @media (max-width: 768px) {
    /* line 846, style.scss */
    .bg-area {
      height: 90vh;
      /* 画面幅に応じて高さ可変 */
      max-height: 580px;
      /* ただし最低高さ580pxは確保 */ } }

/* 背景画像エリア */
/* line 862, style.scss */
.bg-area::before {
  content: "";
  position: absolute;
  inset: 2vw 0 0 2vw;
  /* top:0 right:0 bottom:0 left:10vw */
  background-image: url("/recruit/img/hero_bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px 0 0 40px;
  /* 左下だけ角丸（値はお好みで） */
  z-index: 0; }
  @media (max-width: 768px) {
    /* line 862, style.scss */
    .bg-area::before {
      border-radius: 0 0 0 40px;
      /* 左下だけ角丸（値はお好みで） */
      inset: 0 0 0 10vw;
      /* top:0 right:0 bottom:0 left:10vw */ } }

/* テキスト＋画像のラッパー（最大1200px） */
/* line 879, style.scss */
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1680px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; }

/* line 890, style.scss */
.imgBox {
  position: absolute;
  right: 0;
  bottom: -6%;
  /* 画像を少し下にずらす */
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; }

/* line 900, style.scss */
.imgBox img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-13%) scale(1.1);
  transform-origin: center bottom;
  width: auto;
  max-width: none;
  height: 100%; }
  @media (max-width: 768px) {
    /* line 900, style.scss */
    .imgBox img {
      left: 50%;
      bottom: 0;
      transform: translateX(-43%) scale(1.1); } }

/* line 915, style.scss */
.titBox {
  position: relative;
  z-index: 5;
  /* 人物より前 */
  padding-top: 2vw;
  /* 背景とのバランス見て調整 */
  padding-left: clamp(80px, 4vw, calc(80px + 2vw));
  /* 背景とのバランス見て調整 */
  width: 50rem;
  /* 行幅の上限など */
  max-width: 30vws;
  /* 行幅の上限など */ }
  @media (max-width: 768px) {
    /* line 915, style.scss */
    .titBox {
      padding-top: 1rem;
      /* 背景とのバランス見て調整 */
      max-width: 1rem;
      /* 行幅の上限など */ } }

/* 見出しの体裁はお好みで */
/* line 931, style.scss */
.titBox h1 {
  display: inline-block;
  /* rotate させるためにブロック化 */
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #fff;
  /* 初期状態（少しナナメ＋下げておく） */
  transform: translateY(10px) rotate(-6deg);
  transform-origin: left center;
  /* アニメ用トランジション */
  transition: transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.9s ease;
  opacity: 0;
  /* ゴリっとしたシャドウで視認性アップ */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8); }
  /* line 955, style.scss */
  .titBox h1 .pc-space:after {
    content: "　"; }
    @media (max-width: 768px) {
      /* line 955, style.scss */
      .titBox h1 .pc-space:after {
        content: ""; } }

/* .bg-area が is-in になったら発火させる */
/* line 963, style.scss */
.bg-area.is-in .titBox h1 {
  opacity: 1;
  transform: translateY(0) rotate(-3deg);
  /* ちょい戻して「落ち着く」感じに */ }

/* line 967, style.scss */
p.mainLead {
  padding-top: .5rem;
  display: inline-block;
  /* rotate させるためにブロック化 */
  font-size: clamp(0.9em, 1vw, 1.2rem);
  line-height: 1.4;
  font-family: "sicellemin", sans-serif;
  font-weight: 700;
  font-style: normal;
  /* 初期状態（少しナナメ＋下げておく） */
  /* ゴリっとしたシャドウで視認性アップ */ }
  /* line 977, style.scss */
  p.mainLead.pc-lead {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.9), 0 4px 12px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 0, 0, 0.8); }
    @media (max-width: 768px) {
      /* line 977, style.scss */
      p.mainLead.pc-lead {
        display: none; } }
  /* line 990, style.scss */
  p.mainLead:first-child {
    padding-top: 1rem; }
  /* line 993, style.scss */
  p.mainLead span.keyTxt {
    font-family: "ta-koigokoro", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 140%; }

/* line 1000, style.scss */
.sp-lead-box {
  margin: 10vw 10vw 0 0;
  padding: 2rem 1.5rem 2rem 10vw;
  background: #e7e3e0;
  border-radius: 0 40px 40px 0; }
  @media (min-width: 768px) {
    /* line 1000, style.scss */
    .sp-lead-box {
      display: none; } }
  /* line 1009, style.scss */
  .sp-lead-box p.mainLead:first-child {
    padding-top: 0; }

/* 共通：一旦透明＋少し下げておく */
/* line 1017, style.scss */
.fade-line {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform; }

/* 表示状態 */
/* line 1027, style.scss */
.fade-line.is-visible {
  opacity: 1;
  transform: translateY(0); }

/* line 1033, style.scss */
.double-btn-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  padding-top: clamp(0px, 10vw, 2rem); }

/* line 1041, style.scss */
.double-btn-list li {
  display: inline-block; }

/* 外側の枠 */
/* line 1046, style.scss */
.double-btn {
  position: relative;
  display: inline-block;
  padding: 1.1em 2.8em;
  text-decoration: none;
  color: #8c7a6f;
  font-weight: 700;
  letter-spacing: 0.08em;
  border: 2px solid #8c7a6f;
  /* 外枠 */
  background: transparent;
  transition: color 0.3s ease; }

/* 内側の枠（疑似要素） */
/* line 1063, style.scss */
.double-btn::before {
  content: "";
  position: absolute;
  inset: 5px;
  /* 内側の枠との隙間 */
  border: 1px solid #8c7a6f;
  /* 内側の枠線 */
  transition: inset 0.3s ease, border-color 0.3s ease; }

/* ホバー演出 */
/* line 1073, style.scss */
.double-btn:hover {
  color: #fff; }

/* line 1077, style.scss */
.double-btn:hover::before {
  inset: 2px;
  /* 内枠が外に寄る演出 */
  border-color: #fff; }

/* ホバー時の背景（必要なら） */
/* line 1083, style.scss */
.double-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #8c7a6f;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease; }

/* line 1093, style.scss */
.double-btn:hover::after {
  opacity: 1; }

/* 改行を効かせる＆フェード */
/* line 1100, style.scss */
.typeTxt .type-line {
  white-space: pre-wrap;
  transition: opacity .32s ease; }

/* line 1101, style.scss */
.typeTxt .type-line.fade {
  opacity: 0; }

/* line 1102, style.scss */
.josi {
  font-size: 0.7em; }

/* 上下20% 白・中央グレーの帯背景（セクション高さ基準） */
/* line 1106, style.scss */
#voice.section {
  --edge: 15%;
  /* 白帯の比率（例：25%にしたければ 25%） */
  --mid-color: #f3f4f6;
  /* 中央部のグレー色 */
  background: linear-gradient(to bottom, #fff 0 var(--edge), var(--mid-color) var(--edge) calc(100% - var(--edge)), #fff calc(100% - var(--edge)) 100%);
  /* セクションの上下余白はお好みで */
  padding-block: clamp(32px, 6vw, 80px); }

/* 各ブロックをオーバーラップ可能に */
/* line 1121, style.scss */
.voiceBlock {
  position: relative; }

/* 画像は角丸＆はみ出し隠し（任意） */
/* line 1126, style.scss */
.voicePhoto figure {
  margin: 0;
  overflow: hidden;
  text-align: right; }

/* line 1131, style.scss */
.voicePhoto img {
  width: 40%;
  height: auto; }

/* 画像に“少し”重なる白いカード */
/* line 1137, style.scss */
.voiceText {
  position: relative;
  /* レイアウトには残しつつ前面に */
  z-index: 1;
  /* 画像より前へ */
  margin: -9.5rem 1rem 0;
  /* ←ここで重なり量調整（- を大きくすると重なりが増える） */
  padding: 1.1rem 1.25rem;
  max-width: calc(100% - 2rem);
  /* サイドに余白を確保 */
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  /* 薄い白 */
  -webkit-backdrop-filter: blur(3px) saturate(120%);
  backdrop-filter: blur(3px) saturate(120%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16); }

/* タイポ（typeTxtは既存のタイピングJS用クラスを流用） */
/* line 1151, style.scss */
.voiceText h4.typeTxt {
  margin: 0 0 .5rem;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.3;
  color: #8c7a6f;
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-weight: 700;
  font-style: normal; }

/* line 1161, style.scss */
.voiceText p {
  margin: 0;
  line-height: 1.75; }

/* line 1165, style.scss */
.voiceText p + p {
  margin-top: .75rem;
  /* 本文→名前の間隔 */ }

@media (min-width: 960px) {
  /* line 1172, style.scss */
  .pc-mt-3rem {
    margin-top: 3rem; } }

/* 画面幅によって重なりを微調整 */
@media (max-width: 480px) {
  /* line 1180, style.scss */
  .voiceArea .voiceBlock .voiceText {
    margin: -35vh 0 0 9rem;
    max-width: calc(100% - 10rem); }

  /* line 1183, style.scss */
  .voiceArea .voiceBlock:nth-child(2n) .voiceText {
    margin: -35vh 8rem 0 1rem;
    max-width: calc(100% - 10rem); } }
@media (min-width: 960px) {
  /* line 1187, style.scss */
  .voiceText {
    margin: -6.5rem 2rem 0;
    max-width: min(82%, 720px); }

  /* line 1188, style.scss */
  .voicePhoto img {
    width: 60%;
    aspect-ratio: 4 / 6;
    /* 横4：縦6 */
    object-fit: cover;
    /* 縦横比を保ったままトリミング */
    object-position: top;
    /* 上を基準にして下だけ切れる */
    border-radius: 20px; } }
/* デフォ（SP〜タブレット）：縦積み */
/* line 1197, style.scss */
.voiceArea {
  width: min(98vw, 160vh, 1600px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0 auto clamp(30px, 15vw, 120px); }

/* line 1205, style.scss */
.voiceArea .voiceBlock .voicePhoto figure {
  text-align: left; }

/* line 1210, style.scss */
.voiceArea .voiceBlock:nth-child(2n) .voicePhoto figure {
  text-align: right; }

/* PCで2カラム＋右列を下にずらす */
@media (min-width: 992px) {
  /* line 1217, style.scss */
  .voiceArea {
    --stagger: 28%;
    /* ← 25〜30%で調整可 */
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(20px, 2.5vw, 40px);
    row-gap: clamp(48px, 5vw, 88px);
    /* ずらし分との干渉を緩和するため少し広め */
    align-items: start; }

  /* 右列（2,4,6, ...）だけ下にシフト */
  /* line 1226, style.scss */
  .voiceArea .voiceBlock:nth-child(2n) {
    transform: translateY(var(--stagger)); }

  /* line 1230, style.scss */
  .voiceArea .voiceBlock .voicePhoto figure {
    text-align: right; }

  /* line 1235, style.scss */
  .voiceArea .voiceBlock:nth-child(2n) .voicePhoto figure {
    text-align: left; } }
/* line 1242, style.scss */
#voice h3 {
  text-align: center;
  padding-top: clamp(1rem, 10vw, 2rem);
  padding-bottom: clamp(1rem, 10vw, 2rem);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: .3rem;
  color: #8c7a6f;
  font-family: "dnp-shuei-nshogomincho-std", sans-serif;
  font-weight: 700;
  font-style: normal; }

/* ====== Base Layout ====== */
/* line 1256, style.scss */
.jobPosting {
  --c-bg: #ffffff;
  --c-card: #ffffff;
  --c-text: #222;
  --c-muted: #666;
  --c-border: #e6e6e6;
  --c-accent: #124;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(0,0,0,.12);
  background: var(--c-bg);
  color: var(--c-text); }

/* line 1268, style.scss */
.jobContainer {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 32px); }

/* line 1273, style.scss */
.jobHeader {
  margin-bottom: clamp(20px, 4vw, 40px); }

/* line 1276, style.scss */
.jobTitle {
  margin: 0 0 .5rem;
  font-size: clamp(22px, 3.6vw, 32px);
  line-height: 1.25;
  font-weight: 800; }

/* line 1283, style.scss */
.jobLead {
  margin: 0;
  color: var(--c-muted);
  font-size: clamp(14px, 2.2vw, 16px); }

/* Grid: SP 1col → PC 2col */
/* line 1290, style.scss */
.jobGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 32px); }

@media (min-width: 960px) {
  /* line 1296, style.scss */
  .jobGrid {
    grid-template-columns: 1.6fr .9fr;
    align-items: start; } }
/* ====== Definition List ====== */
/* line 1303, style.scss */
.jobDL {
  margin: 0 0 clamp(20px, 5vw, 40px);
  padding: 0; }

/* line 1307, style.scss */
.jobDL dt {
  margin: 0 0 .4rem;
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.35; }

/* line 1313, style.scss */
.jobDL dd {
  margin: 0 0 1.2rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  line-height: 1.85;
  text-align: left; }

/* line 1323, style.scss */
.jobDL dd:last-of-type {
  margin-bottom: 0; }

/* Lists inside dd */
/* line 1326, style.scss */
.jobList, .jobLocations {
  margin: .25rem 0 0;
  padding-left: 1.1rem; }

/* line 1330, style.scss */
.jobList li,
.jobLocations li {
  margin: .25rem 0; }

/* ====== Aside Cards ====== */
/* line 1336, style.scss */
.jobAside {
  position: relative; }

/* line 1337, style.scss */
.jobCard {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  background: var(--c-card);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.2rem; }

/* line 1344, style.scss */
.jobCard + .jobCard {
  margin-top: clamp(16px, 3vw, 24px); }

/* line 1345, style.scss */
.jobCardTitle {
  margin: 0 0 .6rem;
  font-size: clamp(16px, 2.4vw, 18px);
  font-weight: 800; }

/* line 1350, style.scss */
.jobSteps {
  margin: .25rem 0 0;
  padding-left: 1.2rem; }

/* line 1354, style.scss */
.jobSteps li {
  margin: .2rem 0 .35rem;
  line-height: 1.7;
  text-align: left; }

/* line 1355, style.scss */
.jobNote {
  color: var(--c-muted);
  font-size: .92rem;
  margin: .4rem 0 0; }

/* line 1356, style.scss */
.jobContact a {
  color: inherit;
  text-decoration: underline; }

/* Sticky Aside on Desktop (任意) */
@media (min-width: 960px) {
  /* line 1360, style.scss */
  .jobAside {
    position: sticky;
    top: 24px; } }
/* ====== Utilities ====== */
/* line 1364, style.scss */
small {
  color: var(--c-muted); }

/* クリックしたくなるリッチCTA */
/* line 1367, style.scss */
.ctaDoda {
  --from:#49b3ff;
  /* グラデ開始色 */
  --to:#1c6bff;
  /* グラデ終了色 */
  --shadow:0 10px 24px rgba(28,107,255,.35), 0 2px 6px rgba(0,0,0,.15);
  --shadow-sm:0 6px 16px rgba(28,107,255,.25), 0 1px 4px rgba(0,0,0,.12);
  --ring:rgba(28,107,255,.35);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  background-image: linear-gradient(90deg, var(--from), var(--to));
  background-size: 200% 100%;
  /* ホバーで流れる */
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transform: translateY(0);
  transition: transform 0.18s cubic-bezier(0.2, 0.7, 0.3, 1), box-shadow 0.18s cubic-bezier(0.2, 0.7, 0.3, 1), background-position 0.6s ease;
  overflow: hidden;
  /* リップルを切り抜く */ }

/* 斜めの光沢がスーッと走る */
/* line 1399, style.scss */
.ctaDoda::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(120deg, transparent 10%, rgba(255, 255, 255, 0.35) 45%, transparent 60%);
  transform: translateX(-120%) rotate(10deg);
  transition: transform .8s ease-in-out;
  pointer-events: none; }

/* 矢印を右にスライド（見た目） */
/* line 1409, style.scss */
.ctaDoda::after {
  content: "↗";
  font-size: 1.05em;
  translate: 0 0;
  transition: translate .18s ease;
  opacity: .9; }

/* hover/focus のマイクロインタラクション */
/* line 1418, style.scss */
.ctaDoda:hover,
.ctaDoda:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  background-position: 100% 0;
  /* グラデを流す */ }

/* line 1424, style.scss */
.ctaDoda:hover::before,
.ctaDoda:focus-visible::before {
  transform: translateX(120%) rotate(10deg); }

/* line 1428, style.scss */
.ctaDoda:hover::after,
.ctaDoda:focus-visible::after {
  translate: 2px -2px; }

/* activeで押し込み感 */
/* line 1434, style.scss */
.ctaDoda:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm); }

/* フォーカスリング（アクセシビリティ） */
/* line 1440, style.scss */
.ctaDoda:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--ring), var(--shadow); }

/* クリック時のリップル */
/* line 1449, style.scss */
.ctaDoda .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: cta-ripple .6s ease-out forwards;
  pointer-events: none; }

@keyframes cta-ripple {
  to {
    transform: scale(6);
    opacity: 0; } }
/* 低モーション環境に配慮 */
@media (prefers-reduced-motion: reduce) {
  /* line 1463, style.scss */
  .ctaDoda,
  .ctaDoda::before,
  .ctaDoda::after {
    transition: none;
    animation: none; } }
/* line 1468, style.scss */
.band-title {
  position: relative;
  z-index: 1;
  padding: 0.6em 1.4em;
  font-size: clamp(1.4rem, 2vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: clamp(1rem, 10vw, 2rem); }

/* 左から伸びる帯 */
/* line 1480, style.scss */
.band-title::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  bottom: 0;
  /* 右だけ10vwあける */
  right: 5vw;
  background: #8c7a6f;
  /* 帯の色（自由に変更） */
  border-radius: 0 20px 20px 0;
  /* 右側だけ少し丸める */ }

/* 共通の初期状態 */
/* line 1496, style.scss */
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform; }

/* 左から */
/* line 1506, style.scss */
.fade-in-left {
  transform: translateX(-40px); }

/* 右から */
/* line 1511, style.scss */
.fade-in-right {
  transform: translateX(40px); }

/* 表示状態（共通） */
/* line 1516, style.scss */
.fade-in-left.is-visible,
.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0); }

/* 初期状態：非表示（フォールバックフォントだけで見せたいならこれ） */
/* line 1523, style.scss */
#font-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease; }

/* フォント読み込み中だけ表示 */
/* line 1538, style.scss */
html.wf-loading #font-loader {
  opacity: 1;
  pointer-events: auto; }

/* 読み込み成功でも失敗でも消える */
/* line 1544, style.scss */
html.wf-active #font-loader,
html.wf-inactive #font-loader {
  opacity: 0;
  pointer-events: none; }

/* line 1549, style.scss */
.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: 0;
  margin: 0;
  list-style: none;
  margin: auto 10vw; }

@media (max-width: 900px) {
  /* line 1560, style.scss */
  .blog-list {
    grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  /* line 1566, style.scss */
  .blog-list {
    grid-template-columns: 1fr; }

  /* line 1569, style.scss */
  .voiceArea {
    margin-bottom: 0; } }
/* line 1574, style.scss */
.blog-item a {
  display: block;
  color: inherit;
  text-decoration: none; }

/* ✅ 正方形マスク部分 */
/* line 1581, style.scss */
.blog-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #eee;
  border-radius: 20px 0 20px 0; }

/* line 1590, style.scss */
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease; }

/* line 1597, style.scss */
.blog-item a:hover .blog-thumb img {
  transform: scale(1.08); }

/* ✅ テキスト部分 */
/* line 1602, style.scss */
.blog-body {
  padding: 12px 0; }

/* line 1606, style.scss */
.blog-body time {
  font-size: 12px;
  color: #777;
  display: block;
  margin-bottom: 4px; }

/* line 1613, style.scss */
.blog-body h3 {
  font-size: 16px;
  line-height: 1.4;
  margin: 0 0 6px; }

/* line 1619, style.scss */
.blog-body p {
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  margin: 0; }

/* フッター */
/* line 1627, style.scss */
footer {
  background-color: #fff;
  color: #a3948b;
  text-align: center;
  padding: 10px 0; }

/*# sourceMappingURL=style.css.map */
