@charset "utf-8";
* {
	margin: 0;
	padding: 0;
}

*{box-sizing: border-box;}
/* float解除用 */
.clearlist {
	content: "";
	display: block;
	clear: both;
}

body{
  width: 100%;
  overflow-x: hidden;
}

a{
    list-style: none;
    text-decoration: none;
}

li{
    list-style: none;
    text-decoration: none;
}

/* ===========================
   基本設定
=========================== */
.header {
  width: 100%;
  height: 100px; /* ★ 高さ固定 */
  background: #8fbc8f;
  border-bottom: 1px solid #F7C9D8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center; /* ★ 中央揃え */
}

.header-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center; /* ★ 中央揃え */
  justify-content: space-between;
}

.logo img {
  height: 80px; /* 100pxの中でバランス良い */
  object-fit: contain;
}

/* ===========================
   PCナビ
=========================== */
.nav ul {
  display: flex;
  gap: 32px;
  align-items: center; /* ★ テキスト中央揃え */
}

.nav a {
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding-bottom: 4px;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #E88BA0;
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* ===========================
   ハンバーガー（スマホ）
=========================== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  height: 100px; /* ★ ヘッダーと揃える */
  justify-content: center; /* ★ 中央揃え */
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #333;
  transition: 0.3s;
}

/* ===========================
   モバイルメニュー
=========================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #fff;
  padding: 80px 20px;
  transition: 0.4s cubic-bezier(.4,0,.2,1);
  opacity: 0;
  box-shadow: -4px 0 12px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  right: 0;
  opacity: 1;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu a {
  color: #333;
  font-size: 18px;
  font-weight: 500;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===========================
   スマホ表示
=========================== */
@media (max-width: 768px) {
  .nav {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}

main{
    padding-top: 100px;
}

/* ===========================
   背景画像（固定）＋ 光レイヤー
=========================== */
.bg-shine {
  position: fixed;
  inset: 0;
  background: url("../images/logoback.png") center/contain no-repeat fixed;
  z-index: -2;
}

/* ピンクのオーバーレイ（全体） */
.bg-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 201, 216, 0.45);
  z-index: -1;
}

/* ★ 光のアニメーション（全体で1本） */
.bg-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: translateX(-100%);
  animation: shine 6s infinite ease-in-out;
  mix-blend-mode: screen;
  z-index: 0;
}

@keyframes shine {
  0% { transform: translateX(-100%) skewX(-20deg); }
  50% { transform: translateX(100%) skewX(-20deg); }
  100% { transform: translateX(100%) skewX(-20deg); }
}

/* ===========================
   ヒーロー
=========================== */
.hero {
  height: 90vh;
  display: flex;
  align-items: center;
  padding-left: 8%;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease forwards;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  background: #E88BA0;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #d66b87;
  transform: translateY(-3px);
}

/* ===========================
   企業理念
=========================== */
.philosophy {
  padding: 140px 8%;
  position: relative;
  z-index: 1;
}

.philosophy-inner {
  max-width: 700px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.4s ease forwards;
}

.philosophy-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}

.philosophy-text {
  font-size: 20px;
  line-height: 2;
  color: #444;
}

/* アニメーション */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* スマホ対応 */
@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    height: 70vh;
    padding-left: 5%;
  }
  .hero-title { font-size: 34px; }
  .hero-text { font-size: 16px; }
  .philosophy { padding: 100px 5%; }
  .philosophy-title { font-size: 32px; }
  .philosophy-text { font-size: 16px; }
}


/* ===========================
   事業概要バナー
=========================== */
.service-banner {
  width: 100%;
  height: 380px;
  background: url("../images/mobile.png") center/cover no-repeat;
  position: relative;
  margin-top: 120px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(60px);
  transition: 0.9s cubic-bezier(.25,.46,.45,.94);
}

/* スクロールで表示 */
.service-banner.show {
  opacity: 1;
  transform: translateY(0);
}

/* ピンクのオーバーレイ */
.service-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 201, 216, 0.45);
  z-index: 1;
}



@keyframes shine {
  0% { transform: translateX(-100%) skewX(-20deg); }
  50% { transform: translateX(100%) skewX(-20deg); }
  100% { transform: translateX(100%) skewX(-20deg); }
}

/* テキストエリア */
.service-banner-inner {
  position: relative;
  z-index: 3;
  padding-left: 8%;
  padding-top: 80px;
  max-width: 100%;
}

.service-banner-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.service-banner-text {
  font-size: 20px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.service-banner-btn {
  display: inline-block;
  background: #E88BA0;
  color: #fff;
  padding: 14px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}

.service-banner-btn:hover {
  background: #d66b87;
  transform: translateY(-3px);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .service-banner {
    height: 300px;
  }
  .service-banner-inner {
    padding-left: 5%;
    padding-top: 60px;
  }
  .service-banner-title {
    font-size: 32px;
  }
  .service-banner-text {
    font-size: 16px;
  }
}

/* ===========================
   強みセクション
=========================== */
.strength {
  padding: 140px 8%;
  background: #FDECF2;
}

.strength-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 60px;
}

/* PCは3列、スマホは縦 */
.strength-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* 各項目 */
.strength-item {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: left;
  border-top: 6px solid #E88BA0;

  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s cubic-bezier(.25,.46,.45,.94);
}

.strength-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* 画像（上部） */
.strength-img {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.strength-img img {
  height: 100%;
  object-fit: contain;
}

/* テキスト */
.strength-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.strength-item p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .strength-list {
    grid-template-columns: 1fr;
  }
  .strength-item {
    padding: 30px 20px;
  }
  .strength-img {
    height: 100px;
  }
  .strength-item h3 {
    font-size: 22px;
  }
  .strength-item p {
    font-size: 16px;
  }
}


/* ===========================
   広域エリア対応（地図セクション）
=========================== */
.area {
  padding: 140px 8%;
}

.area-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* 日本地図 */
.area-map {
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s cubic-bezier(.25,.46,.45,.94);
}

.area-map.show {
  opacity: 1;
  transform: translateY(0);
}

.area-map img {
  width: 100%;
  height: auto;
}

/* ピン（共通） */
.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  background: #E88BA0;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(232,139,160,0.8);
  animation: pinBlink 2s infinite ease-in-out;
}

/* ピンの点滅 */
@keyframes pinBlink {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}

/* ★ アップされた地図に合わせたピン位置（%で指定） */
/* ピン位置（%で指定・再調整版） */
.pin-tokyo { top: 56%; left: 66%; }    /* 関東 */
.pin-koshin { top: 54%; left: 62%; }   /* 甲信越 */
.pin-chugoku { top: 63%; left: 42%; }  /* 中国 */
.pin-shikoku { top: 69%; left: 42%; }  /* 四国 */


/* テキスト */
.area-text {
  width: 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s cubic-bezier(.25,.46,.45,.94);
}

.area-text.show {
  opacity: 1;
  transform: translateY(0);
}

.area-text h2 {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.area-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .area-inner {
    flex-direction: column;
  }
  .area-map, .area-text {
    width: 100%;
  }
  .area-text h2 {
    font-size: 32px;
  }
  .area-text p {
    font-size: 16px;
  }
}

/* ===========================
   会社情報（背景拡大）
=========================== */
.company {
  position: relative;
  padding: 160px 8%;
  overflow: hidden;
}

/* 背景画像（最初は小さめ → スクロールで拡大） */
.company-bg {
  position: absolute;
  inset: 0;
  background: url("../images/company.png") center/cover no-repeat;
  transform: scale(1.2); /* 最初は余白をつける */
  transition: transform 1s ease-out;
  z-index: -1;
}

/* スクロールで拡大 */
.company-bg.show {
  transform: scale(1); /* ゆっくり拡大 */
}

/* タイトル */
.company-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

/* テーブル */
.company-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  overflow: hidden;

  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease 0.2s;
}

.company-table th {
  width: 25%;
  background: #FDECF2;
  padding: 18px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.company-table td {
  padding: 18px;
  border-bottom: 1px solid #eee;
}

/* 表示アニメーション */
.company-inner.show .company-title,
.company-inner.show .company-table {
  opacity: 1;
  transform: translateY(0);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .company {
    padding: 120px 5%;
  }
  .company-title {
    font-size: 32px;
  }
  .company-table {
    font-size: 16px;
  }
  .company-table th {
    width: 35%;
  }
}

/* ===========================
   採用情報
=========================== */
.recruit {
  position: relative;
  padding: 160px 8%;
  overflow: hidden;
}

/* ★ 透過した背景画像（拡大なし） */
.recruit-bg {
  position: absolute;
  inset: 0;
  background: url("../images/.png") center/cover no-repeat;
  opacity: 0.58; /* ← かなり薄く透過 */
  z-index: -1;
}

/* 中身 */
.recruit-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s ease;
}

.recruit-inner.show {
  opacity: 1;
  transform: translateY(0);
}

.recruit-title {
  font-size: 40px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.recruit-lead {
  font-size: 20px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 50px;
}

/* 詳細ブロック */
.recruit-detail {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 40px;
  border-radius: 16px;
  border-left: 6px solid #E88BA0;
}

.recruit-detail h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

/* テーブル */
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  color: #444;
}

.recruit-table th {
  width: 25%;
  background: #FDECF2;
  padding: 16px;
  text-align: left;
  font-weight: 700;
  border-bottom: 1px solid #eee;
}

.recruit-table td {
  padding: 16px;
  border-bottom: 1px solid #eee;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .recruit {
    padding: 120px 5%;
  }
  .recruit-title {
    font-size: 32px;
  }
  .recruit-lead {
    font-size: 16px;
  }
  .recruit-detail {
    padding: 30px;
  }
  .recruit-detail h3 {
    font-size: 24px;
  }
  .recruit-table {
    font-size: 16px;
  }
  .recruit-table th {
    width: 35%;
  }
}


/* ===========================
   フッター
=========================== */
.footer {
  background: #8fbc8f;
  color: #fff;
  padding-top: 80px;
  padding-bottom: 40px;
  border-top: 4px solid #E88BA0; /* ピンクライン */
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 0 8%;
  flex-wrap: wrap;
}

/* ロゴ部分 */
.footer-logo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 16px;
  color: #ccc;
}

/* ナビ */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: #ddd;
  font-size: 16px;
  transition: 0.3s;
}

.footer-nav a:hover {
  color: #E88BA0;
}

/* 会社情報テーブル */
.footer-info table {
  border-collapse: collapse;
  font-size: 16px;
  color: #ddd;
}

.footer-info th {
  text-align: left;
  padding: 6px 10px 6px 0;
  color: #fff;
}

.footer-info td {
  padding: 6px 0;
  color: #ccc;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 5%;
  }

  .footer-logo h2 {
    font-size: 28px;
  }

  .footer-nav a {
    font-size: 15px;
  }

  .footer-info table {
    font-size: 15px;
  }
}



/* ------------------------------
   トップ背景
------------------------------ */
.service-hero {
  position: relative;
  padding: 100px 8% 140px;
  text-align: left;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/connection2.png") center/cover no-repeat;
  opacity: 0.18;
  z-index: -1;
}

.service-hero-title {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 25px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.service-hero-lead {
  font-size: 20px;
  max-width: 700px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease 0.2s;
}

.service-hero.show .service-hero-title,
.service-hero.show .service-hero-lead {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------
   ミッション
------------------------------ */
.mission {
  padding: 80px 8%;
  background: #fff;
  border-left: 6px solid #E88BA0;
  border-radius: 12px;
  margin: 60px 8%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.mission.show {
  opacity: 1;
  transform: translateY(0);
}

.mission h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* ------------------------------
   サービス一覧（画像付き）
------------------------------ */
.service-list {
  padding: 80px 8%;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.service-item {
  display: flex;
  gap: 30px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  padding: 40px;
  border-left: 6px solid #E88BA0;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.service-item.show {
  opacity: 1;
  transform: translateY(0);
}

.service-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.service-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
}

.service-text p {
  font-size: 18px;
  margin-bottom: 15px;
}

.service-text ul {
  padding-left: 20px;
}

.service-text ul li {
  margin-bottom: 6px;
}

/* ------------------------------
   強み
------------------------------ */
.strength {
  padding: 80px 8%;
}

.strength h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.strength-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.strength-item {
  flex: 1;
  min-width: 260px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border-left: 6px solid #E88BA0;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.strength-item.show {
  opacity: 1;
  transform: translateY(0);
}

.strength-item h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* ------------------------------
   流れ
------------------------------ */
.flow {
  padding: 80px 8%;
  background: rgba(255,255,255,0.85);
  border-radius: 12px;
  margin: 60px 8%;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.flow.show {
  opacity: 1;
  transform: translateY(0);
}

.flow h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.flow ol {
  padding-left: 20px;
}

.flow ol li {
  margin-bottom: 12px;
  font-size: 18px;
}

/* ------------------------------
   FAQ
------------------------------ */
.faq {
  padding: 80px 8%;
}

.faq h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.faq-item {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  border-left: 6px solid #E88BA0;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.faq-item.show {
  opacity: 1;
  transform: translateY(0);
}

.faq-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* ------------------------------
   スマホ対応
------------------------------ */
@media (max-width: 768px) {

  .service-hero {
    padding: 120px 6% 100px;
  }

  .service-hero-title {
    font-size: 38px;
  }

  .service-hero-lead {
    font-size: 16px;
  }

  .service-item {
    flex-direction: column;
    padding: 30px;
  }

  .service-img {
    width: 100%;
    height: 220px;
  }

  .service-text h2 {
    font-size: 24px;
  }

  .strength-list {
    flex-direction: column;
  }

  .strength-item {
    min-width: 100%;
  }
}



