@charset "utf-8";

/* ========================================
   CSS変数の定義（SASSライクな管理）
   ======================================== */



/* 共有 */

html{
    font-size: 100%;
}

a{
\ttext-decoration: none;
\ttransition: 0.3s ease;
}
a:hover {
\topacity: 0.9;
\tbackground-color: #f3f4f6;
}

img{
    width: 100%;
    vertical-align: top;
}
p{
    color: black;
}
#pc_only{
    display: block;
}
#sp_only {
	display: none;
}
/* --------------------------------
 * レスポンシブ設定
 * -------------------------------- */
 @media (max-width: 768px) {
    /* -----　共有設定　----- */
	body{
		overflow-x: hidden;
	}
    #pc_only {
        display: none;
    }
    
    #sp_only {
        display: block;
    }
}

/* ========================================
   ヘッダー
   ======================================== */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: #ffffff;
	padding: 20px 40px;
}

main {
	padding-top: 72px;
}

.header-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.header-logo {
	flex-shrink: 0;
}

.logo-link {
	display: flex;
	flex-direction: column;
	color: #333333;
	font-size: 20px;
	line-height: 1.5;
	letter-spacing: 0.02em;
	font-weight: 700;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.logo-link:hover {
	opacity: 0.7;
	color: #333333;
}

.logo-line1,
.logo-line2 {
	display: block;
}

.header-nav {
	flex: 1;
	display: flex;
	justify-content: flex-end;
}

.header-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
	font-weight: 600;
}

.header-nav-list li {
	margin: 0;
}

.header-nav-list a {
	color: #333333;
	font-size: 15px;
	letter-spacing: 0.02em;
}

.header-nav-list a:hover {
	color: #333333;
	opacity: 0.7;
}

.header-cta {
	flex-shrink: 0;
}

.header-contact-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: #007bff;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 6px;
	letter-spacing: 0.02em;
}

.header-contact-btn:hover {
	background-color: #0069d9;
	color: #ffffff;
	opacity: 1;
}

.contact-btn-icon {
	flex-shrink: 0;
}

.header-menu-toggle {
	display: none;
}

/* ヘッダー レスポンシブ */
@media screen and (max-width: 768px) {
	.site-header {
		padding: 16px 20px;
	}

	main {
		padding-top: 0;
	}

	.header-inner {
		gap: 12px;
	}

	.header-logo {
		flex: 1;
	}
	
	.logo-link {
		font-size: 14px;
		color: #225B89;
	}

	.header-cta {
		display: none;
	}

	.header-menu-toggle {
		display: inline-flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 4px;
		width: 40px;
		height: 40px;
		border-radius: 999px;
		border: 1px solid #d1d5db;
		background-color: #ffffff;
		cursor: pointer;
		z-index: 1;
	}

	.header-menu-bar {
		display: block;
		width: 18px;
		height: 2px;
		background-color: #111827;
		border-radius: 999px;
		transition: transform 0.2s ease, opacity 0.2s ease;
	}

	.header-menu-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}

	.header-menu-toggle.is-open .header-menu-bar:nth-child(1) {
		transform: translateY(6px) rotate(45deg);
	}

	.header-menu-toggle.is-open .header-menu-bar:nth-child(2) {
		opacity: 0;
	}

	.header-menu-toggle.is-open .header-menu-bar:nth-child(3) {
		transform: translateY(-6px) rotate(-45deg);
	}

	.header-nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: 260px;
		background-color: #ffffff;
		padding: 80px 24px 24px;
		box-shadow: -12px 0 30px rgba(15, 23, 42, 0.25);
		transform: translateX(100%);
		transition: transform 0.25s ease-out;
		display: block;
	}

	.header-nav.is-open {
		transform: translateX(0);
	}

	.header-nav-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
	}

	.header-nav-list a {
		font-size: 15px;
		padding: 8px 4px;
		width: 100%;
	}
}

.header-nav-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(15, 23, 42, 0.45);
	z-index: 90;
}

.header-nav-overlay.is-open {
	display: block;
}

body.is-header-nav-open {
	overflow: hidden;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero {
	position: relative;
	min-height: 85vh;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 80%;
    height: 85%;
    object-fit: cover;
    object-position: center;
    margin:0 auto;
    background: antiquewhite;
    z-index: 2;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(80, 100, 120, 0.25) 0%, rgba(60, 80, 100, 0.4) 100%);
	pointer-events: none;
}

.hero-blue-left {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 35%;
	background-color: #1e4976;
	z-index: 1;
}

.hero-blue-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60px;
    background-color: #1e4976;
    z-index: 1;
    display: flex;
    height: fit-content;
    padding: 20px 0;
    justify-content: center;
}

.hero-scroll {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.hero-scroll-text {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	letter-spacing: 0.2em;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
}

.hero-scroll-line {
	width: 1px;
	flex: 1;
	min-height: 60px;
	background-color: #ffffff;
}

.hero-inner {
	position: relative;
	z-index: 2;
	width: 1200px;
	margin: 0 auto;
	flex: 1;
	display: flex;
	align-items: center;
}

.hero-content {
	max-width: 560px;
}

.hero-title {
	font-size: 65px;
	font-weight: 700;
	color: #00254E;
	margin: 0 0 24px 0;
	line-height: 1.2;
	letter-spacing: 0.02em;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.hero-subtitles {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.hero-subtitle {
	display: inline-block;
	background-color: #00254E;
	color: #ffffff;
	font-size: 32px;
	font-weight: 500;
	padding: 12px 20px;
	line-height: 1.4;
	letter-spacing: 0.02em;
	width: fit-content;
}

.hero-info-bar {
	position: relative;
	z-index: 3;
	width: 1200px;
	margin: 0 auto;
	transform: translateY(-60%);
}

.hero-info-bar::before {
    content: "";
    position: absolute;
    left: 30px;
    right: 0px;
    top: 50%;
    transform: translateY(-100%);
    border-radius: 999px;
    background: linear-gradient(90deg, #1e4976 0%, #2e74c9 50%, #1e4976 100%);
    z-index: 3;
    width: 3px;
    height: 100px;
}

.hero-info-inner {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 24px;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    width: 60%;
}

.hero-info-label {
	font-size: 26px;
	font-weight: 700;
	color: #00254E;
	letter-spacing: 0.05em;
	flex-shrink: 0;
}

.hero-info-divider {
	width: 1px;
	height: 32px;
	background-color: #333333;
	flex-shrink: 0;
}

.hero-info-text {
	flex: 1;
	min-width: 0;
}

.hero-info-line1,
.hero-info-line2 {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: #1a1a1a;
}

.hero-info-line2 {
	margin-top: 4px;
}

/* ヒーロー レスポンシブ */
@media screen and (max-width: 1024px) {
	.hero-inner {
		padding: 60px 40px 160px 40px;
	}

	.hero-info-bar {
		padding: 0 40px;
	}
}

@media screen and (max-width: 768px) {
	.hero {
		min-height: 70vh;
	}

	.hero-blue-left {
		width: 100%;
		height: 35%;
	}

	.hero-blue-right {
		width: 44px;
	}

	.hero-scroll-text {
		font-size: 10px;
	}

	.hero-scroll-line {
		min-height: 40px;
	}

	.hero-inner {
		padding: 40px 20px 40px 20px;
		width: 80%;
	}

	.hero-title {
		margin-bottom: 20px;
		font-size: 28px;
	}

	.hero-subtitle {
		padding: 5px 10px;
		font-size: 14px;
	}
	.hero-bg {
		width: 90%;
	}	
	.hero-info-bar {
		padding: 0 20px;
		transform: translateY(-20%);
		width: 85%;

	}

	.hero-info-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
		padding: 16px 20px;
		width: auto;
	}

	.hero-info-divider {
		width: 100%;
		height: 1px;
	}
}

/* ========================================
   aboutセクション（成約はゴールではない）
   ======================================== */
.about-section {
	position: relative;
	overflow: hidden;
}

.about-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background-color: #e8eaed;
}

.about-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 40px 100px;
}

.about-content {
	max-width: 800px;
	position: relative;
}

.about-title {
	margin: 0 0 32px 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
	color: #00254E;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.about-title-line1,
.about-title-line2 {
	display: block;
}



.about-body {
	font-size: 18px;
	line-height: 2;
	color: #1a1a1a;
	padding: 30px;
	background-color: #ffffffb8;;
	position: relative;
	z-index: 1;
	
}

.about-content::before {
    content: "";
    position: absolute;
    top: 0px;
    width: 500px;
    height: 300px;
    background: url(../images/img_top-message.jpg) no-repeat center / contain;
    pointer-events: none;
    z-index: 0;
    right: -450px;
    background-size: cover;
}

.about-body p {
	margin: 0 0 1.4em 0;
	color: #1a1a1a;
}

.about-body p:last-child {
	margin-bottom: 0;
}

/* コンセプト図・リスト・CTA */
.about-concept {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    width: 1200px;
    margin: 100px auto 0;
}

.about-diagram {
	flex-shrink: 0;
	width: 450px;
}

.about-diagram-img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.about-list {
	margin: 0;
	padding: 0;
	list-style: none;
	flex: 1;
	min-width: 0;
}

.about-list-item {
	margin: 0;
	padding: 24px 0;
	border-bottom: 1px solid #e0e0e0;
}

.about-list-item:first-child {
	padding-top: 0;
}

.about-list-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.about-list-title {
	margin: 0 0 12px 0;
	font-size: 26px;
	font-weight: 700;
	color: #1e4976;
}

.about-list-sub {
	font-weight: 500;
	font-size: 0.95em;
}

.about-list-desc {
	margin: 0;
	font-size: 16px;
	line-height: 1.85;
	color: #1a1a1a;
}

.about-cta-wrap {
	margin-top: 48px;
	text-align: center;
}

.about-cta-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #ffffff;
	border: 1px solid #18456A;
	color: #18456A;
	font-size: 15px;
	text-align: center;
	border-radius: 2px;
}

.about-cta-btn:hover {
	opacity: 0.85;
	color: #18456A;
}

.about-cta-arrow {
	margin-left: 4px;
}

/* aboutセクション レスポンシブ */
@media screen and (max-width: 1024px) {
	.about-inner {
		padding: 60px 24px 80px;
	}

	.about-content {
		max-width: 70%;
	}

	.about-concept {
		gap: 40px;
		margin-top: 48px;
	}

	.about-diagram {
		width: 240px;
	}
}

@media screen and (max-width: 768px) {
	.about-inner {
		padding: 50px 20px 150px;
	}

	.about-content {
		max-width: 100%;
	}

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

	.about-body {
		font-size: 14px;
		line-height: 1.9;
	}

	.about-concept {
		flex-direction: column;
		align-items: center;
		gap: 32px;
		margin-top: 40px;
		width: 95%;
	}

	.about-diagram {
		width: 75%;
	}

	.about-list-item {
		padding: 20px 0;
	}

	.about-list {
		width: 90%;
	}
	.about-list-title {
		font-size: 16px;
	}

	.about-list-desc {
		font-size: 14px;
	}

	.about-cta-wrap {
		margin-top: 40px;
	}

	.about-cta-btn {
		padding: 12px 24px;
		font-size: 16px;
		width: 60%;
	}
	.about-content::before {
		bottom: -120px;
		width: 300px;
		height: 150px;
		right: 0;
		top: auto;
	}
}

/* ========================================
   PROGRAMセクション
   ======================================== */
.program-section {
	position: relative;
	overflow: hidden;
	padding: 80px 0 100px;
}

.program-bg {
    position: absolute;
    width: 100%;
    height: 50%;
    object-fit: cover;
    object-position: center;
    background-color: #1e4976;
    bottom: 0;
}

.program-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(30, 73, 118, 0.75);
	pointer-events: none;
}

.program-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
}

.program-header {
	margin-bottom: 48px;
}

.program-title {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	color: #0D2B42;
	letter-spacing: 0.08em;
}

.program-title-line {
	display: block;
	height: 2px;
	background: linear-gradient(90deg, #1e4976 0%, #1e4976 5%, #9ca3af 0%, #9ca3af 100%);
	margin: 20px 0;
}

.program-subtitle {
	margin: 8px 0 0 0;
	font-size: 40px;
	font-weight: 500;
	color: #5D8AB0;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.program-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
	margin-bottom: 48px;
}

.program-card {
	background-color: #ffffff;
	border-radius: 4px;
	overflow: hidden;
}

.program-card-img {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	height: 300px;
	background-color: #4b5563;
	color: #ffffff;
}

.program-card-icon {
	flex-shrink: 0;
	opacity: 0.9;
}

.program-card-noimage {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.program-card-body {
	padding: 24px 20px;
}

.program-card-text {
	margin: 0 0 12px 0;
	font-size: 25px;
	font-weight: 600;
	color: #0d2137;
	line-height: 1.5;
}

.program-card-tag {
	display: inline-block;
	background-color: #1e4976;
	color: #ffffff;
	font-size: 20px;
	font-weight: 500;
	padding: 6px 14px;
	border-radius: 4px;
}

.program-cta-wrap {
	text-align: center;
}

.program-cta-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #f3f4f6;
	border: 1px solid #d1d5db;
	color: #18456A;
	font-size: 15px;
	font-weight: 500;
	border-radius: 4px;
}

.program-cta-btn:hover {
	opacity: 0.9;
	color: #0d2137;
}

.program-cta-arrow {
	margin-left: 4px;
}

/* PROGRAM レスポンシブ */
@media screen and (max-width: 768px) {
	.program-title {
		font-size: 40px;
	}
	.program-subtitle {
		font-size: 20px;
	}

	.program-section {
		padding: 60px 20px 80px;
        background-color: #F8F8F8;
        margin-top: 70px;
	}

	.program-header {
		margin-bottom: 36px;
	}

	.program-cards {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 40px;
	}

	.program-card-img {
		height: 160px;
	}

	.program-card-body {
		padding: 20px 16px 10px;
	}

	.program-card-text {
		font-size: 18px;
		text-align: center;
        margin-top: 15px;
	}
	.program-card-tag {
		font-size: 14px;
	}

	.program-cta-btn {
		padding: 12px 24px;
		font-size: 14px;
	}
	.program-bg {
		position: relative;
	}
}

/* ========================================
   PROGRAMページ CONCEPTセクション
   ======================================== */

.program-concept-section {
	padding: 50px 0 100px;
}

.program-concept-inner {
	max-width: 1200px;
	margin: 0 auto;
	align-items: center;
	position: relative;
}

.program-concept-word {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 60px;
	font-weight: 700;
	letter-spacing: 0.25em;
	color: rgba(30, 73, 118, 0.12);
	position: absolute;
}

.program-concept-content {
	position: relative;
	z-index: 1;
}

.program-concept-title {
	margin: 0 0 24px 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.6;
	color: #1e4976;
	
font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.program-concept-body {
    font-size: 20px;
    line-height: 2;
    color: #1f2933;
    width: 1000px;
    margin: auto;
	background-color: #FFFFFF;
    padding: 30px;
}

.program-concept-body p {
	margin: 0 0 1.4em 0;
}

.program-concept-body p:last-child {
	margin-bottom: 0;
}

.program-concept-image {
    position: absolute;
    top: -50px;
    right: 0;
    width: 250px;
	z-index: -1;
}

.program-concept-photo {
	display: block;
	max-width: 360px;
	width: 100%;
	height: auto;
	object-fit: cover;
	filter: saturate(0.8);
}

@media screen and (max-width: 1024px) {
	.program-concept-section {
		padding: 70px 32px 90px;
	}

	.program-concept-inner {
		grid-template-columns: auto minmax(0, 1.8fr);
		grid-template-rows: auto auto;
		column-gap: 40px;
		row-gap: 40px;
	}

	.program-concept-image {
		grid-column: 2 / 3;
		grid-row: 1 / 3;
		align-self: center;
	}
}

@media screen and (max-width: 768px) {
	.program-concept-section {
		padding: 60px 20px 0;
	}

	.program-concept-inner {
		display: block;
	}

	.program-concept-word {
		position: absolute;
		left: 8px;
		top: 32px;
		font-size: 32px;
		opacity: 0.1;
	}

	.program-concept-title {
		margin-bottom: 20px;
		font-size: 20px;
	}

	.program-concept-body {
		padding: 24px 10px;
        width: 95%;
		font-size: 14px;
	}

	.program-concept-image {
		margin-top: 32px;
	}

	.program-concept-photo {
		max-width: 100%;
	}
}

/* ========================================
   PROGRAMページ 5つのステップセクション
   ======================================== */
.program-steps-section {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.program-steps-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.program-steps-bg-img {
	position: absolute;
	width: 100%;
	object-fit: cover;
}

.program-steps-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 100px 0 200px;
}

.program-steps-title {
	margin: 0 0 48px 0;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	color: #0d2137;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.program-steps-title-line1 {
	display: block;
}

.program-steps-title-line2 {
	display: block;
	margin-top: 0.2em;
}

.program-steps-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.program-steps-item {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 50px;
	align-items: start;
}

.program-steps-item-inner{
	gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.program-steps-num {
    display: block;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffff;
    white-space: nowrap;
    padding-top: 4px;
}

.program-steps-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	flex-shrink: 0;
}

.program-steps-icon svg {
	width: 24px;
	height: 24px;
}

.program-steps-card {
	background-color: #ffffff;
	border-radius: 12px;
	padding: 24px 28px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.program-steps-card-title {
	margin: 0 0 12px 0;
	font-size: 28px;
	font-weight: 700;
	color: #1e4976;
	line-height: 1.4;
}

.program-steps-card-desc {
	margin: 0;
	font-size: 20px;
	line-height: 1.8;
	color: #374151;
}

@media screen and (max-width: 768px) {
	.program-steps-inner {
		padding: 60px 10px 80px;
	}

	.program-steps-title {
		margin-bottom: 36px;
		font-size: 20px;
	}

	.program-steps-item {
		grid-template-columns: auto 1fr;
		gap: 16px;
		align-items: center;
	}

	.program-steps-num {
		font-size: 18px;
		color: #18456A;
	}

	.program-steps-icon {
		width: 75px;
	}

	.program-steps-card {
		padding: 5px 10px;
	}

	.program-steps-card-title {
		font-size: 16px;
		margin: 0 0 5px 0;
	}

	.program-steps-card-desc {
		font-size: 14px;
	}
}

/* ========================================
   PROGRAMページ 6ヶ月カリキュラム（COURSES）セクション
   ======================================== */
.program-courses-section {
	position: relative;
	background-color: #F8F8F8;
	padding: 80px 0 100px;
}

.program-courses-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.program-courses-inner-wrap{
	background-color: #FFFFFF;
}
.program-courses-big-title {
	text-align: center;
	margin: 0 0 40px 0;
	font-size: clamp(3rem, 8vw, 5rem);
	font-weight: 700;
	letter-spacing: 0.15em;
	color: rgba(30, 73, 118, 0.12);
	line-height: 1;
}

.program-courses-intro {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 48px;
	align-items: start;
	width: 1000px;
    margin: auto;
    padding: 100px 0 50px;
}

.program-courses-intro-content {
	min-width: 0;
}

.program-courses-intro-title {
	margin: 0 0 16px 0;
	font-size: clamp(1.35rem, 2.5vw, 1.65rem);
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.4;
}

.program-courses-intro-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #1a1a1a;
}

.program-courses-intro-img {
	position: relative;
	background-color: #4b5563;
	min-height: 220px;
	border-radius: 8px;
	overflow: hidden;
}

.program-courses-intro-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.program-courses-noimage {
	display: none;
	position: absolute;
	inset: 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #ffffff;
}

.program-courses-noimage-icon {
	opacity: 0.9;
}

.program-courses-noimage-text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.program-courses-cta-wrap {
	text-align: center;
	padding-bottom: 50px;
}

.program-courses-cta-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #ffffff;
	border: 1px solid #d1d5db;
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: border-color 0.2s, background-color 0.2s;
}

.program-courses-cta-btn:hover {
	border-color: #9ca3af;
	background-color: #f9fafb;
}

.program-courses-detail {
	width: 1000px;
    margin: auto;
	padding: 0 0 100px;
}

.program-courses-detail[hidden] {
	display: none;
}

.program-curriculum-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.program-curriculum-item {
	display: grid;
	grid-template-columns: 140px 1fr;
	gap: 0;
	align-items: start;
	padding: 25px 100px 25px;
	border-bottom: 1px dotted #d1d5db;
}

.program-curriculum-item:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.program-curriculum-month {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 12px 16px;
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	background: linear-gradient(90deg, #2e74c9 0%, #1e4976 50%, #5b7a9e 100%);
	border-radius: 4px 0 0 4px;
	clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.program-curriculum-body {
	padding: 12px 24px 12px 28px;
	min-width: 0;
}

.program-curriculum-text {
	margin: 0 0 8px 0;
	font-size: 14px;
	line-height: 1.8;
	color: #1a1a1a;
}

.program-curriculum-text:last-child {
	margin-bottom: 0;
}

@media screen and (max-width: 768px) {
	.program-courses-section {
		padding: 60px 0px 80px;
        width: 100%;
        margin: auto;
	}
	.program-courses-inner {
		max-width: 90%;
	}
	.program-courses-detail {
		width: 90%;
	}
	.program-courses-big-title {
		margin-bottom: 32px;
		font-size: clamp(2.5rem, 10vw, 3.5rem);
	}

	.program-courses-intro {
		grid-template-columns: 1fr;
        gap: 24px;
        margin: -45px auto 32px;
        width: 95%;
        padding: 50px 0 20px;
	}

	.program-courses-intro-img {
		min-height: 200px;
		order: -1;
	}

	.program-courses-cta-wrap {
		margin-bottom: 32px;
	}

	.program-courses-cta-btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.program-curriculum-item {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 20px 0;
	}

	.program-curriculum-month {
		min-height: 48px;
		padding: 10px 16px;
		font-size: 20px;
		clip-path: none;
		border-radius: 4px;
	}

	.program-curriculum-body {
		padding: 0 0 0 0;
	}

	.program-curriculum-text {
		font-size: 13px;
	}
}

/* ========================================
   PROGRAMページ FLOW（受講までの流れ）セクション
   ======================================== */
.program-flow-section {
	background: radial-gradient(circle at top left, #ffffff 0%, #eef2f7 45%, #e3e7ee 100%);
	padding: 80px 40px 100px;
}

.program-flow-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.program-flow-header {
	margin-bottom: 100px;
}

.program-flow-title {
	margin: 0 0 8px 0;
	font-size: 80px;
	font-weight: 800;
	letter-spacing: 0.15em;
	color: #0D2B42;
}

.program-flow-subtitle {
	margin: 0;
	font-size: 40px;
	font-weight: 500;
	color: #4b5563;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.program-flow-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
	width: 1000px;
    margin: auto;
}

.program-flow-item {
	display: flex;
}

.program-flow-card {
	position: relative;
	flex: 1;
	background-color: #ffffff;
	border-radius: 8px;
	padding: 60px 20px 30px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
	text-align: center;
	border: 1px solid #e5e7eb;
}

.program-flow-step-badge {
	position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 999px;
    background-color: #1e4976;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.25);
}

.program-flow-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 16px auto;
	border-radius: 50%;
	background-color: #1e4976;
	color: #ffffff;
}

.program-flow-icon svg {
	width: 26px;
	height: 26px;
}

.program-flow-card-title {
	margin: 0 0 8px 0;
	font-size: 20px;
	font-weight: 700;
	color: #111827;
	line-height: 1.6;
}

.program-flow-card-desc {
	margin: 0;
	font-size: 18px;
	color: #4b5563;
}

@media screen and (max-width: 1024px) {
	.program-flow-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media screen and (max-width: 768px) {
	.program-flow-title {
		font-size: 40px;
	}
	.program-flow-subtitle {
		font-size: 20px;
	}
	.program-flow-section {
		padding: 60px 20px 80px;
	}

	.program-flow-header {
		margin-bottom: 32px;
	}

	.program-flow-list {
		grid-template-columns: 1fr;
		gap: 16px;
		width: 100%;
	}

	.program-flow-card {
		padding: 36px 20px 22px;
	}
}

/* ========================================
   NEWSセクション
   ======================================== */
.news-section {
	max-width: 1200px;
    margin: 100px auto;
    background-color: #F8F8F8;
}

.news-inner {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #F8F8F8;
    padding: 50px 0;
}

.news-header {
	margin-bottom: 40px;
}

.news-title {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	color: #0D2B42;
	letter-spacing: 0.05em;
}

.news-title-line {
	display: block;
	height: 2px;
	background: linear-gradient(90deg, #1e4976 0%, #1e4976 5%, #9ca3af 0%, #9ca3af 100%);
	margin-top: 8px;
}

.news-subtitle {
	margin: 8px 0 0 0;
	font-size: 40px;
	font-weight: 500;
	color: #5D8AB0;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.news-list {
	list-style: none;
	width: 1000px;
    margin: auto;
    padding: 50px 0;
}

.news-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	padding: 20px 0;
	border-bottom: 1px solid #dddddd;
}

.news-item:first-child {
	padding-top: 0;
}

.news-date {
	font-size: 18px;
	color: #333333;
	flex-shrink: 0;
}

.news-cat {
	display: inline-block;
	background-color: #225B89;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 4px;
	flex-shrink: 0;
}

.news-link {
	font-size: 20px;
	color: #333333;
	flex: 1;
	min-width: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news-link:hover {
	color: #333333;
	opacity: 0.8;
}

.news-cta-wrap {
	text-align: center;
	margin-top: 40px;
}

.news-cta-btn {
	display: inline-block;
	padding: 14px 32px;
	background-color: #ffffff;
	border: 1px solid #cccccc;
	color: #333333;
	font-size: 15px;
	font-weight: 500;
	border-radius: 2px;
}

.news-cta-btn:hover {
	opacity: 0.9;
	color: #333333;
}

.news-cta-arrow {
	margin-left: 4px;
}

/* ニュース一覧ページ：間隔・ページネーション */
.news-section-page{
	margin-top: 0px;
}
.news-section-page .news-item {
	padding: 24px 0;
}

.news-pagination {
	margin-top: 48px;
	text-align: center;
}

.news-pagination ul.page-numbers {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.news-pagination ul.page-numbers li {
	list-style: none;
}

.news-pagination ul.page-numbers a,
.news-pagination ul.page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	font-size: 15px;
	font-weight: 500;
	color: #2e74c9;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.news-pagination ul.page-numbers a:hover {
	background-color: #f5f5f5;
	color: #2e74c9;
}

.news-pagination ul.page-numbers .current {
	background-color: #2e74c9;
	color: #ffffff;
	border-color: #2e74c9;
}

/* NEWS レスポンシブ */
@media screen and (max-width: 768px) {
	.news-section {
		padding: 60px 20px 80px;
		margin: auto;
	}
	.news-list {
		width: 100%;
        padding: 0;
	}
	.news-title {
		font-size: 40px;
	}
	.news-subtitle {
		font-size: 20px;
	}
	.news-header {
		margin-bottom: 32px;
	}
	.news-item-inner{
		display: flex;
		gap: 20px;
		margin-bottom: 10px;
	}
	.news-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 16px 0;
	}
	.news-link {
		font-size:14px;
	}

	.news-cta-wrap {
		margin-top: 32px;
	}

	.news-cta-btn {
		padding: 12px 24px;
		font-size: 14px;
	}

	.news-section-page .news-item {
		padding: 20px 0;
	}

	.news-pagination {
		margin-top: 40px;
	}
}

/* ========================================
   お知らせ個別ページ（single）
   ======================================== */
.page-single-news {
	background-color: #ffffff;
}

.single-news-article {
	padding: 80px 0 100px;
    width: 1200px;
    margin: auto;
    background-color: #F8F8F8;
}

.single-news-inner {
	max-width: 800px;
	margin: 0 auto;
}

.single-news-header {
	margin-bottom: 40px;
	padding-bottom: 32px;
	border-bottom: 1px solid #e5e7eb;
}

.single-news-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.single-news-date {
	font-size: 18px;
	color: #333333;
}

.single-news-cat {
	display: inline-block;
	background-color: #2e74c9;
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	padding: 4px 12px;
	border-radius: 4px;
}

.single-news-title {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	color: #1e4976;
	line-height: 1.5;
}

.single-news-content {
	font-size: 16px;
	line-height: 1.9;
	color: #374151;
}

.single-news-content p {
	margin: 0 0 1.5em 0;
}

.single-news-content p:last-child {
	margin-bottom: 0;
}

.single-news-content h2 {
	margin: 2em 0 0.75em 0;
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e4976;
	line-height: 1.4;
	padding-bottom: 0.25em;
	border-bottom: 2px solid #e5e7eb;
}

.single-news-content h2:first-child {
	margin-top: 0;
}

.single-news-content h3 {
	margin: 1.5em 0 0.5em 0;
	font-size: 1.1rem;
	font-weight: 700;
	color: #222222;
	line-height: 1.4;
}

.single-news-content ul,
.single-news-content ol {
	margin: 1em 0;
	padding-left: 1.5em;
}

.single-news-content a {
	color: #2e74c9;
	text-decoration: underline;
}

.single-news-content a:hover {
	opacity: 0.85;
}

.single-news-content img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

.single-news-footer {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid #e5e7eb;
	text-align: center;
}

.single-news-back {
	display: inline-block;
	padding: 12px 24px;
	font-size: 15px;
	font-weight: 500;
	color: #2e74c9;
	background-color: #ffffff;
	border: 1px solid #2e74c9;
	border-radius: 4px;
	text-decoration: none;
	transition: background-color 0.2s, color 0.2s;
}

.single-news-back:hover {
	background-color: #2e74c9;
	color: #ffffff;
}

/* お知らせ個別ページ レスポンシブ */
@media screen and (max-width: 768px) {
	.single-news-article {
		padding: 60px 0px 80px;
        width: 95%;
        margin: auto;
	}

	.single-news-header {
		margin-bottom: 32px;
		padding-bottom: 24px;
	}

	.single-news-meta {
		gap: 12px;
		margin-bottom: 12px;
	}
	.single-news-inner {
		max-width: 800px;
		margin: 0 auto;
	}
	.single-news-title {
		font-size: 20px;
	}
	.single-news-content h2 {
		font-size: 18px;
	}
	.single-news-content h3 {
		font-size: 16px;
	}
	.single-news-content {
		font-size: 15px;
	}

	.single-news-footer {
		margin-top: 40px;
		padding-top: 24px;
	}

	.single-news-back {
		display: block;
		text-align: center;
		padding: 14px 20px;
		font-size: 14px;
	}
}

/* ========================================
   ABOUTページ ヒーロー
   ======================================== */

.about-hero {
	position: relative;
	height: 350px;
	overflow: hidden;
}

.about-hero-bg {
	position: absolute;
	inset: 0;
	width: 80%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0.7) brightness(0.9);
	margin:0 auto;
	z-index: 1;
}

.about-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(6, 24, 46, 0.9) 0%, rgba(6, 24, 46, 0.7) 40%, rgba(6, 24, 46, 0.2) 100%);
}

.about-hero-inner {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 35px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
}

.about-hero-title {
	margin: 0 0 8px 0;
	font-size: clamp(2.2rem, 4vw, 2.8rem);
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.08em;
}

.about-hero-subtitle {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}

.about-breadcrumb-wrap {
	background-color: #e1e9ef;
	padding-top: 100px;
    margin-top: -100px;
}

.about-breadcrumb {
	max-width: 1200px;
	margin: 0 auto;
	padding: 12px 40px 20px;
	font-size: 13px;
	color: #333333;
}

.about-breadcrumb a {
	color: #333333;
}

.about-breadcrumb a:hover {
	opacity: 0.8;
}

.about-breadcrumb-sep {
	margin: 0 8px;
}

@media screen and (max-width: 768px) {
	.about-hero {
		height: 220px;
	}

	.about-hero-inner {
		padding: 20px 40px;
	}

	.about-breadcrumb {
		padding: 10px 20px 16px;
	}
}

/* ========================================
   ABOUTページ CONCEPTセクション
   ======================================== */
.about-concept-section {
	background-color: #ffffff;
	padding: 80px 0 100px;
	position: relative;
	overflow: hidden;
}

.about-concept-inner {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	text-align: center;
}

.about-concept-header {
	margin-bottom: 40px;
}

.about-concept-title {
	margin: 0 0 12px 0;
	font-size: 40px;
	font-weight: 500;
	color: #0D2B42;
	letter-spacing: 0.08em;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.about-concept-line {
	display: inline-block;
	width: 60px;
	height: 2px;
	background-color: #9ca3af;
}

.about-concept-body {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
	text-align: left;
}

.about-concept-word {
	position: absolute;
	left: -50px;
	top: 0;
	font-size: 72px;
	font-weight: 700;
	color: rgba(148, 163, 184, 0.25);
	line-height: 1;
	transform: translateY(-10px);
}

.about-concept-text {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto 1fr;
	row-gap: 8px;
	align-items: flex-start;
}

.about-concept-subtitle {
	margin: 0;
	font-size: 40px;
	font-weight: 700;
	color: #0d2137;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.about-concept-paragraph {
    margin: 0;
    font-size: 18px;
    line-height: 2;
    color: #333333;
    padding: 0 100px;
}

/* MISSION / VISION ブロック */
.about-concept-mission-wrap {
	position: relative;
	overflow: hidden;
	margin: 50px 0;
}

.about-concept-mission-wrap::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, transparent 0%, transparent 15%, #f3f6fb 0%, #f3f6fb 100%);
	z-index: 0;
}

.about-concept-mission,
.about-concept-vision {
	display: grid;
	grid-template-columns: 1fr 0.3fr;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
	text-align: left;
	position: relative;
	z-index: 1;
}

.about-concept-vision {
	grid-template-columns: 0.3fr 1fr;
	padding: 50px 0;
}

.about-concept-vision .about-concept-block-img {
	order: -1;
}

.about-concept-block-content {
	min-width: 0;
}

.about-concept-block-title {
	margin: 0 0 15px 0;
	font-size: 80px;
	font-weight: 700;
	color: #0D2B42;
	letter-spacing: 0.08em;
}

.about-concept-block-subtitle {
	margin: 0 0 30px 0;
	font-size: 40px;
	font-weight: 600;
	color: #5D8AB0;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.about-concept-block-line {
	display: block;
	height: 2px;
	background-color: #94a3b8;
	margin-bottom: 10px;
}

.about-concept-block-lead {
	margin: 0 0 15px 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.6;
	color: #0d2137;
	padding-right: 50px;
}

.about-concept-block-paragraph {
	margin: 0;
	font-size: 18px;
	line-height: 2;
	color: #333333;
	padding-right: 100px;
}

/* VISION テキストのみ右側余白を30pxに調整 */
.vision-custom {
	padding-left: 50px;
}

.about-concept-block-img {
	min-width: 0;
}

.about-concept-img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

@media screen and (max-width: 768px) {
	.about-hero-bg {
		width: 90%;
	}
	.about-concept-section {
		padding: 60px 0 80px;
	}
    .about-concept-title {
        font-size: 20px;
        text-align: center;
        line-height: 30px;
        font-weight: 700;
    }
	.about-concept-header {
		text-align: center;
	}
	.about-concept-inner {
		text-align: left;
	}

	.about-concept-body {
		max-width: 100%;
		text-align: center;
	}

	.about-concept-word {
		font-size: 56px;
		left: 50%;
		top: 10px;
		transform: translateX(-50%);
	}

	.about-concept-text {
		grid-template-columns: 1fr;
		row-gap: 16px;
	}

	.about-concept-subtitle {
		font-size: 20px;
        text-align: center;
	}

	.about-concept-paragraph {
		font-size: 14px;
        width: 95%;
        margin: auto;
        padding: 0;
        text-align: center;
	}

	.about-concept-mission-wrap::before {
		background-color: #F8F8F8;
	}

	.about-concept-mission,
	.about-concept-vision {
		grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 48px;
        width: 90%;
	}

	.about-concept-vision {
		padding-top: 0px;
	}

	.about-concept-vision .about-concept-block-img {
		order: 0;
	}

	.about-concept-block-title {
		font-size: 40px;
	}
	.about-concept-block-subtitle {
		font-size: 16px;
	}
	.about-concept-block-img{
		width: 70%;
		margin: 0 auto 30px;
	}
	.about-concept-block-lead {
		font-size: 14px;
	}

	.about-concept-block-paragraph {
		font-size: 14px;
        width: 95%;
	}
	.vision-custom {
		padding-left: 0px;
	}
}
/* VALUE（5つの誓い） */
.about-concept-value-wrap {
	position: relative;
	overflow: hidden;
	margin: 50px 0;
}
.about-concept-value-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
	background-color: #F8F8F8;
    z-index: -1;
}
.about-concept-value {
	max-width: 1200px;
	margin: 0 auto;
	padding: 50px 0;
	text-align: left;
}

.about-concept-value-header {
    display: grid;
    grid-template-columns: 1fr 0.3fr;
    align-items: start;
}

.about-concept-value-head {
	min-width: 0;
}

.about-concept-value .about-concept-block-title {
	margin: 0 0 15px 0;
	font-size: 40px;
	font-weight: 700;
	color: #0D2B42;
	letter-spacing: 0.08em;
}

.about-concept-value-line {
    display: block;
    height: 2px;
    background-color: #94a3b8;
    margin-bottom: 15px;
}

.about-concept-value-subtitle {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: #5D8AB0;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
}

.about-concept-value-img {
	min-width: 0;
}

.about-concept-value-img .about-concept-img {
	width: 100%;
	height: auto;
	vertical-align: top;
	border-radius: 4px;
}

.about-concept-value-intro {
	margin: 30px 0 0 0;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.5;
	color: #1a1a1a;
}

.about-concept-value-list {
	width: 800px;
    margin: auto;
    line-height: 1.5;
}

.about-concept-value-item {
	background-color: #ffffff;
	padding: 24px 28px;
	margin-bottom: 20px;
	counter-increment: value-num;
}

.about-concept-value-item:last-child {
	margin-bottom: 0;
}

.about-concept-value-item-title {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #0d2137;
	margin-bottom: 10px;
}

.about-concept-value-item-title::before {
	content: counter(value-num) ". ";
}
@media screen and (max-width: 768px) {
.about-concept-value-item-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
	color: #333333;
}


	.about-concept-value {
		padding-top: 35px;
		width: 90%;
	}

	.about-concept-value-header {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.about-concept-value-img {
		max-width: 70%;
        margin:0 auto 30px;
	}

	.about-concept-value-intro {
		margin: 24px 0 32px 0;
		font-size: 14px;
	}

	.about-concept-value-item {
		padding: 20px 20px;
		margin-bottom: 16px;
	}
	.about-concept-value-list {
		width: 100%;
	}
}

/* ========================================
   ABOUTページ TEAMSセクション
   ======================================== */
.about-teams {
	padding: 80px 0 100px;
}

.about-teams-header {
	position: relative;
	overflow: hidden;
}
.about-teams-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 0%, transparent 15%, #5594C6 0%, #2F6895 100%);
    z-index: -3;
}

.about-teams-header-inner {
	max-width: 1200px;
    margin: 0 auto;
    text-align: start;
	padding: 100px 0 150px;
}

.about-teams-title {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: #EBF4FA;
}

.about-teams-title-line {
	display: block;
	height: 2px;
	background-color: #2F6895;
	margin: 12px 0;
}

.about-teams-subtitle {
	margin: 0;
	font-size: 40px;
	font-weight: 500;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
	color: #EBF4FA;
}

.about-teams-inner {
	max-width: 1200px;
	margin: -100px auto 0;
	background-color: white;
}

.about-teams-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	padding: 40px 0 0;
	width: 900px;
    margin: auto;
}

.about-teams-slider {
	position: relative;
}

.about-teams-arrow {
	display: none;
}

.about-teams-dots {
	display: none;
}

.about-teams-card {
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.about-teams-card-img {
	width: 100%;
}

.about-teams-photo {
	width: 100%;
	height: auto;
	display: block;
}

.about-teams-card-body {
	padding: 16px 5px 18px;
	text-align: start;
}

.about-teams-name {
	margin: 0 0 4px 0;
	font-size: 0;
}

.about-teams-name-ja {
	font-size: 28px;
	font-weight: 700;
	color: #111827;
	margin-right: 8px;
}

.about-teams-name-en {
    font-size: 15px;
    color: #6b7280;
    margin-left: 10px;
}

.about-teams-role {
	margin: 0 0 10px 0;
	font-size: 13px;
	color: #1f2933;
}
.about-teams-tags{
	margin: 10px 0;
	text-align: center;
}
.about-teams-tag{
	margin: 10px 0;
}
.about-teams-tag-line{
	display: block;
    height: 2px;
    background-color: #94a3b8;
    margin-bottom: 10px;
}
.about-teams-divider {
	height: 1px;
	background-color: #e5e7eb;
	margin-bottom: 10px;
}

.about-teams-links {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.about-teams-link {
	display: inline-block;
	padding: 4px 12px;
	font-size: 11px;
	color: #ffffff;
	background-color: #1e4976;
	border-radius: 3px;
	text-decoration: none;
}

.about-teams-link:hover {
	opacity: 0.9;
}

@media screen and (max-width: 1024px) {
	.about-teams-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media screen and (max-width: 768px) {
	.about-teams-header::before {
		background: linear-gradient(to right, transparent 0%, transparent 0%, #5594C6 0%, #2F6895 100%);
	}	
	.about-teams-header-inner {
		max-width: 90%;
		padding: 0 0 30px;
	}
	.about-teams-title {
		font-size: 40px;
	}
	.about-teams-subtitle {
		font-size: 20px;
	}
	.about-teams {
		padding: 0px 0 80px;
	}

	.about-teams-header {
		padding: 32px 0 44px;
	}

	.about-teams-inner {
		margin-top: -32px;
	}

	.about-teams-grid {
		display: flex;
		grid-template-columns: none;
		gap: 0;
		padding: 32px 0 0;
		scroll-behavior: smooth;
		width: 100%;
		transition: transform 0.3s ease;
	}

	.about-teams-slider {
		position: relative;
		padding: 0 24px;
	}

	.about-teams-card {
		flex-shrink: 0;
		border-radius: 16px;
		overflow: hidden;
	}
	.about-teams-card-img {
		width: 50%;
	}
	.about-teams-card-body {
		width: 50%;
	}
	.about-teams-arrow {
		display: flex;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 45%;
		transform: translateY(-50%);
		width: 32px;
		height: 32px;
		border-radius: 999px;
		border: none;
		background-color: rgba(15, 23, 42, 0.7);
		color: #ffffff;
		cursor: pointer;
		z-index: 2;
	}

	.about-teams-arrow-prev {
		left: 8px;
	}

	.about-teams-arrow-next {
		right: 8px;
	}

	.about-teams-arrow-icon {
		font-size: 16px;
		line-height: 1;
	}

	.about-teams-dots {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 6px;
		margin: 16px 0 0;
	}

	.about-teams-dot {
		width: 6px;
		height: 6px;
		border-radius: 999px;
		background-color: #d1d5db;
		border: none;
		padding: 0;
	}

	.about-teams-dot.is-active {
		width: 20px;
		background-color: #1e4976;
	}
	.about-teams-name-ja,.about-teams-tag,
	.about-teams-tags {
		padding: 0 20px;
	}
}

/* ========================================
   ABOUTページ COMPANYセクション
   ======================================== */
.about-company {
	background-color: #ffffff;
	padding: 80px 40px 100px;
}

.about-company-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.about-company-header {
	margin-bottom: 40px;
	text-align: start;
}

.about-company-title {
	margin: 0;
	font-size: 80px;
	font-weight: 700;
	color: #111827;
	letter-spacing: 0.12em;
}

.about-company-title-line {
    display: block;
    height: 2px;
    background-color: #94a3b8;
    margin: 15px 0;
}

.about-company-subtitle {
	margin: 0;
	font-size: 40px;
	font-weight: 500;
	color: #1f2933;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
	color: #5D8AB0;
}

.about-company-grid {
	display: grid;
	grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
	gap: 40px;
	align-items: flex-start;
}

.about-company-list {
	margin: 0;
	padding: 0;
}

.about-company-row {
	display: grid;
	grid-template-columns: 80px minmax(0, 1fr);
	column-gap: 16px;
	margin-bottom: 16px;
	font-size: 18px;
}

.about-company-row dt {
	font-weight: 600;
	color: #111827;
	text-align: start;
}

.about-company-row dd {
	margin: 0;
	color: #374151;
	line-height: 1.8;
	text-align: start;
}

.about-company-row a {
	color: #1e4976;
	text-decoration: underline;
}

.about-company-map-wrap {
	min-width: 0;
}

.about-company-map {
	width: 100%;
	display: block;
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

@media screen and (max-width: 768px) {
	.about-company {
		padding: 60px 20px 80px;
	}
	.about-company-title {
		font-size: 40px;
	}
	.about-company-subtitle {
		font-size: 20px;
	}
	.about-company-grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.about-company-row {
		column-gap: 0;
		align-items: baseline;
        font-size: 13px;
		grid-template-columns: 60px minmax(0, 1fr);
	}
	.about-company-list {
		width: 90%;
		margin: auto;
	}
}

/* ========================================
   CONTACTセクション
   ======================================== */
.contact-section {
	position: relative;
	overflow: hidden;
	padding: 80px 40px 100px;
}

.contact-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	background-color: #8b9cad;
	filter: saturate(0.3) brightness(1.05);
}

.contact-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.4);
	pointer-events: none;
}

.contact-inner {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}

.contact-title {
	margin: 0 0 -15px 0;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: #0d2137;
	letter-spacing: 0.08em;
}

.contact-box {
	background-color: #ffffff;
	padding: 48px 40px 56px;
	border-radius: 4px;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-text {
	margin: 0 0 32px 0;
	font-size: 16px;
	line-height: 1.7;
	color: #1a1a1a;
}

.contact-cta-wrap {
	text-align: center;
}

.contact-cta-btn {
	display: inline-block;
	padding: 16px 40px;
	background-color: #007bff;
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	border-radius: 6px;
}

.contact-cta-btn:hover {
	background-color: #0069d9;
	color: #ffffff;
	opacity: 1;
}

.contact-cta-arrow {
	margin-left: 6px;
}

/* CONTACT レスポンシブ */
@media screen and (max-width: 768px) {
	.contact-section {
		padding: 60px 20px 80px;
	}

	.contact-title {
		margin-bottom: 24px;
        font-size: 40px;
	}

	.contact-box {
		padding: 55px 10px 30px;
        margin-top: -40px;
	}

	.contact-text {
		margin-bottom: 28px;
		font-size: 15px;
	}

	.contact-cta-btn {
		padding: 14px 32px;
		font-size: 15px;
	}
}

/* ========================================
   お問い合わせフォームページ（Contact Form 7 対応）
   ======================================== */
.inquiry-form-section {
	background-color: #ffffff;
	padding: 80px 40px 100px;
}

.inquiry-form-inner {
	max-width: 800px;
	margin: 0 auto;
}

.inquiry-form-title {
	margin: 0 0 16px 0;
	font-size: clamp(1.5rem, 3vw, 1.75rem);
	font-weight: 700;
	color: #222222;
}

.inquiry-form-desc {
	margin: 0 0 40px 0;
	font-size: 15px;
	line-height: 1.8;
	color: #374151;
}

.inquiry-form-notice {
	padding: 24px;
	background-color: #f5f5f5;
	border-radius: 8px;
	color: #666666;
	font-size: 14px;
}

/* Contact Form 7 ラッパー */
.inquiry-form-wrap .wpcf7 {
	margin: 0;
}

.inquiry-form-wrap .wpcf7-form > p,
.inquiry-form-wrap .wpcf7-form > div {
	margin-bottom: 24px;
}

.inquiry-form-wrap .wpcf7-form label {
	display: block;
	margin-bottom: 8px;
	font-size: 15px;
	font-weight: 500;
	color: #333333;
}

/* 必須・任意バッジ（フォーム内で span.inquiry-required / span.inquiry-optional を使用する場合） */
.inquiry-form-wrap .inquiry-required,
.inquiry-form-wrap .wpcf7-form-control-wrap .required-badge {
	display: inline-block;
	margin-right: 8px;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 500;
	color: #ffffff;
	background-color: #2e74c9;
	border-radius: 4px;
	vertical-align: middle;
}

.inquiry-form-wrap .inquiry-optional,
.inquiry-form-wrap .wpcf7-form-control-wrap .optional-badge {
	display: inline-block;
	margin-right: 8px;
	padding: 2px 8px;
	font-size: 12px;
	font-weight: 500;
	color: #666666;
	background-color: #e5e7eb;
	border-radius: 4px;
	vertical-align: middle;
}

.inquiry-form-wrap .wpcf7-form-control {
	width: 100%;
	max-width: 100%;
	padding: 12px 16px;
	font-size: 15px;
	color: #333333;
	background-color: #ffffff;
	border: 1px solid #dddddd;
	border-radius: 4px;
	box-sizing: border-box;
}

.inquiry-form-wrap .wpcf7-form-control:focus {
	outline: none;
	border-color: #2e74c9;
	box-shadow: 0 0 0 2px rgba(44, 116, 201, 0.15);
}

.inquiry-form-wrap textarea.wpcf7-form-control {
	min-height: 160px;
	resize: vertical;
}

/* チェックボックス（お問い合わせ種別） */
.inquiry-form-wrap .wpcf7-list-item {
	display: block;
	margin-bottom: 12px;
}

.inquiry-form-wrap .wpcf7-list-item-label {
	font-size: 15px;
	color: #333333;
	cursor: pointer;
}

.inquiry-form-wrap .wpcf7-checkbox .wpcf7-list-item,
.inquiry-form-wrap .wpcf7-radio .wpcf7-list-item {
	margin-left: 0;
}

/* 同意チェックボックス */
.inquiry-form-wrap .wpcf7-acceptance .wpcf7-list-item-label {
	font-size: 14px;
	color: #374151;
}

/* 送信ボタン */
.inquiry-form-wrap .wpcf7-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
	background-color: #2e74c9;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: opacity 0.2s, background-color 0.2s;
}

.inquiry-form-wrap .wpcf7-submit:hover {
	opacity: 0.9;
	background-color: #2563b0;
}

.inquiry-form-wrap .wpcf7-submit::after {
	content: "›";
	font-size: 20px;
	line-height: 1;
}

/* バリデーションエラー */
.inquiry-form-wrap .wpcf7-not-valid-tip {
	font-size: 13px;
	color: #dc2626;
	margin-top: 4px;
}

.inquiry-form-wrap .wpcf7-form-control.wpcf7-not-valid {
	border-color: #dc2626;
}

/* お問い合わせページ レスポンシブ */
@media screen and (max-width: 768px) {
	.inquiry-form-section {
		padding: 60px 20px 80px;
	}

	.inquiry-form-desc {
		margin-bottom: 32px;
		font-size: 14px;
	}

	.inquiry-form-wrap .wpcf7-form > p,
	.inquiry-form-wrap .wpcf7-form > div {
		margin-bottom: 20px;
	}

	.inquiry-form-wrap .wpcf7-submit {
		width: 100%;
		max-width: 320px;
		padding: 14px 24px;
		font-size: 15px;
	}
}

/* ========================================
   フッター
   ======================================== */
.site-footer {
	background-color: #1e4976;
	color: #ffffff;
}

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

.footer-left {
	flex-shrink: 0;
}

.footer-company {
	margin: 0 0 16px 0;
	font-size: 24px;
	line-height: 1.5;
	font-weight: 500;
	font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "Meiryo", serif;
	color: #FFFFFF;
}

.footer-company-line1,
.footer-company-line2 {
	display: block;
}

.footer-address {
	margin: 0;
	font-size: 13px;
	line-height: 1.8;
	font-style: normal;
	opacity: 0.95;
}

.footer-nav {
	display: flex;
	gap: 48px;
	flex-shrink: 0;
	margin-bottom: 50px;
}

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

.footer-nav-list li {
	margin: 0 0 8px 0;
}

.footer-nav-list li:last-child {
	margin-bottom: 0;
}

.footer-nav-list a {
	color: #ffffff;
	font-size: 14px;
}

.footer-nav-list a:hover {
	color: #ffffff;
	opacity: 0.8;
}

.footer-right {
	align-items: center;
	gap: 24px;
	flex-shrink: 0;
	position: relative;
}

.footer-sns {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-sns-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	color: #ffffff;
}

.footer-sns-link:hover {
	opacity: 0.85;
	color: #ffffff;
}

.footer-sns-icon {
	width: 20px;
	height: 20px;
}
.footer-pagetop-wrap{
	position: absolute;
    top: 0;
    right: -50px;
}
.footer-vline {
    width: 2px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    position: inherit;
    margin: 0px 0px 0px -10px;
}

.footer-pagetop {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-size: 12px;
	letter-spacing: 0.15em;
	color: #ffffff;
}

.footer-pagetop:hover {
	color: #ffffff;
	opacity: 0.85;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding: 16px 20px;
}

.footer-copy {
	margin: 0;
	text-align: center;
	font-size: 12px;
	color: rgba(255, 255, 255, 0.7);
}

/* フッター レスポンシブ */
@media screen and (max-width: 768px) {
	.footer-inner {
		flex-direction: column;
		padding: 40px 20px 32px;
		gap: 32px;
	}

	.footer-nav {
		gap: 32px;
	}

	.footer-right {
		width: 100%;
		justify-content: flex-start;
		flex-wrap: wrap;
	}

	.footer-vline {
		height: 48px;
	}

	.footer-bottom {
		padding: 12px 20px;
	}

	.footer-copy {
		font-size: 11px;
	}
}

/* ========================================
   サービスページ COURSESセクション
   ======================================== */
.page-service {
	background-color: #f5f6f9;
}

.service-courses {
	padding: 80px 40px 100px;
}

.service-courses-inner {
	max-width: 1000px;
	margin: 0 auto;
}

.service-courses-title {
	margin: 0 0 40px 0;
	font-size: clamp(2rem, 4vw, 2.5rem);
	font-weight: 700;
	color: #60a5d0;
	letter-spacing: 0.12em;
	text-align: center;
}

.service-courses-card {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 0;
	background-color: #ffffff;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.service-courses-card + .service-courses-card {
	margin-top: 40px;
}

.service-courses-content {
	padding: 48px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-courses-heading {
	margin: 0 0 16px 0;
	font-size: 22px;
	font-weight: 700;
	color: #1e4976;
	line-height: 1.4;
}

.service-courses-desc {
	margin: 0;
	font-size: 15px;
	line-height: 1.8;
	color: #374151;
}

.service-courses-img {
	position: relative;
	background-color: #4b5563;
	min-height: 280px;
	min-width: 0;
}

.service-courses-noimage {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.service-courses-noimage-icon {
	opacity: 0.9;
}

.service-courses-photo {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	display: block;
}

@media screen and (max-width: 768px) {
	.service-courses {
		padding: 60px 20px 80px;
	}

	.service-courses-card {
		grid-template-columns: 1fr;
	}

	.service-courses-content {
		padding: 32px 24px;
	}

	.service-courses-img {
		min-height: 220px;
		order: -1;
	}
}


