/*===============================
MARK: root 
=================================*/

:root {
	--c-black: #000;
	--c-sub: #222;
	--c-red: #ff0000;
	--c-green: #43a56c;
	--c-blue: #1fa5ad;
	--c-navy: #095493;
	--c-purple: #5764cb;
	--c-yellow: #f8f829;
	--c-orange: #ed9944;
	--c-brown: #a37157;
	--c-data: #4853ab;
}

/*===============================
MARK: common
=================================*/

body {
	position: relative;
	overflow-x: hidden;
	font-family:
		'Zen Kaku Gothic Antique', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN',
		'Hiragino Sans', Meiryo, sans-serif;
	font-weight: 500;
	-webkit-font-smoothing: antialiased;
	background: #fff;
	color: var(--c-black);
	letter-spacing: 0.05em;
	clip-path: inset(0);
}

body.is-story-mode {
	overflow: hidden;
}

a {
	transition: 0.3s;
	text-decoration: none;
	color: inherit;
}

a:hover {
	opacity: 0.8;
}

a svg path,
a svg rect,
a svg ellipse,
a svg line {
	transition: all 0.3s;
}

img {
	max-width: 100%;
	height: auto;
}

.container-lg {
	width: min(1264px, calc(100% - 40px));
	margin-inline: auto;
}

.container-md {
	width: min(1013px, calc(100% - 40px));
	margin-inline: auto;
}

.page-content {
	width: 100%;
}

.d-flex {
	display: flex;
	align-items: start;
	justify-content: start;
}

.flex-1 {
	flex: 1;
}

.tb-content {
	display: none;
}

.sp-content {
	display: none;
}

.indent1em {
	text-indent: -1em;
	margin-left: 1em;
}

.indent2em {
	text-indent: -2em;
	margin-left: 2em;
}

.text-center {
	text-align: center !important;
}

.text-right {
	text-align: right !important;
}

.font-serif {
	font-family: 'Shippori Mincho', serif;
	font-style: normal;
}

.font-en01 {
	font-family: 'Roboto', sans-serif;
	font-style: normal;
}
.font-en02 {
	font-family: 'Antonio', sans-serif;
	font-style: normal;
}

.c-white,
.c-white * {
	color: #fff;
}

.c-red,
.c-red * {
	color: var(--c-red);
}

.mt1em {
	margin-top: 1em;
}

.a-text {
	text-decoration: underline;
}

.table {
	border-spacing: 0;
	border-collapse: separate;
	width: 100%;
}
.table th,
.table td {
	padding: 9px 20px;
	border-top: 1px solid #1fa5ad;
	border-left: 1px solid #1fa5ad;
	text-align: left;
}
.table th {
	background: #f7f7f7;
	font-weight: 500;
	font-size: 14px;
}
.table td {
	padding: 6px 20px;
	background: #ffffff;
	font-weight: bold;
}
.table th:last-child,
.table td:last-child {
	border-right: 1px solid #1fa5ad;
}
.table tr:last-child th,
.table tr:last-child td {
	border-bottom: 1px solid #1fa5ad;
}
.table tr:first-child :first-child {
	border-top-left-radius: 16px;
}
.table tr:first-child :last-child {
	border-top-right-radius: 16px;
}
.table tr:last-child :first-child {
	border-bottom-left-radius: 16px;
}
.table tr:last-child :last-child {
	border-bottom-right-radius: 16px;
}

.js-img-fade {
	opacity: 0;
	will-change: opacity, transform;
}

/*===============================
MARK: BTN
=================================*/
.btn {
	border: 1px solid #222;
	border-radius: 50em;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: #222;
	color: #fff;
	padding: 1.3em 1.8em;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}
.btn:hover,
.btn:active {
	opacity: 1;
	background: #fff;
	color: var(--c-sub);
}
.btn:hover .arrow-btn-right,
.btn:active .arrow-btn-right {
	fill: #222;
}

.btn.disabled {
	pointer-events: none;
	color: rgb(255 255 255 / 0.5);
	padding: 1.3em 2.5em;
	width: fit-content;
}

.btn.disabled svg {
	margin-right: 5px;
}

.btn.disabled .arrow-btn-right {
	fill: rgb(255 255 255 / 0.5);
}

.btn.btn-company {
	display: flex;
	justify-content: space-between;
	border-radius: 16px;
	font-size: 24px;
	border: none;
	background: rgb(255 255 255 / 0.9);
	color: var(--c-sub);
	padding: 1.7em 1em 1.7em 1.8em;
}

.btn.btn-company:hover {
	background: rgb(0 0 0 / 0.7);
	color: #fff;
}

.btn.btn-company:hover .arrow-diagonal {
	fill: #fff;
}

.btn.btn-link {
	justify-content: space-between;
	border-radius: 16px;
	border-color: #fff;
	background: transparent;
	color: #fff;
	font-size: 26px;
}
.btn.btn-link:hover {
	background: rgb(34 34 34 / 0.7);
}

.btn.btn02 {
	font-size: 18px;
	gap: 3.5em;
}

/*===============================
MARK: HEADER
=================================*/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.top-page .site-header {
	width: fit-content;
}

.header-inner {
	display: flex;
	align-items: start;
	justify-content: space-between;
	width: 100%;
	padding: 20px 25px;
}

.top-page .gnav {
	position: fixed;
	top: 20px;
	right: 25px;
	width: fit-content;
	z-index: 10;
	background: rgb(255 255 255 / 0.9);
	border-radius: 50em;
	box-shadow: 0 3px 6px rgb(0 0 0 / 0.16);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	padding: 1.8em 3.5em;
	margin-left: 210px;
}

.gnav .main-nav {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	font-size: 14px;
}

.main-nav a {
	color: var(--c-black);
}

.site-logo {
	padding-top: 5px;
}

.site-logo img {
	display: block;
}

/*===============================
MARK: FOOTER
=================================*/
.footer-sns {
	padding-block: 70px;
	background: rgb(255 255 255 / 0.95);
}

.footer-sns .sns-list {
	display: flex;
	align-items: center;
	justify-content: center;
	list-style: none;
	gap: 5%;
}

.footer-sns .sns-list a {
	display: grid;
	place-content: center;
	border-radius: 50%;
	border: 1px solid #d3d3d3;
	width: 80px;
	height: 80px;
}

.footer-sns .sns-list a img {
	display: block;
}

.site-footer {
	background: #222;
	color: #fff;
	padding-block: 45px;
}

.footer-inner {
	justify-content: space-between;
	align-items: stretch;
}

.footer-inner .col-left {
	font-weight: 400;
}

.footer-logo {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 12px;
	width: fit-content;
}

.footer-logo:hover {
	opacity: 1;
}

.footer-logo .banner {
	display: block;
	background: #fff;
	border: 3px solid #fff;
	border-radius: 8px;
	transition: 0.2s;
	width: fit-content;
	padding: 14px 20px 10px 20px;
}

.footer-logo:hover .banner {
	border-color: #af7120;
}

.footer-logo p img {
	vertical-align: sub;
}

.address {
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-size: 14px;
	margin-top: 30px;
}

.address a {
	border-bottom: 1px solid #fff;
}
.address a span {
	padding-right: 8px;
}

.footer-inner .col-right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer-nav {
	display: flex;
	justify-content: end;
	gap: 30px;
	list-style: none;
	margin-bottom: 30px;
}

.copyright {
	font-size: 13px;
	opacity: 0.7;
	text-align: right;
}

/*===============================
MARK: TOP
=================================*/
.top-bgMovie {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}
.top-bgMovie::after {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: rgb(46 46 46 / 0.3);
	z-index: 0;
}
.top-bgMovie video {
	object-fit: cover;
	object-position: top left;
	width: 100%;
	height: 100%;
}

.mv {
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
}

.mv-inner {
	display: grid;
	place-items: center;
	position: relative;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: #ddd;
	transition-delay: 1s;
}

.main-copy {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
}

.mv-img {
	width: 100%;
	height: 100%;
}

.mv-img img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.mv.is-story .mv-inner {
	opacity: 0;
}

.js-enter-story {
	display: block;
	position: absolute;
	right: 40px;
	bottom: 20px;
	z-index: 2;
	cursor: pointer;
	transition: transform 0.2s;
}

.js-enter-story:hover {
	transform: scale(1.08);
}

.animated-arrow {
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
}

.animated-arrow span {
	display: inline-block;
	opacity: 0;
	animation: arrowBlink 0.9s infinite;
}
.animated-arrow span img {
	display: block;
	width: 100%;
	height: auto;
}

.animated-arrow .--01 {
	animation-delay: 0s;
}

.animated-arrow .--02 {
	animation-delay: 0.2s;
}

.animated-arrow .--03 {
	animation-delay: 0.4s;
}

@keyframes arrowBlink {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 1;
	}

	40% {
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

.js-restart-story {
	display: block;
	position: absolute;
	right: 40px;
	bottom: 20px;
	z-index: 2;
	cursor: pointer;
	transition: transform 0.2s;
}
.js-restart-story:hover {
	transform: scale(1.08);
}

.story-section {
	position: absolute;
	inset: 0;
	z-index: 5;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	background: transparent;
}

.story-end-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
}

.story-section.is-disabled {
	visibility: hidden;
	pointer-events: none;
}

.story-section.is-active {
	visibility: visible;
	pointer-events: auto;
}

.story-track {
	position: relative;
	display: flex;
	width: auto;
	height: 100%;
	will-change: transform;
	z-index: 1;
}

.story-panel {
	position: relative;
	flex: 0 0 100vw;
	width: 100vw;
	height: 100vh;
	height: 100dvh;
	font-size: 48px;
	color: #fff;
}

.story-panel.--story_main {
	position: relative;
	display: flex;
	align-items: center;
	flex: 0 0 150vw;
	width: 150vw;
	background: #025090;
	background: linear-gradient(
		90deg,
		rgba(2, 80, 144, 1) 18%,
		rgba(27, 128, 155, 1) 55%,
		rgba(58, 185, 169, 1) 75%
	);
	z-index: 1;
}

.story-panel .lead {
	position: absolute;
}

.story-panel .lead img {
	display: block;
	width: 100%;
}

.story-panel .s-img {
	position: absolute;
}
.story-panel .lead.--01 {
	width: clamp(197px, 36vh, 352px);
	left: 7vw;
	top: 30vh;
}
.s-img.--img01 {
	width: clamp(170px, 31vh, 305px);
	top: 18vh;
	left: 32vw;
}
.s-img.--img02 {
	width: clamp(140px, 26vh, 251px);
	top: 59vh;
	left: 32vw;
}
.s-img.--img03 {
	width: clamp(196px, 36vh, 351px);
	bottom: 0;
	left: 7vw;
}

.story-panel .lead.--02 {
	width: clamp(213px, 39vh, 381px);
	top: 56vh;
	left: 48vw;
}
.s-img.--img04 {
	width: clamp(308px, 57vh, 551px);
	top: 21vh;
	left: 59vw;
}
.s-img.--img05 {
	width: clamp(116px, 21vh, 207px);
	top: 54vh;
	left: 73vw;
}

.story-panel .lead.--03 {
	width: clamp(233px, 43vh, 417px);
	top: 43vh;
	left: 101vw;
}
.s-img.--img06 {
	width: clamp(140px, 26vh, 241px);
	top: 16vh;
	left: 108vw;
}
.s-img.--img07 {
	width: clamp(315px, 58vh, 568px);
	bottom: 0;
	left: 83vw;
}

.story-panel.--story_photo {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: auto;
	height: 100vh;
	height: 100dvh;
	overflow: hidden;
	margin-left: -23vw;
	z-index: 1;
}

.story-panel.--story_photo img {
	display: block;
	width: auto;
	max-width: none;
	height: 100%;
}
.story-panel.js-story-end {
	display: grid;
	place-items: center;
	flex: 0 0 100vw;
	width: 100vw;
}

.--story_main .scroll-down {
	top: 53vh;
	left: 93vw;
	transform: unset;
	opacity: 1;
}

.scroll-down {
	position: absolute;
	width: 27px;
	height: 45px;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	border: 1px solid #fff;
	border-radius: 50em;
	opacity: 0.6;
}
.scroll-down span {
	position: absolute;
	top: 15%;
	left: 40%;
	display: block;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #fff;
	animation: 2s small-dot-move infinite running ease-out;
}

.scroll-down div {
	position: absolute;
	width: fit-content;
	left: 50%;
	bottom: -22px;
	transform: translateX(-50%);
}

.scroll-down div img {
	display: block;
	max-width: unset;
}

@keyframes small-dot-move {
	from {
		top: 15%;
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
	to {
		top: 80%;
		opacity: 0.3;
	}
}

.floating-btn {
	position: fixed;
	left: 20px;
	bottom: 20px;
	z-index: 2;
}

.floating-btn .entry {
	margin-bottom: 15px;
}

.floating-btn .entry a {
	display: block;
	writing-mode: vertical-rl;
	color: var(--c-sub);
	font-weight: 600;
	font-size: 15px;
	background-color: rgba(248, 248, 41, 0.8);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border-radius: 50em;
	padding: 1.5em 1em;
}
.floating-btn .entry svg {
	margin-top: 3px;
}
.floating-btn .entry a:hover {
	opacity: 1;
	background-color: rgba(34, 34, 34, 0.8);
	color: var(--c-yellow);
}
.floating-btn .entry a:hover .arrow-floating-btn {
	fill: var(--c-yellow);
}
.floating-sns img {
	display: block;
}
.floating-sns a {
	display: grid;
	place-content: center;
	background: rgb(244 244 244 / 0.8);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border-radius: 50em;
	width: 53px;
	height: 53px;
}

/*===============================
MARK: TOP - main
=================================*/
#main-lead {
	padding-block: 280px 100px;
	color: #fff;
	font-size: 22px;
	font-weight: 700;
	line-height: 2.2;
}

#main-lead p {
	margin-bottom: 2.5em;
	padding-left: min(5vw, 70px);
}

#top-video {
	position: relative;
	padding-block: 240px 130px;
}
#top-video::before,
#top-video::after {
	content: '';
	display: block;
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
	z-index: -1;
	opacity: 0.9;
}
#top-video::before {
	left: 0;
	background: #3cc2ca;
	background: linear-gradient(
		0deg,
		rgba(60, 194, 202, 0.5) 0%,
		rgba(60, 194, 202, 1) 20%,
		rgba(60, 194, 202, 1) 75%,
		rgba(60, 194, 202, 0) 100%
	);
}
#top-video::after {
	right: 0;
	background: #095493;
	background: linear-gradient(
		0deg,
		rgba(9, 84, 147, 0.5) 0%,
		rgba(9, 84, 147, 1) 20%,
		rgba(9, 84, 147, 1) 75%,
		rgba(9, 84, 147, 0) 100%
	);
}

.video-wrap {
	position: relative;
}

.video-wrap > div {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
}

.video-wrap .heading {
	display: flex;
	color: #fff;
}

.video-wrap .main-heading {
	padding-inline: 22px 30px;
}

.video-wrap .main-heading h3 {
	font-size: 30px;
	margin-top: 5px;
}

.video-embed {
	margin-top: 50px;
}

.fukidashi {
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 13px;
	margin-bottom: 15px;
	font-size: 20px;
}
.fukidashi span {
	display: block;
	padding-left: 10px;
	font-weight: 700;
}
.fukidashi::before {
	content: '';
	width: 3px;
	height: 1.4em;
	transform: rotate(-25deg);
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 2px;
	margin-top: 0;
}
.fukidashi::after {
	content: '';
	width: 3px;
	height: 1.4em;
	transform: rotate(25deg);
	box-sizing: border-box;
	background-color: #fff;
	border-radius: 2px;
	margin-top: 0;
}

.custom-video-container {
	position: relative;
	width: 100%;
	max-width: 276px;
	background-color: #000;
	overflow: hidden;
	aspect-ratio: 138 / 245;
}
.custom-video-container video {
	width: 100%;
	display: block;
}
.video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}
.thumbnail-img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.is-hidden {
	display: none !important;
}

#top-interview {
	background: rgb(221 206 144 / 0.95);
	padding-block: 140px 125px;
}

#top-interview .heading {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#top-interview .section-lead {
	margin-top: 40px;
	line-height: 1.8;
}

.interview-wrap {
	margin-top: 60px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 57px;
	grid-row-gap: 60px;
}

.comingsoon a {
	pointer-events: none;
}

.interview-item a {
	display: block;
	position: relative;
	color: #fff;
}
.interview-item a img {
	display: block;
}

.interview-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: all 0.2s;
}

.interview-overlay > div {
	position: relative;
	font-weight: 800;
}

.interview-overlay::before,
.interview-overlay::after {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
	transition: all 0.2s;
}

.interview-overlay::after {
	content: 'Coming Soon';
	display: grid;
	place-content: center;
	font-size: 42px;
	font-weight: 700;
	background: rgb(255 255 255 / 0.9);
	opacity: 0;
}

.--bus .interview-overlay::after {
	color: #3cc2ca;
}

.--subway .interview-overlay::after {
	color: #3387cb;
}

.interview-item:hover .interview-overlay::after {
	opacity: 1;
}

.interview-item:hover .interview-overlay::before {
	opacity: 0;
}

.--bus .interview-overlay::before {
	background: #27939a;
	background: linear-gradient(
		0deg,
		rgba(39, 147, 154, 0.8) 0%,
		rgba(6, 102, 108, 1) 20%,
		rgba(46, 186, 195, 0.8) 100%
	);
	opacity: 0.9;
}
.--subway .interview-overlay::before {
	background: #095493;
	background: linear-gradient(
		0deg,
		rgba(9, 84, 147, 0.8) 0%,
		rgba(7, 66, 118, 1) 20%,
		rgba(9, 84, 147, 0.7) 100%
	);
	opacity: 0.9;
}

.interview-item:hover .interview-overlay > div {
	opacity: 0;
}

.interview-overlay .--txt {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 60px;
	padding-inline: 10px;
}

.interview-overlay .lead h3 {
	font-size: 24px;
	line-height: 1.7;
	margin-bottom: 1em;
}

.interview-overlay .lead p {
	font-size: 18px;
	line-height: 2;
	letter-spacing: normal;
}

.interview-overlay .conductor {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 18px;
	font-size: 20px;
	font-weight: 700;
	opacity: 0.5;
}

#top-entry {
	padding-block: 90px 117px;
}

#top-entry .heading {
	color: #fff;
	margin-bottom: 30px;
}

#top-entry .heading h2 {
	font-size: 46px;
}

.heading .sub-ttl {
	display: flex;
	align-items: center;
	gap: 6px;
	line-height: 1;
	font-weight: 400;
}
.heading .sub-ttl::before {
	content: '';
	display: block;
	background: rgb(255 255 255 / 0.4);
	border-radius: 50%;
	height: 10px;
	width: 10px;
}

#top-entry .d-flex {
	gap: 7%;
}

#top-entry .btn-wrap {
	flex: 1;
}

#top-data {
	background: rgb(87 100 203 / 0.9);
	color: #fff;
	padding-block: 95px 100px;
}
#top-data .heading {
	margin-bottom: 40px;
}
#top-data .heading h2 {
	font-size: 46px;
}
#top-data .d-flex {
	justify-content: space-between;
}
#top-data .d-flex p {
	line-height: 2;
}

#top-link {
	position: relative;
	padding-block: 95px;
}
#top-link::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgb(85 85 85 / 0.3);
	mix-blend-mode: multiply;
	z-index: -1;
}

#top-link .btn-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto;
	grid-column-gap: 6.5%;
	grid-row-gap: 30px;
}

#top-faq {
	padding-block: 95px 100px;
	background: rgb(214 214 214 / 0.95);
}

#top-faq .heading {
	margin-bottom: 30px;
}
#top-faq .heading h2 {
	font-size: 46px;
}

#top-faq .d-flex {
	justify-content: space-between;
}
#top-faq .d-flex p {
	line-height: 2;
}

/*===============================
MARK: 下層
=================================*/
.lower-page .site-header {
	background: rgb(255 255 255 / 0.9);
	border-radius: 0 0 50px 50px;
	box-shadow: 0 3px 6px rgb(0 0 0 / 0.16);
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
}

.lower-page .site-logo {
	padding-top: 0;
}

.lower-page .header-inner {
	align-items: end;
	padding: 15px 75px;
	gap: 20px;
}

.lower-page .gnav {
	padding-bottom: 10px;
}

.lower-page .page-cover {
	display: flex;
	align-items: center;
	padding-top: 90px;
	background-color: #fff;
	min-height: 446px;
}

.page-ttl {
	font-size: clamp(1.75rem, calc(1.375rem + 1.5vw), 2.5rem);
}

.lower-page .main-wrap {
	padding-block: 125px 120px;
}

.lower-page.welfare .main-wrap .container-md,
.lower-page.reason .main-wrap .container-md {
	display: flex;
	gap: 5%;
}

.lower-page .sticky-nav__wrap {
	flex: 1;
	position: relative;
}

.sticky-nav__inner {
	position: sticky;
	top: 120px;
	left: 0;
}

.sticky-nav__inner .nav-list {
	font-size: 18px;
	list-style: none;
}
.sticky-nav__inner .nav-list li {
	display: flex;
	gap: 12px;
	margin-bottom: 30px;
}
.sticky-nav__inner .nav-list li a {
	flex: 1;
}

.sticky-nav__inner .nav-list li::before {
	content: '';
	display: block;
	height: calc(tan(60deg) * 12px / 2);
	width: 11px;
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	margin-top: 10px;
}
.sticky-nav__inner .nav-list li.bus::before {
	background: var(--c-blue);
}
.sticky-nav__inner .nav-list li.subway::before {
	background: var(--c-navy);
}
.sticky-nav__inner .nav-list li.common::before {
	background: var(--c-purple);
}

.sticky-nav__inner .nav-list a {
	font-weight: 700;
}
.sticky-nav__inner .nav-list a:hover {
	opacity: 1;
	text-decoration: underline;
}

.sticky-nav__inner .nav-list .bus a:hover {
	color: var(--c-blue);
}
.sticky-nav__inner .nav-list .subway a:hover {
	color: var(--c-navy);
}
.sticky-nav__inner .nav-list .common a:hover {
	color: var(--c-purple);
}

.sticky-nav__inner .legend {
	list-style: none;
	font-size: 15px;
	margin-top: 50px;
}

.legend li {
	display: flex;
	gap: 12px;
	margin-bottom: 17px;
}
.legend li::before {
	content: '';
	display: block;
	border-radius: 4px;
	width: 20px;
	height: 20px;
	margin-top: 2px;
}
.legend li.bus::before {
	background: var(--c-blue);
}
.legend li.subway::before {
	background: var(--c-navy);
}
.legend li.common::before {
	background: var(--c-purple);
}

.lower-page .content-wrap {
	width: 770px;
}

/*===============================
MARK: reason
=================================*/
.lower-page.reason {
	background-color: #eaeef0;
}

.lower-page.reason .page-cover {
	background-image: url(../images/reason/page-cover.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
}

.content-wrap .section-heading {
	display: flex;
	align-items: center;
}

.reason section {
	margin-bottom: 85px;
}

.section-heading .main-heading {
	padding-left: 20px;
	font-size: 18px;
	font-weight: 700;
}

.section-heading .main-heading h2 {
	font-size: 36px;
}

.section-inner {
	margin-top: 30px;
	border-radius: 24px;
	background: #fff;
	padding: 40px 50px 50px 50px;
	line-height: 1.8;
	letter-spacing: normal;
}

.reason #section01 h3 {
	font-size: 24px;
	margin-block: 30px 15px;
}

.reason #section01 h3 span {
	color: var(--c-blue);
}

.reason #section01 .card {
	position: relative;
	background: var(--c-yellow);
	border-radius: 16px;
	padding: 25px 30px;
}

.reason #section01 .rows .card {
	padding-top: 40px;
}

.reason #section01 .card .num {
	position: absolute;
	top: 16px;
	left: 16px;
}

.reason #section01 .rows {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 25px;
	margin-top: 25px;
}

.reason #section01 .card h4 {
	font-size: 18px;
	margin-bottom: 20px;
}

.reason #section01 .card p {
	font-size: 14px;
}

.reason #section01 .card p span {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: #3cc2ca;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.reason #section02 .main-heading h2 span {
	font-size: 28px;
}

.section-item {
	margin-top: 40px;
}

.section-item h3 {
	font-size: 21px;
	margin-bottom: 20px;
}

.bus .section-item h3 {
	background: var(--c-blue);
	color: #fff;
	border-radius: 8px;
	padding: 0.5em 1.2em;
}

.section-item p {
	margin-bottom: 0.5em;
}

.section-item.--01 a {
	font-weight: 700;
}

.section-item.--02 ul {
	list-style: none;
	font-weight: 700;
}

.section-item.--02 li {
	position: relative;
	margin-bottom: 0.5em;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
.section-item.--02 li::before {
	content: '';
	display: inline-block;
	width: 13px;
	height: 13px;
	background: #cbebef;
	border-radius: 50%;
	margin-right: 8px;
}

.section-item.--03 .table {
	margin-block: 1em 0.7em;
	table-layout: fixed;
}

.notice {
	font-size: 13px;
}

.flow {
	width: 100%;
	margin-top: 32px;
}

.flow-list {
	position: relative;
	display: grid;
	gap: 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.flow-list::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 40px;
	left: 38px;
	width: 5px;
	background: var(--c-yellow);
	border-radius: 999px;
	height: 90%;
}

.flow-item {
	position: relative;
	display: grid;
	grid-template-columns: 100px 1fr;
	column-gap: 13px;
	align-items: start;
}

.flow-step {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--c-yellow);
	color: var(--c-blue);
	line-height: 1;
}

.flow-item:nth-child(2n) .flow-step {
	color: var(--c-orange);
}

.flow-step-label {
	position: absolute;
	top: -6px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 15px;
	font-weight: 800;
}

.flow-step-number {
	font-size: 48px;
	font-weight: 800;
	padding-bottom: 0.15em;
}

.flow-card {
	min-height: 118px;
	padding: 24px 10px 24px 24px;
	border-radius: 12px;
}

.flow-card--blue {
	background: #edf9fa;
}

.flow-card--orange {
	background: #fff3ea;
}

.flow-card--blue .flow-title {
	color: var(--c-blue);
}

.flow-card--orange .flow-title,
.flow-card--orange + * {
	color: var(--c-orange);
}

.flow-title {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.35;
}

.flow-text {
	margin: 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.8;
}

.flow-docs {
	display: grid;
	grid-template-columns: 92px 1fr;
	column-gap: 14px;
	align-items: center;
	margin-top: 10px;
}

.flow-docs-label {
	display: grid;
	place-items: center;
	min-height: 58px;
	margin: 0 !important;
	border-radius: 12px;
	background: #cbebef;
	font-size: 14px;
	height: 90%;
}

.flow-docs-list {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 13px;
	line-height: 1.75;
}

.flow-docs-list li::before {
	content: '・';
}

.reason #section03 .section-inner > .d-flex {
	gap: 50px;
	align-items: center;
}

.reason #section03 .section-inner .main-txt {
	flex: 1;
}

.reason #section03 .section-inner .img-wrap {
	width: 38%;
}

.reason #section03 .section-inner .img-wrap img {
	display: block;
}

.reason #section04 .section-inner p {
	margin-bottom: 0.4em;
}

.reason #section04 .section-inner p span {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--c-yellow);
	text-decoration-thickness: 3px;
	text-underline-offset: 5px;
}

.reason #section04 .sub-section {
	border-top: 1px solid #707070;
	margin-top: 1.5em;
	padding-top: 1.3em;
}

.reason #section04 .sub-section p span {
	text-decoration: none;
}

.reason #section04 .sub-section .d-flex {
	gap: 3%;
	margin-top: 15px;
}

.reason #section04 .sub-section .bg-y {
	background: var(--c-yellow);
	font-weight: 700;
	border-radius: 8px;
	margin-bottom: 0;
	flex: 1;
	text-align: center;
	padding: 1em 0.5em;
}

.section-inner.with-heading.feature {
	padding: 0;
	background: #d2e7f7;
	border: 2px solid #095493;
	overflow: hidden;
}

.section-inner.with-heading.feature h3 {
	background: #095493;
	color: var(--c-yellow);
	padding: 20px 20px 20px 50px;
	font-size: 26px;
}

.section-inner.with-heading.feature .inner {
	padding: 30px 50px 45px 50px;
	color: var(--c-navy);
}

.section-inner.with-heading.feature .inner > .d-flex {
	gap: 30px;
}

.section-inner.with-heading.feature .inner .col-left {
	flex: 1;
}

.section-inner.with-heading.feature .inner .col-left .list {
	font-size: 18px;
	font-weight: 700;
}

.section-inner.with-heading.feature .inner .col-left .summary {
	margin-top: 1.5em;
	font-size: 14px;
}

.section-inner.with-heading.feature .inner .col-right {
	width: 28%;
}

.section-inner.with-heading.feature .inner .col-right .img-wrap {
	overflow: hidden;
	border-radius: 16px;
	border: 1px solid #707070;
}

.section-inner.with-heading.feature .inner .col-right .img-wrap img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.reason #section05 .section-heading span {
	display: block;
	background: var(--c-purple);
	border-radius: 50%;
	width: 1.5em;
	height: 1.5em;
	margin-top: 5px;
}

.section-inner .bus {
	color: var(--c-blue);
}

.section-inner .subway {
	color: var(--c-navy);
	margin-top: 1.3em;
}

.reason #section05 .section-inner h4 {
	display: flex;
	position: relative;
	font-size: 20px;
}

.reason #section05 .section-inner h4::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	margin-right: 8px;
	margin-top: 0.75em;
}

.reason #section05 .section-inner .bus::before {
	background-color: var(--c-blue);
}
.reason #section05 .section-inner .subway::before {
	background-color: var(--c-navy);
}

/*===============================
MARK: welfare
=================================*/
.lower-page.welfare {
	background-color: #f8f2e1;
}

.lower-page.welfare .page-cover {
	background-image: url(../images/support/page-cover_pc.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
}

.welfare .sticky-nav__inner .nav-list {
	font-size: 28px;
}

.welfare .sticky-nav__inner .nav-list li::before {
	margin-top: 17px;
	background: var(--c-black);
}
.welfare .sticky-nav__inner .nav-list li:hover {
	color: var(--c-brown);
}
.welfare .sticky-nav__inner .nav-list li:hover::before {
	background: var(--c-brown);
}

.welfare .section-inner.with-heading {
	padding: 0;
	background: #fff;
	overflow: hidden;
}

.welfare .section-inner.with-heading h3 {
	color: #fff;
	padding: 20px 20px 20px 50px;
	font-size: 26px;
}

.welfare .section-inner.with-heading h3 span {
	font-size: 85%;
}

.welfare .section-inner.with-heading.bus h3 {
	background: var(--c-blue);
}
.welfare .section-inner.with-heading.subway h3 {
	background: var(--c-navy);
}
.welfare .section-inner.with-heading.common h3 {
	background: var(--c-purple);
}

.welfare .section-inner.with-heading .inner {
	padding: 30px 50px 45px 50px;
}

.welfare .with-heading .inner > h4 {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 24px;
}

.welfare .with-heading .inner > h4 span {
	display: block;
	background: #ddd;
	border-radius: 50%;
	width: 0.7em;
	height: 0.7em;
	margin-top: 5px;
}

.welfare .with-heading .inner > h4:not(:first-child) {
	margin-top: 1.5em;
}

.welfare .with-heading.bus .inner > h4 span {
	background: var(--c-blue);
}
.welfare .with-heading.subway .inner > h4 span {
	background: var(--c-navy);
}
.welfare .with-heading.common .inner > h4 span {
	background: var(--c-purple);
}

.welfare .section-item {
	margin-top: 20px;
}

.welfare .section-item h5 {
	display: flex;
	gap: 17px;
	width: 100%;
	background: #f8f2e1;
	border-radius: 8px;
	font-size: 18px;
	padding: 8px 25px;
	margin-bottom: 5px;
}

.welfare .section-item h5 span {
	display: block;
	width: 1px;
	background: var(--c-sub);
	margin-block: 5px;
}

.welfare .section-inner.with-heading .inner .img-wrap {
	margin-top: 30px;
}

.welfare .section-inner.with-heading .inner .img-wrap img {
	display: block;
}

.welfare .section-inner.with-heading .inner .img-wrap.d-flex {
	gap: 40px;
}
.welfare .section-inner.with-heading .inner .img-wrap.d-flex img {
	max-width: 100%;
}

.img-separator {
	margin-right: calc(50% - 50vw);
	margin-block: 150px;
	padding-right: 15%;
}

.img-separator img {
	display: block;
	width: 100%;
	max-width: unset;
}

.welfare .section-inner.with-heading .inner .table {
	margin-block: 30px 16px;
}
.welfare .section-inner.with-heading .inner .table th,
.welfare .section-inner.with-heading .inner .table td {
	border-top: 1px solid #5764cb;
	border-left: 1px solid #5764cb;
	font-size: 13px;
}

.welfare .section-inner.with-heading .inner .table th {
	font-weight: 700;
	width: 28%;
}

/*===============================
MARK: faq
=================================*/
.lower-page.faq {
	background-color: #eaeaea;
}

.lower-page.faq .page-cover {
	background-image: url(../images/faq/page-cover_pc.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: contain;
}

.lower-page.faq .main-wrap {
	padding-block: 80px 0;
	background-color: var(--c-green);
}

.anchor-wrap {
	background: transparent;
	position: sticky;
	top: 110px;
	left: 0;
	z-index: 2;
}

.anchor-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding-block: 33px;
	background: rgb(255 255 255 / 0.95);
	border-radius: 16px;
	box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.16);
}

.anchor-link a {
	position: relative;
	display: flex;
	align-items: center;
	width: 260px;
	border-radius: 8px;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	padding: 14px 45px 16px 18px;
}

.anchor-link li:nth-child(1) a {
	background-color: var(--c-green);
}
.anchor-link li:nth-child(2) a {
	background-color: var(--c-blue);
}
.anchor-link li:nth-child(3) a {
	background-color: var(--c-orange);
}

.anchor-link a span {
	display: grid;
	place-content: center;
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	border-radius: 50%;
	width: 32px;
	height: 32px;
	background: #fff;
}
.anchor-link a span::after {
	content: '';
	display: block;
	height: calc(tan(60deg) * 9px / 2);
	width: 7px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background-color: var(--c-sub);
}

.faq #section01 {
	padding-block: 110px;
	background: var(--c-green);
}
.faq #section02 {
	padding-block: 110px;
	background: var(--c-blue);
}
.faq #section03 {
	padding-block: 110px;
	background: var(--c-orange);
}

.faq .section-heading h2 {
	color: #fff;
	font-size: 36px;
}

/* ========================
MARK: アコーディオン
========================= */
.ac-wrap {
	margin-top: 40px;
}

summary {
	display: block;
	&::-webkit-details-marker {
		display: none;
	}
}

.ac-details {
	margin-bottom: 35px;
}

.ac-details__summary {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 25px 70px 25px 25px;
	font-size: 22px;
	font-weight: 700;
	cursor: pointer;
	background: #fff;
	border-radius: 8px;
	z-index: 1;
}

.ac-num img {
	display: block;
}

.ac-details__summary p {
	flex: 1;
}

.accordion-btn {
	position: absolute;
	right: 17px;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	background: var(--c-black);
	border-radius: 6px;
}
.accordion-btn::before,
.accordion-btn::after {
	content: '';
	display: block;
	background: #fff;
	position: absolute;
}
.accordion-btn::before {
	width: 16px;
	height: 2px;
	top: calc(50% - 1px);
	left: 50%;
	transform: translateX(-50%);
}
.accordion-btn::after {
	height: 16px;
	width: 2px;
	top: 50%;
	left: calc(50% - 1px);
	transform: translateY(-50%);
	transition: 0.2s;
}

details.is-opened .accordion-btn::after {
	height: 2px;
	top: 50%;
}

.ac-details__content .inner {
	position: relative;
	top: -6px;
	background: #eaeaea;
	padding: 30px 10px 30px 30px;
	border-radius: 0 0 8px 8px;
}

.ac-details__content .inner p {
	font-size: 15px;
	line-height: 2;
	font-weight: 600;
}

.ac-details__content .inner a {
	color: var(--c-red);
}

/* is-openedクラスが付与されたときのスタイル */
.ac-details.is-opened .ac-details__summary::after {
	transform: rotate(0deg);
}

/*===============================
MARK: bus
=================================*/
body.job .page-cover__job img,
body.job .main img {
	display: block;
}

body.job .overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 0;
}

body.job .overlay img {
	position: absolute;
}

body.job .container-md {
	position: relative;
}

.page-cover__job {
	position: relative;
}

.page-cover__job .title-wrap {
	display: flex;
	align-items: end;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-cover__job .page-ttl {
	font-size: clamp(1.75rem, calc(-0.5rem + 9vw), 6.25rem);
	text-transform: uppercase;
	padding-bottom: 0.5em;
	font-weight: 800;
}

body.bus .page-cover__job .page-ttl {
	color: #6ef0f8;
}

body.bus.job .section01 {
	padding-top: 55px;
	background: #0d98a0;
	color: #fff;
}

.col-break.--left {
	margin-left: calc(50% - 50vw);
}
.col-break.--right {
	margin-right: calc(50% - 50vw);
}

.col-break .d-flex {
	justify-content: space-between;
}

.col-break .d-flex .img-wrap {
	flex: 1;
}

.about .col-break.--left .img-wrap {
	margin-left: -9%;
}
.work-detail .col-break.--right .img-wrap {
	margin-right: -20%;
}
.schedule .col-break.--left .img-wrap {
	margin-left: -8%;
}

.about .col-break .d-flex {
	gap: 50px;
	align-items: center;
}

.about .col-break .inner {
	width: 30%;
}

.about-ttl {
	font-size: 26px;
	margin-bottom: 1.2em;
}

.about p {
	line-height: 1.8;
}

.point {
	margin-top: 80px;
}

.point .section-inner {
	border-radius: 16px;
	background: var(--c-yellow);
	color: var(--c-black);
}

.point .heading {
	margin-bottom: 32px;
}

.point .heading .section-ttl {
	flex: 1;
}

.point .heading p {
	width: 55%;
}

.point .card {
	position: relative;
	background: #fff;
	border-radius: 16px;
	padding: 25px 30px;
}

.point .card .num {
	display: block;
	height: 30px;
	position: absolute;
	top: 20px;
	left: 20px;
}
.point .card .num img {
	width: auto;
	height: 100%;
}

.point .card h4 {
	font-size: 20px;
	margin-bottom: 20px;
}

.point .rows {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 25px;
	margin-top: 25px;
}

.point .card.--01 p {
	max-width: 620px;
	margin-inline: auto;
}

.point .rows .card {
	padding-top: 40px;
}

.point .card p span {
	font-weight: 700;
	text-decoration: underline;
	text-decoration-color: var(--c-yellow);
	text-decoration-thickness: 3px;
	text-underline-offset: 3px;
}

.work-detail {
	position: relative;
	margin-top: 80px;
	z-index: 1;
}

.work-detail .col-break .d-flex {
	gap: 70px;
}

.work-detail .col-break .inner {
	width: 37%;
}

.work-detail .col-break .inner p {
	line-height: 1.8;
}

.ttl-gdn {
	margin-block: 30px 34px;
}

.ttl-gdn span {
	display: flex;
	align-items: center;
	width: fit-content;
	color: #fff;
	background: #ccc;
	font-size: clamp(1.375rem, calc(0.875rem + 2vw), 2.375rem);
	gap: 37px;
	border-radius: 50em;
	padding: 0.8em 2.3em 0.8em 1.5em;
	letter-spacing: 0.1em;
	word-break: keep-all;
}

.ttl-gdn span::before {
	content: '';
	display: block;
	background: var(--c-yellow);
	border-radius: 50%;
	width: 14px;
	height: 14px;
}

.bus .ttl-gdn span {
	background: #1c9da5;
	background: linear-gradient(
		90deg,
		rgba(28, 157, 165, 1) 0%,
		rgba(60, 194, 202, 1) 45%,
		rgba(28, 157, 165, 1) 100%
	);
}

.bus .schedule {
	position: relative;
	padding-block: 150px 105px;
	background: #3cc2ca;
	margin-top: -50px;
}

.schedule .col-break .d-flex {
	gap: 66px;
	margin-bottom: 40px;
}

.schedule .col-break .inner {
	width: 35%;
}

.schedule .col-break .inner p {
	line-height: 1.8;
}

.schedule .section-inner {
	color: var(--c-sub);
}

.schedule .section-item {
	margin-top: 0;
}

body.bus .table th,
body.bus .table td {
	border-color: #3cc2ca;
}

.schedule .table th {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	background: #cbebef;
}

.schedule .table td {
	text-align: center;
	font-size: 18px;
}

.schedule table.table.table-week {
	table-layout: fixed;
}

.schedule .holiday th,
.schedule .intermission th {
	background: #fcf1e3 !important;
}

.schedule .holiday td {
	color: #e22d2d;
}
.schedule .intermission td {
	color: #ed8c44;
}

.schedule .rows {
	margin-top: 45px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 50px;
}

.route {
	display: flex;
	align-items: center;
	gap: 10px;
}

.route dt {
	background: #248a91;
	color: #fff;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	padding: 3px 10px 7px;
	line-height: 1;
}

.route dt span {
	font-size: 1rem;
	padding-left: 5px;
}

.route dd {
	display: flex;
	font-weight: 700;
	align-items: center;
	gap: 15px;
	font-size: 22px;
}

.route dd .start,
.route dd .goal {
	text-align: right;
	width: 4em;
}

.table.timeline {
	margin-top: 25px;
}

.table.timeline th {
	text-align: right;
	padding-inline: 1.2em 2.2em;
	white-space: nowrap;
}
.table.timeline td {
	text-align: left;
}

body.job #place {
	background: #f5eace;
	padding-block: 100px;
}

#place .d-flex {
	gap: 18px;
}

#place .img-wrap {
	flex: 1;
	overflow: hidden;
	border-radius: 40px;
	margin-top: 10px;
}

#place .summary-wrap {
	width: 315px;
}

#place .summary-wrap h2 {
	display: flex;
	gap: 25px;
	font-size: 50px;
	margin-bottom: 60px;
}

#place .summary-wrap .place-list {
	display: flex;
	gap: 10px;
	margin-block: 2.2em;
}

#place .summary-wrap .place-list .ttl {
	display: block;
	font-size: 28px;
	font-weight: 700;
}
#place .summary-wrap .place-list .sub {
	display: block;
}

#place .summary-wrap .notice {
	font-weight: 400;
	line-height: 1.8;
	font-size: 14px;
	letter-spacing: normal;
	margin-top: 50px;
}

body.bus .section03 {
	position: relative;
	background: #0d98a0;
	padding-block: 60px 110px;
}

body.bus .section03 .col-break .d-flex {
	gap: 150px;
}
body.bus .section03 .col-break .inner {
	width: 42%;
	color: #fff;
}
body.bus .section03 .col-break .inner p {
	line-height: 1.8;
}

body.bus .section03 .col-break.--right .img-wrap {
	margin-right: -13%;
}

body.bus .section-inner.with-heading {
	padding: 0;
	overflow: hidden;
}

body.bus .section-inner.with-heading h3 {
	background: #cbebef;
	padding: 20px 20px 20px 20px;
	font-size: 22px;
	text-align: center;
}

body.bus .section-inner.with-heading .inner {
	padding: 30px 50px 45px 50px;
}

body.bus .section03 .section-inner.with-heading.--01 {
	margin-top: 70px;
}
body.bus .section03 .section-inner.with-heading.--01 .inner > p {
	flex: 1;
	font-size: 18px;
	font-weight: 700;
	line-height: 2;
}

.section-inner.with-heading .badge {
	color: var(--c-yellow);
	border-radius: 6px;
	display: inline-block;
	padding: 0px 20px;
	margin-left: 25px;
}
body.bus .section-inner.with-heading .badge {
	background: #0d98a0;
}

body.bus .section03 .section-inner.with-heading .table {
	margin-top: 15px;
}
body.bus .section03 .section-inner.with-heading .table th {
	background: #cbebef;
	font-size: 16px;
}
body.bus .section03 .section-inner.with-heading .table td {
	font-size: 18px;
}
body.bus .section03 .section-inner.with-heading .table th:nth-child(1) {
	width: 24%;
}
body.bus .section03 .section-inner.with-heading .table th:nth-child(3) {
	width: 18%;
}

body.bus .section04 {
	position: relative;
	background: #3cc2ca;
	padding-block: 92px 135px;
}

body.bus .section04 .col-break .d-flex {
	gap: 100px;
}
body.bus .section04 .col-break .inner {
	width: 43%;
	color: #fff;
}
body.bus .section04 .col-break .inner p {
	line-height: 1.8;
}

body.bus .section04 .col-break.--left .img-wrap {
	margin-left: -13%;
}
body.bus .section04 .section-inner {
	margin-top: 55px;
	color: #248a91;
	padding: 60px;
}

body.bus .section04 .section-inner h3 {
	font-size: 26px;
}
body.bus .section04 .section-inner p {
	font-size: 18px;
	margin-block: 10px 50px;
}

body.bus .to-interview {
	position: relative;
	padding-block: 60px 50px;
	background-color: #ddce90;
	background-image: url(../images/bus/story01.png), url(../images/bus/story02.png);
	background-repeat: no-repeat, no-repeat;
	background-position:
		top right 110%,
		top left 110%;
	background-size: contain;
}

body.bus .to-interview .inner {
	width: max(50%, 500px);
	margin-inline: auto;
}

body.bus .to-interview .inner .ttl img {
	margin-inline: auto;
}

body.bus .to-interview .inner p {
	line-height: 2;
	margin-block: 45px 30px;
}
body.bus .to-interview .inner .btn {
	margin-inline: auto;
}

/*===============================
MARK: 飾り
=================================*/
body.bus .page-cover__job .overlay img:nth-child(1) {
	top: 0;
	left: -36%;
	width: 70%;
}
body.bus .page-cover__job .overlay img:nth-child(2) {
	top: 0;
	right: -36%;
	width: 56%;
}

body.bus .schedule .overlay img:nth-child(1) {
	top: 0;
	left: -40%;
	width: 70%;
}
body.bus .schedule .overlay img:nth-child(2) {
	top: 16%;
	right: -32%;
	width: 49%;
}

body.bus .section03 .overlay img:nth-child(1) {
	top: 0;
	left: -30%;
	width: 53%;
}
body.bus .section03 .overlay img:nth-child(2) {
	bottom: 0%;
	right: -35%;
	width: 53%;
}

body.bus .section04 .overlay img:nth-child(1) {
	top: 0;
	left: -32%;
	width: 57%;
}
body.bus .section04 .overlay img:nth-child(2) {
	bottom: 0%;
	right: -32%;
	width: 49%;
}

/*===============================
MARK: subway
=================================*/

.subway .page-cover__job .page-ttl {
	color: #68c7fa;
	text-align: right;
	line-height: 1;
}

.subway .page-cover__job .page-ttl img {
	margin-left: auto;
	margin-bottom: 25px;
}

.subway .ttl-gdn span {
	background: #085ba0;
	background: linear-gradient(
		90deg,
		rgba(8, 91, 160, 1) 0%,
		rgba(54, 143, 217, 1) 45%,
		rgba(8, 91, 160, 1) 100%
	);
}

body.subway .section01 {
	padding-top: 55px;
	background: #095493;
	color: #fff;
}

body.subway .about {
	position: relative;
}

body.subway .about .col-break .d-flex {
	gap: 43px;
	align-items: center;
}

body.subway .about .col-break.--right .img-wrap {
	margin-right: -12%;
}

body.subway .about .col-break .inner {
	width: 38%;
}

body.subway .work-detail {
	padding-bottom: 105px;
	position: relative;
}

body.subway .work-detail .col-break.--left .img-wrap {
	margin-left: -20%;
}

body.subway .work-detail .col-break .inner {
	width: 37%;
}

body.subway .work-detail .col-break .inner .ttl-gdn {
	margin-top: 0;
}

body.subway .work-detail .col-break .inner h3 {
	font-size: clamp(2.5rem, calc(1.4375rem + 4.25vw), 4.625rem);
	margin-bottom: 25px;
}
body.subway .work-detail .col-break .inner h3 span {
	display: block;
	font-size: clamp(1.75rem, calc(1.1875rem + 2.25vw), 2.875rem);
	text-transform: uppercase;
	color: #61c1eb;
	font-weight: 800;
	line-height: 1.2;
}

body.subway .work-detail .section-inner.with-heading h3 {
	background: #368fd9;
	background: linear-gradient(90deg, rgba(54, 143, 217, 1) 10%, rgba(9, 84, 147, 1) 95%);
	padding: 6px 20px 7px 35px;
	font-size: 24px;
	text-align: left;
	color: var(--c-yellow);
}
body.subway .section-inner.with-heading {
	padding: 0;
	overflow: hidden;
}

body.subway .work-detail .section-inner.with-heading {
	color: var(--c-sub);
}

body.subway .work-detail .section-inner.with-heading .inner {
	padding: 25px 35px 35px 35px;
}

body.subway .work-detail .col-break.--right.--02 {
	margin-top: 115px;
}

body.subway .work-detail .col-break.--right.--02 .d-flex {
	gap: 40px;
	align-items: center;
}

body.subway .work-detail .col-break.--right.--02 .img-wrap {
	margin-right: -11%;
}

body.subway .schedule {
	position: relative;
	padding-block: 80px 105px;
	background: #368fd9;
}

body.subway .schedule .col-break .d-flex {
	gap: 48px;
	margin-bottom: 50px;
}

body.subway .schedule .col-break.--right .img-wrap {
	margin-right: -16%;
}

body.subway .schedule .col-break .inner {
	width: 45%;
	color: #fff;
}

.schedule .genre {
	text-align: center;
	font-size: clamp(1.5rem, calc(0.9375rem + 2.25vw), 2.625rem);
	line-height: 1;
	color: #368fd9;
	margin-bottom: 35px;
}

.subway .section-item h3 {
	background: #368fd9;
	color: #fff;
	border-radius: 8px;
	padding: 0.5em 1.2em;
}

.subway .schedule .rows {
	margin-top: 0;
}

.subway .schedule .table.timeline {
	margin-top: 5px;
}

body.subway .table th,
body.subway .table td {
	border-color: #68c7fa;
}

body.subway .schedule .table th {
	background: #d2e7f7;
}

body.subway .schedule .table th.table-ttl {
	text-align: left;
	color: #fff;
	background: #68c7fa;
}

#cycle-staff,
#cycle-operator {
	margin-top: 70px;
}

.section-inner .example {
	font-weight: 700;
}

#cycle-staff .rows {
	margin-bottom: 15px;
}

.table.cycle {
	table-layout: fixed;
}

.table.cycle tr:first-child th {
	background: #e8e8e8;
}

.table.cycle.--02 tr:first-child th {
	background: #d2e7f7;
}

#cycle-operator .rows {
	grid-template-columns: 33% 1fr;
}

.work-shift {
	font-size: 18px;
	font-weight: 700;
}

.work-shift .inner {
	background: #d2e7f7;
	display: grid;
	place-content: center;
	height: 100%;
	border-radius: 16px;
	padding: 20px;
}

.work-shift .notice {
	font-size: 15px;
	font-weight: 500;
}

.work-shift .shift-item {
	padding: 1.5em 10px;
}

.work-shift .shift-item p {
	margin-bottom: 0;
}

.work-shift .under-line {
	border-bottom: 1px solid #29a8ef;
}

#cycle-operator .shift-item {
	display: flex;
	line-height: 1.4;
	padding-block: 1em;
}

#cycle-operator .shift-item.--last {
	padding-top: 0;
}

#cycle-operator .shift-item .ttl {
	flex-shrink: 1;
	width: 6em;
}
#cycle-operator .shift-item .detail {
	padding-left: 5px;
}

body.subway #place .d-flex {
	gap: 40px;
}

body.subway #place .summary-wrap {
	width: 44%;
}

body.subway #place .summary-wrap h2 {
	margin-bottom: 35px;
}

body.subway #place .lead {
	line-height: 1.8;
}

body.subway #place .staff {
	margin-top: 30px;
}

body.subway #place .staff-ttl {
	background: var(--c-navy);
	border-radius: 50em;
	color: var(--c-yellow);
	font-size: 20px;
	font-weight: 700;
	padding: 8px 1.5em;
}

body.subway #place .area-ttl {
	background: #fff;
	border-radius: 50em;
	color: var(--c-navy);
	font-size: 18px;
	padding: 8px 1.5em;
	margin-top: 16px;
}

body.subway #place .summary-wrap .place-list {
	display: flex;
	gap: 25px;
	margin-block: 0.7em;
	padding-left: 17px;
}

body.subway #place .summary-wrap .place-list p {
	display: flex;
	gap: 5px;
	align-items: center;
	font-size: 18px;
	font-weight: 700;
}

body.subway .section04 {
	position: relative;
	background: #368fd9;
	padding-block: 92px 135px;
}

body.subway .section04 .col-break .d-flex {
	gap: 90px;
}
body.subway .section04 .col-break .inner {
	width: 39%;
	color: #fff;
}
body.subway .section04 .col-break .inner p {
	line-height: 1.8;
}

body.subway .section04 .col-break.--left .img-wrap {
	margin-left: -9%;
}
body.subway .section04 .section-inner {
	margin-top: 77px;
}

body.subway .section04 .section-inner h3 {
	font-size: 22px;
	text-align: center;
	background: #d2e7f7;
	padding: 20px 20px 20px 20px;
}

body.subway .section-inner.with-heading .inner {
	padding: 30px 50px 45px 50px;
}

body.subway .section-inner .table02 {
	font-size: 18px;
	font-weight: 700;
	border-collapse: collapse;
	width: 100%;
}

body.subway .section-inner .table02 td {
	vertical-align: top;
	border-bottom: 1px solid var(--c-black);
}

body.subway .section-inner .table02 td:first-child {
	border-right: 1px solid var(--c-black);
	padding: 15px 10px 15px 0;
}

body.subway .section-inner .table02 td:last-child {
	padding: 15px 5px 15px 15px;
}

body.subway .section-inner .table02 tr:first-child td {
	padding-top: 5px;
}

body.subway .section-inner .table02 tr:last-child td {
	border-bottom: none;
	padding-bottom: 5px;
}

.table02 a {
	border-radius: 6px;
	display: block;
	background: #459ee0;
	color: #fff;
	width: fit-content;
	font-size: 15px;
	padding: 5px 1.2em;
	margin-block: 10px 20px;
}

.table02 .notice {
	font-size: 14px;
	font-weight: 500;
}

.table02 .d-flex {
	gap: 30px;
}

.table02 .d-flex .ttl {
	flex-shrink: 0;
	width: 5em;
}

body.subway .section05 {
	background: #095493;
	position: relative;
	padding-block: 95px 115px;
}

body.subway .section05 .col-break .d-flex {
	gap: 48px;
	margin-bottom: 74px;
}

body.subway .section05 .col-break .inner {
	width: 45%;
	color: #fff;
}

body.subway .section05 .col-break.--right .img-wrap {
	margin-right: -12%;
}

body.subway .section05 .col-break .inner p {
	line-height: 1.8;
}

body.subway .section05 .question {
	display: flex;
	margin-top: 65px;
	gap: 40px;
}

body.subway .section05 .question .question-ttl {
	display: grid;
	place-content: center;
	color: var(--c-yellow);
	background: #459ee0;
	border-radius: 50%;
	width: 222px;
	height: 222px;
	font-size: 26px;
	font-weight: 700;
}

body.subway .section05 .answer {
	flex: 1;
	color: #fff;
	font-weight: 700;
}

body.subway .section05 .answer .item h4 {
	font-size: 22px;
	color: var(--c-yellow);
}

body.subway .section05 .answer .item p {
	font-size: 18px;
	margin-top: 5px;
	line-height: 2;
	letter-spacing: normal;
}

body.subway .section05 .answer .item:first-of-type {
	margin-block: 10px 30px;
}

body.subway .section06 {
	background: #368fd9;
	position: relative;
	padding-block: 80px 130px;
}

body.subway .section06 .col-break .d-flex {
	gap: 68px;
	margin-bottom: 70px;
}

body.subway .section06 .col-break .inner {
	width: 42%;
	color: #fff;
}

body.subway .section06 .col-break.col-break.--left .img-wrap {
	margin-left: -9%;
}

body.subway .section06 .col-break .inner p {
	line-height: 1.8;
}

body.subway .to-interview {
	position: relative;
	padding-block: 60px 50px;
	background-color: #ddce90;
	background-image: url(../images/subway/story01.png), url(../images/subway/story02.png);
	background-repeat: no-repeat, no-repeat;
	background-position:
		top right 110%,
		top left 110%;
	background-size: contain;
}

body.subway .to-interview .inner {
	width: max(50%, 500px);
	margin-inline: auto;
}

body.subway .to-interview .inner .ttl img {
	margin-inline: auto;
}

body.subway .to-interview .inner p {
	line-height: 2;
	margin-block: 45px 30px;
}
body.subway .to-interview .inner .btn {
	margin-inline: auto;
}

/*===============================
MARK: 飾り
=================================*/
body.subway .page-cover__job .overlay img:nth-child(1) {
	top: 0;
	left: -47%;
	width: 70%;
}
body.subway .page-cover__job .overlay img:nth-child(2) {
	top: 0;
	right: -17%;
	width: 56%;
}

body.subway .work-detail .overlay img:nth-child(1) {
	top: 12%;
	left: -46%;
	width: 70%;
}
body.subway .work-detail .overlay img:nth-child(2) {
	top: 52%;
	right: -13%;
	width: 52%;
}

body.subway .schedule .overlay img:nth-child(1) {
	top: 0;
	left: -37%;
	width: 68%;
}
body.subway .schedule .overlay img:nth-child(2) {
	bottom: 0;
	right: -42%;
	width: 68%;
}

body.subway .section04 .overlay img:nth-child(1) {
	top: 0;
	left: -23%;
	width: 53%;
}
body.subway .section04 .overlay img:nth-child(2) {
	bottom: 0%;
	right: -28%;
	width: 47%;
}

body.subway .section05 .overlay img:nth-child(1) {
	top: 0;
	left: -23%;
	width: 52%;
}
body.subway .section05 .overlay img:nth-child(2) {
	bottom: 7%;
	right: -35%;
	width: 51%;
}

body.subway .section06 .overlay img:nth-child(1) {
	top: 0;
	left: -23%;
	width: 53%;
}
body.subway .section06 .overlay img:nth-child(2) {
	bottom: 0%;
	right: -26%;
	width: 38%;
}
