/*
 Theme Name:   SCCADLPテーマ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=Noto+Sans+JP:wght@100..900&family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Saira+Extra+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
	/* カラー */
	--main-color: #2CB595;
	--sub-color: #EDFF47;
	--accent-color: #0FC;
	--hd-color: #0A7D73;
	--white: #fff;
	--bg-gray: #d9d9d9;
	--label-gray: #9FA0A0;
	--light-gray: #efefef;
	--dark-gray: #9FA0A0;
	--text-color: #333;
	--text-sub-color: #555;
	--dark-green: #136077;
	--input-bg-color: #efefef;

	/* フォント */
	--main-font: "Noto Sans JP", sans-serif;
	--serif-font: "Noto Serif JP", serif;
	--english-font: "Saira Condensed", "Noto Sans JP", sans-serif;
	--english-font-extra: "Saira Extra Condensed", "Noto Sans JP", sans-serif;
	--font-awesome: "Font Awesome 6 Free";

	/* レイアウト */
	--header-height: 123px;
	--mb-header-height: 80px;
	--max-w: 1445px;
	--max-width-s: 1070px;
	--max-width-ss: 860px;

	/* 効果 */
	--basic-transition: .3s;

	/* 文字 */
	--fz-page-title-en: clamp(20px, 3.2vw, 26px);
	--fz-page-title: clamp(26px, 4.2vw, 36px);
	--fz-section-label: clamp(18px, 3vw, 24px);
	--fz-section-title: clamp(28px, 5vw, 51px);
	--fz-block-title: clamp(18px, 3vw, 21px);
	--fz-q: clamp(32px, 5.5vw, 58px);
	--fz-button: clamp(18px, 3vw, 21px);
}

/* common
==================================================== */

* {
	box-sizing: border-box;
	font-family: var(--main-font);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	color: var(--text-color);
	font-family: var(--main-font);
}

a, button {
	cursor: pointer;
	text-decoration: none;
	transition: var(--basic-transition);
}

@media (hover: hover) and (pointer: fine) {
	a:hover {
		opacity: .7;
	}
}

b {
	font-size: inherit;
	font-weight: 700;
	letter-spacing: inherit;
}


button, input[type="submit"] {
	cursor: pointer;
}


button:hover {
	opacity: .7;
}

select, input[type="checkbox"], input[type="radio"] {
	appearance: none;
}


img {
	height: auto;
}


.br-pc {
	display: block;
}

.br-mb {
	display: none;
}

@media (width <=768px) {
	.br-pc {
		display: none;
	}

	.br-mb {
		display: block;
	}

}

.underline {
	text-decoration: underline;
}

.btn {
	background-color: var(--sub-color);
	border-radius: 100vh;
	color: var(--white);
	display: inline-block;
	padding: 1em 4em;
	text-align: center;
}

/* 法人研修のご相談はこちら のボタン */
.border-btn {
	border: 1px solid currentcolor;
	border-radius: 100vh;
	color: var(--hd-color);
	display: inline-block;
	font-size: var(--fz-button);
	font-weight: 500;
	letter-spacing: .1em;
	max-width: 100%;
	padding: 1em 2em;
	width: 412px;
}

.btn:hover, .border-btn:hover {
	opacity: unset;
	transform: scale(1.05);
}

/* noteやSNSのボタン */
.dark-btn {
	align-items: center;
	background: var(--text-color);
	border-radius: 100vh;
	color: var(--white);
	display: inline-flex;
	font-weight: 500;
	justify-content: center;
	letter-spacing: .05em;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.dark-btn::after {
	color: var(--white);
	content: "\f08e";
	font-family: var(--font-awesome);
	font-size: 14px;
	font-weight: 900;
	position: absolute;
	right: 28px;
}

.btn span {
	display: block;
	font-weight: 400;
	letter-spacing: .1em;
}

/* 横スクロール可能な要素 */
.scroll-x {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-color: var(--main-color) #d9d9d9;
	scrollbar-width: thin;
	width: 100%;
}

.scroll-x::-webkit-scrollbar {
	height: 12px;
}

.scroll-x::-webkit-scrollbar-track {
	background: #d9d9d9;
}

.scroll-x::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
	border-radius: 7px
}

.scroll-x::-webkit-scrollbar-thumb:hover {
	background-color: rgb(255 255 255 / 30%);
}


.section {
	padding: 120px 0;
	position: relative;
}

.section::before {
	background: var(--main-color);
	content: '';
	height: 93px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 1px;
}

.section-header {
	margin-bottom: 85px;
	text-align: center;
}

.section-label {
	color: var(--label-gray);
	display: block;
	font-family: var(--english-font);
	font-size: var(--fz-section-label);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.2;
}

.section-title {
	color: var(--main-color);
	font-size: var(--fz-section-title);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: .7em;
}

.section-text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 685px;
}


/* contact confirmなどに使用 */
.section-lead {
	line-height: 2;
	margin-bottom: 80px;
}

.sub-section-header {
	margin-bottom: 40px;
}

.sub-section-title {
	color: var(--main-color);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
}

.sub-section-label {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
}


.container {
	margin: 0 auto;
	max-width: var(--max-w);
	width: 90%;
}

@media (width <=1024px) {
	.section-header {
		margin-bottom: 60px;
	}

	.section-text {
		text-align: justify;
	}

	.section-lead {
		text-align: left;
	}

	.btn span {
		font-size: clamp(18px, 5vw, 20px);
	}

}


/* Cookie Notice
========================== */

#cookie-notice {
	border-radius: 10px;
	bottom: 10px;
	box-shadow: 5px 5px 20px 0 rgb(0 0 0 / 15%);
	left: 50% !important;
	min-width: unset !important;
	transform: translateX(-50%);
	width: 60% !important;
	z-index: 9999999 !important;
}

.cookie-notice-container {
	margin: 0 auto;
	padding: 15px 40px !important;
	width: 100%;
}

.cn-text-container {
	font-size: 13px;
	margin: 0 0 1em !important;
	text-align: left;
}

.cn-privacy-policy-link {
	color: var(--white);
	font-size: inherit;
	text-decoration: underline;
}

.cn-buttons-container {
	display: flex;
	justify-content: center;
}

.cn-button.cookie-btn {
	background: var(--main-color);
	border: 0;
	border-radius: 3px;
	color: var(--white);
	font-size: 14px;
	padding: .2em 1em;
}

@media (width <=768px) {
	#cookie-notice {
		width: 92% !important;
	}

	.cookie-notice-container #cn-notice-buttons {
		display: flex;
		flex-direction: column;
		gap: 5px;
		margin: 0 auto;
		max-width: 300px;
	}

	.cn-button.cookie-btn {
		height: 35px;
	}
}


/* header
==================================================== */

.site-header {
	background: #0000004D;
	height: var(--header-height);
	left: 0;
	padding: 16px 0 13px;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
}

.site-header__container {
	height: 100%;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding: 0 30px;

}

.site-branding__image {
	position: relative;
	width: clamp(100px, 12vw, 145px);
	z-index: -1;
}

.site-branding__label {
	color: var(--white);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.site-header__right {
	align-items: center;
	display: flex;
	gap: 32px;
}

.main-menu {
	color: var(--white);
	display: flex;
	gap: clamp(25px, 3vw, 35px);
	list-style: none;
}

.main-menu li:first-of-type {
	display: none;
}

.main-menu__item {
	color: inherit;
	font-size: clamp(14px, 1vw, 16px);
	font-weight: 400;
	letter-spacing: .05em;
}

.main-menu__item span {
	display: block;
	font-family: var(--main-font);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: .05em;
	text-align: center;
}

/* ヘッダーの連絡先情報
========================== */

.info {
	align-items: center;
	color: var(--white);
	display: flex;
	gap: 12px;
}

.info__title {
	border: 1px solid currentcolor;
	display: grid;
	font-size: 12px;
	font-weight: 400;
	height: 57px;
	letter-spacing: .05em;
	place-items: center;
	text-align: center;
	width: 57px;
}

.info__time {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0;
}

.info__tel {
	color: inherit;
	font-size: clamp(20px, 2vw, 27px);
	font-weight: 700;
	letter-spacing: 0.05em;
}

@media (any-hover: hover) {
	.main-nav__item a:hover {
		color: var(--text-color);
	}
}

/* === pcで非表示 === */


.hamburger, .hamburger__text {
	visibility: hidden;
}


/* モバイル：ハンバーガーメニュー
==================================================== */
@media only screen and (width <=1280px) {
	.main-nav {
		background-color: var(--white);
		height: 100vh;
		overflow-y: auto;
		padding: var(--mb-header-height) 40px 0;
		position: fixed;
		right: -100%;
		top: 0;
		transition: all .6s;
		width: min(350px, 80%);
		z-index: 200;
	}

	.main-nav .main-menu {
		align-items: center;
		flex-direction: column;
		gap: 24px;
		margin-bottom: 0;
		text-align: center;
	}

	.main-nav .main-menu li {
		pointer-events: auto;
		width: 100%;
	}

	.main-menu__item {
		color: var(--text-color);
		display: block;
		pointer-events: auto;
		width: 100%;
	}

	.hamburger, .hamburger__text {
		visibility: visible;
	}


	.hamburger {
		background: none;
		border: none;
		color: var(--hd-color);
		cursor: pointer;
		height: 40px;
		pointer-events: auto;
		position: absolute;
		right: 15px;
		top: 17px;
		width: 40px;
		z-index: 300;
	}

	.hamburger__text {
		color: currentcolor;
		font-family: var(--english-font);
		font-size: 12px;
		font-weight: 600;
		left: 50%;
		position: absolute;
		top: 32px;
		transform: translateX(-50%);
	}

	.hamburger__border {
		background-color: currentcolor;
		height: 2px;
		left: 11px;
		position: absolute;
		transition: all .6s;
		width: 18px;
	}

	.hamburger__border_top {
		top: 14px;
	}

	.hamburger__border_center {
		top: 20px;
	}

	.hamburger__border_bottom {
		top: 26px;
	}

	.black_bg {
		background-color: var(--text-color);
		cursor: pointer;
		height: 100vh;
		left: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		top: 0;
		transition: all .6s;
		visibility: hidden;
		width: 100vw;
		z-index: -2;
	}

	/* === 表示された時用のCSS === */

	.main-nav-open .main-nav {
		right: 0;
	}

	.main-nav-open .black_bg {
		opacity: .5;
		pointer-events: auto;
		visibility: visible;
	}

	.main-nav-open .hamburger__border_top {
		top: 20px;
		transform: rotate(45deg);
	}

	.main-nav-open .hamburger__border_center {
		left: 50%;
		width: 0;
	}

	.main-nav-open .hamburger__border_bottom {
		top: 20px;
		transform: rotate(-45deg);
	}
}


@media (width <=1280px) {
	.site-branding {
		display: none;
	}

	.site-branding__label {
		display: none;
	}

	.info {
		display: none;
	}

	.site-header {
		background: none;
		height: var(--mb-header-height);
		pointer-events: none;
		position: fixed;
	}

	.site-header__container {
		height: auto;
	}

	.site-header__inner {
		align-items: center;
		padding: 0;
	}

	.site-header__inner.fadeDown.is-animated {
		animation: none;
	}

	.main-menu li:first-of-type {
		display: block;
	}
}


/* hero
==================================================== */

.hero {
	background-size: cover;
	height: 742px;
	overflow: hidden;
	padding-top: calc(var(--header-height) + 130px);
	position: relative;
	text-align: center;
}

.hero__media {
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0 95%);
	inset: 0;
	position: absolute;
	z-index: 1;
}

.hero__video {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

/* .hero__media::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
} */

/* グリーンのレイヤー */
.hero__media::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 255, 204, 1);
  mix-blend-mode: color; /* ビデオの色と掛け合わせる */
  z-index: 1;
}

/* 黒のオーバーレイ */
.hero__media::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero::after {
	background: var(--main-color);
	clip-path: polygon(0 0,
			100% 0,
			100% 100%,
			0 90%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.hero__container {
	position: relative;
	z-index: 1;
}

.hero__mb-logo {
	display: none;
}

.hero__inner {
	color: var(--white);
	text-align: center
}

.hero__main-copy {
	color: var(--white);
	font-size: clamp(26px, 4.2vw, 36px);
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.hero__text {
	font-size: clamp(14px, 2.8vw, 18px);
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6;
	margin-bottom: 40px;
}


.hero__en-copy {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: clamp(30px, 4.8vw, 47px);
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.6;
	margin-bottom: 15px;


}


@media (width <=1280px) {
	.hero {
		height: 742px;
		padding-top: 20px;
		position: relative;
	}

	.hero__mb-logo {
		display: block;
		margin-bottom: 60px;
	}


	.hero__en-copy {
		margin-bottom: 40px;
	}
}


/* CTAボタン
========================== */
.offer {
	align-items: flex-end;
	display: flex;
	gap: 74px;
	justify-content: center;
}

.offer__inner {
	color: var(--sub-color);
	position: relative;
	width: fit-content;
}

.offer__inner--corporate {
	color: var(--accent-color);
}

.offer__text {
	color: inherit;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.2;
	margin-bottom: 5px;
	text-align: center;
}

.offer__btn {
	color: #2D4312;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.35;
	padding: 1.2em 2em;
	width: 390px;
}

.offer__inner--corporate .offer__btn {
	background: var(--accent-color);
}

.offer__bubble {
	background: var(--text-color);
	border-radius: 100%;
	color: inherit;
	display: grid;
	font-size: 12px;
	font-weight: 700;
	height: 70px;
	left: -27px;
	letter-spacing: .01em;
	line-height: 1.2;
	place-items: center;
	position: absolute;
	text-align: center;
	top: -18px;
	transform: rotate(-24deg);
	width: 70px;
}

.offer__bubble::before {
	border: 7px solid transparent;
	border-top: 10px solid var(--text-color);
	content: "";
	left: 74%;
	position: absolute;
	top: 95%;
	transform: translateX(-50%) rotate(-24deg);
}

.offer__btn span {
	display: block;
	font-size: var(--fz-button);
	font-weight: 500;
	letter-spacing: .1em;
}

@media (width <=960px) {
	.offer {
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}

	.offer__inner {
		width: 100%;
	}

	.offer__text {
		margin-left: auto;
		text-align: left;
		width: calc(100% - 60px);
	}

	.offer__btn {
		width: 100%;
	}

	.offer__bubble {
		left: -16px;
		top: 0;
	}
}

/* catch
==================================================== */

.catch {
	padding: 100px 0;
}

.catch__content {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin: auto;
	max-width: 90%;
}

.catch__label {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: clamp(28px, 4.5vw, 40px);
	font-weight: 500;
	letter-spacing: .05em;
	text-align: center;
	white-space: nowrap;
	width: 40%;
}

.catch__right {
	width: 60%;
}

.catch__title {
	color: var(--main-color);
	font-size: clamp(18px, 1.7vw, 33px);
	font-weight: 500;
	letter-spacing: .04em;
	margin-bottom: 1.3em;

}

.catch__text {
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	text-align: justify;
}


@media (width <=768px) {
	.catch__content {
		flex-direction: column;
		gap: 60px;
	}

	.catch__label {
		width: 100%;
	}

	.catch__right {
		width: 90%;
	}
}

/* strengths
==================================================== */
.strengths {
	padding: 25px 0 104px;
	position: relative;
	z-index: 0;
}

.strengths__bg {
	background: var(--main-color);
	clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 100%);
	inset: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.strengths__container {
	position: relative;
	transform: translateY(-40px);

	z-index: 1;
}

.strengths__list {
	display: flex;
	flex-wrap: wrap;
	gap: 74px;
	justify-content: center;
	row-gap: 40px;
}

.strengths__item {
	background-color: var(--white);
	background-position: -30px -30px;
	background-repeat: no-repeat;
	border-radius: 23px;
	box-shadow: 0 0 30px 0 #0000001A;
	height: 305px;
	padding: 110px 25px 30px;
	position: relative;
	text-align: center;
	width: 305px;
}

.strengths__item--01 {
	background-image: url("images/strengths-01.png");
}

.strengths__item--02 {
	background-image: url("images/strengths-02.png");
}

.strengths__item--03 {
	background-image: url("images/strengths-03.png");
}

.strengths__item--04 {
	background-image: url("images/strengths-04.png");
}

.strengths__item--05 {
	background-image: url("images/strengths-05.png");
}

.strengths__item--06 {
	background-image: url("images/strengths-06.png");
}

.strengths__number {
	color: var(--hd-color);
	font-family: var(--english-font-extra);
	font-size: 72px;
	font-weight: 500;
	left: 20px;
	letter-spacing: .05em;
	line-height: 1;
	position: absolute;
	top: 20px;
}

.strengths__title {
	color: var(--hd-color);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.37;
	margin-bottom: 20px;
}

.strengths__text {
	color: #4B4B4B;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 2;
}

@media (width <=768px) {
	.strengths {
		padding-bottom: 30px;
	}

	.strengths__list {
		gap: 20px;
	}
}


/* achievements
==================================================== */

.achievements {
	padding: 105px 0;
}

.achievements__list {
	display: grid;
	grid-template-columns: 1fr auto auto 1fr;
}

.achievements__item {
	border-bottom: 1px solid var(--main-color);
	border-right: 1px solid var(--main-color);
	display: grid;
	grid-template-rows: 6em 100px auto;
	justify-items: center;
	padding: 30px 20px;
	text-align: center;
}


.achievements__item:nth-child(4n) {
	border-right: none;
}

.achievements__item:nth-last-child(-n + 4) {
	border-bottom: none;
}

.achievements__item-title {
	align-items: center;
	color: var(--hd-color);
	display: flex;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .05em;
	line-height: 33px;
}

.achievements__item-image {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 12px;
}

.achievements__item--01 .achievements__item-image {
	max-width: 96px;
}

.achievements__item--02 .achievements__item-image {
	max-width: 189px;
}

.achievements__item--04 .achievements__item-image {
	max-width: 80px;
}

.achievements__item--large .achievements__item-image {
	max-width: 182px;
}

.achievements__item--07 .achievements__item-image {
	max-width: 141px;
}

.achievements__item-image img {
	display: block;
	height: auto;
	margin-inline: auto;
	max-width: 100%;
	width: 100%;
}

.achievements__item-text {
	color: var(--text-sub-color);
	font-size: 14px;
	font-weight: 300;
	letter-spacing: .05em;
	line-height: 2.35;
}

.achievements__symbols {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;

}


.achievements__symbols-line {
	background-color: var(--main-color);
	height: 1px;
	margin-left: -50px;
	margin-right: -50px;
	transform: rotate(-25deg);
	width: 140px;
	z-index: 2;
}


.achievements__symbols-image {
	max-width: 164px;
	transform: translateY(-20px);
	z-index: 1;
}

.achievements__symbols-text {
	color: var(--text-sub-color);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .17em;
	transform: translateY(10px);
	z-index: 3;
}

@media (width <=1200px) {
	.achievements__list {
		grid-template-columns: 1fr 1fr;
	}

	.achievements__item {
		gap: 10px;
		grid-template-rows: auto auto auto;
		padding: 20px 15px;
	}

	.achievements__item:nth-of-type(2), .achievements__item:nth-of-type(6) {
		border-right: 0;
	}

	.achievements__item:nth-of-type(5), .achievements__item:nth-of-type(6) {
		border-bottom: 1px solid var(--main-color);
	}

	.achievements__item-title {
		font-size: 16px;
	}

	.achievements__item-image {
		margin-bottom: 0;
	}

	.achievements__symbols {
		flex-direction: column;
		gap: 0;
	}

	.achievements__symbols-image {
		transform: none;
	}

	.achievements__symbols-line {
		display: none;
	}

	.achievements__symbols-text {
		transform: none;
	}
}


/* reason
==================================================== */


.reason {
	background-image: url("images/reason-bg.jpg");
	background-position: center;
	background-size: cover;
	padding: 92px 0 74px;
}


/* ===== 曇りガラス帯 ===== */
.reason__wrap {
	backdrop-filter: blur(10px);
	background-color: rgb(255 255 255 / 60%);
	padding: 20px 0 120px;
}


.reason__header {
	margin-bottom: 35px;
}


/* はみ出し許可 */
.reason__table-wrap {
	overflow: visible;
	padding-top: 20px;
}

.reason__table {
	display: flex;
	gap: 5px;
	justify-content: center;
}

/* ===== テーブル本体 ===== */

.reason__table-main {
	border-radius: 12px;
	display: grid;
	gap: 3px 5px;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(6, 56px);

}

.reason__table-emphasis {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 350px;
	position: relative;
	transform: translateY(-15px);
}

.reason__cell {
	background-color: var(--white);
	color: var(--text-sub-color);
	display: grid;
	font-size: 14px;
	font-weight: 500;

	letter-spacing: .1em;

	min-width: 258px;
	place-items: center;
	text-align: center;
}

.reason__cell--th {
	background-color: var(--hd-color);
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .3em;
}

.reason__cell--th:first-of-type {
	border-radius: 12px 0 0;
}

.reason__cell--letter {
	letter-spacing: 0.05em;
}

.reason__cell--emphasis {
	color: var(--hd-color);
	display: flex;
	font-size: 18px;
	font-weight: 700;
	gap: 20px;
	height: 64px;
	letter-spacing: 0.1em;
	line-height: 1.3;
	padding-left: 30px;
	text-align: left;
}

.reason__cell--th.reason__cell--emphasis {
	background: linear-gradient(-90deg, var(--hd-color) 0%, #09504A 100%);
	border-radius: 12px 12px 0 0;
	color: var(--white);
	display: grid;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: .05em;
	padding-left: 0;
	place-items: center;
}

.reason__cell--emphasis:last-of-type {
	border-radius: 0 0 12px 12px;
}

.reason__icon {
	color: var(--hd-color);
	font-size: 21px;
}

.radius-left-bottom {
	border-radius: 0 0 0 12px;
}

@media (width <=960px) {
	.reason__table-wrap {
		overflow-x: auto;
		padding: 20px 0;
	}

	.reason__table {
		justify-content: flex-start;
	}

	.reason__cell--th {
		min-width: 8em;
	}
}


/* software
==================================================== */

.software {
	padding: 128px 0 0;
	position: relative;
}

.software__container {
	max-width: 1270px;
}

.tabs {
	border-bottom: 1px solid #E8E8E8;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 32px;
}

.tabs__tab {
	background: var(--white);
	border: none;
	color: var(--label-gray);
	cursor: pointer;
	font-family: var(--english-font);
	font-size: 16px;
	font-weight: 500;
	padding: 6px 18px;
}

.tabs__tab.is-active {
	border-bottom: 4px solid var(--main-color);
	color: var(--main-color);
}

@media (width <=768px) {
	.tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tabs__tab {
		padding: 20px 15px;
	}
}

.software__contents {
	border-bottom: 1px solid #E8E8E8;
	padding: 60px;
}


.software__name {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 41px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
}

.software__name-ja {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 22px;
}

.software__description p {
	font-size: 13px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 2.2;
	max-width: 484px;
	text-align: justify;
}

.software__description p+p {
	margin-top: 2em;
}

.software__movie {
	border-radius: 20px;
	height: 270px;
	margin-bottom: 24px;
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
	width: 480px;
}

.software__movie iframe {
	border: 0;
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

/* list（擬似要素マーカー） */

.js-tab-content {
	display: none;
}

.js-tab-content.is-active {
	display: block;
}

.software__block {
	display: grid;
	gap: 40px;
	grid-template-columns: 1fr 1fr;
}

.software__list {
	display: grid;
	gap: 12px 38px;
	grid-template-columns: repeat(2, 1fr);
	list-style: none;
}

.software__item {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	padding-left: 28px;
	position: relative;
}

.software__item::before {
	content: "\f192";
	font-family: var(--font-awesome);
	font-size: 13px;
	font-weight: 400;
	left: 0;
	position: absolute;
}


@media (width <=768px) {
	.software__block {
		grid-template-columns: 1fr;
		padding-bottom: 60px;
	}

	.software__contents {
		padding: 0 10px;
	}

	.software__movie {
		width: 100%;
	}
}



/* course
==================================================== */

.course {
	padding: 128px 0;
}

.course__container {
	max-width: 1070px;
	text-align: center;
}

.course__header {
	margin-bottom: 48px;
}

.course__ranking {
	overflow: hidden;

	padding: 57px 0 130px;
	position: relative;
}

.course__ranking::after {
	background: #d9d9d9;
	clip-path: polygon(0 0,
			100% 0,
			100% 100%,
			0 40%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.course__ranking::before {
	background: var(--main-color);

	clip-path: polygon(0 0,
			100% 0,
			100% 40%,
			0 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.course__ranking>* {
	position: relative;
	z-index: 2;
}


.course__intro {
	color: var(--white);
	margin-bottom: 48px;
}

.course__intro-header {
	margin-bottom: 34px;
	position: relative;

}

.course__intro-header::before {
	background: var(--white);
	content: '';
	height: 1px;
	left: 0;
	position: absolute;
	top: calc(50% - 1px);
	width: 100%;
}

.course__intro-bg {
	background: var(--main-color);
	margin: 0 auto;
	padding: 0 90px;
	position: relative;
	width: fit-content;
}

.course__intro-title {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
}


.course__intro-label {
	display: block;
	font-family: var(--english-font);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.course__intro-text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 755px;
}

.course__cards {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}


@media (width <=1200px) {
	.course__intro-bg {
		padding: 0 20px;
	}

	.course__ranking {
		padding-bottom: 30px;
	}

	.course__cards {
		display: flex;
		flex-wrap: wrap;
		gap: 60px;
		justify-content: center;
	}
}


.course-card {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 0 20px 0 #00000040;
	flex: 0 0 334px;
	min-height: 416px;
	padding: 40px 0 36px;
	position: relative;
	text-align: center;
	width: 334px;
}


.course-card__badge {
	align-items: center;
	display: flex;
	gap: 8px;
	left: 15px;
	position: absolute;
	top: 15px;
}

.course-card__badge::before, .course-card__badge::after {
	background: linear-gradient(135deg, #FFD900, #B5AA2C);
	background-clip: text;
	content: "\f005";
	font-family: var(--font-awesome);
	font-size: 8px;
	font-weight: 900;
	position: absolute;
	-webkit-text-fill-color: transparent;
	top: 50%;
	transform: translateY(-50%) rotate(50deg);
}

.course-card__badge::before {
	left: -10px;
	top: 100%;
}

.course-card__badge::after {
	left: 5px;
	top: 120%;
}

.course-card__badge>span::before,
.course-card__badge>span::after {
	background: linear-gradient(135deg, #FFD900, #B5AA2C);
	background-clip: text;
	content: "\f005";
	font-family: var(--font-awesome);
	font-size: 8px;
	font-weight: 900;
	position: absolute;
	-webkit-text-fill-color: transparent;
	top: 50%;
	transform: translateY(-50%);
}

.course-card__badge>span::before {
	right: 0;
	top: 88%;
}

.course-card__badge>span::after {
	right: -10px;
}

.course-card__badge-text {
	background: linear-gradient(135deg, #FFD900, #B5AA2C);
	background-clip: text;
	color: currentcolor;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
	-webkit-text-fill-color: transparent;
	transform: rotate(-16deg);
}

.course-card__badge-text span {
	display: flex;
	font-size: 18px;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .05em;
	line-height: 1;
}

.course-card__badge-text i {
	font-size: 18px;
	padding-right: 2px;
}

.premium-budge {
	background: linear-gradient(286.68deg, #E95377 26.6%, #833DA3 75.79%);
	background-clip: text;
	font-size: 14px;
	font-weight: 700;
	left: 15px;
	letter-spacing: 0.05em;
	position: absolute;
	-webkit-text-fill-color: transparent;
	top: 15px;
	transform: rotate(-16deg);
}

.premium-budge span {
	display: block;
	font-size: 12px;
	font-weight: inherit;
	letter-spacing: inherit;
}

.course-card__en {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.course-card__title {
	color: var(--main-color);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 10px;
}

.course-card__software {
	border: 1px solid currentcolor;
	color: var(--main-color);
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 24px;
	padding: 0.1em 15px;
}

.course-card__middle {
	padding: 7px 27px;
	position: relative;
}

.course-card__middle::before {
	background: var(--main-color);
	content: '';
	display: block;
	height: 160px;
	left: 0;
	position: absolute;
	top: 0;
	width: 9px;
}

.course-card__middle::after {
	background: var(--main-color);
	content: '';
	display: block;
	height: 160px;
	position: absolute;
	right: 0;
	top: 0;
	width: 9px;
}

.course-card__description {
	color: var(--text-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 2.05;
	margin-bottom: .8em;
	text-align: justify;
}

/* =========================
  meta
========================= */
.course-card__meta {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.course-card__time {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	font-size: 12px;
	font-weight: 700;
	padding: 0.2em 1em;
}

.course-card__price {
	align-items: baseline;
	color: var(--main-color);
	display: flex;
	gap: 2px;
}

.course-card__price-number {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .05em;
}

.course-card__price-yen {
	font-size: 16px;
	font-weight: 700;
}

.course-card__price-tax {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .05em;
}


/* =========================
  note block
========================= */
.course-card__note {
	background: var(--light-gray);
	border-radius: 10px;
	bottom: -35px;
	box-shadow: 0 6px 10px 0 #00000040;
	left: 20px;
	padding: 4px 20px 18px;
	position: absolute;
	right: 20px;
}

.course-card__note-title {
	color: var(--main-color);
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 7px;
	position: relative;
}

.course-card__note-title::before, .course-card__note-title::after {
	background-repeat: no-repeat;
	content: "";
	height: 10px;
	position: absolute;
	top: 8px;
	width: 6px;

}

.course-card__note-title::before {
	background-image: url("images/course-card-left.svg");
	left: -10px;
}

.course-card__note-title::after {
	background-image: url("images/course-card-right.svg");
	right: -10px;
}

.course-card__note-body {
	align-items: center;
	display: flex;
	gap: 10px;
	justify-content: center;
}

.course-card__note-content {
	background: var(--white);
	border-radius: 5px;
	padding: 6px 10px 2px;
}

.course-card__note-text {
	color: #4B4B4B;
	font-size: 10px;
	letter-spacing: .05em;
}

.course-card__note-text--accent {
	color: var(--main-color);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .05em;
}

.course-card__note-price {
	align-items: baseline;
	color: #FB0;
	display: flex;
	font-weight: 700;
	gap: 2px;
	letter-spacing: .05em;
}

.course-card__note-price-number {
	font-size: 21px;
	font-weight: inherit;
}

.course-card__note-price-yen {
	font-size: 12px;
	font-weight: inherit;
}


.course-list {
	padding: 80px 0;
}

.course-list__container {
	max-width: 1570px;
}


.course-list__header {
	margin-bottom: 56px;
	text-align: center;
}

.course-list__title {
	color: var(--main-color);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
}

.course-list__label {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
}


.course-list__tab {
	font-size: 14px;
}

.course-list__tabs {
	margin-bottom: 0;
}



/* =========================
  scroll area
========================= */

/* 帯を固定するための外枠 */
.course-list__scroll-wrap {
	overflow: hidden;
	position: relative;
}

.course-list__scroll {
	overflow-x: auto;
	padding: 84px 40px 113px 20px;

}

/* 右端の半透明帯（固定） */
.course-list__scroll-wrap::after {
	background: #FFFFFFE5;
	content: "";
	height: 100%;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 70px;
}

/* =========================
  track
========================= */
.course-list__track {
	display: flex;
	gap: 30px;
}

.course-list__spacer {
	flex: 0 0 48px;

}

@media (width <=768px) {
	.course-list__scroll-wrap::after {
		content: none;
	}

	.course-list__scroll {
		padding: 84px 20px;
	}
}


/* videos
==================================================== */

.videos {
	overflow-x: hidden;
}


/* ==============================
   slider
============================== */

.videos__slider-wrap {
	position: relative;
}

.videos__slider {
	position: relative;
}

.videos__slider .slick-slide {
	height: auto;
	transition: opacity 0.3s ease;
}

.slick-slide iframe {
	display: block;
	height: auto;
	width: 100%;
}

/* 中央以外を白くフェード */
.slick-slide:not(.slick-current) {
	opacity: 0.2;
}

/* ==============================
   card
============================== */

.videos__card {
	background-color: var(--white);
	border-radius: 20px;
	box-shadow: 0 0 20px 0 #0A7D733D;
	box-sizing: border-box;

	padding: 30px 30px 40px;
	width: 530px;
}

/* iframe */
.videos__iframe-wrap {
	/* 16:9 */
	aspect-ratio: 468 / 264;
	border-radius: 20px;
	margin-bottom: 16px;
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
}

.videos__iframe-wrap iframe {
	border: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.videos__card-title {
	color: var(--main-color);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.videos__card-text {
	color: var(--text-color);
	font-size: 14px;
	letter-spacing: 0.04em;
	margin-bottom: 46px;
	text-align: justify;
}

.videos__card-subtext {
	color: var(--text-color);
	font-size: 14px;
	letter-spacing: 0.04em;
	text-align: justify;
}


.videos__slider .slick-arrow {
	cursor: pointer;
	height: 125px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	z-index: 2;
}

/* floatのなごり 不要 */
.slick-track::before,
.slick-track::after {
	content: none !important;
	display: none !important;
}

.prev-arrow, .next-arrow {
	cursor: pointer;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.videos .prev-arrow {
	left: 25%;
}

.videos .next-arrow {
	right: 25%;
}



/* Slick.js
========================== */

.slick-track {
	display: flex;
	gap: 40px;
	padding: 30px 0;
}

.slick-dots {
	bottom: -50px;
}

.slick-dots li {
	height: 13px;
	width: 13px;
}


.slick-dots li button::before {
	color: var(--label-gray);
	content: '•';
	font-size: 13px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 13px;
	left: 0;
	line-height: 13px;
	opacity: 1;
	position: absolute;
	text-align: center;
	top: 0;
	width: 13px;
}

.slick-dots li.slick-active button::before {
	color: var(--text-sub-color);
	opacity: 1;
}


@media (width <=768px) {
	.videos__card {
		width: 100%;
	}
}


@media (width <=768px) {
	.prev-arrow, .next-arrow {
		display: none !important;
	}

	.slick-track {
		gap: unset;
	}

	.slick-dots {
		bottom: -70px;
	}
}



/* Slick.js用のスクロール可能表示 */

.swipe-hint {
	display: none;
}

@media (width <=1300px) {
	.swipe-hint {
		background: rgb(0 0 0 / 50%);
		border-radius: 6px;
		color: var(--white);
		display: block;
		font-size: 13px;
		padding: 4px 8px;
		pointer-events: none;
		position: absolute;
		right: 2%;
		top: 20px;
		z-index: 10;
	}
}


/* cta
==================================================== */

.cta {
	background-image: url('images/cta-bg.jpg');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	padding: 110px 0 50px;
	text-align: center;
}

.cta__catch {
	font-size: clamp(18px, 3vw, 23px);
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.45;
	margin-bottom: 50px;
}

.cta__tel-block {
	margin-bottom: 35px;
}


.line {
	align-items: center;
	border: 1px solid #FFFFFF40;
	border-radius: 18px;
	color: var(--white);
	display: flex;
	flex: 1;
	margin: 0 auto 55px;
	max-width: 455px;
	padding: 14px 20px 14px 0;
}

/* LINEロゴの最小高さ: 40px LINEロゴの半分以上余白をとる */
.line__icon {
	height: 40px;
	margin: 20px;
	width: auto;
}

.line__center {
	flex: 1;
	margin-right: 8px;
	text-align: left;
}

.line__text {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 21px;
}

.line__link {
	color: inherit;
	font-family: var(--main-font);
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 29px;
	text-decoration: underline;
}

.line__link::after {
	color: inherit;
	content: "\f08e";
	font-family: var(--font-awesome);
	font-size: 14px;
	font-weight: 900;
	margin-left: 7px;
	vertical-align: middle;
}

.line__img {
	height: auto;
	width: 120px;
}

.line-for-page .line {
	border: 1px solid #06C75540;
	color: var(--main-color);
}

@media (width <=768px) {
	.cta {
		padding: 80px 0;
	}

	.cta__left {
		flex: 1;
	}

	.cta__action-block {
		align-items: center;
		flex-direction: column;
	}

	.line__img {
		display: none;
	}
}

@media (width >=768px) and (width <=1024px) {
	.line__img {
		display: none;
	}
}



/* answer
==================================================== */

.answer {
	border-left: 16px solid var(--main-color);
	margin-bottom: 160px;
	margin-top: 80px;
	padding: 0 0 0 80px;
}

.answer__container {
	max-width: var(--max-w);
	width: 100%;

}

.answer__header {
	margin-bottom: 24px;
}

.answer__title {
	margin-bottom: 20px;
}

.answer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.answer__left {
	flex: 1;
	min-width: 280px;
}

.answer__copy {
	color: var(--text-sub-color);
	font-size: clamp(20px, 3.2vw, 26px);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 20px;
}

.answer__subtitle {
	color: var(--hd-color);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 16px;
}

.answer__text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	margin-bottom: 2em;
}

.answer__text:last-of-type {
	margin-bottom: 0;
}

.answer__right {
	flex: 1;
	min-width: 280px;
}

.answer__right-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 56px;
}

.answer__circle {
	align-items: center;
	border: 1px solid var(--main-color);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 164px;
	justify-content: center;
	padding: 20px;
	text-align: center;
	width: 164px;
}

.answer__circle-num {
	color: var(--hd-color);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 35px;
}

.answer__circle-title {
	color: var(--hd-color);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: .04em;
}

.answer__content {
	flex: 1;
}

.answer__content-text {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.9;
	margin-bottom: 8px;
}

.answer__list {
	padding-left: 20px;
}

.answer__list-item {
	color: var(--hd-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
}

.answer__img {
	margin-bottom: 38px;

}

@media (width <=768px) {
	.answer {
		margin-bottom: 80px;
		padding-left: 0;
	}

	.answer__container {
		width: 90%;
	}

	.answer__inner {
		gap: 30px;
	}

	.answer__right-inner {
		flex-direction: column;
		gap: 30px;
	}

	.answer__circle {
		height: 130px;
		width: 130px;
	}

	.answer__circle-title {
		font-size: 16px;
	}
}

/* 今ならリスキリング対象講座を受講すると */

.reskilling-message__container {
	text-align: center;
}

.reskilling-message__text {
	color: var(--main-color);
	font-size: 22px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 8px;
}

.reskilling-message span {
	font-size: 38px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 0.8;
}

.reskilling-message__desc {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 25px;
}

.reskilling-message__image img {
	margin: 0 auto 8px;
}

.reskilling-message__caution {
	color: var(--main-color);
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .05em;
}


/* sns
==================================================== */

.sns {
	padding-bottom: 125px;
	text-align: center;
}

.sns__container {
	max-width: var(--max-width-ss);
}

.sns__title {
	color: var(--dark-green);
	font-family: var(--main-font);
	font-size: clamp(22px, 3.5vw, 30px);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 8px;
}

.sns__lead {
	margin-bottom: 40px;
}

.sns__list {
	display: flex;
	gap: 40px;
	justify-content: center;
}

/* grid-template-rows: auto; にしておかないとロゴ周囲の余白が確保できなくなる */
.sns__item {
	align-items: center;
	border: 1px solid #D9D9D9;
	border-radius: 20px;
	display: grid;
	grid-template-rows: auto;
	height: 184px;
	max-width: 184px;
	padding: 20px 22px;
	text-align: center;
	width: 184px;
}

.sns__item-title {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .04em;

}

/* ロゴのセーフスペースのための囲み 余白サイズはロゴの大きさにより再検討が必要 */
.sns__logo-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 84px;
	padding: 21px;
}

/* note余白 */
.sns__item:nth-of-type(3) .sns__logo-wrap {
	padding: 0;
}

.sns__item-logo {
	max-height: 84px;
	width: 100%;
}

.sns__item-logo--instagram {
	margin: 0 auto;
	width: 42px;
}

.sns__item-logo--note {
	width: auto;
}

.sns__item-logo--x {
	width: 36px;
}

.sns__item-logo--threads {
	width: 57px;
}

.sns__item-btn {
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 400;
	height: 32px;
	letter-spacing: .04em;
	width: 137px;
}

.sns__item-btn.dark-btn::after {
	font-size: 11px;
	right: 12px;
}

@media (width <=768px) {
	.sns__list {
		display: grid;
		gap: 10px;
		grid-template-columns: 1fr 1fr;
	}

	.sns__item {
		max-width: unset;
		padding: 15px;
		width: auto;
	}

	.sns__item-btn {
		width: 100%;
	}
}

@media (width >=769px) and (width <=1024px) {
	.sns__list {
		flex-wrap: wrap;
	}
}

/* FAQ
==================================================== */

.faq {
	padding-bottom: 170px;
}

.faq__container {
	max-width: 960px;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 45px;
}

.faq__item {
	border-radius: 10px;
	box-shadow: 0 0 30px 0 #E6E6E6;
	padding: 40px 60px 60px 40px;
}



/* ===== Question ===== */
.faq__q-text {
	display: inline-block;
	font-size: var(--fz-block-title);
	font-weight: 500;
	letter-spacing: 0.1em;
	padding-left: 60px;
	position: relative;
}

.faq__q-text::before {
	bottom: 0;
	content: 'Q.';
	font-family: var(--english-font);
	font-size: 58px;
	font-weight: 600;
	left: 0;
	letter-spacing: .1em;
	line-height: 1;
	position: absolute;
}

/* ===== Answer ===== */
.faq__answer {
	color: #4F4F4F;
	font-size: 16px;
	letter-spacing: 0.1em;
	line-height: 1.6;
	padding-left: 55px;
	padding-right: 70px;
	padding-top: 10px;
}

.faq__a-block {
	letter-spacing: .1em;
	padding-left: 60px;
	padding-top: 10px;
	position: relative;

}

.faq__a-block::before {
	color: #FF3853;
	content: 'A.';
	font-family: var(--english-font);
	font-size: 50px;
	font-weight: 600;
	left: 0;
	letter-spacing: .1em;
	line-height: 1;
	position: absolute;
	top: 0;
}

/* 編集しやすいようにpにクラスつけていません */

.faq__a-block p {
	letter-spacing: inherit;
}

.faq__a-block p+p {
	margin-top: 1.6em;
}

.faq__link {
	color: var(--main-color);
	letter-spacing: inherit;
	overflow-wrap: break-word;
	text-decoration: underline;
}

.faq__item[open] .faq__question {
	padding-bottom: 10px;
}

.faq__question {
	color: var(--main-color);
	cursor: pointer;
	list-style: none;
	padding: 20px 40px 20px 0;
	position: relative;
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__question::before,
.faq__question::after {
	background: var(--main-color);
	content: '';
	position: absolute;
	top: 50%;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.faq__question::after {
	height: 2px;
	right: 0;
	transform: translateY(-50%);
	width: 38px;
}

/* 縦線（＋の縦棒） */
.faq__question::before {
	height: 38px;
	opacity: 1;
	right: 18px;
	transform: translateY(-50%) rotate(0deg);
	width: 2px;
}

.faq__item[open] .faq__question::before {
	opacity: 0;
	transform: translateY(-50%) rotate(90deg);
}

@media (width <=768px) {
	.faq {
		padding-bottom: 80px;
	}

	.faq__list {
		gap: 15px;
	}

	.faq__item {
		padding: 25px;
	}

	.faq__question::before {
		height: 20px;
		right: 10px;
	}

	.faq__question::after {
		width: 20px;
	}

	.faq__answer {
		padding: 0 10px;
	}
}


/* tel
==================================================== */

.tel {
	color: var(--white);
}

.tel__text {
	color: inherit;
	font-size: clamp(16px, 2.8vw, 18px);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
	text-align: center;
}

.tel__label {
	background: none;
	border: 1px solid currentcolor;
	color: var(--white);
	display: grid;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.35;
	max-height: 80px;
	padding: 20px 16px;
	place-items: center;
}

.tel__content {
	color: inherit;
	display: flex;
	gap: 26px;
	justify-content: center;
}

.tel__info {
	text-align: left;
}

.tel__business-hours {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.35;
}

.tel__number {
	color: currentcolor;
	font-size: 65px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

@media (width <=768px) {
	.tel__label {
		padding: .5em;
		width: 16em;
	}

	.tel__business-hours {
		font-size: 12px;
		margin-bottom: 6px;
	}

	.tel__number {
		font-size: 24px;
	}


}


/* CTA before contact
==================================================== */
.cta-before-contact .offer {
	display: none;
}

@media (width <=768px) {
	.cta-before-contact .line {
		margin-bottom: 0;
	}
}


/* contact
==================================================== */
.contact {
	padding-bottom: 60px;
	text-align: center;
}

.contact__container {
	max-width: 1140px;
}



.contact__header {
	margin-bottom: 60px;
}

.contact__text {
	margin-bottom: 35px;
}


/* notice
==================================================== */
.notice {
	text-align: center;
}

@media (width <=768px) {
	.notice {
		padding-bottom: 100px;
	}
}

/* footer
==================================================== */

.site-footer {
	background: var(--hd-color);
	color: var(--white);
	padding: 42px 0 100px;
	text-align: center;
}

.site-footer__container {
	max-width: var(--max-width-s);
}

.site-footer__inner {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 60px;
	padding-left: 16px;
	padding-right: 42px;
}

.site-footer__tel .tel {
	color: var(--white);
}

.site-footer__tel .tel__text {
	display: none;
}


.site-footer__image {
	width: clamp(100px, 12vw, 145px);
}

.site-footer__logo-text {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

.site-footer__copyright {
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

.footer-nav {
	margin-bottom: 20px;
}


.footer-menu {
	display: flex;
	justify-content: center;
	list-style: none;
}

.footer-menu li {
	border-right: 1px solid var(--white);
	display: grid;
	max-height: 16px;
	padding: 0 1em;
	place-items: center;
}

.footer-menu li:last-of-type {
	border-right: none;
}

.footer-menu__item {
	color: inherit;
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}


@media (width <=960px) {
	.footer-nav {
		margin-bottom: 30px;
	}

	.footer-menu__item {
		align-items: center;
		display: flex;
		font-size: 12px;
		min-height: 40px;
		width: 100%;
	}

	.site-footer__inner {
		align-items: center;
		flex-direction: column;
		gap: 30px;
		padding: 0;
	}

	.site-footer__image {
		width: 130px;
	}

	.site-footer__copyright {
		font-weight: 300;
		padding: 0;
	}

}

@media (width <=768px) {
	.footer-menu {
		display: grid;
		gap: 0;
		grid-template-columns: 1fr 1fr;
		margin-top: 0;
		place-items: flex-start;
	}

	.footer-menu li {
		border-right: 0;
		min-height: 40px;
		width: 100%;
	}
}




/* 固定ページ
==================================================== */


/* ページヘッダー */

.page-header {
	background-size: cover;
	overflow: hidden;
	padding-top: calc(var(--header-height) + 54px);
	position: relative;
	text-align: center;
}

.page-header::after {
	background: var(--main-color);
	clip-path: polygon(0 0,
			100% 0,
			100% 100%,
			0 60%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.page-header::before {
	background-image: url("images/page-header.png");
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: cover;
	clip-path: polygon(0 0,
			100% 0,
			100% 70%,
			0 90%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.page-header>* {
	position: relative;
	z-index: 2;
}

.mb-branding {
	display: none;
}

.page-header__title {
	color: var(--white);
	font-size: var(--fz-page-title);
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 180px;
}

.page-header__title-en {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: var(--fz-page-title-en);
	font-weight: 500;
	letter-spacing: 0.04em;
}

.page-header__title span {
	display: block;
	font-size: 14px;
	letter-spacing: .04em;
}

/* === page article === */

.page-article {
	padding-bottom: 80px;
}

.page-article__container {
	max-width: 1140px;
	position: relative;
	text-align: center;
	z-index: 5;
}

/* === パンくず === */

.breadcrumbs {
	color: var(--main-color);
	letter-spacing: .04em;
	text-align: left;
	transform: translateY(-40px);
}

.breadcrumbs .aioseo-breadcrumb {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: inherit;
}

/* 固定ページ：ページタイトルを含む一番上のセクション */
.page-article__top-section {
	margin-top: -120px;
	text-align: center;
}

.page-article__header {
	margin-bottom: 80px;
}

@media (width <=1280px) {
	.page-header {
		padding-top: 20px;
		position: relative;
		z-index: 98;
	}

	.page-header__title {
		margin-bottom: 100px;
	}

	/* 固定ページのみに使うモバイル用ロゴ */
	.mb-branding {
		display: block;
		margin-bottom: 20px;
		position: relative;
		width: fit-content;
		z-index: 100;
	}

	.mb-branding__logo {
		height: 50px;
	}

	.page-article__header {
		margin-top: 40px;
	}

	.breadcrumbs {
		transform: translateY(20px);
	}

	.page-article__top-section {
		padding-bottom: 60px;
	}


}

/* corporate-training
==================================================== */
.features {
	text-align: center;
}

.features__list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
	margin: 0 auto;
	max-width: 835px;

}

.features__item {
	border: 1px solid var(--hd-color);
	border-radius: 20px;
	height: 250px;
	padding: 30px 22px;
	text-align: center;
	width: 250px;
}

.features__icon {
	margin-bottom: 12px;
}

.features__icon i {
	color: var(--hd-color);
	font-size: 45px;
}

.features__icon img {
	height: auto;
	width: 48px;
}

.features__title {
	color: var(--hd-color);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.features__text {
	color: #4b4b4b;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 2;
}

@media (width <=768px) {
	.features__list {
		gap: 10px;
	}

	.features__item {
		height: auto;
		padding: 20px 8px;
		width: 48%;
	}

	.features__title {
		font-size: 16px;
	}

	.features__text {
		font-size: 13px;
	}
}


/* ------------------------------
   case-study
------------------------------ */

.case-study {
	overflow-x: hidden;
}

.case-study__container {
	padding-bottom: 100px;
}

.case-study__header {
	margin-bottom: 40px;
}


.case-study__item {
	border-radius: 20px;
	box-shadow: 0 0 20px 0 #0A7D733D;
	max-width: 530px;
	padding: 70px 55px 50px;
	text-align: center;
	width: 530px;
}

.case-study__item-label {
	background: var(--main-color);
	border-radius: 24px;
	color: var(--white);
	display: inline-block;
	font-size: 18px;
	letter-spacing: 0.1em;
	margin: 0 auto 20px;
	padding: .6em 1.5em;
}


.case-study__item-title {
	color: var(--main-color);
	font-size: 31px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 30px;
}

.case-study__item-text {
	color: var(--text-color);
	font-size: 16px;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin-bottom: 12px;
}


.case-study__meta {
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	gap: 6px;
	list-style: none;
	margin: 0 auto;
	margin-bottom: 30px;
	width: fit-content;
}

.case-study__meta-item {
	display: flex;
	gap: 20px;

}

.case-study__meta-label {
	border: 1px solid currentcolor;
	flex-shrink: 0;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: .04em;
	width: 80px;
}

.case-study__meta-value {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .04em;
}


.case-study__note {
	border: 1px solid currentcolor;
	border-radius: 15px;
	color: var(--main-color);
	padding: 20px;
}

.case-study__note-title {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.case-study__note-text {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
}


/* ------------------------------
   slider
------------------------------ */

.case-study__slider-wrap {
	position: relative;
}

.case-study__slider {
	margin-left: -15px;
	margin-right: -15px;
}


.case-study__link:hover {
	box-shadow: 0 6px 20px rgb(0 0 0 / 10%);
}

/* 画面幅が広いときにスライドの続きが隠れないようにする */
.case-study .slick-list {
	overflow: visible;
}


.case-study .prev-arrow {
	left: 28%;
}

.case-study .next-arrow {
	right: 24%;
}

@media (width <=1300px) {
	.case-study__item {
		max-width: none;
	}
}


/* === grants === */
.grants {
	text-align: center;
}

.grants__container {
	max-width: 1010px;
}

.grants__header {
	color: var(--white);
	margin-bottom: 55px;

}

.grants__title {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
}

.grants__label {
	display: inline-block;
	font-family: var(--english-font);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 34px;
}


.grants__body {
	background: var(--white);
	border-radius: 20px;
	box-shadow: 0 0 20px 0 #00000040;
	padding: 60px 60px 48px 68px;
	text-align: left;
}

.grants__columns {
	display: flex;
	gap: 55px;
}


.grants__left {
	text-align: left;
}

.grants__right {
	min-width: 310px;
}

.grants__heading {
	color: var(--main-color);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-bottom: 18px;
}

.grants__text {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.grants__text+.grants__text {
	margin-top: 20px;
}

.grants__calc {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.grants__item {
	align-items: center;
	background: #F7F7F7;
	border-radius: 15px;
	display: flex;
	gap: 16px;
	padding: 15px;
	width: 100%;
}

.grants__circle {
	border: 1px solid var(--main-color);
	border-radius: 50%;
	box-sizing: border-box;
	color: var(--main-color);
	min-height: 102px;
	min-width: 102px;
	padding-top: 14px;
	text-align: center
}

.grants__circle-text {
	color: inherit;
	display: block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .04em;
}

.grants__value {
	color: #FB0;
}

.grants__value-label {
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.grants__value-number {
	font-size: 34px;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1;
}

.grants__value-number .tilde {
	font-size: 21px;
	font-weight: 500;
	letter-spacing: inherit;
	padding-left: 5px;
	padding-right: 5px;
}

.grants__value-number .unit {
	font-size: 21px;
	font-weight: 500;
	letter-spacing: inherit;
}



.grants__plus {
	display: inline-block;
	height: 28px;
	position: relative;
	width: 28px;
}

.grants__plus::before,
.grants__plus::after {
	background-color: var(--main-color);
	content: "";
	height: 3px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 28px;
}

.grants__plus::after {
	transform: translate(-50%, -50%) rotate(90deg);
}


@media (width <=768px) {
	.grants__body {
		padding: 40px;
	}

	.grants__columns {
		flex-direction: column;
	}

	.grants__right {
		margin: 0 auto;
		min-width: unset;
		width: fit-content;
	}
}


.flow {
	text-align: center;
}

.flow__container {
	max-width: 700px;
}

.flow__list {
	display: flex;
	flex-direction: column;
	gap: 35px;
	margin-bottom: 90px;
}

.flow__item {
	align-items: center;
	display: flex;
	gap: 24px;
	max-width: 720px;
	position: relative;
}

.flow__item--left {
	margin-left: 0;
}

.flow__item--right {
	margin-left: 185px;
}

.flow__circle {
	align-items: center;
	background-color: var(--main-color);
	border-radius: 50%;
	color: var(--white);
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	font-size: 14px;
	height: 100px;
	justify-content: center;
	width: 100px;

}

.flow__step {
	font-family: var(--english-font);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.flow__circle-title {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.04em;

}

.flow__content {
	color: var(--main-color);
	letter-spacing: 0.04em;
	text-align: left;
}

.flow__item::after {
	background-color: var(--light-gray);
	content: "";
	height: 160px;
	left: 50px;
	position: absolute;
	top: 50%;
	transform: translateY(50px) rotate(-58.5deg);
	transform-origin: top center;
	width: 1px;
}

.flow__item--right::after {
	left: 0;
	top: 0;
	transform: translateY(50px) rotate(58.5deg);
}

.flow__item:last-child::after {
	display: none;
}

.flow__note {
	background-color: var(--white);
	border: 1px solid var(--light-gray);
	border-radius: 20px;
	margin: 0 auto;
	max-width: 605px;
	padding: 40px 24px 34px;
	position: relative;
}

.flow__note-badge {
	align-items: center;
	color: var(--main-color);
	display: inline-flex;
	font-size: 16px;
	left: -30px;
	letter-spacing: 0.04em;
	position: absolute;
	top: 10px;
	transform: rotate(-17.7deg);
	white-space: nowrap;
}

.flow__note-badge-main {
	display: block;
	font-size: 16px;
	letter-spacing: 0.04em;

}

.flow__note-badge-sub {
	display: block;
	font-size: 10px;
	letter-spacing: 0.04em;
	margin-top: 2px;
}

.flow__note-badge::before, .flow__note-badge::after {
	background-repeat: no-repeat;
	background-size: auto;
	content: "";
	display: block;
	height: 19px;
	width: 14px;
}

.flow__note-badge::before {
	background-image: url("images/flow-left.svg");
	margin-right: 6px;
}

.flow__note-badge::after {
	background-image: url("images/flow-right.svg");
	height: 22px;
	margin-left: 8px;
	transform: rotate(25deg);
}

.flow__note-text {
	color: var(--main-color);
	font-size: 18px;
	letter-spacing: 0.04em;
	line-height: 1.6;
}

@media (width <=439px) {
	.flow__item--right {
		flex-direction: row-reverse;
		margin-left: 0;
	}

	.flow__item::after {
		height: 284px;
		top: 50px;
		transform: translateY(50px) rotate(-67.5deg);
	}

	.flow__item--right::after {
		left: auto;
		right: 40px;
		top: 0;
		transform: translateY(50px) rotate(67.5deg);
		z-index: -1;
	}

	.flow__note-badge {
		left: -10px;
		top: -20px;
	}
}



/* === 問合せステップ === */

.step {
	margin: 0 auto 28px;
	position: relative;
	width: fit-content;
}

.step__line {
	border-top: 1px solid var(--dark-gray);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 0;
}

.step__list {
	display: flex;
	gap: 50px;
	justify-content: center;
	list-style: none;
	margin-bottom: 90px;
	position: relative;
}

.step__list-item {
	align-items: center;
	background-color: #E6E6E6;
	border-radius: 50%;
	color: var(--dark-gray);
	display: flex;
	font-size: 16px;
	font-weight: 700;
	height: 106px;
	justify-content: center;
	letter-spacing: 1em;
	text-align: center;
	width: 106px;
}

.step__list-item.current {
	background: var(--main-color);
	color: var(--white);
}

.step__list-item span:last-of-type {
	font-weight: inherit;
	letter-spacing: 0;
}



/* === フォーム === */

.form {
	background-color: var(--white);
	border-radius: 30px;
	box-shadow: 0 0 40px 0 #0000001A;
	color: var(--main-color);
	margin: 0 auto;
	max-width: 1140px;
	padding: 50px 90px 70px 50px;
	position: relative;
}

.form select, input[type="checkbox"], input[type="radio"] {
	appearance: none;
}

.form__text {
	color: currentcolor;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .22em;
	margin-bottom: 30px;
	text-align: center;
}

.mw_wp_form .hasDatepicker {
	cursor: pointer;
}

.mwform-checkbox-field.horizontal-item {
	flex: 1;
	padding-left: 14px;
	text-align: left;
	white-space: nowrap;
}

.mw_wp_form {
	color: var(--main-color);
}

/* 通常エラー */
.mw_wp_form .error {
	display: inline;
	font-size: 12px !important;
	letter-spacing: 0.1em;
	text-align: left;
	width: 100%;
}

.select-wrapper .error {
	left: 0;
}

.form__group .error {
	display: block;
	padding-top: 1em;
}


/* checked */

.form__inner--type .mwform-checkbox-field.horizontal-item {
	align-items: center;
	border: 1px solid var(--light-gray);
	border-radius: 15px;
	color: var(--label-gray);
	display: flex;
	height: 60px;
	justify-content: flex-start;
	padding: 20px;
	width: fit-content;
}

/* チェックボックスの文字 */
.form__inner--type .mwform-checkbox-field span.mwform-checkbox-field-text {
	color: inherit;
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em
}

.form__inner--type .mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: #e6e6e6;
}



/* 背景つきチェックボックスの選択 */
.form__inner--type .mwform-checkbox-field.horizontal-item:has(input:checked) {
	background-color: var(--main-color);
	color: var(--white);
	transition: background-color 0.3s;
}

.form__inner--type .mwform-checkbox-field.horizontal-item:has(input:checked) .mwform-checkbox-field-text::before {
	background-color: var(--white);
}




.form__confirm-btns {
	display: flex;
	gap: 30px;
	justify-content: center;
}

.form__btn {
	background-color: var(--main-color);
	border: none;
	border-radius: 100vh;
	color: var(--white);
	display: block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1;
	margin: 0 auto;
	padding: 32px 2em;
	text-align: center;
	width: 405px;
}

.form__btn--back, .form__btn--confirm {
	margin: 0;
}

.form__btn--back {
	background: var(--white);
	border: 2px solid currentcolor;
	color: var(--main-color);
}

.mwform-checkbox-field-text {
	color: var(--label-gray);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .22em;
}

/* チェックボックス本体は非表示に */
.form input[type="checkbox"] {
	height: 0;
	margin: 0;
	opacity: 0;
	padding: 0;
	width: 0;
}

/* ラベル内のspanをチェックボックスの見た目にする */
.mwform-checkbox-field span.mwform-checkbox-field-text {
	align-items: center;
	color: var(--label-gray);
	cursor: pointer;
	display: inline-flex;
	height: 22px;
	padding-left: calc(22px + 19px);
	position: relative;
	user-select: none;
}

/* 疑似チェックボックスの枠 */
.mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: #FFB6B6;
	border-radius: 3px;
	content: "";
	height: 22px;
	left: 0;
	position: absolute;
	top: 0;
	width: 22px;
}



/* === プライバシーポリシー === */

.form__privacy-policy .mwform-checkbox-field span.mwform-checkbox-field-text {
	color: #E95377;
}

.privacy-box {
	border: 1px solid var(--dark-gray);
	border-radius: 15px;
	color: var(--text-sub-color);
	height: 235px;
	margin-top: 20px;
	padding: 24px 8px 24px 40px;
	width: auto;
}

.privacy-box__inner {
	height: 100%;
	overflow-y: scroll;
	padding-right: 30px;
}

/* Webkit系ブラウザのカスタムスクロールバー */
@supports selector(::-webkit-scrollbar) {
	.privacy-box__inner::-webkit-scrollbar {
		height: 8px;
		width: 8px;
	}

	.privacy-box__inner::-webkit-scrollbar-thumb {
		background: var(--text-color);
	}
}

/* Firefox専用のスクロールバー */
@supports not selector(::-webkit-scrollbar) {
	.privacy-box__inner {
		scrollbar-color: var(--text-color) var(--white);
		scrollbar-width: thin;
	}
}


.privacy-box h3 {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 10px;
	text-align: center;
}

.privacy-box p {
	font-size: 12px;
	font-weight: 400;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 1em;
}

.privacy-box .address {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 12px;
	text-align: right;
}

/* チェック時のマーク */
.mwform-checkbox-field input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border: solid var(--main-color);
	border-width: 0 3px 3px 0;
	content: "";
	height: 10px;
	left: 8px;
	position: absolute;
	top: 4px;
	transform: rotate(45deg);
	width: 6px;
}

/* form - privacy-policy */

.form__privacy-policy input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border: solid var(--white);
	border-width: 0 3px 3px 0;
}



.form__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-bottom: 40px;
	width: 100%;
}

.full-width {
	column-gap: 20px;
	width: 100% !important;
}


.form__label {
	align-items: flex-start;
	display: inline-flex;
	gap: 20px;
	width: calc((100% - 40px) / 2);
}

.form__label--check {
	align-items: center;
	width: 100%;
}


.form__label--long {
	align-items: flex-start;
	margin-bottom: 40px;
	width: 100%;
}

/* チェックボックス部の特別対応 */
.form__check-wrapper {
	display: flex;
	gap: 20px;
	margin-bottom: 65px;
}

.form__label input, .form__label select {
	background: var(--input-bg-color);
	border: none;
	border-radius: 15px;
	color: var(--text-color);
	flex: 1;
	font-weight: 400;
	padding: 1em;
	width: 100%;
}

.form__label select {
	appearance: none;
	cursor: pointer;
}

.form__label textarea {
	background: var(--input-bg-color);
	border: none;
	border-radius: 15px;
	color: var(--text-color);
	flex: 1;
	font-weight: 400;
	padding: 1em;
	width: 100%;
}

.form__label input::placeholder, .form__label textarea::placeholder, .form__label select {
	color: var(--dark-gray);
	font-size: 16px;
	font-weight: 350;
	letter-spacing: .22em;
}

/* text-align:left消すとエラー文がずれる */
.select-wrapper {
	flex: 1;
	max-height: 80px;
	position: relative;
	text-align: left;
	width: 100%;
}

.select-wrapper::after {
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-top: 8px solid var(--dark-gray);
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	right: 1.25em;
	top: 26px;
	width: 0;
}

.mw_wp_form_confirm .select-wrapper {
	color: var(--label-gray);
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
	padding-left: 13px;
}

.mw_wp_form_confirm .form__inner {
	margin-bottom: 65px;
}


.form__label-title, .form__check-wrapper .form__label {
	color: var(--label-gray);
	display: inline-block;
	flex: 0;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .22em;
	min-width: 125px;
	text-align: right
}

/* 問合せ種別 */

.form__contact-type .form__type-check-wrapper {
	column-gap: 30px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

/* エラーメッセージを一段下に表示 */
.form__contact-type .form__type-check-wrapper .error {
	display: block;
	padding-top: 5px;
	width: 100%;
}

.mw_wp_form_confirm .form__contact-type {
	align-items: center;
}




.form__small-title {
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

/*  「必須」など */
.form__label-note {
	display: block;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .22em;
	padding-top: 6px;
}

.form__group {
	flex: 1;
	text-align: left;
}




.form__small-text {
	font-size: 10px;
	font-weight: 700;
}

/* form__label-contentで囲まないとレイアウト崩れる */
.form__label-content {
	flex: 1;
	max-height: 90px;
	text-align: left;
	width: 100%;
}


/*  日付選択 */

.form__label-content.form__label-content--date {
	flex: none;
	margin-bottom: 30px;
}

.form__label-content--date span {
	display: block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 0.22em;
	line-height: 116%;
	margin-bottom: 12px;
	text-align: left;
}


.form__date {
	align-items: center;
	display: flex;
	gap: 35px;
}

/* エラー画面で狭くなる防止 */
.form__date input, .form__date select {
	letter-spacing: 0.22em;
	min-width: 295px;
	width: 295px;
}

.form__date .select-wrapper {
	flex: 0;
}

/* calendar mark */

.form__date-box {
	letter-spacing: inherit;
	position: relative;
	width: 295px;
}

/* calendar icon */
.form__date-box::after {
	color: var(--main-color);
	content: '\f073';
	font-family: var(--font-awesome);
	font-size: 21px;
	font-weight: 900;
	pointer-events: none;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
}

.mw_wp_form_confirm .form__date .select-wrapper {
	flex: auto;
}


/* アンケート */

/* text-align:left は確認画面ずれ防止 */
.form__survey-item {
	border-top: 1px solid var(--light-gray);
	padding: 25px 0;
	text-align: left;
}

.form__survey-item:last-of-type {
	border-bottom: 1px solid var(--light-gray);

}

/* 1．学習ペースについて etc */
.form__survey-label {
	display: block;
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .22em;
	margin-bottom: 16px;
	text-align: left;
}

/* options */
.form__survey .mwform-checkbox-field-text {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: .22em;
}

.form__survey-check {
	display: flex;
	gap: 45px;
}

.form__survey-check .mwform-checkbox-field.horizontal-item {
	flex: 0;
	margin-bottom: 0;
	margin-left: 0 !important;
	padding-left: 0;
}

.form__survey-check .mwform-checkbox-field-text {
	margin-bottom: 0;
}

/* checkbox */
.form__survey .mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: var(--light-gray);
}

/* checkmark */
.form__survey .mwform-checkbox-field input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border-color: currentcolor;
}

@media (width <=1000px) {
	.mw_wp_form .horizontal-item+.horizontal-item {
		margin-left: 0 !important;
	}

	.form__date {
		flex-direction: column;
	}

	.form__date-box {
		width: 100%;
	}

	.form__survey {
		width: 100%;
	}

	.form__survey-check {
		flex-direction: column;
		gap: 10px;
	}
}


.form__label--long .form__label-content {
	max-height: none;
}




.mw_wp_form .error:nth-of-type(3) {
	bottom: -3.5em !important;
	color: blue !important;
}



@media (width <=1024px) {
	.form__type-check-wrapper {
		flex-direction: column;
		gap: 20px;
	}

	.form__type-check-wrapper .error {
		padding-top: 0;
	}
}

/* === 確認画面 === */

.mw_wp_form_confirm .form__label {
	align-items: center;
	gap: 38px;
}

.mw_wp_form_confirm .form__label-content {
	color: var(--label-gray);
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
	overflow-wrap: break-word;
}

.mw_wp_form_confirm .form__label-title {
	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;
}

/* confirm - privacy */

.mw_wp_form_confirm .form__group {
	color: var(--label-gray);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.22em;
}

.mw_wp_form_confirm .form__check-wrapper {
	align-items: flex-start;
}

.mw_wp_form_confirm .full-width .form__label {
	align-items: flex-start;
	width: 100%;
}

/* type */

.mw_wp_form_confirm .form__type-check-wrapper {
	color: var(--label-gray);
	font-size: 16px;
	font-weight: 350;
	gap: 0;
	letter-spacing: 0.22em;
	padding-left: 13px;
}


/* date */

/* 【第1希望】など */
.mw_wp_form_confirm .form__label-content--date span {
	color: var(--hd-color);
	margin-bottom: 25px;
}

.mw_wp_form_confirm .form__date {
	color: var(--label-gray);
	font-size: 16px;
	font-weight: 350;
	letter-spacing: 0.22em;
	padding-left: 13px;
}

.mw_wp_form_confirm .form__date-box {
	width: 400px;
}

/* survey */

.mw_wp_form_confirm .form__survey {
	width: 100%;
}

.mw_wp_form_confirm .form__survey-check {
	color: var(--label-gray);
	font-size: 16px;
	font-weight: 350;
	gap: 0;
	letter-spacing: 0.22em;
}

/* confirm - checkmark */
.mw_wp_form_confirm .form__group::before,
.mw_wp_form_confirm .form__type-check-wrapper::before,
.mw_wp_form_confirm .form__survey-check::before {
	color: var(--hd-color);
	content: '\f00c';
	font-family: var(--font-awesome);
	font-weight: 900;
	margin-right: 16px;
}

@media (width <=1024px) {
	.form {
		padding: 50px 20px;
	}

	.step__list {
		gap: 20px;
		margin-bottom: 30px;
	}

	.step__list-item {
		height: 80px;
		width: 80px;
	}

	.form__inner {
		gap: 1.5em;
	}

	.form__label, .form__check-wrapper {
		align-items: flex-start;
		flex-direction: column;
		gap: .5em;
		width: 100%;
	}

	.form__label--long {
		margin-bottom: 1.5em;
	}

	.form__label-title, .form__check-wrapper .form__label {
		font-size: 16px;
		margin-bottom: 0;
		text-align: left;
		width: auto;
	}

	.lower {
		padding-top: 0;
	}

	.form__label input, .form__label select {
		border-radius: 10px;
		width: 100%;
	}

	.form__btn {
		width: 100%;
	}

	.mwform-checkbox-field.horizontal-item {
		padding-left: 0;
	}

	.form__label-content--date {
		flex: none;
		margin-bottom: 30px;
		max-height: unset;
	}

	.privacy-box {
		border-radius: 20px;
	}

	.mw_wp_form .error {
		left: 0;
	}

	.mw_wp_form_confirm .form__date {
		align-items: flex-start;
		gap: 10px;
	}

	/* === 確認画面 === */
	.mw_wp_form_confirm .form__label--long {
		align-items: flex-start;
	}

	.mw_wp_form_confirm .form__label {
		align-items: flex-start;
		gap: 10px;
	}

	.form__confirm-btns {
		flex-direction: column;
	}

	.mw_wp_form_confirm .form__survey-check,
	.mw_wp_form_confirm .form__type-check-wrapper {
		flex-direction: row;
		flex-wrap: unset;
	}

	.mw_wp_form_confirm .form__date-box {
		width: 100%;
	}

	.mw_wp_form_confirm .form__date .select-wrapper {
		padding-left: 0;
	}
}

/* 送信完了 */

.mw_wp_form_complete {
	color: var(--text-color);
	text-align: center;
}

/* 404
==================================================== */

.error-page__section {
	padding: 0 0 60px;
}

.error-page__container {
	text-align: center;
}

.error-page__text {
	margin-bottom: 60px;
}

.error__btn {
	background: var(--hd-color);
}

/* access
==================================================== */

.access {
	padding-bottom: 180px;
}

.access__container {
	max-width: 1390px;
}

.schools {
	color: var(--main-color);
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.schools__item {
	border: 1px solid currentcolor;
	border-radius: 15px;
	max-width: 390px;
	padding: 30px 5px 20px 20px;
	width: calc(100% / 3 - 40px);
}

.schools__name-en {
	color: var(--label-gray);
	display: block;
	font-family: var(--english-font);
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}

.schools__name {
	display: block;
	font-size: 24px;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
	text-align: center;

}

.schools__content {
	display: flex;
	gap: 20px;
	justify-content: flex-start;
}

.schools__cord a {
	color: inherit;
	display: block;
	font-size: 12px;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 2px;
	text-align: center;
	text-decoration-line: underline;
}

.schools__cord a i {
	font-size: 13px;
	margin-right: 3px;
}

.schools__cord img {
	max-width: 108px;
}

.schools__address {
	color: var(--text-sub-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 8px;


}

.schools__text {
	color: inherit;
	display: block;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-decoration-line: underline;
}

.schools__icon {
	font-size: 13px;
	margin-right: 5px;
}

@media (width <=1024px) {
	.access {
		padding-bottom: 80px;
	}

	.schools {
		align-items: center;
		flex-direction: column;
		gap: 20px;
	}

	.schools__item {
		padding: 20px 15px;
		width: 100%;
	}

	.schools__content {
		flex-direction: column;
	}

	.schools__cord img {
		display: none;
	}
}

.js-scrollable {
	overflow-x: auto;
}

.scroll-hint-icon-wrap {
	z-index: 80;

}

@media (width <=768px) {
	.btn {
		width: 100%;
	}
}



/* 投稿ページ
==================================================== */

.sg {
	position: relative;
}

.sg__wrapper {
	max-width: 1280px;
}

.sg__inner {
	background: var(--white);
	border-radius: 30px;
	box-shadow: 0 0 40px 0 #0000001A;
	left: 0;
	margin: 0 auto;
	margin-bottom: calc(70px - 50px);
	padding: 35px 35px 135px;
}

.sg__container {
	margin: 0 auto;
	max-width: 860px;
	width: 74%;
}

.sg__header {
	margin-bottom: 55px;
}

.sg__breadcrumb {
	color: var(--main-color);
	margin-bottom: 30px;
}

.sg__thumbnail {
	margin-bottom: 30px;
}

.sg__thumbnail img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
}

.sg__title {
	font-size: clamp(24px, 4vw, 32px);
	margin-bottom: 15px;
	text-align: center;
}

.sg__title::before {
	top: -80px;
}

.aioseo-breadcrumb {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.76;
}

.aioseo-breadcrumb a {
	color: currentcolor;
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
}

.aioseo-breadcrumb-separator {
	font-size: inherit;
	padding: 0 10px;
}

.single-title {
	font-size: 31px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.76;
	margin-bottom: 15px;
	text-align: center;
}

.sg__date-category {
	align-items: flex-end;
	display: flex;
	gap: 30px;
	justify-content: center;
}

.sg__date {
	color: var(--text-color);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0;
}

.sg__category .category-link {
	border: 1px solid currentcolor;
	border-radius: 100vh;
	color: var(--main-color);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 0.2em 2em;
	text-align: center;
}



/* === 投稿各要素 === */

.sg__content figcaption {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .22em;
	line-height: 1.76;
}

/* AddQuicktag
========================== */

/* h2 */
.article-hd {
	background-color: var(--light-gray);
	border-radius: 7px;
	color: var(--main-color);
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.76;
	padding: .24em 1.4em;
}

/* h3 */
.article-sub-hd {
	color: var(--main-color);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.76;
}

.article-sub-hd::before {
	content: '\f0c6';
	font-family: var(--font-awesome);
	font-size: 24px;
	margin-right: .5em;
}

/* button */
.article-btn {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.76;
	margin: 30px auto;
	min-width: 245px;
	padding: .9em 1em;
	text-align: center;
	width: fit-content;
}

/*  チェックマークつきリスト */

.check-icon-list {
	list-style-type: none;
	padding-left: 1.15em;
}


.check-icon-list li {
	color: var(--main-color);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.76;
	margin-bottom: 1em;
	padding-left: 2.2em;
	position: relative;
}

.check-icon-list li::before {
	color: currentcolor;
	content: "\f00c";
	font-family: var(--font-awesome);
	font-size: 17px;
	left: 0;
	position: absolute;
}

/* ol */
.number-list {
	list-style-position: outside;
	margin-left: 0;
	padding-left: 2.8em;
}

.number-list li {
	color: var(--main-color);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.76;
	margin-bottom: 1em;
	padding-left: .5em;
}

/* table */
.article-table-wrapper {
	margin-bottom: 30px;
	overflow-x: auto;
	width: 100%;
}

.article-table {
	border-collapse: collapse;
	width: 100%;
}

.article-table th, .article-table td {
	min-width: 10em;
	padding: .5em 1.5em;
}

.article-table th {
	background-color: var(--light-gray);
	border-bottom: 1px solid var(--white);
	color: var(--main-color);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .22em;
	text-align: left;
}

.article-table tr:last-child th {
	border-bottom: none;
}

.article-table td {
	border-bottom: 1px solid var(--light-gray);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: .22em;
}

.article-table tr:first-child td {
	border-top: 1px solid var(--light-gray);
}

/* ポイント囲いボックス */
.point-box {
	border: 1px solid currentcolor;
	border-radius: 15px;
	color: var(--main-color);
	margin-bottom: 50px;
	padding: 1.4em 45px 1.4em 80px;
	position: relative;
}

.point-box::before {
	color: currentcolor;
	content: '\f304';
	font-family: var(--font-awesome);
	font-size: 27px;
	font-weight: 900;
	left: 23px;
	position: absolute;
	top: 13px;
}

.point-box p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.76;
}

.sg__content strong,
.sg__content b {
	background: linear-gradient(transparent 90%, var(--sub-color) 90%);
	font-weight: 700;
}

.sg__nav a {
	align-items: center;
	display: flex;
	gap: 14px;
}

/* class属性の指定がないaのみ */
.sg__content a:not([class]) {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 350;
	letter-spacing: .1em;
	line-height: 1.76;
	text-decoration: underline;
}



.sg__nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 100px;
}

.sg__prev,
.sg__next {
	flex: 1;
	max-width: 400px;
}

.sg__prev-arrow,
.sg__next-arrow {
	color: var(--hd-color);
	font-size: 17px;
}



.sg__nav-title {
	color: var(--main-color);
	font-size: 14px;
	font-weight: 350;
	letter-spacing: .1em;
	line-height: 1.76;
}

.sg__next {
	text-align: right;
}

.sg__next a {
	justify-content: flex-end;
}


/* === 余白設定まとめ === */

.check-icon-list,
.number-list,
.article-table,
.point-box {
	margin-bottom: 50px;
	margin-top: 30px;
}

.article-hd,
.article-sub-hd {
	margin-bottom: 30px;
}

.sg__content p {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: .22em;
	line-height: 1.76;
	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,
.check-icon-list:last-child,
.number-list:last-child,
.article-table:last-child {
	margin-bottom: 0;
}

@media (width <=768px) {
	.sg__wrapper {
		width: 95%;
	}

	.sg__inner {
		padding: 25px 25px 60px;
		top: -25px;
	}

	.sg__container {
		width: 100%;
	}

	.sg__title::before {
		top: -40px;
	}

	.sg__date-category {
		align-items: center;
		flex-direction: column;
		gap: 10px;
	}

	.article-hd {
		font-size: 20px;
		padding: .24em 1em;
	}

	.point-box {
		padding-left: 60px;
	}

	.sg__nav {
		gap: 1em;
		margin-bottom: 60px;
	}

	.sg__nav-title {
		font-size: 12px;
	}

	.article-table th, .article-table td {
		font-size: 14px;
	}
}

/* 関連記事
========================== */

.related-posts {
	padding-bottom: 60px;
}

.related-posts__container {
	max-width: 1120px;
	width: 100%;
}


/* archive
==================================================== */

.loop-archive__container, .notice__container {
	max-width: 1120px;
}



@media (width <=1280px) {
	.loop-archive .news-list {
		margin-top: 40px;
	}

}


/* 記事一覧用
========================== */

.news-list {
	list-style: none;
	margin-bottom: 58px;
}

.news-list__item {
	border-bottom: 1px solid var(--light-gray);
}

.news-list__item:first-of-type {
	border-top: 1px solid var(--light-gray);
}

.news-list__link {
	align-items: center;
	color: inherit;
	display: flex;
	gap: 30px;
	padding: 40px 22px 40px 35px;
	text-decoration: none;
}

@media (any-hover: hover) {
	.news-list__link:hover {
		background: #f9f9f9;
	}
}

.news-list__date {
	color: var(--text-color);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	white-space: nowrap;
}

.news-list__category {
	border: 1px solid currentcolor;
	border-radius: 100vh;
	color: var(--main-color);
	font-size: 11px;
	font-weight: 400;
	letter-spacing: 0;
	padding: 4px 14px;
	text-align: center;
	white-space: nowrap;
	width: 10em;
}

.news-list__left {
	display: flex;
	gap: 33px;
}

.news-list__right {
	width: 100%;
}

.news-list__title {
	align-items: center;
	color: var(--text-color);
	display: flex;
	flex: 1;
	font-size: 16px;
	font-weight: 500;
	justify-content: space-between;
	letter-spacing: .05em;
	text-align: left;
}

.news-list__arrow {
	height: 28px;
	margin-left: 114px;
	width: 13px;
}

.news-list__no-posts {
	text-align: center;
}

@media (width <=768px) {
	.news-list__item {
		padding: 0 10px;
	}

	.news-list__link {
		align-items: flex-start;
		flex-direction: column;
		gap: 1em;
		padding: 30px 0;
	}

	.news-list__left {
		align-items: flex-end;
		gap: 1em;
	}

	.news-list__date {
		font-size: 13px;
	}

	.news-list__title {
		font-size: 14px;
	}

	.news-list__arrow {
		margin-left: 2em;
	}
}

/* ページネーション
========================== */

.pagination-wrapper {
	margin-bottom: 60px;
}

.pagination {
	display: flex;
	gap: 10px;
	justify-content: center;
}

.pagination a, .pagination span {
	background-color: var(--light-gray);
	border-radius: 2px;
	color: var(--text-color);
	display: inline-block;
	font-size: 13px;
	padding: .4em .8em;
	transition: var(--basic-transition);
}

.pagination a:hover {
	background: var(--text-color);
	color: var(--white);
}

.pagination .current {
	background-color: var(--main-color);
	color: var(--white);
	font-weight: 500;
	pointer-events: none;
}


/* 記事一覧リンク
========================== */

.section-link-wrap {
	text-align: right;
}

.section-link {
	display: inline-block;
}

.section-link__inner {
	align-items: center;
	display: flex;
	gap: 21px;
	justify-content: flex-end;
}

.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 {
	color: var(--main-color);
	display: block;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.22em;
	transition: var(--basic-transition);

}

.section-link__title-en {
	color: var(--main-color);
	display: block;
	font-family: var(--english-font);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: .22em;
	transition: var(--basic-transition);
}

.section-link:hover .section-link__title,
.section-link:hover .section-link__title-en,
.section-link:hover .section-link__arrow {
	border-color: var(--text-color);
	color: var(--text-color);
}


/* =========================
  Utility
========================= */
.u-text-white {
	color: var(--white)
}

.marker {
	font-size: inherit;
	font-weight: inherit;
	letter-spacing: inherit;
	text-decoration: underline;
	text-decoration-color: var(--sub-color);
	text-decoration-skip-ink: none;
	text-decoration-thickness: .33em;
	text-underline-offset: -0.2em;
}


/* === 図形の背景 === */

.u-bg-shapes {
	overflow: hidden;
	padding: 57px 0 130px;
	position: relative;
}

.u-bg-shapes::after {
	background: var(--bg-gray);
	clip-path: polygon(0 0,
			100% 0,
			100% 100%,
			0 40%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 0;
}

.u-bg-shapes::before {
	background: var(--main-color);
	clip-path: polygon(0 0,
			100% 0,
			100% 40%,
			0 100%);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.u-bg-shapes>* {
	position: relative;
	z-index: 2;
}

.u-mb-20 {
	margin-bottom: 20px;
}