@charset "utf-8";

/*------------------------------------------------------------
    Reset & Base
------------------------------------------------------------*/
* {
    box-sizing: border-box;
}

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, font, 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, figure {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    font-family: "Noto Serif JP", serif;
	letter-spacing: 0.1em;
}

/* ★ 基本スタイル（スマホ基準） */
body {
    color: #FFF;
    background-color: #363B51;
    line-height: 2;
    font-size: 16px;
}

/* PC以上の文字サイズ調整 */
@media (min-width: 1240px) {
    body {
        font-size: 18px;
    }
}

ol, ul {
    list-style: none;
}

img {
    vertical-align: top;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
}

/* フォーム関連 */
input[type=text],
input[type=email],
input[type=tel],
textarea {
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 4px;
    width: 100%;
    outline: none;
    font-size: 16px; /* 1.6remだと計算がややこしいのでpx推奨 */
}

/*------------------------------------------------------------
    Utility / Layout
------------------------------------------------------------*/
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.pc { display: none; }
.sp { display: block; }

/* PC画面（768px以上）での表示切り替え */
@media (min-width: 768px) {
    .pc { display: block; }
    .sp { display: none; }
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

/*------------------------------------------------------------
    Header / Navigation
------------------------------------------------------------*/
header {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 100px;
    left: 0;
    top: 0;

}

.logo {
    display: block;
    position: absolute;
    width: 60%;
    top: 17%;
    left: 3%;
}

.logo img {
    width: 100%;
    height: auto;
}

/* ナビゲーションメニュー */
.navi {
    position: fixed;
    top: 0;
    /* スマホ（デフォルト）の位置 */
    left: 20%; 
    right: 0;
    bottom: 0;
    transform: translateX(100%); /* 画面外へ */
    transition: transform 0.4s ease;
    background-color: #363B51;
    z-index: 1000;
    padding-top: 100px;
    box-sizing: border-box;
}

.navi.active {
    transform: translateX(0); /* スライドイン */
}

.menu-list {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0 20px;
    align-items: center;
}

.menu-item {
    width: 100%;
    padding: 20px 0;
    text-align: center;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
	border-bottom: 1px solid #666;
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}


/* ハンバーガーボタン */
.menu-butoon {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 40px;
    z-index: 1001;
    cursor: pointer;
    background: transparent;
}

.menu-butoon span {
    display: block;
    position: absolute;
    width: 50px;
    height: 6px;
    background-color: #A5CADD;
    border-radius: 4px;
    transition: all 0.4s ease;
    left: 0;
}

.menu-butoon-bar-up { top: 10px; }
.menu-butoon-bar-bottom { bottom: 10px; }

.menu-butoon.active .menu-butoon-bar-up {
    top: 50%;
    margin-top: -4px;
    transform: rotate(45deg);
}

.menu-butoon.active .menu-butoon-bar-bottom {
    bottom: 50%;
    margin-bottom: -4px;
    transform: rotate(-45deg);
}

/* PC調整 (Header/Nav) */
@media (min-width: 768px) {
    .logo {
        width: 20%;
        top: 25%;
    }
    .navi {
        left: 50%; /* PCでのナビ位置 */
    }
	.menu-butoon {
		right: 40px;
		width: 60px;
		height: 50px;

	}
	.menu-butoon span {
		width: 60px;
		height: 8px;
	}

}
/* ------------------------------------------
   Footer
------------------------------------------ */

/* ベース（スマホ） */
.footer {
	border-top: 7px #A5CADD solid;
	background-color: #2b2f42; /* bodyより少し濃い色などで区別 */
	color: #fff;
	padding: 60px 0 20px;
	margin-top: auto; /* コンテンツが少ない時も下部に配置 */
	z-index: 1;
	position: relative
}

/* インナー（幅制限） */
.footer__inner {
  width: 100%;
  max-width: 1240px; /* サイト全体の幅に合わせる */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column; /* スマホは縦並び */
  align-items: center;    /* 中央揃え */
  gap: 40px;              /* 上下の間隔 */
}

/* --- 左側：会社情報 --- */
.footer__info {
  text-align: center; /* スマホは文字中央 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer__logo {
  display: block;
  width: 250px; /* ロゴサイズ調整 */
}

.footer__logo img {
  width: 100%;
  height: auto;
}

.footer__address {
  font-size: 14px;
  opacity: 0.8;
}

.footer__copyright {
  font-size: 12px;
  opacity: 0.6;
  margin-top: 10px;
}

/* --- 右側：ナビゲーション --- */
.footer__nav {
  width: 100%;
	display: none;
}

.footer__nav-list {
  display: flex;
  flex-direction: column; /* スマホは縦並び */
  gap: 20px;
  align-items: center;
  list-style: none;
}

.footer__nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

/* -------------------------------------------
   PC対応 (768px以上)
------------------------------------------- */
@media (min-width: 768px) {
  
  .footer__inner {
    flex-direction: row; /* 横並びにする */
    justify-content: space-between; /* 左右に離す */
    align-items: flex-start; /* 上揃え */
    padding: 0 40px;
  }

  /* 会社情報（左） */
  .footer__info {
    align-items: flex-start; /* 左揃え */
    text-align: left;
    width: 40%;
  }
  
  .footer__copyright {
    margin-top: 0px;
  }

  /* ナビゲーション（右） */
  .footer__nav {
    width: auto;
  }

  .footer__nav-list {
    flex-direction: row; /* 横並び */
    gap: 30px;
  }
  
  /* メニュー項目を少し大きく */
  .footer__nav-link {
    font-size: 15px;
  }
.footer__nav {
  width: 100%;
	display: block
}
}
/*------------------------------------------------------------
    Headings (h2, h3)
------------------------------------------------------------*/
/* デフォルト（スマホ） */
h2.title {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 40px;
    position: relative;
	color: #363B51;
	line-height: 1.4;

}

h2.title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background:#A5CADD;
    margin: 20px auto 0;
    border-radius: 2px;
}

h3.subtitle {
    text-align: left;
    font-size: 18px; /* スマホサイズ */
    font-weight: bold;
    margin-bottom: 20px;
    border-left: 6px solid #A5CADD;
    padding-left: 15px;
    line-height: 1.4;
}

/* PCサイズ上書き */
@media (min-width: 768px) {
    h2.title {
        font-size: 36px;
        margin-bottom: 40px;

    }
    h3.subtitle {
        font-size: 22px;
    }
}

/*------------------------------------------------------------
    Hero Section (First View)
------------------------------------------------------------*/

.hero{
	position: fixed;
	width: 100%;
	height: 100vh;   /* 古いブラウザ用の保険 */
	overflow: hidden;
	top:0;
	left: 0;
}

.hero__video{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero__content{
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100vh;
	color: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;


}
.hero-inner{
	position: absolute;
	bottom: 8%;
	width: 100%;
	left: 0;
	padding: 0 2%;
}
.hero-title-jp{
	font-size: 140%;
	font-weight: 700;
	line-height: 1.2;
	width: 100%;

	margin-bottom: 2vw
}
.hero-title-en{
	font-size: 300%;
	font-weight: 800;
	line-height: 1;
	font-family: "Figtree", sans-serif;
	width: 100%;
	letter-spacing: 0rem;
	opacity: 0.93;
	/* ★ 白も混ぜてメリハリつけたグラデーション */
	background: linear-gradient(
		230deg,
		#4DFFFF 0%,
		#ffffff 20%,
		#A5CADD 50%,
		#ffffff 80%,
		#181B39 97%,
		#4DFFFF 100%
	);
	/* ★ グラデーションを広めにして動かす */
	background-size: 250% 250%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	/* Safari 対策（必要なら） */
	-webkit-text-fill-color: transparent;

	margin-bottom: 4vw;


	/* ★ 波のように流れるアニメーションを付与 */
	animation: gradient-wave 12s ease-in-out infinite;
}

/* グラデーションが左右にゆらゆら動く */
@keyframes gradient-wave {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.hero-text{
	font-size: 70%;
	margin-bottom: 3vw;
}
.hero img {
    width:100%;
    height: auto;
}

.hero-banner-doda {


}

@media (min-width: 768px) {
	.hero{
	  min-height: 100vh;
	}
	.hero-title-en{
		font-size: 620%;
		line-height: 1.1;

		margin-bottom: 1%;
	}
.hero-inner{

	bottom: 4%;


}
    .hero-banner-doda {
		max-width: 660px;
		padding-top: 4%
    }
	.hero-text{
		font-size: 90%;
		margin-bottom: 0vw;
	}
}
@media (max-width: 380px) {
.hero-title-en{
	font-size: 250%;
	
	}
}
/*------------------------------------------------------------
    Swiper
------------------------------------------------------------*/
.intro-section {
	position: relative;
	padding: 70px 0;
	z-index: 10;
	background: #363B51;
	color:#FFF;
}
.intro-section h2{
	color: #FFF
}
.intro-section p{
    margin-bottom: 50px;
	text-align:left;
}
.swiper {
    width: 100%;
    padding-bottom: 50px;
}

.swiper-slide {
    text-align: center;

}

.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-slide p {
    margin-top: 15px;
	text-align: center;
    font-size: 15px;
    color: #FFF;
}

.swiper-pagination-bullet-active {
    background-color: #007aff;
}
.intro-section .btn_wh{
	margin: 40px auto 0 auto;
	display: block;
	width: 250px;
}
/* PC調整 (Swiper Margin) */
@media (min-width: 768px) {
    .intro-section {

    }
	.intro-section p{
		text-align:center;
	}
}

/*------------------------------------------------------------
    Article Grid (3列レイアウト)
------------------------------------------------------------*/
/* ベース（スマホ）: 1列・縦積み */
.article-grid {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-grid__item {
    display: flex;
    flex-direction: column; /* 縦積み */
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
	border-bottom: 1px solid #ccc;
}

.article-grid__image-wrap {
    position: relative;
    width: 100%;
	margin-bottom: -30px;
}

.article-grid__image {
    margin: 0;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    line-height: 0;
}

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

.article-grid__number {
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    -webkit-text-stroke: 2px #3b5998;
    text-shadow: 2px 2px 0 #3b5998;
    z-index: 1;
    font-family: Arial, sans-serif;
}

.article-grid__main {
    width: 100%;

}

.article-grid__label {
    display: inline-block;
    background-color: #3b5998;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    position: relative;
}

.article-grid__label::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 6px 0 6px;
    border-color: #3b5998 transparent transparent transparent;
}

.article-grid__title {
    font-size: 24px;
    font-weight: bold;
  
    line-height: 1.5;

}

.article-grid__title span {

}

.article-grid__text {

    margin: 0;
    text-align: justify;
}

/* PC向け設定 (768px以上でジグザグ・2列化) */
@media (min-width: 768px) {
    .article-grid__item {
        flex-direction: row; /* 横並び */
        justify-content: space-between;
        gap: 40px;
        padding: 20px 0px;
    }

    .article-grid__image-wrap,
    .article-grid__main {
        width: 48%;	margin-bottom: 60px;
    }

    /* ジグザグ配置 */
    .article-grid__item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    .article-grid__item:nth-child(even) {
        flex-direction: row;
    }

    /* 文字・番号サイズアップ */
    .article-grid__title {
        font-size: 28px;
    }
    .article-grid__number {
        font-size: 120px;
        right: -20px;
        bottom: -30px;
    }
}

.home-recruit {
	margin-top: 100vh;
	border-top: 7px solid #A5CADD;
	background: #363B51;
	color: #FFF;
	padding: 60px 0 40px 0;
	overflow: hidden;
	position: relative;
	z-index: 10;
	background-image: url("../img/bg.jpg");
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-position: left top;
	position: relative;

}

/* インナー（幅制限と横並び制御） */
.home-recruit__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column-reverse; /* スマホ: 画像を上に、テキストを下にしたい場合は column-reverse */
  gap: 0px;
}

/* --- 画像エリア --- */
.home-recruit__image {
  width: 100%;
  margin: 0;
}

.home-recruit__image img {
  width: 100%;
  height: 300px; /* スマホでの高さ固定 */
  object-fit: cover;
  border-radius: 20px 20px 0 20px; /* 添付のような有機的な角丸にするなら */
}

/* --- テキストエリア --- */
.home-recruit__content {
  width: 100%;
}

/* カテゴリー */
.home-recruit__category {
  font-size: 14px;
  font-weight: bold;


  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
/* スラッシュの前の番号などを装飾する場合（例：01.） */
.home-recruit__category::before {
  content: "01."; /* 仮の番号 */
  color: #2eb8a6; /* アクセントカラー */
  font-size: 18px;
  margin-right: 10px;
}

/* 巨大な英語タイトル */
.home-recruit__en-title {
  font-size: 40px; /* スマホサイズ */
  font-weight: bold;
  color: #FFF;
  line-height: 1;
  margin-bottom: 20px;
  word-break: break-all;

}

/* 日本語見出し */
.home-recruit__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* 本文 */
.home-recruit__text {

  margin-bottom: 40px;
  text-align: justify;
}

/* --- ボタン --- */
.btn_wh {
  display: inline-block;
  background: #A5CADD;
  color: #00304F;

  padding: 15px 40px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  transition: all 0.3s;
  width: 100%; /* スマホは幅いっぱい */
  text-align: center;
  box-sizing: border-box;
}

/* ボタンの矢印線 */
.btn_wh::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background: #00304F;
  vertical-align: middle;
  margin-left: 15px;
  transition: all 0.3s;
}

/* ホバー時の動き */
.btn_wh:hover {
  background: #363B51;
  color: #FFF;
	border: 1px solid #FFF;
}
.btn_wh:hover::after {
  background:#FFF;
  width: 40px; /* 線が伸びる */
}


/* -------------------------------------------
   PC対応 (1024px以上)
   添付画像のような左右分割レイアウト
------------------------------------------- */
@media (min-width: 1024px) {
  
  .home-recruit {
    padding: 50px 0;
	  position: relative;z-index: 1;
  }

  .home-recruit__inner {
    flex-direction: row; /* 横並び */
    align-items: center; /* 上下中央揃え */
    justify-content: space-between;
    gap: 80px;
  }

  .home-recruit__content {
    width: 45%; /* 左側テキスト幅 */
  }

  .home-recruit__image {
    width: 50%; /* 右側画像幅 */
    position: relative;
  }
  
  /* 画像を画面右端まで伸ばす演出（添付画像のような雰囲気） */
  .home-recruit__image img {
    height: auto;
    min-height: 500px;
    border-radius: 0; /* PCでは四角くするなど */
    /* ここで object-fit や absolute を駆使してデザインに合わせて調整 */
  }

  /* PCでの文字サイズ調整 */
  .home-recruit__en-title {
    font-size: 80px; /* 巨大に */
    margin-bottom: 30px;
    letter-spacing: -2px;
  }

  .home-recruit__title {
    font-size: 32px;
    margin-bottom: 40px;
  }

  .btn_wh {
    width: auto; /* 幅固定を解除 */
    min-width: 280px;
  }
}
.home .recruit-list{
	background: #363B51;
	z-index: 1;
	position: relative
}

.recruit-list {
  padding: 60px 0;
  background-color: #f5f5f5; /* 背景色 */
}

.recruit-list__inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit-list__heading {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
}

/* --- グリッド設定 (スマホ:1列 → PC:3列) --- */
.recruit-list__grid {
  display: flex;
  flex-direction: column; /* スマホは縦並び */
  gap: 30px;
}


/* --- カード本体 --- */
.recruit-list__item {
  display: block; /* aタグをブロック要素に */
  background: #fff;
  text-decoration: none; /* 下線を消す */
  color: #333;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%; /* 高さを揃える */
	position: relative
}

@media (min-width: 768px) {
  .recruit-list__grid {
	flex-direction: row;
    gap: 30px; /* カード間の隙間 */
  }
.recruit-list__item {
	width: 30%;
	}
}
/* ホバー時のアクション（少し浮く） */
.recruit-list__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.recruit-list__state {
	position: absolute;
	top:0;
	left: 0;
  font-size: 15px;
	background: #333;
	color: #FFF;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 8px;
	line-height: 1;
	height: 30px;
	margin-bottom: 4px;
	z-index: 100
}
.recruit-list__state.active {
	background: yellow;
	color: #000;
	font-weight: bold
}
/* カード画像 */
.recruit-list__image {
  width: 100%;
  aspect-ratio: 16 / 9; /* 画像比率を固定 */
  overflow: hidden;
}

.recruit-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* ホバー時に画像を少しズーム */
.recruit-list__item:hover .recruit-list__image img {
  transform: scale(1.05);
}

/* カードの中身 */
.recruit-list__body {
  padding: 24px 30px;
}

/* --- メタ情報エリア（カテゴリ + アイコン） --- */
.recruit-list__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

/* カテゴリ名と青い線 */
.recruit-list__category {
  font-size: 12px;
  font-weight: bold;
  color: #363B51; /* 文字色 */
  letter-spacing: 1px;
  text-transform: uppercase; /* 大文字変換 */
  display: flex;
  align-items: center;
  gap: 15px; /* 線と文字の間隔 */
}

/* 青い横線 (::beforeで描画) */
.recruit-list__category::before {
  content: "";
  display: block;
  width: 30px;      /* 線の長さ */
  height: 2px;      /* 線の太さ */
  background: #363B51;
}

/* 右上の青い丸アイコン */
.recruit-list__icon {
  width: 32px;
  height: 32px;
  background: #363B51;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0; /* 縮まないようにする */
}

/* アイコンの中の矢印 (CSSで描画) */
.recruit-list__icon::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 45%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* --- テキスト情報 --- */
.recruit-list__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.recruit-list__text {
  font-size: 14px;

  color: #666; /* 少し薄い色 */
  margin: 0;
}
/* ------------------------------------------
   Join Our Team (CTA Section)
------------------------------------------ */

/* 背景グラデーション */
.join-team {
  /* 左上から右下への青系グラデーション */
  background: linear-gradient(135deg, #A5CADD 0%, #0066ff 100%);
  padding: 60px 0;
  color: #fff;
  text-align: center;

}

.join-team__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- ヘッダーエリア --- */
.join-team__header {
  margin-bottom: 40px;
}

/* 英語タイトル (筆記体風) */
.join-team__title-en {
  font-family: "Times New Roman", Times, serif; /* 明朝体系で上品に */
  font-style: italic; /* 斜体 */
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 日本語サブタイトル */
.join-team__title-ja {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* --- 白いボタン --- */
.join-team__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #363B51;
  color: #FFF;
  font-weight: bold;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ボタンの矢印アイコン */
.join-team__btn-arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
  margin-left: 10px;
  margin-bottom: 2px; /* 位置微調整 */
}

/* ホバー時の動き */
.join-team__btn:hover {
  background: #f0f8ff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* --- 画像ギャラリー --- */
.join-team__gallery {
  display: flex;
  flex-wrap: wrap; /* スマホで折り返す */
  gap: 20px;
  justify-content: center;
}

.join-team__image {
  /* スマホ: 2列表示 (隙間を考慮して約48%) */
  width: calc(50% - 10px);
  aspect-ratio: 3 / 4; /* 縦長の写真比率 */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.join-team__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

/* 画像ホバーでズーム */
.join-team__image:hover img {
  transform: scale(1.1);
}


/* -------------------------------------------
   PC対応 (768px以上)
------------------------------------------- */
@media (min-width: 768px) {
  
  .join-team {
    padding: 60px 0;
  }

  .join-team__title-en {
    font-size: 64px; /* PCでは大きく */
    margin-bottom: 20px;
  }

  .join-team__title-ja {
    font-size: 20px;
    margin-bottom: 40px;
  }
  
  /* 画像を4列にする */
  .join-team__image {
    width: calc(25% - 15px); /* 4枚並び */
  }
}