@charset "UTF-8";
/** -----------------------------------------------
  共通
------------------------------------------------**/

/* 基本のスタイル */
body {
    font-family: 'Noto Sans JP', "Yu Gothic", "游ゴシック", "YuGothic", "游ゴシック体", "Osaka", "Verdana", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: #222;
    background-color: #f8f7f4;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden; /* 横スクロールを防止 */
    box-sizing: border-box;
}

/* フェードインアニメーション */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s cubic-bezier(0.42, 0, 0.58, 1),
                transform 1.5s cubic-bezier(0.42, 0, 0.58, 1);
}

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

/* ===== スマホ用：375px以下 ===== */
@media screen and (max-width: 410px) {
    body {
        padding-right: 10px;
        padding-left: 10px;
    }
}

/* 画像のスタイル */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* リンク初期化（全体に適用） */
a {
    text-decoration: none;
    color: inherit;
}

/* ==============================
   ヘッダー部分
============================== */
/* ===== 共通スタイル ===== */
/* アンカーリンクの余白調整 */
html {
    scroll-padding-top: 20px; /* ヘッダーの高さ + 余白 - 200px下に移動 */
    scroll-behavior: smooth; /* スムーズスクロール */
}

/* ヘッダーの固定表示 */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(248, 247, 244, 0.5);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1440px;
	margin: 0 auto;
	padding: 20px 60px;
}

.nav-and-buttons {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 40px;
}

.nav ul {
    display: flex;
    gap: 18px;
    list-style: none;
    padding-right: 0;
    margin: 0;
}

.nav a {
    font-family: "futura-pt", sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #222;
    letter-spacing: 0.05em;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.nav a:hover {
    border-bottom: 2px solid #222;
}

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

.header-buttons a {
    margin-left: 16px;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-entry {
    background-color: #d1695b;
    border: none;
    color: #fff;
}

.btn-entry:hover {
    background-color: #db958d;
}
.logo img {
	min-height: 53px;
	min-width: 164px;
	height: 53px;
	width: 164px;
	flex-shrink: 0;
	margin-right: auto;
}

.nav-and-buttons {
	display: flex;
	align-items: center;
	margin-left: auto;
	gap: 40px;
}

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

.nav ul {
	display: flex;
	gap: 24px;
	list-style: none;
	padding-right: 0;
	margin: 0;
}

.nav a {
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #222;
	letter-spacing: 0.05em;
	padding-bottom: 4px;
	border-bottom: 2px solid transparent;
	transition: border-color 0.3s;
}

.nav a:hover {
	border-bottom: 2px solid #222;
}

.header-buttons a {
	margin-left: 16px;
	padding: 16px 40px;
	border-radius: 30px;
	font-size: 14px;
	transition: 0.3s;
	white-space: nowrap;
}

.btn-entry {
	font-weight: 500;
	background-color: #d1695b;
	border: none;
	color: #fff;
}

.btn-entry:hover {
	background-color: #db958d;
}

.hamburger {
    display: none; /* 初期はPC用として非表示 */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    gap: 6px;
    z-index: 200;
}

.hamburger span {
	display: block;
	width: 36px;
	height: 2px;
	background-color: #222;
	transition: all 0.3s ease;
	border-radius: 1px;
}

/* ===== メインビジュアル関係 ===== */
.main-visual-wrapper {
    position: relative;
    width: 100%;
    margin-top: 113px; /* headerの高さ分 + 20px */
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央揃え */
}

.main-visual-pc {
    display: block;
    margin-bottom: 80px;
    margin-left: 40px;
    margin-right: 40px;
    /* 追加: 中央揃え */
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-visual-sp {
    display: none;
    /* 追加: 中央揃え */
    justify-content: center;
    align-items: center;
}

.main-visual img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 80px;
}

/* ===== メインビジュアルテキストの元の配置に戻す ===== */
.mv-text {
    position: absolute;
    top: 53%;
    right: 75px;
    transform: translate(1%, -4%);
    background-color: #cebfab;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    white-space: nowrap;
}

.mv-text h1 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.mv-text p {
    color: #fff;
    font-size: 24px;
}

/* === ハンバーガーメニューの横にエントリーボタン配置 === */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sp-entry-btn {
    display: none; /* 初期状態は非表示 */
}

@media screen and (max-width: 1250px) {
	.header-inner {
		padding: 20px 20px;
		}

	.main-visual-wrapper {
		margin-top: 60px;
		margin-right: 10px;
		}

	.nav-and-buttons {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background: rgba(255, 255, 255, 0.95); /* 白く薄く覆う */
		z-index: 9999; /* 全要素より上にする */
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.3s ease;
	}

	.nav-and-buttons.active {
		opacity: 1;
		pointer-events: auto;
	}

	.nav ul {
		flex-direction: column;
		gap: 24px;
		padding: 0;
		margin: 0;
		list-style: none;
	}

	.nav li {
		text-align: center;
	}

	.nav a {
		font-size: 20px;
		color: #222;
		text-decoration: none;
		font-weight: 400;
	}

	/* ハンバーガーの三本線 */
	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 22px;
		background: none;
		border: none;
		z-index: 10000; /* ナビゲーションよりさらに上 */
		cursor: pointer;
		padding: 0;
	}

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

	/* アクティブ時に×マーク */
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(0, 12px);
	}
	
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	
	.hamburger.active span:nth-child(3) {
		transform: rotate(-45deg) translate(0, -12px);
	}

	.header-buttons {
		display: none !important;
	}

	.sp-entry-btn {
		display: block;
		padding: 8px 20px;
		font-size: 14px;
		border-radius: 20px;
		background-color: #d1695b;
		color: #fff;
	}

	.sp-entry-btn:hover {
		background-color: #db958d;
	}

	.btn-entry {
		font-weight: 500;
		background-color: #d1695b;
		border: none;
		color: #fff;
	}

	.btn-entry:hover {
		background-color: #db958d;
	}

	.logo img {
		min-height: 40px;
		min-width: 122px;
		height: 40px;
		width: 122px;
		flex-shrink: 0;
		margin-right: auto;
	}

	.mv-text {
		position: static;
		margin-top: 17px;
		width: 100%;
		padding: 10px;
		box-sizing: border-box;
		text-align: center;
		background-color: #cebfab;
		z-index: 1;
	}

	.mv-text h1 {
		font-size: 32px;
		margin: 0;
	}

	.mv-text p {
		font-size: 18px;
		display: block;
		color: #fff;
		margin-top: 10px;
		margin-left: auto;
		margin-right: auto;
	}

	.main-visual-pc {
		display: none;
	}

	.main-visual-sp {
		display: block;
		position: relative;
		z-index: 0;
	}

	.main-visual-sp img {
		width: 100%;
		height: auto;
		max-width: none;
		display: block;
		margin-top: 100px;
	}

	.concept .more-button {
		margin-bottom: 0;
	}
}

/* コンセプト */
/* ===== 共通スタイル ===== */
.concept {
    padding: 100px 0;
    background-color: #f8f7f4;
	min-height: 100px;
    margin-bottom: 100px;
}

.section-inner,
.support-inner,
.member-inner,
.recruit-inner,
.flow-inner,
.faq-inner,
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.concept .section-inner {
  padding: 0;
}

.concept-title-img {
    display: block;
    margin: 0 auto;
}

.concept-title {
	position: relative;
    text-align: center;
    font-size: 36px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 40px;
    color: #222;
}

.concept-columns {
    display: grid;
    grid-template-columns: 1fr 2fr; /* 左右カラムのみ */
    column-gap: 150px; /* 左右の間隔のみ設定 */
    align-items: center;
}

/* カラム：左 */
.concept-column.left {
    text-align: left;
}

.concept-column.left h3 {
    font-size: 50px;
    line-height: 1.4;
	letter-spacing: 0.10em;
    color: #222;
    display: inline-block; /* インラインブロックに変更 */
    white-space: nowrap;  /* 改行を防止 */
    margin: 0 auto;       /* 中央揃え */
	padding-left: 27px;
}

/* やさしさの部分だけ色を変える */
.highlight {
    color: #db958d;
    font-weight: bold;
}

/* カラム：中央のスペース（目に見えないスペーサー） */
.concept-column.spacer {
    width: 150px;
}

/* カラム：右 */
.concept-column.right {
    line-height: 2.0;
    color: #555;
}

.concept-column.right p {
    margin-bottom: 30px;
	letter-spacing: 0.05em;
	font-size: 20px;
	color: #222;
}

.concept-title-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
}

.decor-image {
  	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


/* MOREボタン */
.more-button {
    text-align: center;
    margin: 60px 0;
}

.more-button-outline {
    background-color: #b7a992;
    color: #fff;
    font-size: 18px;
    padding: 12px 40px;
    border-radius: 24px;
    transition: 0.3s;
    text-decoration: none;
}

.more-button-outline:hover {
    background-color: rgba(183, 169, 146, 0.8);
    color: #fff;
}

/* ===== SP版 (1250px以下) ===== */
@media screen and (max-width: 1250px) {
	.concept {
		padding: 100 0;
	}

	.concept-title {
		text-align: center;
		font-size: 20px;
		font-weight: 500;
		color: #222;
	}

    .concept-columns {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .concept-column.left {
        text-align: center;
    }

    .concept-column.left h3 {
        font-size: 32px;
        white-space: normal; /* モバイルでは折り返しOKに */
		padding-left: 0;
    }

    .concept-column.right {
		padding-right: 0px;
		padding: 0 10px;
    }

	.concept-column.right p {
        font-size: 16px;
		
	}
}

/* スライドショー1 */
/* スライドショーの画像にradiusを適用 */
.slider1 img {
    border-radius: 10px; /* 角丸のサイズを調整 */
    overflow: hidden;
}

/* スライドの間隔をあける */
.slider1 img {
    margin-right: 20px; /* 画像同士の隙間 */
}

/* スライド全体の調整 */
.slick-list {
    margin-right: -20px; /* スクロールが発生しないように調整 */
}

.slider1 .slick-slide {
  /* margin: 0 150px; 削除 */
}

/* サービス */
.services-title-img {
	display: block;
	margin: 0 auto;
	margin-top: 100px;
}

.services-title {
	text-align: center;
	font-size: 36px;
    font-weight: 500;
	margin-top: 20px;
    margin-bottom: 40px;
	color: #222;
}

.services {
	padding-top: 60px;
    margin-bottom: 100px; /* MOREボタンとSUPPORTタイトルイメージの間隔を調整 */
}

.service-item {
	display: flex;
	gap: 40px;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 60px;
}

.service-item.reverse {
	flex-direction: row-reverse;
}

.service-thumbnail {
	flex: 1;
}

.service-text {
	flex: 1;
}

.service-text h5 {
	font-size: 36px;
	margin-bottom: 20px;
	color: #335379;
}

.service-text p {
	font-size: 20px;
}

.service-text img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block; /* 左揃えにするために追加 */
    margin-left: 0; /* デフォルトの左マージンをリセット */
}

.services-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


.more-button {
	text-align: center;
	margin-top: -20px; /* MOREボタンを20px下に移動（-40pxから-20pxに変更） */
	margin-bottom: 60px;
	padding: 60px 0;
}

.more-button-outline {
	background-color: #b7a992;
	color: #fff;
	font-family: "futura-pt", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 20px;
	padding: 16px 60px;
	border-radius: 24px;
	font-size: 14px;
	letter-spacing: 0.2em;
	transition: 0.3s;
	white-space: nowrap;
}

.more-button-outline:hover{
	background-color: rgba(183, 169, 146, 0.8);
	color: #fff;
}

/* SP版用のメディアクエリ */
@media screen and (max-width: 990px) {
	.services {
		padding: 0;
	}

	/* サービスタイトル調整 */
	.services-title {
		font-size: 20px;
	}

	/* サービス項目の縦並び変更 */
	.service-item {
		flex-direction: column; /* カラムを縦並びに */
		align-items: flex-start; /* 左寄せ */
		gap: 20px; /* 上下の間隔 */
	}

	.service-item.reverse {
		flex-direction: column; /* 逆順でも縦並びに */
	}

	.service-thumbnail {
		flex: 0 0 100%; /* サムネイルを横幅100%に */
	}

	.service-text {
		flex: 1;
	}

	.service-text h5 {
		font-size: 24px; /* フォントサイズを小さく */
	}

	.service-text p {
		font-size: 16px; /* フォントサイズを小さく */
		line-height: 1.6;
	}

	/* サービスアイテム間の余白 */
	.service-item {
		margin-top: 30px;
	}

	/* ボタンの余白を調整 */
	.more-button {
		margin-bottom: 40px;
		padding: 0;
	}

	/* ボタンの文字サイズとパディング調整 */
	.more-button-outline {
		font-size: 14px; /* フォントサイズ調整 */
		padding: 12px 40px;
	}
}


  /* 働き方 */
.support-title-img {
	display: block;
	margin: 0 auto;
	margin-top: 100px;
	max-width: 100%; /* 横幅を親要素に合わせて最大限に広げる */
    height: auto; /* 高さを自動で調整して同比率を保つ */
}

.support-title {
	text-align: center;
	font-size: 20px;
    font-weight: 500;
	margin-top: 20px;
	margin-bottom: 40px;
	color: #222;
}

.support p {
	font-size: 20px;
	text-align: center; /* ← 中央揃え */
  	margin-bottom: 60px; /* 下に余白をつけたいならここで調整できる */
}

.support-item {
	display: flex;
	gap: 30px;
	align-items: center;
	margin-top: 40px;
	margin-bottom: 60px;
	padding: 0 50px;
}

.support-item h6{
	font-size: 24px;
	color: #335379;
	margin-top: 16px;
	white-space: nowrap;
}

.support-item > div {
	display: flex;
	flex-direction: column; /* 縦並び */
	align-items: center;
	text-align: center;
	flex: 1; /* 各項目を同じ幅にする */
	min-width: 200px; /* スマホとかで潰れすぎ防止 */
}

.support-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


@media screen and (max-width: 1070px) {
	/* サポート項目を縦並びに */
	.support-title-img {
		max-width: 50%;
	}

	.support-item {
		flex-direction: column;
		padding: 0 20px; /* 左右余白を狭める */
		gap: 40px; /* 縦の間隔 */
	}

	.support-item > div {
		max-width: 50%;
		min-width: auto; /* 固定幅を解除 */
	}

	.support-item h6 {
		font-size: 20px;
		margin-top: 12px;
	}

	.support-title {
		font-size: 24px;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.support p {
		font-size: 16px;
		margin-bottom: 40px;
		padding: 0 10px;
	}
}


  /* メンバー紹介 */
.member-inner {
	padding: 0 200px 0 230px;
	text-align: center;
}

.member-title-img {
	display: block;
	margin: 100px auto 20px;
}

.member-title {
	font-size: 36px;
    font-weight: 500;
	color: #222;
	margin-bottom: 40px;
}

.member-lead {
	font-size: 20px;
	margin-bottom: 60px;
}

.member-grid {
	display: grid;
    grid-template-columns: 1fr 1fr; /* 2カラム */
    gap: 100px; /* カード間のスペース */
    margin: 120px auto 0 auto; /* 中央に配置 */
}

.member-card {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.member-column {
	align-items: flex-start;
	text-align: left;
}

.member-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 300px;
	margin-bottom: 20px;
}

.bg-img-left {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(-70px, -70px);
	z-index: 1;
}

.bg-img-right {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(70px, -70px);
	z-index: 1;
}

.main-img {
	position: relative;
	z-index: 2;
}

.member-text {
	max-width: 286px;
}

.member-message {
	font-family: "vdl-penletter", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 20px;
	color: #222;
	margin-bottom: 16px;
}

.member-department {
	color: #fff;
	background-color: #335379; /* ザブトン色 */
	padding: 1px 5px;
	font-size: 16px;
	margin-bottom: 3px;
	display: inline-block;
}

.member-position {
	color: #fff;
	background-color: #335379; /* ザブトン色 */
	padding: 1px 5px;
	font-size: 16px;
	margin-bottom: 3px;
	display: inline-block;
}

.member-name {
	font-size: 18px;
	font-weight: bold;
	color: #335379;
}

.member-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


@media screen and (max-width: 1000px) {
	.member-inner {
		padding: 0 20px;
		text-align: center;
	}

	.member-title {
		font-size: 24px;
		margin-bottom: 20px;
		white-space: nowrap;
	}

	.member-lead {
		font-size: 16px;
		margin-bottom: 100px;
	}

	.member-grid {
		grid-template-columns: 1fr; /* 1カラムに */
		gap: 60px;
		margin: 60px auto 0 auto;
	}

	.member-image-wrapper {
		max-width: 100%;
	}

	.bg-img-left {
		transform: translate(-35px, -60px);
        width: 240px;
		height: auto;
	}

	.bg-img-right {
		transform: translate(80px, -60px);
        width: 240px;
		height: auto;
	}

	.member-text {
		margin-bottom: 40px;
	}

	.member-message {
		font-size: 18px;
		margin-bottom: 12px;
	}

	.member-department,
	.member-position {
		font-size: 14px;
		padding: 2px 6px;
		margin-bottom: 4px;
	}

	.member-name {
		font-size: 16px;
	}
}


/* 募集職種 */
.recruit-inner {
	margin-bottom: 40px;
}

.recruit-title-img {
	display: block;
	margin: 100px auto 20px;
}

.recruit-title {
	text-align: center;
	font-size: 36px;
    font-weight: 400;
	color: #222;
	margin-bottom: 40px;
}

.recruit-lead {
	text-align: center;
	font-size: 16px;
	margin-bottom: 60px;
	padding: 0 20px;
}

.recruit-buttons {
	display: flex;
	flex-wrap: wrap; /* 折り返しを許可 */
	max-width: 1024px;
	margin: 0 auto;
	justify-content: space-between;
}

/* 共通ボタンスタイル */
.recruit-btn {
	padding: 10px 36px;
	background-color: #fff;
	color: #335379;
	border: 2px solid #335379;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
	font-size: 16px;
	border-radius: 5px 5px 0 0;
	min-width: 160px;
	text-align: center;
}

/* active状態 */
.recruit-btn.active {
	background-color: #335379;
	color: #fff;
}

/* hover状態 */
.recruit-btn:hover {
	background-color: rgba(51,83,121,0.5);
	color: #fff;
}

/* 詳細エリア */
.recruit-details > div {
	display: none;
	padding: 0 20px;
}

.recruit-details > div.active {
	display: block;
}

/* recruit-details全体 */
.recruit {
  padding: 0 10px;
}

.recruit-details {
  background-color: #fff;
  border: 2px solid #335379;
  border-radius: 0 0 5px 5px;
  padding: 40px;
  max-width: 1024px;
  margin: 0 auto;
  margin-top: -2px;
  position: relative;
  box-sizing: border-box;
  z-index: 1;
}

/* 職種情報ブロック */
.job-item {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 16px 0;
	border-bottom: 1px solid #ccc;
}

.job-label {
	width: 140px;
	font-weight: bold;
	color: #335379;
	flex-shrink: 0;
}

.job-content {
	flex: 1;
	color: #333;
	line-height: 1.6;
	word-break: break-word;
}

.recruit-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


@media screen and (max-width: 990px) {
	.recruit-inner {
		padding: 0;
		text-align: center;
	}
	
	.recruit-title-img {
		display: block;
		margin: 0 auto;
	}
	
	.recruit-title {
		font-size: 24px;
		font-weight: 400;
		margin-top: 20px;
		color: #222;
		margin-bottom: 20px;
		text-align: center;
	}
	
	.recruit-buttons {
		display: flex;
		flex-direction: column;
		gap: 10px;
		width: 100%;
		max-width: 600px;
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.recruit-btn {
		width: 100%;
		padding: 15px 20px;
		font-size: 16px;
		white-space: nowrap;
		text-align: center;
		border-radius: 10px;
	}

	/* 詳細エリア */
	.recruit-details {
		padding: 0 10px;
	}

	.job-item {
		flex-direction: column;
		align-items: flex-start;
		padding: 16px 0;
		text-align: left; 
	}

	.job-label {
		width: 100%;
		margin-bottom: 4px;
	}

	.job-content {
		width: 100%;
		text-align: left; 
	}
}

  /* 採用フロー */
.flow-title-img {
	display: block;
	margin: 0 auto;
	margin-top: 100px;
	margin-bottom: 20px;

}

.flow-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
    font-weight: 500;
	color: #222;
}

.flow-items {
    display: flex;
    max-width: 1040px;
    justify-content: center; /* 横並びを中央揃え */
    gap: 40px; /* カード間のスペースを明示的に */
    margin: 100px auto;
}

.flow-items > div {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 220px;
    width: 100%;
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1); /* ドロップシャドウ */
    box-sizing: border-box;
    flex: 1 1 220px; /* 横幅の均等割り当て */
}

.flow-set {
    justify-content: center; /* 横方向の中央 */
    align-items: stretch;
    background-color: #fff;
    border-radius: 10px;
    padding: 50px 30px 30px;
}

.flow-items img {
    display: block;
    margin: 0 auto;
}

.flow-number {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Academy Engraved LET', sans-serif;
    font-size: 100px;
    font-weight: normal;
    color: #b7a992;
    margin-bottom: 8px;
    z-index: 2;
}

.flow-label {
    font-size: 16px;
    font-weight: bold;
    margin-top: 12px;
    line-height: 1.4;
    width: 100%;
    text-align: center;
}

.flow-details {
    font-size: 16px;
    text-align: left;
    color: #335379;
    margin-top: 8px;
    line-height: 1.6;
    word-break: break-word;
    border-top: 2px solid #335379; /* 上に線を追加 */
    padding-top: 8px; /* 上の線とテキストの間に余白 */
}

@media screen and (max-width: 1040px) {
    .flow-title {
        font-size: 24px;
        margin-bottom: 60px;
    }

    .flow-items {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin: 0 10px 10px;
    }

    .flow-items > div {
        max-width: 100%;
        width: 100%;
    }

    .flow-number {
        font-size: 60px;
        top: -40px;
    }

    .flow-label {
        font-size: 14px;
        margin-top: 8px;
    }

    .flow-details {
        font-size: 14px;
        padding-top: 6px;
    }

    .title-img-left,
    .title-img-right {
        width: 50px; /* スマホ表示時のサイズ調整 */
    }
}


  /* よくある質問 */
.faq-inner {
	max-width: 1040px;
	margin: 0 auto; /* 横中央揃え */
	text-align: center; /* 内部要素も中央揃え */
}

.faq-title-img {
	display: block;
	margin: 0 auto;
	margin-top: 100px;
}

.faq-title {
	display: inline-flex; /* inline-flexに変更することで中央揃えに反映 */
	align-items: center;
	gap: 30px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
	margin-top: 20px;
}

.faq-item {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #fff;
	padding: 16px;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
	margin: 0 200px;
}

.faq-question .faq-q {
	font-family: "futura-pt", sans-serif;
	font-size: 30px;
	font-weight: normal;
	color: #335379;
	margin-right: 20px;
}

.faq-question .faq-text {
	flex: 1;
	color: #333;
}

.faq-toggle {
	background: none;
	border: none;
	font-size: 24px;
	font-weight: bold;
	color: #335379;
	cursor: pointer;
	margin-left: 16px;
}

.faq-answer {
	display: none;              /* 初期表示では非表示 */
	padding: 16px;
	margin-top: 8px;
	align-items: flex-start;    /* 上揃え */
	gap: 12px;
	margin: 0 200px;
}

.faq-answer .faq-a {
	font-family: "futura-pt", sans-serif;
	font-size: 30px;
	font-weight: normal;
	color: #d1695b;
	min-width: 24px;
	margin-right: 20px;
}

.faq-answer .faq-text {
	color: #222;
	flex: 1;
}

.faq-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}

@media screen and (max-width: 990px) {
	.faq-title {
		font-size: 24px;
		margin-bottom: 40px
	}

	.faq-inner {
		padding: 0;
		margin: 0 10px;
	}

	.faq-question {
		margin: 0;
		margin-right: 10px;
		margin-left: 10px;
	}

	.faq-answer {
		margin: 0;
	}
}

/* お問い合わせ */
.contact-inner {
	max-width: 1040px;
	margin: 0 auto;
}

.contact-title-img {
	display: block;
	margin: 0 auto;
	margin-top: 100px;
}

.contact-title {
	display: block;
	text-align: center;
	font-size: 36px;
    font-weight: 400;
	margin-top: 20px;
	margin-bottom: 60px;
	color: #222;
}

.contact-form {
	max-width: 1040px;
	margin: 0 auto;
	padding: 50px;
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid #b7a992;
	margin-bottom: 160px;
}

.contact-form .form-group {
	margin-bottom: 24px;
}

.contact-form label {
	font-weight: bold;
	display: block;
	margin-bottom: 8px;
}

.required {
	background-color: #d1695b;
	color: #fff;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 8px;
}

.optional {
	background-color: #bbb;
	color: #fff;
	font-size: 12px;
	padding: 2px 6px;
	border-radius: 4px;
	margin-left: 8px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 12px;
	background-color: #f2efeb;
	border-radius: 6px;
	box-sizing: border-box;
	font-size: 16px;
}

.contact-form textarea {
	resize: vertical;
}

.radio-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}

.radio-group label {
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 4px;
}

.radio-label.normal {
	font-weight: normal;
}

.privacy-text {
	text-align: center;
	font-size: 14px;
	color: #222;
	margin: 20px 0 8px;
}

.privacy-check {
	text-align: center;
	display: flex;
	align-items: center;
	font-size: 14px;
	font-weight: normal;
}

.privacy-check input {
	margin-right: 8px;
}

.confirm-button {
	background-color: #335379;
	color: white;
	padding: 14px 32px;
	font-size: 16px;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	display: block;
	margin: 30px auto 0;
}

.contact-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


@media screen and (max-width: 990px) {
	.contact-title {
		font-size: 24px;
		margin-bottom: 40px;
		gap: 15px;
	}

	.contact-title-img {
		display: block;
		margin: 0 auto;
		margin-top: 100px;
	}

	.contact-form {
		padding: 24px;
		margin-right: 10px;
		margin-left: 10px;
	}

	.contact-form input[type="text"],
	.contact-form input[type="email"],
	.contact-form input[type="tel"],
	.contact-form textarea {
		font-size: 14px;
		padding: 10px;
	}

	.radio-group {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.privacy-check {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}

	.confirm-button {
		font-size: 14px;
		padding: 12px 24px;
	}

	.contact-form label {
		white-space: nowrap;
	}

	.contact-inner {
		margin: 0 10px;
	}
}

/* スライドショー2 */
.slider2 {
    width: 100%;
	padding: 100px 0 40px 0;
    margin-bottom: 40px; /* 20px減らす（60pxから40pxに） */
}

/* スライドショーの画像にradiusを適用 */
.slider2 img {
    border-radius: 10px; /* 角丸のサイズを調整 */
    overflow: hidden;
}

/* スライドの間隔をあける */
.slider2 img {
    margin-right: 20px; /* 画像同士の隙間 */
}

/* スライド全体の調整 */
.slick-list {
    margin-right: -20px; /* スクロールが発生しないように調整 */
}

.slider2 .slick-slide {
  /* margin: 0 150px; 削除 */
}

/* エントリー */
.entry {
    position: relative;
    color: #222;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0;
}

.entry-intro {
    position: relative;
    z-index: 2;
    padding: 80px 20px 0;
    text-align: center;
}

.entry-title-img {
    display: block;
    margin: 0 auto;
}

.entry-title {
    font-size: 36px;
    font-weight: 400;
    margin: 20px 0 40px;
}

.entry-intro-maintext {
    font-size: 32px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #d1695b;
}

.entry-intro-maintext::before {
    display: none;
}

.entry-intro-subtext {
    font-size: 18px;
    line-height: 1.6;
    margin: 40px 0;
    text-align: center;
}

/* 親要素に中央揃えを反映 */
.entry-intro-wrapper {
    text-align: center;
    padding: 0 10px;
}


/* ======== 背景画像セクション ======== */
.entry-background {
    position: relative;
    width: 100vw;             /* ビューポート幅に合わせる */
    height: calc(100vw * 0.48); /* アスペクト比調整 */
    background-image: url('../images/entry_background_pc.png');
    background-size: 100% auto; /* 横幅を100%、縦は自動 */
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
    overflow: hidden;
	z-index: 1;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 83, 121, 0.4);
    z-index: 1;
}

/* ======== ガイドリンクとエントリーボタン配置 ======== */
.back-guide-wrap-up {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px; /* ガイドリンクの間隔を狭める */
}

.back-guide {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 900px;
    gap: 24px; /* ガイドリンクの横幅間隔 */
}

.back-guide a {
    font-size: 32px;
    color: #fff;
    text-decoration: underline;
	text-underline-offset: 4px;
    opacity: 1;
    transition: opacity 0.3s;
}

.back-guide a:hover {
    opacity: 0.7; /* ホバー時に薄くする */
}

.entry-btn {
    margin-top: 40px; /* エントリーボタンとの余白を増やす */
    border: 3px solid #fff;
    color: #fff;
    background-color: transparent;
    padding: 20px 60px;
    font-size: 50px;
    border-radius: 70px;
    cursor: pointer;
    transition: background-color 0.3s;
    max-width: 480px; /* 幅を固定 */
    z-index: 2;
    text-align: center;
	white-space: nowrap;
}

.entry-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.entry-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px; /* 画像とテキストの間隔 */
	margin-bottom: 20px;
	font-size: 36px;
	font-weight: 500;
	color: #222;
}

.title-img-left,
.title-img-right {
	width: 70px; /* 適切なサイズに調整 */
	height: auto;
}


/* ======== SP版のスタイル ======== */
@media screen and (max-width: 990px) {
	.entry-title {
		font-size: 24px;
		white-space: nowrap;
	}

    .entry-background {
        background-image: url('../images/entry_background_sp.png');
        background-size: contain;
        background-position: center;
        width: 100vw;
        height: calc(100vw * 0.94);
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        position: relative;
    }

    .back-guide-wrap-up {
        width: 100%;
        gap: 12px; /* スマホ版はさらに狭める */
    }

    .back-guide {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .back-guide a {
        font-size: 18px;
    }

    .entry-btn {
		font-size: 24px;
        margin-top: 24px;
        width: 80%;
        max-width: 360px; /* スマホ版の幅調整 */
        text-align: center;
    }

	.entry-intro-subtext {
		text-align: center;
	}
}

/* フッター全体 */
.footer {
    background-color: #b7a992;
    color: #fff;
    padding: 60px 20px;
    font-size: 14px;
	margin-top: 0 !important;
	margin-left: -40px;
	margin-right: -40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    max-width: 1040px;
    margin: 0 auto;
}

/* 左右のボックスを1:1で並べる */
.footer-left,
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 左側ロゴ */
.footer-logo {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
}

/* 右側の内容に白線と余白 */
.footer-right {
    justify-content: center;
    border-left: 2px solid #fff;
    text-align: left;
}

/* リンク（縦並び） */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* SNSアイコン（横並び） */
.footer-social {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.footer-social img {
    width: 32px;
    height: 32px;
}

/* コピーライト */
.footer-copy {
    margin-top: 30px;
    font-size: 12px;
}

/* SP版 */
@media (max-width: 800px) {
    /* フッター全体 */
	.entry {
        margin-bottom: 60px; /* SP版の余白調整 */
    }

    .footer {
        margin-top: 60px; /* SP版の余白調整 */
    }

    .footer {
        padding: 40px 20px; /* 縦並びにするため、少し余白を調整 */
        font-size: 14px;
        display: flex;
        flex-direction: column; /* 縦並び */
        align-items: center; /* 中央寄せ */
    }

    /* フッターコンテンツを縦並びに変更 */
    .footer-content {
        display: flex;
        flex-direction: column; /* 縦並び */
        justify-content: center;
        align-items: center;
        width: 100%;
		padding: 0 100px;
    }

    .footer-left,
    .footer-right {
        width: 100%; /* 横並びの要素にするために幅を100%に */
        margin: 10px 0;
        padding: 10px 0;
    }

    /* 右側の白線を消去 */
    .footer-right {
        border: none; /* 縦線を消す */
        text-align: left; /* テキストも左寄せに */
        padding-top: 20px;
		border-top: 2px solid #fff; /* 横線を追加 */
    }

    /* SNSアイコンを横並びに変更 */
    .footer-social {
        display: flex;
        gap: 40px;
        margin-top: 30px;
        flex-direction: row; /* 横並び */
    }

    .footer-social img {
        width: 32px;
        height: 32px;
    }
}





/** -----------------------------------------------
  PC :  画面の横幅が641px以上
------------------------------------------------**/

.example {
	font-size: 50px;
	color: #99293D;
}




/*ここからメディアクエリで各デバイスサイズに書き分けます。
今回の課題で考慮するのはPCとスマホのみでOKですが、タブレットサイズでのスタイルを書いてもOK！
また、CSSは上から下に継承されるので、変化させたいところだけ書けばOKです*/


/** -----------------------------------------------
  Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){
	.example {
		font-size: 20px;
		color: #AD8651;
	}
}

.slider1,
.slider2 {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.slider1 img,
.slider2 img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.slick-list {
  margin: 0;
  padding: 0;
}

.slick-track {
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 990px) {
  .slider1,
  .slider2 {
    margin: 80px 0;
  }
}

.slider1 .slick-track,
.slider2 .slick-track {
  margin-left: 150px !important;
  margin-right: 150px !important;
}

@media screen and (min-width: 1251px) {
  .main-visual-wrapper {
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 0;
    padding-right: 0;
  }
  .mv-text {
    padding: 24px 40px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
  }
  .mv-text h1,
  .mv-text p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* CONCEPTセクションの余白調整 */
.concept {
    margin-bottom: 100px;
}

.concept .more-button {
    margin-top: -20px; /* MOREボタンを20px下に移動（-40pxから-20pxに変更） */
    margin-bottom: 60px;
}

.slider1 {
    margin-bottom: 60px; /* Slick-SlideとSERVICEタイトルイメージの間隔 */
}

/* サービスセクションの余白調整 */
.services {
    padding-top: 60px;
    margin-bottom: 100px; /* MOREボタンとSUPPORTタイトルイメージの間隔を調整 */
}

/* サポートセクションの余白調整 */
.support {
    padding-top: 60px;
    margin-bottom: 100px; /* MOREボタンとMEMBERタイトルイメージの間隔を調整 */
}
