@charset "UTF-8";

/* -------------------------------------
// TOP MV
------------------------------------- */
.mv {
	position: relative;
	overflow: hidden;
	z-index: +3;
	aspect-ratio: 16 / 9;
}

.mv__slide {
	width: 100%;
	height: 100%;
}

.mv__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	padding: 0;
	margin: 0;
}

@media only screen and (max-width: 1024px) {
	.mv {
		margin-top: 58px;
	}
}

@media only screen and (max-width: 768px) {
	.mv {
		aspect-ratio: 768 / 1096;
		margin-top: 44px;
	}
}

@media only screen and (max-width: 480px) {
	.mv {
		margin-top: 14px;
	}
}

/* -------------------------------------
// メッセージ
------------------------------------- */
.message {
    margin-top: 6rem;
    margin-bottom: var(--space-section-pc);
}

.message__title {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    background-image: var(--grada-bg);
    background-size: cover;
    background-position: center;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

.message__text {
    font-size: 1.5rem;
    line-height: 1.8;
}

.message__text span{
  color: var(--orange);
}

@media only screen and (max-width: 768px) {
    .message {
        margin-top: 2.5rem;
    }

    .message__title {
        font-size: clamp(1rem, 4.5vw, 2.25rem);
    }

    .message__text {
        font-size: clamp(0.875rem, 3.5vw, 1.75rem);
    }
}

/* -------------------------------------
// ニュース
------------------------------------- */
.info-section {
    margin-bottom: 6rem;
}

.news {
    margin-bottom: 8rem;
}

.news-card__date {
    font-size: 1rem;
    line-height: 3.75;
}

.news-card__title {
    font-size: 2.375rem;
    margin-bottom: 3rem;
}

.news-card__text {
    font-size: 1.375rem;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}

.news-card__image img {
    max-width: 1099px;
}

@media only screen and (max-width: 768px) {
    .news {
        margin-bottom: 7.5rem;
    }

    .news-card__date {
        font-size: clamp(0.8125rem, 2vw, 1.25rem);
    }

    .news-card__title {
        font-size: clamp(1.5rem, 3vw, 2.25rem);
    }

    .news-card__text {
        font-size: clamp(0.875rem, 3vw, 1.75rem);
    }
}

.news__list {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	padding-top: 2.5rem;
	margin-bottom: 3rem;
	box-shadow: var(--box-shadow);
}

.news__item--content {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.news__item--link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	width: stretch;
	position: relative;

	&::after {
		content: "";
		margin-left: auto;
		width: 1.5em;
		height: 1.5em;
		flex-shrink: 0;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 20 20' fill='none'%3E%3Cpolyline points='6,2 14,10 6,18' stroke='%231A3987' stroke-width='2' stroke-linejoin='round' stroke-linecap='butt'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-position: center;
	}
}

.news__date {
	font-size: 1.25rem;
	line-height: 1;
}

.news__headline {
	font-size: 1.75rem;
}

.news__item {
	color: var(--p_blue);
	display: flex;
	align-items: center;
	gap: 1.5em;
	padding: 0 1.5rem 2.5rem;

	&:not(:last-child) {
		border-bottom: 1px solid #00000014;
	}

	&::before {
		content: "";
		width: 7px;
		height: 64px;
		background-image: var(--gd-ico);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		flex-shrink: 0;
	}
}

@media only screen and (max-width: 1024px) {
	.news__content-nav-list {
		grid-template-columns: 1fr 1fr;
		gap: 20px 10px;
		margin-bottom: 2.5rem;
	}

	.news__list {
		gap: 4rem;
		padding-top: 2.5rem;
	}

	.news__item--content {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}

	.news__item--link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 1em;
		width: stretch;
		position: relative;

		&::after {
			width: 0.75em;
			height: 0.75em;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' viewBox='0 0 20 20' fill='none'%3E%3Cpolyline points='6,2 14,10 6,18' stroke='%231A3987' stroke-width='2' stroke-linejoin='round' stroke-linecap='butt'/%3E%3C/svg%3E");
		}
	}

	.news__date {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
	}

	.news__headline {
		font-size: clamp(0.875rem, 3.5vw, 1.75rem);
	}

	.news__item {
		gap: 1em;
		padding: 0 1rem 2.5rem;
	}
}

/* -------------------------------------
// カンパニー
------------------------------------- */
.company__block{
	margin-bottom: 5rem;
}

.data__block{
	margin-bottom: 1.5rem;
}

.company__image {
    margin: 4rem auto 1.5rem;
}

.company__image img {
    max-width: 1102px;
	width: 100%;
	height: auto;
	aspect-ratio: 2204 / 758;
	object-fit: cover;
}

.company__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 3.5rem;
}

.company__card {
    background: #f2f2f3;
    padding: 1.25rem;
}

.company__card:nth-child(-n+2) {
    grid-column: span 2;
}

.company__card:nth-child(n+3) {
    text-align: center;
}

.company__card-title {
    background: var(--blue);
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1.2;
    display: inline-block;
}

.company__card-value {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 6.5rem;
    line-height: 1;
    font-weight: 700;
    color: var(--blue);
    padding-top: 1.25rem;
}

.company__card:nth-child(1) .company__card-value {
    font-size: clamp(5rem, 0.3606rem + 3.75vw, 6rem);
    padding-top: 3rem;
}

.company__card:nth-child(2) .company__card-value {
    font-size: 7.5rem;
    padding-top: 2rem;
}

.company__card:nth-child(4) .company__card-value {
    font-size: clamp(4rem, -0.1394rem + 3.75vw, 5.5rem);
    padding-top: 2.5rem;
}

.company__card:nth-child(5) .company__card-value {
    font-size: clamp(4rem, -0.1394rem + 3.75vw, 5.5rem);
    padding-top: 2.5rem;
}


.company__card-value .company__card-unit {
    font-family: var(--font-base);
    font-size: 1.25rem;
    line-height: 1;
    color: var(--black);
    font-weight: 400;
}

.company__card-note{
	font-size: 1rem;
	text-align: right;
	margin-block: 1rem 4.5rem;
}

@media only screen and (max-width: 1330px) {
    .company__cards {
        gap: 30px 10px;
    }

}

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

    .company__card:nth-child(n+3) {
        grid-column: span 1;
    }
}

@media only screen and (max-width: 768px) {
    .company__image {
    margin: 2rem auto 4rem;
}

.company__image img {
	aspect-ratio: 1170 / 720;
}

    .company__cards {
        gap: min(3.906vw, 30px);
        margin-top: 3.5rem;
        padding-bottom: 2rem;
    }

    .company__card {
        padding: min(3.125vw, 1.5rem);
    }

    .company__card-title {
        font-size: clamp(0.875rem, 2.2vw, 1.25rem);
        text-align: left;
    }

    .company__card-value {
        font-size: 3.5rem;
        padding-top: 0.5rem;
    }

    .company__card:nth-child(1) .company__card-value {
        font-size: 2.5rem;
        padding-top: 2rem;
    }

    .company__card:nth-child(2) .company__card-value {
        font-size: 4rem;
        padding-top: 1rem;
    }

    .company__card:nth-child(4) .company__card-value,
    .company__card:nth-child(5) .company__card-value {
        font-size: 3rem;
        padding-top: 1rem;
    }

    .company__card-value .company__card-unit {
        font-size: clamp(0.9375rem, 1.8vw, 1.25rem)
    }
}

/* -------------------------------------
// ビジネス
------------------------------------- */
.corporate-overview {
    margin-bottom: 6rem;
}

.business {
    margin-bottom: 8.5rem;
}

.business__content {
    display: flex;
    gap: 30px;
}

.business__block {
    flex: 1;
    display: grid;
	grid-template-rows: auto 1fr auto;
      grid-template-areas:
      "order-1"
      "order-2"
      "order-3";
}

.business__block .c-image-button{
	max-width: 19.625rem;
	width: 100%;
	min-width: initial;
}

.business__image {
    margin-bottom: 1.25rem;
}

.business__image img {
    max-width: 536px;
}

.business .button__actions{
	padding-top: 2rem;
}

@media only screen and (max-width: 768px) {
    .business__content {
        flex-direction: column;
        gap: min(3.906vw, 30px);
    }

    .business__block {
      grid-template-areas:
      "order-2"
      "order-1"
      "order-3";
    }

	.business__block .c-image-button{
	width: stretch;
	max-width: initial;
}

     .business__block .order-1{
    margin-top:2rem;
    }

    .business__block--legacy {
        margin-top: 4rem;
    }
}

/* -------------------------------------
// ピープル
------------------------------------- */
.people__row {
    display: flex;
	align-items: center;
    gap: 0 20px;
}

.people__row>* {
    flex: none;
}

.people__row .people__left {
    width: 35%;
}

.people__row .people__right {
    width: 65%;
}

.people__text {
    font-size: 1.125rem;
    padding-right: 4.5rem;
}

.people__image img {
    max-width: 549px;
}

.story__image {
    margin: 6rem auto 1.5rem;
}

.story__imagee img {
    max-width: 1102px;
}

.people__bottom {
    display: flex;
    flex-direction: column;
}

@media only screen and (max-width: 1024px) {
    .people__row {
        flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 1.5rem;
	}

	.people__row .people__left {
		width: 100%;
	}

	.people__row .people__right {
		width: 100%;
	}
}

@media only screen and (max-width: 768px) {
    .people__text {
        font-size: clamp(0.875rem, 1.5vw, 1.125rem);
        padding-right: 0;
    }

    .people__image {
        margin-top: 2rem;
    }

    .story__image {
       margin: 2rem auto 0;
    }

    .people__bottom {
        margin-top: 4rem;
        flex-direction: column-reverse;
    }
}

.people__slider {
	width: 100%;
	margin-bottom: 6.5rem;
}

.people .swiper {
	overflow: hidden !important;;
}

.people .swiper-slide {
	width: 100%;
	min-height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white);
	border: 1px solid #9d9da8;
	opacity: 1;
}

.swiper-pagination {
	bottom: 240px !important;
}

.swiper-pagination-bullet-active {
	background: #0658a0;
}

.people__item {
	display: flex;
	align-items: center;
	gap: 40px;
}

.interview-top__meta {
	display: block;
	margin-top: 8rem;
}

.interview-top__meta-number {
	font-family: var(--font-heading);
	font-size: 8.875rem;
	line-height: 1;
	font-weight: 700;
}

.interview-top__meta-item {
	font-size: 1.125rem;
}

.interview-top__body {
	position: relative;
	margin-inline: auto;
}

.interview-top__image {
	display: block;
	width: calc(100% - 40px);
	margin-left: auto;
	aspect-ratio: 11 / 5;
	object-fit: cover;
}

.interview-top__subtitle {
	position: absolute;
	top: 0;
	left: 10px;
	margin: 0;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
}

.interview-top__title {
	position: absolute;
	left: 0;
	bottom: 15%;
	margin: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.interview-top__text {
	font-size: 2.5rem;
	line-height: 1;
	display: block;
	padding: 0.5rem 0.2rem;
	color: var(--white);
	white-space: nowrap;
	transform-origin: left center;
	background-image: var(--grada-bg);
	background-size: cover;
	background-position: left 25%;
}

@media only screen and (max-width: 1200px) {
	.interview-top__title {
		left: 48px;
	}
}

@media only screen and (max-width: 1024px) {
	.interview-top__meta {
	display: none;

	}

	.interview-top__image {
		width: calc(100% - 25px);
		aspect-ratio: 585 / 360;
	}

	.interview-top__subtitle {
		left: 0;
		font-size: 1rem;
	}

	.interview-top__title {
		position: static;
		gap: 5px;
		margin: -20px 0 0 20px;
	}
}

@media only screen and (max-width: 768px) {
	.people__slider {
		margin-bottom: 3.5rem;
	}

	.people__item {
		display: flex;
		align-items: center;
		gap: 40px;
	}

	.swiper-pagination {
		bottom: 180px !important;
	}

	.interview-top__image {
		width: calc(100% - 15px);
		aspect-ratio: 585 / 360;
	}

	.interview-top__subtitle {
		left: 0;
		font-size: 0.5rem;
	}

	.interview-top__title {
		position: static;
		gap: 5px;
		margin: -20px 0 0;
	}

	.interview-top__text {
		font-size: 1rem;
		margin-left: 1.5rem;
	}
}

/* -------------------------------------
// サポート
------------------------------------- */
.support {
    margin-bottom: var(--space-section-pc);
}

.support__item--career {
    margin-bottom: 3.5rem;
}

.support__item--career .support__image {
    margin: 4rem auto 1.5rem;
}

.support .support__image img {
    max-width: 1102px;
	width: 100%;
	height: auto;
	aspect-ratio: 2204 / 938;
	object-fit: cover;
}

.support__item--welfare .support__image {
    margin: 2rem auto 0;
}

.career-support {
	margin-bottom: 2.5rem;
}

.support .button__actions{
	margin-top: 2.5rem;
}

@media only screen and (max-width: 768px) {
	.support__item--career .support__image {
		margin: 2rem auto 4rem;
    }

	.support .support__image img {
		aspect-ratio: 585 / 360;
    }

    .support__item--welfare .support__image {
        margin: 2rem auto 4rem;
    }
}

/* -------------------------------------
// リクルート
------------------------------------- */
.recruit__content {
    display: flex;
    gap: 30px;

}

.recruit__block {
	flex: 1;
    display: grid;
	grid-template-rows: auto 1fr auto;
	grid-template-areas:
	"order-1"
	"order-2"
	"order-3";
}

.recruit__block .c-image-button{
	max-width: 19.625rem;
	width: 100%;
	min-width: initial;
}
.recruit__block .button__actions{
	padding-top: 2rem;
}

.recruit .section-subtitle{
    word-break: break-all;
}

.recruit__image {
    margin-bottom: 1.25rem;
}

.recruit__image img {
    max-width: 536px;
}

@media only screen and (max-width: 768px) {
    .recruit__content {
        flex-direction: column;
    }

.recruit__block {
    grid-template-areas:
	"order-2"
	"order-1"
	"order-3";
}
	.recruit__block .c-image-button{
	width: stretch;
	max-width: initial;	
}

    .recruit__block--work {
        margin-top: 2rem;
    }
    .recruit__image {
    margin-top: 2rem;
}
}

.internship__list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 40px 30px;
	margin-bottom: 3rem;

	.c-image-button {
		min-width: 19.625rem;
		width: fit-content;
		min-height: 4.25rem;
	}

	.c-image-button__text--large {
		font-size: 1rem;
	}
}

.internship__item {
	padding: 2rem 1.5rem;
	box-shadow: var(--box-shadow);
}

.internship-card__title {
	font-size: 1.5rem;
	color: var(--p_blue);
	display: flex;
	align-items: center;
	gap: 1em;
	margin-bottom: 2.5rem;

	&::before {
		content: "";
		width: 7px;
		height: 64px;
		background-image: var(--gd-ico);
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		flex-shrink: 0;
	}
}

.internship-card__program {
	margin-bottom: 2.5rem;
}

.internship-card__program-title {
	font-size: 1.5rem;
	line-height: 1;
	color: var(--p_blue);
	margin-bottom: 0.5rem;
}

.internship-card__program-summary {
	font-size: 1.25rem;
}

.internship-card__program-detail {
	font-size: 1.25rem;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.internship-card__image {
	margin-bottom: 2.5rem;

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

@media only screen and (max-width: 768px) {
	.internship__list {
		grid-template-columns: repeat(1, minmax(0, 1fr));
		gap: 20px;
	}

	.internship__item {
		padding: 2rem 1rem;
	}

	.internship-card__title {
		font-size: clamp(1rem, 1.95vw, 1.5rem);
		margin-bottom: 2rem;

		&::before {
			height: 32px;
		}
	}

	.internship-card__program {
		margin-bottom: 2rem;
	}

	.internship-card__program-title {
		font-size: clamp(1rem, 1.95vw, 1.5rem);
	}

	.internship-card__program-summary {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
	}

	.internship-card__program-detail {
		font-size: clamp(0.8rem, 2.21vw, 1.25rem);
	}

	.internship-card__image {
		margin-bottom: 2rem;
	}

	.internship .c-image-button {
		min-width: initial;
		width: stretch;
		min-height: clamp(5rem, 14.3229vw, 6.875rem);
	}

	.internship .c-image-button__text--large {
		font-size: clamp(1rem, 3.91vw, 1.75rem);
	}
}