/* =============================================
   大阪大谷大学 OPEN CAMPUS 2026 — LP NEW
   ============================================= */

/* --- Reset & Variables --- */
:root {
	--color-primary: #FF6600;
	--color-primary-dark: #e65c00;
	--color-primary-light: #FFF5EB;
	--color-text: #333333;
	--color-text-light: #666666;
	--color-bg-gray: #f9f9f9;
	--font-base: "Noto Sans JP", sans-serif;
	--header-height: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
	font-family: var(--font-base);
	color: var(--color-text);
	line-height: 1.6;
	background-color: #fff;
	overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
a:hover { opacity: 0.8; }
ul { list-style: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }

.sp-only { display: none; }
.sp-br { display: none; }


/* =============================================
   HEADER
   ============================================= */
.header {
	position: fixed;
	top: 0; left: 0; width: 100%;
	z-index: 1000;
	background: rgba(255,255,255,0.97);
	backdrop-filter: blur(10px);
	padding: 0;
	height: var(--header-height);
	display: flex;
	align-items: center;
	box-shadow: 0 1px 10px rgba(0,0,0,0.06);
	/* 子要素のz-indexがnavより上になるようにするため、stacking contextを独立させない */
}

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

.logo a { display: flex; flex-direction: column; line-height: 1.2; }
.logo-sub { font-size: 11px; font-weight: 500; color: #888; }
.logo-main { font-size: 17px; font-weight: 900; letter-spacing: 0.04em; color: var(--color-text); }
.logo-main em { font-style: normal; color: var(--color-primary); }

/* PC: navをheaderの右側に重ねて表示（z-index: 1001でheaderより前面に） */
.nav {
	display: flex; align-items: center; gap: 28px;
	position: fixed;
	top: 0; right: 0;
	height: var(--header-height);
	padding-right: 40px;
	z-index: 1001;
}
.nav-list { display: flex; gap: 22px; }
.nav-list li a {
	font-size: 13px; font-weight: 700; color: #333; position: relative;
}
.nav-list li a::after {
	content: ''; position: absolute; bottom: -4px; left: 0;
	width: 0; height: 2px; background: var(--color-primary);
	transition: width 0.3s;
}
.nav-list li a:hover::after { width: 100%; }
.nav-list li a:hover { opacity: 1; }

.btn-apply-header {
	background: var(--color-primary);
	color: #fff;
	padding: 9px 18px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 13px;
	box-shadow: 0 4px 10px rgba(255,102,0,0.25);
}
.btn-apply-header:hover {
	background: var(--color-primary-dark);
	transform: translateY(-1px);
	opacity: 1;
}

/* Hamburger */
.hamburger {
	display: none;
	background: none; border: none; cursor: pointer;
	width: 30px; height: 22px; position: relative; z-index: 1001;
	flex-shrink: 0;
}
.hamburger span {
	display: block; width: 100%; height: 2px; background: #333;
	position: absolute; left: 0; transition: all 0.3s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.active span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); }
body.menu-open { overflow: hidden; }


/* =============================================
   HERO
   ============================================= */
.hero {
	position: relative;
	height: 100vh;
	min-height: 700px;
	width: 100%;
	display: flex;
	align-items: center;
	overflow: hidden;
	padding-top: var(--header-height);
}

.hero-container {
	max-width: 1400px;
	width: 100%; margin: 0 auto;
	padding: 0 40px;
	position: relative; height: 100%;
	z-index: 10;
}

.hero-content {
	width: 45%;
	padding-top: 8vh;
}

.hero-visual-mobile { display: none; }

.hero-subtitle {
	font-size: 15px; font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 18px;
	border-bottom: 2px solid var(--color-primary);
	display: inline-block; padding-bottom: 4px;
}

.hero-title {
	font-size: 7.5rem; line-height: 0.9;
	font-weight: 900; color: #333;
	margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero-title .block { display: block; }
.hero-title .text-orange { color: var(--color-primary); }

.hero-description {
	margin-bottom: 35px;
	padding-left: 18px;
	border-left: 4px solid var(--color-primary);
}
.hero-description p {
	font-size: 17px; font-weight: 500; color: #555; line-height: 1.8;
}

/* Hero CTA Button */
.btn-primary {
	display: inline-flex; align-items: center;
	background: #333; color: #fff;
	padding: 16px 32px; border-radius: 8px;
	font-weight: 700; font-size: 15px;
	transition: background-color 0.3s, transform 0.3s;
	gap: 15px;
}
.btn-primary:hover {
	background: #111; transform: translateY(-2px); opacity: 1;
}
.btn-primary.disabled {
	background: #ccc; color: #999; cursor: default; pointer-events: none;
}
.btn-primary.btn-large { padding: 18px 36px; }
.btn-text { display: flex; flex-direction: column; }
.btn-label { font-size: 11px; opacity: 0.7; margin-bottom: 2px; }
.btn-action { font-size: 16px; }
.btn-arrow { font-size: 20px; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow { transform: translateX(5px); }

/* Right Visual - 画面全幅に配置 */
.hero-visual {
	position: absolute; top: 0; left: 0;
	width: 100%; height: 100%; z-index: 1;
	pointer-events: none;
}
.visual-shape {
	position: absolute; top: 0; right: 0;
	width: 100%; height: 100%;
	background: linear-gradient(135deg, #fff 0%, var(--color-primary-light) 100%);
	clip-path: polygon(45% 0, 100% 0, 100% 100%, 30% 100%);
}
.hero-student { pointer-events: auto; }

/* Student images in hero - 中央1400px基準で配置 */
.hero-student {
	position: absolute; z-index: 5;
}
.hero-student-1 {
	top: 12%;
	right: calc(50vw - 700px + 200px); /* 1400pxコンテナ内の右側に配置 */
}
.hero-student-2 {
	bottom: 15%;
	right: calc(50vw - 700px + 50px); /* 1400pxコンテナ内の右端寄り */
}

/* 画面幅が1400px以下の場合の調整 */
@media (max-width: 1400px) {
	.hero-student-1 { right: 200px; }
	.hero-student-2 { right: 50px; }
}

.student-image {
	width: 280px; height: 280px;
	border-radius: 50%; overflow: hidden;
	box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}
.student-image img { width: 100%; height: 100%; object-fit: cover; }

.hero-student-2 .student-image {
	width: 340px; height: 220px;
	border-radius: 20px;
}

.student-bubble {
	position: absolute; bottom: -15px; left: 50%;
	transform: translateX(-50%);
	background: #fff; padding: 10px 18px;
	border-radius: 30px; white-space: nowrap;
	box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	font-size: 13px; font-weight: 700;
	color: var(--color-primary);
}
.student-bubble p { line-height: 1.4; }

/* Scroll Indicator */
.scroll-indicator {
	position: absolute; bottom: 35px; left: 50%;
	transform: translateX(-50%);
	display: flex; flex-direction: column; align-items: center;
	gap: 8px; z-index: 10;
}
.scroll-indicator span {
	font-size: 11px; font-weight: 700;
	letter-spacing: 0.15em; color: #555;
}
.scroll-indicator .line {
	width: 1px; height: 55px;
	background: var(--color-primary);
	position: relative; overflow: hidden;
}
.scroll-indicator .line::after {
	content: ''; position: absolute; top: 0; left: 0;
	width: 100%; height: 100%;
	background: #333;
	transform: translateY(-100%);
	animation: scrollDown 2s cubic-bezier(0.77,0,0.175,1) infinite;
}
@keyframes scrollDown {
	0% { transform: translateY(-100%); }
	100% { transform: translateY(100%); }
}


/* =============================================
   COMMON SECTION STYLES
   ============================================= */
.section { padding: 100px 0; }

.container {
	max-width: 1100px; margin: 0 auto; padding: 0 20px;
}

.section-header { text-align: center; margin-bottom: 50px; }

.section-title {
	font-size: 2.8rem; font-weight: 900;
	color: var(--color-text);
	letter-spacing: 0.06em; margin-bottom: 8px;
}
.section-subtitle {
	font-size: 1rem; color: var(--color-primary);
	font-weight: 700; letter-spacing: 0.08em;
}
.section-lead {
	font-size: 14px; color: var(--color-text-light);
	margin-top: 15px; line-height: 1.8;
}


/* =============================================
   WORRIES
   ============================================= */
.section-worries {
	background: var(--color-primary-light);
}
.worries-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px; margin-bottom: 40px;
}
.worry-item {
	background: #fff; border-radius: 12px;
	padding: 22px 25px;
	font-size: 15px; font-weight: 500;
	box-shadow: 0 4px 12px rgba(0,0,0,0.04);
	position: relative; padding-left: 50px;
}
.worry-item::before {
	content: '?'; position: absolute; left: 18px; top: 50%;
	transform: translateY(-50%);
	width: 26px; height: 26px;
	background: var(--color-primary);
	color: #fff; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-weight: 900; font-size: 14px;
}
.worries-solution {
	text-align: center;
	padding: 30px;
	background: #fff;
	border-radius: 16px;
	border: 2px solid var(--color-primary);
}
.solution-text {
	font-size: 22px; font-weight: 900;
	margin-bottom: 10px;
}
.solution-text .highlight {
	color: var(--color-primary);
}
.solution-description {
	font-size: 14px; color: var(--color-text-light);
}


/* =============================================
   SCHEDULE
   ============================================= */
.section-schedule { background: #fff; }

.schedule-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}
.schedule-card {
	display: flex; flex-direction: column;
	align-items: center; text-align: center;
	justify-content: center;
	background: #fff; border: 1px solid #eee;
	padding: 28px 16px; border-radius: 14px;
	min-height: 180px;
	transition: all 0.3s;
}
a.schedule-card:hover {
	border-color: var(--color-primary);
	box-shadow: 0 8px 25px rgba(255,102,0,0.1);
	transform: translateY(-5px);
	opacity: 1;
}
.schedule-card .schedule-date { margin-bottom: 10px; }
.schedule-card .month {
	font-size: 16px; font-weight: 700; color: var(--color-primary);
}
.schedule-card .month small { font-size: 13px; }
.schedule-card .day {
	font-size: 46px; font-weight: 900; line-height: 1.1;
	color: var(--color-text); display: block;
}
.schedule-card .day small { font-size: 16px; font-weight: 700; }
.schedule-card .weekday {
	font-size: 14px; color: #888;
}
.schedule-card .schedule-time {
	font-size: 13px; color: #666; margin-bottom: 10px;
}
.schedule-status {
	font-size: 12px; font-weight: 700;
	padding: 4px 14px; border-radius: 20px;
}
.schedule-status.open {
	background: var(--color-primary);
	color: #fff;
}
.schedule-status.upcoming {
	background: #aaa;
	color: #fff;
}
.schedule-detail-btn {
	display: inline-block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
	padding: 6px 18px;
	border-radius: 30px;
	transition: all 0.3s;
}
a.schedule-card:hover .schedule-detail-btn {
	background: var(--color-primary);
	color: #fff;
}

.schedule-card.ended {
	opacity: 0.45; pointer-events: none;
}
.schedule-card.ended .schedule-status {
	background: #ccc; color: #fff;
}

.schedule-badge-new {
	position: absolute; top: -8px; right: -8px;
	background: #e74c3c; color: #fff;
	font-size: 10px; font-weight: 900; letter-spacing: 0.05em;
	padding: 3px 10px; border-radius: 20px;
	line-height: 1.4;
}
.schedule-card { position: relative; }
.schedule-note {
	font-size: 11px; color: #888; line-height: 1.4;
	margin-bottom: 8px;
}
.schedule-note-highlight {
	color: #0099cc;
	font-weight: 700;
	font-size: 12px;
}
.schedule-card-special {
	border: 2px solid var(--color-primary);
}
.schedule-sub-heading {
	text-align: center;
	font-size: 18px; font-weight: 900;
	color: var(--color-primary);
	margin: 40px 0 16px;
	padding-top: 30px;
	border-top: 2px dashed #ddd;
}
.schedule-card-2nd {
	border: 2px solid #2196F3;
}
.schedule-card-2nd .month { color: #2196F3; }

/* Notice */
.section-notice { background: #fff; }
.notice-box {
	background: var(--color-bg-gray);
	padding: 25px 30px;
	border-radius: 12px;
	border-left: 4px solid var(--color-primary);
}
.notice-title {
	font-size: 15px; font-weight: 700;
	margin-bottom: 10px;
}
.notice-text {
	font-size: 13px; color: #666; line-height: 1.7;
	margin-bottom: 8px;
}
.notice-contact {
	font-size: 14px; font-weight: 700;
}


/* =============================================
   PROGRAM
   ============================================= */
.section-program {
	background: var(--color-bg-gray);
	position: relative; overflow: hidden;
}
.program-bg-shape {
	position: absolute; top: 0; left: 0;
	width: 100%; height: 100%;
	background: linear-gradient(135deg, var(--color-primary-light) 0%, transparent 50%);
	z-index: 0;
	clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}
.section-program .container { position: relative; z-index: 1; }

.program-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 20px;
}
.program-card {
	display: block;
	background: #fff; border-radius: 14px; overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
	transition: transform 0.3s, box-shadow 0.3s;
}
.program-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0,0,0,0.1);
	opacity: 1;
}
.card-image {
	height: 160px; overflow: hidden;
	background: #ddd;
}
.card-image img {
	width: 100%; height: 100%; object-fit: cover;
	object-position: top;
	transition: transform 0.4s;
}
.program-card:hover .card-image img { transform: scale(1.05); }

.card-content { padding: 18px 20px; }
.card-content h3 {
	font-size: 16px; font-weight: 700;
	margin-bottom: 6px; color: var(--color-text);
}
.card-more {
	font-size: 13px; color: var(--color-primary);
	font-weight: 700;
}

/* Modaal content */
.mdl-content { display: none; }
.mdl-content figure { margin-bottom: 20px; }
.mdl-content figure img { border-radius: 8px; }
.mdl-title {
	font-size: 20px; font-weight: 700;
	margin-bottom: 12px;
}
.mdl-title span { font-size: 14px; font-weight: 500; color: #888; margin-left: 5px; }


/* =============================================
   NEXT STEPS
   ============================================= */
.section-nextsteps { background: #fff; }

.steps-container {
	display: flex; align-items: stretch; justify-content: center;
	gap: 20px; margin-bottom: 40px;
}
.step-box {
	flex: 1; max-width: 260px;
	text-align: center;
	background: var(--color-primary-light);
	padding: 35px 20px;
	border-radius: 16px;
	transition: transform 0.3s;
}
.step-box:hover { transform: translateY(-5px); }
.step-number {
	font-size: 12px; font-weight: 900;
	color: var(--color-primary);
	letter-spacing: 0.1em; margin-bottom: 12px;
}
.step-title {
	font-size: 22px; font-weight: 900;
	margin-bottom: 8px;
}
.step-description {
	font-size: 13px; color: var(--color-text-light);
}
.step-arrow {
	font-size: 28px; color: var(--color-primary);
	font-weight: 900; display: flex; align-items: center;
}
.nextsteps-cta { text-align: center; }


/* =============================================
   CAMPUS MAP
   ============================================= */
.section-campusmap { background: var(--color-bg-gray); }

.campusmap-image {
	margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.campusmap-image img { width: 100%; }
.campusmap-note {
	text-align: center;
	font-size: 13px; color: #888;
	margin-bottom: 25px;
}

.campusmap-buttons {
	display: flex; flex-wrap: wrap;
	gap: 10px; justify-content: center;
}
.campusmap-button {
	padding: 8px 18px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 13px; font-weight: 700;
	background: #fff;
	transition: all 0.3s;
}
.campusmap-button:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
	opacity: 1;
}


/* =============================================
   GALLERY
   ============================================= */
.section-gallery { background: var(--color-bg-gray); overflow: hidden; }

.gallery-inner {
	max-width: 1400px; margin: 0 auto;
}
.photo-gallery { margin-bottom: 60px; }
.gallery-title {
	text-align: center;
	font-size: 18px; font-weight: 700;
	margin-bottom: 25px;
}

.photo-slider .slick-slide { padding: 0 8px; }
.photo-slider .slick-slide img {
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.video-box { max-width: 800px; margin: 0 auto; }
.video-title {
	text-align: center;
	font-size: 18px; font-weight: 700;
	margin-bottom: 20px;
}
.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0; overflow: hidden;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.video-wrapper iframe {
	position: absolute; top: 0; left: 0;
	width: 100%; height: 100%;
}


/* =============================================
   FREE TALK
   ============================================= */
.section-freetalk { background: var(--color-primary-light); }

.voice-slider-wrapper {
	max-width: 960px;
	margin: 30px 50px;
	padding: 0 32px 60px;
	position: relative;
}
.voice-slider .slick-list { margin: 0 -8px; }
.voice-slider .slick-slide { padding: 20px 20px; height: 170px; margin: auto 10px; }
.voice-slider .slick-track { display: flex; align-items: stretch; }
.voice-slider .slick-slide > div { height: 100%; }
.voice-slider.slick-dotted.slick-slider { margin-bottom: 0; }
.voice-card {
	background: #fff;
	border-radius: 16px;
	padding: 24px 22px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.07);
	display: flex; flex-direction: column;
	min-height: 200px;
	transition: box-shadow 0.3s;
}
.voice-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}
.voice-dept {
	display: inline-block;
	font-size: 11px; font-weight: 700;
	color: #fff; background: var(--color-primary);
	padding: 4px 12px; border-radius: 20px;
	margin-bottom: 6px;
}
.voice-category {
	display: inline-block;
	font-size: 10px; font-weight: 700;
	padding: 3px 10px; border-radius: 20px;
	margin-bottom: 14px; margin-left: 4px;
	border: 1.5px solid;
}
.cat-freetalk { color: #2196F3; border-color: #2196F3; background: #E3F2FD; }
.cat-gakka { color: #4CAF50; border-color: #4CAF50; background: #E8F5E9; }
.cat-nyushi { color: #FF9800; border-color: #FF9800; background: #FFF3E0;
}
.voice-question {
	font-size: 15px; font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px; line-height: 1.6;
}
.voice-question::before {
	content: 'Q. '; font-weight: 900;
}
.voice-text {
	font-size: 13px; line-height: 1.8;
	color: #555;
}
.voice-text::before {
	content: 'A. '; font-weight: 900; color: #999;
}

/* Voice slider dots */
.voice-slider .slick-dots {
	position: relative;
	bottom: auto;
	margin-top: 32px;
	padding: 0;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 8px;
}
.voice-slider .slick-dots li {
	width: auto;
	height: auto;
	margin: 0;
	padding: 0 !important;
}
.voice-slider .slick-dots li button {
	width: 8px;
	height: 8px;
	padding: 0;
	border-radius: 50%;
	background: var(--color-primary);
	opacity: 0.2;
	transition: all 0.3s ease;
}
.voice-slider .slick-dots li button:before {
	display: none;
}
.voice-slider .slick-dots li.slick-active button {
	opacity: 1;
	width: 24px;
	border-radius: 4px;
}
/* Voice slider arrows */
.voice-slider .slick-prev,
.voice-slider .slick-next {
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
	z-index: 10;
	transition: background 0.2s, box-shadow 0.2s;
}
.voice-slider .slick-prev { left: -16px; }
.voice-slider .slick-next { right: -16px; }
.voice-slider .slick-prev:hover,
.voice-slider .slick-next:hover {
	background: var(--color-primary);
	box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.voice-slider .slick-prev:before,
.voice-slider .slick-next:before {
	font-size: 18px;
	color: var(--color-primary);
	opacity: 1;
}
.voice-slider .slick-prev:hover:before,
.voice-slider .slick-next:hover:before {
	color: #fff;
}
.freetalk-qa {
	max-width: 800px; margin: 0 auto;
}
.qa-accordion {
	margin-bottom: 12px;
}
.qa-department {
	font-size: 17px; font-weight: 900;
	color: var(--color-primary);
	padding: 16px 20px;
	background: #fff;
	border-radius: 12px;
	cursor: pointer;
	list-style: none;
	display: flex; align-items: center; justify-content: space-between;
	box-shadow: 0 2px 8px rgba(0,0,0,0.05);
	transition: background 0.2s;
}
.qa-department:hover { background: #fdf3e8; }
.qa-department::-webkit-details-marker { display: none; }
.qa-department::after {
	content: '+'; font-size: 22px; font-weight: 700;
	color: var(--color-primary); transition: transform 0.3s;
	flex-shrink: 0; margin-left: 12px;
}
.qa-accordion[open] > .qa-department::after {
	content: '−';
}
.qa-accordion[open] > .qa-department {
	border-radius: 12px 12px 0 0;
}
.qa-count {
	font-size: 12px; font-weight: 500;
	color: #999; margin-left: auto; margin-right: 8px;
}
.qa-body {
	padding: 8px 0 4px;
}
.qa-item {
	background: #fff; border-radius: 12px;
	padding: 25px 28px; margin-bottom: 16px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.04);
}
.question {
	font-size: 15px; font-weight: 700;
	margin-bottom: 12px;
	display: flex; gap: 8px;
}
.answer {
	font-size: 14px; color: #555;
	display: flex; gap: 8px;
	padding-left: 5px;
}
.cap {
	font-weight: 900; min-width: 24px;
}
.question .cap { color: var(--color-primary); font-size: 18px; }
.answer .cap { color: #999; font-size: 18px; }

.qa-link {
	text-align: center; margin-top: 25px;
}
.qa-link a {
	display: inline-block;
	padding: 12px 35px;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	font-weight: 700; border-radius: 30px;
	transition: all 0.3s;
}
.qa-link a:hover {
	background: var(--color-primary);
	color: #fff; opacity: 1;
}


/* =============================================
   DEPARTMENTS
   ============================================= */
.section-departments { background: #fff; }

.dept-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.dept-tile {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 2px solid #eee;
	border-radius: 16px;
	padding: 28px 24px;
	text-decoration: none;
	color: inherit;
	transition: all 0.25s ease;
	position: relative;
	overflow: hidden;
}
.dept-tile::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: var(--color-primary);
}
.dept-tile:hover {
	border-color: var(--color-primary);
	box-shadow: 0 8px 28px rgba(255,102,0,0.12);
	transform: translateY(-4px);
}

.dept-tile-faculty {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	background: var(--color-primary);
	padding: 3px 12px;
	border-radius: 20px;
	margin-bottom: 14px;
	align-self: flex-start;
}

.dept-tile-name {
	font-size: 18px;
	font-weight: 900;
	color: #333;
	margin: 0 0 10px;
	line-height: 1.4;
}

.dept-tile-catch {
	font-size: 13px;
	line-height: 1.7;
	color: #666;
	margin: 0;
	flex-grow: 1;
}

.dept-tile-link {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 16px;
	transition: letter-spacing 0.2s;
}
.dept-tile:hover .dept-tile-link {
	letter-spacing: 0.05em;
}


/* =============================================
   ACCESS
   ============================================= */
.section-access { background: var(--color-bg-gray); }

.access-campus-name {
	text-align: center;
	font-size: 20px; font-weight: 700;
	margin-bottom: 25px;
	color: var(--color-text);
}

.map-container {
	width: 100%; height: 400px;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 35px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.map-container iframe {
	width: 100%; height: 100%;
}

.access-info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-bottom: 35px;
}
.access-block h5 {
	font-size: 14px; font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--color-primary-light);
}
.access-block p,
.access-block li {
	font-size: 14px; color: #555; line-height: 1.7;
}
.access-block ul { padding-left: 0; }
.access-block li {
	position: relative; padding-left: 18px;
	margin-bottom: 8px;
}
.access-block li::before {
	content: ''; position: absolute;
	left: 0; top: 9px;
	width: 7px; height: 7px;
	background: var(--color-primary);
	border-radius: 50%;
}
.sub-list { margin-top: 8px; margin-left: 10px; }
.sub-list li { font-size: 13px; }
.sub-list li::before { width: 5px; height: 5px; background: #ccc; }

.access-links {
	display: flex; gap: 16px;
	justify-content: center; flex-wrap: wrap;
}
.btn-outline {
	display: inline-block;
	padding: 14px 30px;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	font-weight: 700; font-size: 14px;
	border-radius: 8px;
	text-align: center;
	transition: all 0.3s;
}
.btn-outline:hover {
	background: var(--color-primary);
	color: #fff; opacity: 1;
}


/* =============================================
   FIXED SCHEDULE CARD
   ============================================= */
.fixed-schedule-card {
	position: fixed;
	right: 20px; bottom: 20px;
	background: #fff;
	border-radius: 16px;
	padding: 18px 22px;
	box-shadow: 0 10px 35px rgba(0,0,0,0.12);
	z-index: 900;
	text-align: center;
	transform: translateY(120%);
	transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
	border: 1px solid #eee;
	min-width: 180px;
}
.fixed-schedule-card.is-visible { transform: translateY(0); }

.schedule-badge {
	font-size: 10px; font-weight: 900;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--color-primary);
	padding: 3px 10px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 8px;
}
.fixed-schedule-card .schedule-date { margin-bottom: 5px; }
.fixed-schedule-card .date-month {
	font-size: 13px; font-weight: 700; color: var(--color-primary);
}
.fixed-schedule-card .date-day {
	font-size: 30px; font-weight: 900; line-height: 1.1;
	display: block;
}
.fixed-schedule-card .date-weekday {
	font-size: 12px; color: #888;
}
.fixed-schedule-card .schedule-time {
	font-size: 12px; color: #666; margin-bottom: 8px;
}
.fixed-schedule-card .schedule-status.open {
	font-size: 11px; display: inline-block;
	margin-bottom: 10px;
}
.schedule-apply-btn {
	display: block;
	background: var(--color-primary);
	color: #fff;
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 13px; font-weight: 700;
}
.schedule-apply-btn:hover { background: var(--color-primary-dark); opacity: 1; }


/* =============================================
   CTA SECTION
   ============================================= */
.section-cta {
	background: var(--color-primary);
	padding: 80px 20px;
	text-align: center; color: #fff;
}
.section-cta h2 {
	font-size: 2.2rem; font-weight: 900;
	margin-bottom: 15px; line-height: 1.4;
}
.section-cta p {
	font-size: 15px; margin-bottom: 35px; opacity: 0.9;
}
.btn-apply-large {
	display: inline-flex; flex-direction: column;
	align-items: center;
	background: #fff; color: var(--color-primary);
	padding: 20px 50px; border-radius: 50px;
	font-weight: 700;
	box-shadow: 0 10px 25px rgba(0,0,0,0.12);
	transition: transform 0.3s, box-shadow 0.3s;
}
.btn-apply-large:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(0,0,0,0.18);
	opacity: 1;
}
.btn-apply-large .btn-label {
	font-size: 11px; opacity: 0.6; margin-bottom: 3px;
}
.btn-apply-large .btn-action-text {
	font-size: 18px;
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
	background: #2b2b2b; color: #fff;
	padding: 60px 0 0;
}
.footer-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-info { display: flex; align-items: flex-start; gap: 25px; }

.footer-logo img { height: 40px; }
.footer-address { font-size: 13px; line-height: 1.7; opacity: 0.8; }
.footer-org { font-weight: 700; opacity: 1; margin-bottom: 4px; }
.footer-tel { margin-top: 5px; font-weight: 700; }

.footer-nav { display: flex; gap: 30px; }
.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
	font-size: 13px; opacity: 0.7;
}
.footer-nav a:hover { opacity: 1; color: var(--color-primary); }

.footer-ext-links {
	display: flex; flex-direction: column; gap: 10px;
}
.footer-link-btn {
	font-size: 13px; font-weight: 700;
	padding: 8px 18px;
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 6px;
	text-align: center;
}
.footer-link-btn:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
	opacity: 1;
}

.footer-bottom {
	padding: 20px 0;
}
.copyright {
	text-align: center;
	font-size: 11px; opacity: 0.4;
}


/* =============================================
   FIXED CTA (MOBILE)
   ============================================= */
.fixed-cta {
	display: none;
	position: fixed;
	bottom: 0; left: 0; right: 0;
	z-index: 999;
}
.fixed-cta a {
	display: flex; align-items: center; justify-content: center;
	background: var(--color-primary);
	color: #fff; padding: 14px;
	font-weight: 700; font-size: 15px;
}
.fixed-cta a:hover { background: var(--color-primary-dark); opacity: 1; }


/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
	.hero-title { font-size: 5.5rem; }
	.visual-shape {
		clip-path: polygon(35% 0, 100% 0, 100% 100%, 20% 100%);
	}
	.student-image { width: 200px; height: 200px; }
	.hero-student-2 .student-image { width: 260px; height: 170px; }

	.schedule-grid { grid-template-columns: repeat(2, 1fr); }
	.program-grid { grid-template-columns: repeat(2, 1fr); }

	.access-info-grid { grid-template-columns: 1fr; }

	/* Free Talk */
	.voice-slider-wrapper { margin: 20px 30px; padding: 0 24px 50px; }
	.voice-slider .slick-slide { padding: 16px 16px; height: auto; margin: auto 8px; }
}


@media (max-width: 768px) {
	.sp-only { display: inline; }
	.sp-br { display: inline; }

	/* Header */
	.header-inner { padding: 0 16px; }
	.hamburger { display: block; }
	.nav {
		display: none;
		position: fixed;
		top: var(--header-height); left: 0; right: 0; bottom: 0;
		height: auto;
		padding-right: 0;
		background: rgba(255,255,255,0.99);
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 0;
		/* headerのz-index(1000)より低くしてハンバーガーを常に最前面に */
		z-index: 999;
	}
	.nav.active { display: flex; }
	.nav-list {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
	.nav-list li { border-bottom: 1px solid #eee; width: 100%; }
	.nav-list li a {
		display: block; padding: 16px 30px;
		font-size: 16px; text-align: center;
	}
	.nav-list li a::after { display: none; }
	body.menu-open .fixed-cta { display: none; }
	.btn-apply-header {
		margin-top: 20px;
		padding: 14px 40px;
		font-size: 16px;
	}

	/* Hero */
	.hero {
		min-height: auto; height: auto; padding-bottom: 80px;
		background: transparent;
		position: relative; z-index: 1;
	}
	/* PC版のような斜めの切り込み背景を再現 */
	.hero::before {
		content: ''; position: absolute; top: 0; right: 0;
		width: 100%; height: 100%;
		background: var(--color-primary-light);
		/* 右上角から左下角への対角線で切り取る */
		clip-path: polygon(100% 0, 100% 100%, 0 100%);
		z-index: -1;
	}
	.hero-container {
		flex-direction: column;
		padding: 0 20px;
	}
	.hero-content { width: 100%; padding-top: 30px; }
	.hero-title { font-size: 3.8rem; }
	.hero-visual { display: none; }
	.hero-visual-mobile {
		display: block;
		position: relative;
		margin-bottom: 20px;
		height: 200px;
	}
	.mobile-circle {
		position: absolute;
		border-radius: 50%;
		background: var(--color-primary-light);
	}
	.mobile-circle-1 {
		width: 160px; height: 160px;
		top: 0; right: 0;
	}
	.mobile-circle-2 {
		width: 100px; height: 100px;
		bottom: 0; left: 20px;
		background: rgba(255,102,0,0.08);
	}
	.mobile-student {
		position: absolute;
		border-radius: 50%; overflow: hidden;
		box-shadow: 0 8px 20px rgba(0,0,0,0.1);
	}
	.mobile-student img { width: 100%; height: 100%; object-fit: cover; }
	.mobile-student-1 { width: 130px; height: 130px; top: 10px; right: 15px; }
	.mobile-student-2 { width: 100px; height: 100px; bottom: 0; left: 40px; }

	.scroll-indicator { display: none; }

	/* Sections */
	.section { padding: 60px 0; }
	.section-title { font-size: 2rem; }

	/* Worries */
	.worries-list { grid-template-columns: 1fr; }
	.solution-text { font-size: 18px; }

	/* Schedule */
	.schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.schedule-card { padding: 20px 10px; }
	.schedule-card .day { font-size: 34px; }

	/* Program */
	.program-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.card-image { height: 120px; }
	.card-content { padding: 14px; }
	.card-content h3 { font-size: 14px; }

	/* Steps */
	.steps-container { flex-direction: column; gap: 5px; align-items: center; }
	.step-arrow { transform: rotate(90deg); font-size: 24px; margin: 0; line-height: 1; display: flex; align-items: center; justify-content: center; width: auto; height: 30px; }
	.step-box { max-width: 100%; width: 100%; padding: 25px 20px; }

	/* Free Talk */
	.voice-slider-wrapper { margin: 16px 16px; padding: 0 24px 40px; }
	.voice-slider .slick-slide { padding: 12px 10px; height: auto; margin: auto 6px; }
	.voice-card { padding: 20px 18px; border-radius: 12px; }
	.voice-dept { font-size: 10px; padding: 3px 10px; margin-bottom: 4px; }
	.voice-category { font-size: 9px; padding: 2px 8px; margin-bottom: 10px; }
	.voice-question { font-size: 14px; margin-bottom: 8px; }
	.voice-slider .slick-prev { left: -12px; }
	.voice-slider .slick-next { right: -12px; }
	.voice-slider .slick-prev,
	.voice-slider .slick-next { width: 34px; height: 34px; }
	.voice-slider .slick-prev:before,
	.voice-slider .slick-next:before { font-size: 15px; }
	.voice-slider .slick-dots { margin-top: 24px; gap: 6px; }
	.voice-slider .slick-dots li button { width: 7px; height: 7px; }
	.voice-slider .slick-dots li.slick-active button { width: 20px; }

	/* Gallery */
	.gallery-title { font-size: 16px; }

	/* Departments */
	.dept-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.dept-tile { padding: 22px 20px; }
	.dept-tile-name { font-size: 16px; }
	.dept-tile-catch { font-size: 12px; }

	/* Access */
	.map-container { height: 280px; }

	/* Fixed elements */
	.fixed-schedule-card { display: none; }
	.fixed-cta { display: block; }

	/* CTA */
	.section-cta { padding: 50px 16px; }
	.section-cta h2 { font-size: 1.4rem; }
	.section-cta p { font-size: 13px; margin-bottom: 25px; }

	/* Footer */
	.footer { padding: 40px 0 0; }
	.footer-content {
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 30px;
	}
	.footer-info { flex-direction: column; align-items: center; }
	.footer-address { font-size: 12px; }
	.footer-nav { gap: 20px; }
	.footer-nav a { font-size: 12px; }
	.footer-ext-links { flex-direction: row; gap: 8px; }
	.footer-link-btn { font-size: 11px; padding: 6px 14px; }
	.copyright { font-size: 10px; }
}

@media (max-width: 480px) {
	.hero-title { font-size: 3rem; }
	.schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
	.schedule-card { padding: 15px 5px; }
	.schedule-card .day { font-size: 30px; }
	.program-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.access-links { flex-direction: column; }
	.btn-outline { width: 100%; }

	/* Free Talk */
	.voice-slider-wrapper { margin: 10px 8px; padding: 0 20px 32px; }
	.voice-slider .slick-slide { padding: 10px 6px; height: auto; margin: auto 4px; }
	.voice-card { padding: 18px 16px; }
	.voice-question { font-size: 13px; }
	.voice-slider .slick-prev { left: -10px; }
	.voice-slider .slick-next { right: -10px; }
	.voice-slider .slick-prev,
	.voice-slider .slick-next { width: 30px; height: 30px; }
	.voice-slider .slick-prev:before,
	.voice-slider .slick-next:before { font-size: 13px; }
	.voice-slider .slick-dots { margin-top: 20px; gap: 5px; }
	.voice-slider .slick-dots li button { width: 6px; height: 6px; }
	.voice-slider .slick-dots li.slick-active button { width: 18px; border-radius: 3px; }

	/* Departments */
	.dept-grid { grid-template-columns: 1fr; gap: 12px; max-width: 400px; margin: 0 auto; }
	.dept-tile { padding: 20px 18px; }
	.dept-tile-name { font-size: 15px; }
	.dept-tile-catch { font-size: 12px; }
}