/*
Theme Name: geo-rft
Author: Koyo
Description: Custom Theme (Header Complete Version)
Version: 1.1
*/

/* ===========================
  ■ フォント設定
=========================== */
body {
  font-family: "Noto Sans JP", sans-serif;
  margin: 0;
  padding: 60px 0 0;
  line-height: 1.6;
}


/* .noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

/* ===========================
  ■ 画像基本設定
=========================== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body,
  html {
    overflow-x: hidden !important;
  }



/* 改行設定----------------------------------- */

/* PC表示では br-sp を非表示 */
.br-sp {
  display: none;
}

/* スマホ表示では br-pc を非表示、br-sp を表示 */
@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}

@media (min-width: 769px) {
  .br-pc {
    display: inline;
  }
}


/* ヘッダーとメインビジュアル間の余白調整--------------- */

/* body {
    padding-top: 80px;
} */


/* ヘッダーここから--------------------------- */

/* ===========================
  ■ PCヘッダー（左右両端揃え・フル幅）
=========================== */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #dcdcdc;
}

/* 中身を左右に完全振り分ける */
.header-inner {
  width: 100%;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- 左側：ロゴ ---------- */

.header-left {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 48px;
  min-height: 48px;
  max-height: 70px;
}

/* ---------- 右側：ナビ＋ボタン ---------- */

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* ===========================
  ■ ナビゲーション（PC）
=========================== */

.global-nav {
  margin: 0;
  padding: 0;
}

.global-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.global-nav ul li a {
  font-size: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.global-nav ul li a:hover {
  color: #0594a8;
}

/*ドロップダウン */
.global-nav ul li {
  position: relative;
}

.global-nav ul li .sub-menu {
  display: block;
  position: absolute;
  top: 46px;
  left: 0;
  background: #2ca7b8;
  border: 1px solid #ddd;
  min-width: 200px;
  border-radius: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
  /* 初期状態は非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index: 1000;
}

  /* ▼リスト個別設定 */
.global-nav ul li .sub-menu li {
  display: block;
  border-bottom: 1px solid #fff;
}

.global-nav ul li .sub-menu li:last-child {
  border-bottom: none; /* 最後だけ線なし */
}

.global-nav ul li .sub-menu li a {
  padding: 10px 18px;
  display: block;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.global-nav ul li .sub-menu li a:hover {
  background: #f0f8fa;
  color: #0594a8;
}

/* ホバー時に表示 */
.global-nav ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .site-header {
    z-index: 20;
  }
  .global-nav {
    position: relative;
    z-index: 200; /* ドロップダウンを前に出す */
  }
  .global-nav .sub-menu {
    z-index: 3000; /* 完全に前面に */
  }
}

/* ===========================
  ■ ボタン群（PC）
=========================== */

.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

/* 共通ボタン */
/* ▼ 共通ボタン */
.btn {
  position: relative;
  overflow: hidden;
  isolation: isolate; /* ← これで波紋が復活する */
  padding: 8px 27px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0594a8;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
}

/* ▼ 波紋（反転用） */
.btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  background: #ffffff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.45s ease;
  z-index: -1;
}

/* ▼ ホバー時、波紋エフェクト */
.btn:hover::before {
  width: 300%;
  height: 300%;
}

/* ▼ 反転後テキスト色＋ボーダー色（元色で統一） */
.btn:hover {
  color: #0594a8;
  border-color: #0594a8;
}


.header-buttons img {
  height: 27px;
  width: auto;
}

.header-buttons .search-btn {
  margin-right: 40px;
}

/* Lineアイコン */
.line-icon {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.line-icon:hover {
  transform: translateY(-2px);
}

.line-icon:hover img {
  filter: brightness(1.2); /* ← 明るく */
}

.line-icon img {
  height: 52px;
}


/* 検索ボタン */
.search-btn {
  background: #e6e6e6;
  padding: 8px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, filter 0.25s ease;
}

.search-btn:hover {
  background-color: #f3f3f3; /* 少し明るい灰色 */
  transform: translateY(-2px);
}

.search-btn:hover img {
  filter: brightness(1.25); /* ← アイコンが明るく */
}

.search-btn img {
  height:36px;
  width: auto;
}


/* PC表示/スマホ非表示切替 */
.pc-nav { 
	display: flex;
	position: relative;
	z-index: 10;
}
.sp-nav { display: none; }


/* ===========================
  ■ スマホ版ヘッダー（SP）
=========================== */
@media (max-width: 768px) {

  /* PCナビ非表示 */
  .pc-nav {
    display: none;
  }

  .sp-nav {
    display: block;
  }

  .header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .header-inner {
    width: 90%;
    padding: 12px 0 !important;
    justify-content: space-between;
  }

  /* ▼ ハンバーガー */
  .hamburger {
    position: relative;
    width: 40px;
    height: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
  }

  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #034891;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* × に変形 */
  .hamburger.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }

  /* ▼ SPメニュー本体 */
  .sp-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 72%;
    height: 100vh;
    background: #fff;
    border-top: 1px solid #ccc;
    padding: 70px 0 20px;
    box-shadow: -4px 0 10px rgba(0,0,0,0.2);
    transition: right 0.35s ease;
    z-index: 10000;
  }

  .sp-menu.open {
    right: 0;
  }

  /* ▼ 通常メニュー（白背景固定） */
  .sp-menu-link {
    display: flex;
    align-items: center;
    padding: 18px 18px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    background: #ffffff !important;
  }

  /* ▼ アイコン（20px推奨） */
  .sp-icon {
    width: 20px;
    margin-right: 12px;
  }

  /* ▼ アコーディオン親（事業内容） */
  .sp-parent {
    background: #ffffff !important;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 18px 18px;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
  }

  /* ▼ 矢印 */
  .sp-parent .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  /* ▼ 開いたときの配色（事業内容のみ） */
  .sp-has-sub.open > .sp-parent {
    background: #eef9fd !important;
    color: #034891;
  }

  .sp-has-sub.open > .sp-parent .arrow {
    transform: rotate(-135deg);
    border-color: #034891;
  }

  /* ▼ サブメニュー（事業内容のみ水色） */
  .sp-submenu {
    max-height: 0;
    overflow: hidden;
    background: #eef9fd;
    margin: 0;
    padding: 0 0 0 20px;
    border-left: 3px solid #2fa9ba;
    list-style: none !important;
    transition: max-height 0.35s ease;
  }

  .sp-has-sub.open .sp-submenu {
    max-height: 600px;
  }

  .sp-submenu li a {
    display: block;
    padding: 12px 18px;
    color: #333;
    border-bottom: 1px solid #dde;
    font-size: 16px;
    text-decoration: none;
  }

  .sp-submenu li:last-child a {
    border-bottom: none;
  }

  /* ▼ リストの黒丸削除（確実に） */
  .sp-menu ul,
  .sp-menu li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
  }

  /* ============================
      CTA エリア
  ============================ */
  .sp-cta-area {
    padding: 20px 15px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
  }

  .sp-cta {
    display: block;
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
  }

  .sp-cta.mail { background: #f36c3f; }
  .sp-cta.line { background: #00c300; }
  .sp-cta.tel  { background: #1d6fb8; }

}


/* ヘッダーここまで----------------------- */

/* fvここから----------------------------- */
/* FV全体コンテナ */
.fv-full {
  position: relative;
  width: 100%;
  min-height: 850px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
  z-index: 1; /* FV内の要素を背景より上に置く */
}

/* 斜めカットの背景 */
.fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0099a8 0%, #c1f0f2 80%, #ffffff 100%);
  clip-path: polygon(0 0, 70% 0, 55% 100%, 0 100%);
  z-index: 0; /* 背景として配置 */
}


/* 左ブロック（テキスト部分） */
.fv-left {
  width: 65%;
  color: #fff;
  padding-left: 6%;
  z-index: 2;
  position: relative;
  padding-left: 6%;
  padding-top: 30px;
}

.fv-main-title {
  max-width: none !important;
  font-size: 75px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 26px;
  color: #ffffff;
  text-shadow:
    0 0 6px #cef0fc,
    0 0 12px rgba(0,160,180,0.6);
}

.fv-sub-title {
  font-size: 33px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #ffffff;
  text-shadow:
	0 0 15px #03c3cc,
    0 0 15px rgba(0,160,180,0.6);
}

/* ボタン2つ */
.fv-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fv-btn {
  max-width: 540px;
  width: 100%;
  padding: 26px 28px;
  border-radius: 8px;
  font-size: 29px;
  font-weight: 700;
  text-align:center;
  line-height: 1.6;
  color: #ffffff;
  box-shadow:
    0 4px 10px rgba(0,0,0,0.12);
}

.fv-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.25), rgba(255,255,255,0));
  pointer-events: none;
}


.fv-btn span {
  background: linear-gradient(to bottom, #f2fc9f, #eefd03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-weight: 900;
}


.fv-btn-01 {
  background: linear-gradient(20deg, #34cbc5 0%, #0a99a4 100%);
  position: relative;
}

.fv-btn-01 span {
  color: #ffe442;
  font-weight: 800;
}

.fv-btn-02 {
  background: linear-gradient(20deg, #34cbc5 0%, #0a99a4 100%);
  position: relative;
}

.fv-btn-02 span {
  color: #ffea53;
  font-weight: 800;
}

/* 右側画像 */
.fv-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
/*   position: relative; */
  z-index: 0;
}

.fv-right img {
  width: 80% !important;
  height: auto;
  display: block;
  margin-left: 100px;
}

/* フル幅FVのスマホ時ズレ修正 */
@media (max-width: 768px) {
  .fv-full {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
	
.fv-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #0099a8 5%, #c1f0f2 27%, #ffffff 40%);
  clip-path: polygon(0 0, 170% 0, 45% 35%, 0 100%);
  z-index: 0;
}
	
	.fv-left {
/* 		text-align: left; */
        margin: 0 auto;
		padding-top:0;
	}
}


/* ▼ スマホ対応（600px以下） */
@media (max-width: 600px) {

  .fv-full {
    flex-direction: column;
    padding: 10px 0 0;
    min-height: auto;
  }

  .fv-left {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }

  .fv-main-title {
    font-size: 27px;
    line-height: 1.5;
	width:95%;
	margin:15px auto;
  }

  .fv-sub-title {
    font-size: 16px;
    line-height: 1.7;
	width:95%;
	margin:10px auto 23px;
  }

  .fv-buttons {
    align-items:center;
    gap: 12px;
  }

  .fv-btn {
    font-size: 22px;
	line-height: 2rem;
    padding: 16px 16px;
	width:85%;
  }

  .fv-right {
	position: relative;
    width: 100%;
    margin-top: 20px;
  }

  .fv-right img {
    width: 90%;
    height: auto;
	margin:0 auto;
  }
}


/* ▼ SCROLL DOWN インジケータ（位置揃え済み） */
.scroll-indicator {
  position: absolute;
  left: 30px;
  top: 53%;
  transform: translateY(-55%);
  text-align: center;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ▼ 文字（縦書き） */
.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
  font-weight: 500;
}

/* ▼ 動く縦線 */
.scroll-line {
  width: 2px;
  height: 70px;
  background: linear-gradient(180deg, #fff 0%, transparent 100%);
  animation: scrollLine 1.5s linear infinite;
  opacity: 0.9;
  border-radius: 2px;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
  100% {
    transform: translateY(40px);
    opacity: 0;
  }
}

/* FVに重ねるため */
.fv-full {
  position: relative;
}

/* NEWSバー（FVの上に重ねる）------------------- */
.news-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  background: #ebefee;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
  z-index: 5;         /* SCROLL DOWN より上に表示する */
  border-radius: 10px 0 0 0;
}

.news-bar .news-content,
.news-bar .news-date,
.news-bar .news-title,
.news-bar .news-arrow {
  color: #758183;
  font-weight:600;
}

/* 左側の NEWS */
.news-label {
  font-size: 42px;
  font-weight: 700;
  color:rgba(255,255,255,0.8) !important;
  letter-spacing: 4px;
  white-space: nowrap;
}


/* 中央のテキスト部分 */
.news-content {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

/* 日付 */
.news-date {
  font-size: 14px;
}

/* タイトル */
.news-title {
  font-size: 16px;
  font-weight: 500;
}

/* ＞ の矢印 */
.news-arrow {
  margin-left: auto;
  font-size: 20px;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .news-bar {
    position: relative !important;
    width: 100% !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px !important;
    border-radius: 0;
  }

  /* NEWSラベル */
  .news-label {
    font-size: 22px !important;
    letter-spacing: 2px;
  }

  /* コンテンツ部分（縦積みにする） */
  .news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    white-space: normal;
  }

  .news-date {
    font-size: 12px;
  }

  .news-title {
    font-size: 14px;
	  margin:0;
  }

  /* ＞ を右側へ */
  .news-arrow {
    align-self: flex-end;
    margin-top: 4px;
    font-size: 18px;
  }
	
	/* NEWS タブ幅をリセット */
  .news-tab {
    width: auto !important;
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
  }

  .news-tabs {
    overflow-x: auto;
    justify-content: center !important;
	width:100% !important;
    padding-bottom: 6px;
  }
	
}
/* fvここまで----------------------------- */

/* コンセプトここから--------------------- */
.concept-section {
  width: 100%;
  padding: 50px 0;
  text-align: center;
  background: transparent !important;
}

.concept-section hgroup{
	text-align:center;
}

/* 見出し（CONCEPT） */
.concept-title {
  font-size: 75px;
  font-weight: 700;
  color: #cef0fc;
  margin-bottom: -15px;
}

/* サブ見出し */
.concept-sub {
  color: #1f9db6;
  font-size: 20px;
  font-weight:600;
  margin-top:5px;
  margin-bottom: 60px;
}

/* ------------ レイアウト構造 ------------ */
/* 背景（右側いっぱいの水色帯） */
.concept-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 55%;
  background: #eef9fd !important;
  border-radius: 40px 0 0 40px;
  z-index: 1;
}

/* セクション内側*/
.concept-area {
  position: relative;
  width: 100%;
}

.concept-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
}

/* 左側イラスト */
.concept-image {
  width: 56%;
  position: relative;
  z-index: 3;
}

.concept-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top:120px;
}

/* 右側テキストボックス（水色背景の上） */
.concept-content {
  width: 50%;
  padding: 60px 50px;
  text-align: left;
}

.concept-content h3 {
  font-size: 29px;
  font-weight: 700;
  color: #1f9db6;
  line-height: 1.4;
  margin-bottom: 30px;
}


.concept-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

/* ボタン（事業内容を詳しく見る） */
.concept-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 13px !important;
  background: #1f9db6;
  color: #fff;
  border-radius: 5px; 
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  position: relative;
}

/* 右側の○＋＞ */
.concept-btn::after {
  content: "＞";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 1000px;
  background: #ffffff;
  color: #1f9db6;
  font-size: 12px;
}

/* ホバー時の軽い浮き上がり */
.concept-btn:hover {
  background: #1689a3;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}


/* ===================
   レスポンシブ対応
====================== */
@media (max-width: 1024px) {

  /* 背景は幅100%に、角丸を少し弱く */
  .concept-bg {
    width: 100%;
    height: auto;
    border-radius: 30px;
  }

  /* 2カラム → 1カラム */
  .concept-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 10px;
  }


  .concept-image,
  .concept-content {
    width: 100%;
  }


  .concept-image img {
    width: 100%;
    margin-top: 40px;
  }


  .concept-content {
    padding: 40px 20px;
  }
}


@media (max-width: 600px) {

  /* 見出し（CONCEPT）を小さく */
  .concept-title {
    font-size: 65px;
	margin-top:0;
    margin-bottom: 0;
  }

  /* サブ見出し */
  .concept-sub {
    font-size: 17px;
	margin-top: 0;
    margin-bottom: 30px;
  }


  .concept-bg {
    border-radius: 20px;
  }


  .concept-image img {
    margin-top: 0;
  }


  .concept-content {
    padding: 30px 16px;
  }

  .concept-content h3 {
    font-size: 24px;
    line-height: 2.1rem;
	text-align:center;
    margin-bottom: 20px;
  }

  .concept-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
  }

  /* CTAボタン 小型化 */
  .concept-btn {
	display: block;
    width: 250px;
	text-align: center;
    font-size: 13px;
    padding: 9px 18px !important;
    gap: 10px;
    margin: 0 auto;
  }

  .concept-btn::after {
    width: 22px;
    height: 22px;
    font-size: 12px;
	margin-left:10px;
  }
}

@media (max-width: 768px) {
	.concept-section {
		padding-bottom:0;
	}
	
	.concept-area {
    position: relative;
  }

	
  .concept-content {
    width: 100% !important;
    padding: 0 16px !important;
    box-sizing: border-box;
  }

  .concept-image img {
    margin-top: 0 !important;
  }

  .concept-bg {
    position: absolute;
    top: 200px; /* ← 背景が始まる位置（調整可） */
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100% - 140px); /* ← 上の140pxを除いた残り全部 */
    background: #eef9fd;
    border-radius: 20px;
    z-index: 1;
  }
	
	/* イラストと本文は背景の上に表示 */
  .concept-inner,
  .concept-image,
  .concept-content {
    position: relative;
    z-index: 2;
  }
	
	.concept-inner{
	gap: 0px;
	}

  body, html {
    overflow-x: hidden !important;
  }
}

/* コンセプトここまで--------------------- */

/* お悩みここから -------------------------- */
/* ================================
   WORRIES セクション
================================ */

.worries-section {
  text-align: center;
  padding: 50px 0 0;
}

.worries-title {
  font-size: 75px;
  color: #c8e8f2;
  font-weight: bold;
  margin-bottom: 1px;
}

.worries-sub {
  font-size: 22px;
  font-weight:600;
  color: #1c97b2;
  margin-top:5px;
  margin-bottom: 40px;
/*   display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em; */
}

/* ▼ 見出しの下から背景色 */
.worries-bg {
  width: 100%;
  background: #f3ffff;
  padding: 60px 0 80px;
}

/* ▼ 3カラム（横並び） */
.worries-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

/* ▼ 縦線（左右 2 本） */
.worries-inner::before,
.worries-inner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #d7eef2;
}

.worries-inner::before {
  left: 32.7%;
}

.worries-inner::after {
  left: 65.4%;
}

/* ▼ 各カラム */
.worries-col {
  width: 35%;
  padding: 0 35px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

/* ▼ 上の帯ヘッダー */
.worries-head {
  background: #209bb5;
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 14px 24px;
  border-radius: 8px;
  margin-bottom: 25px;
  width: 100%;
  text-align: center;
}

/* ▼ 画像 */
.worries-img {
  margin-bottom: 25px;
  width: 100%;
}

.worries-img img {
  width: 70%;
  height: auto;
  margin:0 auto;
}

/* ▼ ✓リスト */
.worries-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.worries-list li {
  color: #308aa2;
  font-size: 18px;
  font-weight:600;
  line-height: 1.8;
  margin-bottom: 18px;
  position: relative;
  padding-left: 20px;
}

.worries-list li::before {
  content: "✓";
  color: #1b8fa7;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.worries_sub_text {
	color:#758183;
	font-size:0.8rem;
	font-weight:400;
}

.arrow img {
	width:17%;
	margin:55px auto 0;
}

.arrow_text {
	color:#1b8fa7;
	font-size:2rem;
	font-weight:600;
}

/* ▼ レスポンシブ（スマホは縦並び） */
@media (max-width: 1024px) {
  .worries-inner {
    display: block;
  }
  .worries-inner::before,
  .worries-inner::after {
    display: none;
  }
  .worries-col {
    width: 100%;
    margin-bottom: 50px;
  }
	.arrow img {
		width:45%;
	}
	
	.arrow_text {
		font-size:1.6rem;
	}
}

@media (max-width: 768px) {
	.worries-title{
	  font-size:65px;
	  margin-top: 50px;
	}
	
	.worries-sub {
    font-size: 17px;
    margin-top: 0;
    margin-bottom: 0;
	gap: 0.2em;
	}
	
	.worries-head{
	  font-size:18px;
	  padding: 14px 10px;
	}
	
	.worries-bg {
		padding: 25px 0 0;
	}
	
	.worries-col {
		padding:0 20px;
	}
	
	.arrow img {
    margin: -23px auto 0;
	}
}

/* お悩みここまで--------------------- */

/* 事業内容ここから------------------- */
.business-section {
  text-align: center;
  width: 100%;
  max-width:1000px;
  margin: 100px auto;
}

.business-title {
  font-size: 75px;
  color: #c8e8f2;
  font-weight: bold;
  margin-bottom: 1px;
}

.business-sub {
  font-size: 22px;
  font-weight:600;
  color: #1c97b2;
  margin-top:5px;
  margin-bottom: 40px;
}

.business_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px !important;
  background: #edf9fd;
  margin: 20px 0;
  padding: 30px 40px;
  border-radius: 10px;
}

.business_img {
  flex: 0 0 20%;
}

.business_text {
  text-align: left;
  width: 80%;
  flex: 1;
  padding-left: 45px;
}

.business_h3 {
  color: #2fa9ba;
  font-size:1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
}

.business_text p{
  color:#4b5455;
  font-size:0.9rem;
}

/* 
.business_btn {
  color:#fff !important;
  background:#2fa9ba;
  padding:10px 50px;
  border-radius:10px;
  font-weight:600;
  text-align:center;
  margin-left: 25%;
} */


/* ▼ 詳しく見るボタン*/
.business_btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #2fa9ba;
    color: #fff !important;
    margin-left: 25%;
    padding: 10px 50px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;

    transition: background 0.3s ease, color 0.3s ease;
}

/* ▼ 右矢印*/
.business_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
    transition: right 0.3s ease;
}

/* ▼ ホバー時の動き（矢印が右へスライド＋背景濃く） */
.business_btn:hover {
    background: #238895;
}

.business_btn:hover::after {
    right: 14px;
}


/* ボタン右ブロック */
.business_btn_wrap {
  flex: 0 0 180px;
  display: flex;
  justify-content: flex-start;
　width:100%;
}

@media (max-width: 1024px) {

  .business-section {
    width: 90%;
    margin-top: 80px;
  }

  .business_box {
    gap: 40px;
    padding: 30px 30px;
  }

  .business_text {
    width: 100%;
	  padding-left:0;
  }
}

@media (max-width: 768px) {

  .business-section {
    width: 95%;
	margin:60px auto 45px;
  }
	
	.business-title {
		font-size:65px;
	}
	
	.business-sub {
		font-size:17px;
	}

  /* レイアウトを縦積みに */
  .business_box {
    flex-direction: column;
    align-items: center;
	justify-content: center;
    gap: 20px;
    padding: 25px 20px;
  }

  /* 画像は幅100%表示 */
  .business_box img {
    width: 100%;
    height: auto;
  }
	
	.business_btn_wrap {
    width: 100%;
    margin-top: 15px;
    justify-content: center;
  }

  /* テキストエリアを幅100%に */
  .business_text {
    width: 100%;
	text-align:center;
  }


  .business_text h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
  }


  .business_text p {
    font-size: 14px;
    line-height: 1.7;
  }

  /* 「詳しく見る」ボタン */
  .business_btn {
    width: 60%;
    margin: 20px auto 0 !important;
    display: block;
    font-size: 14px;
    padding: 10px;
	text-align: center;
  }
	
  .business_btn {
    width: 60%;
    margin: 20px auto 0;
  }
}


/* 事業内容ここまで------------------- */

/* 所有機械ここから------------------- */
/* =====================================
   EQUIPMENT セクション
======================================== */

.equipment-section {
  width: 100%;
  padding: 10px 0 100px;
  text-align: center;
  background: #f0f8fa;
}

.equipment-title {
  font-size: 75px;
  font-weight: 700;
  color: #cef0fc;
  margin-bottom: 1px;
}

.equipment-sub {
  color: #1f9db6;
  font-size: 22px;
  font-weight: 600;
	margin-top:5px;
  margin-bottom: 50px;
}

.equipment-name {
  font-size: 26px;
  color: #1f9db6;
  font-weight: 700;
  margin-bottom: 40px;
}

/* スライダー外枠 */
.equipment-slider {
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* 機械情報 */
.equipment-info {
  font-size: 17px;
  color: #1f9db6;
  margin-bottom: 40px;
}

/* ボタン */
.equipment-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #1d9dbb;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
  border-radius: 5px !important;
}

.equipment-btn::after {
  content: "▶";
  color:#1d9dbb;
  font-size: 14px;
	background:#fff;
	border-radius:50px;
	padding: 2px 6px;
}

.equipment-btn:hover {
  background: #0f7f99;
}


@media (max-width: 600px) {
  .equipment-title {
    font-size: 65px;
	letter-spacing:-0.2rem;
	margin-top:0;
  }
	
	.equipment-sub {
		font-size:17px;
	}
	
  .equipment-name {
    font-size: 20px;
  }
}

/* 所有機械ここまで------------------- */

/* NEWSここから----------------------- */
/* 全体 */
.news-section {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

/* タイトル */
.news-title-h2 {
  font-size: 75px;
  color: #c8e8f2;
  font-weight: bold;
  margin-bottom: 1px;
}

.news-sub {
  font-size: 22px;
  font-weight:600;
  color: #1c97b2;
  margin: 5px 0 50px;
}

/* タブ */
.news-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.news-tab {
  padding: 10px 24px;
  background: #e5f7fc;
  border: none;
  border-radius: 5px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
/*   width: 16%; */
  width: 200px;
  flex-shrink: 0;
  color:#1d9dbb;
}

.news-tab.active {
  background: #32bdd6;
  color: #fff;
}

/* グリッド（4列 × 2列） */
.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 30px;
  margin-bottom: 40px;
}

/* カード */
.news-card {
  text-align: left;
  background: none;
  transition: 0.3s ease;
}

/* 正方形サムネイル */
.news-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d9d9d9;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* カテゴリー（2つ横並び） */
.news-meta {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}

.news-meta a{
	text-decoration:none;
}

.news-cat {
  background: #e5f6fb;
  color: #5cb3c3;
  padding: 2px 8px;
  font-size: 11px;
  border-radius: 5px;
}

/* 日付 */
.news-date {
  color: #758183;
  font-size: 13px;
  font-weight:600;
  margin-bottom: 5px;
}

/* タイトル */
.news-heading {
  font-size: 16px;
  font-weight: bold;
  color: #209bb5;
  margin: 0 0 10px;
}

/* 本文 */
.news-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #758183;
}

/*...続きを読む */
.more {
  color: #758183;
}

/* もっと見るボタン */
.news-btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.news-more-btn {
  display: inline-block;
  background: #209bb5;
  color: #fff;
  padding: 16px 40px;
  border-radius: 10px;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .news-tab {
    width: auto;
    padding: 10px 20px;
    font-size: 14px;
  }

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
	
	.news-thumb {
	  width: 90%;
	}
}


@media (max-width: 768px) {

  /* NEWSタイトル */
  .news-title-h2 {
    font-size: 65px !important;
  }

  .news-sub {
    font-size: 17px;
	margin-top:0;
    margin-bottom: 40px;
  }


  .news-tab {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 13px;
    padding: 8px 18px;
    width: auto;
  }
	
	.news-tabs {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
    gap: 8px;
  }


  .news-grid {
	grid-template-columns: 1fr;   /* ← 1列 */
    justify-items: center; 
    gap: 30px;
  }

	.news-list { 
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news-card {
    width: 90%;
    max-width: 480px;
	margin:0 auto;
  }

  /* サムネイル：スマホ用のゆったりめの比率 */
  .news-thumb {
    aspect-ratio: 16 / 9;
    border-radius: 6px;
	width:100%;
  }

  /* カテゴリタグ */
  .news-cat {
    font-size: 10px;
    padding: 2px 6px;
  }

  /* 日付 */
  .news-date {
    font-size: 11px;
  }

  /* タイトル */
  .news-heading {
    font-size: 15px;
    margin-bottom: 8px;
    line-height: 1.4;
  }

  /* 本文 */
  .news-desc {
    font-size: 13px;
    line-height: 1.5;
  }

  /* 続きを読むリンク */
  .more {
    font-size: 13px;
  }

  /* もっと見るボタン */
  .news-more-btn {
    padding: 12px 28px;
    font-size: 14px;
    border-radius: 8px;
  }

}

/* NEWSここまで----------------------- */


/* ================================
      CONTACT セクション
================================ */
.contact-section {
  text-align: center;
  background: #eef9fd;
  padding: 0 0 50px;
}

.contact-title {
  font-size: 75px;
  font-weight:600;
  color: #c3f1f8;
  font-weight: bold;
  padding:20px 0 0;
  margin-bottom: 1px;
  letter-spacing: 3px;
}

.contact-sub {
  font-size: 22px;
  font-weight:600;
  color: #209bb5;
  margin-top:5px;
  margin-bottom: 50px;
}

/* ボタンの並び */
.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}


/* ボタン修正 */
.contact-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  text-decoration: none;

  /* ←形は現状維持 */
  padding: 25px 50px;
  border-radius: 5px;
  font-size: 20px;
  font-weight: bold;
  min-width: 320px;

  color: #fff;

  /* ←元の hover をOFF（gradient に任せる）*/
  transition: background-position 0.35s ease, transform 0.3s ease;
}


/* Contactボタン：色味青系グラデーション */
.contact-btn {
    background: linear-gradient(
        270deg,
        #0099b5 0%,
        #36c0d0 25%,
        #78e4ec 60%,
        #0099b5 100%
    );
    background-size: 200% auto;
    background-position: 1% 50%;
    transition: background-position 0.35s ease, transform 0.3s ease;
}

/* hover：右方向に色がスライドする */
.contact-btn:hover {
    background-position: 99% 50%;
    transform: translateY(-3px);
}

/* アイコン画像 */
.contact-icon {
  width: 30px;
  height: auto;
  display: block;
}

/* hover */
.contact-btn:hover {
  opacity: 0.9;
  transform: translateY(-3px);
}

.broken_link, a.broken_link {
	text-decoration:none !important;
}

/* ======================================
   CONTACT セクション レスポンシブ調整
====================================== */

/* タブレット〜スマホ（幅900px以下） */
@media (max-width: 900px) {

  /* ボタンの並びを縦寄りに */
  .contact-buttons {
    gap: 24px;
  }

  .contact-btn {
    min-width: 260px;
    padding: 20px 36px;
    font-size: 18px;
  }

  .contact-icon {
    width: 26px;
  }
}

/* スマホ（幅600px以下） */
@media (max-width: 600px) {

  .contact-section {
    padding: 0 20px 50px;
  }

  .contact-title {
    font-size: 65px;
    letter-spacing: 2px;
    margin-bottom: 6px;
  }

  .contact-sub {
    font-size: 17px;
	margin-top:0;
    margin-bottom: 36px;
    line-height: 1.5;
  }
	
  .contact-buttons {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .contact-btn {
	min-width: auto !important;
	width: 90%;
    padding: 18px 20px;
    font-size: 16px;
    border-radius: 10px;
    gap: 10px;
  }

  .contact-icon {
    width: 24px;
  }

}


/* Contactここまで--------------------------- */

/* footerここから---------------------------- */
/* ==========================
   FOOTER（デザインカンプ再現）
=========================== */

.site-footer {
  width: 100%;
  background: linear-gradient(90deg, #2ca7b8, #36c0d0);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
 

.footer-company,
.footer-nav,
.footer-right-links {
  text-align: left;
}

/* 左カラム（会社情報） */
.footer-company {
  flex: 1.3;
}

.footer-logo {
  width: 120px;
  margin-top:20px;
  margin-bottom: 20px;
}

.footer-company-name {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-address,
.footer-tel {
  font-size: 14px;
  margin: 4px 0 !important;
}

/* 中央カラムのナビ */
.footer-col p {
	font-size:17px;
}

.footer-nav {
  flex: 1;
}

.footer-nav-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

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

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

/* ==========================
    ナビ ホバー下線
========================== */

/* 対象：footer-nav 内のリンク & footer-right-links 内のリンク */
.footer-nav ul li a,
.footer-right-links a {
  position: relative;
  display: inline-block;
  color: #fff;
	font-size: 15px;
	text-decoration: none;
  padding-bottom: 2px;
  transition: color 0.25s ease;
}

.footer-nav ul li a::after,
.footer-right-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.25s ease;
}

/* ホバー時に左から右へ下線が伸びる */
.footer-nav ul li a:hover::after,
.footer-right-links a:hover::after {
  width: 100%;
}


/* ▼ トップページだけ下線なし & 白文字にする */
.footer-nav-title a {
  color: #fff !important;
  text-decoration: none !important;
  position: relative;
  display: inline-block;
}

/* ▼ ホバー時は下線アニメーション（他リンクと同じ） */
.footer-nav-title a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.25s ease;
}

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


/* 右側カラム */
.footer-right-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
margin-top:20px;
}

/* .footer-right-links a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  width: 100%;
  max-width: 315px;
} */

.footer-btn {
  background: #fff;
  color: #1da7b9 !important;
  padding: 10px 20px 10px !important;
  border-radius: 5px;
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  display: inline-block;
  background: #ffffff;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

/* ▼ ホバー時：ふわっと強調 */
.footer-btn:hover {
  transform: translateY(-3px); /* 少し浮く */
  background-color: #ffffff;   /* 白のまま明るい印象 */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18); /* 影で強調 */
}

.footer-btn::after {
  display: none !important;
}

/* コピーライト */
.footer-copy {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .footer-inner {
    max-width: 350px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 45px 47px 30px;
  }

  .footer-company,
  .footer-nav,
  .footer-right-links {
    width: 100%;
    max-width: 350px;
  }
	
	.footer-right-links a {
		width:85%;
	}
	
	.footer-logo {
    margin: 0 auto 20px;
    text-align: center;
    display: block;
  }

  .footer-logo img {
    margin: 0 auto;
    display: block;
  }
}

/* footerここまで---------------------------- */


/* サブタイトルの両端の線---------------------*/
.subtitle-line {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  color: #1c97b2;
  font-weight: 600;
  font-size: 22px;
}

/* ▼ 両端の線（長さ共通：5px） */
.subtitle-line::before,
.subtitle-line::after {
  content: "";
  width: 10px;
  height: 2px;
  background-color: currentColor;
}


/* アニメーションここから---------------------------- */

/* ▼固定ヘッダー（スクロール追従） */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}

/* ▼スクロール中は透明度を落とす */
.site-header.scrolling {
  opacity: 0.65;
  backdrop-filter: blur(3px);
}

/* ▼停止時に戻る */
.site-header:not(.scrolling) {
  opacity: 1;
}


/* fv */
/* ===== FV アニメーション共通 ===== */
.fade-in-up {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateX(0);
}

/* 右側画像専用（右 → 左） */
.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in-right.show {
  opacity: 1;
  transform: translateX(0);
}

/* ▼ ニュースバー（右→左） */
.news-bar {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease-out;
}

.news-bar.show {
  opacity: 1;
  transform: translateX(0);
}


/* メイン部分 */
/* ▼ スクロール出現（下→上） */
/* ▼ ぬるっと出るスクロールアニメ */
.scroll-fade {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.85s cubic-bezier(.22, .61, .36, 1), 
              transform 0.85s cubic-bezier(.22, .61, .36, 1);
}

.scroll-fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* business_box 専用（少し重さを加える） */
.business_box.scroll-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.22, .61, .36, 1), 
              transform 1s cubic-bezier(.22, .61, .36, 1);
}

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


/* アニメーションここまで---------------------------- */





