/* -----------------------------------------------
= main
----------------------------------------------- */
.main {
	overflow: hidden;
}
/* -----------------------------------------------
= page-title
----------------------------------------------- */
.page-title .set {
	position: relative;
}
.page-title .category {
	position: absolute;
	left: 20px;
	bottom: 8px;
	z-index: 1;
	color: #fff;
	font-family: var(--en);
	font-size: calc(1.2rem / 1.6);
	line-height: 1.2;
	letter-spacing: .04em;
}
.page-title h1 {
	padding: 10px 20px 55px;
	font-family: var(--zen);
	font-size: calc(2rem / 1.6);
	letter-spacing: .02em;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-title {
	position: relative;
	max-width: 1500px;
	margin-inline: auto;
}
.page-title .category {
	left: 100px;
	bottom: 80px;
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .04em;
}
.page-title h1 {
	position: absolute;
	left: 90px;
	bottom: 35px;
	z-index: 1;
	padding: 0;
	color: #fff;
	font-size: calc(2.4rem / 1.6);
	letter-spacing: .08em;
}
}/* @media */
/* -----------------------------------------------
= intro
----------------------------------------------- */
.intro {
	margin: 0 13px 50px;
}
.intro h2 {
	margin-bottom: 10px;
	font-family: var(--zen);
	font-size: calc(1.8rem / 1.6);
	letter-spacing: .08em;
}
.intro p {
	font-size: calc(1.4rem / 1.6);
	line-height: calc(22 / 14);
}
@media print, screen and (min-width: 768px) {/* PC */
.intro {
	max-width: 1300px;
	margin: 120px auto 100px;
	padding-inline: 30px;
}
.intro h2 {
	margin-bottom: 20px;
	font-size: calc(2.8rem / 1.6);
}
.intro p {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(36 / 18);
}
}/* @media */
/* -----------------------------------------------
= tab-list
----------------------------------------------- */
.tab-list {
	max-width: 310px;
	margin: 0 auto 30px;
}
.tab-list li + li {
	margin-top: 22px;
}
.tab-list li button {
	width: 100%;
	padding: 3px 0;
	color: var(--red);
	background: #fff;
	border: 1px solid var(--red);
	font-size: calc(1.6rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: .12em;
}
.tab-list li button[aria-selected="true"] {
	color: #fff;
	background: linear-gradient(90deg,#f25f69,#ed1b29,#f25f69);
	border-color: transparent;
	pointer-events: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.tab-list {
	max-width: 1300px;
	margin: 0 auto 60px;
	padding-inline: 30px;
}
.tab-list ul {
	display: flex;
	gap: 0 60px;
}
.tab-list li {
	width: 100%;
}
.tab-list li + li {
	margin-top: 0;
}
.tab-list li button {
	padding: 6px 0;
	border-width: 2px;
	font-size: calc(2.4rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.tab-list li button {
	transition: .3s;
}
.tab-list li button:hover {
	color: #fff;
	background: linear-gradient(90deg,#f25f69,#ed1b29,#f25f69);
	border-color: transparent;
}
}/* @media */
/* -----------------------------------------------
= tab-panel
----------------------------------------------- */
.tab-panel {
	display: none;
	margin-inline: 13px;
}
.tab-panel.is-active {
	display: block;
}
.tab-panel .role {
	margin-bottom: 40px;
}
.tab-panel .role h2 {
	margin-bottom: 10px;
	font-family: var(--zen);
	font-size: calc(1.6rem / 1.6);
	letter-spacing: .08em;
}
.tab-panel .role h3 {
	margin-bottom: 10px;
	color: var(--red);
	font-size: calc(2rem / 1.6);
	font-weight: 700;
	line-height: calc(26 / 20);
}
.tab-panel .role p {
	font-size: calc(1.4rem / 1.6);
	line-height: calc(22 / 14);
}
.tab-panel .btn {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	padding-right: 10px;
	background: #fff;
	border: 0.5px solid var(--red);
	border-radius: 2.4px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	text-align: center;
}
.tab-panel .btn::after {
	content: "";
	position: absolute;
	top: calc(50% - 6px);
	right: 10px;
	width: 12px;
	height: 12px;
	background: url(../../img/index/icon-scale.svg) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.tab-panel .role {
	margin-bottom: 80px;
	padding-inline: 30px;
	text-align: center;
}
.tab-panel .role h2 {
	margin-bottom: 20px;
	font-size: calc(2.4rem / 1.6);
}
.tab-panel .role h3 {
	margin-bottom: 20px;
	font-size: calc(3.2rem / 1.6);
}
.tab-panel .role p {
	font-size: calc(1.8rem / 1.6);
	line-height: calc(32 / 18);
}
.tab-panel .btn {
	padding-right: 0;
	border: 1px solid var(--red);
	border-radius: 4px;
	font-size: min(calc(2rem / 1.6), calc(20 / 1500 * 100vw));
}
.tab-panel .btn::after {
	top: 50%;
	transform: translateY(-50%);
	right: min(16px, calc(20 / 1500 * 100vw));
	width: min(20px, calc(20 / 1500 * 100vw));
	height: min(20px, calc(20 / 1500 * 100vw));
}
}/* @media */
@media (hover:hover) {
.tab-panel .btn {
	transition: .3s;
}
.tab-panel .btn:hover {
	color: #fff;
	background: var(--red);
}
}/* @media */
/* -----------------------------------------------
= interview-link
----------------------------------------------- */
.interview-link {
	margin: 0 13px 60px;
}
.interview-link li {
	padding-bottom: 5px;
	border-bottom: 0.5px dotted #cbcbcb;
	font-size: calc(1.3rem / 1.6);
	line-height: calc(15 / 13);
	letter-spacing: .04em;
}
.interview-link li a {
	display: inline-block;
	padding-left: 30px;
	background: url(../../img/about/index-icon-arrow.svg) no-repeat left 5px bottom 2px / auto 12px;
}
@media print, screen and (min-width: 768px) {/* PC */
.interview-link {
	max-width: 306px;
	margin: 0 auto 100px;
	padding-inline: 30px;
}
.interview-link li {
	border-bottom-width: 1px;
	font-size: calc(1.8rem / 1.6);
}
.interview-link li a {
	display: inline-block;
	padding-left: 42px;
	background-position: left 6px bottom 4px;
	background-size: auto 16px;
}
}/* @media */
@media (hover:hover) {
.interview-link a {
	transition: color .3s;
}
.interview-link a:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= modal
----------------------------------------------- */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
	z-index: 1000;
	text-align: center;
}
.modal.is-open {
	opacity: 1;
	pointer-events: auto;
}
.modal-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
}
.modal-content {
	position: relative;
	width: 90%;
	max-width: 1000px;
	max-height: calc(100svh - 152px);
	margin: 45px auto 90px;
	padding: 0 17px 17px;
	background: #fff;
	overflow-y: auto; 
	-webkit-overflow-scrolling: touch;
}
.modal-close {
	display: inline-block;
	margin-top: 40px;
	padding-inline: 10px;
	border-bottom: 0.5px solid #000;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
}
.modal .type {
	display: inline-block;
	margin-bottom: 20px;
	padding: 1px 15px;
	color: #fff;
	background: linear-gradient(135deg,#ff7d51,#e93c2d);
	border-radius: 0 0 10px 10px;
	font-size: calc(1.1rem / 1.6);
	font-weight: 700;
	letter-spacing: .12em;
	vertical-align: top;
}
.modal h2 {
	margin-bottom: 10px;
	padding-bottom: 5px;
	border-bottom: 0.5px solid #f25f69;
	font-family: var(--yugo);
	font-size: calc(2rem / 1.6);
	font-weight: 700;
	text-align: left;
}
.modal p {
	font-size: calc(1.3rem / 1.6);
	line-height: calc(22 / 13);
	text-align: left;
	letter-spacing: .04em;
}
.modal p + h2 {
	margin-top: 15px;
}
.modal .major {
	margin-top: 30px;
	padding: 13px;
	background: #f6f5ec;
}
.modal .major h3 {
	margin-bottom: 10px;
	font-size: calc(1.4rem / 1.6);
	font-weight: 700;
	text-align: left;
}
.modal .major ul {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 1em;
}
.modal .major ul li {
	position: static;
	width: auto;
	height: auto;
	font-size: calc(1.4rem / 1.6);
}
.modal .major ul li span {
	color: var(--red);
}
.modal .recommend {
	max-width: 220px;
	margin: 34px auto 0;
	text-align: left;
}
.modal .recommend h3 {
	margin-bottom: 5px;
	color: #ff414d;
	font-family: var(--zen);
	font-size: calc(1.2rem / 1.6);
}
.modal .recommend h4 {
	margin-bottom: 15px;
	font-size: calc(1.3rem / 1.6);
	line-height: 2;
	letter-spacing: .04em;
}
.modal .recommend a {
	display: block;
	position: relative;
}
.modal .recommend a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 0;
	width: 40px;
	height: 40px;
	background: url(../../img/index/icon-recommend-link.svg) no-repeat 50% / cover;
}
.modal .recommend img {
	width: 100%;
}
.modal .recommend .btn-movie {
	position: relative;
}
.modal .recommend .btn-movie::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background: url(../../img/index/icon-movie-play.svg) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.modal-content {
	max-height: calc(100vh - 185px);
	margin: 85px auto 75px;
	padding: 0 65px 25px;
}
.modal-close {
	margin-top: 70px;
	padding-inline: 28px;
	border-bottom: 1px solid #000;
	font-size: calc(1.8rem / 1.6);
}
.modal .type {
	margin-bottom: 50px;
	padding: 5px 30px;
	border-radius: 0 0 10px 10px;
	font-size: calc(1.4rem / 1.6);
}
.modal h2 {
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 1px solid #f25f69;
	font-size: calc(2.8rem / 1.6);
}
.modal p {
	font-size: calc(1.6rem / 1.6);
	line-height: calc(28 / 16);
}
.modal p + h2 {
	margin-top: 20px;
}
.modal .recommend-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 55px;
}
.modal .recommend {
	display: flex;
	align-items: center;
	gap: 0 18px;
	max-width: none;
	margin: 0;
}
.modal .recommend .set {
	order: 2;
	flex: 1;
}
.modal .recommend h3 {
	margin-bottom: 10px;
	font-size: calc(1.4rem / 1.6);
}
.modal .recommend h4 {
	margin-bottom: 0;
	font-size: calc(1.6rem / 1.6);
	line-height: 1.5;
}
.modal .recommend a {
	order: 1;
	width: 180px;
}
.modal .recommend .btn-movie {
	width: 250px;
}
}/* @media */
@media (hover:hover) {
.modal .recommend a {
	transition: opacity .3s;
}
.modal .recommend a:hover {
	opacity: .8;
}
.modal-close {
	transition: opacity .3s;
}
.modal-close:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= office-job-map
----------------------------------------------- */
.office-job-map {
	position: relative;
	margin: 0 -13px 53px 0;
}
.office-job-map-inner > img {
	width: 850px;
	max-width: none;
}
.office-job-map li {
	position: absolute;
	top: 0;
	left: 0;
	height: 36px;
}
.office-job-map li:nth-child(-n+6) {
	width: 134px;
}
.office-job-map li:nth-child(n+7) {
	width: 110px;
}
.office-job-map li:nth-child(1) {
	top: 145px;
	left: 98px;
}
.office-job-map li:nth-child(2) {
	top: 195px;
	left: 98px;
}
.office-job-map li:nth-child(3) {
	top: 145px;
	left: 360px;
}
.office-job-map li:nth-child(4) {
	top: 195px;
	left: 360px;
}
.office-job-map li:nth-child(5) {
	top: 245px;
	left: 360px;
}
.office-job-map li:nth-child(6) {
	top: 145px;
	left: 625px;
}
.office-job-map li:nth-child(7) {
	top: 475px;
	left: 235px;
}
.office-job-map li:nth-child(8) {
	top: 475px;
	left: 370px;
}
.office-job-map li:nth-child(9) {
	top: 475px;
	left: 505px;
}
.office-job-map li:nth-child(10) {
	top: 525px;
	left: 235px;
}
.office-job-map li:nth-child(11) {
	top: 525px;
	left: 370px;
}
.office-job-map li:nth-child(12) {
	top: 525px;
	left: 505px;
}
@media print, screen and (min-width: 768px) {/* PC */
.office-job-map {
	max-width: 1418px;
	margin: 0 auto 73px;
}
.office-job-map-inner > img {
	width: min(1418px, calc(1418 / 1500 * 100vw));
	margin-inline: auto;
}
.office-job-map > img {
	width: min(1418px, calc(1418 / 1500 * 100vw));
}
.office-job-map li {
	height: min(60px, calc(60 / 1500 * 100vw));
}
.office-job-map li:nth-child(-n+6) {
	width: min(224px, calc(224 / 1500 * 100vw));
}
.office-job-map li:nth-child(n+7) {
	width: min(184px, calc(184 / 1500 * 100vw));
}
.office-job-map li:nth-child(1) {
	top: min(230px, calc(230 / 1500 * 100vw));
	left: min(160px, calc(160 / 1500 * 100vw));
}
.office-job-map li:nth-child(2) {
	top: min(314px, calc(314 / 1500 * 100vw));
	left: min(160px, calc(160 / 1500 * 100vw));
}
.office-job-map li:nth-child(3) {
	top: min(230px, calc(230 / 1500 * 100vw));
	left: min(595px, calc(595 / 1500 * 100vw));
}
.office-job-map li:nth-child(4) {
	top: min(314px, calc(314 / 1500 * 100vw));
	left: min(595px, calc(595 / 1500 * 100vw));
}
.office-job-map li:nth-child(5) {
	top: min(398px, calc(398 / 1500 * 100vw));
	left: min(595px, calc(595 / 1500 * 100vw));
}
.office-job-map li:nth-child(6) {
	top: min(230px, calc(230 / 1500 * 100vw));
	left: min(1036px, calc(1036 / 1500 * 100vw));
}
.office-job-map li:nth-child(7) {
	top: min(790px, calc(790 / 1500 * 100vw));
	left: min(396px, calc(396 / 1500 * 100vw));
}
.office-job-map li:nth-child(8) {
	top: min(790px, calc(790 / 1500 * 100vw));
	left: min(620px, calc(620 / 1500 * 100vw));
}
.office-job-map li:nth-child(9) {
	top: min(790px, calc(790 / 1500 * 100vw));
	left: min(844px, calc(844 / 1500 * 100vw));
}
.office-job-map li:nth-child(10) {
	top: min(872px, calc(872 / 1500 * 100vw));
	left: min(396px, calc(396 / 1500 * 100vw));
}
.office-job-map li:nth-child(11) {
	top: min(872px, calc(872 / 1500 * 100vw));
	left: min(620px, calc(620 / 1500 * 100vw));
}
.office-job-map li:nth-child(12) {
	top: min(872px, calc(872 / 1500 * 100vw));
	left: min(844px, calc(844 / 1500 * 100vw));
}
}/* @media */
/* -----------------------------------------------
= page-link
----------------------------------------------- */
.page-link {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 47px;
}
.page-link a {
	display: block;
	position: relative;
	min-height: 41px;
	padding: 18px 10px 28px;
	color: #fff;
	background: linear-gradient(135deg,#ff7d51,#e93c2d);
	border-radius: 9px;
	font-size: calc(1.8rem / 1.6);
	font-weight: 700;
	line-height: 1;
	letter-spacing: .12em;
	text-align: center;
}
.page-link a::after {
	content: "";
	position: absolute;
	left: calc(50% - 8px);
	bottom: 10px;
	width: 16px;
	height: 13px;
	background: linear-gradient(#ffbd00,#ffffe4);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.page-link a span {
	display: inline-block;
	padding: 5px 12px;
	background: linear-gradient(-45deg,#ff7d51,#e93c2d);
	border-radius: 50%;
	font-size: calc(.9rem / 1.6);
	font-weight: 500;
}
@media print, screen and (min-width: 768px) {/* PC */
.page-link {
	max-width: 1102px;
	margin: 0 auto 97px;
	grid-template-columns: repeat(4, 1fr);
	gap: 38px;
}
.page-link a {
	min-height: 55px;
	padding: 24px 10px 38px;
	border-radius: 12px;
	font-size: calc(2.4rem / 1.6);
}
.page-link a::after {
	left: calc(50% - 10px);
	bottom: 12px;
	width: 20px;
	height: 18px;
}
.page-link a span {
	padding: 6px 16px;
	font-size: calc(1.2rem / 1.6);
}
}/* @media */
@media (hover:hover) {
.page-link a {
	transition: opacity .3s;
}
.page-link a:hover {
	opacity: .8;
}
}/* @media */
/* -----------------------------------------------
= page-link
----------------------------------------------- */
.office-group {
	margin-bottom: 65px;
}
.office-group .item {
	scroll-margin-top: 45px;
	margin: -5px -18px 48px -5px;
	padding: 5px 18px 10px 5px;
}
.office-group .item-inner {
	position: relative;
	width: 660px;
	height: 252px;
	border-radius: 7.2px;
	box-shadow: 0 0 4px rgba(236,32,0,.4);
}
.office-group .item#group01 .item-inner {
	background: url(../../img/index/office-group01-bg.jpg) no-repeat 50% / cover;
}
.office-group .item#group02 .item-inner {
	background: url(../../img/index/office-group02-bg.jpg) no-repeat 50% / cover;
}
.office-group .item#group03 .item-inner {
	background: url(../../img/index/office-group03-bg.jpg) no-repeat 50% / cover;
}
.office-group .item#group04 .item-inner {
	background: url(../../img/index/office-group04-bg.jpg) no-repeat 50% / cover;
}
.office-group .item .title {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	width: 89px;
	height: 100%;
	color: #fff;
	background: linear-gradient(#e93c2d,#ff7d51);
	border-radius: 7.2px 0 0 7.2px;
	text-align: center;
}
.office-group .item .title h2 {
	padding-top: 15px;
	font-size: calc(1.2rem / 1.6);
	font-weight: 700;
	letter-spacing: .12em;
}
.office-group .item .title h2 span {
	display: block;
	font-size: calc(1.68rem / 1.6);
}
.office-group .item .title p {
	margin-bottom: 15px;
}
.office-group .item .title p span {
	display: inline-block;
	padding: 2px 16px;
	background: linear-gradient(-90deg,#ff7d51,#e93c2d);
	border: 0.6px solid #fff;
	border-radius: 50%;
	font-size: calc(1.08rem / 1.6);
	letter-spacing: .12em;
}
.office-group .item li {
	position: absolute;
	top: 0;
	left: 0;
	width: 134px;
	height: 36px;
}
.office-group .item#group04 li {
	width: 110px;
}
.office-group .item#group01 li:nth-child(1) {
	top: 108px;
	left: 308px;
}
.office-group .item#group01 li:nth-child(2) {
	top: 10px;
	left: 308px;
}
.office-group .item#group01 li:nth-child(3) {
	top: 108px;
	left: 135px;
}
.office-group .item#group01 li:nth-child(4) {
	top: 108px;
	left: 480px;
}
.office-group .item#group01 li:nth-child(5) {
	top: 182px;
	left: 308px;
}
.office-group .item#group02 li:nth-child(1) {
	top: 44px;
	left: 308px;
}
.office-group .item#group02 li:nth-child(2) {
	top: 118px;
	left: 308px;
}
.office-group .item#group02 li:nth-child(3) {
	top: 192px;
	left: 308px;
}
.office-group .item#group03 li:nth-child(1) {
	top: 100px;
	left: 458px;
}
.office-group .item#group04 li:nth-child(1) {
	top: 30px;
	left: 231px;
}
.office-group .item#group04 li:nth-child(2) {
	top: 30px;
	left: 407px;
}
.office-group .item#group04 li:nth-child(3) {
	top: 109px;
	left: 472px;
}
.office-group .item#group04 li:nth-child(4) {
	top: 179px;
	left: 406px;
}
.office-group .item#group04 li:nth-child(5) {
	top: 179px;
	left: 231px;
}
.office-group .item#group04 li:nth-child(6) {
	top: 109px;
	left: 166px;
}
.office-group .item li p {
	margin: 5px -20px;
	color: #fff;
	font-size: calc(.9rem / 1.6);
	font-weight: 700;
	text-align: center;
	letter-spacing: 0;
}
.office-group .item .btn {
	display: block;
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	padding-right: 20px;
	background: #fff;
	border: 0.5px solid var(--red);
	border-radius: 2.4px;
	font-size: calc(1.3rem / 1.6);
	font-weight: 700;
	text-align: center;
}
.office-group .item .btn::after {
	content: "";
	position: absolute;
	top: calc(50% - 6px);
	right: 10px;
	width: 12px;
	height: 12px;
	background: url(../../img/index/icon-scale.svg) no-repeat 50% / cover;
}
.office-group .item#group01 li .btn::before {
	content: "";
	position: absolute;
	inset: 4px;
	z-index: -1;
	border-radius: 2.4px;
}
.office-group .item#group01 li:nth-child(2) .btn::before {
	background: #b4d29e;
}
.office-group .item#group01 li:nth-child(3) .btn::before {
	background: #ffc6a1;
}
.office-group .item#group01 li:nth-child(4) .btn::before {
	background: #b0c8e6;
}
.office-group .item#group01 li:nth-child(5) .btn::before {
	background: #f5b7be;
}
.office-group .scroll-hint-icon {
	z-index: 2;
}
@media print, screen and (min-width: 768px) {/* PC */
.office-group {
	margin-bottom: 120px;
}
.office-group .item {
	max-width: 1100px;
	scroll-margin-top: 60px;
	margin: 0 auto 80px;
}
.office-group .item-inner {
	width: 1100px;
	height: 420px;
	border-radius: 12px;
	box-shadow: 0 0 6px rgba(236,32,0,.4);
}
.office-group .item .title {
	width: 148px;
	height: 100%;
	border-radius: 12px 0 0 12px;
}
.office-group .item .title h2 {
	padding-top: 22px;
	font-size: calc(2rem / 1.6);
}
.office-group .item .title h2 span {
	font-size: calc(2.8rem / 1.6);
}
.office-group .item .title p {
	margin-bottom: 22px;
}
.office-group .item .title p span {
	padding: 2px 26px;
	border: 1px solid #fff;
	font-size: calc(1.8rem / 1.6);
}
.office-group .item li {
	width: 224px;
	height: 60px;
}
.office-group .item#group04 li {
	width: 184px;
}
.office-group .item#group01 li:nth-child(1) {
	top: 180px;
	left: 513px;
}
.office-group .item#group01 li:nth-child(2) {
	top: 20px;
	left: 513px;
}
.office-group .item#group01 li:nth-child(3) {
	top: 180px;
	left: 224px;
}
.office-group .item#group01 li:nth-child(4) {
	top: 180px;
	left: 800px;
}
.office-group .item#group01 li:nth-child(5) {
	top: 304px;
	left: 513px;
}
.office-group .item#group02 li:nth-child(1) {
	top: 72px;
	left: 513px;
}
.office-group .item#group02 li:nth-child(2) {
	top: 196px;
	left: 513px;
}
.office-group .item#group02 li:nth-child(3) {
	top: 320px;
	left: 513px;
}
.office-group .item#group03 li:nth-child(1) {
	top: 166px;
	left: 763px;
}
.office-group .item#group04 li:nth-child(1) {
	top: 50px;
	left: 385px;
}
.office-group .item#group04 li:nth-child(2) {
	top: 50px;
	left: 678px;
}
.office-group .item#group04 li:nth-child(3) {
	top: 175px;
	left: 786px;
}
.office-group .item#group04 li:nth-child(4) {
	top: 303px;
	left: 678px;
}
.office-group .item#group04 li:nth-child(5) {
	top: 303px;
	left: 385px;
}
.office-group .item#group04 li:nth-child(6) {
	top: 175px;
	left: 281px;
}
.office-group .item li p {
	margin: 5px -30px;
	font-size: calc(1.5rem / 1.6);
}
.office-group .item .btn {
	padding-right: 0;
	border: 1px solid var(--red);
	border-radius: 4px;
	font-size: calc(2rem / 1.6);
}
.office-group .item .btn::after {
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	width: 20px;
	height: 20px;
}
.office-group .item#group01 li .btn::before {
	inset: 8px;
	border-radius: 4px;
}

}/* @media */
@media (hover:hover) {
.office-group .item li .btn {
	transition: .3s;
}
.office-group .item li .btn:hover {
	color: #fff;
	background: var(--red);
}
.office-group .item#group01 li:nth-child(n+2) .btn:hover {
	color: #000;
}
}/* @media */
/* -----------------------------------------------
= other
----------------------------------------------- */
.other {
	margin-inline: -13px;
	padding-top: 0;
}
.other button {
	width: 100%;
}
.other button span {
	display: block;
	font-size: calc(1.2rem / 1.6);
	line-height: calc(18 / 12);
	letter-spacing: .12em;
}
.other button span span {
	margin-block: 8px;
	font-size: calc(1.5rem / 1.6);
	font-weight: 700;
}
.other button span.img {
	position: relative;
}
.other button span.img::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 48px;
	height: 48px;
	background: url(../../img/index/icon-movie-play.svg) no-repeat 50% / cover;
}
@media print, screen and (min-width: 768px) {/* PC */
.other {
	margin-inline: auto;
}
.other li:last-child {
	grid-column: span 2;
}
.other li:last-child button {
	width: min(582px, calc(582 / 1500 * 100vw));
}
.other button span {
	font-size: calc(1.6rem / 1.6);
	line-height: calc(24 / 16);
}
.other button span span {
	margin-block: 10px;
	font-size: calc(2rem / 1.6);
}
.other button span.img::after {
	width: 90px;
	height: 90px;
}
}/* @media */
@media (hover:hover) {
.other button {
	transition: color .3s;
}
.other button:hover {
	color: var(--red);
}
}/* @media */
/* -----------------------------------------------
= tech-job-map
----------------------------------------------- */
.tech-job-map {
	position: relative;
	margin: 0 -13px 53px 0;
}
.tech-job-map-inner > img {
	width: 850px;
	max-width: none;
}
.tech-job-map li {
	position: absolute;
	top: 0;
	left: 0;
	width: 134px;
	height: 36px;
}
.tech-job-map li:nth-child(1) {
	top: 145px;
	left: 98px;
}
.tech-job-map li:nth-child(2) {
	top: 195px;
	left: 98px;
}
.tech-job-map li:nth-child(3) {
	top: 145px;
	left: 360px;
}
.tech-job-map li:nth-child(4) {
	top: 195px;
	left: 360px;
}
.tech-job-map li:nth-child(5) {
	top: 245px;
	left: 360px;
}
.tech-job-map li:nth-child(5) .btn {
	padding-right: 20px;
	font-size: calc(1.1rem / 1.6);
	letter-spacing: -.1em;
}
.tech-job-map li:nth-child(6) {
	top: 145px;
	left: 625px;
}
.tech-job-map li:nth-child(7) {
	top: 300px;
	left: 490px;
}
.tech-job-map li:nth-child(8) {
	top: 520px;
	left: 280px;
}
.tech-job-map li:nth-child(9) {
	top: 520px;
	left: 440px;
}
@media print, screen and (min-width: 768px) {/* PC */
.tech-job-map {
	max-width: 1418px;
	margin: 0 auto 73px;
}
.tech-job-map-inner > img {
	width: min(1418px, calc(1418 / 1500 * 100vw));
	margin-inline: auto;
}
.tech-job-map > img {
	width: min(1418px, calc(1418 / 1500 * 100vw));
}
.tech-job-map li {
	width: min(224px, calc(224 / 1500 * 100vw));
	height: min(60px, calc(60 / 1500 * 100vw));
}
.tech-job-map li:nth-child(1) {
	top: min(230px, calc(230 / 1500 * 100vw));
	left: min(160px, calc(160 / 1500 * 100vw));
}
.tech-job-map li:nth-child(2) {
	top: min(314px, calc(314 / 1500 * 100vw));
	left: min(160px, calc(160 / 1500 * 100vw));
}
.tech-job-map li:nth-child(3) {
	top: min(230px, calc(230 / 1500 * 100vw));
	left: min(595px, calc(595 / 1500 * 100vw));
}
.tech-job-map li:nth-child(4) {
	top: min(314px, calc(314 / 1500 * 100vw));
	left: min(595px, calc(595 / 1500 * 100vw));
}
.tech-job-map li:nth-child(5) {
	top: min(398px, calc(398 / 1500 * 100vw));
	left: min(595px, calc(595 / 1500 * 100vw));
}
.tech-job-map li:nth-child(5) .btn {
	padding-right: 30px;
	font-size: min(calc(1.7rem / 1.6), calc(17 / 1500 * 100vw));
}
.tech-job-map li:nth-child(6) {
	top: min(230px, calc(230 / 1500 * 100vw));
	left: min(1036px, calc(1036 / 1500 * 100vw));
}
.tech-job-map li:nth-child(7) {
	top: min(500px, calc(500 / 1500 * 100vw));
	left: min(815px, calc(815 / 1500 * 100vw));
}
.tech-job-map li:nth-child(8) {
	top: min(865px, calc(865 / 1500 * 100vw));
	left: min(460px, calc(460 / 1500 * 100vw));
}
.tech-job-map li:nth-child(9) {
	top: min(865px, calc(865 / 1500 * 100vw));
	left: min(733px, calc(733 / 1500 * 100vw));
}
}/* @media */
/* -----------------------------------------------
= tech-job-major
----------------------------------------------- */
.tech-job-major {
	margin-bottom: 60px;
}
.tech-job-major h2 {
	margin-bottom: 25px;
	padding: 5px;
	color: #fff;
	background: linear-gradient(90deg,#ff7d51,#e93c2d);
	border-radius: 6px;
	font-size: calc(2rem / 1.6);
	font-weight: 700;
	letter-spacing: .12em;
	text-align: center;
}
.tech-job-matrix {
	margin-right: -13px;
	padding-right: 13px;
}
.tech-job-matrix img {
	width: 802px;
	max-width: none;
}
@media print, screen and (min-width: 768px) {/* PC */
.tech-job-major {
	margin-bottom: 120px;
}
.tech-job-major h2 {
	max-width: 1100px;
	margin: 0 auto 40px;
	padding: 5px;
	border-radius: 12px;
	font-size: calc(3.2rem / 1.6);
}
.tech-job-matrix {
	max-width: 1336px;
	margin: 0 auto;
	padding-inline: 30px;
}
.tech-job-matrix img {
	width: 100%;
}
}/* @media */
/* -----------------------------------------------
= movie-modal
----------------------------------------------- */
.movie-modal {
	position: fixed;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.movie-modal.is-movie-open {
	display: flex;
}
.movie-modal-bg {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.7);
}
.movie-modal-content {
	display: flex;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 900px;
	max-height: 90vh;
	margin-inline: auto;
}
.movie-modal-close {
	color: #fff;
	position: absolute;
	top: -50px;
	right: 10px;
	font-size: 40px;
	font-weight: 700;
}
.video {
	width: 100%;
	aspect-ratio: 16 / 9;
	max-height: 90vh;
}
.video iframe {
	width: 100%;
	height: 100%;
}