@charset "UTF-8";
:root{
	--navy-color:#2b48ae;
	--gray-color:#ebeef2;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ================= HERO ================= */
.hero{
  position: relative;
  height: 65vh;
  overflow: hidden;
}

/* 背景 */
.hero-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateY(15px) scale(1.05);
  transition: opacity 1s ease, transform 3s ease;
  z-index: 0;
}

.hero-bg.is-active{
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* 中央配置 */
.hero-overlay{
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PC：横に広がる薄い白 ===== */
.hero-panel{
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 300px;
  height: 220px;
  background: rgba(255,255,255,0.7);
  z-index: 1;
}

/* ===== 中身 ===== */
.hero-content{
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: auto auto; /* 左右2カラム */
  column-gap: 48px;
  align-items: center;
}

/* 左側テキスト */
.hero-text-area{
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.hero-text{
  font-size: 20px;
  font-weight: 500;
}

.hero-en{
  font-size: 12px;
  margin-top: 8px;
}

/* 右側ロゴ */
.logo-area{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-area img{
  width: 80px;
  display: block;
}

.logo-text{
　color: var(--navy-color);
  font-weight: bold;
  margin-top: 10px;
}

.logo-text span{
  font-size: 12px;
}

/* ================= スマホ ================= */
@media screen and (max-width: 768px){

  .hero-panel{
    display: none;
  }

  .hero-content{
    width: 100vw;
    max-width: 400px;
    background: rgba(255,255,255,0.75);
    padding: 100px;
    display: flex;
    flex-direction: column; /* 1カラムに縦並び */
    align-items: center;
    text-align: center;
    row-gap: 16px; /* flexの場合は margin-top で調整してもOK */
  }

  /* 左側テキストをまとめた箱も中央揃え */
  .hero-text-area{
    order: 1; /* ロゴの下に来るように */
    width: 100%;
    text-align: center;
    margin-top: 12px;
  }

  .hero-text{
    font-size: 14px;
    white-space: normal;
  }

  .hero-en{
    font-size: 11px;
    margin-top: 6px;
  }

  /* ロゴを上に */
  .logo-area{
    order: 0; /* flexの最初に配置 */
  }
}

/* ================= NAV ================= */
.nav ul{
  display: flex;
  list-style: none;
}

.nav li{
  flex: 1;
  text-align: center;
  position: relative;
}

.nav a{
  display: block;
  padding: 18px 0;
  color: #fff;
  text-decoration: none;
  background:var(--navy-color);
}

.nav li.gray a{ background: #666; }
.nav li.black a{ background: #000; }
/*.nav li.active a{ background:var(--navy-color); }*/

@media screen and (max-width: 768px){
  .nav a{
    padding: 14px 0;
    font-size: 12px;
  }
}

.nav li:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.4);
  transform: translateY(-50%);
}

/* ================= ナビゲーションメニューすぐ下のabout ================= */

.about-hero {
  background: #fff;
  padding: 120px 0;
}

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

/* 左：マップ */
.about-map {
  flex: 1;
  height: 500px;
  background: url("../images/about-map.png") no-repeat center / contain;
}

/* 右：テキスト */
.about-content {
  flex: 1;
}

.about-en {
  font-size: 48px;
  font-weight: bold;
  color:var(--navy-color);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.about-jp {
  font-size: 16px;
  color:var(--navy-color);
  margin-bottom: 32px;
}

.about-text {
  font-size: 14px;
  line-height: 2;
  color: #333;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  padding: 16px 48px;
  background:var(--navy-color);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .about-map {
    width: 100%;
    height: 300px;
  }

  .about-en {
    font-size: 32px;
	padding: 0 20px;
  }
  .about-text{
		padding: 0 20px;
	}
  .about-jp{
		padding: 0 20px;
	}
 .about-btn {
    display: block;
    margin: 0 100px;
    text-align: center;
  }
}

/* ===============================
   ABOUT HERO（背景をセクション全体に）
=============================== */

.about-hero {
  position: relative;
  padding: 120px 0;
  background:
    url("../images/about-map.png") center / cover no-repeat;
}

/* 白ベール（文字を読みやすくする用） */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.85);
}

/* 中身は前面へ */
.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ============= セクション2のSERVICES =========== */
.services {
  width: 100%;
}

/* 上の写真部分 */
.services-hero {
  height: 360px;
  background: url("../images/services-bg.jpg") no-repeat center / cover;
  position: relative;
}

.services-title {
  position: absolute;
  right: 80px;
  bottom: 40px;
  font-size: 64px;
  font-weight: bold;
  color:var(--gray-color);
  letter-spacing: 0.1em;
}

/* 赤背景 */
.services-body {
  background:var(--navy-color);
  padding: 100px 20px 80px;
  text-align: center;
}

.services-text {
  color: #fff;
  font-size: 16px;
  line-height: 2;
  margin-bottom: 80px;
}

/* アイコン一覧 */
.services-list {
  max-width: 1200px;
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  list-style: none;
  padding: 0;
}

.services-list li {
  color: #fff;
  font-size: 14px;
}

.services-list img {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
}

/* MOREボタン */
.services-btn {
  display: inline-block;
  padding: 16px 60px;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .services-title {
    font-size: 40px;
    right: 20px;
    bottom: 20px;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .services-list img {
    width: 90px;
  }

  .services-btn {
    margin: 0 auto;
  }
}
/* =============== セクション3のTOPICS =============== */
.topics {
  background: #fff;
}

/* 上の画像 */
.topics-hero {
  height: 280px;
  background: url("../images/news__ttl_bg.jpg") no-repeat center / cover;
  position: relative;
  margin-top: 150px;
}

.topics-title {
  position: absolute;
  right: 60px;
  bottom: 40px;
  font-size: 64px;
  font-weight: bold;
  color:var(--gray-color);
  letter-spacing: 0.1em;
}

/* 本体 */
.topics-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
}

.topics-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
  margin-bottom: 80px;
}

/* 記事 */
.topic-item {
  display: flex;
  gap: 20px;
}

.topic-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}
a.topic-item{
	text-decoration: none;
	color: #000;
}

.topic-date {
  display: inline-block;
  background:var(--navy-color);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  margin-bottom: 8px;
}

.topic-text h3 {
  font-size: 16px;
  margin: 8px 0;
}

.topic-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* MOREボタン */
.topics-btn {
  display: block;
  width: 240px;
  margin: 0 auto;
  padding: 16px 0;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .topics-title {
    font-size: 40px;
    right: 20px;
    bottom: 20px;
  }

  .topics-list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .topic-item {
    align-items: flex-start;
  }
}


/* ===== HERO 白帯・ロゴ位置 完全修正（PCのみ） ===== */
@media screen and (min-width: 769px) {

  /* ヒーロー全体 */
  .hero {
    position: relative;
  }

  /* 白い帯（左基準・固定幅） */
  .hero-panel {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75%;              /* ← 今見えてる白帯の長さ */
    height: 260px;           /* ← 今の高さを維持 */
    background: rgba(255,255,255,0.85);
    z-index: 1;
  }

  /* 中身を白帯と完全一致させる */
  .hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75%;
    height: 260px;
    display: flex;
    align-items: center;
    padding: 0 60px;
    box-sizing: border-box;
    z-index: 2;
  }

  /* 左テキスト */
  .hero-text-area {
    flex: 1;
    min-width: 0;
  }

  .hero-text,
  .hero-en {
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* ロゴ：白帯内で完全センター */
  .logo-area {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 40px;
    text-align: center;
    flex-shrink: 0;
  }

}

/* ================= CONTACT ================= */

.contact-block {
  background: repeating-linear-gradient(
    45deg,
    #f5f5f5,
    #f5f5f5 4px,
    #ffffff 4px,
    #ffffff 8px
  );
  padding: 80px 20px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

/* 左ボックス */
.contact-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 40px;
}

.contact-title {
  font-size: 32px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.contact-text {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 24px;
}

.contact-mail-btn {
  display: inline-block;
  background:var(--navy-color);
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-note {
  font-size: 13px;
  border-top: 1px dotted #999;
  padding-top: 16px;
}

/* 右画像 */
.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ================= SP ================= */

@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 24px;
  }
}
/* ================= SNS CONTACT ================= */

.contact-sns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 共通カード */
.sns-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.sns-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

/* アイコン文字（仮） */
.sns-icon {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

/* タイトル */
.sns-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* 説明 */
.sns-text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ボタン */
.sns-btn {
  display: inline-block;
  padding: 8px 18px;
  font-size: 13px;
  text-decoration: none;
  color: #fff;
}

/* 個別カラー */
.sns-card.line .sns-icon,
.sns-card.line .sns-btn {
  background: #06c755;
  color: #fff;
}

.sns-card.instagram .sns-icon,
.sns-card.instagram .sns-btn {
  background: linear-gradient(45deg,#f58529,#dd2a7b,#8134af);
  color: #fff;
}

.sns-card.tiktok .sns-icon,
.sns-card.tiktok .sns-btn {
  background: #000;
  color: #fff;
}

.sns-icon {
  padding: 6px 0;
}

/* Facebook */
.sns-card.facebook .sns-icon,
.sns-card.facebook .sns-btn {
  background: #1877f2;
  color: #fff;
}

/* SP */
@media (max-width: 768px) {
  .contact-sns {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   FOOTER
=============================== */

.footer {
  background: var(--navy-color);
  color: #fff;
  padding: 60px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* 左：会社情報 */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 160px;
}

.footer-logo p {
  font-weight: bold;
  letter-spacing: 0.05em;
}

.footer-block {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-label {
  display: inline-block;
  background: #fff;
  color:var(--navy-color);
  font-size: 12px;
  font-weight: bold;
  padding: 4px 10px;
  margin-bottom: 8px;
}

/* 右：ナビ */
.footer-nav {
  /*display: grid;
  grid-template-columns: 1fr 1fr;*/
  gap: 40px;
  text-align: center;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-left: 14px;
}

.footer-menu a::before {
  content: "—";
  position: absolute;
  left: 0;
}

/* hover */
.footer-menu a:hover {
  opacity: 0.7;
}

/* ===============================
   SP
=============================== */

@media screen and (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   FOOTER BOTTOM（修正版）
=============================== */

.footer-bottom {
  background:var(--navy-color); 
  padding: 20px 40px;

  border-top: 1px solid rgba(255,255,255,0.3);

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

  font-size: 13px;
  color: #fff;
}

/* コピーライト */
.footer-bottom .copyright {
  letter-spacing: 0.05em;
  margin: 0;
}

/* プライバシーポリシー */
.footer-bottom .privacy-link {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-right: 18px;
}

/* ▶ アイコン */
.footer-bottom .privacy-link::after {
  content: "▶";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 10px;
}

/* hover */
.footer-bottom .privacy-link:hover {
  opacity: 0.7;
}

/* SP */
@media screen and (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 16px 20px;
  }
}
/* ===============================
   ABOUT US 文字を右側に戻す
=============================== */

.about-inner {
  display: flex;
  justify-content: flex-end; /* ← 右寄せ */
}

.about-content {
  max-width: 520px;          /* 元の横幅感を維持 */
}


/* =====================
   Message Section　強み１.3
===================== */
.section-message {
  padding:50px 0 0 20px;
  background: #fff;
}

.section-message-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* 画像 */
.message-image {
  flex: 1;
}

.message-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* テキスト */
.message-text {
  flex: 1;
}

.message-text h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  color:var(--navy-color);
}

.message-text p {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 20px;
  font-style:normal;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .section-message-inner {
    flex-direction: column;
    gap: 40px;
  }

  .message-text h2 {
    font-size: 24px;
  }
}
/**　画像の幅フル**/
.section-message-inner {
  max-width: none;
}

.message-image {
  margin-left: calc(50% - 50vw);
}

/* =====================
   Vision Section　強み２.4
===================== */
.section-vision {
  padding: 120px 20px;
  background: #fff;
}

.section-vision-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* 左テキスト */
.vision-text {
  flex: 1;
}

.vision-label {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.vision-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 30px;
  color:var(--navy-color);
}

.vision-desc {
  font-size: 15px;
  line-height: 2;
  color: #555;
  margin-bottom: 40px;
}

/* ボタン */
.vision-btn {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid #ccc;
  color: #222;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.vision-btn:hover {
  background: #222;
  color: #fff;
}

/* 右画像 */
.vision-image {
  flex: 1.2;
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  .section-vision-inner {
    flex-direction: column;
    gap: 50px;
  }

  .vision-title {
    font-size: 26px;
  }
}
/* =====================
   SERVICES 見出し（強み）
===================== */
.services-strength-title {
  text-align: center;
  margin: 20px 0 30px; /* 上下マージンを狭める */
  padding-top:100px;
}

.services-strength-title p {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #222;
}

/*******セクション２の見出しの斜体*******/
.message-text{
  font-style: italic !important;
}
.vision-title {
  font-style: italic !important;
}
/*******セクション２の見出しの斜体ここまで*******/


/* =====================
   section-vision 右画像をフル幅にする
===================== */

.section-vision {
  overflow: hidden; /* はみ出し対策 */
}

.section-vision-inner {
  max-width: 1200px; /* テキスト側の基準幅 */
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* 右画像を画面端まで伸ばす */
.section-vision .vision-image {
  margin-right: calc(50% - 50vw);

}

/* 画像自体はフィットさせる */
.section-vision .vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {

  .section-vision {
    padding: 50px 0 0;
  }

  .section-vision .vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
  }

}

/* =======================================
   スマホ用 ナビ修正　横並びガタガタないバージョンやけど、ボタン押しづらい
========================================== */
/*@media screen and (max-width: 768px) {
  .nav a {
    font-size: 11px;
    line-height: 1.2;
    padding: 10px 0;
  }
}
*/

/* =====================
   トップへ戻るボタン
===================== */

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;

  width: 48px;
  height: 48px;
  border-radius: 50%;

  background: #1b2839; /* ネイビー */
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;

  /* 初期状態：隠す */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;

  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

/* 表示状態 */
.to-top.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* hover */
.to-top:hover {
  background: #243a5e;
}
/* =====================
   トップへ戻るボタンここまで
===================== */

/* =====================================
   ⭐️⭐️スマホ用 ハンバーガーメニュー⭐️⭐️
===================================== */
/* PCでは非表示 */
.menu-btn{
  display:none;
}

/* =====================================
   スマホ用 ハンバーガーメニュー
===================================== */
@media (max-width: 768px) {

  .menu-btn {
    display: flex;
    position: fixed;
    top: 16px;
    right: 16px;

    width: 44px;
    height: 44px;

    background: var(--navy-color);
    border: none;
    padding: 8px;
    z-index: 2001;

    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .35s ease, opacity .35s ease;
    z-index: 2000;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
  }

  .nav li {
    border-bottom: 1px solid rgba(0,0,0,.15);
    text-align: center;
  }

  .nav a,
  .nav-close {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 16px;
    color: var(--navy-color);
    background: none;
    border: none;
    text-align: center;
  }
}

/* ===============================
   スマホ表示の時：PC用ナビ背景を完全に無効化
=============================== */
@media (max-width: 768px) {

  /* 上のネイビーバーの原因 */
  .nav a {
   /* background: none !important;*/
    color: var(--navy-color);
  }

  /* 区切り線だけ残す */
  .nav li::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav li {
    background: var(--gray-color);
  }
}

/* =====================================
   ⭐️⭐️スマホ用 ハンバーガーメニューここまで⭐️⭐️
===================================== */

/* =====================
   強み2・4 スマホ時：画像を上、テキストを下
===================== */
@media (max-width: 768px) {

  /* 並びを縦に */
  .section-vision-inner {
    flex-direction: column;
    gap: 0;
  }

  /* 画像を先頭に */
  .section-vision .vision-image {
    order: 0;
    width: 100%;
    margin: 0;
  }

  .section-vision .vision-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* テキストを後ろに */
  .section-vision .vision-text {
    order: 1;
    padding: 24px 20px 0;
  }
}
/* =====================
   強み3（section-message）の開始位置ズレ修正
===================== */

/* セクション自体の左paddingを消す */
.section-message {
  padding: 50px 0 0;
}

/* テキスト側だけに余白を持たせる */
.message-text {
  padding: 0 20px;
}

/* ハンバーガーメニューの高さ調整 */
@media (max-width: 768px) {
  .nav {
    padding: 0;
    height: 430px;
  }

  .nav ul {
    margin: 0;
    padding: 0;
  }

  .nav li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

}
/* ハンバーガーメニューの高さ調整ここまで */



/* 画像に薄い白ベール */
.staff-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}







/* =========================
   SP対応
========================= */
@media (max-width: 768px) {
  .staff-hero {
    height: 240px;
  }

  .staff-hero-title {
    font-size: 36px;
  }

  .staff-hero-sub {
    font-size: 14px;
  }
}
/* =========================
        STAFF HEROここまで
========================= */


/* =========================
   　　代行サービスセクション
========================= */
.service-section{
  width: 100%;
  padding: 80px 20px;
}

.service-image{
  max-width: 1200px;
  margin: 0 auto;
}

.service-image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px; /* 不要なら削除 */
}
/* =================================
   　　代行サービスここまで
===================================== */


/* ==============================================
      他ページ共通で使えるトップイメージ  PAGE HERO（共通）
================================================== */
.page-hero {
  position: relative;
  width: 100%;
  height: 380px; /* PC */
  /*background-image: url("../images/staff-hero.jpg");*/
  background:var(--gray-color);
  background-size: cover;
  background-position: center;
}

/* 画像に薄い白ベール */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
}

.page-hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-hero-title {
  font-size: 56px;
  letter-spacing: 0.15em;
  color: #1f3fa3;
  margin-bottom: 10px;
}

.page-hero-sub {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #1f3fa3;
}

/* =========================
   SP対応
========================= */
@media (max-width: 768px) {
  .page-hero {
    height: 240px;
  }

  .page-hero-title {
    font-size: 36px;
  }

  .page-hero-sub {
    font-size: 14px;
  }
}
/* =========================
        ここまで
========================= */

/* =========================
   COMPANY PROFILE
========================= */

.company-profile {
  padding: 120px 20px;
  background: #fff;
}

.company-profile-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 上の説明文 */
.company-profile-lead {
  text-align: center;
  font-size: 15px;
  line-height: 2.2;
  color: #222;
  margin-bottom: 80px;
}

.company-profile-lead p:not(:last-child) {
  margin-bottom: 20px;
}

/* テーブル風レイアウト */
.company-profile-table {
  border: 1px solid #ddd;
}

.company-profile-table dl {
  display: grid;
 /* grid-template-columns: 220px 1fr;*/
  border-bottom: 1px solid #ddd;
  text-align: center;
}

.company-profile-table dl:last-child {
  border-bottom: none;
}

.company-profile-table dt,
.company-profile-table dd {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.8;
}

.company-profile-table dt {
  background: #f7f7f7;
  font-weight: bold;
  color: #222;
}

.company-profile-table dd {
  background: #fff;
  color: #333;
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {

  .company-profile {
    padding: 80px 20px;
  }

  .company-profile-lead {
    font-size: 14px;
    margin-bottom: 50px;
  }

  .company-profile-table dl {
    grid-template-columns: 1fr;
  }

  .company-profile-table dt {
    padding: 16px 20px;
  }

  .company-profile-table dd {
    padding: 16px 20px 24px;
  }
}

/* =========================
        ここまで
========================= */

/* ===============================
   ビジネスページ　BUSINESS MESSAGE
================================== */

.business-message {
  position: relative;
  padding: 140px 20px;
  /*background: #fff url("../images/vision.png") center / cover no-repeat;*/
  bottom: 50px;
}

/* 文字を読みやすくする薄い白ベール */
.business-message::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.9);
}

.business-message-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.business-message-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 60px;
  color: #111;
}

/* 本文 */
.business-message-text{
	margin-bottom: 20px;
}

.business-message-text p {
  font-size: 15px;
  line-height: 2.2;
  color: #333;
}

.business-message-text p:not(:last-child) {
  margin-bottom: 20px;
}

/* =========================
   SP
========================= */
@media (max-width: 768px) {

  .business-message {
    padding: 90px 20px;
  }

  .business-message-title {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .business-message-text p {
    font-size: 14px;
  }
}
/* =========================
        ここまで
========================= */

/* =========================
       トピックスリンクの動き
========================= */
#topics {
  scroll-margin-top: 80px; /* header高さ */
}
/* =========================
        ここまで
========================= */

/* ===============================
   CONTACT FORM
================================ */

.contact-form {
  padding: 80px 20px;
  background: #fff;
}

.contact-form-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* 注意書き */
.form-note {
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: #333;
}

/* テーブル */
.form-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.form-table th,
.form-table td {
  border: 1px solid #ddd;
  padding: 20px;
  vertical-align: middle;
}

.form-table th {
  width: 30%;
  background:var(--gray-color);
  font-weight: 500;
  text-align: left;
  font-size: 15px;
}

.form-table td {
  background: #fff;
}

/* 必須ラベル */
.form-table .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 6px;
  background: #c40000;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  border-radius: 2px;
}

/* input / select / textarea 共通 */
.form-table input,
.form-table select,
.form-table textarea {
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 2px;
  box-sizing: border-box;
}

.form-table textarea {
  resize: vertical;
  min-height: 160px;
}

/* セレクト初期表示 */
.form-table select {
  background: #f2f2f2;
}

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

.form-btn {
  display: inline-block;
  min-width: 260px;
  padding: 16px 20px;
  background:var(--navy-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}

.form-btn:hover {
  opacity: 0.85;
}

/* ===============================
   RESPONSIVE
================================ */

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

  .form-table,
  .form-table tbody,
  .form-table tr,
  .form-table th,
  .form-table td {
    display: block;
    width: 100%;
  }

  .form-table tr {
    margin-bottom: 20px;
  }

  .form-table th {
    border-bottom: none;
  }

  .form-table td {
    border-top: none;
  }
}
/* ===============================
   　　　　ここまで
================================ */

/* ===============================
   FLOWING IMAGES（回転寿司）
================================ */

.flow-images {
  overflow: hidden;
  background: #fff;
  padding: 40px 0 100px 0;
}

.flow-track {
  display: flex;
  width: max-content;
  animation: flow-scroll 30s linear infinite;
}

.flow-item {
  flex: 0 0 auto;
  margin-right: 40px;
}

.flow-item img {
  height: 180px; /* 好きに調整 */
  width: auto;
  display: block;
  border-radius: 3px;
}

/* アニメーション */
@keyframes flow-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* SP調整 */
@media screen and (max-width: 768px) {
  .flow-item img {
    height: 120px;
  }
}

/* ===============================
   　　　　ここまで
================================ */

/* ===============================
   　代表挨拶　GREETING MESSAGE
=============================== */

.greeting-message {
  background: #fff;
  padding: 120px 20px;
  position: relative;
}

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

.greeting-text p {
  font-size: 15px;
  line-height: 2.2;
  color: #222;
  margin-bottom: 60px;
  padding: 0 20px;
}

/* サイン */
.greeting-sign {
  text-align: right;
  font-size: 14px;
  color: #222;
}

.greeting-sign .company {
  display: block;
  margin-bottom: 8px;
}

.greeting-sign .title {
  margin-right: 8px;
}

.greeting-sign .name {
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* SP */
@media (max-width: 768px) {
  .greeting-message {
    padding: 80px 20px;
  }

  .greeting-text p {
    font-size: 14px;
  }

  .greeting-sign {
    font-size: 13px;
  }
}
/* ===============================
   　　　　ここまで
================================ */

/* ===============================
   　求人案内　RECRUITMENT MESSAGE
=============================== */

.recruitment {
  position: relative;
  padding: 140px 20px;
  background: #fff;
  overflow: hidden;
}

/* 背景（線＋点の画像を使う場合） */
.recruitment::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/message-bg.png") center / cover no-repeat;
  opacity: 0.35;
  pointer-events: none;
}

.recruitment-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.recruitment-text p {
  font-size: 15px;
  line-height: 2.2;
  color: #222;
  margin-bottom: 60px;
}


/* SP */
@media (max-width: 768px) {
  .recruitment {
    padding: 90px 20px;
  }

  .recruitment-text p {
    font-size: 14px;
  }

}
/* ===============================
   　　　　ここまで
================================ */

/* ===============================
   RECRUITMENT JOB（仮アルバイト）
=============================== */

.recruitment-job {
  margin-top: 120px;
  padding-top: 60px;
  border-top: 1px solid #ddd;
}

.recruitment-job-title {
  font-size: 28px;
  font-weight: 600;
  color:var(--navy-color);
  margin-bottom: 24px;
}

.recruitment-job-lead {
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-bottom: 40px;
}

/* 募集要項 */
.recruitment-job-table {
  border: 1px solid #ddd;
}

.recruitment-job-table div {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid #ddd;
}

.recruitment-job-table div:last-child {
  border-bottom: none;
}

.recruitment-job-table dt {
  background: #f7f7f7;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
}

.recruitment-job-table dd {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* 注意書き */
.recruitment-job-note {
  margin-top: 20px;
  font-size: 13px;
  color: #666;
}

/* SP */
@media (max-width: 768px) {

  .recruitment-job {
    margin-top: 80px;
    padding-top: 40px;
  }

  .recruitment-job-title {
    font-size: 22px;
  }

  .recruitment-job-table div {
    grid-template-columns: 1fr;
  }

  .recruitment-job-table dt {
    padding: 14px 16px;
  }

  .recruitment-job-table dd {
    padding: 14px 16px 20px;
  }
}
/* ===============================
   　　　　ここまで
================================ */
h3.mg{
	margin-top: 50px;
}
/* ===============================
   　　　　電話番号のリンクの色指定
================================ */
.contact-note {
  color: #000;
}

.contact-note a,
.contact-note a[href^="tel:"] {
  color: #000 !important;
  text-decoration: none;
}

.footer-tel,
.footer-tel a,
.footer-tel a[href^="tel:"] {
  color: #fff !important;
  text-decoration: none;
}
/* ===============================
   　　　　ここまで
================================ */