/*
 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=Caveat:wght@400..700&family=Noto+Sans+JP:wght@100..900&display=swap');

:root {
	/* カラー */
	--main-color: #01A4D6;
	--sub-color: #EDFF47;
	--accent-color: #38FF22;
	--hd-color: #333333;
	--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: "Noto Sans JP", sans-serif;
	--english-font-extra: "Noto Sans JP", sans-serif;
	--font-awesome: "Font Awesome 6 Free";

	/* レイアウト */
	--header-height: 6rem;
	--mb-header-height: 4rem;
	--max-w: 79.375rem; /* 63.5rem at 0.8rem base */
	--max-width-s: 66.875rem; /* 53.5rem */
	--max-width-ss: 53.75rem; /* 43rem */

	/* 効果 */
	--basic-transition: .3s;
	--shadow-card: 0 0.25rem 1rem 0 rgb(0 0 0 / 10%);

	/* 文字 */
	--fz-page-title-en: clamp(1rem, 3.2vw, 1.3rem);
	--fz-page-title: clamp(1.3rem, 4.2vw, 1.8rem);
	--fz-section-label: clamp(0.9rem, 3vw, 1.2rem);
	--fz-section-title: clamp(1.4rem, 5vw, 2.55rem);
	--fz-block-title: clamp(0.9rem, 3vw, 1.05rem);
	--fz-q: clamp(1.6rem, 5.5vw, 2.9rem);
	--fz-button: clamp(0.9rem, 3vw, 1.05rem);
}

/* common
==================================================== */

* {
	box-sizing: border-box;
	font-family: var(--main-font);
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: .04em;
	margin: 0;
	padding: 0;
}

html {
	font-size: 1.1574vw;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

body {
	color: var(--text-color);
	font-family: var(--main-font);
	overflow-x:hidden;
}

/* line-heightは固定(rem)のみ。比例（単位なし）禁止 */
p {
	line-height: 1.65rem;
}

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;
}

/* 1025px以上でだけ改行を表示 */
.br-pc-1025 {
	display: none;
}

@media (min-width: 1025px) {
	.br-pc-1025 {
		display: block;
	}
}

/* 1024px以下でだけ改行を表示 */
.br-mb-1024 {
	display: none;
}

@media (max-width: 1024px) {
	.br-mb-1024 {
		display: block;
	}
}

@media (width <=38.4rem) {
	.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: 0.05rem solid var(--main-color);
	border-radius: 100vh;
	color: var(--main-color);
	display: inline-block;
	font-size: var(--fz-button);
	font-weight: 500;
	letter-spacing: .1em;
	max-width: 100%;
	padding: 1em 2em;
}

.border-btn::after {
	content: "\f35a";
	font-family: var(--font-awesome);
	font-weight: 900;
	display: inline-block;
	margin-left: 0.6em;
}

.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: 0.7rem;
	font-weight: 900;
	position: absolute;
	right: 1.4rem;
}

.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: 0.6rem;
}

.scroll-x::-webkit-scrollbar-track {
	background: #d9d9d9;
}

.scroll-x::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
	border-radius: 0.35rem
}

.scroll-x::-webkit-scrollbar-thumb:hover {
	background-color: rgb(255 255 255 / 30%);
}


section {
	padding: 6rem 0;
	position: relative;
}

section::before {
	content: none;
}

.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;
}

.section-text {
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
	margin: 0 auto;
}


/* contact confirmなどに使用 */
.section-lead {
	line-height: 2;
	margin-bottom: 4rem;
}

.sub-section-header {
	margin-bottom: 2rem;
}

.sub-section-title {
	color: var(--main-color);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .05em;
}

.sub-section-label {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .05em;
}


.container {
	margin: 0 auto;
	width: 63.5rem;
}

@media (width <=51.2rem) {


	.section-text {
		text-align: justify;
	}

	.section-lead {
		text-align: left;
	}

	.btn span {
		font-size: clamp(0.9rem, 5vw, 1rem);
	}

}


/* Cookie Notice
========================== */

#cookie-notice {
	border-radius: 0.5rem;
	bottom: 0.5rem;
	box-shadow: 0.25rem 0.25rem 1rem 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: 0.75rem 2rem !important;
	width: 100%;
}

.cn-text-container {
	font-size: 0.65rem;
	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: 0.15rem;
	color: var(--white);
	font-size: 0.7rem;
	padding: .2em 1em;
}

@media (width <=38.4rem) {
	#cookie-notice {
		width: 92% !important;
	}

	.cookie-notice-container #cn-notice-buttons {
		display: flex;
		flex-direction: column;
		gap: 0.25rem;
		margin: 0 auto;
		max-width: 15rem;
	}

	.cn-button.cookie-btn {
		height: 1.75rem;
	}
}


/* header
==================================================== */

.site-header {
	background: var(--hd-color);
	height: var(--header-height);
	left: 0;
	padding: 0.8rem 0 0.65rem;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
}

/* アドミンバー表示時はヘッダーを下にずらす */
body.admin-bar .site-header {
	top: 32px;
}

@media (width <=782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

.site-header__container {
	height: 100%;
	max-width: 52.75rem;
	width: 100%;
}

.site-header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	padding: 0;
}

.site-branding__image {
	position: relative;
	width: 7.25rem; /* 145px */
	z-index: -1;
}

.site-branding__label {
	color: var(--white);
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.site-header__right {
	align-items: center;
	display: flex;
	gap: 1.6rem;
}

.main-menu {
	color: var(--white);
	display: flex;
	gap: clamp(1.25rem, 3vw, 0.5rem);
	list-style: none;
}

.main-menu li:first-of-type {
	display: none;
}

.main-menu__item {
	color: inherit;
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: .05em;
}

.main-menu__item span {
	display: block;
	font-family: var(--main-font);
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: .05em;
	text-align: center;
}

/* ヘッダーの連絡先情報
========================== */

.info {
	align-items: center;
	color: var(--white);
	display: flex;
	gap: 0.6rem;
	line-height: 120%;
}

.info__title {
	border: 0.05rem solid currentcolor;
	display: grid;
	font-size: 0.6rem;
	font-weight: 400;
	height: 2.85rem;
	letter-spacing: .05em;
	line-height: 120%;
	place-items: center;
	text-align: center;
	width: 2.85rem;
}

.info__time {
	font-size: 0.55rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 120%;
}

.info__tel {
	color: inherit;
	font-size: clamp(1rem, 2vw, 1.35rem);
	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 <=64rem) {
	.main-nav {
		background-color: var(--white);
		height: 100vh;
		overflow-y: auto;
		padding: var(--mb-header-height) 2rem 0;
		position: fixed;
		right: -100%;
		top: 0;
		transition: all .6s;
		width: min(17.5rem, 80%);
		z-index: 200;
	}

	.main-nav .main-menu {
		align-items: center;
		flex-direction: column;
		gap: 1.2rem;
		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: 2rem;
		pointer-events: auto;
		position: absolute;
		right: 0.75rem;
		top: 0.85rem;
		width: 2rem;
		z-index: 300;
	}

	.hamburger__text {
		color: currentcolor;
		font-family: var(--english-font);
		font-size: 0.6rem;
		font-weight: 600;
		left: 50%;
		position: absolute;
		top: 1.6rem;
		transform: translateX(-50%);
	}

	.hamburger__border {
		background-color: currentcolor;
		height: 0.1rem;
		left: 0.55rem;
		position: absolute;
		transition: all .6s;
		width: 0.9rem;
	}

	.hamburger__border_top {
		top: 0.7rem;
	}

	.hamburger__border_center {
		top: 1rem;
	}

	.hamburger__border_bottom {
		top: 1.3rem;
	}

	.black_bg {
		background-color: var(--text-color);
		bottom: 0;
		cursor: pointer;
		left: 0;
		opacity: 0;
		pointer-events: none;
		position: fixed;
		right: 0;
		top: 0;
		transition: all .6s;
		visibility: hidden;
		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: 1rem;
		transform: rotate(45deg);
	}

	.main-nav-open .hamburger__border_center {
		left: 50%;
		width: 0;
	}

	.main-nav-open .hamburger__border_bottom {
		top: 1rem;
		transform: rotate(-45deg);
	}
}


@media (width <=64rem) {
	.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-image: url("images/hero.webp");
	background-position: center;
	background-size: cover;
	display: flex;
	height: 33rem;
	justify-content: center;
	padding-top: 6rem;
	position: relative;
	text-align: center;
}

/* hero 装飾シェイプ（absolute、.shape-split > * に忖度して背面 z-index:0） */
.shape-split > .hero-bg-shape-1,
.shape-split > .hero-bg-shape-2,
.shape-split .hero-bg-shape-1,
.shape-split .hero-bg-shape-2 {
	bottom: 0;
	pointer-events: none;
	position: absolute;
	z-index: 100;
}

.hero-bg-shape-1 {
	height: auto;
	left: -7rem;
	top: 0;
	object-fit: cover;
	object-position: left top;
	width: 34.4rem; /* 688px */
}
.hero-bg-shape-2 {
	height: auto;
	object-fit: cover;
	object-position: right bottom;
	right: -7rem;
	top: -6rem;
	width: 31.5rem; /* 630px */
}

.hero__container {
	position: relative;
	z-index: 2;
}

.hero__mb-logo {
	display: none;
}

.hero__inner {
	color: var(--white);
	padding-bottom: 0.75rem;
	padding-top: 4.5rem;
	text-align: center
}

.hero__main-copy {
	color: var(--white);
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 3rem;
	margin-bottom: 0.25rem;
}

.hero__main-copy-accent {
	color: var(--sub-color);
	font-size: 2.5rem;
}

.hero__main-copy-line1 {
	font-size: 1.2rem;
}

.hero-copy-shape-1,
.hero-copy-shape-2 {
	display: inline-block;
	height: 1rem;
	width: auto;
	vertical-align: middle;
}

.hero-copy-shape-1 {
	margin-right: 0.5rem;
}

.hero-copy-shape-2 {
	margin-left: 0.5rem;
}

.hero__sub-copy {
	color: #9FA0A0;
	font-family: "Caveat", cursive;
	font-size: 2.35rem;
	line-height: 3.75rem;
}

.hero__text {
	font-size: clamp(0.7rem, 2.8vw, 0.9rem);
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.6;
	margin-bottom: 1.5rem;
}

.hero__text-accent {
	color: var(--accent-color);
}

.hero__en-copy {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: clamp(1.5rem, 4.8vw, 2.35rem);
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.6;
	margin-bottom: 0.75rem;


}


@media (width <=64rem) {
	.hero {
		height: 37.1rem;
		padding-top: 1rem;
		position: relative;
	}

	.hero__mb-logo {
		display: block;
		margin-bottom: 3rem;
	}


	.hero__en-copy {
		margin-bottom: 2rem;
	}
}


/* CTAボタン
========================== */
.offer {
	align-items: flex-end;
	display: flex;
	gap: 3.7rem;
	justify-content: center;
	margin: 0 auto 2.75rem;
}

.offer__inner {
	color: var(--sub-color);
	position: relative;
	width: fit-content;
}

.offer__inner--corporate {
	color: var(--accent-color);
}

.offer__text {
	color: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.2;
	margin-bottom: 0.25rem;
	text-align: center;
}

.offer__btn {
	color: #2D4312;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: .1em;
	line-height: 1.35;
	padding: 0.9rem 2em;
	width: 19.5rem;
}

.offer__inner--corporate .offer__btn {
	background: var(--accent-color);
}

.offer__bubble {
	background: var(--text-color);
	border-radius: 100%;
	color: inherit;
	display: grid;
	font-size: 0.6rem;
	font-weight: 700;
	height: 3.5rem;
	left: -1.15rem;
	letter-spacing: .01em;
	line-height: 1.2;
	place-items: center;
	position: absolute;
	text-align: center;
	top: 0.15rem;
	transform: rotate(-24deg);
	width: 3.5rem;
}

.offer__bubble::before {
	border: 0.35rem solid transparent;
	border-top: 0.5rem solid var(--text-color);
	content: "";
	left: 74%;
	position: absolute;
	top: 95%;
	transform: translateX(-50%) rotate(-24deg);
}

.offer__btn span {
	display: block;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: .1em;
}

@media (width <=48rem) {
	.offer {
		align-items: center;
		flex-direction: column;
		gap: 1rem;
	}

	.offer__inner {
		width: 100%;
	}

	.offer__text {
		margin-left: auto;
		text-align: left;
		width: calc(100% - 3rem);
	}

	.offer__btn {
		width: 100%;
	}

	.offer__bubble {
		left: -0.8rem;
		top: 0;
	}
}

/* catch
==================================================== */

.catch {
	padding: 5rem 0;
}

.catch__content {
	flex-direction: column;
	padding-left: 0;
	padding-right: 0;
	text-align: center;
	margin: auto;
}

.catch__label {
	color: var(--label-gray);
	display: block;
	font-family: "Caveat", cursive;
	font-size: 1.4rem;
	letter-spacing: .08em;
	margin: 0 auto;
	position: relative;
	text-align: center;
	width: fit-content;
}

.catch__label::after {
	background: var(--sub-color);
	border-radius: 999px;
	content: "";
	display: block;
	height: 0.15rem;
	margin: 0.4rem auto 0;
	width: 70%;
}

.catch__right {
	width: 100%;
}

.catch__title {
	color: var(--text-color);
	display: inline-block;
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: .04em;
	position: relative;
}

.catch__title::before {
	background: var(--sub-color);
	border-radius: 50%;
	content: "";
	height: 4rem;
	left: -1.9rem;
	position: absolute;
	top: 30%;
	transform: translateY(-50%);
	width: 4rem;
	z-index: -1;
}

.catch__text {
	font-size: 0.8rem;
	margin: 2rem auto;
	text-align: center;
}

@media (width <=38.4rem) {
	.catch__text {
		width: 100%;
	}
}

@media (width <=38.4rem) {
	.catch__content {
		flex-direction: column;
		gap: 3rem;
	}
}

/* strengths
==================================================== */
.strengths {
	padding-bottom: 7.5rem;
	position: relative;
	z-index: 0;
}

.strengths.strengths--with-circles.shape-split {
	background-image: url("images/features-bg-shape.svg"), url("images/features-bg-shape.svg"), url("images/features-bg-shape.svg");
	background-position: left -0.5rem top 24.55rem, top 13.2rem right 8.5rem, bottom 3.25rem right 23.35rem;
	background-repeat: no-repeat;
	background-size: 15rem, 10rem, 7rem;
}

.strengths__bg {
	display: none;
}

.strengths__list {
	display: grid;
	gap: 3rem 2.5rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strengths__item {
	background-color: #f2f2f2;
	background-image: none;
	border-radius: 0.9rem 0 0 0;
	box-shadow: 0.7rem 0.4rem 0 var(--sub-color);
	min-height: 11rem;
	padding: 4rem 1rem 3rem;
	position: relative;
	text-align: center;
	width: 100%;
}


.strengths__number {
	color: #00E5FF;
	font-family: "Caveat", cursive;
	font-size: 1.5rem;
	font-weight: bold;
	left: 0.9rem;
	letter-spacing: .05em;
	line-height: 1;
	position: absolute;
	top: 1.5rem;
	transform: translateX(-35%) rotate(-11.77deg);
}

.strengths__title {
	color: var(--hd-color);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.4;
	margin-bottom: 0.7rem;
}

.strengths__text {
	color: var(--text-sub-color);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.8;
}

@media (width <=38.4rem) {
	.strengths__list {
		gap: 1rem;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (width <=26rem) {
	.strengths__list {
		grid-template-columns: 1fr;
	}
}


/* achievements
==================================================== */

.achievements {
	padding: 5.25rem 0;
}

.achievements__list {
	display: grid;
	grid-template-columns: 1fr auto auto 1fr;
}

.achievements__item {
	border-bottom: 0.05rem solid var(--main-color);
	border-right: 0.05rem solid var(--main-color);
	display: grid;
	grid-template-rows: 6em 5rem auto;
	justify-items: center;
	padding: 1.5rem 1rem;
	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: 0.9rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .05em;
	line-height: 1.65rem;
}

.achievements__item-image {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-bottom: 0.6rem;
}

.achievements__item--01 .achievements__item-image {
	max-width: 4.8rem;
}

.achievements__item--02 .achievements__item-image {
	max-width: 9.45rem;
}

.achievements__item--04 .achievements__item-image {
	max-width: 4rem;
}

.achievements__item--large .achievements__item-image {
	max-width: 9.1rem;
}

.achievements__item--07 .achievements__item-image {
	max-width: 7.05rem;
}

.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: 0.7rem;
	font-weight: 300;
	letter-spacing: .05em;
	line-height: 2.35;
}

.achievements__symbols {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: center;

}


.achievements__symbols-line {
	background-color: var(--main-color);
	height: 0.05rem;
	margin-left: -2.5rem;
	margin-right: -2.5rem;
	transform: rotate(-25deg);
	width: 7rem;
	z-index: 2;
}


.achievements__symbols-image {
	max-width: 8.2rem;
	transform: translateY(-1rem);
	z-index: 1;
}

.achievements__symbols-text {
	color: var(--text-sub-color);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: .17em;
	transform: translateY(0.5rem);
	z-index: 3;
}

@media (width <=60rem) {
	.achievements__list {
		grid-template-columns: 1fr 1fr;
	}

	.achievements__item {
		gap: 0.5rem;
		grid-template-rows: auto auto auto;
		padding: 1rem 0.75rem;
	}

	.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: 0.05rem solid var(--main-color);
	}

	.achievements__item-title {
		font-size: 0.8rem;
	}

	.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.webp");
	background-position: center;
	background-size: cover;
	padding: 4.6rem 0 3.7rem;
}


/* ===== 曇りガラス帯 ===== */
.reason__wrap {
	backdrop-filter: blur(0.5rem);
	background-color: rgb(255 255 255 / 60%);
	padding: 1rem 0 6rem;
}


.reason__header {
	margin-bottom: 1.75rem;
}


/* はみ出し許可 */
.reason__table-wrap {
	overflow: visible;
	padding-top: 1rem;
}

.reason__table {
	display: flex;
	gap: 0.25rem;
	justify-content: center;
}

/* ===== テーブル本体 ===== */

.reason__table-main {
	border-radius: 0.6rem;
	display: grid;
	gap: 0.15rem 0.25rem;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(6, 2.8rem);

}

.reason__table-emphasis {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 17.5rem;
	position: relative;
	transform: translateY(-0.75rem);
}

.reason__cell {
	background-color: var(--white);
	color: var(--text-sub-color);
	display: grid;
	font-size: 0.7rem;
	font-weight: 500;

	letter-spacing: .1em;

	min-width: 12.9rem;
	place-items: center;
	text-align: center;
}

.reason__cell--th {
	background-color: var(--hd-color);
	color: var(--white);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: .3em;
}

.reason__cell--th:first-of-type {
	border-radius: 0.6rem 0 0;
}

.reason__cell--letter {
	letter-spacing: 0.05em;
}

.reason__cell--emphasis {
	color: var(--hd-color);
	display: flex;
	font-size: 0.9rem;
	font-weight: 700;
	gap: 1rem;
	height: 3.2rem;
	letter-spacing: 0.1em;
	line-height: 1.3;
	padding-left: 1.5rem;
	text-align: left;
}

.reason__cell--th.reason__cell--emphasis {
	background: linear-gradient(-90deg, var(--hd-color) 0%, #09504A 100%);
	border-radius: 0.6rem 0.6rem 0 0;
	color: var(--white);
	display: grid;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .05em;
	padding-left: 0;
	place-items: center;
}

.reason__cell--emphasis:last-of-type {
	border-radius: 0 0 0.6rem 0.6rem;
}

.reason__icon {
	color: var(--hd-color);
	font-size: 1.05rem;
}

.radius-left-bottom {
	border-radius: 0 0 0 0.6rem;
}

@media (width <=48rem) {
	.reason__table-wrap {
		overflow-x: auto;
		padding: 1rem 0;
	}

	.reason__table {
		justify-content: flex-start;
	}

	.reason__cell--th {
		min-width: 8em;
	}
}


/* software
==================================================== */

.software .container {
	max-width: none;
	padding-left: 6.5rem;
	padding-right: 6.5rem;
	width: auto;
}

.tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.tabs__tab {
	background: var(--white);
	border: none;
	color: var(--label-gray);
	cursor: pointer;
	font-family: var(--english-font);
	font-size: 0.8rem;
	font-weight: 500;
}

.tabs__tab.is-active {
	border-bottom: 0.2rem solid var(--main-color);
	color: var(--main-color);
}

@media (width <=38.4rem) {
	.tabs {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.tabs__tab {
		padding: 1rem 0.75rem;
	}
}

.software__contents {
	border-bottom: 0.05rem solid #E8E8E8;
	padding: 3rem;
}


.software__name {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 2.05rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1;
}

.software__name-ja {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 1.1rem;
}

.software__description p {
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 2.2;
	max-width: 24.2rem;
	text-align: justify;
}

.software__description p+p {
	margin-top: 2em;
}

.software__movie {
	border-radius: 1rem;
	height: 13.5rem;
	margin-bottom: 1.2rem;
	overflow: hidden;
	padding-top: 56.25%;
	position: relative;
	width: 24rem;
}

.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: 2rem;
	grid-template-columns: 1fr 1fr;
}

.software__list {
	display: grid;
	gap: 0.6rem 1.9rem;
	grid-template-columns: repeat(2, 1fr);
	list-style: none;
}

.software__item {
	color: var(--main-color);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: .04em;
	padding-left: 1.4rem;
	position: relative;
}

.software__item::before {
	content: "\f192";
	font-family: var(--font-awesome);
	font-size: 0.65rem;
	font-weight: 400;
	left: 0;
	position: absolute;
}


@media (width <=38.4rem) {
	.software__block {
		grid-template-columns: 1fr;
		padding-bottom: 3rem;
	}

	.software__contents {
		padding: 0 0.5rem;
	}

	.software__movie {
		width: 100%;
	}
}



/* course
==================================================== */

.course {
	padding: 6.4rem 0;
}

.course__container {
	text-align: center;
}

.course__header {
	margin-bottom: 2.4rem;
}

.course__ranking {
	overflow: hidden;
	padding: 2.85rem 0 6.5rem;
	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: 2.4rem;
}

.course__intro-header {
	margin-bottom: 1.7rem;
	position: relative;

}

.course__intro-header::before {
	background: var(--white);
	content: '';
	height: 0.05rem;
	left: 0;
	position: absolute;
	top: calc(50% - 0.05rem);
	width: 100%;
}

.course__intro-bg {
	background: var(--main-color);
	margin: 0 auto;
	padding: 0 4.5rem;
	position: relative;
	width: fit-content;
}

.course__intro-title {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}


.course__intro-label {
	display: block;
	font-family: var(--english-font);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.course__intro-text {
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin: 0 auto;
	max-width: 37.75rem;
}

.course__cards {
	display: grid;
	gap: 1.6rem;
	grid-template-columns: repeat(3, 1fr);
}


@media (width <=60rem) {
	.course__intro-bg {
		padding: 0 1rem;
	}

	.course__cards {
		display: flex;
		flex-wrap: wrap;
		gap: 3rem;
		justify-content: center;
	}
}


.course-card {
	background: var(--white);
	border-radius: 1rem;
	box-shadow: 0 0 1rem 0 #00000040;
	display: flex;
	flex-direction: column;
	flex: 0 0 21.45rem;
	gap: 1rem;
	min-height: 20.8rem;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 21.45rem;
}

.course-card__block {
	width: 100%;
}

.course-card__header {
	align-items: center;
	background-color: var(--main-color);
	color: var(--white);
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1.5rem 0;
	position: relative;
	text-align: center;
	width: 100%;
}

.course-card__header .course-card__en,
.course-card__header .course-card__title {
	color: var(--white);
}

.course-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	padding: 1rem 2.5rem 2.5rem;
	width: 100%;
}

.course-card__body > .course-card__description {
	text-align: left;
}

.course-card__body > .course-card__software {
	align-self: center;
}

.course-card__block--fee {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	width: 11rem;
}

.course-card__fee-row {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.course-card__block--total {
	align-items: center;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	text-align: left;
	width: 100%;
	margin-bottom: 1rem;
}

.course-card__total-time-block {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.course-card__block--total .course-card__time {
	background: none;
	border-radius: 0;
	color: var(--hd-color);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .05em;
	padding: 0;
}

.course-card__time-minutes {
	color: var(--hd-color);
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: .04em;
	padding-left: 0.1rem;
}

.course-card__fee-label {
	border: 0.05rem solid var(--hd-color);
	border-radius: 0;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: .05em;
	padding: 0.2em 0.9em;
}

.course-card__fee-value {
	background-image: linear-gradient(to bottom, transparent 60%, var(--bg-gray) 60%);
	color: var(--text-color);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.course-card__total-label {
	color: var(--text-sub-color);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.course-card__total-value {
	align-items: baseline;
	display: flex;
	flex-wrap: wrap;
	gap: 0.15rem;
	justify-content: flex-end;
}

.course-card__total-number {
	color: var(--hd-color);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
}

.course-card__total-yen {
	color: var(--hd-color);
	font-size: 0.9rem;
	font-weight: 400;
	vertical-align: top;
}

.course-card__total-tax {
	color: var(--hd-color);
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: .04em;
}


.course-card__badge {
	align-items: center;
	display: flex;
	gap: 0.4rem;
	left: 0.75rem;
	position: absolute;
	top: 0.75rem;
}

.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: 0.4rem;
	font-weight: 900;
	position: absolute;
	-webkit-text-fill-color: transparent;
	top: 50%;
	transform: translateY(-50%) rotate(50deg);
}

.course-card__badge::before {
	left: -0.5rem;
	top: 100%;
}

.course-card__badge::after {
	left: 0.25rem;
	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: 0.4rem;
	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: -0.5rem;
}

.course-card__badge-text {
	background: linear-gradient(135deg, #FFD900, #B5AA2C);
	background-clip: text;
	color: currentcolor;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: .05em;
	-webkit-text-fill-color: transparent;
	transform: rotate(-16deg);
}

.course-card__badge-text span {
	display: flex;
	font-size: 0.9rem;
	font-weight: 700;
	justify-content: center;
	letter-spacing: .05em;
	line-height: 1;
}

.course-card__badge-text i {
	font-size: 0.9rem;
	padding-right: 0.1rem;
}

.premium-budge {
	background: linear-gradient(286.68deg, #E95377 26.6%, #833DA3 75.79%);
	background-clip: text;
	font-size: 0.7rem;
	font-weight: 700;
	left: 0.75rem;
	letter-spacing: 0.05em;
	position: absolute;
	-webkit-text-fill-color: transparent;
	top: 0.75rem;
	transform: rotate(-16deg);
}

.premium-budge span {
	display: block;
	font-size: 0.6rem;
	font-weight: inherit;
	letter-spacing: inherit;
}

.course-card__en {
	color: var(--main-color);
	font-family: "Caveat", cursive;
	font-size: 0.9rem;
	font-weight: 500;
	left: 0.5rem;
	letter-spacing: 0.05em;
	position: absolute;
	top: 0.5rem;
	transform: rotate(-18.33deg);
}

.course-card__title {
	align-items: center;
	color: var(--main-color);
	display: flex;
	font-size: 1.2rem;
	font-weight: 700;
	height: 1.6rem;
	letter-spacing: .05em;
	margin-bottom: 0;
}

.course-card__title--small {
	font-size: 0.9rem;
	line-height: 1.35;
}

.course-card__software {
	background: var(--sub-color);
	border: none;
	border-radius: 1.375rem;
	color: var(--hd-color);
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: .04em;
	margin: 0;
	padding: 0.65rem 2rem;
}

.course-card__software > i {
	font-size: inherit;
	position: relative;
	left: -0.5rem;
}

.course-card__middle {
	padding: 0.35rem 1.35rem;
	position: relative;
}

.course-card__middle::before {
	background: var(--main-color);
	content: '';
	display: block;
	height: 8rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 0.45rem;
}

.course-card__middle::after {
	background: var(--main-color);
	content: '';
	display: block;
	height: 8rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 0.45rem;
}

.course-card__description {
	color: var(--text-color);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: .05em;
	line-height: 1.7;
	margin-bottom: 0;
	text-align: justify;
}

/* =========================
  meta
========================= */
.course-card__meta {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.course-card__time {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	font-size: 0.6rem;
	font-weight: 700;
	padding: 0.2em 1em;
}

.course-card__price {
	align-items: baseline;
	color: var(--main-color);
	display: flex;
	gap: 0.1rem;
}

.course-card__price-number {
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.course-card__price-yen {
	font-size: 0.8rem;
	font-weight: 700;
}

.course-card__price-tax {
	font-size: 0.55rem;
	font-weight: 700;
	letter-spacing: .05em;
}


/* =========================
  note block
========================= */
.course-card__note {
	background: var(--light-gray);
	border-radius: 0.5rem;
	bottom: -1.75rem;
	box-shadow: 0 0.3rem 0.5rem 0 #00000040;
	left: 1rem;
	padding: 0.2rem 1rem 0.9rem;
	position: absolute;
	right: 1rem;
}

.course-card__note-title {
	color: var(--main-color);
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 0.35rem;
	position: relative;
}

.course-card__note-title::before, .course-card__note-title::after {
	background-repeat: no-repeat;
	content: "";
	height: 0.5rem;
	position: absolute;
	top: 0.4rem;
	width: 0.3rem;

}

.course-card__note-title::before {
	background-image: url("images/course-card-left.svg");
	left: -0.5rem;
}

.course-card__note-title::after {
	background-image: url("images/course-card-right.svg");
	right: -0.5rem;
}

.course-card__note-body {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.course-card__note-content {
	background: var(--white);
	border-radius: 0.25rem;
	padding: 0.3rem 0.5rem 0.1rem;
}

.course-card__note-text {
	color: #4B4B4B;
	font-size: 0.5rem;
	letter-spacing: .05em;
}

.course-card__note-text--accent {
	color: var(--main-color);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.course-card__note-price {
	align-items: baseline;
	color: #FB0;
	display: flex;
	font-weight: 700;
	gap: 0.1rem;
	letter-spacing: .05em;
}

.course-card__note-price-number {
	font-size: 1.05rem;
	font-weight: inherit;
}

.course-card__note-price-yen {
	font-size: 0.6rem;
	font-weight: inherit;
}


.course-list {
	padding: 4rem 0;
}

.course-list__container {
}


.course-list__header {
	margin-bottom: 2.8rem;
	text-align: center;
}

.course-list__title {
	color: var(--main-color);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .05em;
}

.course-list__label {
	color: var(--main-color);
	font-family: var(--english-font);
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: .05em;
}


.course-list__tab {
	font-size: 0.7rem;
}

.course-list__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-inline: auto;
	margin-bottom: 2rem;
	max-width: 100%;
	width: 45rem;
}


.course-list__tab-text {
	align-items: center;
	display: flex;
	font-size: inherit;
	gap: 0.35rem;
	margin: 0;
}

.course-list__tab-text::after {
	align-items: center;
	align-self: center;
	color: #9FA0A0;
	content: "\f0ab";
	font-family: var(--font-awesome);
	font-size: 0.6rem;
	font-weight: 900;
	justify-content: center;
	line-height: 1;
	transform: translateY(0.1rem);
	transition: var(--basic-transition);
}

.course-list__tabs .tabs__tab {
	align-items: center;
	background: #E0E0E0;
	border: none;
	border-radius: 1rem;
	color: #616161;
	cursor: pointer;
	display: inline-flex;
	font-family: var(--main-font);
	font-size: 0.8rem;
	font-weight: 500;
	justify-content: center;
	letter-spacing: .04em;
	padding: 0.15rem 1rem 0.25rem;
	transition: var(--basic-transition);
}

.course-list__tabs .tabs__tab:hover {
	opacity: .9;
}

.course-list__tabs .tabs__tab.is-active {
	background: var(--sub-color);
	color: var(--hd-color);
}

.course-list__tabs .tabs__tab.is-active .course-list__tab-text::after {
	color: var(--hd-color);
}

.course-list__content-inner {
	display: flex;
	gap: 1.5rem;
	margin-left: -6.5rem;
	padding-left: 6.5rem;
	position: relative;
}

.course-list__vertical-label {
	color: var(--bg-gray);
	font-family: var(--english-font);
	font-size: 4.5rem;
	font-weight: 500;
	left: 0;
	letter-spacing: .05em;
	line-height: 1.2;
	margin: 0;
	position: absolute;
	text-transform: capitalize;
	top: 0;
	white-space: nowrap;
	writing-mode: vertical-rl;
	text-orientation: mixed;
}

.course-list__main {
	flex: 1;
	min-width: 0;
}

.course-list__panel-header {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.course-list__panel-header::after {
	background: linear-gradient(to right, var(--hd-color) 0%, var(--hd-color) 10%, var(--bg-gray) 10%);
	content: '';
	flex: 1;
	height: 1px;
	min-width: 0;
}

.course-list__panel-title {
	color: var(--hd-color);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin: 0;
}

/* =========================
  scroll area
========================= */

/* 帯を固定するための外枠 */
.course-list__scroll-wrap {
	overflow: hidden;
	position: relative;
}

.course-list__scroll {
	overflow-x: auto;
	padding: 2rem 2rem 1.5rem 0;
	scrollbar-color: var(--main-color) #d9d9d9;
	scrollbar-width: thin;
}

.course-list__scroll::-webkit-scrollbar {
	height: 0.6rem;
}

.course-list__scroll::-webkit-scrollbar-track {
	background: #d9d9d9;
}

.course-list__scroll::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
	border-radius: 0.35rem;
}

.course-list__scroll::-webkit-scrollbar-thumb:hover {
	background-color: rgb(255 255 255 / 30%);
}

/* 右端の半透明帯（固定） */
.course-list__scroll-wrap::after {
	background: #FFFFFFE5;
	content: "";
	height: 100%;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	width: 3.5rem;
}

/* =========================
  track
========================= */
.course-list__track {
	display: flex;
	gap: 1.5rem;
}

.course-list__spacer {
	flex: 0 0 2.4rem;

}

@media (width <=38.4rem) {
	.course-list__scroll-wrap::after {
		content: none;
	}
}


/* case
==================================================== */

section.case {
	overflow-x: hidden;
	padding-bottom: 0;
}

.case .case_container {
	align-items: stretch;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	width: 100%;
}

.case .case_header {
	align-items: center;
	align-self: stretch;
	background-color: var(--main-color);
	background-image: url("images/cection-header-dotted.svg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 61% auto;
	border-top-right-radius: 5rem;
	display: flex;
	flex: 0 0 30%;
	justify-content: center;
}

.case .case_header .catch__title {
	position: relative;
	z-index: 1;
}

.case .case_header .catch__title::before {
	background: var(--white);
	z-index: -1;
	left: -3rem;
	transform: translateY(-45%);
}

.case .case_container .catch__label {
	color: var(--white);
	font-size: 5rem;
	padding-bottom: 0.5rem;
}

.case .case_container .catch__label::after {
	display: none;
}

.case .case_slider-wrap {
	align-self: stretch;
	flex: 0 0 70%;
	padding-bottom:1rem;
}


/* ==============================
   slider
============================== */

.case_slider-wrap {
	position: relative;
}

.case_slider {
	position: relative;
}

.case_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
============================== */

/* slick-slide 内のラッパー：100%・シャドウのみ */
.case_card-wrap {
	border-radius: 1.25rem;
	box-sizing: border-box;
	height: 100%;
	width: 100%;
	padding:1rem 1rem 2rem;
}

.case_card {
	background-color: var(--white);
	border-radius: 1.25rem;
	box-shadow: var(--shadow-card);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2.5rem 4rem;
	width: 100%;
	max-width: none;
}

.case_card__banner {
	display: block;
	margin-bottom: 1.2rem;
	text-align: center;
}

.case_card__banner span {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-left: auto;
	margin-right: auto;
	padding: 0.5rem 1.5rem;
	text-align: center;
	width: fit-content;
}

.case_card__headline {
	color: var(--main-color);
	margin-bottom: 1.25rem;
	text-align: center;
}

.case_card__headline .case_card__title {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.case_card__headline h3 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	margin-bottom: 0;
}

.case_card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.case_card__meta-item {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}
.case_card__meta-label {
	border: 1px solid var(--main-color);
	color: var(--main-color);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 0.1rem 1rem;
}

.case_card__meta-value {
	color: var(--main-color);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;

}

.case_card__body {
	color: var(--text-color);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	max-width: 100%;
	text-align: left;
}

.case_card__course {
	border: 1px solid var(--main-color);
	border-radius: 0.75rem;
	color: var(--main-color);
	letter-spacing: 0.04em;
	padding: 0.8rem 1.25rem;
	text-align: center;
	width: 100%;
}

.case_card__course span {
	color: var(--main-color);
	display: block;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 0.25rem;
}


.case_slider .slick-list {
	width: 42.608rem;
	margin: 0 auto;
	overflow-y: visible;
}



.prev-arrow, .next-arrow {
	cursor: pointer;
	position: absolute;
	top: 45%;
	transform: translate(-50%, -50%);
	z-index: 100;
}

.case_slider .prev-arrow,
.case_slider .next-arrow {
	height: 6.25rem;
	top: 50%;
	width: 2.25rem;
	z-index: 2;
}

.case_slider .prev-arrow {
	left: 0;
	transform: translate(120%);
}

.case_slider .next-arrow {
	right: 0;
	transform: translate(-120%);
}


/* solutions（case複製）
==================================================== */

section.solutions {
	overflow-x: hidden;
	padding-bottom: 0;
}

.solutions .solutions_container {
	align-items: stretch;
	display: flex;
	gap: 2rem;
	justify-content: space-between;
	width: 100%;
}

.solutions .solutions_header {
	align-items: center;
	align-self: stretch;
	background-color: var(--sub-color);
	background-image: url("images/cection-header-dotted.svg");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 61% auto;
	border-top-right-radius: 5rem;
	display: flex;
	flex: 0 0 30%;
	justify-content: center;
}

.solutions .solutions_header .catch__title {
	position: relative;
	z-index: 1;
}

.solutions .solutions_header .catch__title::before {
	background: var(--white);
	left: -3rem;
	transform: translateY(-45%);
	z-index: -1;
}

.solutions .solutions_container .catch__label {
	color: var(--white);
	font-size: 5rem;
	padding-bottom: 0.5rem;
}

.solutions .solutions_container .catch__label::after {
	display: none;
}

.solutions .solutions_slider-wrap {
	align-self: stretch;
	flex: 0 0 70%;
	padding-bottom: 1rem;
}

.solutions_slider-wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	position: relative;
}

.solutions_slider {
	position: relative;
}

.solutions_slider .slick-slide {
	height: auto;
	transition: opacity 0.3s ease;
}

.solutions_card-wrap {
	border-radius: 1.25rem;
	box-sizing: border-box;
	height: 100%;
	overflow: visible;
	padding-bottom:2rem;
	width: 100%;
}

.solutions_card-wrap h3 {
	font-family: "Caveat", cursive;
	font-size: 3rem;
}

.solutions_card {
	align-items: stretch;
	border-radius: 1.25rem;
	padding-right: 0.25rem;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	overflow: visible;
	width: 100%;
	max-width: none;
}

.solutions_card__block {
	border: 1px solid #CCCCCC;
	background-color: var(--white);
	border-radius: 0.75rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	overflow: visible;
	padding:0.75rem;
	width: calc(100% - 7rem);
}

.solutions_card__block + .solutions_card__block {
	margin-top: 4.5rem;
}

/* 1つ目のブロック：左寄せ、右側に4.5remの余白＋矢印を::afterで表示（:first-of-typeでCase.01のh3が先頭でも正しく当たる） */
.solutions_card__block:first-of-type {
	justify-content: flex-start;
	position: relative;
}

.solutions_card__block:first-of-type::after {
	background-image: url("images/solution-arrow.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom:-0.625rem;
	content: "";
	display: block;
	height: 3.25rem;
	left: 7rem;
	pointer-events: none;
	position: absolute;
	transform: translate(-50%, 100%);
	width: 6rem;
	z-index: 1;
}

/* 2つ目のブロック：右寄せ、左側に4.5remの余白 */
.solutions_card__block:last-of-type {
	color: #01A4D6;
	margin-left: auto;
}

.solutions_card__block:last-of-type h4 {
	color: #01A4D6;
}

.solutions_card__block h4 {
	color: #FFB8B8;
	display: inline-block;
	font-family: "Caveat", cursive;
	font-size: 2rem;
	transform: rotate(-10deg);
}

.solutions_card__block p {
	font-size: 0.8rem;
	padding-left: 0.8rem;
}

.solutions_card__block img {
	height: auto;
	max-width: 15rem;
	width: 100%;
}

.solutions_card__block > * {
	flex: 1 1 calc(50% - 0.5rem);
	min-width: 0;
}

.solutions_card__banner {
	display: block;
	margin-bottom: 1.2rem;
	text-align: center;
}

.solutions_card__banner span {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	display: block;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-left: auto;
	margin-right: auto;
	padding: 0.5rem 1.5rem;
	text-align: center;
	width: fit-content;
}

.solutions_card__headline {
	color: var(--main-color);
	margin-bottom: 1.25rem;
	text-align: center;
}

.solutions_card__headline .solutions_card__title {
	font-size: 1.2rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-bottom: 0.5rem;
}

.solutions_card__headline h3 {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.45;
	margin-bottom: 0;
}

.solutions_card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
	justify-content: center;
	margin-bottom: 1.25rem;
}

.solutions_card__meta-item {
	align-items: center;
	display: flex;
	gap: 0.5rem;
}

.solutions_card__meta-label {
	border: 1px solid var(--main-color);
	color: var(--main-color);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding: 0.1rem 1rem;
}

.solutions_card__meta-value {
	color: var(--main-color);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
}

.solutions_card__body {
	color: var(--text-color);
	font-size: 0.85rem;
	letter-spacing: 0.04em;
	line-height: 1.8;
	margin-bottom: 1.5rem;
	max-width: 100%;
	text-align: left;
}

.solutions_card__course {
	border: 1px solid var(--main-color);
	border-radius: 0.75rem;
	color: var(--main-color);
	letter-spacing: 0.04em;
	padding: 0.8rem 1.25rem;
	text-align: center;
	width: 100%;
}

.solutions_card__course span {
	color: var(--main-color);
	display: block;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin-bottom: 0.25rem;
}

.solutions_slider .slick-list {
	margin: 0 auto;
	overflow-y: visible;
	width: 42.608rem;
}

.solutions_slider .prev-arrow,
.solutions_slider .next-arrow {
	height: 6.25rem;
	top: 50%;
	width: 2.25rem;
	z-index: 2;
}

.solutions_slider .prev-arrow {
	left: 0;
	transform: translate(120%);
}

.solutions_slider .next-arrow {
	right: 0;
	transform: translate(-120%);
}


/* Slick.js
========================== */

.slick-track {
	display: flex;
	gap: 2rem;
	padding-top: 4.5rem;
}

.slick-dots {
	bottom: -2.5rem;
}

.slick-dots li {
	height: 0.65rem;
	width: 0.65rem;
}


.slick-dots li button::before {
	color: var(--label-gray);
	content: '•';
	font-size: 0.75rem !important;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	height: 0.65rem;
	left: 0;
	line-height: 0.65rem;
	opacity: 1;
	position: absolute;
	text-align: center;
	top: 0;
	width: 0.65rem;
}

.slick-dots li.slick-active button::before {
	color: var(--text-sub-color);
	opacity: 1;
}


@media (width <=38.4rem) {
	.case_card {
		width: 100%;
	}
}


@media (width <=38.4rem) {
	.prev-arrow, .next-arrow {
		display: none !important;
	}

	.slick-track {
		gap: unset;
	}

	.slick-dots {
		bottom: -3.5rem;
	}
}



/* Slick.js用のスクロール可能表示 */

.swipe-hint {
	display: none;
}

@media (width <=65rem) {
	.swipe-hint {
		background: rgb(0 0 0 / 50%);
		border-radius: 0.3rem;
		color: var(--white);
		display: block;
		font-size: 0.65rem;
		padding: 0.2rem 0.4rem;
		pointer-events: none;
		position: absolute;
		right: 0;
		top: 1rem;
		z-index: 10;
	}
}


/* cta
==================================================== */

.cta {
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--white);
	padding: 5.5rem 0 2.5rem;
	position: relative;
	text-align: center;
}
.cta{
	background-image: url('images/cta-bg.webp');
}
.cta--secondary{
	background-image: url('images/cta-bg-2.webp');
}

.shape-split {
	position: relative;
}

.shape-split::before,
.shape-split::after {
	aspect-ratio: 865 / 175;
	background: #E6E6E6;
	bottom: 0;
	content: "";
	height: auto;
	pointer-events: none;
	position: absolute;
	transform: translateY(50%);
	width: 50%;
	z-index: 0;
}

.shape-split::before {
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	left: 0;
}

.shape-split::after {
	clip-path: polygon(0 50%, 100% 0, 100% 100%);
	right: 0;
}



.shape-split > picture {
	position: static;
}

.cta__catch {
	font-size: clamp(0.9rem, 3vw, 1.15rem);
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.45;
	margin-bottom: 2.5rem;
}

.cta__tel-block {
	margin-bottom: 1.75rem;
}


.line {
	align-items: center;
	border: 0.05rem solid #FFFFFF40;
	border-radius: 0.9rem;
	color: var(--white);
	display: flex;
	flex: 1;
	margin: 0 auto 2.75rem;
	max-width: 22.75rem;
	padding: 0.7rem 1rem 0.7rem 0;
}

/* LINEロゴの最小高さ: 2rem LINEロゴの半分以上余白をとる */
.line__icon {
	height: 2rem;
	margin: 1rem;
	width: auto;
}

.line__center {
	flex: 1;
	margin-right: 0.4rem;
	text-align: left;
}

.line__text {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.05rem;
}

.line__link {
	color: inherit;
	font-family: var(--main-font);
	font-size: 0.5rem;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.45rem;
	text-decoration: underline;
}

.line__link::after {
	color: inherit;
	content: "\f08e";
	font-family: var(--font-awesome);
	font-size: 0.7rem;
	font-weight: 900;
	margin-left: 0.35rem;
	vertical-align: middle;
}

.line__img {
	height: auto;
	width: 6rem;
}

.line-for-page .line {
	border: 0.05rem solid #06C75540;
	color: var(--main-color);
}

@media (width <=38.4rem) {
	.cta {
		padding: 4rem 0;
	}

	.cta__left {
		flex: 1;
	}

	.cta__action-block {
		align-items: center;
		flex-direction: column;
	}

	.line__img {
		display: none;
	}
}

@media (width >=38.4rem) and (width <=51.2rem) {
	.line__img {
		display: none;
	}
}



/* answer
==================================================== */

.answer {
	border-left: 0.8rem solid var(--main-color);
	margin-bottom: 8rem;
	margin-top: 4rem;
	padding: 0 0 0 4rem;
}

.answer__container {
	width: 100%;

}

.answer__header {
	margin-bottom: 1.2rem;
}

.answer__title {
	margin-bottom: 1rem;
}

.answer__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 3rem;
}

.answer__left {
	flex: 1;
	min-width: 14rem;
}

.answer__copy {
	color: var(--text-sub-color);
	font-size: clamp(1rem, 3.2vw, 1.3rem);
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.answer__subtitle {
	color: var(--hd-color);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 0.8rem;
}

.answer__text {
	font-size: 0.8rem;
	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: 14rem;
}

.answer__right-inner {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2.8rem;
}

.answer__circle {
	align-items: center;
	border: 0.05rem solid var(--main-color);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	height: 8.2rem;
	justify-content: center;
	padding: 1rem;
	text-align: center;
	width: 8.2rem;
}

.answer__circle-num {
	color: var(--hd-color);
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: .04em;
	line-height: 1.75rem;
}

.answer__circle-title {
	color: var(--hd-color);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .04em;
}

.answer__content {
	flex: 1;
}

.answer__content-text {
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.9;
	margin-bottom: 0.4rem;
}

.answer__list {
	padding-left: 1rem;
}

.answer__list-item {
	color: var(--hd-color);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: .04em;
	line-height: 1.8;
}

.answer__img {
	margin-bottom: 1.9rem;

}

@media (width <=38.4rem) {
	.answer {
		margin-bottom: 4rem;
		padding-left: 0;
	}

	.answer__container {
		width: 90%;
	}

	.answer__inner {
		gap: 1.5rem;
	}

	.answer__right-inner {
		flex-direction: column;
		gap: 1.5rem;
	}

	.answer__circle {
		height: 6.5rem;
		width: 6.5rem;
	}

	.answer__circle-title {
		font-size: 0.8rem;
	}
}

/* 今ならリスキリング対象講座を受講すると */

.reskilling-message__container {
	text-align: center;
}

.reskilling-message__text {
	color: var(--main-color);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.6;
	margin-bottom: 0.4rem;
}

.reskilling-message span {
	font-size: 1.9rem;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 0.8;
}

.reskilling-message__desc {
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: .05em;
	margin-bottom: 1.25rem;
}

.reskilling-message__image img {
	margin: 0 auto 0.4rem;
}

.reskilling-message__caution {
	color: var(--main-color);
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: .05em;
}


/* sns
==================================================== */

.sns {
	padding-bottom: 6.25rem;
	text-align: center;
}

.sns__container {
}

.sns__title {
	color: var(--dark-green);
	font-family: var(--main-font);
	font-size: clamp(1.1rem, 3.5vw, 1.5rem);
	font-weight: 500;
	letter-spacing: .05em;
	margin-bottom: 0.4rem;
}

.sns__lead {
	margin-bottom: 2rem;
}

.sns__list {
	display: flex;
	gap: 2rem;
	justify-content: center;
}

/* grid-template-rows: auto; にしておかないとロゴ周囲の余白が確保できなくなる */
.sns__item {
	align-items: center;
	border: 0.05rem solid #D9D9D9;
	border-radius: 1rem;
	display: grid;
	grid-template-rows: auto;
	height: 9.2rem;
	max-width: 9.2rem;
	padding: 1rem 1.1rem;
	text-align: center;
	width: 9.2rem;
}

.sns__item-title {
	font-size: 0.6rem;
	font-weight: 500;
	letter-spacing: .04em;

}

/* ロゴのセーフスペースのための囲み 余白サイズはロゴの大きさにより再検討が必要 */
.sns__logo-wrap {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 4.2rem;
	padding: 1.05rem;
}

/* note余白 */
.sns__item:nth-of-type(3) .sns__logo-wrap {
	padding: 0;
}

.sns__item-logo {
	max-height: 4.2rem;
	width: 100%;
}

.sns__item-logo--instagram {
	margin: 0 auto;
	width: 2.1rem;
}

.sns__item-logo--note {
	width: auto;
}

.sns__item-logo--x {
	width: 1.8rem;
}

.sns__item-logo--threads {
	width: 2.85rem;
}

.sns__item-btn {
	font-family: var(--main-font);
	font-size: 0.6rem;
	font-weight: 400;
	height: 1.6rem;
	letter-spacing: .04em;
	width: 6.85rem;
}

.sns__item-btn.dark-btn::after {
	font-size: 0.55rem;
	right: 0.6rem;
}

@media (width <=38.4rem) {
	.sns__list {
		display: grid;
		gap: 0.5rem;
		grid-template-columns: 1fr 1fr;
	}

	.sns__item {
		max-width: unset;
		padding: 0.75rem;
		width: auto;
	}

	.sns__item-btn {
		width: 100%;
	}
}

@media (width >=38.45rem) and (width <=51.2rem) {
	.sns__list {
		flex-wrap: wrap;
	}
}

/* FAQ
==================================================== */

.faq {
	padding-bottom: 8.5rem;
}

.faq__container {
	max-width: 48rem;
}

.faq__list {
	display: flex;
	flex-direction: column;
	gap: 2.25rem;
}

.faq__item {
	border-radius: 0.5rem;
	box-shadow: 0 0 1.5rem 0 #E6E6E6;
	padding: 2rem 3rem 3rem 2rem;
}



/* ===== Question ===== */
.faq__q-text {
	display: inline-block;
	font-size: var(--fz-block-title);
	font-weight: 500;
	letter-spacing: 0.1em;
	padding-left: 3rem;
	position: relative;
}

.faq__q-text::before {
	bottom: 0;
	content: 'Q.';
	font-family: "Caveat", cursive;
	font-size: 2.9rem;
	font-weight: 600;
	left: 0;
	letter-spacing: .1em;
	line-height: 1;
	position: absolute;
}

/* ===== Answer ===== */
.faq__answer {
	color: #4F4F4F;
	font-size: 0.8rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
	padding-left: 2.75rem;
	padding-right: 3.5rem;
	padding-top: 0.5rem;
}

.faq__a-block {
	letter-spacing: .1em;
	padding-left: 3rem;
	padding-top: 0.5rem;
	position: relative;
}

.faq__a-block::before {
	color: #ED9DA0;
	content: 'A.';
	font-family: "Caveat", cursive;
	font-size: 2.5rem;
	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__question {
	color: var(--main-color);
	cursor: pointer;
	list-style: none;
	padding: 1rem 2rem 1rem 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: 0.1rem;
	right: 0;
	transform: translateY(-50%);
	width: 1.9rem;
}

/* 縦線（＋の縦棒） */
.faq__question::before {
	height: 1.9rem;
	opacity: 1;
	right: 0.9rem;
	transform: translateY(-50%) rotate(0deg);
	width: 0.1rem;
}

.faq__item[open] .faq__question {
	padding-bottom: 0.5rem;
}

.faq__item[open] .faq__question::before {
	opacity: 0;
	transform: translateY(-50%) rotate(90deg);
}

@media (width <=38.4rem) {
	.faq {
		padding-bottom: 4rem;
	}

	.faq__list {
		gap: 0.75rem;
	}

	.faq__item {
		padding: 1.25rem;
	}

	.faq__question::before {
		height: 1rem;
		right: 0.5rem;
	}

	.faq__question::after {
		width: 1rem;
	}

	.faq__answer {
		padding: 0 0.5rem;
	}
}


/* tel
==================================================== */

.tel {
	color: var(--white);
}

.tel__text {
	color: inherit;
	font-size: clamp(0.8rem, 2.8vw, 0.9rem);
	font-weight: 700;
	letter-spacing: 0.05em;
	margin-bottom: 1rem;
	text-align: center;
}

.tel__label {
	background: none;
	border: 0.05rem solid currentcolor;
	color: var(--white);
	display: grid;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.35;
	max-height: 4rem;
	padding: 1rem 0.8rem;
	place-items: center;
}

.tel__content {
	color: inherit;
	display: flex;
	gap: 1.3rem;
	justify-content: center;
}

.tel__info {
	text-align: left;
}

.tel__business-hours {
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.35;
}

.tel__number {
	color: currentcolor;
	font-size: 3.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1;
}

@media (width <=38.4rem) {
	.tel__label {
		padding: .5em;
		width: 16em;
	}

	.tel__business-hours {
		font-size: 0.6rem;
		margin-bottom: 0.3rem;
	}

	.tel__number {
		font-size: 1.2rem;
	}


}


/* CTA before contact
==================================================== */
.cta-before-contact .offer {
	display: none;
}

@media (width <=38.4rem) {
	.cta-before-contact .line {
		margin-bottom: 0;
	}
}

/* payment method
==================================================== */
.payment-method {
	padding: 1.5rem 0 3rem;
}

.payment-method__inner {
	align-items: center;
	background: #f2f2f2;
	border-radius: 1.5rem;
	display: flex;
	gap: 4.5rem;
	justify-content: space-between;
	margin: 5.5rem auto 0;
	padding: 1.8rem;
	max-width: 63.5rem;
	width: 100%;
}

.payment-method__intro {
	flex: 1;
	max-width: 21rem;
	padding-left:2rem;
}

.payment-method__title {
	align-items: center;
	color: var(--main-color);
	display: flex;
	font-size: 1.4rem;
	font-weight: 700;
	gap: 0.6rem;
	justify-content: center;
	letter-spacing: .05em;
	margin-bottom: 0.8rem;
}

.payment-method__title i {
	font-size: 1.4rem;
}

.payment-method__text {
	color: var(--text-sub-color);
	font-size: 0.8rem;
	letter-spacing: .04em;
	line-height: 1.8;
}

.payment-method__cards {
	display: grid;
	flex: 1.2;
	gap: 2rem;
	grid-template-columns: repeat(2, minmax(11rem, 1fr));
}

.payment-method__card {
	background: var(--white);
	border-radius: 1rem;
	box-shadow: 0 0 1rem rgb(0 0 0 / 6%);
	padding: 1.5rem 2.5rem 2.5rem;
	text-align: center;
}

.payment-method__icon {
	color: var(--text-color);
	font-size: 1.4rem;
	margin-bottom: 0.5rem;
}

.payment-method__card-title {
	color: var(--text-color);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 0.4rem;
}

.payment-method__card-text {
	color: var(--text-sub-color);
	font-size: 0.7rem;
	letter-spacing: .04em;
	line-height: 1.8;
	text-align: left;
}

@media (width <=51.2rem) {
	.payment-method__inner {
		flex-direction: column;
		padding: 1.5rem;
	}

	.payment-method__intro {
		max-width: none;
	}

	.payment-method__cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (width <=38.4rem) {
	.payment-method {
		padding: 1rem 0 2.5rem;
	}

	.payment-method__inner {
		padding: 1.2rem;
	}

	.payment-method__cards {
		grid-template-columns: 1fr;
	}
}


/* contact
==================================================== */
.contact {
	padding-bottom: 6.5rem;
	text-align: center;
}

.contact__container {
}



.contact__header {
	margin-bottom: 3rem;
}

.contact__text {
	margin-bottom: 1.75rem;
}


/* notice
==================================================== */
.notice {
	text-align: center;
}

@media (width <=38.4rem) {
	.notice {
		padding-bottom: 5rem;
	}
}

/* footer
==================================================== */

.site-footer {
	background: var(--hd-color);
	color: var(--white);
	padding: 2.1rem 0 5rem;
	text-align: center;
}

.site-footer__container {
}

.site-footer__inner {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	margin-bottom: 3rem;
	padding-left: 0.8rem;
	padding-right: 2.1rem;
}

.site-footer__tel .tel {
	color: var(--white);
}

.site-footer__tel .tel__text {
	display: none;
}


.site-footer__image {
	width: 7.25rem; /* 145px */
}

.site-footer__logo-text {
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

.site-footer__copyright {
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.45;
}

.footer-nav {
	margin-bottom: 1rem;
}


.footer-menu {
	display: flex;
	justify-content: center;
	list-style: none;
}

.footer-menu li {
	border-right: 0.05rem solid var(--white);
	display: grid;
	max-height: 0.8rem;
	padding: 0 1em;
	place-items: center;
}

.footer-menu li:last-of-type {
	border-right: none;
}

.footer-menu__item {
	color: inherit;
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}


@media (width <=48rem) {
	.footer-nav {
		margin-bottom: 1.5rem;
	}

	.footer-menu__item {
		align-items: center;
		display: flex;
		font-size: 0.6rem;
		min-height: 2rem;
		width: 100%;
	}

	.site-footer__inner {
		align-items: center;
		flex-direction: column;
		gap: 1.5rem;
		padding: 0;
	}

	.site-footer__image {
		width: 6.5rem;
	}

	.site-footer__copyright {
		font-weight: 300;
		padding: 0;
	}

}

@media (width <=38.4rem) {
	.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: 2rem;
		width: 100%;
	}
}




/* 固定ページ
==================================================== */


/* ページヘッダー */

.page-header {
	background-size: cover;
	overflow: hidden;
	padding-top: calc(var(--header-height) + 2.7rem);
	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.webp");
	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: 9rem;
}

.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: 0.7rem;
	letter-spacing: .04em;
}

/* corporate-training用は page-corporate-training.css へ移行済み */

.flow {
	text-align: center;
}

.flow__container {
}

/* flow base (flow--onedayがオーバーライド) */
.flow__list {
	display: flex;
	flex-direction: column;
	list-style: none;
	margin-bottom: 4.5rem;
	padding: 0;
}

.flow__item {
	align-items: center;
	display: flex;
	gap: 1.2rem;
	max-width: 36rem;
	position: relative;
}

.flow__item--left {
	margin-left: 0;
}

.flow__item--right {
	margin-left: 9.25rem;
}

.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: 0.7rem;
	height: 4.5rem;
	justify-content: center;
	width: 4.5rem;
}

.flow__circle p {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
}

.flow__step {
	font-family: var(--english-font);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1rem;
}

.flow__content {
	color: var(--main-color);
	letter-spacing: 0.04em;
	text-align: left;
}

.flow__item-text {
	font-size: 0.8rem;
}

.flow__item::after {
	background-color: var(--light-gray);
	content: "";
	height: 8rem;
	left: 2.5rem;
	position: absolute;
	top: 50%;
	transform: translateY(2.5rem) rotate(-58.5deg);
	transform-origin: top center;
	width: 0.05rem;
}

.flow__item--right::after {
	left: 0;
	top: 0;
	transform: translateY(2.5rem) rotate(58.5deg);
}

.flow__item:last-child::after {
	display: none;
}

/* apply flow
==================================================== */
.apply-flow {
	background-image: url("images/apply-bg-shape-1.svg"), url("images/apply-bg-shape-2.svg");
	background-position: -10rem 2.1rem, right -3.5rem top 11.35rem;
	background-repeat: no-repeat;
	background-size: 34.372rem 27rem, 21.6375rem 22.1125rem;
	position: relative;
	padding-top:0 !important;
}

/* 768〜1024px は style-md.css の .container に任せる */
@media (min-width: 1025px), (max-width: 767px) {
	.apply-flow__container.container {
		max-width: 73rem;
		width: 100%;
	}
}

.apply-flow__inner {
	align-items: flex-start;
	display: flex;
	gap: 1.5rem 3rem;
	justify-content: space-between;
}

.apply-flow__header {
	flex: 0 0 auto;
	position: relative;
	padding-top: 0;
	margin:0 auto;
}

.apply-flow__label {
	color: var(--text-sub-color);
	display: block;
	font-family: "Caveat", cursive;
	font-size: 1.2rem;
	letter-spacing: .06em;
	margin: 0 auto ;
	position: relative;
	z-index: 1;
	text-align: center;
}


.apply-flow__title {
	color: var(--text-color);
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: .04em;
	margin-bottom: 1rem;
	text-align: center;
}

.apply-flow__text {
	color: var(--text-sub-color);
	font-size: 0.8rem;
	line-height: 1.65rem;
	text-align: left;
}

.apply-flow__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 2.5rem 3.5rem;
	justify-content: center;
	max-width: 49.4rem;
	width: 100%;
}

.apply-flow__card {
	aspect-ratio: 7 / 8;
	background: var(--light-gray);
	border-radius: 1rem;
	flex: 0 0 calc((100% - 7.5rem) / 3);
	min-width: 10rem;
	padding: 2.5rem 1.5rem 4.5rem;
	position: relative;
	text-align: center;
}

/* 1つ目を除く各カードの左側に fa-angles-right（>>）を表示 */
.apply-flow__card:not(:first-child)::before {
	color: #9FA0A0;
	content: "\f101";
	font-family: var(--font-awesome);
	font-size: 1.25rem;
	font-weight: 900;
	left: calc(-3.75rem / 2);
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.apply-flow__card-icon {
	bottom: 1rem;
	display: block;
	height: auto;
	left: 50%;
	position: absolute;
	transform: translate(-50%, 0);
}

.apply-flow__card:nth-child(1) .apply-flow__card-icon { bottom: -1rem; left: 50%; width: 11rem; }
.apply-flow__card:nth-child(2) .apply-flow__card-icon { bottom: -1rem; left: calc(50% + 3.6rem); width: 4.5rem; }
.apply-flow__card:nth-child(3) .apply-flow__card-icon { bottom: -1rem; left: calc(50% + 2.9rem); width: 7.5rem; }
.apply-flow__card:nth-child(4) .apply-flow__card-icon { bottom: -1.25rem; left: calc(50% + 1.8rem); width: 9rem; }
.apply-flow__card:nth-child(5) .apply-flow__card-icon { bottom: -1.25rem; left: calc(50% - 0.3rem); width: 7rem; }

.apply-flow__card-title {
	align-items: center;
	color: var(--text-color);
	display: flex;
	font-size: 1.2rem;
	font-weight: 500;
	height: 2.5rem;
	justify-content: center;
	letter-spacing: 0.2rem;
	margin-bottom: 0;
	text-align: center;
}

.apply-flow__card:nth-child(2) .apply-flow__card-title {
	font-size: 0.8rem;
}

.apply-flow__card-label {
	color: #9FA0A0;
	font-size: 0.6rem;
	margin-bottom: 1rem;
}

.apply-flow__card-text {
	color: var(--text-sub-color);
	font-size: 0.8rem;
	text-align: left;
	line-height: 1.45rem;
}

@media (width <=38.4rem) {
	.apply-flow__inner {
		flex-direction: column;
	}

	.apply-flow__header {
		flex: 0 0 auto;
	}

	.apply-flow__cards {
		gap: 1.2rem;
	}

	.apply-flow__card {
		flex: 0 0 100%;
	}

	.apply-flow__card:not(:first-child)::before {
		display: none;
	}
}

.problems__columns {
	display: flex;
	flex-wrap: wrap;
	max-width: 100%;
	width: 62.5rem;
}

@media (min-width: 768px) {
	.problems__columns {
		margin-top: 3rem;
	}
}

.problems__columns > * {
	box-sizing: border-box;
	flex: 0 0 calc(100% / 3);
	min-width: 0;
}

.problems__columns > *:nth-child(4) { order: 6; }
.problems__columns > *:nth-child(5) { order: 5; }
.problems__columns > *:nth-child(6) { order: 4; }

/* Problemsでは img / picture に max-width:100% を当てない（アイコン幅を効かせる） */
.problems__columns img,
.problems__columns picture {
	max-width: none;
}

.problems__item {
	align-items: center;
	aspect-ratio: 416 / 265;
	background: var(--white);
	border-radius: 1.5rem;
	display: flex;
	justify-content: center;
	position: relative;
}

/* アイコン img・absolute（高さは指定しない） */
.problems__icon {
	height: auto;
	position: absolute;
	z-index: 1;
}

.problems__item:nth-child(1) .problems__icon { left: 0.4rem; top: 0; width: 26.95rem; } /* 539px */
.problems__item:nth-child(2) .problems__icon { left: 5.75rem; top: 1rem; width: 26.8rem; } /* 536px */
.problems__item:nth-child(3) .problems__icon { top: 2.25rem; right: 1.5rem; width: 14.3rem; } /* 286px */
.problems__item:nth-child(4) .problems__icon { right: 0; top: 0; width: 29.475rem; } /* 589.5px */
.problems__item:nth-child(5) .problems__icon { right: 2.25rem; top: 2rem; width: 32.6965rem; } /* 653.93px */
.problems__item:nth-child(6) .problems__icon { left: 0; bottom: 6rem; width: 17.8rem; } /* 356px */

/* pは親のflexで上下中央 → そこからtranslateでずらす。line-heightは固定(rem)、比例指定禁止 */
.problems__text {
	align-self: center;
	color: var(--text-color);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: .04em;
	line-height: 1.65rem;
	margin: 0;
	position: relative;
	text-align: center;
	z-index: 2;
}

.problems__item:nth-child(1) .problems__text { width: 8.9rem; transform: translate(4.5rem, -2rem); }
.problems__item:nth-child(2) .problems__text { width: 8.9rem; transform: translate(6.5rem, 0); }
.problems__item:nth-child(3) .problems__text { width: 8.9rem; transform: translate(5rem, 2rem); }
.problems__item:nth-child(4) .problems__text { width: 10rem; transform: translate(-4.5rem, -3.25rem); }
.problems__item:nth-child(5) .problems__text { width: 10.5rem; transform: translate(-0.5rem, -0.25rem); }
.problems__item:nth-child(6) .problems__text { width: 10.5rem; transform: translate(-4.15rem, -3.15rem);}

.flow--oneday {
	color: var(--text-color);
	padding: 5rem 0 0;
}

.flow--oneday .section-label {
	color: var(--label-gray);
}

.flow--oneday .section-title {
	color: var(--text-color);
}

.flow--oneday .section-text {
	color: var(--text-sub-color);
}

.flow--oneday .flow__columns {
	align-items: start;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	margin-top: 3rem;
}

.flow--oneday .flow__column {
	padding-bottom: 2.5rem;
}

.flow--oneday .flow__column:first-child {
	border-right: 0.15rem solid #E6E6E6;
	padding-right: 3rem;
}

.flow--oneday .flow__column:last-child {
	padding-left: 3rem;
}

.flow--oneday .flow__column-title {
	color: var(--text-color);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .05em;
	margin-bottom: 2rem;
}

.flow--oneday .flow__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 0;
}

.flow--oneday .flow__item {
	align-items: center;
	display: flex;
	gap: 1.2rem;
	height: 7rem;
	margin-left: 0;
	max-width: none;
	padding: 0;
	position: relative;
}

.flow--oneday .flow__item--right {
	margin-left: 0;
}

.flow--oneday .flow__item::after {
	background-color: var(--label-gray);
	height: 2rem;
	left: 2.25rem;
	opacity: 0.4;
	top: calc((100% - 4.5rem) / 2 + 4.5rem + (50% - 3rem) / 2);
	transform: none;
	width: 0.1rem;
}

.flow--oneday .flow__circle {
	align-items: center;
	background-color: transparent;
	border: 0.1rem solid var(--main-color);
	border-radius: 50%;
	color: var(--main-color);
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	height: 4.5rem;
	justify-content: center;
	width: 4.5rem;
}

.flow--oneday .flow__circle p {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	margin: 0;
}

.flow--oneday .flow__step {
	font-family: var(--english-font);
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1rem;
}

.flow--oneday .flow__content {
	color: var(--text-color);
}

.flow--oneday .flow__item-title {
	color: var(--main-color);
	font-weight: 700;
}

.flow--oneday .flow__item-text {
	font-size: 0.8rem;
}

.flow--oneday .flow__time {
	color: var(--main-color);
	display: flex;
	font-size: 0.7rem;
	font-weight: 700;
	gap: 0.4rem;
	letter-spacing: .04em;
}

.flow--oneday .flow__time::before {
	content: "";
	display: inline-block;
	width: 0.65rem;
	background: center/contain no-repeat url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%3E%3Cpath%20d%3D%22M6.5%2013C2.89453%2013%200%2010.1055%200%206.5C0%202.91992%202.89453%200%206.5%200C10.0801%200%2013%202.91992%2013%206.5C13%2010.1055%2010.0801%2013%206.5%2013ZM5.89062%206.5C5.89062%206.70312%205.99219%206.90625%206.14453%207.00781L8.58203%208.63281C8.86133%208.83594%209.24219%208.75977%209.41992%208.48047C9.62305%208.20117%209.54688%207.82031%209.26758%207.61719L7.10938%206.19531V3.04688C7.10938%202.7168%206.83008%202.4375%206.47461%202.4375C6.14453%202.4375%205.86523%202.7168%205.86523%203.04688L5.89062%206.5Z%22%20fill%3D%22%2301A4D6%22/%3E%3C/svg%3E");
}

@media (width <=38.4rem) {
	.flow--oneday .flow__columns {
		grid-template-columns: 1fr;
	}

	.flow--oneday .flow__column:first-child {
		border-right: none;
		padding-right: 0;
	}

	.flow--oneday .flow__column:last-child {
		padding-left: 0;
	}

	.flow--oneday .flow__column-title {
		text-align: center;
	}
}

/* === 問合せステップ === */

.step {
	margin: 0 auto 1.4rem;
	position: relative;
	width: fit-content;
}

.step__line {
	border-top: 0.05rem solid var(--dark-gray);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 0;
}

.step__list {
	display: flex;
	gap: 2.5rem;
	justify-content: center;
	list-style: none;
	margin-bottom: 4.5rem;
	position: relative;
}

.step__list-item {
	align-items: center;
	background-color: #E6E6E6;
	border-radius: 50%;
	color: var(--dark-gray);
	display: flex;
	font-size: 0.8rem;
	font-weight: 700;
	height: 5.3rem;
	justify-content: center;
	letter-spacing: 1em;
	text-align: center;
	width: 5.3rem;
}

.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: 1.5rem;
	box-shadow: 0 0 2rem 0 #0000001A;
	color: var(--main-color);
	margin: 0 auto;
	max-width: 57rem;
	padding: 2.5rem 4.5rem 3.5rem 2.5rem;
	position: relative;
}

.form select, input[type="checkbox"], input[type="radio"] {
	appearance: none;
}

.form__text {
	color: currentcolor;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: .22em;
	margin-bottom: 1.5rem;
	text-align: center;
}

.mw_wp_form .hasDatepicker {
	cursor: pointer;
}

.mwform-checkbox-field.horizontal-item {
	flex: 1;
	padding-left: 0.7rem;
	text-align: left;
	white-space: nowrap;
}

.mw_wp_form {
	color: var(--main-color);
}

/* 通常エラー */
.mw_wp_form .error {
	display: inline;
	font-size: 0.6rem !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: 0.05rem solid var(--light-gray);
	border-radius: 0.75rem;
	color: var(--label-gray);
	display: flex;
	height: 3rem;
	justify-content: flex-start;
	padding: 1rem;
	width: fit-content;
}

/* チェックボックスの文字 */
.form__inner--type .mwform-checkbox-field span.mwform-checkbox-field-text {
	color: inherit;
	font-size: 0.8rem;
	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: 1.5rem;
	justify-content: center;
}

.form__btn {
	background-color: var(--main-color);
	border: none;
	border-radius: 1.7rem;
	color: var(--white);
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .22em;
	margin: 0 auto;
	padding: 1.6rem 2em;
	text-align: center;
	width: 20.25rem;
}

.form__btn--back, .form__btn--confirm {
	margin: 0;
}

.form__btn--back {
	background: var(--white);
	border: 0.1rem solid currentcolor;
	color: var(--main-color);
}

.mwform-checkbox-field-text {
	color: var(--label-gray);
	font-size: 0.7rem;
	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: 1.1rem;
	padding-left: calc(1.1rem + 0.95rem);
	position: relative;
	user-select: none;
}

/* 疑似チェックボックスの枠 */
.mwform-checkbox-field span.mwform-checkbox-field-text::before {
	background-color: #FFB6B6;
	border-radius: 0.15rem;
	content: "";
	height: 1.1rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 1.1rem;
}



/* === プライバシーポリシー === */

.form__privacy-policy .mwform-checkbox-field span.mwform-checkbox-field-text {
	color: #E95377;
}

.privacy-box {
	border: 0.05rem solid var(--dark-gray);
	border-radius: 0.75rem;
	color: var(--text-sub-color);
	height: 11.75rem;
	margin-top: 1rem;
	padding: 1.2rem 0.4rem 1.2rem 2rem;
	width: auto;
}

.privacy-box__inner {
	height: 100%;
	overflow-y: scroll;
	padding-right: 1.5rem;
}

/* Webkit系ブラウザのカスタムスクロールバー */
@supports selector(::-webkit-scrollbar) {
	.privacy-box__inner::-webkit-scrollbar {
		height: 0.4rem;
		width: 0.4rem;
	}

	.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: 0.8rem;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 0.5rem;
	text-align: center;
}

.privacy-box p {
	font-size: 0.6rem;
	font-weight: 400;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 1em;
}

.privacy-box .address {
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.5;
	margin-bottom: 0.6rem;
	text-align: right;
}

/* チェック時のマーク */
.mwform-checkbox-field input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border: solid var(--main-color);
	border-width: 0 0.15rem 0.15rem 0;
	content: "";
	height: 0.5rem;
	left: 0.4rem;
	position: absolute;
	top: 0.2rem;
	transform: rotate(45deg);
	width: 0.3rem;
}

/* form - privacy-policy */

.form__privacy-policy input[type="checkbox"]:checked+span.mwform-checkbox-field-text::after {
	border: solid var(--white);
	border-width: 0 0.15rem 0.15rem 0;
}



.form__inner {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	margin-bottom: 2rem;
	width: 100%;
}

.full-width {
	column-gap: 1rem;
	width: 100% !important;
}


.form__label {
	align-items: flex-start;
	display: inline-flex;
	gap: 1rem;
	width: calc((100% - 2rem) / 2);
}

.form__label--check {
	align-items: center;
	width: 100%;
}


.form__label--long {
	align-items: flex-start;
	margin-bottom: 2rem;
	width: 100%;
}

/* チェックボックス部の特別対応 */
.form__check-wrapper {
	display: flex;
	gap: 1rem;
	margin-bottom: 3.25rem;
}

.form__label input, .form__label select {
	background: var(--input-bg-color);
	border: none;
	border-radius: 0.75rem;
	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: 0.75rem;
	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: 0.8rem;
	font-weight: 350;
	letter-spacing: .22em;
}

/* text-align:left消すとエラー文がずれる */
.select-wrapper {
	flex: 1;
	max-height: 4rem;
	position: relative;
	text-align: left;
	width: 100%;
}

.select-wrapper::after {
	border-left: 0.5rem solid transparent;
	border-right: 0.5rem solid transparent;
	border-top: 0.4rem solid var(--dark-gray);
	content: "";
	height: 0;
	pointer-events: none;
	position: absolute;
	right: 1.25em;
	top: 1.3rem;
	width: 0;
}

.mw_wp_form_confirm .select-wrapper {
	color: var(--label-gray);
	font-size: 0.8rem;
	font-weight: 350;
	letter-spacing: 0.22em;
	padding-left: 0.65rem;
}

.mw_wp_form_confirm .form__inner {
	margin-bottom: 3.25rem;
}


.form__label-title, .form__check-wrapper .form__label {
	color: var(--label-gray);
	display: inline-block;
	flex: 0;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .22em;
	min-width: 6.25rem;
	text-align: right
}

/* 問合せ種別 */

.form__contact-type .form__type-check-wrapper {
	column-gap: 1.5rem;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
}

/* エラーメッセージを一段下に表示 */
.form__contact-type .form__type-check-wrapper .error {
	display: block;
	padding-top: 0.25rem;
	width: 100%;
}

.mw_wp_form_confirm .form__contact-type {
	align-items: center;
}




.form__small-title {
	font-size: 0.6rem;
	font-weight: 700;
	line-height: 1.5;
}

/*  「必須」など */
.form__label-note {
	display: block;
	font-size: 0.5rem;
	font-weight: 700;
	letter-spacing: .22em;
	padding-top: 0.3rem;
}

.form__group {
	flex: 1;
	text-align: left;
}




.form__small-text {
	font-size: 0.5rem;
	font-weight: 700;
}

/* form__label-contentで囲まないとレイアウト崩れる */
.form__label-content {
	flex: 1;
	max-height: 4.5rem;
	text-align: left;
	width: 100%;
}


/*  日付選択 */

.form__label-content.form__label-content--date {
	flex: none;
	margin-bottom: 1.5rem;
}

.form__label-content--date span {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: 0.22em;
	line-height: 116%;
	margin-bottom: 0.6rem;
	text-align: left;
}


.form__date {
	align-items: center;
	display: flex;
	gap: 1.75rem;
}

/* エラー画面で狭くなる防止 */
.form__date input, .form__date select {
	letter-spacing: 0.22em;
	min-width: 14.75rem;
	width: 14.75rem;
}

.form__date .select-wrapper {
	flex: 0;
}

/* calendar mark */

.form__date-box {
	letter-spacing: inherit;
	position: relative;
	width: 14.75rem;
}

/* calendar icon */
.form__date-box::after {
	color: var(--main-color);
	content: '\f073';
	font-family: var(--font-awesome);
	font-size: 1.05rem;
	font-weight: 900;
	pointer-events: none;
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
}

.mw_wp_form_confirm .form__date .select-wrapper {
	flex: auto;
}


/* アンケート */

/* text-align:left は確認画面ずれ防止 */
.form__survey-item {
	border-top: 0.05rem solid var(--light-gray);
	padding: 1.25rem 0;
	text-align: left;
}

.form__survey-item:last-of-type {
	border-bottom: 0.05rem solid var(--light-gray);

}

/* 1．学習ペースについて etc */
.form__survey-label {
	display: block;
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: .22em;
	margin-bottom: 0.8rem;
	text-align: left;
}

/* options */
.form__survey .mwform-checkbox-field-text {
	font-size: 0.75rem;
	font-weight: 400;
	letter-spacing: .22em;
}

.form__survey-check {
	display: flex;
	gap: 2.25rem;
}

.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 <=50rem) {
	.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: 0.5rem;
	}
}


.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 <=51.2rem) {
	.form__type-check-wrapper {
		flex-direction: column;
		gap: 1rem;
	}

	.form__type-check-wrapper .error {
		padding-top: 0;
	}
}

/* === 確認画面 === */

.mw_wp_form_confirm .form__label {
	align-items: center;
	gap: 1.9rem;
}

.mw_wp_form_confirm .form__label-content {
	color: var(--label-gray);
	font-size: 0.8rem;
	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: 0.7rem;
	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: 0.8rem;
	font-weight: 350;
	gap: 0;
	letter-spacing: 0.22em;
	padding-left: 0.65rem;
}


/* date */

/* 【第1希望】など */
.mw_wp_form_confirm .form__label-content--date span {
	color: var(--hd-color);
	margin-bottom: 1.25rem;
}

.mw_wp_form_confirm .form__date {
	color: var(--label-gray);
	font-size: 0.8rem;
	font-weight: 350;
	letter-spacing: 0.22em;
	padding-left: 0.65rem;
}

.mw_wp_form_confirm .form__date-box {
	width: 20rem;
}

/* survey */

.mw_wp_form_confirm .form__survey {
	width: 100%;
}

.mw_wp_form_confirm .form__survey-check {
	color: var(--label-gray);
	font-size: 0.8rem;
	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: 0.8rem;
}

@media (width <=51.2rem) {
	.form {
		padding: 2.5rem 1rem;
	}

	.step__list {
		gap: 1rem;
		margin-bottom: 1.5rem;
	}

	.step__list-item {
		height: 4rem;
		width: 4rem;
	}

	.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: 0.8rem;
		margin-bottom: 0;
		text-align: left;
		width: auto;
	}

	.lower {
		padding-top: 0;
	}

	.form__label input, .form__label select {
		border-radius: 0.5rem;
		width: 100%;
	}

	.form__btn {
		width: 100%;
	}

	.mwform-checkbox-field.horizontal-item {
		padding-left: 0;
	}

	.form__label-content--date {
		flex: none;
		margin-bottom: 1.5rem;
		max-height: unset;
	}

	.privacy-box {
		border-radius: 1rem;
	}

	.mw_wp_form .error {
		left: 0;
	}

	.mw_wp_form_confirm .form__date {
		align-items: flex-start;
		gap: 0.5rem;
	}

	/* === 確認画面 === */
	.mw_wp_form_confirm .form__label--long {
		align-items: flex-start;
	}

	.mw_wp_form_confirm .form__label {
		align-items: flex-start;
		gap: 0.5rem;
	}

	.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 3rem;
}

.error-page__container {
	text-align: center;
}

.error-page__text {
	margin-bottom: 3rem;
}

.error__btn {
	background: var(--hd-color);
}

/* access
==================================================== */

.access {
	padding-bottom: 9rem;
}

.access__container {
}

.schools {
	color: var(--main-color);
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
}

.schools__item {
	border: 0.05rem solid currentcolor;
	border-radius: 0.75rem;
	max-width: 19.5rem;
	padding: 1.5rem 0.25rem 1rem 1rem;
	width: calc(100% / 3 - 2rem);
}

.schools__name-en {
	color: var(--label-gray);
	display: block;
	font-family: var(--english-font);
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1;
	text-align: center;
}

.schools__name {
	display: block;
	font-size: 1.2rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	margin-bottom: 0.5rem;
	text-align: center;

}

.schools__content {
	display: flex;
	gap: 1rem;
	justify-content: flex-start;
}

.schools__cord a {
	color: inherit;
	display: block;
	font-size: 0.6rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	margin-bottom: 0.1rem;
	text-align: center;
	text-decoration-line: underline;
}

.schools__cord a i {
	font-size: 0.65rem;
	margin-right: 0.15rem;
}

.schools__cord img {
	max-width: 5.4rem;
}

.schools__address {
	color: var(--text-sub-color);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 1.8;
	margin-bottom: 0.4rem;


}

.schools__text {
	color: inherit;
	display: block;
	font-size: 0.65rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-decoration-line: underline;
}

.schools__icon {
	font-size: 0.65rem;
	margin-right: 0.25rem;
}

@media (width <=51.2rem) {
	.access {
		padding-bottom: 4rem;
	}

	.schools {
		align-items: center;
		flex-direction: column;
		gap: 1rem;
	}

	.schools__item {
		padding: 1rem 0.75rem;
		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 <=38.4rem) {
	.btn {
		width: 100%;
	}
}



/* 投稿ページ
==================================================== */

.sg {
	position: relative;
}

.sg__wrapper {
}

.sg__inner {
	background: var(--white);
	border-radius: 1.5rem;
	box-shadow: 0 0 2rem 0 #0000001A;
	left: 0;
	margin: 0 auto;
	margin-bottom: calc(3.5rem - 2.5rem);
	padding: 1.75rem 1.75rem 6.75rem;
}

.sg__container {
	margin: 0 auto;
	width: 74%;
}

.sg__header {
	margin-bottom: 2.75rem;
}

.sg__breadcrumb {
	color: var(--main-color);
	margin-bottom: 1.5rem;
}

.sg__thumbnail {
	margin-bottom: 1.5rem;
}

.sg__thumbnail img {
	aspect-ratio: 16 / 9;
	object-fit: cover;
	width: 100%;
}

.sg__title {
	font-size: clamp(1.2rem, 4vw, 1.6rem);
	margin-bottom: 0.75rem;
	text-align: center;
}

.sg__title::before {
	top: -4rem;
}

.aioseo-breadcrumb {
	font-size: 0.65rem;
	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 0.5rem;
}

.single-title {
	font-size: 1.55rem;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.76;
	margin-bottom: 0.75rem;
	text-align: center;
}

.sg__date-category {
	align-items: flex-end;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.sg__date {
	color: var(--text-color);
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: 0;
}

.sg__category .category-link {
	border: 0.05rem solid currentcolor;
	border-radius: 100vh;
	color: var(--main-color);
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 0.2em 2em;
	text-align: center;
}



/* === 投稿各要素 === */

.sg__content figcaption {
	font-size: 0.7rem;
	font-weight: 400;
	letter-spacing: .22em;
	line-height: 1.76;
}

/* AddQuicktag
========================== */

/* h2 */
.article-hd {
	background-color: var(--light-gray);
	border-radius: 0.35rem;
	color: var(--main-color);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.76;
	padding: .24em 1.4em;
}

/* h3 */
.article-sub-hd {
	color: var(--main-color);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .22em;
	line-height: 1.76;
}

.article-sub-hd::before {
	content: '\f0c6';
	font-family: var(--font-awesome);
	font-size: 1.2rem;
	margin-right: .5em;
}

/* button */
.article-btn {
	background: var(--main-color);
	border-radius: 100vh;
	color: var(--white);
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.76;
	margin: 1.5rem auto;
	min-width: 12.25rem;
	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: 0.8rem;
	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: 0.85rem;
	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: 0.8rem;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.76;
	margin-bottom: 1em;
	padding-left: .5em;
}

/* table */
.article-table-wrapper {
	margin-bottom: 1.5rem;
	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: 0.05rem solid var(--white);
	color: var(--main-color);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: .22em;
	text-align: left;
}

.article-table tr:last-child th {
	border-bottom: none;
}

.article-table td {
	border-bottom: 0.05rem solid var(--light-gray);
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: .22em;
}

.article-table tr:first-child td {
	border-top: 0.05rem solid var(--light-gray);
}

/* ポイント囲いボックス */
.point-box {
	border: 0.05rem solid currentcolor;
	border-radius: 0.75rem;
	color: var(--main-color);
	margin-bottom: 2.5rem;
	padding: 1.4em 2.25rem 1.4em 4rem;
	position: relative;
}

.point-box::before {
	color: currentcolor;
	content: '\f304';
	font-family: var(--font-awesome);
	font-size: 1.35rem;
	font-weight: 900;
	left: 1.15rem;
	position: absolute;
	top: 0.65rem;
}

.point-box p {
	font-size: 0.8rem;
	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: 0.7rem;
}

/* class属性の指定がないaのみ */
.sg__content a:not([class]) {
	color: var(--main-color);
	font-size: 0.7rem;
	font-weight: 350;
	letter-spacing: .1em;
	line-height: 1.76;
	text-decoration: underline;
}



.sg__nav {
	display: flex;
	justify-content: space-between;
	margin-bottom: 5rem;
}

.sg__prev,
.sg__next {
	flex: 1;
	max-width: 20rem;
}

.sg__prev-arrow,
.sg__next-arrow {
	color: var(--hd-color);
	font-size: 0.85rem;
}



.sg__nav-title {
	color: var(--main-color);
	font-size: 0.7rem;
	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: 2.5rem;
	margin-top: 1.5rem;
}

.article-hd,
.article-sub-hd {
	margin-bottom: 1.5rem;
}

.sg__content p {
	font-size: 0.8rem;
	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: 2.5rem;
}

.sg__content p:last-child,
.check-icon-list:last-child,
.number-list:last-child,
.article-table:last-child {
	margin-bottom: 0;
}

@media (width <=38.4rem) {
	.sg__wrapper {
		width: 95%;
	}

	.sg__inner {
		padding: 1.25rem 1.25rem 3rem;
		top: -1.25rem;
	}

	.sg__container {
		width: 100%;
	}

	.sg__title::before {
		top: -2rem;
	}

	.sg__date-category {
		align-items: center;
		flex-direction: column;
		gap: 0.5rem;
	}

	.article-hd {
		font-size: 1rem;
		padding: .24em 1em;
	}

	.point-box {
		padding-left: 3rem;
	}

	.sg__nav {
		gap: 1em;
		margin-bottom: 3rem;
	}

	.sg__nav-title {
		font-size: 0.6rem;
	}

	.article-table th, .article-table td {
		font-size: 0.7rem;
	}
}

/* 関連記事
========================== */

.related-posts {
	padding-bottom: 3rem;
}

.related-posts__container {
	width: 100%;
}


/* archive
==================================================== */

.loop-archive__container, .notice__container {
}



@media (width <=64rem) {
	.loop-archive .news-list {
		margin-top: 2rem;
	}

}


/* 記事一覧用
========================== */

.news-list {
	list-style: none;
	margin-bottom: 2.9rem;
}

.news-list__item {
	border-bottom: 0.05rem solid var(--light-gray);
}

.news-list__item:first-of-type {
	border-top: 0.05rem solid var(--light-gray);
}

.news-list__link {
	align-items: center;
	color: inherit;
	display: flex;
	gap: 1.5rem;
	padding: 2rem 1.1rem 2rem 1.75rem;
	text-decoration: none;
}

@media (any-hover: hover) {
	.news-list__link:hover {
		background: #f9f9f9;
	}
}

.news-list__date {
	color: var(--text-color);
	font-size: 0.8rem;
	font-weight: 400;
	letter-spacing: 0;
	white-space: nowrap;
}

.news-list__category {
	border: 0.05rem solid currentcolor;
	border-radius: 100vh;
	color: var(--main-color);
	font-size: 0.55rem;
	font-weight: 400;
	letter-spacing: 0;
	padding: 0.2rem 0.7rem;
	text-align: center;
	white-space: nowrap;
	width: 10em;
}

.news-list__left {
	display: flex;
	gap: 1.65rem;
}

.news-list__right {
	width: 100%;
}

.news-list__title {
	align-items: center;
	color: var(--text-color);
	display: flex;
	flex: 1;
	font-size: 0.8rem;
	font-weight: 500;
	justify-content: space-between;
	letter-spacing: .05em;
	text-align: left;
}

.news-list__arrow {
	height: 1.4rem;
	margin-left: 5.7rem;
	width: 0.65rem;
}

.news-list__no-posts {
	text-align: center;
}

@media (width <=38.4rem) {
	.news-list__item {
		padding: 0 0.5rem;
	}

	.news-list__link {
		align-items: flex-start;
		flex-direction: column;
		gap: 1em;
		padding: 1.5rem 0;
	}

	.news-list__left {
		align-items: flex-end;
		gap: 1em;
	}

	.news-list__date {
		font-size: 0.65rem;
	}

	.news-list__title {
		font-size: 0.7rem;
	}

	.news-list__arrow {
		margin-left: 2em;
	}
}

/* ページネーション
========================== */

.pagination-wrapper {
	margin-bottom: 3rem;
}

.pagination {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
}

.pagination a, .pagination span {
	background-color: var(--light-gray);
	border-radius: 0.1rem;
	color: var(--text-color);
	display: inline-block;
	font-size: 0.65rem;
	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: 1.05rem;
	justify-content: flex-end;
}

.section-link__arrow {
	border-bottom: 0.05rem solid var(--main-color);
	border-right: 0.1rem solid var(--main-color);
	content: "";
	display: block;
	height: 0.55rem;
	margin-right: 0.75rem;
	top: calc(50% - 0.25rem);
	transform: skew(45deg);
	transition: var(--basic-transition);
	width: 5.45rem;
}

.section-link__title {
	color: var(--main-color);
	display: block;
	font-size: 0.8rem;
	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: 0.55rem;
	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: 0.6em;
	text-underline-offset: -0.1em;
}


/* === 図形の背景 === */

.u-bg-shapes {
	overflow: hidden;
	padding: 2.85rem 0 6.5rem;
	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: 1rem;
}


/* =========================
  レスポンシブ 767px以下（767含む）専用
  section 100% / container 90% / 2カラム以上は1カラム
========================= */
@media (min-width: 768px) {
	.br-sp {
		display: none;
	}
}

@media (max-width: 767px) {
	html {
		font-size: 4.6vw;
		overflow-x: hidden;
	}


	p {
		line-height: 1.35rem;
	}

	.catch__label {
		font-size: 1.4rem;
	}

	.solutions .solutions_container .catch__label {
		font-size: 3rem;
	}

	section {
		padding: 4.5rem 0 !important;
		width: 100%;
		max-width: 100%;
	}

	section.case {
		padding-top: 0 !important;
	}

	section.solutions {
		padding-top: 0 !important;
	}

	.strengths {
		padding: 0;
	}

	.strengths.strengths--with-circles.shape-split {
		background-position: left -2.5rem top 44.55rem, top 18.2rem right 0rem, top 72.25rem right -2rem;
	}

	.hero {
		padding-top: 0.5rem !important;
	}

	.hero-bg-shape-1 {
		left: calc(-16rem * 0.3 * 0.7);
		width: calc(9rem);
		top: 0rem;
	}
	.hero-bg-shape-2 {
		right: calc(-12.5rem * 0.3 * 0.7);
		width: calc(7rem);
		top: 14rem;
	}

	.hero__mb-logo {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}

	.hero__inner {
		padding-top: 0;
	}

	.br-sp {
		display: block;
	}

	.container {
		width: 90%;
		max-width: 100%;
		margin-left: auto;
		margin-right: auto;
	}

	/* width が大きい要素（63rem 等）→ max-width: 100% */
	.site-header {
		z-index: 300;
	}

	.site-header__container {
		max-width: 100%;
	}

	.course-list__tabs {
		max-width: 100%;
	}

	.case_slider .slick-list {
		max-width: 100%;
	}

	.solutions_slider .slick-list {
		max-width: 100%;
	}

	.faq__container {
		max-width: 100%;
	}

	.payment-method__inner {
		width: 100%;
		max-width: 100%;
	}

	.apply-flow {
		background-position: left -10rem top 3.1rem, right -3.5rem bottom 34.35rem;
	}

	.apply-flow__container.container {
		max-width: 100%;
		width: 90%;
	}

	.apply-flow__cards {
		max-width: 100%;
	}

	.problems__columns {
		margin-top: 0;
		max-width: 100%;
	}

	.form {
		max-width: 100%;
	}

	.course__intro-bg {
		max-width: 100%;
	}

	.course__intro-text {
		max-width: 100%;
	}

	.flow__item {
		max-width: 100%;
	}

	/* 2カラム以上のブロック → 1カラム */
	.strengths__list {
		width: 90%;
		margin-left: auto;
		margin-right: auto;
		grid-template-columns: 1fr;
	}

	.achievements__list {
		grid-template-columns: 1fr;
	}

	.reason__table-main {
		grid-template-columns: 1fr;
	}

	.tabs {
		grid-template-columns: 1fr;
	}

	.software__block {
		grid-template-columns: 1fr;
	}

	.software__list {
		grid-template-columns: 1fr;
	}

	.software .container,
	.course-list__container.container {
		max-width: 100%;
		padding-left: 0;
		padding-right: 0;
		width: 90%;
	}

	.course__cards {
		grid-template-columns: 1fr;
	}

	.course__intro-bg {
		grid-template-columns: 1fr;
	}

	.catch__content {
		flex-direction: column;
	}

	/* case / solutions 共通（背景色以外同じ構造） */
	.case .case_container,
	.solutions .solutions_container {
		flex-direction: column;
	}

	.case .case_container > * {
		flex: 0 0 auto;
	}

	.case .catch__content,
	.case .case_slider-wrap,
	.solutions .catch__content,
	.solutions .solutions_slider-wrap {
		flex: 0 0 100%;
	}

	.case_header,
	.solutions_header {
		padding-bottom: 11rem;
	}

	.case .case_header,
	.solutions .solutions_header {
		background-size: 40% auto;
	}

	.case .case_container .catch__label,
	.solutions .solutions_container .catch__label {
		font-size: 3rem;
	}

	.case_slider-wrap,
	.solutions_slider-wrap {
		margin-left: auto;
		margin-right: auto;
		margin-top: -12rem;
		max-width: 100%;
		width: 90%;
	}

	.case_card-wrap {
		padding: 3rem 0 0 0;
	}

	.case_card {
		padding: 1.5rem 2rem;
	}

	.slick-track {
		padding-top: 0;
	}

	.solutions_card-wrap {
		flex-wrap: wrap;
	}

	.solutions_card-wrap .solutions_card {
		flex: 1 1 100%;
		min-width: 0;
	}

	.solutions_card__block {
		position: relative;
		width: calc(100% - 2rem);
	}

	.solutions_card__block img {
		object-fit: cover;
	}

	.solutions_card__block p {
		padding-left: 0;
	}

	.solutions_card__block h4 {
		left: 0;
		position: absolute;
		top: 0;
	}

	.solutions_card__block:first-of-type::after {
		left: 3rem;
	}

	.answer__container {
		flex-direction: column;
	}

	.answer__inner {
		flex-direction: column;
	}

	.answer__list-item {
		width: 100%;
	}

	.sns__list {
		grid-template-columns: 1fr;
	}

	.payment-method__inner {
		flex-direction: column;
		gap: 1.5rem;
	}

	.payment-method__intro {
		padding-left: 0;
	}

	.payment-method__cards {
		grid-template-columns: 1fr;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.footer-nav {
		grid-template-columns: 1fr;
	}

	.flow--oneday .flow__columns {
		grid-template-columns: 1fr;
	}

	.flow--oneday .flow__column-title {
		margin-bottom: 0;
	}

	.flow--oneday .flow__column:nth-child(2) {
		padding-bottom: 0;
	}

	.problems__columns > * {
		flex: 0 0 100%;
	}

	.problems__columns > *:nth-child(4),
	.problems__columns > *:nth-child(5),
	.problems__columns > *:nth-child(6) {
		order: unset;
	}

	/* SP用アイコン幅・上からの座標（problems-icon-sp-*、416px時1rem=19.136px=4.6vw、コンテンツ幅90%で×0.9） */
	.problems__item:nth-child(1) .problems__icon { top: 1.97rem; width: 12.51rem; } /* 42px, 266px */
	.problems__item:nth-child(2) .problems__icon { left: 1.27rem; top: 1.69rem; width: 15.3rem; } /* 36px, 326px 左から27px=1.27rem */
	.problems__item:nth-child(3) .problems__icon { right: 2.68rem; top: 1.18rem; width: 13.46rem; } /* 右から57px=2.68rem, 25px, 286px */
	.problems__item:nth-child(4) .problems__icon { right: 0; top: 2.12rem; width: 17.19rem; } /* 45px, 365px */
	.problems__item:nth-child(5) .problems__icon { top: 2.49rem; width: 16.07rem; } /* 53px, 342px */
	.problems__item:nth-child(6) .problems__icon { top: 1.93rem; width: 16.74rem; } /* 41px, 356px */ /* 41px, 356px */

	.problems__item:nth-child(1) .problems__text { transform: translate(4rem, 0); }
	.problems__item:nth-child(2) .problems__text { transform: translate(1.85rem, 0); }
	.problems__item:nth-child(3) .problems__text { transform: translate(3.5rem, 1.5rem); }
	.problems__item:nth-child(4) .problems__text { transform: translate(-4rem, -0.5rem); }
	.problems__item:nth-child(5) .problems__text { transform: translate(-0.5rem, 0.5rem); }
	.problems__item:nth-child(6) .problems__text { transform: translate(-4.15rem, 1rem); }

	.apply-flow__inner {
		flex-direction: column;
	}

	.apply-flow__card {
		aspect-ratio: auto;
		flex: 0 0 100%;
	}

	.course__card {
		flex: 0 0 100%;
		max-width: 100%;
	}
}

@media (width <=48rem) {
	.section-header {
		padding-bottom: 0 !important;
	}
}