/* CSSのリセット（消さないでください） */
html, body,
ul, ol, li,
h1, h2, h3, h4, h5, h6, p, div {
  margin: 0;
  padding: 0;
}

a{text-decoration: none;}
img{vertical-align: middle; border: 0;}
ul,ol{-webkit-padding-start: 0px; margin: 0;}
.clearfix:after {content: ""; clear: both; display: block;}

/*文字*/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
.noto100 {font-weight:100;}
.noto200 {font-weight:200;}
.noto300 {font-weight:300;}
.noto400 {font-weight:400;}
.noto500 {font-weight:500;}
.noto600 {font-weight:600;}
.noto700 {font-weight:700;}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

[id] {
  scroll-margin-top: 50px;
}



html{
  scroll-behavior:smooth;
}

/* 共通ボタン */
.back-to-top{
  width:60px;
  height:60px;

  background:#ff8e62;
  color:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:18px;
  text-decoration:none;
  text-align:center;
  box-shadow:0 6px 15px rgba(0,0,0,0.2);
}

/* PC：右下追従 */
@media (min-width:769px){

  .back-to-top{
    position:fixed;
    right:30px;
    bottom:30px;
    z-index:999;
  }

}

/* スマホ：フッター内 */
@media (max-width:768px){

  .back-to-top{
    position:static;
    margin:40px auto 0;
  }

}



   header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      height: var(--header-height);
      background: #ffffff;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      padding: 0 0 0 40px;
      transition: box-shadow 0.3s ease, background 0.3s ease;
    }

    header.scrolled {
      box-shadow: var(--shadow-scroll);
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    /* ロゴ */
    .logo {
      flex-shrink: 0;
      display: flex;
      align-items: center;
    }

    .logo img {
      width: 250px;
      height: auto;
      display: block;
    }

    /* スペーサー */
    .spacer {
      flex: 1;
    }

    /* ナビ */
    nav {
      display: flex;
      gap: 20px;
    }

    nav a {
      display: flex;
      align-items: center;
    
      padding: 0 18px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-mid);
      letter-spacing: 0.04em;
      border-radius: 6px;
      position: relative;
      transition: color 0.2s ease, background 0.2s ease;
      white-space: nowrap;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 18px;
      right: 18px;
      height: 2px;
      background: var(--orange);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s ease;
      border-radius: 1px;
    }

    nav a:not(.entry):hover {
      color: var(--text-dark);
      background: rgba(0,0,0,0.04);
    }

    nav a:not(.entry):hover::after {
      transform: scaleX(1);
    }

    /* エントリーボタン */
    nav a.entry {
      background: none;
      height: var(--header-height);
      padding: 0;
      margin-left: 12px;
      border-radius: 0;
      display: flex;
      align-items: stretch;
      justify-content: center;
      overflow: hidden;
      transition: opacity 0.2s ease;
    }

    nav a.entry img {
      height: 75px;
      width: auto;
      display: block;
      object-fit: cover;
    }

    nav a.entry::after {
      display: none;
    }

    nav a.entry:hover {
      opacity: 0.88;
    }

    nav a.entry:active {
      opacity: 0.75;
    }

    
    @media screen and (max-width: 768px) {
  .logo img{
    width: 180px;
  }
  .menu{
    display:none;
  }

  .logo{
    margin-left: 20px;
  }

  header{
    padding:0 0 0 10px;
  }
nav a.entry img{
  height:55px;
}

nav a{
  height:30px;
  padding:0 0 ;
}

  }





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

    .hero img {
      width: 100%;
      height: auto;
      display: block;
      margin-top:60px;
    }
    

    .about{
  
  padding:80px 20px;
}

.about-inner{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:60px;
}

/* 左テキスト */

.about-text{
  flex:1;
}

.about-text h2{
  font-size:30px;
  line-height:1.6;
  margin-bottom:30px;
  font-weight:700;
}

.about-text p{
  font-size:16px;
  line-height:2;
}

/* オレンジ下線 */

.line{
  text-decoration: underline;
  text-decoration-thickness: 6px; 
  text-underline-offset: -2px; 
  text-decoration-color: #ff4a00;
}



/* 右画像 */



.about-image{
  flex:1;
}

.about-image img{
  width:100%;
  display:block;
}

@media screen and (max-width: 768px) {
 .about{
  padding:0 0;
 }

    .hero{
      margin-top:30px;
    }

    .about-inner{
  flex-direction:column;
}

.about-text{
  order:1;
  padding:20px 20px 0 20px;
}

.about-image{
  order:2;
}

.about-text h2{
  font-size:22px;
}


    .hero{
      display:none;
    }

    .hero-sp img {
      width: 100%;
      height: auto;
      display: block;
      margin-top:-40px;
    }
  }
  
@media screen and (min-width: 769px) {
  .hero-sp{
    display:none;
  }
}


.section2{
  height:350px;
  background-color:#ff7f50;
}

.section2-title{
  width:100%;
  height:110px;
  padding-top:50px;
  text-align:center;
  color:#ffffff;
  letter-spacing:0.1em;
}


/* 高さ500pxの親セクション */
.circle-section {
  height: 350px;
  display: flex;
  align-items: center;     /* 縦中央 */
  justify-content: center; /* 横中央 */
  width:100%;
}

/* 6個横並び */
.circle-button-wrap {
  display: flex;
  gap: 32px;
  justify-content: center; 
  width:100%;
}

/* 円ボタン（1.5倍） */
.circle-button {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* 画像 */
.circle-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 黒オーバーレイ */
.circle-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* 白文字 */
.circle-button span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

/* hover演出 */
.circle-button:hover {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.6);
  transform: translateY(-6px);
}

.circle-button:hover::after {
  opacity: 1;
}

.circle-button:hover span {
  opacity: 1;
}

.circle-text{
  text-align:center;
  padding-top:10px;
  color:#ffffff;
}


@media screen and (max-width: 767px) {


  .circle-section {
    height: auto;
    padding: 60px 0;
  }

  .circle-button-wrap {
    gap: 20px;
    flex-wrap: wrap;
  }

  .circle-button {
    width: 140px;
    height: 140px;
  }

  .circle-button span {
    font-size: 16px;
  }
.section2{
  height:700px;
}

}



/* セクション全体 */

.work-style-title{
  width:100%;
  height:150px;
  text-align:center;
  padding-top:80px;
}


.work-style-title p{
  font-size:28px;
  letter-spacing: 0.1em;
  font-weight:bold;
  line-height:1.4;
}


.work-style {
  padding: 50px 0;
  background: #fff;
}

/* 横並び */
.work-style-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* 左テキスト */
.work-text {
  width: 50%;
}

/* オレンジ小見出し */
.work-text .label {
  font-size: 16px;
  font-weight: 700;
  color: #ff5a1f;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

/* メインコピー */
.work-text h2 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  margin: 0 0 32px;
  letter-spacing: 0.1em;
}

/* 本文 */
.work-text .description {
  font-size: 12px;
  line-height: 2.2;
  margin: 0;
  max-width: 520px;
}

/* 右画像 */
.work-image {
  width: 50%;
}

.work-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

@media (max-width: 768px) {

  .work-style-inner {
    flex-direction: column-reverse; /* ← 画像を上に */
    gap: 40px;
  }

  .work-text,
  .work-image {
    width: 100%;
  }

 

  .work-text h2 {
    font-size: 22px;
    line-height: 1.7;
  }

  .work-text .description {
    font-size: 14px;
    line-height: 2;
    max-width: 100%;
  }

  .work-style-title{
    height:120px;
    padding-top:50px;
  }

  .work-style-title p{
    text-align:left;
    padding:0 10px;
    font-size:22px;
  }
}


@media screen and (max-width: 480px) {
  .work-style {
    padding:20px 0;
  }

  .work-text .label {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .work-text h2 {
    font-size: 20px;
    margin-bottom: 24px;
  }

  .work-text .description {
    font-size: 14px;
    line-height: 2;
  }

  .work-style-inner {
    padding: 0 16px;
  }
}



/* セクション全体 */
.career {
  padding: 80px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

/* 横並び */
.career-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

/* 左画像 */
.career-image {
  width: 55%;
}

.career-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* 右テキスト */
.career-text {
  width: 45%;
}

/* オレンジ小見出し */
.career-text .label {
  font-size: 16px;
  font-weight: 700;
  color: #ff5a1f;
  margin-bottom: 24px;
  text-align:right;
}

/* キャッチコピー */
.career-text h2 {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
  margin: 0 0 32px;
  text-align:right;
}

/* 説明文 */
.career-text .description {
  font-size: 12px;
  line-height: 2.2;
  margin: 0;
}


@media (max-width: 768px) {

  .career-inner {
    flex-direction: column;   /* 縦並び */
    gap: 40px;
  }

  .career-image,
  .career-text {
    width: 100%;
  }

  .career-image img {
    border-radius: 4;         /* モバイルではフラットに */
  }

  .career-text .label {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .career-text h2 {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .career-text .description {
    font-size: 14px;
    line-height: 2;
  }

  .career {
    padding: 20px 0;
  }
}



/* セクション全体 */
.business {
  background: #fbf4ef;
  padding: 65px 0;
}

/* 上部見出し */
.business-header {
  text-align: center;
  margin-bottom: 64px;
}

.business-header .label {
  color: #ff5a1f;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

.business-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

/* カード */
.business-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* オレンジタグ */
.business-card .tag {
  display: inline-block;
  background: #ff8a50;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

/* カード内タイトル */
.business-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 32px;
  letter-spacing: 0.1em
}

/* カード下部 */
.business-content {
  display: flex;
  gap: 40px;
}



.image-left {
  width: 45%;
}


.content-right {
  width: 55%;
}


@media screen and (max-width: 768px) {

  .business {
    padding: 50px 20px 80px 20px;
  }

  .business-header {
    margin-bottom: 50px;
  }

  .business-header h2 {
    font-size: 22px;
    line-height: 1.5;
  }

  .business-card {
    padding: 28px 20px;
    border-radius: 12px;
  }

  .business-card h3 {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom:0px;
  }

  .business-content {
    flex-direction: column;
    gap: 24px;
  }

  .image-left{
    width:100%;

  }



  .content-right {
    width: 100%;
  }

  .image-left img,
  .content-right img {
    width: 100%;
  }


  .content-right p {
    font-size: 13px;
    line-height: 1.8;
  }

  .content-right img {
    margin-top: 16px;
  }

}

@media (max-width: 768px) {

  .business-content {
    display: flex;
    flex-direction: column;
  }

  /* 右側を分解 */
  .content-right {
    display: flex;
    flex-direction: column;
  }

  /* 右下画像を一番上へ */
  .content-right img {
    order: -1;
    
  }

  /* 左画像を一番下へ */
  .image-left {
    order: 3;
    margin-top: -30px;
  }

}


.image-left img {
  width: 100%;
  display: block;
  border-radius: 8px;
  
}



.content-right p {
  font-size: 12px;
  line-height: 1.9;
  margin: 15px 0 15px 0;
}

.content-right img {
  width: 100%;
  border-radius: 8px;
}



.entry-cta {
  background: #ff8f63;
  padding: 48px 0;
}

.entry-inner {
  max-width: 1000px; /* ← 1200px → 1000px */
  margin: 0 auto;
  padding: 0 24px;   /* ← 左右の余白も少し詰める */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;         /* ← 要素同士も少し近づける */
}

/* 左テキスト */
.entry-text {
  color: #fff;
  max-width: 520px;
}

.entry-lead {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  letter-spacing: 0.1em;
}

.entry-text h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.1em;
}

/* ボタン */
.entry-button {
  background: #fff;
  color: #ff5a1f;
  text-decoration: none;
  font-weight: 700;
  padding: 18px 72px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.entry-button .arrow {
  width: 28px;
  height: 28px;
  background: #ff5a1f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.entry-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
}

/* =====================
   タブレット以下
===================== */
@media (max-width: 1024px) {
  .entry-inner {
    padding: 0 24px;
  }

  .entry-text h2 {
    font-size: 22px;
  }
}

/* =====================
   スマホ
===================== */
@media (max-width: 768px) {
  .entry-inner {
    flex-direction: column;
    text-align: center;
  }

  .entry-text h2 {
    font-size: 20px;
  }

  .entry-button {
    margin-top: 24px;
  }

  .content-right p{
    margin: 20px 0 20px 0;
  }
}

/* =====================
   小さめスマホ
===================== */
@media (max-width: 480px) {
  .entry-cta {
    padding: 40px 0;
  }

  .entry-text h2 {
    font-size: 16px;
  }

  .entry-button {
    padding: 16px 24px;
  }
}


.numbers-heading {
  width: 100%;
  background: #ffffff;
  padding: 65px 16px 100px; /* 上下余白をしっかり */
  text-align: center;
}

.numbers-sub {
  color: #ff6a2b;            /* オレンジ */
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.numbers-title {
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0;
}


@media (max-width: 768px) {
  .numbers-heading {
    padding: 50px 16px 50px 16px; 
  }

  .numbers-title {
    font-size: 22px;
  }

  .numbers-section{
    display:none;
  }

  .company-data {
  background: #efefef;
  padding: 12px;
}

/* 画像ボックス */
.box {
  background: #ffffff;
  padding: 10px;
}

.box img {
  width: 100%;
  height: auto;
  display: block;
}

/* 2カラム */
.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.full {
  margin-bottom: 12px;
}
}

@media (min-width: 769px){
  .company-data{
    display:none;
  }
}


/* セクション全体 */
.numbers-section {
  width: 100%;
  background: #ffffff;
  padding: 0px 16px 65px;
}

/* グリッド */
.numbers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* カード */
.numbers-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ダミー画像 */
.numbers-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ===== レスポンシブ ===== */

/* タブレット */
@media (max-width: 1024px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* スマホ */
@media (max-width: 600px) {
  .numbers-grid {
    grid-template-columns: repeat(2, 1fr); 
    gap: 5px;
  }

  .numbers-section {
    padding: 50px 16px 80px;
  }
}


.lifestyle-section {
  width: 100%;
  background: #fff5ef; /* 薄いピンクベージュ */
  padding: 65px 16px;
  text-align: center;
}

/* 上の小見出し */
.lifestyle-sub {
  color: #ff6a2b;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

/* メインテキスト */
.lifestyle-title {
  color: #000;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0;
}

/* 強調オレンジ */
.lifestyle-title .highlight {
  color: #ff6a2b;
  font-weight: 800;
}


.staff-slider-section {
  background: #fff5ef;
  padding: 0px 0 70px 0;
  overflow: hidden;
}

/* 横スライド */
.staff-slider {
  display: flex;
  gap: 20px;
  padding-left: 80px;
  padding-right: 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* スクロールバー調整 */
.staff-slider::-webkit-scrollbar {
  height: 6px;
}
.staff-slider::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 3px;
}

/* カード */
.staff-card {
  flex: 0 0 420px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  scroll-snap-align: center;
}

/* ヘッダー */
.staff-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.staff-head h3 {
  font-size: 18px;
  font-weight: 700;
}

.staff-head span {
  font-size: 12px;
  color: #666;
}

/* 画像 */
.staff-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  height:200px;
}

/* Q&A */
.staff-body .q {
  color: #ff6a2b;
  font-weight: 700;
  margin-top: 16px;
  margin-bottom: 4px;
}

.staff-body .a {
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .staff-card {
    flex: 0 0 360px;
  }
}

@media (max-width: 768px) {
  .staff-slider {
    padding-left: 5px;
    padding-right: 20px;
    gap: 10px;
  }

  .staff-card {
    flex: 0 0 99%;
  }

  .staff-card img{
    width:100%;
  height:auto;
  display:block;
  }

  .lifestyle-title{
    text-align:left;
    font-size:22px;
  }

  .lifestyle-section{
    padding:50px 16px;
  }
}



/* FAQコンテナの幅と中央寄せ */
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

/* 各FAQアイテム（区切り線） */
.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 40px 0;
}

/* 質問(Q)と回答(A)の共通レイアウト */
.faq-q {
  display: flex;
  align-items: flex-start; /* 複数行になった場合でもアイコンが上にくるように */
}

/* 質問(Q)の下余白 */
.faq-q {
  margin-bottom: 24px;
}


.faq-a{
  display: none; /* ← ここで最初は隠します */
  align-items: flex-start;
  padding: 0 0 20px 0;
}

/* アイコンの共通スタイル */
.icon-q,
.icon-a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  font-family: "Arial", sans-serif;
  flex-shrink: 0; /* アイコンが潰れないようにする */
  margin-right: 24px;
}

/* Qアイコンのスタイル（赤背景、白文字） */
.icon-q {
  background-color: #ff3b30;
  color: #ffffff;
}

/* Aアイコンのスタイル（白背景、赤枠、赤文字） */
.icon-a {
  background-color: #ffffff;
  border: 2px solid #ff3b30;
  color: #ff3b30;
}

/* テキストのスタイル */
.question-text {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px; /* アイコンの中央とテキストのベースラインを視覚的に合わせる微調整 */
}

.answer-text {
  font-size: 15px;
  margin-top: 10px; /* アイコンの中央とテキストのベースラインを視覚的に合わせる微調整 */
}


/* =========================================
   レスポンシブ対応（スマートフォン向け）
   画面幅が768px以下の場合に適用されます
   ========================================= */
@media screen and (max-width: 768px) {
  body {
    padding: 24px 0px 0px 0px; /* 画面端の余白を少し狭める */
  }

  .faq-item {
    padding: 24px 0; /* 項目の上下の余白を狭める */
  }

  .faq-q {
    margin-bottom: 16px; /* QとAの間の余白を狭める */
    margin-left:10px;
  }

  .faq-a{
    margin-left:10px;
  }

  .icon-q,
  .icon-a {
    width: 36px; /* アイコンを少し小さく */
    height: 36px;
    font-size: 16px; /* アイコン内の文字を小さく */
    margin-right: 16px; /* アイコンとテキストの隙間を狭める */
  }

  .question-text {
    font-size: 15px; /* スマホ向けに文字サイズを調整 */
    margin-top: 6px; /* アイコン縮小に合わせた位置調整 */
  }

  .answer-text {
    font-size: 14px; /* スマホ向けに文字サイズを調整 */
    margin-top: 6px; /* アイコン縮小に合わせた位置調整 */
  }

}

/* セクション全体の背景と余白 */
.banner-section {
  background-color: #fff5f2; /* 画像に基づいた淡いピンクベージュ */
  padding: 65px 20px;       /* 上下の余白 */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 1000px;
  width: 100%;
}

/* メインキャッチコピー */
.main-copy {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  line-height: 1.4;
}

/* オレンジ色の強調部分 */
.highlight-orange {
  color: #ff502f; /* 鮮やかなオレンジレッド */
}

/* サブテキスト（説明文） */
.sub-copy {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.sub-copy p {
  margin-bottom: 4px;
}

/* =========================================
   レスポンシブ対応（スマホ向け）
   ========================================= */
@media screen and (max-width: 768px) {
  .banner-section {
    padding: 30px 15px 30px 15px; /* スマホでは上下の余白を少し詰める */
  }

  .main-copy {
    font-size: 22px;   /* 文字サイズをスマホに合わせて縮小 */
    margin-bottom: 24px;
    /* 「見つかる。」と「多職種」の間で改行されやすくする */
    display: block;
  }

  .sub-copy {
    font-size: 13px;   /* 説明文も少し小さく */
    text-align: left;  /* スマホでは左寄せの方が読みやすい場合が多いですが、中央のままなら center へ */
    display: inline-block;
    max-width: 100%;
  }
}




/* --- ヒーローセクション --- */
.hero-section {
  background-color: #fff5f2;
  padding: 80px 20px;
  text-align: center;
}

.main-copy {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.sub-copy {
  font-size: 14px;
  display: inline-block;
  text-align: center;
}

/* --- 募集要項セクション --- */
.jobs-section {
  padding: 0px 20px 40px 20px;
  background-color: #fff5f2;
}

.jobs-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius:16px;
}

/* タブボタン */
.tab-menu {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.tab-btn {
  flex: 1;
  padding: 15px 5px;
  border: none;
  border-radius: 8px;
  background-color: #ff8f63; /* 非アクティブ時の薄いオレンジ/ベージュ */
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}

.tab-btn span {
  font-size: 10px;
  font-weight: normal;
}

.tab-btn.active {
  background-color: #ff502f; /* アクティブ時のオレンジ */
}

/* コンテンツエリア */
.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.job-table {
  width: 100%;
  border-collapse: collapse;
}

.job-table th, .job-table td {
  padding: 25px 20px;
  border-bottom: 1px solid #eee;
  text-align: left;
  vertical-align: top;
}

.job-table th {
  width: 180px;
  font-weight: bold;
  font-size: 15px;
}

.job-table td {
  font-size: 13px;
  line-height: 1.5;
}

.note {
  font-size: 12px;
  color: #1a1a1a;
  display: block;
  margin-top: 5px;
}

.dummy-msg {
  padding: 50px;
  text-align: center;
  background: #fafafa;
}

/* ボタンエリア */
.back-to-joblist {
  text-align: center;
  margin-top: 30px ;
}

/* ボタン本体 */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 14px 28px;
  border-radius: 50px;

  background: #ff5a00;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;

  transition: all .3s ease;
}

/* ホバー */
.back-btn:hover {
  background: #e14f00;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

/* 矢印 */
.arrow {
  font-size: 16px;
  transition: transform .3s ease;
}

.back-btn:hover .arrow {
  transform: translateY(-3px);
}


/* --- レスポンシブ --- */
@media screen and (max-width: 768px) {
  .main-copy { font-size: 22px; }
  
  .tab-menu {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    flex: none;
    width: calc(50% - 5px); /* スマホでは2列にする */
    margin-bottom: 5px;
    height:55px;
  }

  .job-table th, .job-table td {
    display: block;
    width: 100%;
    padding: 15px 10px;
  }

  .job-table th {
    padding-bottom: 0;
    border-bottom: none;
  }
}


.flow-section {
  padding: 0px 20px 50px 20px;
  background: #fff5ef; /* 薄いピンクベージュ */
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* 白いベースカード */
.flow-card {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 16px;
}

.flow-title {
  text-align: center;
  font-size: 26px;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}

/* 横並び設定 */
.flow-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.flow-item {
  flex: 1;
  position: relative;
}

/* オレンジの数字丸 */
.step-num {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #ff502f;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 20px;
  margin: 0 auto -20px; /* ボックスの上に半分出す */
  position: relative;
  z-index: 2;
}

/* オレンジの枠線ボックス */
.step-box {
  border: 1.5px solid #ff502f;
  background: #fff;
  padding: 30px 10px 15px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  line-height: 1.5;
}

/* ダミー画像（枠内に収まるように設定） */
.dummy-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 矢印（＞） */
.flow-arrow {
  width: 12px;
  height: 12px;
  border-top: 2px solid #ff502f;
  border-right: 2px solid #ff502f;
  transform: rotate(45deg);
  margin: 20px 10px 0;
  flex-shrink: 0;
}

/* 下部のキャッチフレーズ */
.flow-footer-text {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.flow-font{
  font-size:12px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .flow-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  
  .flow-item {
    width: 100%;
    max-width: 280px;
  }

  .flow-arrow {
    transform: rotate(135deg); /* 下向き矢印に */
    margin: 10px 0;
  }

  .flow-footer-text {
    font-size: 15px;
    padding: 0 10px;
  }
}

.page-background {
  background-color: #ff8e62; /* 指定された両サイドの背景色 */
  min-height: 100vh;
  padding: 0 0; /* 上下の余白 */
  width: 100%;
  display: flex;
  justify-content: center;
}



.form-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ff8e62;
}

/* メイン見出し */
.form-main-title {
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 64px;
  padding-top:64px;
}

/* 白いコンテナ */
.form-container {
  background-color: #fff;
  padding: 60px 180px;
  border-radius: 15px;
  margin-bottom:50px;
}

.form-group {
  margin-bottom: 25px;

}

/* 項目ラベル */
.label-title {
  display: block;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 12px;
  color: #333;
}

/* 必須バッジ */
.badge-required {
  background-color: #59bd91; /* 画像の緑色 */
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

/* テキスト入力フィールド */
.input-text {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
}

.input-text::placeholder {
  color: #ccc;
}

/* ラジオ・チェックボタンのグループ */
.choice-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.custom-choice {
  display: flex;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.custom-choice input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  accent-color: #ff8e62;
}

/* 同意エリア */
.form-footer {
  text-align: center;
  margin: 50px 0 30px;
}

.footer-note {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 15px;
}

.agree-label {
  font-size: 14px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

/* 送信ボタン */
.btn-area {
  text-align: center;
}

.submit-btn {
  background-color: #ff502f; /* オレンジレッド */
  color: #fff;
  border: none;
  padding: 14px 60px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 40px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.submit-btn:hover {
  opacity: 0.8;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .form-container {
    padding: 40px 20px;
  }

  .form-main-title{
    font-size:22px;
    padding:30px 16px;
    margin-bottom:0px;
  }
  
  .page-background {
    padding:0 0 30px 0;
  }
}


/* フッター全体のスタイル */
.site-footer {
  background-color: #fff5f2; /* 画像の淡い背景色 */
  padding: 30px 0 30px;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  color: #1a1a1a;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* 上部のレイアウト構成 */
.footer-main-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px; /* コピーライトとの間隔 */
}

/* 左側：ロゴと住所 */
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.footer-logo img{
  width:300px;
}

.logo-text {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.footer-info {
  font-size: 14px;
  line-height: 1.8;
}

.footer-info a {
  text-decoration: none;
  color: inherit;
}

.contact .spacer {
  display: inline-block;
  width: 25px;
}

/* 右側：ナビゲーションリンク */
.footer-right {
  text-align: right;
}

.footer-nav {
  display: flex;
  flex-direction: column;
 
}

.footer-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: bold;
  font-size: 16px;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.6;
}

.nav-header {
  font-size: 16px;
  
}

/* 下部：コピーライト */
.footer-bottom {
  border-top: none;
}

.copyright {
  font-size: 13px;
  color: #1a1a1a;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 768px) {
  .footer-main-flex {
    flex-direction: column;
    gap: 50px;
  }
  
  .footer-right {
    text-align: left;
  }
  
  .footer-container {
    padding: 0 20px;
  }
}
