/*
 Theme Name:   SC-コーポレートサイトテーマ2025
 Template:     blankslate
*/

/* 
========================================
  CSS編集ガイド
----------------------------------------
- クラス命名：基本はBEM方式（.block__element--modifier）
- セレクタの入れ子は原則避ける
- IDやタグ指定（例: #nav h2）は原則使わない
- マージン：原則、margin-right／margin-bottomのみ使用（レイアウト崩れ防止）
- 色・フォント：原則、個別に指定しない。変数を利用（例: var(--color-primary)）
========================================
*/

@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Caveat:wght@400..700&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	/* カラー */
	--main-color: #E95377;
	--sub-color: #478E8E;
	--bg-light-color: #fff;
	--gray: #efefef;
	--lightest-gray: #f2f2f2;
	--dark-gray: #9FA0A0;
	--text-color: #555;
	--input-bg-color: #efefef;

	/* フォント */
	--main-font: "Noto Sans JP", sans-serif;
	--title-font: "Caveat", cursive;
	--hand-font: "Caveat Brush", cursive;
	--font-awesome: "Font Awesome 5 Free";

	--header-height: 180px;
	--mb-header-height: 80px;

	--max-w: 1140px;
	--max-w-l: 1720px;
	--max-w-s: 960px;

	--basic-transition: .3s;

	--basic-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1);
	--text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	--header-shadow: 0px 7px 18px 0px #00000026;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-size: 16px;
	font-family: var(--main-font);
	font-weight: 500;
	letter-spacing: .22em;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--main-font);
	color: var(--text-color);
	line-height: 1.76;

}

a, button {
	transition: var(--basic-transition);
	text-decoration: none;
	cursor: pointer;
}

button:hover {
	opacity: .5;
}


img {
	height: auto;
}

.text-highlight {
	color: var(--main-color);
	font-size: inherit;
	letter-spacing: inherit;
	font-weight: inherit;
}


.bg-light {
	background-color: var(--bg-light-color);
	background-repeat: repeat-y;
	background-position: left top;
	background-size: 100%;
	background-attachment: fixed;
}

.bg-gray {
	background-color: var(--gray);
}

.bg-dark {
	background-color: var(--dark-gray);
}

.bg-photo {
	background-image: url(images/bg-photo.jpg);
	background-size: cover;
	background-color: #fff;
}

.breadcrumb {
	color: var(--main-color);
	margin-bottom: 120px;
}


.btn {
	border-radius: 100vh;
	padding: 1em 4em;
	background-color: var(--sub-color);
	color: #fff;
}

.section {
	padding: 120px 0;
}

.section-header {
	margin-bottom: 70px;
	text-align: center;
}

.section-title {
	text-align: center;
	line-height: 1.76;
	color: var(--text-color);
	font-size: 31px;
	letter-spacing: .22em;
	font-weight: 700;
	position: relative;
	margin-bottom: 58px;
	word-break: keep-all;
	overflow-wrap: break-word;
	word-break: auto-phrase;

}

.section-title::before {
	content: attr(data-en);
	position: absolute;
	top: -110px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(233, 83, 119, 0.18);
	font-size: 114px;
	font-weight: 400;
	font-family: var(--hand-font);
	letter-spacing: 0.22em;
}

.section-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.76;
	letter-spacing: .22em;
	margin: 0 auto;
	max-width: var(--max-w-s);
	text-align: center;
	margin-bottom: 1em;
}

.section-link-wrap {
	text-align: right;
}

.section-link {
	display: inline-block;
}

.section-link__inner {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 21px;
}

.section-link__arrow {
	border-bottom: 1px solid var(--main-color);
	border-right: 2px solid var(--main-color);
	content: "";
	display: block;
	height: 11px;
	margin-right: 15px;
	top: calc(50% - 5px);
	transform: skew(45deg);
	transition: var(--basic-transition);
	width: 109px;
}

.section-link__title {
	font-size: 18px;
	font-weight: 500;
	color: var(--main-color);
	letter-spacing: 0.22em;
	display: block;
	transition: var(--basic-transition);

}

.section-link__title-en {
	font-size: 11px;
	color: var(--main-color);
	display: block;
	letter-spacing: .22em;
	transition: var(--basic-transition);
	font-weight: 500;
}

.section-link:hover .section-link__title,
.section-link:hover .section-link__title-en,
.section-link:hover .section-link__arrow {
	color: var(--text-color);
	border-color: var(--text-color);
}

.sub-label {
	font-size: 16px;
	color: var(--main-color);
	font-weight: 700;
	letter-spacing: .22em;
	margin-bottom: 10px;
	display: block;
}

.sub-title {
	font-size: 24px;
	letter-spacing: .22em;
	font-weight: 700;
	line-height: 1.76;
	margin-bottom: 20px;
}


@media (max-width: 767px) {
	.section-title {
		font-size: 24px;
	}

	.section-title::before {
		font-size: 65px;
		top: -60px;
	}

	.section-link__title {
		font-size: 16px;
	}

	.sub-label {
		font-size: 12px;
	}

	.sub-title {
		font-size: 18px;
	}
}


button, input[type=submit] {
	cursor: pointer;
}


/* セクションごとのコンテナ */
.container {
	max-width: var(--max-w);
	margin: 0 auto;
	width: 100%;
}

.container--l {
	max-width: var(--max-w-l);
}

.container--s {
	max-width: var(--max-w-s);
}

@media (max-width: 1139px) {
	.container {
		width: 90%;
	}
}


/* header
====================================================*/

.site-header {
	height: var(--header-height);
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0.44);
	box-shadow: var(--header-shadow);
}

.site-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	height: 100%;
	max-width: 1720px;
	margin: 0 auto;
	padding: 0 30px 26px;
	position: relative;
	z-index: -1;
}


.site-branding__image {
	width: clamp(100px, 13vw, 218px);
	position: relative;
	z-index: -1;
}

.site-header__inner.fadeDown.is-animated {
	animation: fadeDown 1s forwards;
}

@keyframes fadeDown {
	0% {
		transform: translateY(-30px);
		opacity: 0;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.site-header__right {
	display: flex;
	gap: 78px;
}

.main-menu {
	display: flex;
	gap: clamp(25px, 3vw, 44px);
	margin-bottom: 32px;
	list-style: none;
}

.main-nav__item a {
	color: var(--main-color);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .18em;
	font-size: clamp(14px, 1.5vw, 18px);
}

@media (any-hover: hover) {
	.main-nav__item a:hover {
		color: var(--text-color);
	}
}


.main-nav__item--contact a::before {
	content: "\f0e0";
	font-family: var(--font-awesome);
	font-weight: 400;
	font-size: inherit;
	margin-right: .4em;
}

@media (max-width: 767px) {
	.site-header {
		position: fixed;
		background: #fff;
		height: var(--mb-header-height);
	}

	.site-header__inner {
		padding: 0;
		align-items: center;
		padding-left: 15px;
	}

	.site-header__inner.fadeDown.is-animated {
		animation: none;
	}
}

/* === pcで非表示 === */
.hamburger__text {
	visibility: hidden;
}


/* モバイル：ハンバーガーメニュー
====================================================*/
@media only screen and (max-width: 767px) {
	.main-nav {
		position: fixed;
		right: -100%;
		top: 0;
		width: min(350px, 80%);
		height: 100vh;
		padding: var(--mb-header-height) 40px 0;
		background-color: #fff;
		transition: all .6s;
		z-index: 200;
		overflow-y: auto;
	}

	.main-nav .main-menu {
		flex-direction: column;
		gap: 24px;
		margin-bottom: 0;
	}

	.hamburger {
		position: absolute;
		right: 15px;
		top: 17px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 300;
	}

	.hamburger__text {
		position: absolute;
		top: 32px;
		left: 50%;
		transform: translateX(-50%);
		font-size: 11px;
		font-weight: 600;
		color: var(--main-color);
		visibility: visible;
	}

	.hamburger__border {
		position: absolute;
		left: 11px;
		width: 18px;
		height: 2px;
		background-color: var(--main-color);
		transition: all .6s;
	}

	.hamburger__border_top {
		top: 14px;
	}

	.hamburger__border_center {
		top: 20px;
	}

	.hamburger__border_bottom {
		top: 26px;
	}

	.black_bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: -2;
		background-color: #333;
		opacity: 0;
		visibility: hidden;
		transition: all .6s;
		cursor: pointer;
	}

	/* === 表示された時用のCSS === */

	.main-nav-open .main-nav {
		right: 0;
	}

	.main-nav-open .black_bg {
		opacity: .5;
		visibility: visible;
	}

	.main-nav-open .hamburger__border_top {
		transform: rotate(45deg);
		top: 20px;
	}

	.main-nav-open .hamburger__border_center {
		width: 0;
		left: 50%;
	}

	.main-nav-open .hamburger__border_bottom {
		transform: rotate(-45deg);
		top: 20px;
	}
}

/* === スクロールした後のヘッダーB === */

.sub-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(-60px);
	transition: all 0.3s;
	background-color: #fff;
	z-index: 6;
	height: 60px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 3em;
	box-shadow: var(--header-shadow);
}

.sub-header.scrolled {
	transform: translateY(0);
	/* スクロール後に表示 */
}

.sub-header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	max-width: 1720px;
}

.sub-header__image {
	width: 80px;
}

.sub-header .main-menu {
	margin-bottom: 0;
	gap: 30px;
}

.sub-header .menu-item a {
	font-size: 14px;
}

@media (max-width: 767px) {
	.sub-header {
		display: none;
	}
}


/* mv
====================================================*/

.hero {
	height: 100vh;
	height: 100dvh;
	padding-top: var(--header-height);
	position: relative;
	clip-path: inset(0);
}

.hero__bg {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.hero__inner {
	position: absolute;
	top: auto;
	bottom: 141px;
	right: 8%;
	text-align: right;
	transform: translate(-50%, -50%);
}

.hero__copy {
	color: var(--main-color);
	font-family: var(--main-font);
	font-weight: 700;
	letter-spacing: .035em;
	font-size: clamp(20px, 3.2vw, 46px);
	margin-bottom: .3em;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.hero__copy-en {
	font-weight: 400;
	font-family: var(--title-font);
	line-height: 1;
	color: var(--main-color);
	font-size: clamp(20px, 3.9vw, 55px);
	letter-spacing: 0.2em;
}

.hero__title {
	font-size: 115px;
	font-weight: 500;
	letter-spacing: .035em;
	color: var(--main-color);
	font-family: var(--title-font);
	font-size: clamp(44px, 12.5vw, 175px);
	line-height: 1;
}

.hero__notice {
	position: absolute;
	bottom: 0;
	background: rgba(0, 0, 0, .5);
	width: 100%;
	padding: 16px 0;
}

.hero__notice-label {
	font-size: 18px;
	color: #fff;
	font-weight: 700;
	letter-spacing: .18em;
}

.hero__notice-label::after {
	content: "\f0a1";
	font-family: var(--font-awesome);
	font-size: 20px;
	font-weight: 600;
	margin-left: 8px;
}

.hero__notice-item {
	display: flex;
	gap: 1em;
	align-items: center;
	justify-content: center;
}

.hero__notice-date {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
}

.hero__notice-title {
	font-size: 16px;
	letter-spacing: .05em;
	color: #fff;
	font-weight: 500;
	text-decoration: underline;
}

.hero__notice-title:hover {
	opacity: .5;
}

.hero__notice-nothing {
	color: #fff;
	text-align: center;
	font-weight: 400;
}

/* === MV内文字＋ボタンのズームイン === */

.hero__inner.zoomin.is-animated {
	animation: zoomIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	100% {
		opacity: 1;
		transform: scale(1);
	}
}


@media (max-width: 767px) {

	.hero__copy-en {
		margin-bottom: 0;
		font-size: min(6vw, 25px);
	}

	.hero__title {
		font-size: min(19vw, 90px);
	}

	.hero__inner {
		bottom: 50%;
		right: 20px;
	}

	.hero__notice-item {
		flex-direction: column;
		gap: 0.5em;
	}

	.hero__notice-date {
		font-size: 14px;
	}


}


/* profile
====================================================*/

.profile {
	position: relative;
	padding: 160px 0 45px;
	z-index: 0;
}

.profile__container {
	position: relative;
	z-index: 1;
}

.profile__title {
	margin-bottom: 40px;
}

.profile__content {
	display: flex;
	justify-content: space-around;
	gap: 70px;
	margin-bottom: 80px;
	align-items: center;
}

.profile__bottom-circle {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(16vw, 320px);
}

@media (max-width: 767px) {
	.profile {
		padding: 120px 0;
	}

	.profile__bg {
		height: auto;
		width: 100%;
		overflow: hidden;
	}

	.profile__bg svg {
		width: 120%;
		position: relative;
		left: -10%;
	}

	.profile__content {
		flex-direction: column;
		margin-bottom: 60px;
	}
}

/* === 拠点一覧 === */

.area {
	flex: 1;
	max-width: 518px;
}


/* === 企業宣言 === */

.message {
	text-align: center;
	border: 1px solid var(--sub-color);
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	flex: 1;
	position: relative;
	max-width: 472px;
}

.message__inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.message__title {
	font-weight: 700;
	font-size: 31px;
	line-height: 1.76;
	letter-spacing: .22em;
	margin-bottom: 20px;
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
}

.message__title i {
	font-size: inherit;
}


.message__text {
	font-weight: 500;
	line-height: 2.4;
	letter-spacing: .22em;
	margin-bottom: 21px;
	word-break: auto-phrase;
	overflow-wrap: break-word;
	line-break: loose;

	font-size: 14px;

}

.message__list {
	list-style: none;
	padding-left: 0;
	margin: 0 auto;
	width: fit-content;
}

.message__list-item {
	line-height: 1.76;
	font-weight: 500;
	font-size: 21px;
	margin-bottom: 1em;
	letter-spacing: .22em;
	color: var(--sub-color);
	position: relative;
	padding-left: 1.5em;
	text-align: left;
}

.message__list-item::before {
	content: "\f058";
	font-family: var(--font-awesome);
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 4px;
	font-size: 18px;
}

@media (max-width: 767px) {
	.message {
		width: 100%;
		height: 100%;
	}

	.message__title {
		font-size: 20px;
	}

	.message__list-item {
		font-size: 16px;
	}

	.message__list-item::before {
		font-size: 14px;
	}
}

/* === profile - animation === */

/* 最初に出てくる */
.matrix.is-animated .bg-wrap .inn.large {
	transition-delay: 0s;
}

/* 少し遅れて出てくる */
.matrix.is-animated .bg-wrap .inn.small {
	transition-delay: 0.8s;
}

.matrix.is-animated .bg-wrap .inn.small--2 {
	transition-delay: 1s;
}

.matrix.is-animated .bg-wrap .inn.small--3 {
	transition-delay: 1.5s;
}

.matrix.is-animated .bg-wrap .inn.small--4 {
	transition-delay: 2s;
}

@media (max-width: 767px) {}

/* === セクションセパレーター === */

.wave-separator {
	line-height: 0;
	position: absolute;
	top: -1px;
	display: block;
	width: 100%;
	height: auto;
}

.wave-separator--bottom {
	top: auto;
	bottom: -2px;
}

.wave-separator svg {
	display: block;
	width: 100%;
	height: auto;
}

/* 受託実績
====================================================*/


.record {
	padding-bottom: 255px;
	background-image: url(images/top-record-shapes.svg);
	background-size: clamp(1440px, 90%, 2000px) auto;
	background-repeat: no-repeat;
	background-position: 40% 250px;
	position: relative;
	padding: 120px 0 220px;
}

.record__circle {
	position: absolute;
	top: 300px;
	transform: translateY(-100%);
	width: clamp(30px, 17vw, 310px);
}

.record__container {
	position: relative;
	z-index: 1;
}

.record__header {
	margin-bottom: 100px;
}

.record__cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	margin-bottom: 100px;
}

.record__card {
	border-radius: 10px;
	background-color: #fff;
	padding: 36px 27px 23px;
	border-top: 15px solid var(--sub-color);
	width: 47%;
	box-shadow: 0 4px 40px 0 rgba(0, 0, 0, .04);
	position: relative;
	min-height: 700px;
	color: var(--sub-color);
}

.record__card::before {
	content: url(images/record-card-shape.svg);
	position: absolute;
	display: block;
	top: -54px;
	left: 50%;
	transform: translateX(-50%);
}

.record__card--it::before {
	content: url(images/record-card-shape-it.svg);
}

.record__card-title {
	font-size: 21px;
	color: currentColor;
	font-weight: 700;
	text-align: center;
	letter-spacing: .22em;
	margin-bottom: 16px;
}

.record__card-title span {
	display: block;
	font-size: 12px;
	letter-spacing: inherit;
}

.record__card-text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.76;
	letter-spacing: .13em;
	max-width: 435px;
	text-align: center;
	margin: 0 auto 43px;
	padding: 0 30px;
	color: var(--text-color);
}



.tab {
	color: var(--sub-color);
}

.record__card--it .tab {
	color: var(--main-color);
}

.record__card--et .tab {
	color: #3F3D56;
}


.tab__wrap {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transition: opacity 0.4s ease;
}


.tab__wrap.active {
	opacity: 1;
	visibility: visible;
	position: relative;
	/* 表示中だけ通常の位置に戻す */
}

.tab__item {
	display: flex;
	gap: 13px;
	padding: 30px 0;
	border-top: 1px solid #ddd;
}

.tab__item:first-of-type {
	border-top: none;
}

.tab__item-category {
	font-size: 10px;
	border: 1px solid currentColor;
	text-align: center;
	color: currentColor;
	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1;
	width: 100px;
	display: grid;
	place-items: center;
	margin-bottom: 4px;
	padding: 5px 0;
}

.tab__item-date {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .09em;
	color: currentColor;
	text-align: center;
	display: block;
}

.tab__item-text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .13em;
	line-height: 1.6;
	color: var(--text-color);
}

.tab__item-info {
	display: flex;
	gap: 11px;
}

.tab__item-info dt {
	font-weight: 500;
	font-size: 11px;
	color: currentColor;
	display: inline-block;
	letter-spacing: .11em;
}

.tab__item-info dd {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .11em;
	color: var(--text-color);
}

.tab__menu {
	display: flex;
	list-style: none;
	gap: 1px;
	border-bottom: 1px solid #ddd;
}

.tab__menu-item {
	cursor: pointer;
	border-radius: 10px 10px 0 0;
	padding: 10px 13px 5px;
	background-color: var(--lightest-gray);
	font-size: 11px;
	letter-spacing: .1em;
	font-weight: 700;
	color: #000;
}

.tab__menu-item.active {
	background-color: #fff;
	border-top: 2px solid #f8f8f8;
	padding-top: calc(10px - 2px);
}

/* === 色違い === */
.record__card--it {
	border-top: 15px solid var(--main-color);
}

.record__card--it .record__card-title,
.record__card--it .tab__item-category,
.record__card--it .tab__item-date {
	color: var(--main-color);
}


@media (max-width: 767px) {
	.record {
		padding: 20px 0 200px;
		background-size: 120%;
		background-position: 40% 100px;
	}

	.record__circle {
		top: -20px;
	}


	.record__cards {
		flex-direction: column;
		gap: 60px;
		margin-bottom: 60px;
	}

	.record__card {
		width: 100%;
		min-height: auto;
	}

	.record__card-title {
		font-size: 20px;
	}

	.record__card-text {
		padding: 0;
	}

	.tab__menu-item {
		padding: 10px 8px 5px;
	}

	.tab__item-info {
		flex-wrap: wrap;
		gap: 0;
	}
}



/* 会社概要
====================================================*/


.details {
	padding: 0px;
	background-image: url(images/details-red-ring.svg);
	background-position: 90% 90%;
	background-size: auto;
	background-repeat: no-repeat;
	background-attachment: unset;
}


.details::before {
	content: "";
	display: block;
	height: var(--header-height);
	margin-top: -180px;
}

.details__header {
	margin-bottom: 90px;
}

.details__wrapper {
	position: relative;
	background-color: #eee;
	width: min(90%, 1440px);
	min-height: 600px;
	margin-right: auto;
	border-radius: 0 30px 0 0;
	padding: 114px 40px 0 0;
}

.details__ring {
	position: absolute;
	top: 134px;
	right: 220px;
	z-index: 0;
}

.details__bg {
	position: absolute;
	top: -58px;
	width: 55%;
	max-width: 736px;
}

.details__container {
	position: relative;
	top: -60px;
}

.details__item {
	position: relative;
	top: -340px;
}

.details__item-header {
	text-align: right;
	position: relative;
	z-index: 1;
}

.details__item-line {
	border-top: 1px solid var(--main-color);
	width: 216px;
	margin-left: auto;
	margin-bottom: 109px;
}



.details__cards {
	display: flex;
	justify-content: space-between;
	gap: 36px;
	position: relative;
	top: 100px;
	z-index: 1;
}

.details__card {
	background-color: #fff;
	border-radius: 30px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, .07);
	aspect-ratio: 1 /1;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	flex: 1;
	padding: 77px 35px 35px;
	position: relative;
}

.details__card::before {
	content: attr(data-num);
	font-family: var(--title-font);
	font-weight: 400;
	font-size: 120px;
	line-height: 1;
	letter-spacing: .22em;
	position: absolute;
	top: -50px;
	left: 30px;
	color: var(--sub-color);
}

.details__card span {
	font-size: 14px;
	letter-spacing: 0.22em;
	font-weight: 700;
	color: var(--sub-color);
}

.details__card-title {
	font-size: 18px;
	letter-spacing: .22em;
	margin-bottom: 40px;
}

.details__card-text {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.76;
	text-align: left;
	letter-spacing: .22em;
}

.details__section-link-wrap {
	margin-top: -160px;
	margin-bottom: 100px;
}

@media (max-width: 767px) {

	.details {
		background: linear-gradient(180deg, #fff 30%, #f2f2f2 60%, #fff 100%);
		padding-bottom: 0;
	}

	.details__container {
		top: -40px;
	}

	.details__item-line {
		margin-bottom: 60px;
	}


	.details__bg {
		display: none;
		width: 80%;
		height: 130px;
		object-fit: cover;
		top: -40px;
	}

	.details__cards {
		flex-direction: column;
	}


}

/* 認定一覧
====================================================*/

.license__wrapper {
	position: relative;
}

.license__bg-shapes {
	position: absolute;
	z-index: 1;
	top: -5%;
	width: 100%;
}

.license__bg-shapes--bottom {
	position: absolute;
	top: auto;
	bottom: 0;
	width: 60%;
}

.license {
	position: relative;
	padding: 0 0 400px;
	/* clip-path: inset(0); */
	background-image: url(images/bg-photo.jpg);
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;
}

.license__bg {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}



.license__container {
	max-width: var(--max-w-l);
	position: relative;
	top: 190px;
	z-index: 5;
}

.license__header {
	margin-bottom: 130px;
}

.license__item-left {
	max-width: 35%;
	padding-left: 5em;
}

.license__item {
	display: flex;
	gap: clamp(30px, 6vw, 110px);
	margin-bottom: 180px;
}

.license__item:last-of-type {
	margin-bottom: 70px;
}

.license__item-title {
	margin-bottom: 58px;
}

.license__item-right {
	display: flex;
	flex-wrap: wrap;
}

.license__mark {
	width: calc(100% / 2);
	padding: 2em;
	border-left: 1px solid #d9d9d9;
}

.license__mark:nth-of-type(2) {
	padding-top: 2em;
}

.license__mark-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.76;
	color: var(--sub-color);
	letter-spacing: .22em;
	margin-bottom: 20px;
	text-align: center;
	word-break: keep-all;
	overflow-wrap: break-word;
}

.license__mark-privacy {
	width: 96px;
	margin: 0 auto;
}

.license__mark-jobtr {
	width: 80px;
	margin: 0 auto;
}

.license__mark-dx {
	width: auto;
	margin: 0 auto;
	height: 80px;
	object-fit: contain;
}

.license__mark-introduction {
	color: var(--sub-color);
	border: 1px solid currentColor;
	border-radius: 13px;
	padding: 12px 1em;
	font-weight: 700;
	font-size: clamp(10px, 1vw, 13px);
	text-align: center;
	width: 100%;
	margin: 0 auto;
}

.license__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 30px;
}

.license__list-item {
	background-color: var(--sub-color);
	color: #fff;
	border-radius: 100vh;
	font-weight: 700;
	font-size: 14px;
	text-align: center;
	display: grid;
	place-items: center;
	width: 288px;
	height: 75px;
}

@media (max-width: 767px) {
	.license {
		background-size: cover;
		background-attachment: unset;
		padding-bottom: 180px;
	}

	.license__bg-shapes {
		top: -2%;
	}

	.license__bg-shapes--bottom {
		top: auto;
		bottom: 0;
	}

	.license__container {
		top: 50px;
	}

	.license__item {
		flex-direction: column;
		margin-bottom: 60px;
	}

	.license__mark {
		border-left: none;
	}

	.license__item-title {
		margin-bottom: 30px;
	}

	.license__item:last-of-type {
		margin-bottom: 0;
	}

	.license__item-left {
		max-width: none;
		padding-left: 0;
	}

	.license__item-right {
		height: auto;
	}

	.license__list {
		gap: 1em;
		justify-content: center;
		align-items: center;
		flex-direction: column;
	}

	.license__list-item {
		width: 80%;
		height: 5em;
	}

	.license__mark-introduction {
		white-space: normal;
	}
}

/* 就職支援
====================================================*/
.em-support__title::before {
	font-size: 70px;
	white-space: nowrap;
	top: -60px;
}

.em-support__inner {
	display: flex;
	margin-bottom: 65px;
}

.em-support__left {
	width: 50%;
	background-image: url(images/em-support__image.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.em-support__left-title {
	font-weight: 500;
	font-size: 26px;
	line-height: 1.76;
	letter-spacing: .22em;
	text-align: center;
	color: #fff;
	border: 1px solid currentColor;
	display: inline-block;
	border-radius: 100vh;
	padding: 0 60px;
	height: 80px;
	display: grid;
	place-items: center;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.em-support__right {
	width: 50%;
	padding: 0 90px;
}

.em-support__right-container {
	width: 100%;
}

.em-support__sub-text {
	margin-bottom: 37px;
}

.em-support__info-header {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.em-support__info-title {
	font-weight: 700;
	font-size: 21px;
	line-height: 1.76;
	letter-spacing: .22em;
	color: var(--sub-color);
	margin-right: 1.5em;
	white-space: nowrap;
}

.em-support__info-title::before {
	content: "\f007";
	font-family: var(--font-awesome);
	font-size: inherit;
	margin-right: .5em;
}

.em-support__info-note {
	font-weight: 400;
	font-size: 11px;
	line-height: inherit;
	letter-spacing: .09em;
	color: var(--sub-color);
}

.em-support__graphs {
	display: flex;
	align-items: flex-start;
	width: fit-content;
	margin: 0 auto;
	margin-bottom: 26px;
	align-items: stretch;
}

.em-support__graph {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 4em 1fr;
	align-items: flex-start;
	justify-content: center;
	justify-items: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}

.em-support__graph-image {
	margin-top: auto;
}


.graph, .graph--age {
	width: 100%;
	height: 90%;
}

.em-support__info-text {
	font-weight: 500;
	font-size: 13px;
}

.small-title {
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	color: var(--sub-color);
	height: 2em;
	flex: 1;
}

.em-support__container {
	max-width: var(--max-w);
	text-align: center;
}

.place-em__sub-title {
	margin-bottom: 37px;
}

.place-em__text {
	font-weight: 400;
	font-size: 14px;
	color: var(--sub-color);
}

@media (max-width: 960px) {

	.em-support {
		padding-bottom: 60px;
	}

	.em-support__title::before {
		white-space: normal;
		font-size: min(14vw, 70px);
	}


	.em-support__inner {
		flex-direction: column;
	}

	.em-support__left {
		width: 100%;
		padding: 150px 0;
	}

	.em-support__left-title {
		width: fit-content;
		font-size: 20px;
	}

	.em-support__right {
		width: 100%;
		padding: 60px 0 0;
	}

	.em-support__right-container {
		width: 90%;
	}

	.em-support__graphs {
		gap: 40px;
		flex-direction: column;
		width: 100%;
	}

	.em-support__graph {
		gap: 2em;
	}

	.em-support__graph-image--age {
		padding-left: 22px;
	}
}


/* お知らせ
====================================================*/

.notice {
	padding-bottom: 135px;
}

.notice__container {
	max-width: var(--max-w-s);
}

.notice__header {
	margin-bottom: 50px;
}

.notice__title {
	margin-bottom: 0;
}

.news-list {
	list-style: none;
	margin-bottom: 58px;
}

.news-list__item {
	border-bottom: 1px solid var(--gray);
}

.news-list__item:first-of-type {
	border-top: 1px solid var(--gray);
}

.news-list__link {
	display: flex;
	align-items: center;
	gap: 30px;
	text-decoration: none;
	color: inherit;
	padding: 40px 22px 40px 35px;
}

@media (any-hover: hover) {
	.news-list__link:hover {
		background: #f9f9f9;
	}
}

.news-list__date {
	font-size: 16px;
	color: var(--text-color);
	white-space: nowrap;
	letter-spacing: 0;
	font-weight: 400;
}

.news-list__category {
	font-size: 11px;
	font-weight: 400;
	color: var(--main-color);
	padding: 4px 14px;
	border-radius: 100vh;
	border: 1px solid currentColor;
	white-space: nowrap;
	width: 10em;
	text-align: center;
	letter-spacing: 0;
}

.news-list__left {
	display: flex;
	gap: 33px;
}

.news-list__right {
	display: flex;
	align-items: center;
	width: 100%;
}

.news-list__title {
	font-size: 16px;
	flex: 1;
	color: var(--text-color);
	font-weight: 500;
	letter-spacing: .05em;
}

.news-list__arrow {
	width: 13px;
	height: 28px;
	margin-left: 114px;
}

@media (max-width: 767px) {
	.notice {
		padding-bottom: 100px;
	}

	.news-list__item {
		padding: 0 10px;
	}

	.news-list__link {
		flex-direction: column;
		align-items: flex-start;
		padding: 30px 0;
		gap: 1em;
	}

	.news-list__left {
		gap: 1em;
		align-items: flex-end;
	}

	.news-list__date {
		font-size: 13px;
	}

	.news-list__arrow {
		margin-left: 2em;
	}
}


/* FAQ
====================================================*/
.faq__container {
	max-width: 900px;
}

.faq__item {
	margin-bottom: 30px;
	background-color: #fff;
	border-radius: 5px;
}

.faq__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	font-size: 18px;
	position: relative;
	color: var(--main-color);
	padding-left: 98px;
}

.faq__question::before {
	content: "Q";
	position: absolute;
	top: 20px;
	left: 30px;
	background-color: var(--main-color);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	color: #fff;
	display: grid;
	place-items: center;
	font-size: 24px;
	font-weight: 700;
}

.faq__icon {
	display: inline-block;
	margin-left: 10px;
	width: 10px;
	height: 10px;
	border-right: 2px solid #aaa;
	border-bottom: 2px solid #aaa;
	transform: rotate(45deg);
	transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
	transform: rotate(225deg);
}


.faq__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.4s ease;
	padding-left: 98px;
	padding-top: 0;
}

.faq__item.active .faq__answer {
	max-height: 500px;
	opacity: 1;
	transform: none;
	padding: 20px;
	padding-left: 98px;
	padding-top: 0;
}


/* footer
====================================================*/

.site-footer {
	padding: 20px 0 44px;
}

.site-footer__container {
	max-width: 1140px;
}

.site-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 0 38px 0 50px;
	margin-bottom: 30px;
}

.site-footer__image {
	width: clamp(100px, 15vw, 218px);
}

.site-footer__copyright {
	font-size: 12px;
	font-weight: 500;
	text-align: right;
	color: #fff;
	letter-spacing: .22em;
	padding-right: 38px;
}


.footer-menu {
	display: flex;
	gap: 44px;
	justify-content: flex-end;
	margin-top: 30px;
	list-style: none;
}

.footer-menu a {
	font-size: 14px;
	font-weight: 500;
	color: #fff;
	letter-spacing: .1em;
}

/* アイコンを消す */
.footer-menu a::before {
	content: none;
}

.certification {
	background-color: #fff;
	padding: 45px 0;
}

.certification__container {
	max-width: 960px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 60px;
}



.certification__reskilling {
	max-width: 261px;
	width: min(180px, 20%);
}

.certification__jobtr {
	max-width: 80px;
	width: min(180px, 20%);
}

.certification__privacy {
	max-width: 96px;
	width: min(180px, 20%);
}

.certification__dx {
	max-width: 170px;
	width: min(180px, 20%);
}

.certification__introduction {
	max-width: 170px;
	min-width: 9em;
	width: min(180px, 20%);
	font-size: 10px;
	font-weight: 600;
	text-align: center;
	color: var(--text-color);
}

.certification__introduction span {
	font-weight: 700;
	font-size: clamp(12px, 1vw, 14px);
	display: block;
	word-break: keep-all;
	overflow-wrap: break-word;
}


@media (max-width: 960px) {
	.site-footer {
		padding: 30px 10px;
	}

	.footer-menu {
		justify-content: center;
		flex-direction: column;
		gap: 1em;
		margin-top: 0;
	}

	.site-footer__inner {
		flex-direction: column;
		gap: 30px;
		padding: 0;
	}

	.site-footer__image {
		width: 130px;
	}

	.site-footer__copyright {
		padding: 0;
		font-weight: 300;
	}

	.certification__container {
		gap: 30px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.certification__container img {
		width: 100px;
	}
}

/* 投稿ページ
====================================================*/

.sg {
	position: relative;
}

.sg__inner {
	position: relative;
	top: -50px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #fff;
	z-index: 2;
	border-radius: 30px;
	padding: 35px 35px 135px;
	box-shadow: 0px 0px 40px 0px #0000001A;
	margin-bottom: calc(70px - 50px);
}

.sg__container {
	width: 74%;
	max-width: 860px;
	margin: 0 auto;
}

.sg__header {
	margin-bottom: 55px;
}

.sg__breadcrumb {
	margin-bottom: 60px;
}

.sg__title {
	margin-bottom: 15px;
}

.sg__title::before {
	top: -80px;
}

.aioseo-breadcrumb {
	font-size: 13px;
	font-weight: 500;
	line-height: 1.76;
	letter-spacing: .22em;
}

.aioseo-breadcrumb a {
	font-size: inherit;
	color: currentColor;
}

.aioseo-breadcrumb-separator {
	font-size: 13px;
}

.single-title {
	font-weight: 700;
	font-size: 31px;
	line-height: 1.76;
	letter-spacing: .22em;
	text-align: center;
	margin-bottom: 15px;
}

.sg__date-category {
	display: flex;
	justify-content: center;
	gap: 30px;
	align-items: flex-end;
}

.sg__date {
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .1em;
	color: var(--main-color);
}

.sg__category .category-link {
	color: var(--main-color);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .1em;
	text-align: center;
	border-radius: 100vh;
	border: 1px solid currentColor;
	padding: 0.2em 2em;
}


/* === 余白設定まとめ === */

.sg__content ul,
.sg__content ol,
.sg__content table,
.point-box {
	margin-bottom: 50px;
}

.sg__content h2,
.sg__content h3 {
	margin-bottom: 30px;
}

.sg__content p {
	margin: 0;
}

.sg__content p+p {
	margin-top: .8em;
}

.sg__content p+h2,
.sg__content p+h3,
.sg__content p+h4,
.sg__content p+h5,
.sg__content p+h6,
.sg__content p+ul,
.sg__content p+ol,
.sg__content p+table {
	margin-top: 50px;
}

.sg__content p:last-child,
.sg__content ul:last-child,
.sg__content ol:last-child,
.sg__content table:last-child {
	margin-bottom: 0;
}

/* === 投稿各要素 === */

.sg__content p {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.76;
	letter-spacing: .22em;
}

.sg__content h2 {
	background-color: var(--gray);
	font-weight: 700;
	line-height: 1.76;
	letter-spacing: .22em;
	font-size: 24px;
	color: var(--sub-color);
	border-radius: 7px;
	padding: .24em 1.4em;
}

.sg__content h3 {
	font-weight: 700;
	font-size: 18px;
	line-height: 1.76;
	letter-spacing: .22em;
	color: var(--sub-color);
}

.sg__content h3::before {
	content: '\f0c6';
	font-family: var(--font-awesome);
	font-size: 24px;
	margin-right: .5em;
}

.sg__content table {
	width: 100%;
	border-collapse: collapse;
}

.sg__content th {
	background-color: var(--gray);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .22em;
	text-align: right;
	color: var(--sub-color);
	padding: 1em 1.3em;
	border-bottom: 1px solid #fff;
}

.sg__content tr:last-child th {
	border-bottom: none;
}

.sg__content td {
	width: 76%;
	font-weight: 400;
	font-size: 16px;
	letter-spacing: .22em;
	padding: 0 1.4em;
	border-bottom: 1px solid var(--gray);
}

.sg__content tr:first-child td {
	border-top: 1px solid var(--gray);
}

.sg__content ul {
	list-style-type: none;
	padding-left: 1.15em;
}

.sg__content ul li {
	position: relative;
	padding-left: 2.2em;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.76;
	letter-spacing: .1em;
	color: var(--sub-color);
	margin-bottom: 1em;
}

.sg__content ul li::before {
	position: absolute;
	left: 0;
	font-family: "Font Awesome 5 Free";
	content: "\f00c";
	font-size: 17px;
	color: currentColor;
}

.point-box {
	border: 1px solid var(--sub-color);
	border-radius: 15px;
	padding: 1.4em 45px 1.4em 80px;
	color: var(--sub-color);
	margin-bottom: 50px;
	position: relative;
}

.point-box::before {
	content: '\f304';
	font-size: 27px;
	font-family: var(--font-awesome);
	color: var(--sub-color);
	font-weight: 900;
	position: absolute;
	top: 13px;
	left: 23px;
}

.point-box p {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.76;
	letter-spacing: .1em;
}

.sg__content strong,
.sg__content b {
	background: linear-gradient(transparent 90%, #9CDDDD 90%);
	font-weight: 700;
}

/* class属性の指定がないaのみ */
.sg__content a:not([class]) {
	font-weight: 350;
	font-size: 14px;
	line-height: 1.76;
	letter-spacing: .1em;
	text-decoration: underline;
	color: var(--main-color);
}

.sg__content .btn {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.76;
	letter-spacing: .1em;
	text-align: center;
	padding: .9em 1em;
	min-width: 245px;
	display: block;
	margin: 30px auto;
	width: 30%;
}

.sg__nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 440px;
}

.sg__prev,
.sg__next {
	flex: 1;
	max-width: 400px;
}

.sg__prev-arrow,
.sg__next-arrow {
	font-size: 17px;
	color: var(--sub-color);
}

.sg__nav a {
	display: flex;
	gap: 14px;
	align-items: center;
}

.sg__nav-title {
	font-weight: 350;
	font-size: 14px;
	line-height: 1.76;
	letter-spacing: .1em;
	color: var(--sub-color);
}

.sg__next {
	text-align: right;
}

.sg__next a {
	justify-content: flex-end;
}

@media (max-width: 767px) {

	.sg__wrapper {
		width: 95%;
	}

	.sg__inner {
		top: -25px;
		padding: 25px 25px 60px;
	}

	.sg__container {
		width: 100%;
	}

	.single-title {
		font-size: 24px;
	}

	.sg__title::before {
		top: -40px;
	}

	.sg__content h2 {
		font-size: 20px;
		padding: .24em 1em;
	}

	.point-box {
		padding-left: 60px;
	}

	.sg__nav {
		gap: 1em;
		margin-bottom: 60px;
	}

	.sg__nav-title {
		font-size: 12px;
	}
}


/* アーカイブ
====================================================*/

.pagination {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.pagination a, .pagination span {
	display: inline-block;
	padding: .4em .8em;
	border-radius: 2px;
	background-color: var(--gray);
	color: var(--text-color);
	font-size: 13px;
	transition: var(--basic-transition);
}

.pagination a:hover {
	background: var(--text-color);
	color: #fff;
}

.pagination .current {
	background-color: var(--main-color);
	color: #fff;
	font-weight: 500;
	pointer-events: none;
}



/* 固定ページ
====================================================*/


.page__breadcrumb {
	margin-bottom: 120px;
}

/* パンくずリストを収める用 */
.section--page {
	padding-top: 30px;
}

.page-header {
	text-align: center;
	padding-top: var(--header-height);
	height: 394px;
	position: relative;
	clip-path: inset(0);
}

.page-header img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: auto;
}

.page__section {
	position: relative;
	padding-top: 30px;
}

.top-image {
	position: absolute;
	z-index: -1;
	top: 30px;
	width: 100%;
	max-width: 1590px;
	left: 50%;
	transform: translateX(-50%);
}

@media (max-width: 767px) {
	.page-header {
		padding-top: var(--mb-header-height);
		height: 200px;
	}

	.page-header img {
		height: 300px;
	}
}

.page-record__container {
	max-width: var(--max-w);
	width: 90%;
	margin-bottom: 120px;
}


/* 会社概要
====================================================*/
.about {
	box-shadow: 0px 0px 40px 0px #0000001A;
	padding: 80px 60px;
	border-radius: 30px;
	background-color: #fff;
}

.post-48.page__section {
	padding-bottom: 30px;
}

.basic-table__th {
	background-color: var(--gray);
	width: 202px;
	padding: 1.5em 1.8em 1.5em .8em;
	text-align: right;
	font-size: 18px;
	color: var(--sub-color);
	font-weight: 700;
	letter-spacing: .22em;
	border-bottom: 1px solid #fff;
}

.basic-table__td {
	font-weight: 400;
	font-size: 16px;
	letter-spacing: .22em;
	color: var(--text-color);
	text-align: left;
	padding: 1.8em 0em 1.8em 1em;
	border-bottom: 1px solid var(--gray);
}

.basic-table__th:last-of-type, .basic-table__td:last-of-type {
	border-bottom: none;
}

.basic-table__license {
	display: flex;
	align-items: center;
	gap: 20px;
	height: 80px;
	font-weight: inherit;
}

.basic-table__license p {
	font-weight: inherit;
	font-size: inherit;
}

.basic-table__license-jobtr {
	width: 60px;
}

.basic-table__license-privacy {
	width: 80px;
}

.location-list__item {
	display: flex;
	gap: 30px;
	margin-bottom: 1em;
	align-items: center;
}

.location-list__item:last-of-type {
	margin-bottom: 0;
}

.location-list__school {
	font-weight: 700;
	font-size: 18px;
	text-align: center;
	color: var(--sub-color);
	border: 1px solid currentColor;
	border-radius: 100vh;
	padding: .2em 1.65em;
	white-space: nowrap;
	height: 100%;
}

.location-list__address {
	font-weight: 500;
	font-size: 16px;
	letter-spacing: .05em;
	color: var(--text-color);
}

@media (max-width: 767px) {

	.post-48.section {
		padding-bottom: 0;
	}

	.about {
		padding: 3em 1em;
	}

	.basic-table__th {
		width: 9em;
		font-size: 14px;
		padding: 1em;
	}

	.basic-table__td {
		font-size: 14px;
	}

	.basic-table__license {
		flex-direction: column;
		align-items: flex-start;
		height: auto;
		margin-bottom: 2em;
		font-size: inherit;
	}

	.basic-table__license:last-child {
		margin-bottom: 0;
	}

	.location-list__item {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.location-list__school {
		font-size: 14px;
	}

	.location-list__address {
		font-size: 14px;
	}
}

/* 官公庁案件・企業案件実績
====================================================*/

/* 全幅を使うため幅制限をリセット */
.post-156 .page__container {
	width: 100%;
	max-width: none;
}

.record--page {
	padding: 0 0 150px;
}


.record--page .record__cards {
	gap: 45px;
	row-gap: 80px;
	flex-wrap: wrap;
	justify-content: center;
}

.record--page .record__card {
	max-width: 538px;
	width: 100%;
}

.record__card--et {
	color: #3F3D56;
	border-top: 15px solid currentColor;
}

.record__card--et::before {
	content: url(images/record-card-shape-et.svg);
}

.other-record__title::before {
	white-space: nowrap;
	font-size: min(14vw, 111px);
}

.other-record__content {
	display: flex;
	flex-wrap: wrap;
}

.other-record__item {
	padding: 150px 20px;
	flex: 1;
}

.other-record__item--school {
	background-image: url(images/other-record-school-bg.jpg);
	color: var(--main-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.other-record__item--jobtr {
	background-image: url(images/other-record-jobtr-bg.jpg);
	color: #3F3D56;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.other-record__btn {
	max-width: 415px;
	display: block;
	margin: 0 auto;
	background: #FFFFFFCC;
	color: currentColor;
	border: 1px solid currentColor;
	display: flex;
	align-items: center;
	font-weight: 700;
	font-size: 18px;
	line-height: 1.44;
	text-align: center;
	padding: 20px 37px 20px 80px;
	justify-content: space-between;
}

.other-record__btn:hover {
	background-color: #fff;
}

.other-record__btn::after {
	border-bottom: 1px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: block;
	height: 11px;
	margin-right: 15px;
	top: calc(50% - 5px);
	transform: skew(45deg);
	transition: .3s;
	width: 62px;

}

@media (max-width: 767px) {
	.other-record__title::before {
		white-space: normal;
		line-height: 1;
	}

	.record--page .record__card {
		max-width: none;
	}

	.other-record__content {
		flex-direction: column;
	}

	.other-record__item {
		padding: 80px 20px;
	}

	.other-record__btn {
		font-size: 14px;
	}
}

/* 採用情報
====================================================*/

.page-id-50 .page__container {
	max-width: 100%;
	width: 100%;
	padding: 0;
}

.worklife {
	padding: 0;
}

.worklife__cards {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 60px;
}

.worklife__card {
	border-radius: 30px;
	width: calc((100% - 120px) / 3);
	min-width: 320px;
	padding: 40px 35px;
	box-shadow: 0px 0px 20px 0px #00000012;
	position: relative;
	background-color: #fff;
}

.worklife__card-number {
	font-family: var(--title-font);
	font-weight: 100;
	font-size: 34px;
	line-height: 1.76;
	letter-spacing: .22em;
	text-align: center;
	color: var(--sub-color);
	position: absolute;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.worklife__card-header {
	text-align: center;
}

.worklife__card-label {
	color: var(--sub-color);
	font-weight: 700;
	font-size: 10px;
	line-height: 1.76;
	letter-spacing: .22em;
}

.worklife__card-title {
	font-weight: 700;
	font-size: 14px;
	line-height: 1.76;
	letter-spacing: .22em;
	color: var(--sub-color);
	text-align: center;
	min-height: 3.76em;
}

.worklife__card-inner {
	position: relative;
	margin-bottom: 26px;
}

.worklife__card-image {
	position: absolute;
	top: 0;
	z-index: 0;
}

.worklife__card-info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: 60%;
	margin-left: auto;
	padding: 14px 0 14px 10px;
	background: #FFFFFFC2;
	position: relative;
}

.worklife__card-info--border {
	border-bottom: 1px solid #f8f8f8;
}

.worklife__card-icon {
	font-size: 20px;
	color: var(--sub-color);
	margin-right: 28px;
}

.worklife__card-right {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .22em;
}

.worklife__card-right span {
	font-size: 16px;
	display: block;
}

.worklife__card-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 1.76;
	letter-spacing: .14em;
	text-align: justify;
}


/* === 下線つきh3見出しスタイル === */

.line-header {
	border-bottom: 1px solid var(--sub-color);
	padding-bottom: 20px;
	margin-bottom: 60px;
}

.line-header__title {
	font-weight: 700;
	font-size: 21px;
	line-height: 1.76;
	letter-spacing: 1em;
	text-align: center;
	color: var(--sub-color);
}

/* === 募集要項 === */

.recruitment {
	position: relative;
	padding-top: 200px;
}

.recruitment__top-image {
	position: absolute;
	top: -5%;
	z-index: -1;
	width: 100%;
}

/* 中央揃えが中央からずれて見えないようにする */
.line-header__title span:last-child {
	letter-spacing: 0;
	font-size: inherit;
	font-weight: inherit;
}

.line-header__label {
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .22em;
	text-align: center;
	color: var(--sub-color);
}

.recruitment__list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 34px;
	row-gap: 40px;
	margin-bottom: 110px;
}

.recruitment__item {
	width: calc((100% - 34px) / 2);
	border: 1px solid #D9D9D9;
	border-radius: 15px;
	color: var(--sub-color);
	padding: 37px 30px;
}

.recruitment__item-title {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .08em;
	color: currentColor;
	text-align: center;
	margin-bottom: 40px;
}

.job-table {
	width: 100%;
	border-collapse: collapse;
}

.job-table__header, .job-table__data {
	vertical-align: top;
}

.job-table__data {
	font-weight: 500;
	font-size: 12px;
	line-height: 1.76;
	letter-spacing: .1em;
	color: var(--text-color);
	padding: 10px 0 10px 24px;
}

.job-table__data--type {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.type-tag {
	font-size: 11px;
	font-weight: 500;
	background-color: var(--sub-color);
	color: #fff;
	border-radius: 100vh;
	padding: .1em .8em;
	display: inline-grid;
	place-items: center;
	letter-spacing: .13em;
}

.type-tag--gray {
	background-color: var(--dark-gray);
}

.job-table__header {
	white-space: nowrap;
	color: currentColor;
	font-weight: 700;
	font-size: clamp(12px, 1vw, 14px);
	letter-spacing: .13em;
	text-align: left;
	padding-top: 10px;
}

.job-table i {
	margin-right: 20px;
	color: currentColor;
	font-size: 14px;
}

.job-table__data--color {
	line-height: 1.5 !important;
	color: currentColor !important;
}

.job-table__small-text {
	font-size: 10px;
	letter-spacing: inherit;
}

.job-table__list-item {
	font-weight: 500;
	font-size: 12px;
	letter-spacing: .1em;
	list-style: none;
	line-height: 1.5;
}

.job-table__list-item a {
	font-size: 10px;
	font-weight: 500;
	color: var(--sub-color);
	text-decoration: underline;
	letter-spacing: inherit;
}

.job-table__list-item a:hover {
	opacity: .5;
}

/* 横幅が小さいと崩れやすいため、max-width大きめで対応 */
@media (max-width: 860px) {


	.worklife__title::before, .recruitment__title::before {
		white-space: normal;
		font-size: min(13vw, 70px);
	}

	.recruitment {
		padding-bottom: 0;
	}

	.recruitment__item {
		width: 100%;
		padding: 30px 20px;
		overflow-x: scroll;
	}

	.job-table i {
		margin-right: 1em;
	}

	.job-table__data {
		padding: 10px 1em;
	}

	.job-table__data--type {
		gap: 1em;
		flex-wrap: wrap;
	}
}



/* === 応募フォーム === */

.entry {
	padding-bottom: 310px;
	position: relative;
}

.entry__container {
	position: relative;
	top: 100px;
}

@media (max-width: 767px) {
	.entry {
		padding-bottom: 100px;
	}

	.entry__container {
		top: -60px;
	}
}


/* === 問合せステップ === */

.step {
	width: fit-content;
	margin: 0 auto 28px;
	position: relative;
}

.step__line {
	border-top: 1px solid var(--dark-gray);
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
}

.step__list {
	list-style: none;
	display: flex;
	justify-content: center;
	margin-bottom: 28px;
	gap: 50px;
	position: relative;
}

.step__list-item {
	width: 106px;
	height: 106px;
	background-color: #E6E6E6;
	font-family: Noto Sans JP;
	font-weight: 700;
	font-size: 16px;
	letter-spacing: 1em;
	text-align: center;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step__list-item.current {
	background: var(--sub-color);
	color: #fff;
}

.step__list-item span:last-of-type {
	letter-spacing: 0;
}



/* === フォーム === */

/* TODO: 採用情報のほうはドロップシャドウいらない？ */
.form {
	margin: 0 auto;
	border-radius: 30px;
	background-color: #fff;
	color: var(--sub-color);
	padding: 50px 90px 70px 50px;
	position: relative;
	box-shadow: 0px 0px 40px 0px #0000001A;
}

.form__text {
	font-weight: 700;
	font-size: 16px;
	letter-spacing: .22em;
	text-align: center;
	color: currentColor;
	margin-bottom: 30px;
}


.mwform-checkbox-field.horizontal-item {
	width: fit-content;
}

.form__confirm-btns {
	display: flex;
	justify-content: center;
	gap: 30px;
}

.form__btn {
	background-color: var(--sub-color);
	border-radius: 100vh;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .22em;
	text-align: center;
	color: #fff;
	padding: 32px 2em;
	display: block;
	border: none;
	width: 405px;
	margin: 0 auto;
	line-height: 1;
}

.form__btn--back, .form__btn--confirm {
	margin: 0;
}

.form__btn--back {
	border: 2px solid currentColor;
	background: #fff;
	color: var(--sub-color);
}

.mwform-checkbox-field-text {
	color: var(--main-color);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: .22em;
}

/* チェックボックス本体は非表示に */
.mwform-checkbox-field input[type="checkbox"] {
	display: none;
}

/* ラベル内のspanをチェックボックスの見た目にする */
.mwform-checkbox-field span.mwform-checkbox-field-text {
	position: relative;
	padding-left: calc(22px + 19px);
	cursor: pointer;
	user-select: none;
	height: 22px;
	display: inline-flex;
	align-items: center;
}

/* 疑似チェックボックスの枠 */
.mwform-checkbox-field span.mwform-checkbox-field-text::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	border-radius: 3px;
	background-color: #FFB6B6;
}

/* === プライバシーポリシー === */
.privacy-box {
	height: 235px;
	width: auto;
	border: 1px solid var(--dark-gray);
	border-radius: 30px;
	padding: 24px 8px 24px 40px;
	margin-top: 20px;
	color: var(--text-color);
}

.privacy-box__inner {
	overflow-y: scroll;
	height: 100%;
	padding-right: 30px;
}

/* Webkit系ブラウザのカスタムスクロールバー */
@supports selector(::-webkit-scrollbar) {
	.privacy-box__inner::-webkit-scrollbar {
		width: 8px;
		height: 8px;
	}

	.privacy-box__inner::-webkit-scrollbar-thumb {
		background: var(--text-color);
	}
}

/* Firefox専用のスクロールバー */
@supports not selector(::-webkit-scrollbar) {
	.privacy-box__inner {
		scrollbar-width: thin;
		scrollbar-color: var(--text-color) #fff;
	}
}


.privacy-box h3 {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.5;
	letter-spacing: .22em;
	text-align: center;
	margin-bottom: 10px;
}

.privacy-box p {
	font-weight: 400;
	font-size: 12px;
	line-height: 1.5;
	letter-spacing: .22em;
	margin-bottom: 1em;
}

.privacy-box .address {
	font-weight: 700;
	font-size: 10px;
	line-height: 1.5;
	letter-spacing: .22em;
	text-align: right;
	margin-bottom: 12px;
}

/* チェック時のマーク */
.mwform-checkbox-field input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 4px;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}


.form__inner {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	width: 100%;
	margin-bottom: 40px;
}

.form__label {
	display: inline-flex;
	align-items: flex-start;
	gap: 20px;
	width: calc((100% - 40px) / 2);
}

#mw_wp_form_mw-wp-form-9 .form__label--type {
	margin-bottom: 40px;
}

.form__label--long {
	width: 100%;
	margin-bottom: 40px;
	align-items: flex-start;
}

/* チェックボックス部の特別対応 */
.form__check-wrapper {
	display: flex;
	gap: 20px;
	margin-bottom: 65px;
}

.form__label input, .form__label select {
	width: 100%;
	flex: 1;
	background: var(--input-bg-color);
	border: none;
	border-radius: 15px;
	padding: 1em 1em;
	color: var(--text-color);
	font-weight: 400;
}

.form__label select {
	cursor: pointer;
}

.form__label textarea {
	flex: 1;
	width: 100%;
	background: var(--input-bg-color);
	border: none;
	border-radius: 15px;
	padding: 1em 1em;
	color: var(--text-color);
	font-weight: 400;
}

.form__label input::placeholder, .form__label textarea::placeholder, .form__label select {
	color: var(--dark-gray);
	font-weight: 350;
	font-size: 16px;
	letter-spacing: .22em;
}

.form__label select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.select-wrapper {
	position: relative;
	width: 100%;
	max-height: 80px;
	flex: 1;
}

.select-wrapper::after {
	content: "";
	position: absolute;
	top: 26px;
	right: 1.25em;
	width: 0;
	height: 0;
	pointer-events: none;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 8px solid var(--dark-gray);
}

.form__label-title, .form__check-wrapper .form__label {
	display: inline-block;
	width: 110px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: .22em;
	text-align: right;
	margin-top: .5em;
}

.form__small-title {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.form__label-note {
	font-size: 10px;
	font-weight: 700;
	display: block;
}

.form__group {
	flex: 1;
}



.mwform-checkbox-field.horizontal-item {
	flex: 1;
	text-align: left;
	white-space: nowrap;
	padding-left: 14px;
}

.form__small-text {
	font-size: 10px;
	font-weight: 700;
}

/* これで囲まないとレイアウト崩れる */
.form__label-content {
	width: 100%;
	flex: 1;
	max-height: 90px;
}

.form__label--long .form__label-content {
	max-height: none;
}

.mw_wp_form .error {
	font-size: 12px !important;

	width: 100%;
	text-align: left;
	letter-spacing: 0.1em;
	display: inline;
}

.select-wrapper .error {
	left: 0;
}



.mw_wp_form .error:nth-of-type(3) {
	bottom: -3.5em !important;
	color: blue !important;
}

.form__group .error {
	display: block;
	padding-top: 1em;
}

/* === 確認画面 === */

.mw_wp_form_confirm .form__label {
	color: var(--text-color);
	align-items: center;
}

.mw_wp_form_confirm .form__label-title {
	color: var(--sub-color);
	margin-top: 0;
}

.mw_wp_form_confirm .select-wrapper::after,
.mw_wp_form_confirm .privacy-box {
	display: none;
}

.mw_wp_form_confirm .form__label--long {
	align-items: center;
}

.mw_wp_form_confirm .form__group {
	color: var(--text-color);
}

.mw_wp_form_confirm .form__check-wrapper {
	align-items: baseline;
}


@media (max-width: 960px) {
	.form {
		padding: 50px 20px;
	}

	.step__list {
		gap: 20px;
	}

	.step__list-item {
		width: 80px;
		height: 80px;
	}

	.form__inner {
		gap: 1.5em;
	}

	.form__label, .form__check-wrapper {
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		gap: .5em;
	}

	.form__label--long {
		margin-bottom: 1.5em;
	}

	.form__label-title, .form__check-wrapper .form__label {
		width: auto;
		font-size: 16px;
		text-align: left;
		margin-bottom: 0;
	}

	.lower {
		padding-top: 0;
	}

	.form__label input, .form__label select {
		border-radius: 10px;
	}

	.form__btn {
		width: 100%;
	}

	.mwform-checkbox-field.horizontal-item {
		padding-left: 0;
	}

	.privacy-box {
		border-radius: 20px;
	}

	.mw_wp_form .error {
		left: 0;
	}

	/* === 確認画面 === */
	.mw_wp_form_confirm .form__label--long {
		align-items: flex-start;
	}

	.mw_wp_form_confirm .form__label {
		align-items: flex-start;
	}

	.form__confirm-btns {
		flex-direction: column;
	}
}

/* 404
====================================================*/

.error__container {
	text-align: center;
}

.error__btn:hover {
	opacity: .5;
}