@charset "utf-8";

/*
Theme Name : Morenet WP
Version : 1.0
Author: Daisuke Okaniwa
Description: 有限会社ズーム制作カスタムテーマ
*/
* {
    margin: 0;
    padding: 0;
    /*   outline: 1px solid #e61111;*/
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #3c3c3c;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}
.head_bg {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

header .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

header h2 {
    font-weight: 500;
    font-size: 0.8125rem;
    color: #3c3c3c;
    margin-left: 10px;
    margin-bottom: 0;
}
/* ハンバーガーの見た目 */
.hamburger {
  display: none;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.4s;
}

/* グローバルナビ */
#nav-menu-container {
  transition: all 0.4s ease;
}
.gnav {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
    justify-content: center;
    align-items: center;
}

.gnav li a {
    font-size: 1.1rem;
    font-weight: 500;
    color: #3c3c3c;
    text-decoration: none;
    position: relative;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

/* ホバー時：色＋浮き上がり */
.gnav li a:hover {
    color: #007acc; /* 好みのテーマカラーに変更可 */
    transform: translateY(-3px);
}

/* 下線アニメーション */
.gnav li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #007acc; /* アンダーラインの色 */
    transition: width 0.3s ease;
}

.gnav li a:hover::after {
    width: 100%;
}
/* ご応募・エントリー専用デザイン */
.gnav li a.nav-entry {
    background-color: #007acc;
    color: #fff;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gnav li a.nav-entry:hover {
    background-color: #005f99;
    transform: translateY(-2px) scale(1.05);
    color: #fff;
}

/* 下線アニメーションを無効にする */
.gnav li a.nav-entry::after {
    display: none;
}

/* --- レスポンシブ用 --- */
@media (max-width: 1199px) {
  .hamburger {
    display: flex;
  }

  #nav-menu-container {
    position: absolute;
    top: 100px; /* header高さに合わせて調整 */
    left: 0;
    width: 100%;
    background: #fff;
    overflow: hidden;
    max-height: 0;
  }

  #nav-menu-container.nav-open {
    max-height: 500px; /* メニュー展開時 */
  }

  .gnav {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    gap: 0;
  }

  .gnav li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .gnav li a {
    font-size: 1rem;
    padding: 8px 12px;
}
}
@media (max-width: 768px) {
 header h2 {
    font-size: 0.625rem;
}   
}
.smvtop {
    display: block;
    width: 100%;
    height: 100px;
}
/*MV*/
.mvimg {
    position: relative;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 10;
}
.swiper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2); /* ←お好みで濃さ調整 */
  z-index: 15; /* ← 画像(10)より上・canvas(20)より下でもOK */
  pointer-events: none; /* ← クリックを通す */
}
#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
#particle-canvas > div {
  display: none !important;
}
.logof,
.mvt {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    z-index: 30;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

/* 共通スタイル */
.logof {
    font-family: span-condensed, serif;
    top: calc(30% + 100px);
    font-size: 1.5rem;
}

.mvt {
    font-family: span-condensed, serif;
    top: calc(45% + 100px);
    font-size: 1.5rem;
    max-width: 90%;
    text-align: center;
}

/* PC表示時（幅1200px以上） */
@media (min-width: 1200px) {
    .logof {
        font-size: 2.2rem;
    }

    .mvt {
        font-size: 2.2rem;
    }
}
  .m767 {
    display:none;
  }
@media screen and (max-width: 767px) {
  .m767 {
    display: block;
  }
}
/* 全体の背景用 */
.page-wrapper {
  background: #e9f3fb; /* 薄い青ベース */
  padding-top: 60px;
}


/*TOPぺージ*/
.intro-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f0f8ff 100%);
  padding: 80px 30px;
  margin: 0 auto 60px;
  max-width: 960px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
}

.intro-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}
.intro-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  height: 3px;
  background-color: #007acc;
  transform: translateX(-50%);
  border-radius: 2px;
}

.intro-text {
  font-size: 1.15rem;
  line-height: 2;
  color: #333;
  margin: 0 auto;
  max-width: 700px;
}
@media (max-width: 1199px) {
.intro-section {
  padding: 50px 10px;
  margin: 0 auto 60px;
  max-width: 960px;
}
.intro-heading {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.intro-text {
  font-size: 1rem;
}
}
@media (max-width: 768px) {
.intro-section {
  padding: 30px 10px;
  margin: 0 auto 60px;
  max-width: 960px;
}
.intro-heading {
  font-size: 1.2rem;
}
.intro-text {
  font-size: 0.8125rem;
}
}


/* TOP3セクション */
.work-section, .voice-link-section,.recruit-link-section {
  padding: 60px 20px;
}
.work-section {
  background-color: #f7fbff;
}
.voice-link-section {
  background-color: #ffffff;
}

.front-inner {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.front-text {
  flex: 1;
  text-align: center;
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 30px;
  line-height: 1.4;
}

.front-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.front-image {
  flex: 1;
  text-align: center; 
}
.front-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.section-heading_sp {
    display: none;
}

.btn-page-link {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007acc;
  font-size: 1rem;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-page-link:hover {
  background-color: #005f99;
}
@media (max-width: 1199px) {
.section-heading {
  font-size: 1.2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}
.front-text p {
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.btn-page-link {
  padding: 12px 24px;
  font-size: 0.8125rem;
}
}
@media (max-width: 768px) {
    .work-section, .voice-link-section,.recruit-link-section {
  padding: 60px 10px;
}
  .front-inner {
    flex-direction: column-reverse;
  }
.section-heading {
  display: none;
}
  .front-text {
    text-align: center;
  }
  #f-revrse {
    flex-direction: column;
  }
  #f2-revrse {
    flex-direction: row-reverse;
  }
  .front-image {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading_sp {
    display: inline-block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #004080;
  margin-bottom: 0px;
  line-height: 1.4; 
}
.front-image img {
  max-width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
}




/*会社概要ぺージ*/
.company-lead {
  text-align: center;
  margin: 30px 0;
}

.shimmer-text {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: 500;
  background: linear-gradient(
    120deg,
    #007acc 0%,
    #ffffff 50%,
    #007acc 100%
  );
  background-size: 200% auto;
  background-position: 200% center; /* ← 右から開始 */
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}




.b768 {display: none;}
/* スマホ対応 */
@media (max-width: 768px) {
  .b768{display: block;}}



/* ▼ 共通ボックス */
.contentbox {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  margin-top: 60px;
  margin-bottom: 60px;
}

/* ▼ 見出し */
.contentbox h3 {
  font-size: clamp(1.2rem, 1.2vw + 0.5rem, 1.6rem);
  font-weight: 700;
  color: #004080;
  border-left: 6px solid #007acc;
  padding-left: 12px;
  margin-bottom: 24px;
}

/* ▼ テーブル調整 */
.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 14px 16px;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
  font-size: clamp(0.8125rem, 1vw, 1rem);
}

.table th {
  background-color: #f4faff;
  width: 160px;
  font-weight: 600;
  color: #003366;
}
@media screen and (max-width: 767px) {
  .table tr {
    display: flex;
    flex-direction: column;
  }
  .table th {
    width: auto;
  }
  .table td {
  border-top: none;
  }
  .table>:not(caption)>*>* {
     border-bottom-width: 0 !important;
  }
}
/* ▼ アクセス案内 */
.contentbox p {
  font-size: clamp(0.8125rem, 1vw, 1rem);
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ▼ Googleマップ iframe */
.contentbox iframe {
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/*先輩社員の声ぺージ*/
/* 社員セクション全体 */
.staff-section {
  padding: 60px 20px;
  background-color: #f8fcff;
}

/* 各スタッフのカード */
.staff-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.staff-card.reverse {
  flex-direction: row-reverse;
}

/* 画像部分 */
.staff-image {
  flex: 1;
  text-align: center;
}
.staff-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* テキスト部分 */
.staff-content {
  flex: 2;
}

.staff-title {
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.5rem); /* 約19.2px〜24px */
  font-weight: 700;
  color: #004080;
  margin-bottom: 12px;
}

.staff-title span {
  display: block;
  font-size: clamp(0.9rem, 1vw + 0.3rem, 1rem); /* 約14.4px〜16px */
  color: #007acc;
  margin-top: 4px;
}

.staff-comment {
  font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.05rem); /* 約16px〜16.8px */
  line-height: 1.8;
  color: #333;
}


/* モバイル対応 */
@media (max-width: 768px) {
  .staff-card,
  .staff-card.reverse {
    flex-direction: column;
    text-align: center;
  }
  .staff-content {
    text-align: left;
  }
}





/*求人*/
.form-intro {
  background-color: #f4faff;
  padding: 30px 20px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-intro .container {
  max-width: 960px;
  margin: 0 auto;
}

.form-intro-text {
  font-size: clamp(0.9375rem, 1vw + 0.3rem, 1.05rem); /* 約16px〜16.8px */
  line-height: 1.8;
  color: #003366;
  text-align: center;
  margin-bottom: 0;
}
.form-intro-text a {
  color: #007acc; /* 落ち着いた明るい青 */
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.form-intro-text a:hover {
  color: #005f99; /* 少し濃い青でホバー変化 */
}





/* ▼ 全体ラッパー */
.cf7-form-wrapper {
  margin: 0 auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  font-family: "Helvetica Neue", sans-serif;
}
/* ▼ 各フィールドラベル */
.cf7-form-wrapper label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #004080;
  font-size: clamp(0.938rem, 0.922rem + 0.06vw, 1rem);
}

/* ▼ 必須マーク */
.cf7-form-wrapper .req {
  color: #c0392b;
  font-size: 0.9rem;
}
.cf7-form-wrapper input {
font-size: clamp(0.938rem, 0.922rem + 0.06vw, 1rem)!important;
}
/* ▼ テキスト・メール・テキストエリア共通 */
.cf7-form-wrapper input[type="text"],
.cf7-form-wrapper input[type="email"],
.cf7-form-wrapper input[type="tel"],
.cf7-form-wrapper textarea,
.cf7-form-wrapper input[type="file"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  margin-bottom: 20px;
  background: #fdfdfd;
  transition: border-color 0.3s ease;
}

.cf7-form-wrapper input:focus,
.cf7-form-wrapper textarea:focus {
  border-color: #007acc;
  outline: none;
}

/* ▼ ラジオボタン */
.cf7-form-wrapper input[type="radio"] {
  margin-right: 8px;
}

/* ▼ ファイルアップロード */
.cf7-form-wrapper input[type="file"] {
  padding: 8px;
}

/* ▼ 利用規約・同意 */
.policy-toggle {
  font-size: 0.9rem;
  margin-top: 30px;
  background-color: #f3faff;
  border-radius: 8px;
  padding: 15px;
  color: #333;
  text-align: center;
}
.policy-toggle p {
  margin-bottom: 0;
}

.toggle-btn {
  display: inline-block;
  background-color: transparent;
  border: none;
  color: #007acc;
  font-weight: bold;
  cursor: pointer;
  padding: 0;
  margin: 0 auto 10px; /* 中央 + 下余白 */
  text-decoration: underline;
  display: block;             /* blockにしてmargin:autoが効くように */
  text-align: center;
}


.policy-text {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  text-align: left;
  margin-bottom: 15px;
}

.policy-text.open {
  max-height: 500px; /* 十分な高さに調整 */
  opacity: 1;
}


/* チェックボックス */
.policy-toggle input[type="checkbox"] {
  margin-right: 6px;
  transform: scale(1.1); /* 見やすくしたい場合 */
}
/* ▼ 送信ボタン */
.cf7-form-wrapper .form-submit {
  margin-top: 24px;
  text-align: center;
}
.cf7-form-wrapper .form-submit p{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}


.cf7-form-wrapper .form-submit input[type="submit"] {
  background-color: #007acc;
  color: #fff;
  padding: 12px 32px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cf7-form-wrapper .form-submit input[type="submit"]:hover {
  background-color: #005f99;
}
@media screen and (max-width: 767px) {
  .cf7-form-wrapper {
  padding: 40px 15px;
}
.policy-toggle {
  padding: 10px 5px;
}
}


/*フッター*/
/* フッター全体 */
.site-footer {
  background-color: #f4f7fa;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
  color: #333;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

/* ロゴブロック */
.footer-logos {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-logo img {
  width: 120px;
  height: auto;
}

/* ナビブロック */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #004080;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #007acc;
}

/* 会社情報ブロック */
.footer-info {
  max-width: 260px;
  line-height: 1.6;
}
.footer-info a {
  color: #333;
  text-decoration: none;
}
.footer-info a:hover {
  text-decoration: underline;
}

/* コピーライト */
.footer-copyright {
  text-align: center;
  font-size: 0.85rem;
  color: #999;
  margin-top: 40px;
  border-top: 1px solid #e0e0e0;
  padding-top: 20px;
}

/* モバイル対応 */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-logos {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
  }
  .footer-info {
    margin-top: 20px;
  }
}
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007acc;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
}
.scroll-top.active {
  opacity: 1;
  visibility: visible;
}
