@charset "UTF-8";
/* styles/main.scss */
/* styles/_reset.scss */
/*  Eric Meyer's Reset CSS (Sass版) */
/* 1. すべての要素のマージン・パディング・ボーダーをリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* 2. HTML5 要素をインラインブロック化 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* 3. body のラインハイト */
body {
  line-height: 1;
}

/* 4. リストのデフォルトマーカーを外す */
ol, ul {
  list-style: none;
}

/* 5. 引用符を外す */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* 6. テーブルをシンプル表示 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* styles/_mixins.scss */
/* styles/_variables.scss */
/* styles/_variables.scss */
/* フッター背景のグレー色 */
/* 文字色・リンク色など */
/* 波画像コンテナの左上丸み */
/* TOPボタンのグラデ背景 */
/* styles/_variables.scss */
/* 背景グリーンのグラデーション */
/* スライドの横幅（中央画像） */
/* 画面幅の60%を中央スライドに割り当て */
/* 左右それぞれ20%ずつ「半分見える」イメージ */
/* styles/_variables.scss */
/* グリーン背景のグラデ */
/* PC時にスライダーが横幅の何割を占めるか（ここでは 60vw として扱う） */
/* モバイル以下の高さ */
/* ブレークポイント */
/* テキストボックスの緑背景 */
/* テキスト色（白） */
/* 右縦並びボタンの背景 */
/* SVGパス（緑の流動線）色 */
/* テキスト背景アニメーション用グラデの色 (Start Your Future) */
/* 段落テキストフォントサイズ */
/* シェイプ（オレンジグラデ）のサイズ・色 */
/* 写真の影 */
/* 背景スクロール文字の色 */
/* 透けた薄いグレー */
/* スクロール文字のフォントサイズ */
/* 必要に応じて調整 */
/* スクロールの速さ（秒数） */
/* サービスコンテンツ上に乗せるカードなどの z-index */
/* 背景スクロール文字の色（薄いグレー） */
/* 背景スクロール文字のフォントサイズ */
/* 背景スクロールアニメーションの秒数 */
/* サービスコンテンツの Z-index */
/* カードスタイル用例（必要なら） */
/* ========================================
   HEADER 全体のスタイル
   - 背景は透過
   - 左：ロゴ / 右：ナビゲーション
   ======================================== */
.site-header {
  position: fixed; /* 常に画面上部に固定したい場合 */
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: transparent; /* 完全に透過 */
  isolation: isolate; /* ← これが重要！ */
  z-index: 1000; /* 他要素より前面に出す */
  /* ==========================================
     レスポンシブ：768px 以下でハンバーガーに切り替え
     ========================================== */
}
.site-header .header-logo {
  display: flex;
  align-items: center;
}
.site-header .header-logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .header-logo .logo-image {
  display: block;
  width: 60px; /* 適宜サイズを調整 */
  height: auto;
  margin-right: 0.75rem;
}
.site-header .header-logo .logo-text {
  font-feature-settings: "palt" 1;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
}
.site-header .header-nav {
  margin-right: 100px;
}
.site-header .header-nav .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header .header-nav .nav-list .nav-item {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  /* セパレーター（区切り線）のスタイル */
}
.site-header .header-nav .nav-list .nav-item.separator {
  width: 1px;
  height: 2rem;
  margin: 0 1.5rem;
  background-color: #ccc; /* 区切り線の色、お好みで調整 */
}
.site-header .header-nav .nav-list .nav-item .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333; /* リンク文字色 */
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  transition: color 0.2s;
}
.site-header .header-nav .nav-list .nav-item .nav-link small {
  font-size: 0.625rem; /* サブテキスト（人を知るなど） */
  font-weight: normal;
  line-height: 1.2;
  color: #666;
}
.site-header .header-nav .nav-list .nav-item .nav-link:hover {
  color: #00276d; /* ホバー時に濃紺に変わる */
}
@media screen and (max-width: 767px) {
  .site-header {
    padding: 0.75rem 1rem;
  }
  .site-header .header-logo .logo-image {
    width: 150px;
  }
  .site-header .header-logo .logo-text {
    display: none;
  }
  .site-header .header-nav {
    display: none; /* とりあえずモバイル時は非表示にしておく */
    /* 必要に応じてハンバーガーメニューを実装してください */
  }
}

/* c-hamburgerBtn
*************/
.c-hamburgerBtn {
  display: none;
  position: absolute;
  z-index: 2000; /* ここをヘッダーより大きく */
}

@media screen and (max-width: 767px) {
  .c-hamburgerBtn {
    display: block;
    position: absolute;
    top: 8vw;
    right: 10vw;
  }
}
/* c-hamburger
*************/
.c-hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 24px;
  width: 6.4vw;
  height: 24px;
  height: 6.4vw;
  line-height: 0;
  cursor: pointer;
  pointer-events: all;
}

.c-hamburger_vessel {
  position: relative;
  display: block;
  width: 6.4vw;
  height: 4.26vw;
}

.c-hamburger_line {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: all 0.3s ease;
}

.-is-view-service .c-hamburger_line {
  background-color: #fff;
}

.c-navHamburger .c-hamburger_line {
  background: #fff;
}

.c-hamburger_vessel .c-hamburger_line:nth-of-type(1) {
  top: 6px;
  top: 1.6vw;
}

.c-hamburger_vessel .c-hamburger_line:nth-of-type(2) {
  bottom: 5px;
  bottom: 1.33vw;
}

.c-hamburgerBtn.-is-active .c-hamburger_vessel .c-hamburger_line:nth-of-type(1),
.c-navHamburger_close.-is-active .c-hamburger_vessel .c-hamburger_line:nth-of-type(1) {
  top: 0;
  transform: translateY(7.5px) rotate(30deg);
  transform: translateY(2vw) rotate(30deg);
}

.c-hamburgerBtn.-is-active .c-hamburger_vessel .c-hamburger_line:nth-of-type(2),
.c-navHamburger_close.-is-active .c-hamburger_vessel .c-hamburger_line:nth-of-type(2) {
  bottom: 0;
  transform: translateY(-7.5px) rotate(-30deg);
  transform: translateY(-2vw) rotate(-30deg);
}

.c-navHamburgerW {
  -webkit-clip-path: inset(0% 100% 0% 0%);
  clip-path: inset(0% 100% 0% 0%);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.c-navHamburgerW_vessel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00bb7f;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.c-navHamburgerW_vessel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* c-hamburger
*************/
.c-navHamburger {
  position: relative;
  padding: 30.66vw 10.66vw 24vw 10.66vw;
}

.c-navHamburger_close {
  position: absolute;
  top: 5.86vw;
  right: 8vw;
}

.c-navHamburger_list {
  font-size: max(6.4vw, 24px);
  font-family: "Chillax", sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.c-navHamburger_listItems .c-navHamburger_listItemsInner {
  display: inline-block;
}

.c-navHamburger_listItems.-small {
  font-size: max(3.73vw, 14px);
  letter-spacing: 0.05em;
}

.c-navHamburger_listItems + .c-navHamburger_listItems {
  margin-top: 8vw;
}

.c-navHamburger_listItems.-small + .c-navHamburger_listItems.-small {
  margin-top: 4.26vw;
}

.c-navHamburger_listItems + .c-navHamburger_listItems.-small {
  margin-top: 17.33vw;
}

.c-navHamburger_listA {
  color: #fff;
  display: inline-block;
  line-height: 1;
}

/* 初期状態（非表示） */
.c-navHamburgerW {
  opacity: 0;
  clip-path: inset(0% 100% 0% 0%);
  transition: clip-path 0.4s ease, opacity 0.4s ease;
}

/* メニューを開いた時 */
.c-navHamburgerW.-is-active {
  opacity: 1;
  clip-path: inset(0% 0% 0% 0%);
}

/* styles/_mixins.scss */
/* styles/_firstview.scss */
.firstview {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  /* styles/_firstview.scss */
  /* 既存の background や写真配置の下あたりに追記してください */
  /* ─ Swiper スライダー ─ */
  /* ─ テキストボックス ─ */
  /* ── AOS のフェードイン用を少し調整 ── */
}
.firstview::before {
  content: "";
  position: absolute;
  /* インセットで左右上下を 15% ずつ空ける方法 */
  top: 10%;
  left: 1%;
  right: 1%;
  bottom: 1%;
  min-height: 600px;
  background-attachment: fixed; /* 必要に応じて */
  background: url("../assets/images/fv_shape.png") no-repeat center top/1820rem auto;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .firstview::before {
    display: none;
  }
}
.firstview .firstview-swiper {
  position: relative;
  width: 100%;
  height: 200px; /* 好きな高さに */
  overflow: visible; /* はみ出しを見せる */
  /* 前後のスライドも少し離したいときに調整 */
  /* ナビ矢印 */
}
.firstview .firstview-swiper .swiper-wrapper {
  top: 3%;
  display: flex;
  /* ← flex-start から center に変えると、縦中央寄せになり
     スケールアップしても上部が切れなくなります */
  height: auto;
  align-items: center;
  overflow: visible;
}
.firstview .firstview-swiper .swiper-slide {
  top: 15%;
  flex: 0 0 35%; /* 幅は30%を目安に */
  margin: 3% 3%; /* 左右スライドと中央スライドをくっつけずに */
  opacity: 1;
  position: relative;
  z-index: 1; /* デフォルト */
  transition: transform 0.4s ease, opacity 1s ease;
}
@media screen and (max-width: 768px) {
  .firstview .firstview-swiper .swiper-slide {
    flex: 0 0 100%; /* 幅は30%を目安に */
    margin: 0;
  }
}
.firstview .firstview-swiper .swiper-slide-active {
  transform: scale(1.2); /* 中央スライドを少し拡大 */
  opacity: 1; /* フル不透明 */
  z-index: 3; /* 最前面に */
}
.firstview .firstview-swiper .swiper-slide-prev,
.firstview .firstview-swiper .swiper-slide-next {
  opacity: 1;
  z-index: 2;
}
.firstview .firstview-swiper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .firstview .firstview-swiper img {
    padding-top: 30px;
    border-radius: 0px;
    width: 100%;
  }
}
.firstview .firstview-swiper .swiper-button-prev,
.firstview .firstview-swiper .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .firstview .firstview-swiper .swiper-button-prev,
  .firstview .firstview-swiper .swiper-button-next {
    display: none;
  }
}
.firstview .firstview-swiper .swiper-button-prev {
  left: 10px;
}
.firstview .firstview-swiper .swiper-button-next {
  right: 10px;
}
.firstview .firstview-swiper {
  top: 20%;
  position: relative;
  z-index: 2; /* 背景の上 */
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .firstview .firstview-swiper {
    top: 12%;
  }
}
.firstview .firstview-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}
.firstview .firstview-swiper .swiper-button-prev,
.firstview .firstview-swiper .swiper-button-next {
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.firstview .firstview-swiper .firstview-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.2rem;
  z-index: 3;
}
.firstview .firstview-text {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}
.firstview .firstview-text .fv-line {
  display: inline-block;
  background: rgba(0, 0, 0, 0.4);
  padding: 12px 20px;
  margin: 8px 0;
  font-size: 2.5rem;
  font-weight: bold;
  border-radius: 4px;
}
.firstview [data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}
.firstview [data-aos].aos-animate {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .firstview {
    height: 120vw;
    margin-top: 4.2rem;
    background: url("../assets/images/sp_bg.png");
    /* スマホでは画像全体を必ず見せる */
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat;
  }
}

/* styles/_mixins.scss */
/* styles/_aboutus.scss */
.aboutus-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 5%;
  background: url("../assets/images/about_bg.png") center center/cover no-repeat;
  /* 1) 背景に薄いノイズテクスチャを敷く（任意） */
  /* 2) 左側の画像とオレンジシェイプ */
  /* 3) 右側の画像とオレンジシェイプ */
  /* 4) 中央コンテンツ（タイトル＋テキスト） */
}
.aboutus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08; /* 必要に応じて調整 */
  z-index: 1;
}
.aboutus-section .aboutus-left {
  position: absolute;
  top: 25%;
  left: 25%;
  width: 160px;
  height: 260px;
  z-index: 3;
}
.aboutus-section .aboutus-left img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.aboutus-section .aboutus-right {
  position: absolute;
  top: 35%;
  right: 25%;
  width: 160px;
  height: 260px;
  z-index: 3;
  /* オーバーレイのオレンジグラデシェイプ */
}
.aboutus-section .aboutus-right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.aboutus-section .aboutus-content {
  position: relative;
  max-width: 80%;
  margin: 0 auto;
  z-index: 4;
  text-align: center;
  padding: 5% 0; /* 画像より少し下にテキストが来るように余白 */
  /* 4-1) アニメーション付きのヘッダー */
  /* 4-1) アニメーション付きのヘッダー */
  /* グラデーションが左右に移動するアニメーション */
  /* 4-2) サブタイトル（日本語テキスト） */
  /* 4-3) 段落テキスト */
  /* 4-4) 最後の補足テキスト（もしあれば） */
}
.aboutus-section .aboutus-content .animated-title {
  font-size: 3rem;
  height: 8vw;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
  /* テキストのグラデーションをクリップして、動かす */
  background: linear-gradient(90deg, #7acf71 0%, #12410e 50%, #22abff 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}
@media screen and (max-width: 767px) {
  .aboutus-section .aboutus-content .animated-title {
    height: auto;
  }
}
.aboutus-section .aboutus-content .animated-title::before {
  content: none;
}
.aboutus-section .aboutus-content .animated-title2 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
  color: white;
  /* テキストのグラデーションをクリップして、動かす */
  background: linear-gradient(90deg, #1a5f29 0%, #5383bd 50%, #22ffa5 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}
@media screen and (max-width: 767px) {
  .aboutus-section .aboutus-content .animated-title2 {
    font-size: 1.4rem;
  }
}
.aboutus-section .aboutus-content .animated-title2::before {
  content: none;
}
@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.aboutus-section .aboutus-content .subtitle {
  font-family: "A1 Gothic M", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.85rem;
  color: #333333;
  margin-bottom: 32px;
}
.aboutus-section .aboutus-content .underline-animate::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1em;
  background-color: rgb(29, 117, 29);
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 0.6s ease-out forwards;
}
@keyframes underline-in {
  to {
    transform: scaleX(1);
  }
}
.aboutus-section .aboutus-content .description {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 24px;
  font-size: 1.4rem;
  line-height: 2;
  font-weight: 500;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  /* 自動的に改行されるようにする */
  word-break: break-word;
}
.aboutus-section .aboutus-content .description:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .aboutus-section .aboutus-content {
    padding-top: 20px;
  }
  .aboutus-section .aboutus-content .animated-title {
    font-size: 2rem;
  }
  .aboutus-section .aboutus-content .subtitle {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .aboutus-section .aboutus-content .description {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 90%;
  }
}

/* styles/_mixins.scss */
/* styles/_service-01.scss */
.service-01 {
  background: linear-gradient(135deg, #f9f9f9 0%, #efefef 100%);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  /* ============================
     ● Flexbox で構築するカード本体
     ============================ */
  /* モバイル時にはカードを縦並びにする */
}
.service-01 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}
.service-01 .service-title {
  font-size: 1.6em;
  font-weight: 700;
}
.service-01 .service-01-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.service-01 .center {
  /* クラス名が services-title として使われる想定 */
  width: 100%; /* ブロック要素として幅いっぱいに */
  text-align: center; /* 横方向に中央揃え */
  position: relative;
  z-index: 10; /* 必要なら前面に出す */
}
.service-01 .service-01-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  min-height: 420px;
  /* ● カード上に半分はみ出すラベル */
  /* ============================
     ● 左側：画像ラッパー（Flexアイテム）
     ============================ */
  /* ============================
     ● 右側：テキスト部分（Flexアイテム）
     ============================ */
  /* モバイル時にはカードを縦並びにする */
}
.service-01 .service-01-card .service-label {
  position: absolute;
  top: -2rem;
  right: 2rem;
  display: flex;
  align-items: baseline;
  z-index: 3;
}
.service-01 .service-01-card .service-label .label-en {
  font-size: 2rem;
  color: #88dd60;
  margin-right: 0.5rem;
}
.service-01 .service-01-card .service-label .label-no {
  font-size: 4.5rem;
  font-weight: bold;
  color: #88dd60;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .service-01 .service-01-card .service-label {
    /* モバイルではカード内に収める */
    position: static;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
  }
  .service-01 .service-01-card .service-label .label-en {
    font-size: 1.2rem;
  }
  .service-01 .service-01-card .service-label .label-no {
    font-size: 1.6rem;
  }
}
.service-01 .service-01-card .service-image-wrapper {
  flex: 0 0 50%;
  margin-left: -3vw;
  z-index: 2;
  overflow: hidden;
  border-radius: 8px;
}
.service-01 .service-01-card .service-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  /* 初期状態で横方向に少し縮めておき、フェードイン・スライドインを CSS アニメで表現 */
  transform: translateX(-20%);
  opacity: 0;
  animation: slideInAndFade 1s ease-out forwards;
  animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .service-01 .service-01-card .service-image-wrapper {
    /* モバイルでは“飛び出し”解除し、縦並びに変更 */
    flex: 0 0 100%;
    margin-left: 0;
    border-radius: 0px;
  }
  .service-01 .service-01-card .service-image-wrapper img {
    transform: translateX(0);
    opacity: 1;
    animation: none;
  }
}
.service-01 .service-01-card .card-content {
  flex: 1;
  padding: 3rem 2rem;
}
@media screen and (max-width: 767px) {
  .service-01 .service-01-card .card-content {
    padding: 2rem 1rem;
  }
}
.service-01 .service-01-card .card-content .service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-01 .service-01-card .card-content .service-text .service-description {
  font-size: 1.2rem;
  line-height: 2;
  color: #333;
  margin-bottom: 2rem;
}
.service-01 .service-01-card .card-content .service-text .service-merits .merits-heading {
  font-size: 1.6rem;
  font-weight: bold;
  color: #d7d7d7;
  position: relative;
  margin-bottom: 1rem;
}
.service-01 .service-01-card .card-content .service-text .service-merits .merits-heading::after {
  content: "";
  position: absolute;
  bottom: -0.3rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #00276d;
}
.service-01 .service-01-card .card-content .service-text .service-merits .merits-list {
  list-style: none;
  margin-top: 1.5rem;
}
.service-01 .service-01-card .card-content .service-text .service-merits .merits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: #333;
  line-height: 1.8;
}
.service-01 .service-01-card .card-content .service-text .service-merits .merits-list li .icon-check {
  display: inline-block;
  color: #ffb400;
  font-size: 1.4rem;
  margin-right: 0.8rem;
  line-height: 1;
}
.service-01 .service-01-card .card-content .service-text .service-button-wrapper {
  margin-top: 2.5rem;
}
.service-01 .service-01-card .card-content .service-text .service-button-wrapper .btn-service-detail {
  display: inline-block;
  background-color: #00276d;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
}
.service-01 .service-01-card .card-content .service-text .service-button-wrapper .btn-service-detail:hover {
  background-color: #001a4d;
}
@media screen and (max-width: 767px) {
  .service-01 .service-01-card .card-content .service-text .service-title {
    font-size: 1.1rem;
    text-align: center;
  }
  .service-01 .service-01-card .card-content .service-text .service-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  .service-01 .service-01-card .card-content .service-text .service-merits .merits-heading {
    font-size: 1.4rem;
    text-align: center;
  }
  .service-01 .service-01-card .card-content .service-text .service-merits .merits-list li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
  .service-01 .service-01-card .card-content .service-text .service-button-wrapper {
    text-align: center;
  }
  .service-01 .service-01-card .card-content .service-text .service-button-wrapper .btn-service-detail {
    width: 100%;
    padding: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .service-01 .service-01-card {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .service-01 {
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f9f9f9 0%, #efefef 100%);
    position: relative;
    overflow: hidden;
  }
}

/* =========================================
   左からスライドインしてフェードインするアニメ
   ========================================= */
@keyframes slideInAndFade {
  0% {
    transform: translateX(-20%); /* 少し左側にはみ出し */
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateX(0); /* 本来の位置に */
    opacity: 1;
  }
}
/* -------------------------------
   1) サービスカード全体のスタイル
   ------------------------------- */
.services-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px; /* 背景文字との隙間など */
  position: relative;
  z-index: 10; /* 背景より前面 */
}

/* -------------------------------
   2) サービスカード個々のスタイル例
   ------------------------------- */
.service-card {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .service-card {
    /* モバイル時の微調整 */
    margin: 0 auto;
    max-width: 90%;
  }
}

.service-desc {
  font-size: 1rem;
  color: #555555;
  margin: 0 16px 16px 16px;
  line-height: 1.5;
}

/* -------------------------------
   3) 画像アニメーション部分
   ------------------------------- */
/* 3-1) 画像を包むラッパー */
.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 アスペクト比例（必要に応じて変更） */
  overflow: hidden;
}

/* 3-2) 先に表示される緑オーバーレイ */
.service-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 0; /* アニメ開始時は幅 0 から */
  height: 100%;
  background-color: #00c853; /* 緑色 */
  z-index: 2;
  transition: none; /* keyframes で制御 */
}

/* 3-3) 実画像 */
.service-img {
  position: absolute;
  top: 0;
  left: -100%; /* 初期位置を左外(−100%)に */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: none; /* keyframes で制御 */
  opacity: 0; /* 初期は透明で隠しておく */
}

/* 3-4) アクティブクラス (js で付与) */
.service-img-wrapper.active .service-img-overlay {
  animation: overlay-expand 1s ease forwards;
}

.service-img-wrapper.active .service-img {
  animation: image-slide-in 1s ease forwards 0.5s; /* 0.5s 遅延して画像がスライド */
}

/* 3-5) キーフレーム定義 */
@keyframes overlay-expand {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes image-slide-in {
  0% {
    left: -100%;
    opacity: 0;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
/* 3-6) モバイル時の調整 */
@media screen and (max-width: 767px) {
  .service-img-wrapper {
    padding-bottom: 75%; /* モバイルでは別のアスペクト比例 */
  }
}
.service-01 {
  /* ──────────────────────────────────────────
     1) 背景スクロール文字 (marquee) のコンテナ
     ────────────────────────────────────────── */
}
.service-01 .services-bg-marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* セクション全体の高さを確保する */
  height: 100%;
  pointer-events: none; /* クリック不可 */
  z-index: 1;
  /* 各行を絶対配置して上下に並べる */
  /* ── 各行の Y 座標をずらして重ならないようにする ── */
  /* ── キーフレーム ── */
}
.service-01 .services-bg-marquee .marquee-row {
  position: absolute;
  left: 0;
  white-space: nowrap;
  width: 200%; /* 200% にして繰り返し流しやすくする */
  /* デフォルト：左へ流すアニメーション */
  animation: marquee-left 20s linear infinite;
}
.service-01 .services-bg-marquee .marquee-row span {
  display: inline-block;
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.05);
  font-weight: bold;
  margin-right: 4rem;
}
@media screen and (max-width: 767px) {
  .service-01 .services-bg-marquee .marquee-row span {
    font-size: 3rem;
    margin-right: 2rem;
  }
}
.service-01 .services-bg-marquee .marquee-row.row1 {
  top: 25%;
}
.service-01 .services-bg-marquee .marquee-row.row2 {
  top: 45%;
  /* 逆方向（右へ流す）にする場合の初期 transform をセットする */
  transform: translateX(-50%);
  animation: marquee-right 20s linear infinite;
}
.service-01 .services-bg-marquee .marquee-row.row3 {
  top: 65%;
}
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.service-01:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
@media screen and (max-width: 767px) {
  .service-01 img {
    height: 140px;
  }
  .service-01 h3 {
    font-size: 1.1rem;
    margin: 12px;
  }
  .service-01 p {
    font-size: 0.9rem;
    margin: 0 12px 12px 12px;
  }
}

/* styles/_mixins.scss */
/* styles/_company.scss */
.section-company {
  background-color: #ffffff;
  padding: 8rem 2rem;
  text-align: center;
  /* モバイル (<767px) でテーブルを縦並び */
}
.section-company h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .section-company h2 {
    font-size: 1.6rem;
  }
}
.section-company .company-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.section-company .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  color: #555;
  text-align: left;
  line-height: 1.6;
}
.section-company .company-table th,
.section-company .company-table td {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e0e0e0;
  vertical-align: middle;
}
.section-company .company-table th {
  font-weight: 700;
  width: 30%;
  color: #333;
}
.section-company .company-table td {
  font-weight: 500;
  width: 70%;
}
@media screen and (max-width: 767px) {
  .section-company .company-table,
  .section-company .company-table tbody,
  .section-company .company-table tr,
  .section-company .company-table th,
  .section-company .company-table td {
    font-size: max(2.26vw, 14px);
    width: 100%;
  }
  .section-company .company-table tr {
    margin-bottom: 1.5rem;
  }
  .section-company .company-table th {
    width: 42%;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }
  .section-company .company-table td {
    margin-bottom: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-company {
    padding: 2rem 2rem;
  }
}
.section-company .m-top-col__minttl {
  font-size: 0.9rem;
}

/* styles/_mixins.scss */
/* styles/_gallery.scss */
.gallery {
  padding: 2rem 0;
  overflow: hidden;
  /* 上段を左へスクロール */
  /* 下段を右へスクロール */
  /* ===============================
     ループさせるための keyframes
     =============================== */
  /* モバイル時 (767px 以下) はグリッド表示に切り替え */
}
.gallery .gallery-row {
  display: flex;
  /* 子要素を自然な幅で並べるため幅指定はしない */
  /* ただし、余白が気になる場合は parent に padding を入れるか各アイテムの margin で調整 */
  /* アニメーションのセットアップ */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.gallery .row-top {
  animation-name: scroll-left;
  animation-duration: 30s;
}
.gallery .row-bottom {
  animation-name: scroll-right;
  animation-duration: 30s;
  margin-top: 1rem;
}
.gallery .gallery-item {
  flex: 0 0 auto;
  width: 300px;
  margin-right: 16px;
  border-radius: 4px;
  overflow: hidden;
}
.gallery .gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  /* ちょうど「5 枚分 + 余白 4 回分」を左へ移動すれば、折り返して同じ見え方になる */
  100% {
    transform: translateX(-1080px);
    /* (画像幅200px + margin16px) × 5 枚 = 1080px を移動 */
  }
}
@keyframes scroll-right {
  0% {
    transform: translateX(-1080px);
  }
  100% {
    transform: translateX(0);
  }
}
@media screen and (max-width: 767px) {
  .gallery .gallery {
    padding: 2rem 0;
    /* ● 両行まとめて同じ挙動にするなら .gallery-row だけ一つ残すか、
         ここでは上段 row-top を使う前提で row-bottom を非表示に */
  }
  .gallery .gallery .row-bottom {
    display: none;
  }
  .gallery .gallery .gallery-row {
    display: flex; /* グリッドではなくフレックスで横スクロール */
    flex-wrap: nowrap; /* 折り返さず一列に並べる */
    overflow: hidden; /* はみ出し部分を隠す */
    /* 横方向に右→左へ流れるアニメはそのまま再利用 */
    animation-name: scroll-left;
    animation-duration: 20s; /* スピードを少し速めてもOK */
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }
  .gallery .gallery .gallery-item {
    flex: 0 0 auto; /* auto幅で並べる */
    width: 60%; /* 画面幅の60%を１枚の幅に。必要に応じて調整 */
    margin-right: 16px; /* アイテム間のすきま */
  }
}

/* styles/_mixins.scss */
/* styles/_contact.scss */
.contact {
  position: relative;
  width: 100%;
  /* ベースの緑色。画像サンプルに近いトーンを使う */
  background-color: #52836e;
  text-align: center;
  /* 上に薄い白ドットを等間隔に敷き詰める */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.15) 2px, transparent 1px);
  background-size: 10px 10px;
  /* もしドットが細かすぎる／大きすぎる場合は background-size を 8px 8px, 12px 12px などに調整してみてください */
  /* 文字を白にすると見やすい */
  color: #ffffff;
  /* 上下左右に適度な余白をとる（例）*/
  padding: 80px 20px;
  /* 例：Contact 見出し */
  /* 例：サブテキスト */
  /* 例：ボタン */
  /* ── モバイル対応 ── */
}
.contact .contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}
.contact .contact-sub {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 32px;
}
.contact .contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background-color: #ffffff;
  color: #00A651;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.contact .contact-button:hover {
  background-color: rgba(255, 255, 255, 0.85);
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 16px;
  }
  .contact .contact-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
  .contact .contact-sub {
    font-size: 0.9rem;
    margin-bottom: 24px;
  }
  .contact .contact-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* styles/_mixins.scss */
.site-footer {
  /* ① フッター背景はグレー＋波画像のまま */
  position: relative;
  background-color: #dfe7e4;
  background-image: url("../assets/images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  /* フッター全体を縦長にするため padding-top と padding-bottom を増やす */
  padding-bottom: 24px; /* 以前は 24px、下部の余白も広げる */
  color: #333333;
  overflow: hidden;
  /* ② 波画像の下に本文を重ねる */
  /* ③ コピーライト部分（フッター本文の下に余白を取りつつ配置） */
  /* ④ 右下に常時表示する TOP ボタン */
  /* ⑤ モバイルレスポンシブ (<767px) */
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: -40px auto 0 auto; /* 波との重なりを維持 */
  padding: 60px 20px; /* 以前は 60px 20px。ここを上下 80px にして縦長化 */
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center; /* 縦方向の中央揃えを強制 */
  flex-wrap: wrap;
  /* －－－ 左側のエリア：ロゴ + 会社情報 + TEL/FAX －－－ */
  /* －－－ 右側のエリア：フッターリンク（横並び、縦中央） －－－ */
}
.site-footer .footer-inner .footer-left {
  display: flex;
  flex-wrap: wrap;
  max-width: 600px;
}
.site-footer .footer-inner .footer-left .footer-logo {
  width: 150px;
  margin-right: 24px;
}
.site-footer .footer-inner .footer-left .footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer .footer-inner .footer-left .footer-company {
  flex: 1 1 auto;
  margin-right: 24px;
}
.site-footer .footer-inner .footer-left .footer-company .company-name {
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #333333;
}
.site-footer .footer-inner .footer-left .footer-company .company-address {
  color: #333333;
  line-height: 1.5;
}
.site-footer .footer-inner .footer-left .footer-contact {
  flex: 0 0 auto;
}
.site-footer .footer-inner .footer-left .footer-contact p {
  margin: 0;
  line-height: 1.5;
  color: #333333;
}
.site-footer .footer-inner .footer-nav {
  align-items: center; /* 縦方向の中央揃え */
  flex-wrap: wrap;
}
.site-footer .footer-inner .footer-nav .footer-nav-link {
  margin-left: 2rem;
  text-decoration: none;
  font-size: 1rem;
  color: #333333;
  white-space: nowrap;
  position: relative;
}
.site-footer .footer-inner .footer-nav .footer-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #8d9290;
  transition: width 0.25s ease;
}
.site-footer .footer-inner .footer-nav .footer-nav-link:hover::after {
  width: 100%;
}
.site-footer .footer-inner .footer-nav .footer-nav-link:first-of-type {
  margin-left: 0;
}
.site-footer .footer-bottom {
  margin-top: 40px; /* 以前は 24px → 余白を増やしても上下のバランスを取る */
  text-align: center;
  font-size: 0.875rem;
  color: #333333;
  position: relative;
  z-index: 2;
}
.site-footer .footer-bottom p {
  margin: 0;
  line-height: 1.5;
}
.site-footer .btn-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2a455f 0%, #44688a 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2000;
  cursor: pointer;
  transition: transform 0.2s;
}
.site-footer .btn-scroll-top:hover {
  transform: translateY(-4px);
}
@media screen and (max-width: 767px) {
  .site-footer {
    /* フッター全体の padding はそのまま維持 */
  }
  .site-footer .footer-inner {
    margin: -20px auto 0 auto; /* モバイルは波との重なりを少し減らす */
    padding: 40px 1rem; /* モバイルでは上下 padding を 40px に縮小 */
    flex-direction: column;
    align-items: center;
  }
  .site-footer .footer-inner .footer-left {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .site-footer .footer-inner .footer-left .footer-logo {
    margin-bottom: 1rem;
    width: 120px;
  }
  .site-footer .footer-inner .footer-left .footer-company {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .site-footer .footer-inner .footer-left .footer-contact {
    margin-bottom: 1.5rem;
  }
  .site-footer .footer-bottom {
    margin-top: 24px;
    font-size: 0.75rem;
    padding: 0 1rem;
  }
  .site-footer .btn-scroll-top {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
    font-size: 1rem;
  }
}
.site-footer ul.footer-menu li {
  font-size: 14px;
  display: inline;
}
.site-footer .pcview {
  /* ⑤ モバイルレスポンシブ (<767px) */
}
@media screen and (max-width: 767px) {
  .site-footer .pcview {
    display: none;
  }
}
.site-footer .spview {
  display: none;
}
@media screen and (max-width: 767px) {
  .site-footer .spview {
    display: block;
  }
}

/* _preloader.scss など分けてもOK */
#page-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff; /* 白でもグラデでも */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* 何より前面 */
  opacity: 1;
  transition: opacity 1.2s ease;
}

#page-preloader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.preloader-logo {
  width: 120px; /* 好きな大きさに */
  height: auto;
}

#page-preloader.is-hidden {
  animation: fadeOut 1.2s ease;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}
h2 {
  position: relative;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 1em;
}

body {
  font-family: YakuHanJP, "dnp-shuei-gothic-gin-std", sans-serif;
}

.br-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .br-sp {
    display: block;
  }
}
a {
  color: #000;
  text-decoration: none;
  word-wrap: break-word;
  transition: all 0.3s ease;
}

.mb-del {
  /* ⑤ モバイルレスポンシブ (<767px) */
}
@media screen and (max-width: 767px) {
  .mb-del {
    display: none;
  }
}

/*# sourceMappingURL=main.css.map */
