@charset "UTF-8";

html {
	scroll-behavior: smooth;
	scroll-snap-type: y proximity;
	overflow-y: scroll;
}

body {
	font-family: "Noto Sans JP", sans-serif;
}

/* 全ての要素にNoto Sans JPを適用 */
* {
	font-family: "Noto Sans JP", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Noto Sans JP", sans-serif;
}

/* PC/スマホ切り替え用 */
.sp-only {
	display: none;
}
.pc-only {
	display: inline;
}
@media (max-width: 768px) {
	.sp-only {
		display: inline;
	}
	.pc-only {
		display: none;
	}
}

.main-visual .align-items-center {
	padding-top: 50px;
}

/* 英語見出しにBungeeフォントを適用 */
.about-section__heading,
.strengths-hero__title,
.service-section__heading,
.instagram-area__heading {
	font-family: 'Bungee', cursive;
}

/*==================================================
hero-section
==================================================*/
.hero-section {
	position: relative;
	/* 背景画像をここに指定 */
	background-image: url('../img/bg_002.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 120px 0;
	color: #fff;
	text-align: center;
	margin-bottom: 6px;
	overflow: hidden;
	/* はみ出た部分を非表示 */
}

@media screen and (max-width: 768px) {
	.hero-section {
		background-position: 100% 20%;
	}
}



/* コンテンツがオーバーレイの上に表示されるように設定 */
.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-section__title {
	font-size: 2rem;
	font-weight: 600;
	margin-bottom: 1.5rem;
	line-height: 1.5;
	color: #fff;
}

.hero-section__container-wrapper .large_pink {
	color: #E220E2;
	font-weight: bold;
	font-size: 2.5rem;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.hero-section__subtitle {
	display: inline-block;
	background-color: #E220E2;
	color: #fff;
	font-size: 1.7rem;
	font-weight: bold;
	padding: 0.5rem 1.2rem;
	margin-bottom: 1.5rem;
}

.hero-section__subtitle .large_pink {
	color: #fff;
	font-size: inherit;
}

.hero-section__description {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	color: #fff;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.hero-section__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 60px;
	color: #e220e2;
	border: 2px solid #e220e2;
	border-radius: 50px;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.hero-section__arrow-icon {
	margin-left: 0.75rem;
	font-weight: bold;
}

/* --- ホバー効果 --- */
.hero-section__button:hover {
	background-color: #e220e2;
	color: #fff;
	transform: translateY(-3px);
	/* 少し浮き上がる効果 */
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*==================================================
レスポンシブ対応 (スマートフォン)
==================================================*/
@media (max-width: 768px) {
	.hero-section {
		padding: 80px 0;
	}

	.hero-section__title {
		font-size: 1.5rem;
	}

	.hero-section__subtitle {
		font-size: 0.95rem;
	}

	.hero-section__description {
		font-size: 0.875rem;
	}

	.hero-section__button {
		padding: 10px 30px;
		font-size: 0.9rem;
	}
}

/*==================================================
about-section
==================================================*/
.about-section {
	position: relative;
	background-image: url('../img/bg_003.png');
	background-size: cover;
	background-position: center;
	padding: 0;
	padding-top: 0px;
	color: #fff;
	overflow: hidden;
}

/* 背景の黒いオーバーレイ */
.about-section__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

/* コンテンツがオーバーレイの上に表示されるように設定 */
.about-section .container {
	position: relative;
	z-index: 2;
}

.about-section__heading {
	/* 英語見出しにBungeeフォントを適用 */
	font-family: 'Bungee', cursive;
	/* 画像から抽出した色 */
	color: #00f5e1;
	font-size: 5rem;
	font-weight: 400;
	/* Bungeeはnormal(400)で太く表示されます */
	line-height: 1;
	margin-bottom: 0;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.about-section__subheading {
	font-size: 1rem;
	margin-bottom: 2.5rem;
}

.about-section__catchphrase {
	display: inline-block;
	background-color: #00f5e1;
	color: #1a1a1a;
	/* 背景色に対して見やすいように濃い色に */
	font-size: 1.8rem;
	font-weight: bold;
	padding: 0.5rem 1.2rem;
	margin-bottom: 1.5rem;
}

.about-section__description {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
}

.about-section__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 40px;
	border: 2px solid #00f5e1;
	border-radius: 50px;
	color: #00f5e1;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.about-section__arrow-icon {
	margin-left: 0.75rem;
}

.about-section__image {
	max-width: 100%;
	height: auto;
}

/* --- ホバー効果 --- */
.about-section__button:hover {
	background-color: #00f5e1;
	color: #1a1a1a;
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/*==================================================
レスポンシブ対応 (992px未満)
==================================================*/
@media (max-width: 991.98px) {
	.site-header .navbar {
		background-image: none;
		background-color: #183C79;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	}

	.site-header.scrolled .navbar {
		background-color: rgba(24, 60, 121, 0.85);
	}

	.site-header .navbar-brand {
		-webkit-text-stroke-width: 7px;
		-webkit-text-stroke-color: black;
		paint-order: stroke fill;
	}

	.key-visual-text__line span {
		display: inline-block;
		font-weight: 600;
		line-height: 25px;
	}

	.about-section {
		padding: 0;
		padding-top: 0;
	}

	.about-section .container {
		position: relative;
		z-index: 2;
		padding-top: 50px;
	}

	.hero-section__container-wrapper {
		position: relative;
		margin-bottom: -190px;
		padding: 0 20px;
	}

	.about-section__description {
		font-size: 1.2rem;
		line-height: 1.8;
		margin-bottom: 2.5rem;
		text-align: justify;
		padding: 0 20px;
	}

	.hero-section__description {
		font-size: 1.2rem;
	}

	/* スマホではテキストと画像を中央揃えに */
	.about-section__col-text,
	.about-section__col-image {
		text-align: center;
	}

	.about-section__content {
		display: flex;
		flex-direction: column;
		align-items: center;
		/* 中央揃えのために追加 */
	}

	.about-section__heading {
		font-size: 3.5rem;
	}

	.about-section__catchphrase {
		font-size: 1.3rem;
	}

	/* 画像の上に余白を追加 */
	.about-section__col-image {
		margin-top: 3rem;
	}

	.main-visual {
		text-align: center;
	}

	.main-visual__col-qr {
		margin-top: 3rem;
	}

	.main-visual__qr-card {
		max-width: 300px;
		margin: 0 auto;
		padding: 40px 20px;
		font-size: 1.2rem;
	}
}

/*==================================================
strengths-section
==================================================*/
.strengths-section {
	position: relative;
	/* 背景画像をここに指定 */
	background-image: url('../img/bg_004.png');
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	color: #fff;
	margin-bottom: 6px;
	overflow: hidden;
	/* はみ出た部分を非表示 */
}

/* 背景の黒いオーバーレイ */
.strengths-section__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	/* さらに濃いめに設定 */
	z-index: 1;
}

/* コンテンツがオーバーレイの上に表示されるように設定 */
.strengths-section .container {
	position: relative;
	z-index: 2;
}

.strengths-section__content {
	/* テキストブロックの横幅を制限して読みやすくする */
	max-width: 900px;
	margin: 0 auto;
}

.strengths-section__heading {
	font-family: "Noto Sans JP", sans-serif;
	/* 画像から抽出した黄色 */
	color: #f7ea00;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
	text-align: center;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.strengths-section__subheading {
	font-size: 1rem;
	margin-bottom: 3.5rem;
	text-align: center;
}

.strengths-section__text-body {
	text-align: left;
	/* 本文は左揃えに */
}

.strengths-section__paragraph {
	font-size: 1.1rem;
	line-height: 2.2;
	/* 行間を広めに設定 */
	margin-bottom: 1.5rem;
}

.strengths-section__highlight {
	color: #f7ea00;
	font-weight: bold;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}


/*==================================================
レスポンシブ対応 (スマートフォン)
==================================================*/
@media (max-width: 768px) {
	.strengths-section {
		padding: 80px 15px;
		/* 横の余白も少し追加 */
	}

	.strengths-section__heading {
		font-size: 3rem;
	}

	.strengths-section__subheading {
		margin-bottom: 2.5rem;
	}

	.strengths-section__paragraph {
		font-size: 1rem;
		line-height: 2;
	}
}

/*==================================================
service-section
==================================================*/
.service-section {
	position: relative;
	/* 背景画像をここに指定 */
	background-image: url('../img/bg_005.png');
	background-size: cover;
	background-position: center;
	padding: 120px 0;
	color: #fff;
	min-height: 100vh;
}

/* Instagram Area within Service Section */
.service-instagram {
	margin-top: 0px;
	padding: 60px 0;
}

.service-instagram__header {
	text-align: center;
	margin-bottom: 60px;
}

.service-instagram__heading {
	font-family: 'Bungee', cursive;
	color: #61f200;
	font-size: 3.5rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.service-instagram__subheading {
	font-size: 1rem;
	color: #fff;
	margin-top: 10px;
	font-weight: bold;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.service-instagram__widget {
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
	margin-bottom: 30px;
}

.service-instagram__widget iframe {
	border-radius: 12px;
	overflow: hidden;
	display: block;
	margin: 0 auto;
}

.service-instagram__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
	padding: 15px 40px;
	background-color: transparent;
	border: 2px solid #61f200;
	border-radius: 50px;
	color: #61f200;
	text-decoration: none;
	font-weight: bold;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.service-instagram__link:hover {
	background-color: #61f200;
	color: #1a1a1a;
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(97, 242, 0, 0.4);
}

@media (max-width: 768px) {
	.service-instagram {
		margin-top: 50px;
		padding: 40px 15px;
	}

	.service-instagram__heading {
		font-size: 2.5rem;
	}
}

/* 背景の黒いオーバーレイ */
.service-section__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	/* 暗めの背景なので濃いめに */
	z-index: 1;
}

/* コンテンツがオーバーレイの上に表示されるように設定 */
.service-section .container {
	position: relative;
	z-index: 2;
}

.service-section__heading {
	/* 英語見出しにBungeeフォントを適用 */
	font-family: 'Bungee', cursive;
	/* 画像から抽出した緑色 */
	color: #61f200;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
	text-align: center;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.service-section__subheading {
	font-size: 1rem;
	margin-bottom: 4rem;
	/* グリッドとの余白を多めに */
	text-align: center;
}

/* グリッドの列間の余白を設定 */
.service-section__grid-col {
	margin-bottom: 30px;
}

.service-card {
	display: block;
	position: relative;
	border: 3px solid #61f200;
	border-radius: 15px;
	overflow: hidden;
	/* 画像のはみ出しを隠す */
	text-decoration: none;
	transition: all 0.3s ease;
	/* 画像の縦横比を4:3に固定 */
	aspect-ratio: 4 / 3;
}

.service-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* 画像の比率を保ったまま全体をカバー */
	transition: transform 0.4s ease;
}

.service-card__caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 15px 15px;
	/* 下から上への黒グラデーション */
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
	text-align: center;
}

.service-card__name {
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	margin: 0;
}


/* --- ホバー効果 --- */
.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 0 20px rgba(97, 242, 0, 0.6);
}

.service-card:hover .service-card__image {
	transform: scale(1.1);
	/* 画像を少し拡大 */
}

/* --- 列ごとの枠線カラー --- */
/* 1列目（1, 4, 7番目）: 赤 */
.service-section__grid-col:nth-child(3n+1) .service-card {
	border-color: #E220E2;
}
.service-section__grid-col:nth-child(3n+1) .service-card:hover {
	box-shadow: 0 0 20px rgba(226, 32, 226, 0.6);
}

/* 2列目（2, 5, 8番目）: 黄 */
.service-section__grid-col:nth-child(3n+2) .service-card {
	border-color: #f7ea00;
}
.service-section__grid-col:nth-child(3n+2) .service-card:hover {
	box-shadow: 0 0 20px rgba(247, 234, 0, 0.6);
}

/* 3列目（3, 6, 9番目）: 緑 */
.service-section__grid-col:nth-child(3n) .service-card {
	border-color: #61f200;
}
.service-section__grid-col:nth-child(3n) .service-card:hover {
	box-shadow: 0 0 20px rgba(97, 242, 0, 0.6);
}


/*==================================================
レスポンシブ対応 (スマートフォン)
==================================================*/
@media (max-width: 768px) {
	.service-section {
		padding: 80px 0;
	}

	.service-section__heading {
		font-size: 3.5rem;
	}

	.service-section__subheading {
		margin-bottom: 3rem;
	}
}

/*==================================================
final-section
==================================================*/
.final-section {
	position: relative;
	background-image: url(../img/recruit-bg.webp);
	background-size: cover;
	background-position: center;
	padding: 60px 0;
	color: #fff;
	overflow-x: hidden;
	padding-bottom: 120px;
}

/* 背景の黒いオーバーレイ */
.final-section__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.1);
	z-index: 1;
}

.final-section .container {
	position: relative;
	z-index: 2;
	text-align: center;
}

/* --- Instagram Area --- */
.instagram-area {
	margin-bottom: 100px;
}

.instagram-area__heading {
	font-family: "Noto Sans JP", sans-serif;
	/* フォントをBungeeに変更 */
	color: #f7ea00;
	/* 黄色 */
	font-size: 3.5rem;
	/* Bungeeに合わせてサイズ調整 */
	font-weight: 400;
	line-height: 1;
	margin-bottom: 0;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.instagram-area__subheading {
	font-size: 1rem;
	margin-bottom: 2rem;
}

.instagram-area__placeholder {
	display: flex;
	justify-content: center;
	gap: 20px;
}

.instagram-area__placeholder-item {
	width: 150px;
	height: 150px;
	background-color: #d9d9d9;
}

/* --- Recruit Partner Wrapper --- */
.recruit-partner-wrapper {
	display: flex;
	gap: 40px;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 80px;
}

/* --- Recruit Area --- */
.recruit-area {
	position: relative;
	flex: 1;
	min-width: 350px;
	max-width: 520px;
}

/* カードサイズ統一 */
.recruit-area .strengths-recruit {
	margin-bottom: 0;
	width: 100%;
	min-height: 320px;
	padding: 2.5rem 2rem;
	box-sizing: border-box;
}

/* コンテンツ中央寄せ */
.recruit-area .strengths-recruit__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* ボタンサイズ統一 */
.recruit-area .strengths-recruit__button {
	width: 280px;
	height: 56px;
	padding: 0 2rem;
	font-size: 1rem;
	justify-content: center;
	background-color: #183c79;
	border-color: #183c79;
}

.recruit-area .strengths-recruit__button:hover {
	background-color: #f39c12;
	border-color: #f39c12;
	color: #fff;
}

/* ★の光るアニメーション */
@keyframes starShine {
	0%, 100% {
		filter: drop-shadow(0 0 2px currentColor);
		transform: scale(1);
	}
	50% {
		filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 15px currentColor);
		transform: scale(1.1);
	}
}

@keyframes starTwinkle {
	0%, 100% {
		opacity: 1;
		filter: drop-shadow(0 0 3px currentColor);
	}
	25% {
		opacity: 0.8;
		filter: drop-shadow(0 0 6px currentColor);
	}
	50% {
		opacity: 1;
		filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 0 20px currentColor);
	}
	75% {
		opacity: 0.9;
		filter: drop-shadow(0 0 5px currentColor);
	}
}

/* 左カード: 金色の星 */
.recruit-area--left .strengths-recruit__stars svg {
	fill: #FFD700;
	stroke: #DAA520;
	color: #FFD700;
	animation: starTwinkle 2s ease-in-out infinite;
}
.recruit-area--left .strengths-recruit__stars svg:nth-child(2) {
	animation-delay: 0.3s;
}
.recruit-area--left .strengths-recruit__stars svg:nth-child(3) {
	animation-delay: 0.6s;
}

/* 右カード: 銀色の星 */
.recruit-area--right .strengths-recruit__stars svg {
	fill: #C0C0C0;
	stroke: #A8A8A8;
	color: #E8E8E8;
	animation: starTwinkle 2.5s ease-in-out infinite;
}
.recruit-area--right .strengths-recruit__stars svg:nth-child(2) {
	animation-delay: 0.4s;
}
.recruit-area--right .strengths-recruit__stars svg:nth-child(3) {
	animation-delay: 0.8s;
}

.recruit-area__character {
	position: absolute;
	top: -80px;
	right: -50px;
	width: 200px;
	z-index: 10;
}

.recruit-area__link-box {
	border: 4px solid #f7ea00;
	padding: 40px 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.recruit-area__text {
	font-family: "Noto Sans JP", sans-serif;
	/* フォントをBungeeに変更 */
	color: #f7ea00;
	font-size: 2.5rem;
	/* Bungeeに合わせてサイズ調整 */
	font-weight: 400;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

/* --- Scroll Top Button --- */
.scroll-top-button {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999;
	color: #f7ea00;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.3s ease;
}

.scroll-top-button__arrow {
	display: block;
	width: 0;
	height: 0;
	/* CSSで上向きの三角形を作成 */
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #f7ea00;
	margin: 0 auto 5px;
}

.scroll-top-button__text {
	font-family: "Noto Sans JP", sans-serif;
	/* フォントをBungeeに変更 */
	font-size: 1.2rem;
	/* Bungeeは幅広なためサイズ調整 */
	line-height: 1;
}


/* --- ホバー効果 --- */
.recruit-area__link-box:hover {
	background-color: rgba(247, 234, 0, 0.1);
	box-shadow: 0 0 20px rgba(247, 234, 0, 0.5);
}

.scroll-top-button:hover {
	opacity: 0.8;
}


/*==================================================
レスポンシブ対応 (スマートフォン)
==================================================*/
@media (max-width: 768px) {
	.final-section {
		padding: 80px 0;
	}

	.instagram-area {
		margin-bottom: 80px;
	}

	.instagram-area__heading {
		font-size: 2.5rem;
	}

	.instagram-area__placeholder {
		/* 画面幅に合わせて縮小・折り返し */
		flex-wrap: wrap;
		gap: 10px;
		padding: 0 15px;
	}

	.instagram-area__placeholder-item {
		/* 2列になるように調整 */
		flex-basis: calc(50% - 5px);
		height: auto;
		aspect-ratio: 1/1;
	}

	.recruit-partner-wrapper {
		flex-direction: column;
		align-items: center;
		gap: 80px;
		padding-top: 60px;
	}

	.recruit-area {
		max-width: 100%;
		min-width: auto;
		width: 100%;
	}

	.recruit-area__character {
		/* スマホではキャラクターを小さく、位置を調整 */
		width: 100px;
		top: -50px;
		right: -10px;
	}

	.recruit-area__text {
		font-size: 1.8rem;
	}

	.scroll-top-button {
		bottom: 15px;
		right: 15px;
		transform: scale(0.8);
		/* 少し小さく表示 */
	}
}

/*==================================================
 Header (Bootstrap Override)
==================================================*/
.site-header .navbar {
	padding: 15px 0;
	transition: all 0.4s ease;

	/* ▼ 初期状態：黒グラデーション ▼ */
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
	background-color: transparent;
}

/* ▼ スクロール時：薄い青背景 ▼ */
.site-header.scrolled .navbar {
	background-image: none;
	background-color: rgba(24, 60, 121, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* ヘッダー全体を画面上部に固定 */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1030;
	/* BootstrapのNavbarのz-indexは1030 */
}

/* ブランドロゴのスタイル調整 */
.site-header .navbar-brand {
	font-size: 1.25rem;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 0.75rem;
	-webkit-text-stroke-width: 7px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.site-header .navbar-brand img {
	height: 40px;
	width: auto;
}

/* ナビゲーションリンクのスタイル */
.site-header .navbar-nav .nav-link {
	color: #fff;
	text-align: center;
	font-size: 0.8rem;
	padding: 0.5rem 0.8rem;
	/* 余白を調整 */
	transition: opacity 0.3s ease;
}

.site-header .navbar-nav .nav-link span {
	display: block;
	font-size: 0.9rem;
	font-weight: bold;
}

.site-header .navbar-nav .nav-link:hover {
	color: #fff;
	/* ホバー時の色も白に */
	opacity: 0.8;
}

/* ハンバーガーボタンの枠線の色を調整 */
.site-header .navbar-toggler {
	border-color: rgba(255, 255, 255, 0.2);
}

/*==================================================
 Main Visual
==================================================*/
.main-visual {
	position: relative;
	background-image: url(../img/main-visual-bg.webp);
	background-size: cover;
	background-position: left;
	color: #333;
	padding: 0;
	overflow: hidden;
	height: 100vh;
}

.main-visual__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1;
}

.main-visual__container {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	position: relative;
	z-index: 2;
}

.hero-section__container-wrapper {
	position: relative;
	margin-bottom: -130px;
}

.hero-section__container {
	position: relative;
	z-index: 2;
	padding: 30px 0;
}

.hero-section__image {
	width: 100%;
	height: auto;
	border-radius: 10px;
	max-width: 80%;
}

.hero-section__content {
	text-align: left;
}

/* セクション境目の装飾 */
.section-divider {
	width: 100%;
	height: auto;
	margin-bottom: 6rem;
	pointer-events: none;
}

.section-divider--bottom {
	margin-bottom: 0;
	margin-top: 6rem;
}

.section-divider__border-wrapper {
	position: relative;
	width: 100%;
	z-index: 5;
}

.section-divider__border {
	width: 100%;
	max-width: 100%;
	height: auto;
	display: block;
}

.section-divider__icon {
	position: absolute;
	left: -1%;
	bottom: 10%;
	transform: translateY(50%);
	width: 24%;
	max-width: 300px;
	min-width: 100px;
	height: auto;
}

/* Reason Slider */
@keyframes scroll-step-4 {
	0%, 14% { transform: translateX(0); }
	16.66%, 30% { transform: translateX(-8.33%); }
	33.33%, 47% { transform: translateX(-16.66%); }
	50%, 64% { transform: translateX(-25%); }
	66.66%, 80% { transform: translateX(-33.33%); }
	83.33%, 97% { transform: translateX(-41.66%); }
	100% { transform: translateX(-50%); }
}

.reason-slider {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 2rem 0;
}

.reason-slider__track {
	display: flex;
	width: max-content;
	animation: scroll-step-4 20s ease-in-out infinite;
}

.reason-slider__set {
	display: flex;
	gap: 2rem;
	padding: 0 1rem;
	align-items: flex-start;
}

.reason-card {
	width: 320px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s;
}

.reason-card:hover {
	transform: translateY(-8px);
}

.reason-card__image-wrap {
	width: 100%;
	aspect-ratio: 1;
	background: white;
	padding: 8px;
	border-radius: 1.5rem;
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
	position: relative;
}

.reason-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
}

.reason-card__label {
	position: absolute;
	top: 16px;
	right: 16px;
	background: rgba(255,255,255,0.95);
	color: #032A29;
	font-weight: 800;
	padding: 4px 12px;
	border-radius: 9999px;
	font-size: 0.75rem;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	z-index: 10;
}

.reason-card__content {
	margin-top: 1rem;
	text-align: center;
	width: 100%;
}

.reason-card__point {
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.1em;
}

.reason-card__title {
	font-weight: 800;
	font-size: 1.875rem;
	line-height: 1.2;
	margin: 0.25rem 0;
}

.reason-card__desc {
	margin-top: 0.5rem;
	color: white;
	font-weight: 700;
	font-size: 1rem;
	border-bottom: 1px solid white;
	padding-bottom: 0.5rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}

.reason-card__tag {
	margin-top: 1rem;
	background: white;
	border-radius: 9999px;
	padding: 0.5rem 1.5rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.reason-card__tag-text {
	color: #1f2937;
	font-weight: 700;
	font-size: 0.875rem;
}

.text-accent-green { color: #00D56E; }
.text-accent-red { color: #FF3366; }
.text-accent-purple { color: #D946EF; }
.text-accent-yellow { color: #FFCC00; }
.text-accent-cyan { color: #06B6D4; }
.text-accent-blue { color: #3B82F6; }

/* 見出し用縁取り (6px) */
.reason-card__title.text-accent-green,
.reason-card__title.text-accent-red,
.reason-card__title.text-accent-purple,
.reason-card__title.text-accent-yellow,
.reason-card__title.text-accent-cyan,
.reason-card__title.text-accent-blue {
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

/* コンテンツ用縁取り (3px) */
.reason-card__point.text-accent-green,
.reason-card__point.text-accent-red,
.reason-card__point.text-accent-purple,
.reason-card__point.text-accent-yellow,
.reason-card__point.text-accent-cyan,
.reason-card__point.text-accent-blue {
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

@media screen and (max-width: 768px) {
	.main-visual {
		background-position: 75% 20%;
	}

	.section-divider__icon {
		left: 20px;
		max-width: 80px;
	}
}

/* 回転する円のスタイル（上半分だけ見える） */
.rotating-semicircle {
	position: absolute;
	top: 490px;
	left: 80%;
	transform: translateX(-50%);
	width: 1500px;
	height: 1500px;
	z-index: 1;
	animation: rotate-circle 100s linear infinite;
}

@keyframes rotate-circle {
	0% {
		transform: translateX(-50%) rotate(0deg);
	}
	100% {
		transform: translateX(-50%) rotate(360deg);
	}
}

@media screen and (max-width: 768px) {
	.rotating-semicircle {
		display: none;
	}
}

/* work.svgのスタイル */
.work-image {
	position: absolute;
	top: 70px;
	left: 80%;
	transform: translateX(-50%);
	width: 536px;
	height: auto;
	z-index: 2;
}

@media screen and (max-width: 768px) {
	.work-image {
		display: none;
	}
}

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

.main-visual__title {
	font-size: 60px;
	line-height: 1.4;
	margin-bottom: 1.3rem;
	height: auto;
	font-weight: bold !important;
	color: #fff;
}


.main-visual__title-line {
	display: block;
	/* 各行を改行 */
	font-weight: bold;
	font-size: 4rem;
}

.main-visual__title-line--red {
	color: red;
	font-size: 1.4em;
	font-weight: bold;
	-webkit-text-stroke-width: 8px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.main-visual__title-line--highlight {
	color: #182075;
	background-color: white;
	padding: 0em 0.3em;
	padding-bottom: 6px;
	display: inline-block;
	font-size: 4rem;
	transform: skew(-18.0001deg, 0deg);
}

.main-visual__title-line--highlight span {
	display: inline-block;
	transform: skewX(0deg);
	font-weight: 600;
	-webkit-text-stroke-width: 5px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

@keyframes neonGlow {
	0%, 100% {
		filter: brightness(1);
		color: #D4A574;
	}
	50% {
		filter: brightness(1.15);
		color: #E0B088;
	}
}

.neon-brown {
	color: #D4A574;
	display: inline-block;
	transform: skewX(0deg);
	font-style: normal;
	animation: neonGlow 2s ease-in-out infinite;
}

.main-visual__title-image {
	display: block;
	width: 100%;
	height: auto;
	max-width: 50%;
	margin-top: 0.5rem;
	margin-left: -10px;
}

.key-visual-koe {
	display: block;
	width: 100%;
	height: auto;
	max-width: 60%;
}

/* スマホ（768px以下）のとき - main-visual */
@media (max-width: 768px) {
	.main-visual__title-line--highlight {
		font-size: 2rem !important;
	}

	.main-visual__title-line {
		font-size: 2.0rem !important;
		text-align: justify;
	}

	.main-visual__title-image {
		max-width: 70% !important;
		margin-top: 0.3rem;
		margin-left: -4px;
	}

	.key-visual-koe {
		max-width: 100% !important;
	}

	.key-visual-text__content p {
		margin-bottom: 0.5rem;
		font-size: 0.7rem;
		line-height: 35px;
		font-weight: 600;
		color: #182075;
		text-align: justify;
	}

	.main-visual__title {
		margin-bottom: 3.3rem !important;
	}

	.main-visual__title-line {
		margin-bottom: -1.3rem;
		margin-left: auto;
	}

	.hero-section__container {
		position: relative;
		z-index: 2;
		padding: 30px 0;
		padding-bottom: 11rem;
	}

	.hero-section__row {
		flex-direction: column-reverse;
	}

	.hero-section__col-image {
		padding-top: 3rem;
	}

	.section-divider {
		width: 160%;
		height: auto;
		margin-bottom: 0;
		margin-left: 0%;
	}

	.reason-slider {
		padding-bottom: 5rem;
	}

	.hero-section__button {
		display: flex;
		justify-content: center;
		margin: 0 auto;
	}

	.strengths-hero__title {
		font-size: 3rem;
		font-family: "Noto Sans JP", sans-serif;
		font-style: italic;
		letter-spacing: -0.05em;
		color: #FFD600;
		text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.4);
		transform: skewX(-12deg);
		margin-top: 3rem;
		line-height: 1;
		-webkit-text-stroke-width: 8px;
		-webkit-text-stroke-color: black;
		paint-order: stroke fill;
	}

	.strengths-hero__subtitle {
		color: white;
		font-weight: 600;
		font-size: 1.25rem;
		letter-spacing: 0.1em;
		margin-top: 2rem;
	}

	.strengths-hero__message-text {
		text-align: left;
	}
}

.key-visual-text {
	margin-top: 1rem;
	color: #fff;
	font-size: 1.1rem;
	line-height: 1.8;
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.key-visual-annai {
	width: 150px;
	height: auto;
	flex-shrink: 0;
}

.key-visual-text__content {
	margin-top: 2rem;
}

.key-visual-text__content p {
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
	line-height: 35px;
	font-weight: 600;
	color: #182075;
}

.key-visual-text__line {
	background-color: white;
	padding: 0.5rem 1rem;
	display: inline-block;
	font-weight: 500;
	transform: skew(-18.0001deg, 0deg);
}

.key-visual-text__line span {
	display: inline-block;
	font-weight: 600;
}

.key-visual-highlight {
	color: #E220E2;
	font-size: 1.4em;
	font-weight: bold;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.key-visual-yellow {
	color: #FFD600;
	-webkit-text-stroke-width: 3px;
	-webkit-text-stroke-color: black;
	paint-order: stroke fill;
}

.main-visual__description {
	font-size: 0.875rem;
	line-height: 1.9;
	color: #fff;
	/* 背景が暗めの場合に読みやすく */
	text-shadow:
		0 2px 4px rgba(0, 0, 0, 0.5),
		0 4px 8px rgba(0, 0, 0, 0.4);
	font-weight: bold;
}


.main-visual__qr-card {
	display: block;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 20px;
	padding: 50px 30px;
	color: #000;
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	text-decoration: none;
	backdrop-filter: blur(5px);
	/* すりガラス効果 */
	transition: transform 0.3s ease;
}

.main-visual__qr-card:hover {
	transform: scale(1.05);
}

.strengths-section__highlight {
	font-size: 30px;
	padding: 0 10px;
}

.highlight {
	font-weight: bold;
	font-size: 30px;
	padding: 0 5px;
	color: #f7ea00;
}

/* スマホ（768px以下）のとき */
@media (max-width: 768px) {
	.highlight {
		font-size: 16px;
	}
}

.main-visual__paragraph,
.hero-section__title,
.hero-section__subtitle,
.hero-section__description,
.about-section__subheading,
.about-section__description,
.strengths-section__subheading,
.strengths-section__paragraph,
.service-section__subheading {
	font-weight: bold;
	text-shadow:
		0 2px 6px rgba(0, 0, 0, 0.5),
		0 4px 12px rgba(0, 0, 0, 0.4);
}
