@charset "UTF-8";

:root {
	--blue01: #30afcc;
	--blue03: #00819f;
	--navy: #00151a;
	--txtnavy01: #0e282e;
	--txtnavy02: #00596e;
	--txtgray01: #474747;
	--black: #000000;
	--white: #ffffff;
	--link: #30afcc;
	--important: #d12f2f;
	--underline01: #2d8da4;
	--underline02: #f3eee7;
	--k1: #1193d6;
	--k2: #44b856;
	--gold01: #e8d995;
	--gold02: #c9b764;
	--yerrow: #ffdf53;
	--bg: #f9f7f4;

	--text-size-10: clamp(0.6rem, 0.52vw, 0.7rem);
	--text-size-12: clamp(0.7rem, 0.625vw, 0.8rem);
	--text-size-14: clamp(0.75rem, 0.729vw, 0.9rem);
	--text-size-15: clamp(0.8rem, 0.781vw, 0.15rem);
	--text-size-16: clamp(1rem, 0.833vw, 1.2rem);
	--text-size-20: clamp(1rem, 1.04vw, 1.3rem);
	--text-size-22: clamp(1.15rem, 1.105vw, 1.4rem);
	--text-size-24: clamp(1.3rem, 1.25vw, 1.5rem);
	--text-size-28: 1.9rem;
	--text-size-32: clamp(1.8rem, 1.666vw, 2rem);
	--text-size-64: clamp(3.6rem, 3.332vw, 4rem);
	--text-size-80: clamp(4.3rem, 4.061vw, 4.9rem);
	--section-blanksp: 15vw 2vw 8vw;
	--section-blankpc: 10vw 0 0;
}

/********************************
deback
*********************************/

/********************************
common
*********************************/
html {
	scroll-behavior: smooth;
}
body {
	background: var(--bg);
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: var(--text-size-16);
}
main {
	padding: 0 3vw;
}
section {
	margin: 0;
	padding: 0;
}

.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}
.noto-serif-jp {
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
}
h2 {
	display: block;
	font-size: var(--text-size-24);
	margin: 0 auto 2vh;
	text-align: center;
}
.referenceMark {
	font-size: var(--text-size-14);
}

.link__form {
	color: var(--blue01);
	display: inline-block;
}
.text__important {
	background: linear-gradient(#ffffff 70%, #fff5ca 71%);
}
a {
	display: block;
}
li a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 35px;
}

img {
	display: block;
}

.header__wrap {
	display: flex;
	position: relative;
	z-index: 100;
	width: 100%;
	padding-bottom: 20px;
	background: linear-gradient(
		to bottom,
		rgba(249, 247, 244, 1) 0%,
		rgba(249, 247, 244, 0.9) 40%,
		rgba(249, 247, 244, 0.4) 70%,
		rgba(249, 247, 244, 0) 100%
	);
}
@media screen and (max-width: 769px) {
	.header__wrap {
		padding: 0 10px;
		padding-bottom: 40px;
	}
}
.header__logo {
	display: block;
	width: 35vw;
	margin: 2vw;
}
/*headertoggle（SP時は常にfixedで閉じ時はtranslateX(100%)で画面外に隠す）*/
.header__nav {
	display: block;
	position: fixed;
	right: 0;
	top: 0;
	width: 80%;
	max-width: 320px;
	height: 100vh;
	padding: 20px;
	border-radius: 0 0 0 8px;
	transition: transform 0.4s;
	z-index: 100;
	transform: translateX(100%);
}
.header__nav.active {
	transform: translateX(0);
	background: rgba(249, 247, 244, 1);
	box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
}
/*headeritem*/
.header__item {
	padding: 8px;
	color: var(--txtnavy01);
}

.header__item:last-of-type {
	background: linear-gradient(180deg, #30afcc 0%, #00819f 100%);
	text-align: center;
	margin-top: 16px;
	border-radius: 4px;
}
.header__item:last-of-type a {
	color: var(--bg);
}

/*
hamburger
*/
.hamburuger {
	display: block;
	position: relative;
	width: 10vw;
	height: 8vw;
	right: 0;
	top: 0;
	z-index: 1000;
	background: transparent;
	cursor: pointer;
	margin-left: auto;
}
.hamburuger {
	position: relative;
}

.hamburuger__line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 7vw;
	height: 2px;
	background-color: var(--txtgray01);
	transition: all 0.4s;
	z-index: 1;
}
.hamburuger__line {
	width: 30px;
	height: 2px;
	background-color: var(--txtnavy01);
}
.hamburuger__line:nth-of-type(1) {
	top: 20%;
}
.hamburuger__line:nth-of-type(2) {
	top: 50%;
}
.hamburuger__line:nth-of-type(3) {
	top: 80%;
}

/*
hamburger active
*/
.active .hamburuger__line:nth-of-type(1) {
	top: 50%;
	transform: translateX(-50%) rotate(-45deg);
}
.active .hamburuger__line:nth-of-type(2) {
	transform: translateX(-60%);
	opacity: 0;
}
.active .hamburuger__line:nth-of-type(3) {
	top: 50%;
	transform: translateX(-50%) rotate(45deg);
}
/*
fv（MVをヘッダー下の透過部分に重ねる）
*/
/* section:first-of-type {
	margin-top: -80px;
} */
.mv_section {
	margin-top: -80px;
}

.fvImg {
	position: relative;
}
.gradiate {
	display: none;
}
.fv__wrap {
	position: absolute;
	top: 50%;
}
/* 申込終了お知らせ（MV直下） */
.notice-closed {
	max-width: 740px;
	margin: 0 auto;
	padding: 1.5rem 4vw 2rem;
	background: linear-gradient(90deg, rgba(4, 123, 187, 0.06) 0%, rgba(249, 247, 244, 0.6) 100%);
	border-left: 4px solid var(--blue03);
	border-radius: 0 4px 4px 0;
}
.notice-closed__lead {
	font-size: var(--text-size-20);
	font-weight: bold;
	color: var(--blue03);
	margin: 0 0 0.75em;
	line-height: 1.5;
	text-align: center;
}
.notice-closed__text {
	font-size: var(--text-size-20);
	line-height: 1.8;
	color: var(--txtbase);
	margin: 0;
	text-align: center;
}
.notice-closed__text strong {
	color: var(--blue03);
	font-weight: bold;
}
.notice-closed__period {
	font-size: var(--text-size-20);
	font-weight: bold;
	color: var(--blue03);
	margin: 1em 0 0;
	padding: 0.6em 0.8em;
	background: rgba(4, 123, 187, 0.08);
	border-radius: 4px;
	line-height: 1.5;
}
.notice-closed__btn {
	display: block;
	margin-top: 1.25rem;
	max-width: 100%;
	box-sizing: border-box;
}
@media screen and (min-width: 769px) {
	.notice-closed {
		padding: 2rem 3rem 2.5rem;
	}
	.notice-closed__lead {
		font-size: var(--text-size-24);
	}
	.notice-closed__text {
		font-size: var(--text-size-20);
	}
	.notice-closed__period {
		font-size: var(--text-size-20);
	}
}
@media screen and (max-width: 769px) {
	.notice-closed {
		margin: 20px;
	}

}
/*
summary
*/
.summary {
	color: var(--txtgray01);
	max-width: 440px;
	margin: 0 auto 6vh;
}
.summary__row {
	border-bottom: 1px solid var(--txtgray01);
}

.summary__row:last-child {
	border-bottom: none;
}
.summary__table {
	width: 100%;
	border-collapse: collapse;

	border-top: 1px solid var(--txtgray01);
	border-bottom: 1px solid var(--txtgray01);
}
.summary__row td {
	padding: 16px 4vw;
}

/* 締切訴求：サマリーの受験申込締切を目立たせる */
.summary__row--deadline .summary__head {
	font-weight: bold;
	color: var(--txtnavy01);
}
.summary__data--deadline {
	background: linear-gradient(135deg, #fff8f0 0%, #ffe8e0 100%);
	font-weight: bold;
}
.summary__data--deadline .deadline {
	display: inline-block;
	color: #c00;
	font-size: 1.15em;
	font-weight: bold;
	letter-spacing: 0.02em;
}
@media screen and (min-width: 769px) {
	.summary__data--deadline .deadline {
		font-size: 1.25em;
	}
}

/***************************************
intro
****************************************/
.intro {
	padding: 6vh 3vw;
	background-color: #ffffff; /* 背景を白にしてセクションを区切る */
	color: var(--txtgray01);
	text-align: center;
}

.intro__inner {
	max-width: 800px;
	margin: 0 auto;
}

.intro__title {
	color: var(--blue03);
	font-size: var(--text-size-24);
	margin-bottom: 3vh;
	font-weight: bold;
	line-height: 1.4;
}

.intro__text {
	font-size: var(--text-size-16);
	line-height: 1.8;
	text-align: left; /* 長文は左揃えが読みやすいため */
}

.intro__text p {
	margin-bottom: 1.5em;
}

.intro__text p:last-child {
	margin-bottom: 0;
}

.intro__text strong {
	color: var(--blue03);
	background: linear-gradient(
		transparent 70%,
		#fff5ca 70%
	); /* 重要な単語にアンダーライン */
	font-weight: bold;
}

/* PC用調整 */
@media screen and (min-width: 769px) {
	.intro {
		padding: 8vw 0;
	}
	.intro__title {
		font-size: var(--text-size-32);
	}
	.intro__text {
		font-size: var(--text-size-18);
	}
}

/*
flow
*/
.flow {
	color: var(--txtgray01);
	margin: 0 auto 6vh;
}
.flow__dot {
	position: relative;
	width: 100%;
	height: 16px;
}

.flow__dot::before,
.flow__dot::after {
	content: "";
	position: absolute;
	border-radius: 50%;
}

.flow__dot::before {
	width: 16px;
	height: 16px;
	background: var(--blue01);
	top: 0;
	left: 50%;

	transform: translateX(-50%);
}

.flow__dot::after {
	width: 8px;
	height: 8px;
	background: var(--blue03);
	top: 4px;
	left: 50%;
	transform: translateX(-50%);
}
.flowTable {
	margin: 0 auto;
}

/*
scroll-container
*/

.flow__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	background: var(--bg);
	border-radius: 12px;
	position: relative;
}
.border {
	border-top: var(--blue01) 1px solid;
	position: absolute;
	top: 16px;
	width: 1280px;
}

.flow__list {
	display: flex;
	gap: 24px;
	padding: 8px 16px 24px;
	list-style: none;
	margin: 0;
	width: 1300px;
}
.flow__item {
	flex: auto;
	position: relative;
	flex: 1;
	margin-bottom: 50px;
}

.flow__dot {
	margin-bottom: 8px;
}

.flow__date {
	font-size: var(--text-size-16);
	margin-bottom: 8px;
	color: var(--blue03);
	text-align: center;
}
.flow__date--deadline {
	color: #c00;
	font-weight: bold;
	font-size: var(--text-size-18);
	background: linear-gradient(135deg, #fff5f0 0%, #ffe8e0 100%);
	padding: 6px 12px;
	border-radius: 8px;
	border: 1px solid rgba(200, 0, 0, 0.25);
}

.flow__card {
	background: var(--white);
	border-radius: 8px;
	height: 100%;
}

.flow__card-title {
	font-size: var(--text-size-24);
	color: var(--blue03);
	margin: 8px;
}
.flow__scroll::-webkit-scrollbar {
	height: 6px;
}

.flow__scroll::-webkit-scrollbar-thumb {
	background: #ccc;
	border-radius: 3px;
}
.flow__card-text {
	font-size: var(--text-size-16);
	margin: 8px;
}

/*
cardWrap
*/
.flow__card-media {
	position: relative;
}

.flow__card-img {
	width: 100%;
	display: block;
	border-radius: 8px 8px 0 0;
}

.flow__card-step {
	position: absolute;
	bottom: 0px;
	left: 8px;
	font-size: var(--text-size-64);
	font-weight: bold;
	color: var(--gold01);
}
/***************************************
QA
****************************************/

.gokakuBox {
	display: flex;
	flex-direction: column;
	gap: 3vh;
}
.gokakusya {
	display: flex;
	gap: 2vw;

	padding: 10px;
	background: var(--white);
}
.gokakuImg {
	flex: 1;
	width: 50px;
	align-self: flex-start; /* 追加 */
}
.gokakuVoiceBox {
	flex: 4;
	display: flex;
	flex-direction: column;
	gap: 2vh;
}
.voiceTitle {
	color: var(--blue01);
	font-size: var(--text-size-20);
	font-weight: bold;
}
.namenadGrade {
	font-size: var(--text-size-15);
	color: var(--black);
}
/***************************************
QA
****************************************/

.qa {
	color: var(--txtgray01);
	max-width: 440px;
	margin: 0 auto 6vh;
}
.qa__answer {
	height: 0;
	overflow: hidden;
	transition: height 0.35s ease;
}
.qa__item {
	border-bottom: var(--txtgray01) solid 1px;
}

.qa__question {
	cursor: pointer;
	display: flex;
	gap: 8px;
	padding: 32px 5px;
	align-items: center;
	position: relative;
}

.qa__question-text {
	font-size: var(--text-size-16);
	display: block;
}

.qa__answer-head {
	cursor: pointer;
	display: flex;
	gap: 8px;
	align-items: center;
}
.qa__answer-body {
	font-size: var(--text-size-16);
	margin: 3vh 16px;
}
.qa__label {
	font-weight: bold;
}

.qa__label--q {
	color: var(--blue01);
	font-size: var(--text-size-24);
	padding: 0 6px;
}

.qa__label--a {
	color: var(--blue03);
	font-size: var(--text-size-24);
	padding: 0 6px;
}
.qa__other-link {
	color: var(--link);
	font-size: var(--text-size-16);
}
.qa__other-link:last-of-type {
	display: flex;
	justify-content: flex-end;
}

.openBtn {
	content: "";
	right: 0;
	height: 20px;
	width: 20px !important;
	margin: auto;
	margin-right: 0;
	position: relative;
}
.openBtn::before,
.openBtn::after {
	content: "";
	height: 1px;
	width: 20px;
	position: absolute;
	background: var(--blue01);
	z-index: 1;
	right: 0;
	top: 50%;
	transition: 0.5s;
}
.openBtn::after {
	transform: rotate(90deg);
}
.qa__item.is-open .openBtn::after {
	transform: rotate(0deg);
	opacity: 0;
}

/***************************************
cvVer1
****************************************/
.cvBtn--v1 {
	display: block;
	padding: 32px auto;
	position: relative;
}
.cvBtn__inner--v1 {
	max-width: 1000px;
	margin: 0 auto;
}
.cvBtn__label--v1 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.cvBtn__label-text--v1 {
	color: var(--white);
	font-size: var(--text-size-12);
	font-weight: 600;
	white-space: no-wrap;
}
.cvBtn__label-text-l--v1 {
	font-size: var(--text-size-16);
	/* border-bottom: var(--underline01) 2vw solid; */
	background: linear-gradient(0deg, var(--underline01) 20%, transparent 21%);
}
.cvBtn__title--v1 {
	color: var(--white);
	font-size: var(--text-size-12);
	display: flex;
	justify-content: space-between;
	white-space: no-wrap;
}
.cvBtn__button--v1 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 0vh auto 6vh;
	padding: 10px;
	background: linear-gradient(180deg, #30afcc, #00819f);
	border-radius: 0px;
	position: relative;
}
.cvBtn__button--v2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin: 6vh auto 6vh;
	padding: 10px;
	background: linear-gradient(180deg, #30afcc, #00819f);
	border-radius: 8px;
	position: relative;
}

.cvBtn__button-label--v1 {
	display: block;
	position: absolute;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 100vh;
	color: var(--black);
	padding: 5px 18px;
	font-weight: 700;
	font-size: var(--text-size-18);
	background: linear-gradient(180deg, #e8d995, #c9b764);
}
.cvBtn__button-note--v1 {
	position: absolute;
	color: var(--blue01);
	left: 29%;
	top: 50%;
	transform: translateY(-50%);
	font-size: var(--text-size-16);
}
.cvBtn__button-note--v1::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	/* 鋭く真面目な印象の三角形を作成 */
	border-style: solid;
	border-width: 6px 0 6px 10px;
	border-color: transparent transparent transparent var(--blue01); /* 文字色と統一 */
	margin-left: 6px; /* 「真横」に配置するための微調整 */
}
/* 締切訴求：MV CTAの締切表記を目立たせる */
.cvBtn__button-note--v1--deadline {
	font-weight: bold;
	font-size: var(--text-size-18) !important;
	color: #c00 !important;
	/* background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%); */
	/* padding: 4px; */
	/* border-radius: 100vh; */
	/* border: 1px solid rgba(200, 0, 0, 0.3); */
	/* box-shadow: 0 1px 4px rgba(200, 0, 0, 0.2); */
}
.cvBtn__button-note--v1--deadline::after {
	border-color: transparent transparent transparent #c00;
}
@media screen and (min-width: 769px) {
	.cvBtn__button-note--v1--deadline {
		font-size: var(--text-size-28) !important;
		padding: 6px 16px;
	}
}
.cvBtn__button-wrap--v1 {
	justify-content: center;
	align-items: center;
	text-align: center;
	background: var(--bg);
	border-radius: 100vh;
	margin: 8px 0 0;
	height: 44px;
	text-align: center;
	position: relative;
	animation: blignhtWhite 1s infinite;
}

@media screen and (min-width: 769px) {
	.cvBtn__button-note--v1 {
		left: 140px;
		font-size: var(--text-size-32);
		transform: translateY(-54%);
		white-space: nowrap;
	}
	.cvBtn__button-note--v1::after {
		border-width: 11px 0 11px 13px; /* PCではサイズを最適化 */
		margin-left: 20px;
	}
}

@keyframes blignhtWhite {
	0% {
		box-shadow: 0 0 0px 0px var(--white);
	}
	10% {
		box-shadow: 0 0 20px 0px var(--white);
	}
	20% {
		box-shadow: 0 0 0px 0px var(--white);
	}
	100% {
		box-shadow: 0 0 0px 0px var(--white);
	}
}
/***************************************
cvVer2
****************************************/
.cvBtn--v2 {
	display: block;
	background: linear-gradient(180deg, #30afcc, #00819f);
	border-radius: 10px;
	padding: 3vh 5px;
}

/***************************************
bunner
****************************************/
.bunner {
	max-width: 500px;
	margin: 0 auto 6vh;
}
/***************************************
cvBtnV3
****************************************/
.cvBtn--v3 {
	display: block;
	margin: 8vh 0;
}
.cvBtn__inner {
	margin: 0 auto;
}
.cvBtn__label {
	display: flex;
	justify-content: center;
	flex: 1;
	align-items: center;
}
.cvBtn__label-icon {
	width: 17vw;
	max-width: 90px;
	object-fit: contain;
	margin-right: 5px;
}
.cvBtn__label-text {
	color: var(--blue01);
	font-size: var(--text-size-12);
	font-weight: 600;
}
.cvBtn__label-text-l {
	font-size: var(--text-size-16);
	background: linear-gradient(0deg, var(--underline02) 20%, transparent 21%);
}
.cvBtn__title {
	color: var(--txtgray01);
	font-size: var(--text-size-12);
	display: flex;
	justify-content: space-between;
}
.cvBtn__grade--first {
	background: var(--k1);
	text-align: center;
	color: var(--white);
	margin-left: 2px;
}
.cvBtn__grade--second {
	background: var(--k2);
	text-align: center;
	color: var(--white);
	margin-left: 2px;
}
.cvBtn__button {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background: linear-gradient(180deg, #30afcc, #00819f);
	border-radius: 100vh;
	max-width: 370px;
	margin: 8px auto 0;
	height: 53px;
	text-align: center;
	position: relative;
	animation: blightBlue 2s infinite;
}

@keyframes blightBlue {
	0% {
		box-shadow: 0 0 0 0 #30afcc;
	}
	50% {
		box-shadow: 0 0 8px 1px #30afcc;
	}
	100% {
		box-shadow: 0 0 0 0 #30afcc;
	}
}
.cvBtn__button-label {
	display: block;
	position: absolute;
	left: 8px;
	background: var(--white);
	border-radius: 100vh;
	color: var(--blue01);
	padding: 9px 22px;
	font-weight: 700;
	font-size: var(--text-size-18);
}
.cvBtn__button-note {
	position: absolute;
	color: var(--white);
	left: 30%;
	font-size: var(--text-size-18);
}
/***************************************
recommend
****************************************/
.recommend {
	background: var(--blue03);
	color: var(--bg);
	padding: 3vh 16px;
	margin: 0 auto 6vh;
}
.recommend__container {
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 6vh;
	align-items: center;
}
.recommend__wrap {
	display: block;
	max-width: 440px;
}
.reccomend__title {
	display: flex;
	justify-content: space-between;

	font-size: var(--text-size-24);
}
.recommend__wrap p {
	font-size: var(--text-size-16);
}

.recommend__spanBg-n {
	background: var(--navy);
	text-align: center;
	font-size: var(--text-size-16);
	padding: 0 8px;
	display: flex;
	justify-content: center;
	text-align: center;
	align-items: center;
	height: 40px;
}

.recommend__tagBox {
	display: flex;
	justify-content: flex-end;
	gap: 15px;
	margin: 8px 0 8px 0;
}
.recommend__spanBg-gakka {
	background: var(--navy);
	border-radius: 100vh;
	text-align: center;
	padding: 0 15px;
}
.recommend__spanBg-k1 {
	background: var(--k1);
	border-radius: 100vh;
	text-align: center;
	padding: 0 15px;
}
.recommend__spanBg-k2 {
	background: var(--k2);
	border-radius: 100vh;
	text-align: center;
	padding: 0 15px;
}

/***************************************
redommendCv
****************************************/
.recommendCv__container {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 7vw;
	margin: 0 auto 6vh;
}
.recommendCv__wrap {
	display: block;
	text-align: center;
}
.recommendCv__wrap p {
	font-size: var(--text-size-16);
	font-weight: 300;
}
.recommendCv__btn {
	display: inline-block;
	margin-top: 8px;
	background: linear-gradient(180deg, #e8d995, #c9b764);
	color: var(--bg);
	border-radius: 100vh;
	padding: 16px 32px;
	width: 280px;
	font-size: var(--text-size-18);
}
@media screen and (max-width: 769px) {
	.recommendCv__container {
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		gap: 4vw;
		margin: 40px auto 6vh;
	}
}
/***************************************
arrow（フローティングCTAより下の優先度・SP時はCTAと被らないよう上に配置）
****************************************/
.arrow {
	background: var(--white);
	position: fixed;
	bottom: 110px;
	right: 32px;
	height: 50px;
	width: 50px;
	z-index: 85;
	border-radius: 100vh;
}
@media screen and (min-width: 769px) {
	.arrow {
		bottom: 32px;
	}
}
.arrow:before {
	content: "";
	position: absolute;
	height: 15px;
	width: 15px;
	left: 34%;
	top: 40%;
	transform: rotate(-45deg);
	z-index: 1000;
	border-top: var(--black) 3px solid;
	border-left: var(--black) 3px solid;
	transform: rotate(45deg);
}
/***************************************
footer
****************************************/
.footer {
	background: var(--blue03);
	padding: 10vw;
}
.footer p {
	font-size: var(--text-size-12);
	color: var(--white);
	width: fit-content;
	margin: auto;
}

@media screen and (min-width: 769px) {
	/***************************
 common
 ****************************/
	body {
		background: var(--bg);
		font-family: "Noto Sans JP", sans-serif;
		font-optical-sizing: auto;
		font-style: normal;
		font-size: var(--text-size-20);
		scroll-behavior: smooth;
	}
	main {
		padding: 0;
	}

	section {
		margin: 0 0 2vw;
		padding: 0 0 2vw;
	}
	section main {
		margin: 4vw 0;
		padding: 4vw 0;
	}
	body {
		font-size: var(--text-size-12);
	}
	h2 {
		text-align: center;
		font-size: var(--text-size-32);
		margin: 0 auto 3vw;
	}

	.header__logo {
		width: 15vw;
	}
	.referenceMark {
		font-size: var(--text-size-12);
	}
	/***************************
header
 ****************************/
	.hamburuger {
		display: none;
	}
	.header__nav {
		display: block;
		position: relative;
		right: auto;
		top: auto;
		width: auto;
		max-width: none;
		height: auto;
		margin-left: auto;
		padding: 0;
		border-radius: 0 0 0;
		transition: 0s;
		z-index: 100;
		transform: translateX(0%);
	}
	.header__nav ul {
		display: flex;
		align-items: center;
		gap: 4px;
		margin-right: 3vw;
	}
	.header__item {
		display: flex;
		padding: 0;
		height: 36px;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-size: var(--text-size-20);
		background: linear-gradient();
		margin-left: 1.5vw;
		padding: 0 8px;
	}
	.header__item:last-of-type {
		margin-top: 0px;
	}
	.header__wrap {
		position: relative;
		align-items: center;
		z-index: 1000;
	}
	.gradiate {
		display: block;
		position: absolute;
		bottom: 0;
		height: 30px;
		width: 100%;
		background: linear-gradient(
			rgba(249, 247, 244, 0%) 0%,
			rgba(249, 247, 244, 60%) 60%,
			rgba(249, 247, 244, 100%) 100%
		);

		z-index: 1;
	}
	/***************************
 cv-v1
 ****************************/
	.cvBtn--v1 {
		max-width: 1000px;
		margin: 0 auto;
		border-radius: 100vh;
	}
	.cvBtn__inner--v1 {
		margin: 0 auto;
	}
	.cvBtn__label-icon {
		width: 160px;
		max-width: 160px;
	}
	.cvBtn__button--v1 {
		height: auto;
		border-radius: 100vh;
		width: 80vw;
		max-width: 730px;
	}
	.cvBtn__button--v2 {
		height: auto;
		width: 80vw;
	}

	.cvBtn__label {
		justify-content: center;
	}

	.cvBtn__button-note {
		left: 102px;
		font-size: var(--text-size-18);
	}
	.cvBtn__button-wrap--v1 {
		height: 53px;
	}

	.cvBtn__label-text--v1 {
		font-size: var(--text-size-24);
	}
	.cvBtn__label-text-l--v1 {
		font-size: var(--text-size-32);
	}
	.cvBtn__title--v1 {
		font-size: var(--text-size-22);
	}
	.cvBtn__button-label--v1 {
		font-size: var(--text-size-32);
	}
	.cvBtn__button-note--v1 {
		left: 140px;
		font-size: var(--text-size-32);
		transform: translateY(-54%);
	}
	@media screen and (min-width: 769px) {
		.cvBtn__button-label--v1 {
			padding: 1px 18px;
		}
	}

	/***************************
cvbutton
 ****************************/

	.cvBtn__label-text-l {
		font-size: var(--text-size-32);
	}
	.cvBtn__label-text {
		font-size: var(--text-size-24);
	}
	.cvBtn__title {
		font-size: var(--text-size-22);
	}
	.cvBtn__button-label {
		left: 10px;
		padding: 14px 40px;
		font-size: var(--text-size-32);
	}
	.cvBtn__button-note {
		left: 190px;
		font-size: var(--text-size-32);
	}
	.cvBtn__button {
		margin: 5px auto 0;
		width: 100%;
		height: 90px;
		max-width: 560px;
	}
	/***************************
 summary
 ****************************/
	.summary {
		padding: 0 6vw;
		max-width: 1000px;
		margin: 0 auto 4vw;
	}
	.summary__table {
		font-size: var(--text-size-20);
	}
	/***************************
 flow
 ****************************/
	/* .flow {
		max-width: 1500px;
		margin: 0 auto;
	}
	.flow__list {
		justify-content: center;
		gap: 16px;
		margin: 0 auto;
		max-width: 1400px;
	}
	.flow__card {
		width: auto;
	}
	.flow__scroll {
		overflow-x: visible;
		height: fit-content;
	}
	.flow__item {
		flex: 1;
	}
	.border {
		width: 80vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.flow__card-text {
		font-size: var(--text-size-16);
	}
	.flow__card-title {
		font-size: var(--text-size-24);
	} */
	/***************************
 cv-v2
 ****************************/
	.cvBtn--v2 {
		display: block;
		max-width: 1000px;
		margin: 0 auto 4vw;
	}
	/***************************************
gokaku (Successful Candidates) - Final Professional Style
****************************************/
	/* スマホ版（ベーススタイル） */
	.gokaku {
		color: var(--txtgray01);
		max-width: 440px;
		/* margin: 0 auto 6vh; から 6vh を削除 */
		margin: 0 auto 6vh;
	}

	.gokakuBox {
		display: flex;
		flex-direction: column;
		gap: 20px;
		padding: 20px 0; /* 上下の詰まりすぎを防ぐための最小限のパディング */
	}

	.gokakusya {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		padding: 16px;
		background: var(--white);
		border: 1px solid #dcdcdc; /* 事務的な細い枠線 */
		border-radius: 2px;
	}

	/* 画像サイズの修正：flexプロパティとwidthを強制固定 */
	.gokakuImg {
		width: 60px !important;
		height: 60px !important;
		flex: none !important;
		object-fit: cover;
		border: 1px solid var(--txtgray01);
		background-color: var(--bg);
		padding: 0;
	}

	.gokakuVoiceBox {
		flex: 1;
		display: flex;
		flex-direction: column;
		gap: 6px;
	}

	.voiceTitle {
		color: var(--blue03);
		font-size: var(--text-size-15);
		font-weight: bold;
		font-family: "Noto Serif JP", serif;
		margin: 0;
		line-height: 1.4;
	}

	.voiceText {
		font-size: var(--text-size-14);
		line-height: 1.6;
		color: var(--txtgray01);
	}

	.namenadGrade {
		font-size: var(--text-size-12);
		color: var(--txtnavy01);
		text-align: right;
		font-weight: bold;
		margin-top: 4px;
	}

	/***************************************
Media Query - PC (Horizontal & Small Photo)
****************************************/
	@media screen and (min-width: 769px) {
		.gokaku {
			max-width: 1000px;
			/* PC版ではセクション間の適切な余白を維持 */
			margin: 0 auto 4vw;
		}

		.gokakusya {
			gap: 32px;
			padding: 30px 40px;
		}

		.gokakuImg {
			width: 100px !important;
			height: 130px !important;
		}

		.voiceTitle {
			font-size: var(--text-size-22);
			border-bottom: 1px solid var(--gold02);
			padding-bottom: 8px;
			margin-bottom: 8px;
			display: inline-block;
		}

		.voiceText {
			font-size: var(--text-size-16);
		}

		.namenadGrade {
			font-size: var(--text-size-14);
			margin-top: 10px;
		}
	}
	/***************************
 qa
 ****************************/
	.qa {
		padding: 0 6vw;
		max-width: 1000px;
		margin: 0 auto 4vw;
	}
	.qa__item {
		padding: 1vw 0;
	}
	.qa__question-text {
		font-size: var(--text-size-20);
	}
	.qa__answer-head p {
		font-size: var(--text-size-16);
	}
	.qa__answer-body {
		font-size: var(--text-size-16);
	}
	/***************************
 bunner
 ****************************/
	.bunner {
		max-width: 1000px;
		margin: 0 auto 4vw;
	}

	/***************************
 cv-v3
 ****************************/
	.cvBtn--v3 {
		display: block;
		max-width: 1000px;
		margin: 0 auto 4vw;
	}
	/***************************
 recommend
 ****************************/
	.reccomend__title {
		font-size: var(--text-size-24);
	}
	.recommend {
		padding: 2vw 16vw;
	}
	.recommend__container {
		flex-direction: row;
		max-width: 1000px;
		margin: 0 auto 2vw;
		padding: 0;
		gap: 2vw;
		align-items: first baseline;
	}
	.recommend__wrap {
		flex: 1;
	}
	.recommendCv__container {
		flex-direction: row;
		gap: 16px;
		max-width: 1000px;
	}
	.recommendCv__btn {
		margin-top: 0.5vw;
		padding: 1.5vw 5vw;
		width: 100%;
		font-size: var(--text-size-24);
	}
	.recommendCv__wrap p {
		font-size: var(--text-size-16);
	}
	.recommend__spanBg-n {
		font-size: var(--text-size-16);
		padding: 0 0.4vw;
	}
	.recommend__tagBox {
		font-size: var(--text-size-16);
	}
	/***************************
 footer
 ****************************/
	.footer {
		padding: 2vw;
	}
	.footer p {
		font-size: var(--text-size-8);
	}
}

/***************************************
intro section design
****************************************/
.intro {
	padding: 4vh 3vw;
	background-color: var(--white); /* 背景を白にしてセクションを強調 */
	border-top: 4px solid var(--blue03); /* 上部にアクセントライン */
	border-bottom: 4px solid var(--blue03); /* 上部にアクセントライン */
	color: var(--txtbase);
}

.intro__container {
	max-width: 800px;
	margin: 0 auto;
}
.intro__header {
	text-align: center;
}

.intro__sub {
	display: block;
	font-size: var(--text-size-22);
	color: var(--primarycolor01);
	font-weight: bold;
	margin-bottom: 10px;
	letter-spacing: 0.1em;
}

/* 赤で点滅するアニメーション */
@keyframes deadline-blink {
	0%,
	100% {
		opacity: 1;
		/* text-shadow: 0 0 8px rgba(200, 0, 0, 0.8); */
	}
	50% {
		opacity: 0.55;
		/* text-shadow: 0 0 4px rgba(200, 0, 0, 0.4); */
	}
}

/* intro：h2上の締切訴求（目立つデザイン・クリックで申込へ） */
.intro__deadline {
	display: inline-block;
	margin: 0 auto;
	padding: 10px 20px;
	/* background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%); */
	color: #c00 !important;
	font-size: var(--text-size-20);
	font-weight: bold;
	border: none;
	border-radius: 100vh;
	text-decoration: none;
	cursor: pointer;
	animation: deadline-blink 1.2s ease-in-out infinite;
}
.intro__deadline:hover {
	opacity: 0.92;
}
.intro__deadline-date {
	font-size: 1.45em;
	letter-spacing: 0.05em;
}
@media screen and (min-width: 769px) {
	.intro__deadline {
		font-size: var(--text-size-20);
		padding: 12px 28px;
	}
}

.intro__headline {
	font-size: var(--text-size-24);
	color: var(--txtbase);
	line-height: 1.4;
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

/* 見出しの下線デザイン */
.intro__headline::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: var(--gold01);
}

.intro__lead {
	font-size: var(--text-size-16);
	line-height: 1.8;
	margin-bottom: 30px;
	text-align: left;
}

.intro__lead strong {
	color: var(--blue03);
	font-weight: bold;
}

/* 模試のポイント（3つ） */
.intro__points {
	margin-top: 2.5rem;
	margin-bottom: 2.5rem;
}

.intro__points-title {
	display: block;
	max-width: 520px;
	margin: 0 auto 1rem;
	font-size: var(--text-size-20);
	font-weight: bold;
	color: var(--blue03);
	letter-spacing: 0.05em;
	padding: 0.4em 1em 0.4em 1.2em;
	border-left: 4px solid var(--blue03);
	background: linear-gradient(
		90deg,
		rgba(4, 123, 187, 0.08) 0%,
		transparent 100%
	);
	position: relative;
	box-sizing: border-box;
}

/* .intro__points-title::after {
	content: "";
	position: absolute;
	bottom: 0.25em;
	left: 1.2em;
	right: 1em;
	height: 2px;
	background: linear-gradient(90deg, var(--pink02), transparent);
	opacity: 0.8;
} */

.intro__points-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-align: left;
	max-width: 520px;
	margin: 0 auto;
}

.intro__point {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: var(--txtbase);
}

.intro__point-num {
	display: inline-block;
	flex-shrink: 0;
	font-size: var(--text-size-14);
	font-weight: bold;
	color: var(--white);
	background: var(--blue03);
	min-width: 2.2em;
	text-align: center;
	padding: 0.15em 0.4em;
	border-radius: 2px;
}

.intro__point-body {
	flex: 1;
	min-width: 0;
}

.intro__point-heading {
	font-size: var(--text-size-20);
	font-weight: bold;
	color: var(--base);
	margin: 0 0 0.35em;
	line-height: 1.4;
}

.intro__point-text {
	font-size: var(--text-size-16);
	line-height: 1.65;
	margin: 0;
	color: var(--txtbase);
}

/* 強調は色のみ（幅を取らない） */
.intro__point-text em {
	font-style: normal;
	color: var(--blue03);
}

/* ポイントをタグ形式で表示 */
.intro__features {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.intro__tag {
	background: var(--bg);
	border: 1px solid var(--blue03);
	color: var(--blue03);
	padding: 8px 20px;
	border-radius: 100vh;
	font-size: var(--text-size-14);
	font-weight: bold;
}

/* PCサイズ調整 */
@media screen and (max-width: 769px) {
	.intro {
		padding: 5vh 3vw;
		margin-bottom: 20px;
	}
	.intro__headline {
		font-size: var(--text-size-24);
	}
	.intro__lead {
		font-size: var(--text-size-20);
		text-align: center;
	}
	.intro__points-title {
		padding-left: calc(1.2em + 2vw);
		padding-right: 2vw;
	}
	.intro__points-list {
		padding: 0 2vw;
	}
	.intro__point {
		font-size: var(--text-size-15);
	}
	.intro__tag {
		font-size: var(--text-size-16);
		padding: 10px 30px;
	}
}

/***************************************
CTA Block (Original Style Mapping)
****************************************/
.cta-block {
	max-width: 440px; /* .summary や .qa と共通の幅 */
	margin: 6vh auto;
	padding: 0 3vw;
	text-align: center;
}

.cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 締切訴求：CTAブロック上部の注意喚起（ボタンではなく動きで目立たせる） */
@keyframes deadline-glow {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(200, 0, 0, 0.25);
	}
	50% {
		box-shadow: 0 0 0 8px rgba(200, 0, 0, 0);
	}
}
@keyframes deadline-pulse {
	0%,
	100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.02);
	}
}

/* デフォルト：薄い赤背景・赤文字・レインボーグロー（borderなし・リンクで申込へ） */
.cta-deadline {
	display: inline-block;
	margin: 0 auto 0.8vh;
	padding: 12px 24px;
	background: #fff5f5;
	color: #c00 !important;
	font-size: var(--text-size-22);
	font-weight: bold;
	border: none;
	border-radius: 4px;
	text-decoration: none;
	cursor: pointer;
	animation: deadline-blink 1.2s ease-in-out infinite;
}
.cta-deadline:hover {
	opacity: 0.9;
}
.cta-deadline .deadline {
	color: #c00;
	font-size: 1.15em;
	letter-spacing: 0.08em;
}

/* バリエーションA：左太線のみ（シンプル・余白効かせ） */
.cta-deadline--bar {
	background: transparent;
	border: none;
	border-left: 5px solid #c00;
	border-radius: 0;
	padding-left: 16px;
	box-shadow: none;
}
.cta-deadline--bar .deadline {
	color: #c00;
}

/* バリエーションB：下線強調（枠なし・文字＋太アンダーライン） */
.cta-deadline--underline {
	background: transparent;
	border: none;
	border-bottom: 4px solid #c00;
	border-radius: 0;
	padding-bottom: 6px;
	box-shadow: none;
}
.cta-deadline--underline .deadline {
	color: #c00;
}

/* バリエーションC：リボン風（斜めストライプ・角折れ） */
.cta-deadline--ribbon {
	position: relative;
	background: linear-gradient(135deg, #c00 0%, #a00 100%);
	color: #fff !important;
	border: none;
	border-radius: 0;
	box-shadow: 0 2px 8px rgba(200, 0, 0, 0.35);
}
.cta-deadline--ribbon::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	border-width: 0 20px 20px 0;
	border-style: solid;
	border-color: transparent #fff5f5 transparent transparent;
}
.cta-deadline--ribbon .deadline {
	color: #fff;
}
@keyframes deadline-glow-ribbon {
	0%,
	100% {
		box-shadow: 0 2px 8px rgba(200, 0, 0, 0.35);
	}
	50% {
		box-shadow: 0 2px 16px 4px rgba(200, 0, 0, 0.25);
	}
}
.cta-deadline--ribbon {
	animation: deadline-glow-ribbon 2s ease-in-out infinite,
		deadline-pulse 2.5s ease-in-out infinite;
}

/* バリエーションD：二重枠（インパクト） */
.cta-deadline--double {
	background: #fff;
	border: 3px solid #c00;
	box-shadow: inset 0 0 0 2px #fff, 0 0 0 5px #c00;
}
.cta-deadline--double .deadline {
	color: #c00;
}

@media screen and (min-width: 769px) {
	.cta-deadline {
		font-size: var(--text-size-20);
		padding: 14px 28px;
	}
	.cta-deadline--bar {
		padding-left: 20px;
	}
	.cta-deadline--underline {
		padding-bottom: 8px;
	}
	.cta-deadline--ribbon::before {
		border-width: 0 24px 24px 0;
	}
}

.cta-description {
	color: var(--txtgray01); /* 標準のテキスト色 */
	font-size: var(--text-size-15);
	margin-bottom: 1.5vh;
}

.cta-description strong {
	color: var(--blue01); /* 強調色 */
	font-weight: bold;
}

/* メインボタン：元の.cvBtn__buttonのスタイルを継承 */
.cta-main-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	text-decoration: none;
	background: linear-gradient(
		180deg,
		#30afcc,
		#00819f
	); /* 元のグラデーション */
	border-radius: 100vh; /* 元のボタンの丸み */
	width: 100%;
	max-width: 370px;
	padding: 15px 20px;
	position: relative;
	color: var(--white) !important;
	animation: blightBlue 2s infinite; /* 元のアニメーションを適用 */
}

.cta-main-button__text {
	font-family: "Noto Serif JP", serif; /* 重要な箇所に使用されているセリフ体 */
	font-size: var(--text-size-24);
	font-weight: bold;
	display: block;
}

.cta-main-button__sub {
	font-size: var(--text-size-20);
	display: block;
	margin-top: 4px;
}
/* 締切訴求：ボタン内の締切を目立たせる */
.cta-main-button__sub--deadline {
	font-weight: bold;
	font-size: var(--text-size-22);
	letter-spacing: 0.03em;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 769px) {
	.cta-main-button__sub--deadline {
		font-size: var(--text-size-20);
	}
}

/* PC用調整：元のメディアクエリの基準に合わせる */
@media screen and (min-width: 769px) {
	.cta-block {
		max-width: 1000px; /* PC時の標準幅 */
	}
	.cta-main-button {
		max-width: 560px;
		padding: 20px 40px;
	}
	.cta-main-button__text {
		font-size: var(--text-size-28);
	}
	.cta-main-button__sub {
		font-size: var(--text-size-16);
	}
	.cta-description {
		font-size: var(--text-size-20);
	}
}

/***************************************
CTA Button - Right Aligned Icon
****************************************/

/* ボタン本体：相対配置（position: relative）に設定 */
.cta-main-button {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	background: linear-gradient(180deg, var(--blue01), var(--blue03));
	border-radius: 4px; /* 真面目な印象の角丸 */
	width: 100%;
	max-width: 400px;
	padding: 18px 20px;
	color: var(--white) !important;
	box-shadow: 0 4px 0 #00596e; /* 厚みを出してボタンの存在感を強化 */
	position: relative; /* アイコンを絶対配置するために必要 */
	transition: all 0.3s ease;
	margin: 0 auto;
}

/* ホバー時の挙動 */
.cta-main-button:hover {
	transform: translateY(2px);
	box-shadow: 0 2px 0 #00596e;
}

/* テキスト：中央に配置 */
.cta-main-button__text {
	font-family: "Noto Serif JP", serif;
	font-size: var(--text-size-20);
	font-weight: bold;
	display: block;
}

.cta-main-button__sub {
	display: block;
	margin-top: 4px;
}

/* 矢印アイコン：右端に絶対配置 */
.cta-main-button__icon {
	position: absolute;
	right: 15px; /* ボタンの右内側 */
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

/* アイコン内の矢印（CSS描画） */
.cta-main-button__icon::after {
	content: "";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	margin-left: -2px;
}

/* ホバー時に矢印が少し右に動く演出（遷移の示唆） */
.cta-main-button:hover .cta-main-button__icon {
	transform: translateY(-50%) translateX(5px);
}

/* PCサイズ調整 */
@media screen and (min-width: 769px) {
	.cta-main-button {
		max-width: 600px;
		padding: 22px 40px;
	}
	.cta-main-button__icon {
		right: 40px;
		width: 32px;
		height: 32px;
	}
	.cta-main-button__text {
		font-size: var(--text-size-28);
	}
}

/***************************************
 フローティングCTA（cvBtn__button--v1が見えなくなったら表示）
 cta-main-buttonに準じたデザイン
****************************************/
.floating-cta {
	position: fixed;
	z-index: 95;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}
.floating-cta.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* SP：中央、bottomから少し上げて端が見えづらくならないように */
.floating-cta__inner {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 28px;
	width: calc(100% - 32px);
	max-width: 400px;
}
.floating-cta__button {
	margin: 0 auto;
}

/* PC時はフローティングCTAを表示しない */
@media screen and (min-width: 769px) {
	.floating-cta {
		display: none !important;
	}
}

@media screen and (min-width: 800px) {
	/***************************
 flow
 ****************************/
	.flow {
		max-width: 1500px;
		margin: 0 auto;
	}
	.flow__list {
		display: flex;
		justify-content: center; /* 中央揃え */
		gap: 16px;
		margin: 0 auto;
		width: 100% !important; /* 横幅を1300pxから100%にリセット */
		max-width: 1400px;
	}
	.flow__card {
		width: auto;
	}
	.flow__scroll {
		overflow-x: visible !important; /* 横スクロールを完全に無効化 */
		height: auto;
	}

	.flow__item {
		flex: 1;
	}
	.border {
		width: 80vw;
		left: 50%;
		transform: translateX(-50%);
	}
	.flow__card-text {
		font-size: var(--text-size-16);
	}
	.flow__card-title {
		font-size: var(--text-size-24);
	}
	.flow__scroll::-webkit-scrollbar {
		display: none !important;
	}
	.scroll-hint {
		background: none !important; /* ヒント用の背景色を消す */
	}
	.scroll-hint-icon {
		display: none !important; /* スクロールを促すアイコンを隠す */
	}
}
