@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--base-color: #fff;
	/*テンプレートの土台となる色（主に背景カラー）*/
	--base-inverse-color: #323232;
	/*上のbase-colorの対となる色（主にテキストカラー）*/

	--primary-color: #1b56ba;
	/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;
	/*上のprimary-colorの対となる色*/

	--space-large: 8vw;
	/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*fadeInのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/*fadeOutのキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes fadeOut {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		visibility: hidden;
	}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {
	box-sizing: border-box;
}

html,
body {
	font-size: 14px;
	/*基準となるフォントサイズ*/
	height: 100%;
}

/*画面幅1200px以上の追加指定*/
@media screen and (min-width:1000px) {

	html,
	body {
		font-size: 15px;
	}

}

/*追加指定ここまで*/

/*画面幅1600px以上の追加指定*/
@media screen and (min-width:1600px) {

	html,
	body {
		font-size: 1vw;
	}

}

a {
	color: #1b56ba !important;
}

.inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1100px;
	width: 96%;
}

.inner-900 {
	margin-left: auto;
	margin-right: auto;
	max-width: 900px;
	width: 96%;
}

.inner-800 {
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
	width: 96%;
}

.voice-area,
.recruit-area,
.company-area {
	padding-bottom: 80px;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 400;
	-webkit-text-size-adjust: none;
	background: var(--base-color);
	/*varは背景色のことで冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);
	/*文字色。冒頭で指定しているbase-inverse-colorを読み込みます。*/
	line-height: 2;
	/*行間*/
}


p,
a,
li,
dt,
dd,
h1,
h2.h3.h4 {
	line-height: 1.8;
}


/*リセット他*/
figure {
	margin: 0;
}

dd {
	margin: 0;
}

nav ul {
	list-style: none;
}

nav,
ul,
li,
ol {
	margin: 0;
	padding: 0;
}

section li {
	margin-left: 1rem;
}

/*table全般の設定*/
table {
	border-collapse: collapse;
}

/*画像全般の設定*/
img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/*videoタグ*/
video {
	max-width: 100%;
}

/*iframeタグ*/
iframe {
	width: 100%;
}

/*input*/
input {
	font-size: 1rem;
}

.flex {
	display: flex;
}

/*ボタン
---------------------------------------------------------------------------*/
.button-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	border: none;
	margin: 0 auto;
	padding: 1em 2em;
	background: url(../images/arrow.svg) no-repeat center right 10% / 12%;
	background-color: #1b56ba;
	color: #ffffff;
	font-size: 1em;
	transition: 0.6s;
	cursor: pointer;
}

.button-1:hover {
	opacity: 0.6;
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;
	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;
	/*下線を消す*/
	opacity: 0.9;
	/*色を90%だけ出す*/
}


/*loading（ローディング）
---------------------------------------------------------------------------*/
@keyframes progress {
	0% {
		transform: scaleX(0);
	}

	100% {
		transform: scaleX(1);
	}
}

/*ロゴ画像*/
#loading img {
	width: 300px;
	/*画像の幅*/
	margin-bottom: 20px;
	/*ローディングバーとの間のスペース調整*/
}

/*ローディングブロック*/
#loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0E3980;
	/*背景色*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	animation: fadeOut 1s ease 2s forwards;
}

/*プログレスバーの土台*/
.progress-container {
	width: 240px;
	/*幅。お好みで。*/
	height: 4px;
	/*高さ。お好みで。*/
	border-radius: 2px;
	/*角をほんの少し丸くする*/
	background: #fff;
	/*バーのベースカラー*/
	overflow: hidden;
}

/*プログレスバー*/
.progress-bar {
	width: 100%;
	height: 100%;
	background: #000;
	/*進行中のバーの色*/
	animation: progress 2s linear;
	/*#loadingのanimation時間に合わせて2秒に設定*/
	transform-origin: left;
}


/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: absolute;
	z-index: 20;
	left: 0px;
	top: 0px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	/*ヘッダーの高さ*/
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {

	header {
		height: 90px;
		/*ヘッダーの高さ*/
	}

}

/*追加指定ここまで*/

/*ロゴ画像*/
#logo img {
	display: block;
	width: 180px;
	/*ロゴの幅*/
}

#logo {
	margin: 0;
	padding: 0;
	padding-left: 3vw;
	/*ロゴの左側に空ける余白*/
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {

	/*ロゴ画像*/
	#logo img {
		width: 220px;
		/*ロゴの幅*/
	}

}

/*追加指定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {
	display: none;
}

header .active-page::after {
	display: block;
	content: "";
	border-bottom: 2px solid #0e3980;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	/*メニューブロック全体の設定*/
	header>nav>ul {
		margin-right: 250px;
		/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;
		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;
		text-decoration: none;
		font-size: 0.9rem;
		color: #1a1a1a !important;
		padding: 0.5rem 1rem;
	}

	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;
		/*右に空ける余白*/
	}

}

/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: fadeIn 0.5s 0.1s both;
	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;
	z-index: 100;
	margin-left: 1rem;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	padding: 0.3em 1em;
	/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;
	/*上に空けるスペース。ドロップダウン同士の隙間。*/
	background: var(--base-color);
	/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);
	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	border: 1px solid var(--base-inverse-color);
	/*枠線の幅、線種、varは色の指定で冒頭のbase-inverse-colorを読み込みます。*/
	border-radius: 3px;
	/*角を少し丸くする指定*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {
	display: none;
}

#menubar ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

#menubar a {
	display: block;
	text-decoration: none;
}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {
	display: block;
}

.small-screen #menubar.display-block {
	display: block;
}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {
	display: none;
}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {
	display: none;
}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	/*Font Awesomeを使う指示*/
	content: "\f078";
	/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;
	/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;
	/*アイコンとテキストとの間に空けるスペース*/
}

/*メニューブロック内のロゴ画像の幅*/
#menubar .logo {
	width: 200px;
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {
		right: -100vw;
	}

	100% {
		right: 0px;
	}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;
	overflow: auto;
	z-index: 100;
	right: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;
	/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);
	/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	animation: animation1 0.2s both;
	/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	margin: 1rem 0;
	/*メニューの外側に空けるスペース。上下、左右への順番。*/
}

.small-screen #menubar a {
	border-radius: 5px;
	color: #fff !important;
	padding: 1rem 2rem;
	/*メニュー内の余白。上下、左右へ。*/
	background: var(--base-inverse-color);
	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);
	/*背景色。冒頭のbase-colorを読み込みます。*/
}

/*子メニュー*/
.small-screen #menubar ul ul a {
	background: var(--base-color);
	/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);
	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	border: 1px solid var(--base-inverse-color);
	/*枠線の幅、線種、varは色の指定で冒頭のbase-inverse-colorを読み込みます。*/
	margin-left: 2rem;
	/*左に空けるスペース*/
}

/*ボタン 青
---------------------------------------------------------------------------*/
.button-1 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	border: none;
	margin: 0 auto;
	padding: 1em 2em;
	background: url(../images/arrow.svg) no-repeat center right 10% / 12%;
	background-color: #1b56ba;
	color: #ffffff;
	font-size: 1em;
	transition: 0.6s;
	cursor: pointer;
}

.button-1:hover {
	opacity: 0.6;
}

/*ボタン　白抜き
---------------------------------------------------------------------------*/
.button-2 {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	border: 1px solid #1b56ba;
	margin: 0 auto;
	padding: 1em 2em;
	background: url(../images/arrow_bl.svg) no-repeat center right 10% / 12%;
	background-color: #fff;
	color: #1b56ba;
	font-size: 1em;
	font-weight: 500;
	transition: 0.6s;
	cursor: pointer;
}

.button-2:hover {
	background: #98bdfc url(../images/arrow_bl.svg) no-repeat center right 10% / 12%;
}

/*ボタン　フッター
---------------------------------------------------------------------------*/
.button-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 250px;
	border: 1px solid #ffffff;
	margin-left: auto;
	margin-top: 1.5em;
	padding: 1em 2em;
	background: url(../images/arrow.svg) no-repeat center right 10% / 12%;
	background-color: #ffffff00;
	color: #ffffff;
	font-size: 1em;
	transition: 0.6s;
	cursor: pointer;
}

.button-footer:hover {
	background: #8b8b8b url(../images/arrow.svg) no-repeat center right 10% / 12%;
}

@media screen and (max-width:767px) {
	.button-footer {
		margin-left: auto;
		margin-right: auto;
		margin-top: 3em;
		margin-bottom: 3em;
	}
}

/*エントリーボタン
---------------------------------------------------------------------------*/
#entry_btn {
	position: fixed;
	z-index: 100;
	cursor: pointer;
	right: 116px;
	top: 0px;
	/* padding: 20px 15px; */
	width: 105px;
	height: 72px;
	background: var(--primary-color);
	border-radius: 0px 0px 0px 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.6s;
	cursor: pointer;
}

#entry_btn:hover {
	opacity: 0.6;
}

#entry_btn a {
	text-decoration: none;
	color: #fff !important;
	font-size: 10px;
	padding-top: 5px;
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;
	/*右からの配置場所指定*/
	top: 0px;
	/*上からの配置場所指定*/
	padding: 20px 15px;
	/*上下、左右への余白*/
	width: 60px;
	/*幅（３本バーが出ている場合の幅になります）*/
	height: 60px;
	/*高さ*/
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--base-inverse-color);
	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
}

/*画面700px以上の追加指定*/
@media screen and (min-width:700px) {

	#entry_btn,
	#menubar_hdr {
		transform: scale(1.5);
		/*1.5倍のサイズに。お好みで。*/
	}

}

@media screen and (max-width:699px) {
	#entry_btn {
		right: 60px !important;
		width: 105px;
		height: 60px;
	}

	#entry_btn a {
		padding-top: 0px;
		font-size: 12px;
	}

}

/*追加指定ここまで*/


/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1.5px solid var(--base-color);
	/*線の幅、線種、varは色のことで冒頭のbase-colorを読み込みます。*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--primary-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	/*変形の起点。センターに。*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1) {
	transform: rotate(45deg) translate(6px, 5.8px);
	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3) {
	transform: rotate(-45deg) translate(7px, -7px);
	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2) {
	display: none;
	/*２本目は使わないので非表示にする*/
}


/*メイン画像
---------------------------------------------------------------------------*/
/*ブロック全体*/
#mainimg {
	background: var(--base-color) url("../images/mainimg_sh.jpg") no-repeat center center / cover;
	width: 100%;
	padding-top: 150%;
	/*アスペクト比2:3（3÷2=1.5）*/
	position: relative;
	overflow: hidden;
}

/*画面420px以上の追加指定*/
@media screen and (min-width:420px) {

	#mainimg {
		background: var(--base-color) url("../images/mainimg.jpg") no-repeat center center / cover;
		padding-top: 56.25%;
		/*アスペクト比16:9（9÷16=0.5624）*/
	}

}

/*追加指定ここまで*/

#mainimg>div {
	position: absolute;
	top: 60px;
	/*header分を確保*/
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;

}

/*画面420px以上の追加指定*/
@media screen and (min-width:420px) {

	#mainimg>div {
		left: var(--space-large);
		align-items: flex-start;
		justify-content: center;
	}

}

/*追加指定ここまで*/

/*テキストのブロック*/
#mainimg p {
	margin: 0;
}

#mainimg .text {
	font-size: 28px;
	/*文字サイズ。*/
	font-weight: 800;
	/*太字に*/
	line-height: 1.8;
	/*行間*/
	text-align: center;
	/*テキストをセンタリング*/
}

/*画面420px以上の追加指定*/
@media screen and (min-width:420px) {

	#mainimg .text {
		text-align: left;
		/*テキストを左寄せ*/
		font-size: 3.6vw;
		/*文字サイズ。*/
	}

}

/*追加指定ここまで*/


/*ボタン*/
#mainimg .btn {
	font-size: 1rem;
	/*文字サイズ*/
	font-weight: 600;
	/*少し太字に*/
	margin-top: 3vw;
	/*上のテキストとボタンの間のスペース。*/
	display: flex;
	gap: 1rem;
	/*ボタン同士の余白*/
}

#mainimg .btn a {
	display: block;
	text-decoration: none;
	padding: 0.8rem 2rem;
	/*ボタン内の余白。上下、左右へ。1rem=1文字分です。*/
	margin-bottom: 10px;
	/*ボタン同士の隙間*/
}

/*マウスオン時*/
#mainimg .btn a:hover {
	opacity: 1;
	transform: scale(1.05);
	/*105%に拡大*/
}

/*画面420px以上の追加指定*/
@media screen and (min-width:420px) {

	/*ボタン*/
	#mainimg .btn {
		font-size: 1.4vw;
		/*文字サイズ*/
	}

	#mainimg .btn a {
		margin: 0;
		padding: 0.6rem 3rem;
		/*ボタン内の余白。上下、左右へ。1rem=1文字分です。*/
	}

}

/*追加指定ここまで*/


/*1つ目のボタン（お問い合わせ）の追加設定*/
#mainimg .btn p:nth-of-type(1) a {
	background: var(--primary-color);
	/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*2つ目のボタン（資料請求）への追加設定*/
#mainimg .btn p:nth-of-type(2) a {
	background: var(--base-inverse-color);
	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);
	/*文字色。冒頭のbase-colorを読み込みます。*/
	letter-spacing: 0.1em;
	/*文字間隔を少しだけ広く*/
}

/*ボタン内のアイコン*/
#mainimg .btn i {
	transform: scale(1.4);
	/*140%に拡大*/
	padding-right: 0.8rem;
	/*アイコンとテキストとの間の余白*/
}


/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}

/*bottom-nav
---------------------------------------------------------------------------*/
.bottom-nav {
	gap: 3%;
	list-style: none;
	margin-top: 40px;
	margin-bottom: 40px;
}

@media screen and (max-width:767px) {
	.bottom-nav {
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 20px;
		margin-bottom: 20px;
	}

	.bottom-nav li {
		width: 46%;
		margin-bottom: 3%;
	}
}

/*フッター
---------------------------------------------------------------------------*/
footer {
	background: #3b3b3b;
	/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	padding: 2rem;
	/*フッター内の余白。2文字分。*/
	display: flex;
	flex-direction: column-reverse;
}

/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
footer div:nth-of-type(1) {
	text-align: center;
}



/*画面700px以上の追加指定*/
@media screen and (min-width:700px) {

	footer {
		flex-direction: row;
		gap: 4rem;
		justify-content: space-between;
	}


}

/*追加指定ここまで*/
footer p.logo {
	padding: 0;
	margin: 0;
}

footer p.logo img {
	width: 236px;
}

footer ul {
	display: flex;
	justify-content: flex-end;
	gap: 1.2em;
	list-style: none;
}

footer ul a {
	text-decoration: none;
	color: #fff !important;
}

footer a.entry {
	text-decoration: none;
}

/*Copyright部分*/
footer small {
	display: block;
	padding-top: 2rem;
	/*SNSアイコンとコピーライトの間の余白調整*/
}

small {
	text-align: center;
	color: #fff;
	background: #3b3b3b;
	padding-bottom: 20px;
}

@media screen and (max-width:767px) {
	footer ul {
		justify-content: center;
	}
}

/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	gap: 1rem;
	/*アイコン同士のマージン的な要素。１文字分。*/
}

/*画面700px以上の追加指定*/
@media screen and (min-width:700px) {

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

}

/*追加指定ここまで*/

.icons i {
	font-size: 30px;
	/*アイコンサイズ*/
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）
---------------------------------------------------------------------------*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0, 0, 0, 0.9);
	text-align: right;
	padding: 0.5rem 1rem;
	color: #ccc;
}

.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));
	/*本来の位置より上にずらす。ずらしたくなければこの１行を削除。*/
}

.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
	font-size: 15vw;
	/*文字サイズ*/
	opacity: 0.05;
	/*透明度。色が5%出た状態。*/
}

.text-slide span {
	padding: 0 20px;
}

@media screen and (max-width:767px) {
	.text-slide {
		font-size: 100px !important;
	}
}

/*bg-primary-color
---------------------------------------------------------------------------*/
.bg-primary-color {
	background: var(--primary-color);
	/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}


/*bg1
---------------------------------------------------------------------------*/
.bg1 {
	background-color: var(--base-inverse-color);
	/*背景色。冒頭のbase-inverse-colorを読み込みます。*/
	color: var(--base-color);
	/*文字色。冒頭のbase-colorを読み込みます。*/
}


/*ボックス下部を三角形（▼）にする場合。三角形の高さ自体はmask-imageのd=の中にある２つの「95」という数値で変更できます。小さいほど角度が大きくなります。
---------------------------------------------------------------------------*/
.arrow {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,95 L50,100 L0,95 Z' fill='%23000000'/%3E%3C/svg%3E");
	mask-size: 100% 100%;
	mask-repeat: no-repeat;
}

/*画面幅700px以上の追加指定*/
@media screen and (min-width:700px) {

	/*三角形の高さの再設定。95を90に変更しています。*/
	.arrow {
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,90 L50,100 L0,90 Z' fill='%23000000'/%3E%3C/svg%3E");
		padding-bottom: 150px;
	}


}

/*追加指定ここまで*/


/*背景色が切れているのが見えないように微調整*/
.arrow+section {
	padding-top: calc(var(--space-large) + 150px);
	margin-top: -150px;
}


/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;
	/*文字サイズ。3倍。*/
	padding-top: 1.5rem;
	/*上に空ける余白*/
	padding-bottom: 3rem;
	/*下に空ける余白*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;
		/*文字サイズ。4倍。*/
	}

}

/*追加指定ここまで*/


/*テキスト*/
.list-c2 .list .text {
	position: relative;
	z-index: 1;
	font-size: 0.85rem;
	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;
	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}

.list-c2 .list:hover::before {
	transform: translateY(100%);
	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}


/*背景画像が少しずつ上に移動する
---------------------------------------------------------------------------*/
/*ブロック全体*/
.bg-slideup {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section>.bg-slideup:first-child {
	margin-top: calc(-1 * var(--space-large));
}

/*画像ボックス*/
.bg-slideup .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 10vw 20px;
	/*上下、左右へのボックス内の余白。画面幅100% = 100vwです。*/
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	/*英語テキストと日本語テキストの間のスペース。３文字分。*/
	color: #fff;
	/*文字色*/
}

/* 英語テキスト */
.en-text {
	writing-mode: horizontal-tb;
	font-size: 0.8rem;
	/*文字サイズ80%*/
}

/* 日本語テキスト */
.jp-text {
	writing-mode: vertical-rl;
	text-orientation: upright;
}

/*制作実績ブロックの画像指定*/
#products .bg-slideup .image {
	background-image: url("../images/bg_works.jpg");
	/*背景画像の指定*/
}

/*会社概要ブロックの画像指定*/
#company .bg-slideup .image {
	background-image: url("../images/bg_company.jpg");
	/*背景画像の指定*/
}


/*list-normal1（「お客様の声」「制作の流れ」ブロックで使用）
---------------------------------------------------------------------------*/
.list-normal1 * {
	margin: 0;
	padding: 0;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	/*テキストブロック*/
	.list-normal1 .text {
		flex: 1;
	}

	/*画像とテキストの左右を入れ替えたい場合（600px以上のみ使用可能）*/
	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom !important;
	}

}

/*追加指定ここまで*/


/*ブロック１個あたり*/
.list-normal1 .list {
	background: var(--base-color) url("../images/bg-dot.png") no-repeat right bottom / 200px;
	color: var(--base-inverse-color);
	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	padding: 3rem;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
	position: relative;
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	/*ブロック１個あたり*/
	.list-normal1 .list {
		display: flex;
		gap: 2rem;
		/*画像とテキストの間のスペース。２文字分。画像がない場合はこれは適用されません。*/
	}

}

/*追加指定ここまで*/


/*画像ブロック*/
.list-normal1 figure {
	width: 30%;
	/*幅*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	/*画像の下マージンのリセット*/
	.list-normal1 figure {
		margin-bottom: 0;
	}

}

/*追加指定ここまで*/


/*h4見出し*/
.list-normal1 h4 {
	font-size: 1.2rem;
	/*文字サイズ200%*/
	line-height: 1.5;
	/*行間*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
}

/*画面幅600px以上の追加指定*/
@media screen and (min-width:600px) {

	.list-normal1 h4 {
		font-size: 2rem;
		/*文字サイズ200%*/
		line-height: 1.8;
		/*行間*/
	}

}

/*追加指定ここまで*/


/*h4内にアイコンを配置した場合（制作の流れの見出し左のアイコン）*/
.list-normal1.flow h4 i {
	margin-right: 1rem;
	/*アイコンとテキストとの間の余白*/
}

/*名前*/
.list-normal1 .name {
	text-align: right;
	/*右寄せ*/
	margin-top: 1rem;
	/*上に空けるスペース*/
}

/*制作の流れで使用しているブロック間の「▼」の矢印*/
.list-normal1.flow .list::after {
	content: "▼";
	/*このテキストを出力します*/
	position: absolute;
	left: 50%;
	/*左からの配置場所。厳密ではありませんが、文字が小さいので問題ないかと。*/
	bottom: -2rem;
	/*下からの配置場所。マイナスがつくので本来の場所とは逆向きに移動。*/
	transform: scaleX(1.5);
	/*横幅を150%に*/
	opacity: 0.5;
	/*透明度。色が50%出た状態。*/
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}


/*テーブル（ta1）
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	/*太字に*/
	padding: 0.5rem 1rem;
	/*ボックス内の余白*/
	background: var(--base-inverse-color);
	/*背景色*/
	color: var(--base-color);
	/*文字色*/
	margin-bottom: 1rem;
	/*下に空けるスペース*/
	border-radius: 5px;
	/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	/*幅*/
	border-top: 1px solid #ccc;
	/*テーブルの一番上の線。幅、線種、色*/
	margin-bottom: 2rem;
	/*テーブルの下に空けるスペース。２文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid #ccc;
	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 td,
.ta1 th {
	word-break: break-all;
	background: var(--base-color);
	/*背景色。冒頭のbase-colorを読み込みます。*/
	color: var(--base-inverse-color);
	/*文字色。冒頭のbase-inverse-colorを読み込みます。*/
	text-align: left;
	/*左よせにする*/
	padding: 0.5rem;
	/*余白*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;
	/*幅*/
	text-align: center;
	/*テキストをセンタリング*/
}


/*テーブル（プラン）　※基本的な設定は上のta1で設定
---------------------------------------------------------------------------*/
.ta1.plan,
.ta1.plan td,
.ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);
	/*テーブルの枠線の幅、線種、varは色のことで冒頭のbase-inverse-colorを読み込みます*/
	padding: 0.5rem;
}

/*画面幅801px以上の追加指定*/
@media screen and (min-width:801px) {

	.ta1.plan,
	.ta1.plan td,
	.ta1.plan th {
		font-size: 1.2rem;
		padding: 2rem 1rem;
	}

}

/*追加指定ここまで*/


/*一番左側の縦列の幅*/
.ta1.plan th:first-child,
.ta1.plan td:first-child {
	width: 12rem;
	/*目安としては約12文字分。*/
}

/*１行目のプランブロック*/
.ta1.plan th {
	width: auto;
	position: relative;
	overflow: hidden;
}

/*１行目のプランブロック内の「おすすめ」表示*/
.ta1.plan th .osusume {
	position: absolute;
	left: 0px;
	top: 0px;
	background: #ff0000;
	/*背景色*/
	color: #fff;
	/*文字色*/
	font-size: 0.8rem;
	/*文字サイズ80%*/
	width: 120px;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 2px;
	transform: rotate(-45deg) translate(-18px, -60px);
}

/*１行目のプランブロック内のアイコン（王冠マーク）*/
.ta1.plan th i {
	display: block;
	font-size: 1.4rem;
	/*サイズ*/
}

/* 左から2つ目の「エコノミープラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(2) {
	background: #fffcda;
}

/* 左から2つ目の「エコノミープラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(2) {
	background: #fffcda;
}

/* 左から３つ目の「スタンダードプラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(3) {
	background: var(--primary-color);
	/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/* 左から３つ目の「スタンダードプラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(3) {
	background: var(--primary-color);
	/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);
	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/* 左から４つ目の「プレミアムプラン」の見出し（th）に背景色を設定 */
.ta1.plan th:nth-child(4) {
	background: #fffcda;
}

/* 左から４つ目の「プレミアムプラン」の列（td）に背景色を設定 */
.ta1.plan td:nth-child(4) {
	background: #fffcda;
}

/*１行目の金額*/
.plan th>span {
	display: block;
	font-size: 1.6rem;
	/*文字サイズを160%*/
	font-family: "Oswald", sans-serif;
	/*フォント指定*/
	font-optical-sizing: auto;
	font-weight: 700;
	/*太さ。200〜900まで指定できます。数値が大きいほど太くなる。*/
}

/*画面幅801px以上の追加指定*/
@media screen and (min-width:801px) {

	/*１行目の金額*/
	.plan th>span {
		font-size: 2.4rem;
		/*文字サイズを240%*/
	}

}

/*追加指定ここまで*/


/*画面幅800px以下の追加指定*/
@media screen and (max-width:800px) {

	.scroll .ta1.plan {
		width: 700px;
	}

	.scroll {
		overflow-x: auto;
	}

}

/*追加指定ここまで*/


/*調整用スタイル
---------------------------------------------------------------------------*/
.padding0 {
	padding: 0 !important;
}

.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}


/*マニュアルページ用
---------------------------------------------------------------------------*/
#manual #container {
	all: unset;
}

.manual {
	background: #fff;
	color: #333;
	padding: 5vw;
}

.manual .look {
	background: #eee;
}

.manual h2 {
	margin-top: 2rem;
	font-size: 2rem;
	text-align: center;
}

.manual h3 {
	line-height: 3;
	margin-top: 2rem;
}

.manual h3 span {
	background: linear-gradient(transparent 60%, yellow);
}

.manual h3+p {
	margin-top: -0.5rem;
}

.manual.margin-left {
	padding-left: 300px;
}

/*画面幅999px以下の追加指定*/
@media screen and (max-width:999px) {

	.manual.margin-left {
		padding-left: 4vw;
	}

}

/*card
---------------------------------------------------------------------------*/
div.card {
	width: 50%;
	max-width: 410px;
	margin-bottom: 80px;
	position: relative;
}

div.card-text {
	padding-top: 0.5em;
}

div.card-text h3 {
	text-align: center;
	font-size: 1.2em;
	background-color: #0e3980;
	color: #fff;
}

@media screen and (max-width:767px) {
	div.card-text h3 {
		font-size: 3.8vw
	}
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.color-check,
.color-check a {
	color: #ff0000 !important;
}

.l {
	text-align: left !important;
}

.c {
	text-align: center !important;
}

.r {
	text-align: right !important;
}

.ws {
	width: 95%;
	display: block;
}

.wl {
	width: 95%;
	display: block;
}

.mb0 {
	margin-bottom: 0px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb-space-large {
	margin-bottom: var(--space-large) !important;
}

.look {
	line-height: 1.5 !important;
	display: inline-block;
	padding: 5px 10px;
	background: rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	margin: 5px 0;
	word-break: break-all;
}

.small {
	font-size: 0.75em;
}

.large {
	font-size: 2em;
	letter-spacing: 0.1em;
}

.pc {
	display: none;
}

.dn {
	display: none !important;
}

.block {
	display: block !important;
}

.inline-block {
	display: inline-block !important;
}

.relative {
	position: relative;
}

.marker {
	background: linear-gradient(transparent 50%, yellow);
}

pre {
	white-space: pre-wrap;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/*画面幅900px以上の追加指定*/
@media screen and (min-width:900px) {

	.ws {
		width: 48%;
		display: inline;
	}

	.sh {
		display: none;
	}

	.pc {
		display: block;
	}

}

/*テキストスライド
---------------------------------------------------------------------------*/
.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: -100px;
	/*本来の位置より上にずらす。ずらしたくなければこの１行を削除。*/
}

.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
	font-size: 150px;
	/*文字サイズ*/
	opacity: 0.05;
	/*透明度。色が5%出た状態。*/
}

.text-slide span {
	color: #fff;
	line-height: 1.7;
	padding: 0 20px;
}

h2.text-slide-bg {
	margin-top: -160px;
	margin-bottom: 40px;
}

@media screen and (max-width:767px) {
	h2.text-slide-bg {
		margin-top: -100px;
		margin-bottom: 20px;
	}

}

/*画像スライダー
---------------------------------------------------------------------------*/
/* スライダー全体 */
.slider-wrapper {
	display: flex;
	/* スライドのグループを横並び */
	overflow: hidden;
	/* はみ出たスライドを隠す */
}

/* スライド3枚のグループ */
.slider {
	animation: scroll-left 30s infinite linear .5s both;
	display: flex;
	/* スライド3枚を横並び */
}

/* スライド */
.slide {
	width: calc(100vw / 3);
	list-style: none;
	/* 3はスライドの枚数 */
}

/* スライドの画像 */
.slide img {
	display: block;
	width: 100%;
}

/* CSSアニメーション */
@keyframes scroll-left {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width:767px) {
	.slide {
		width: calc(100vw / 1);
		/* 3はスライドの枚数 */
	}
}

/*カード
---------------------------------------------------------------------------*/
.card {
	background: #fff;
}

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

.card-text {
	padding-left: 1.5em;
	padding-right: 1.5em;
	padding-bottom: 1em;
}

/*ページトップボタン
---------------------------------------------------------------------------*/
#pagetop {
	position: fixed;
	bottom: 4px;
	right: 30px;
	z-index: 99;
}

#pagetop a {
	display: flex;
	background: #1a56ba;
	color: #fff !important;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
	padding: 10px 5px;
	border-radius: 2px;
	text-align: center;
}

@media screen and (max-width:767px) {
	#pagetop {
		bottom: 0px;
		right: 10px;
	}
}