@charset "UTF-8";
/* CSS Document */

/*
	Reset CSS
-----------------------------------------------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

html {
	font-size: 62.5%;
}

body {
	color: #000;
	font-size: 1.4em;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-weight: 400;
	letter-spacing: 0.1rem;
	font-feature-settings: "palt";
	overflow-wrap: break-word;
}

p {
	line-height: 170%;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	color: #000;
	text-decoration: none;
	transition: all 0.3s;
}

a:visited {
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

img {
	vertical-align: top;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* iPad背景切れ対策 */
@media print,
screen and (min-width:813px) {
	body {
		min-width: 1200px;
	}
}

/* 表示切替 */
.switch {
	visibility: hidden;
}

.sp {
	display: none;
}


/*
	common
-----------------------------------------------------------------------------------------------*/
:root {
	/* color */
	--clrWhite: #ffffff;
	--clrDarkOrange: #F27523;
	--clrBrightOrange: #FFC333;
	/* fontFamily */
	--fontsLibre: "Libre Baskerville", "Noto Serif", serif;
}

/* タイトル
============================== */
h3 {
	color: var(--clrDarkOrange);
	font-size: 5rem;
	font-weight: 700;
	font-family: var(--fontsLibre);
	font-style: normal;
}

/* ボタン
============================== */
[class$="Btn"] {
	background: var(--clrDarkOrange);
	text-align: center;
	border: 3px solid #fff;
	box-shadow:
		0 0 0 2px var(--clrDarkOrange),
		/* 一番外側のオレンジの縁 */
		0 0 10px var(--clrDarkOrange);
	/* オレンジの影 */
}

[class$="Btn"]:hover {
	background: var(--clrBrightOrange);
	box-shadow:
		0 0 0 2px var(--clrBrightOrange),
		/* 一番外側のオレンジの縁 */
		0 0 10px var(--clrDarkOrange);
	/* オレンジの影 */
}

/* box */
#wrapper {
	position: relative;
	overflow: hidden;
}

.ctsArea {
	display: flex;
	width: 1000px;
}

/* コンバージョンボタン
============================== */
.conversionBtn {
	position: fixed;
	top: -30px;
	right: -30px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 175px;
	height: 175px;
	border-radius: 50%;
	line-height: 150%;
	font-size: 1.8rem;
	color: var(--clrWhite);
	border: 3px solid #fff;
	box-shadow:
		0 0 0 6px var(--clrDarkOrange),
		0 0 24px var(--clrDarkOrange);
	cursor: pointer;
	text-decoration: none;
	overflow: hidden;
	z-index: 10000;
}

.conversionBtn::before,
.conversionBtn::after {
	content: "";
	position: absolute;
	transition: 0.3s ease;
}

.conversionBtn::before {
	bottom: 30px;
	right: 70px;
	width: 32px;
	height: 2px;
	background: var(--clrWhite);
}

.conversionBtn::after {
	bottom: 16px;
	right: 71px;
	width: 14px;
	height: 14px;
	border-top: 2px solid var(--clrWhite);
	transform: translateY(-50%) rotate(36deg);
}

@media (hover: hover) {
	.conversionBtn:hover {
		box-shadow:
			0 0 0 6px var(--clrBrightOrange),
			/* 一番外側のオレンジの縁 */
			0 0 10px var(--clrDarkOrange);
		/* オレンジの影 */
	}

	.conversionBtn:hover::before {
		transform: translateX(6px);
	}

	.conversionBtn:hover::after {
		right: 67px;
	}
}

.conversionBtn span {
	position: static;
	display: inline-block;
	width: 100%;
	line-height: 1.4;
	text-align: center;
	padding: 10px 10px 0 0;
}

/*
	kv
-----------------------------------------------------------------------------------------------*/
#kvWrapper {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#kvWrapper .ctsArea {
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 17px 0 125px;
}

.kvReadTxt {
	color: var(--clrDarkOrange);
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 145%;
	margin-bottom: 33px;
}

.kvLogoArea {
	display: flex;
	flex-direction: column-reverse;
}

.kvLogo {
	width: 406px;
	height: auto;
	margin-bottom: 46px;
}

.kvReadVertical {
	position: absolute;
	right: 16%;
	top: 29%;
	display: flex;
	flex-direction: column;
	writing-mode: vertical-rl;
	font-size: 1.8rem;
	letter-spacing: .1em;
	z-index: 1000;
}

.kvReadVertical span {
	height: fit-content;
	padding: 5px 8px;
	background: rgba(255, 255, 255, 0.8);
}

/* slider
============================== */
.kvSliderArea {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

[class^="kvSlider0"] img {
	height: auto;
	width: 100%;
}

.kvSliderMove {
	display: none;
}

/* slider
============================== */
.slider {
	width: 100%;
	height: fit-content;
	display: block;
}

.slider img {
	width: auto;
	/*スライダー内の画像を横幅100%に*/
	height: 110px;
}

/* スクロールバー
============================== */
/*スクロールダウン全体の場所*/
.scrolldown {
	/*描画位置※位置は適宜調整*/
	position: absolute;
	bottom: 11%;
	left: 7%;
	/*全体の高さ*/
	height: 100px;
	font-family: var(--fontsLibre);
	z-index: 1001;
}

/*Scrollテキストの描写*/
.scrolldown span {
	/*描画位置*/
	position: absolute;
	left: 0px;
	top: 10px;
	/*テキストの形状*/
	color: var(--clrDarkOrange);
	font-size: 1.5rem;
	writing-mode: vertical-rl;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown::before {
	position: absolute;
	top: 146px;
	content: "";
	display: inline-block;
	height: 19px;
	width: 1px;
	background: var(--clrDarkOrange);
	transform: translateY(-50%) rotate(45deg);
}

.scrolldown::after {
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	left: -7px;
	/*線の形状*/
	width: 1px;
	height: 100px;
	background: var(--clrDarkOrange);
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}

/*
	aboutWrapper
-----------------------------------------------------------------------------------------------*/
#aboutWrapper {
	display: flex;
	justify-content: center;
	padding-bottom: 124px;
}

#aboutWrapper .ctsArea {
	justify-content: center;
	align-items: center;
	gap: 96px;
}

.aboutReadTxt {
	font-size: 2.5rem;
	white-space: nowrap;
	font-weight: 500;
}

.aboutTxt {
	font-size: 1.4rem;
	line-height: 255%;
	text-align: justify;
}

/*
	featureWrapper
-----------------------------------------------------------------------------------------------*/
#featureWrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom: 170px;
}

#featureWrapper .ctsArea {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.featureTit {
	font-size: 2.8rem;
	margin-bottom: 70px;
}

.featureTit span {
	color: var(--clrDarkOrange);
	font-family: var(--fontsLibre);
	font-weight: 700;
	font-size: 7.5rem;
}

.featureList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 65px;
}

.featureList li {
	display: flex;
	flex-direction: column;
	width: 290px;
}

.featurePhArea {
	position: relative;
	margin-bottom: 13px;
}

.listNum {
	position: absolute;
	top: -20px;
	left: -15px;
	display: flex;
	align-items: center;
	height: 44px;
	background: var(--clrBrightOrange);
	color: var(--clrWhite);
	font-size: 3.3rem;
	font-weight: 700;
	font-style: italic;
	padding: 13px 13px 17px 10px;
}

.listNum::after {
	position: absolute;
	bottom: -12px;
	left: 0;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 0px solid transparent;
	border-bottom: 12px solid transparent;
	border-right: 15px solid var(--clrDarkOrange);
	border-left: 0;
}

.featurePhRead {
	font-size: 1.7rem;
	font-weight: 500;
	line-height: 145%;
	margin-bottom: 10px;
}

.featurePhTxt {
	text-align: justify;
}

/* 「キャリアアドバイザー」のアンカーリンク
============================== */
a.anchor {
	position: relative;
	color: var(--clrDarkOrange);
	cursor: pointer;
	text-decoration: none;
}

a.anchor span {
	display: inline-block;
	width: fit-content;
	height: fit-content;
	transition: all 0.3s;
}

a.anchor span::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	/* 下線の太さ */
	background-color: var(--clrDarkOrange);
	/* 文字色に合わせる */
	transition: all 0.3s;
}

a.anchor span:hover {
	color: var(--clrBrightOrange);
}

a.anchor span:hover::after {
	background-color: var(--clrBrightOrange);
}

/*
	worryWrapper
-----------------------------------------------------------------------------------------------*/
#worryWrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

#worryWrapper .ctsArea {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 170px;
}

.worryTit {
	font-size: 3.3rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 80px;
}

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

.worryList li {
	position: relative;
}

.worryTxt {
	position: absolute;
	top: 108px;
	z-index: 2;
	font-size: 1.9rem;
	text-align: center;
}

/* 悩みの文章 個別の位置調整 */
li:first-child .worryTxt {
	left: 30px;
}

li:nth-child(2) .worryTxt {
	left: 74px;
}

li:last-child .worryTxt {
	top: 125px;
	left: 100px;
}

/*
	storyWrapper
-----------------------------------------------------------------------------------------------*/
#storyWrapper {
	display: flex;
	justify-content: center;
	padding-bottom: 150px;
}

#storyWrapper .ctsArea {
	display: flex;
	justify-content: space-between;
	gap: 150px;
	width: 1050px;
	/* ctsAreaを右に50px分ずらす記述 */
}

.storyTitArea {
	margin-left: 25px;
	/* 上のaboutなどど水平位置を合わせる記述 */
}

.storyList {
	display: flex;
	flex-direction: column;
	gap: 45px;
}

.storyList li {
	position: relative;
	display: flex;
	gap: 26px;
	width: 100vw;
	height: fit-content;
	border: 1px solid #E8E8E8;
	border-radius: 20px;
	padding: 33px 30px 23px 35px;
	box-shadow: 5px 7px 13px 0px rgba(168, 83, 83, 0.3);
}

.storyListNum {
	top: 15px;
	left: -22px;
	height: 37px;
	font-size: 1.8rem;
	font-weight: 500;
	padding: 0 15px 3px;
}

.storyListNum::after {
	border-right: 21px solid var(--clrDarkOrange);
}

.storyImgArea img {
	margin-bottom: 3px;
}

.storyRead {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 130%;
	margin-bottom: 15px;
}

.storyRead span {
	display: block;
	font-size: 1.4rem;
	line-height: 130%;
	margin-top: 4px;
}

.storyAdviceArea {
	display: flex;
	align-items: center;
	gap: 18px;
}

.storyAdvisorTxt {
	position: relative;
	display: block;
	width: fit-content;
	height: fit-content;
	border: 1px solid #B7B7B7;
	border-radius: 7px;
	padding: 13px;
	font-size: 1.2rem;
	line-height: 140%;
	text-align: justify;
}

.storyAdvisorTxt::before {
	content: "";
	position: absolute;
	top: 28px;
	right: -8px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid white;
	z-index: 1;
}

.storyAdvisorTxt::after {
	content: "";
	position: absolute;
	top: 27px;
	right: -9px;
	width: 0;
	height: 0;
	border-top: 9px solid transparent;
	border-bottom: 9px solid transparent;
	border-left: 9px solid #B7B7B7;
	z-index: 0;
}

.storyAdvisorName {
	margin-top: 5px;
	font-size: 1rem;
	line-height: 140%;
	white-space: nowrap;
}

.storyBtnArea {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
}

.storyBtnTxt {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--clrDarkOrange);
}

/* spのみaタグ内の文字「読む」を表示 */
.storyBtnRead span {
	display: none;
}

.storyBtnRead {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--clrDarkOrange);
}

/* .storyBtnReadのホバー（ボタンの色を明るく） */
@media (hover: hover) {
	.storyBtnRead:hover {
		background: var(--clrBrightOrange);
	}

	/* .storyBtnReadのホバー（疑似要素が右に移動） */
	.storyBtnRead:hover::before,
	.storyBtnRead:hover::after {
		left: 29px;
	}
}

.storyBtnRead::before,
.storyBtnRead:after {
	content: "";
	position: absolute;
	width: 2px;
	height: 15px;
	background-color: var(--clrWhite);
	transform-origin: center;
	transition: all 0.3s;
}

.storyBtnRead::before {
	top: 23px;
	left: 26px;
	transform: rotate(45deg);
}

.storyBtnRead::after {
	top: 14px;
	left: 26px;
	transform: rotate(-45deg);
}

/*
	awardWrapper
-----------------------------------------------------------------------------------------------*/
#awardWrapper {
	display: flex;
	justify-content: center;
	padding-bottom: 145px;
}

#awardWrapper .ctsArea {
	justify-content: space-between;
}

.awardList {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.awardList li {
	display: flex;
	justify-content: flex-end;
}

.awardList li:nth-child(2) img {
	width: 480px;
	margin-right: 9px;
}

.awardList li:last-child img {
	width: 490px;
}


/*
	clientsWrapper
-----------------------------------------------------------------------------------------------*/
#clientsWrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 100px;
}

#clientsWrapper .ctsArea {
	flex-direction: column;
	justify-content: center;
}

.clientsTitArea {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
}

/*
	teamWrapper
-----------------------------------------------------------------------------------------------*/
#teamWrapper {
	display: flex;
	justify-content: center;
	background: url(../images/team_bg_pc.svg) no-repeat center center/cover;
	padding: 124px 0 92px;
}

#teamWrapper .ctsArea {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.teamTit {
	color: var(--clrDarkOrange);
	font-size: 3rem;
	line-height: 140%;
	text-align: center;
	margin-bottom: 70px;
}

.teamList {
	display: flex;
	flex-wrap: wrap;
	gap: 80px 100px;
	margin-bottom: 73px;
}

.teamList li {
	width: calc((100% - 300px) / 4);
}

.teamName {
	display: block;
	font-size: 1.7rem;
	line-height: 110%;
	margin-top: 7px;
}

.teamName span {
	color: #A0A0A0;
	font-size: 1.3rem;
}

.teamTag {
	height: 95px;
	color: var(--clrBrightOrange);
	font-size: 1.1rem;
}

/* ConversionBtnはある程度commonにまとめて記述しています */
.teamConversionBtn {
	display: inline-block;
	width: fit-content;
	border-radius: 40px;
	font-size: 2.1rem;
	color: var(--clrWhite);
	padding: 15px 30px;
}

/*
	newsWrapper
-----------------------------------------------------------------------------------------------*/
#newsWrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 130px 0;
}

#newsWrapper .ctsArea {
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

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

.newsList li {
	position: relative;
	border-radius: 17px;
	box-shadow: 0px 0px 10px 4px rgba(131, 64, 71, 0.16);
	transition: opacity 0.3s ease;
}

.newsList li::before,
.newsList li::after {
	content: "";
	position: absolute;
	transition: 0.3s ease;
}

.newsList li::before {
	bottom: 21px;
	right: 20px;
	width: 28px;
	height: 1px;
	background: var(--clrDarkOrange);
}

.newsList li::after {
	bottom: 6px;
	right: 22px;
	width: 14px;
	height: 14px;
	border-top: 1px solid var(--clrDarkOrange);
	transform: translateY(-50%) rotate(36deg);
}

.newsList li:hover::before {
	right: 14px;
}

.newsList li:hover::after {
	right: 16px;
}

/* ホバーしたら少し透過する */
.newsList li:hover {
	cursor: pointer;
	opacity: 0.6;
}

a.newsBtnArea:visited {
	color: #000;
}

.newsImgArea {
	border-top-left-radius: 17px;
	border-top-right-radius: 17px;
	overflow: hidden;
}

.newsImgArea img {
	width: 320px;
	height: fit-content;
	object-fit: cover;
	display: block;
}

.newsTit {
	font-weight: 500;
	line-height: 155%;
	text-align: justify;
	margin-bottom: 33px;
	padding: 21px 22px 18px;
}

.newsDate {
	position: absolute;
	left: 22px;
	bottom: 15px;
	width: 100%;
	font-size: 1.3rem;
}

/*
	modal
-----------------------------------------------------------------------------------------------*/
.modalBox {
	display: none;
	height: fit-content;
	max-width: 950px;
	margin: 0;
	position: fixed;
	width: fit-content;
	z-index: 7777;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.modalItem {
	display: flex;
	flex-direction: column;
	max-width: 1000px;
	max-height: 90vh;
	overflow-y: auto;
	padding: 100px;
	background: #fff url(../images/modal_bg_pc.svg) no-repeat center center / cover;

	.modalItemInner {
		width: 100%;
		margin: 0 auto;

		/* 画像 */
		>.photo {
			border-radius: 20px;
			overflow: hidden;

			img {
				width: 100%;
			}
		}

		/* テキストエリア */
		>.txtArea {
			display: flex;
			flex-direction: column;
			gap: 10px;
			padding: 20px 20px 0;

			/* タイトル */
			>.tit {
				font-size: 2.0rem;
				font-weight: var(--fw-bold);
				text-align: center;
				color: var(--c-orange);
			}
		}
	}
}

.modalProfile {
	display: flex;
	align-items: center;
	gap: 34px;
	margin-bottom: 40px;
}

/* Voice無しの場合クラス名.modalProfileNoVoiceをつけて下のマージンを削除 */
.modalProfileNoVoice {
	margin-bottom: 0;
}

.modalImgArea {
	display: flex;
	flex-direction: column;
	width: fit-content;
}

.modalName {
	font-size: 2.5rem;
	font-weight: 500;
	line-height: 160%;
}

.modalName span {
	font-size: 1.6rem;
	color: #A0A0A0;
	margin-left: 7px;
}

.modalProfileArea p {
	text-align: justify;
}

.modalProfileArea p:first-child {
	font-size: 1.6rem;
	color: var(--clrDarkOrange);
	line-height: 150%;
	font-weight: 500;
	margin-bottom: 12px;
}

.modalProfileArea p:nth-child(2) {
	font-weight: 500;
	font-size: 1.6rem;
}

.modalProfileArea p:last-child {
	font-size: 1.4rem;
}

.voice {
	position: relative;
}

.voiceItem {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

/* ローマ字「Voice」をabsoluteして左寄せ */
.voice .aboutTit {
	position: absolute;
	top: -13px;
	left: 0;
}

.voiceItemTit {
	display: flex;
	align-items: flex-end;
	font-size: 2.7rem;
	margin-bottom: 10px;
}

.voiceTxt {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
}

.voiceTxtArea {
	width: 100%;
	border: 1px solid #B2B2B2;
	border-radius: 12px;
	padding: 25px 40px;
	background: var(--clrWhite);
}

.voiceTxtArea p:first-child {
	text-align: justify;
	margin-bottom: 5px;
}

.voiceTxtArea p:last-child {
	text-align: end;
}

/* modal_openボタン */
a[class^="modalOpen"] {
	display: inline-block;
	border-radius: 30px;
	font-size: 1.4rem;
	background: var(--clrBrightOrange);
	padding: 6px 13px;
	transition: opacity 0.3s ease;
	color: var(--clrWhite);
	cursor: pointer;
}

.modalOpen:hover {
	opacity: 0.6;
}

/* modal_closeボタン */
.modalClose {
	width: 70px;
	height: 70px;
	background-color: #000;
	border-radius: 50%;
	position: absolute;
	top: -32px;
	right: -32px;
	cursor: zoom-out;
	transition: transform 0.2s;

	&::before,
	&::after {
		content: '';
		width: 1px;
		height: 40px;
		background-color: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
		transition: transform 0.2s;
	}

	&::after {
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	@media (hover: hover) {
		&:hover {
			opacity: 1.0;
			transform: rotate(180deg);
		}
	}

}

/* modal_背景 */
.modalBg {
	display: none;
	width: 100%;
	height: 120%;
	background-color: rgb(0 0 0 / .5);
	position: fixed;
	top: 0;
	left: 0;
	z-index: 6666;
	opacity: 0.98;
	backdrop-filter: blur(3px);
}

/*
	レスポンシブ
-----------------------------------------------------------------------------------------------*/
@media screen and (max-width:812px) {
	body {
		-webkit-text-size-adjust: 100%;
		font-size: 1.4rem;
	}

	img {
		width: 100%;
	}

	p {
		line-height: 150%;
	}

	.pc {
		display: none;
	}

	.sp {
		display: block;
	}

	br.sp {
		display: inline-block;
	}

	/*
		common
	-----------------------------------------------------------------------------------------------*/
	.ctsArea {
		width: 100%;
		max-width: 500px;
		padding: 0 20px;
	}

	.conversionBtn {
		width: 130px;
		height: 130px;
		font-size: 1.4rem;
	}

	.conversionBtn::before {
		bottom: 21px;
		right: 50px;
		width: 27px;
		height: 1px;
	}

	.conversionBtn::after {
		bottom: 6px;
		right: 52px;
		border-top: 1px solid var(--clrWhite);
	}

	/*
		kv
	-----------------------------------------------------------------------------------------------*/
	#kvWrapper .ctsArea {
		padding-top: 70px;
		padding-bottom: 80px;
		width: auto;
	}

	.kvReadTxt {
		font-size: 1.4rem;
		line-height: 160%;
		margin-bottom: 45px;
	}

	.kvLogo {
		width: 100%;
		min-width: 250px;
		max-width: 315px;
		margin-bottom: 45px;
	}

	.kvReadVertical {
		top: 49%;
		right: 10%;
		font-size: 1.5rem;
	}

	/* slider
	============================== */
	.kvSliderArea {
		gap: 20px;
		width: auto;
	}

	[class^="kvSlider0"] img {
		width: auto;
		height: 130px;
		opacity: 0;
	}

	[class^="kvSlider0"] .slideInner img {
		opacity: 1;
	}

	.kvSliderMove {
		display: contents;
	}

	[class$="Fix"] {
		display: none;
	}

	.slider img {
		height: 80px;
	}

	/* scroll
	============================== */
	.scrolldown {
		bottom: 13%;
	}

	.scrolldown span {
		font-size: 1.4rem;
	}

	/*
		aboutWrapper
	-----------------------------------------------------------------------------------------------*/
	#aboutWrapper {
		padding-bottom: 80px;
	}

	#aboutWrapper .ctsArea {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.aboutTxt {
		line-height: 200%;
	}

	/*
		featureWrapper
	-----------------------------------------------------------------------------------------------*/
	#featureWrapper {
		padding-bottom: 70px;
	}

	.featureTit {
		margin-bottom: 35px;
	}

	.featureList {
		flex-direction: column;
	}

	.featureList li {
		width: 100%;
	}

	.featurePhArea {
		margin-bottom: 10px;
	}

	.featurePhRead {
		margin-bottom: 6px;
	}

	/*
		worryWrapper
	-----------------------------------------------------------------------------------------------*/
	#worryWrapper .ctsArea {
		padding-bottom: 40px;
	}

	.worryTit {
		font-size: 2.1rem;
		margin-bottom: 15px;
	}

	.worryList {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
		max-width: 380px;
	}

	.worryTxt {
		width: 100%;
		font-size: clamp(1.5rem, 3.8vw, 1.9rem);
	}

	li:first-child .worryTxt,
	li:nth-child(2) .worryTxt,
	li:last-child .worryTxt {
		top: 50%;
		left: 50%;
		transform: translateX(-50%) translateY(-50%);

	}

	/*
		storyWrapper
	-----------------------------------------------------------------------------------------------*/
	#storyWrapper {
		padding-bottom: 80px;
	}

	#storyWrapper .ctsArea {
		flex-direction: column;
		gap: 20px;
	}

	.storyList {
		gap: 35px;
	}

	.storyList li {
		flex-direction: column;
		gap: 15px;
		width: 100%;
		padding: 28px 28px 24px 28px;
	}

	.storyListNum {
		left: -10px;
		padding: 0 10px 3px;
	}

	.storyListNum::after {
		bottom: -7px;
		left: 0px;
		border-bottom: 7px solid transparent;
		border-right: 9px solid var(--clrDarkOrange);
	}

	.storyRead {
		text-align: center;
		font-size: 1.6rem;
	}

	.storyAdviceArea {
		justify-content: center;
	}

	.storyAdvisorTxt {
		font-size: 1.1rem;
		padding: 10px;
	}

	.storyAdvisorTxt::before {
		top: 25px;
	}

	.storyAdvisorTxt::after {
		top: 24px;
	}

	.storyAdvisorArea img {
		max-width: 100px;
	}

	/* storyBtn
	============================== */
	.storyBtnArea {
		gap: 3px;
	}

	/* pcのみstoryBtnTxt内の文字「読む」を表示 */
	.storyBtnTxt {
		display: none;
	}

	.storyBtnRead {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 40px;
		border-radius: 50px;
		font-size: 1.7rem;
		color: var(--clrWhite);
	}

	.storyBtnRead span {
		display: contents;
	}

	.storyBtnRead::before,
	.storyBtnRead:after {
		left: 90%;
		height: 10px;
	}

	.storyBtnRead::before {
		top: 19px;
	}

	.storyBtnRead:after {
		top: 13px;
	}

	/*
		awardWrapper
	-----------------------------------------------------------------------------------------------*/
	#awardWrapper {
		padding-bottom: 40px;
	}

	#awardWrapper .ctsArea {
		flex-direction: column;
	}

	.awardList {
		align-items: center;
		gap: 20px;
		margin-top: 27px;
	}

	.awardList li {
		justify-content: center;
	}

	.awardList li:nth-child(2) img {
		max-width: 100%;
	}

	.awardList li:last-child img {
		max-width: 160px;
	}

	/*
		clientsWrapper
	-----------------------------------------------------------------------------------------------*/
	#clientsWrapper {
		padding-bottom: 65px;
	}

	.clientsTitArea {
		align-items: flex-start;
	}

	/*
		teamWrapper
	-----------------------------------------------------------------------------------------------*/
	#teamWrapper {
		width: 100%;
		padding-bottom: 90px;
		background: url(../images/team_bg_sp.png) no-repeat center center/cover;
	}

	.teamTit {
		font-size: 2.5rem;
		margin-bottom: 40px;
	}

	.teamList {
		gap: 50px 25px;
		width: 100%;
		margin-bottom: 50px;
	}

	.teamList li {
		width: calc((100% - 25px) / 2);
	}

	.teamList li:first-child .teamTag,
	.teamList li:nth-child(2) .teamTag {
		height: 100px;
	}

	.teamList li:nth-child(5) .teamTag,
	.teamList li:nth-child(6) .teamTag {
		height: 80px;
	}

	.teamConversionBtn {
		width: 100%;
		border-radius: 50px;
	}

	/*
	newsWrapper
	-----------------------------------------------------------------------------------------------*/
	#newsWrapper {
		padding: 80px 0 50px;
	}

	.newsTitArea {
		margin-bottom: 20px;
	}

	.newsList {
		flex-direction: column;
		gap: 35px;
	}

	.newsList li {
		width: 100%;
	}

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

	/*
	modal
	-----------------------------------------------------------------------------------------------*/
	.modalBox {
		max-width: 340px;
	}

	.modalItem {
		max-width: 400px;
		max-height: 420px;
		padding: 28px;
		background: #fff url(../images/modal_bg_sp.svg) no-repeat center center / cover;
	}

	.modalProfile {
		flex-direction: column;
		gap: 10px;
		width: 100%;
		margin-bottom: 30px;
	}

	.modalImgArea {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		gap: 45px;
		width: 100%;
	}

	.modalProfileArea p:first-child {
		margin-bottom: 18px;
	}

	.modalProfileArea p:nth-child(2) {
		margin-bottom: 3px;
	}

	.modalImgArea img {
		max-width: 150px;
	}

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

	.voice .aboutTit {
		position: static;
		text-align: center;
		font-size: 4rem;
	}

	.voiceItemTit {
		font-size: 2.2rem;
	}

	.voiceTxt {
		gap: 20px;
	}

	.voiceTxtArea {
		padding: 15px 15px;
	}

	.modalName {
		font-size: 2rem;
		text-align: left;
		line-height: 120%;
	}

	.modalName span {
		font-size: 1.4rem;
		margin-left: 0;
	}

	.modalClose {
		top: -14px;
		right: -14px;
		width: 50px;
		height: 50px;
	}

	.modalClose::before,
	.modalClose::after {
		height: 25px;
	}
	/*
	footer
	-----------------------------------------------------------------------------------------------*/
	/* プライバシーマーク調整 */
	img.lozad{
		width: auto;
	}
}