@charset "utf-8";

/* ========================================================
   第1回 まるごと体感DAY 2026 — Event Page Styles
   Color scheme: Sky Blue based on チラシ design
   ======================================================== */

/* Variables
-------------------------------------------------------- */
:root {
	--primary: #0099ff;
	--primary-dark: #0066cc;
	--primary-light: #e6f3ff;
	--secondary: #ff9933;
	--accent: #0099ff;
	--text: #333;
	--text-light: #666;
	--white: #fff;
	--gray-bg: #f5f7fa;
	--gray-border: #d0d8e0;
	--border-radius: 8px;
}

/* Page base
-------------------------------------------------------- */
.marugoto-page {
	text-align: left;
	color: var(--text);
}
.marugoto-page .sec {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 30px;
	box-sizing: border-box;
}

/* Hero
-------------------------------------------------------- */
.marugoto-hero {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #0066cc 0%, #0099ff 50%, #33bbff 100%);
	color: var(--white);
	padding: 80px 0 60px;
}
.marugoto-hero::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
	border-radius: 50%;
}
.marugoto-hero::after {
	content: '';
	position: absolute;
	bottom: -30%;
	left: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255,153,51,0.05) 0%, transparent 70%);
	border-radius: 50%;
}
.marugoto-hero .sec {
	position: relative;
	z-index: 1;
}
.marugoto-hero .label {
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding: 0.4em 1.2em;
	border: 2px solid rgba(255,255,255,0.6);
	border-radius: 30px;
	margin: 0 0 20px;
}
.marugoto-hero .main-ttl {
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 10px;
}
.marugoto-hero .sub-ttl {
	font-size: 2.0rem;
	font-weight: 500;
	line-height: 1.5;
	opacity: 0.95;
	margin: 0 0 30px;
}
.marugoto-hero .info-row {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 0;
}
.marugoto-hero .info-row dl {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.marugoto-hero .info-row dt {
	font-size: 1.3rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	opacity: 0.9;
}
.marugoto-hero .info-row dd {
	font-size: 1.8rem;
	font-weight: 600;
}

/* Chirashi Image
-------------------------------------------------------- */
.marugoto-chirashi {
	padding: 0;
	background: var(--white);
}
.marugoto-chirashi .chirashi-container {
	max-width: 100%;
	margin: 0;
	overflow: hidden;
}
.marugoto-chirashi img {
	width: 100%;
	height: auto;
	display: block;
}

/* Catch copy
-------------------------------------------------------- */
.marugoto-catch {
	text-align: center;
	padding: 70px 0;
	background: var(--white);
}
.marugoto-catch .lead {
	font-size: 2.6rem;
	font-weight: 700;
	color: var(--primary);
	line-height: 1.6;
	margin: 0 0 15px;
}
.marugoto-catch .desc {
	font-size: 1.5rem;
	color: var(--text-light);
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

/* Section title
-------------------------------------------------------- */
.marugoto-page .sec-ttl {
	text-align: center;
	margin: 0 0 50px;
}
.marugoto-page .sec-ttl h2 {
	font-size: 2.8rem;
	font-weight: 700;
	color: var(--primary);
	position: relative;
	display: inline-block;
	padding: 0 0 15px;
}
.marugoto-page .sec-ttl h2::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--secondary);
	border-radius: 2px;
}
.marugoto-page .sec-ttl .en {
	display: block;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--secondary);
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin: 8px 0 0;
}

/* Schedule section
-------------------------------------------------------- */
.marugoto-schedule {
	padding: 70px 0;
	background: var(--gray-bg);
}

/* Program Details section
-------------------------------------------------------- */
.marugoto-programs {
	padding: 70px 0;
	background: var(--white);
}
.marugoto-programs .programs-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.marugoto-programs .program-card {
	background: var(--gray-bg);
	border-radius: var(--border-radius);
	padding: 30px;
	border-left: 5px solid var(--primary);
	transition: transform 0.3s, box-shadow 0.3s;
}
.marugoto-programs .program-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.marugoto-programs .program-icon {
	margin: 0 0 15px;
}
.marugoto-programs .icon-num {
	display: inline-block;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--white);
	background: var(--primary);
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50%;
}
.marugoto-programs .program-card h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 12px;
}
.marugoto-programs .program-card p {
	font-size: 1.4rem;
	color: var(--text-light);
	line-height: 1.8;
	margin: 0;
}
.marugoto-schedule .schedule-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}
.marugoto-schedule .schedule-group h3 {
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 20px;
	padding: 15px;
	background: var(--white);
	border-left: 5px solid var(--primary);
	border-radius: 4px;
}
.marugoto-schedule .schedule-table {
	width: 100%;
	border-collapse: collapse;
}
.marugoto-schedule .schedule-table tbody tr {
	background: var(--white);
	border-bottom: 2px solid var(--gray-bg);
}
.marugoto-schedule .schedule-table tbody tr:last-child {
	border-bottom: none;
}
.marugoto-schedule .schedule-table td {
	padding: 20px;
	vertical-align: middle;
}
.marugoto-schedule .schedule-table .time {
	font-weight: 700;
	color: var(--primary);
	font-size: 1.4rem;
	white-space: nowrap;
	width: 100px;
	text-align: center;
}
.marugoto-schedule .schedule-table .content {
	font-size: 1.5rem;
	color: var(--text);
	font-weight: 500;
}
.marugoto-schedule .tag {
	display: inline-block;
	font-size: 1.0rem;
	font-weight: 700;
	color: var(--white);
	padding: 0.2em 0.8em;
	border-radius: 4px;
	margin: 0 8px 0 0;
}
.marugoto-schedule .tag.tag-tour {
	background: var(--primary);
}
.marugoto-schedule .tag.tag-panel {
	background: var(--secondary);
}
.marugoto-schedule .tag.tag-talk {
	background: #6ab937;
}
.marugoto-schedule .tag.tag-info {
	background: var(--primary);
}
.marugoto-schedule .tag.tag-consult {
	background: #d966ff;
}

/* Departments Display section
-------------------------------------------------------- */
.marugoto-departments {
	padding: 70px 0;
	background: var(--gray-bg);
}
.marugoto-departments .dept-intro {
	text-align: center;
	font-size: 1.6rem;
	color: var(--text-light);
	margin: 0 0 40px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8;
}
.marugoto-departments .dept-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.marugoto-departments .dept-card {
	background: var(--white);
	border-radius: var(--border-radius);
	padding: 25px;
	border-top: 4px solid var(--primary);
	display: flex;
	flex-direction: column;
	transition: transform 0.3s, box-shadow 0.3s;
}
.marugoto-departments .dept-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.marugoto-departments .dept-card h3 {
	font-size: 1.6rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 12px;
}
.marugoto-departments .dept-card p {
	font-size: 1.3rem;
	color: var(--text-light);
	line-height: 1.7;
	flex-grow: 1;
	margin: 0 0 15px;
}
.marugoto-departments .dept-link {
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 600;
	color: var(--primary);
	text-decoration: none;
	padding: 8px 0;
	border-bottom: 2px solid var(--primary);
	transition: all 0.3s;
}
.marugoto-departments .dept-link:hover {
	color: var(--primary-dark);
	border-bottom-color: var(--primary-dark);
}

/* Department Colors */
.marugoto-departments .dept-ai {
	background: #fffaf0;
	border-top-color: #ffd966;
}
.marugoto-departments .dept-ai h3 {
	color: #ffc966;
}
.marugoto-departments .dept-robot {
	background: #fff5f0;
	border-top-color: #ffb366;
}
.marugoto-departments .dept-robot h3 {
	color: #ff9933;
}
.marugoto-departments .dept-semi {
	background: #f0f5ff;
	border-top-color: #66b3ff;
}
.marugoto-departments .dept-semi h3 {
	color: #3399ff;
}
.marugoto-departments .dept-energy {
	background: #f0fff0;
	border-top-color: #66cc99;
}
.marugoto-departments .dept-energy h3 {
	color: #33bb66;
}
.marugoto-departments .dept-chem {
	background: #fff5f8;
	border-top-color: #ff99cc;
}
.marugoto-departments .dept-chem h3 {
	color: #ff6699;
}

/* Entry section
-------------------------------------------------------- */
.marugoto-entry {
	padding: 70px 0;
	background: var(--white);
}
.marugoto-entry .entry-box {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
	padding: 50px;
	background: linear-gradient(135deg, var(--primary) 0%, #0088dd 100%);
	border-radius: 12px;
	color: var(--white);
}
.marugoto-entry .entry-box .entry-info {
	margin: 0 0 30px;
}
.marugoto-entry .entry-box .period {
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 12px;
}
.marugoto-entry .entry-box p {
	font-size: 1.5rem;
	opacity: 0.95;
	line-height: 1.6;
}
.marugoto-entry .btn-apply {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	padding: 16px 50px;
	background: var(--white);
	border-radius: 50px;
	transition: all 0.3s;
}
.marugoto-entry .btn-apply:hover {
	background: var(--primary-light);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

/* Note section
-------------------------------------------------------- */
.marugoto-note {
	padding: 60px 0;
	background: var(--gray-bg);
}
.marugoto-note h3 {
	font-size: 2.0rem;
	font-weight: 700;
	color: var(--primary);
	margin: 0 0 20px;
	text-align: center;
}
.marugoto-note ul {
	max-width: 700px;
	margin: 0 auto;
	list-style: none;
	padding: 0;
}
.marugoto-note ul li {
	font-size: 1.4rem;
	color: var(--text-light);
	line-height: 1.8;
	padding: 0 0 0 1.8em;
	margin: 0 0 10px;
	position: relative;
}
.marugoto-note ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	font-weight: 700;
	color: var(--primary);
	font-size: 1.6rem;
}

/* Contact section
-------------------------------------------------------- */
.marugoto-contact {
	padding: 60px 0;
	background: var(--white);
}
.marugoto-contact .contact-box {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}
.marugoto-contact .contact-box p {
	font-size: 1.5rem;
	line-height: 1.8;
}
.marugoto-contact .contact-box p:first-child {
	font-size: 1.3rem;
	color: var(--text-light);
}
.marugoto-contact .contact-box .tel {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--primary);
	text-decoration: none;
	display: block;
	margin: 5px 0;
}
.marugoto-contact .contact-box .mail {
	display: inline-block;
	font-size: 1.5rem;
	color: var(--white);
	text-decoration: none;
	padding: 12px 40px;
	background: var(--primary);
	border-radius: 50px;
	margin: 20px 0 0;
	transition: background 0.3s;
}
.marugoto-contact .contact-box .mail:hover {
	background: var(--primary-dark);
}

/* ========================================================
   Responsive (SP: 767px)
   ======================================================== */
@media screen and (max-width:767px) {
	.marugoto-page .sec {
		padding: 0 20px;
	}

	/* Hero */
	.marugoto-hero {
		padding: 50px 0 40px;
	}
	.marugoto-hero .main-ttl {
		font-size: 2.4rem;
	}
	.marugoto-hero .sub-ttl {
		font-size: 1.5rem;
	}
	.marugoto-hero .info-row {
		flex-direction: column;
		gap: 15px;
	}

	/* Catch */
	.marugoto-catch {
		padding: 50px 20px;
	}
	.marugoto-catch .lead {
		font-size: 2.0rem;
	}
	.marugoto-catch .desc {
		font-size: 1.4rem;
	}

	/* Section title */
	.marugoto-page .sec-ttl {
		margin: 0 0 30px;
	}
	.marugoto-page .sec-ttl h2 {
		font-size: 2.0rem;
	}

	/* Schedule */
	.marugoto-schedule {
		padding: 50px 0;
	}
	.marugoto-schedule .schedule-container {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.marugoto-schedule .schedule-table td {
		padding: 15px;
		font-size: 1.3rem;
	}
	.marugoto-schedule .schedule-table .time {
		font-size: 1.2rem;
		width: 80px;
	}
	.marugoto-schedule .schedule-table .content {
		font-size: 1.3rem;
	}

	/* Programs */
	.marugoto-programs {
		padding: 50px 0;
	}
	.marugoto-programs .programs-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	.marugoto-programs .program-card {
		padding: 20px;
	}
	.marugoto-programs .program-card h3 {
		font-size: 1.5rem;
	}
	.marugoto-programs .program-card p {
		font-size: 1.3rem;
	}

	/* Departments */
	.marugoto-departments {
		padding: 50px 0;
	}
	.marugoto-departments .dept-intro {
		font-size: 1.4rem;
		margin: 0 0 30px;
	}
	.marugoto-departments .dept-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
	}
	.marugoto-departments .dept-card {
		padding: 20px;
	}
	.marugoto-departments .dept-card h3 {
		font-size: 1.4rem;
	}
	.marugoto-departments .dept-card p {
		font-size: 1.2rem;
	}

	/* Entry */
	.marugoto-entry {
		padding: 50px 0;
	}
	.marugoto-entry .entry-box {
		padding: 30px 20px;
	}
	.marugoto-entry .entry-box .period {
		font-size: 1.5rem;
	}
	.marugoto-entry .btn-apply {
		font-size: 1.5rem;
		padding: 12px 36px;
	}

	/* Contact */
	.marugoto-contact .contact-box .tel {
		font-size: 1.8rem;
	}
	.marugoto-contact .contact-box .mail {
		font-size: 1.3rem;
	}
}

@media screen and (max-width:480px) {
	.marugoto-hero .main-ttl {
		font-size: 1.8rem;
	}
	.marugoto-hero .sub-ttl {
		font-size: 1.2rem;
	}
	.marugoto-schedule .schedule-group h3 {
		font-size: 1.5rem;
	}
	.marugoto-programs .programs-grid {
		grid-template-columns: 1fr;
	}
	.marugoto-departments .dept-grid {
		grid-template-columns: 1fr;
	}
}
