:root {
  --white: #fff;
  --black: #031A43;
  --lightblue: #E6F2FF;
  --blue: #17A5FF;
  --pink: #F34A68;
  --boder-color: #E8EDF5;
  --bg-color: #F0F9FF;
}

body
{
	margin: 0;
}

/* -------------------------------------
一覧
------------------------------------- */
.documents-archive,
.documents-single
{
	margin-top: 130px;
	box-sizing: border-box;
	color: var(--black);
}

.documents-archive *,
.documents-single *
{
	box-sizing: inherit;
}

.documents-archive img,
.documents-single img
{
	max-width: 100%;
}

.documents-archive .documents-archive__page-title
{
	margin: 0;
	padding: 54px 40px;
	background-image: url(../img/industries/title_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.documents-archive .documents-archive__page-title hgroup
{
	text-align: center;
	color: var(--white);
}

.documents-archive .documents-archive__page-title h1
{
	margin: 0 auto 1em;
	font-size: 40px;
	font-weight: 700;
}

.documents-archive .documents-archive__page-title p
{
	font-size: 18px;
	font-weight: 500;
	line-height: 1.9em;
}

.documents-archive .documents-archive__nav
{
	list-style: none;
	position: relative;
	top: -33px;
	display: flex;
	width: fit-content;
	height: 66px;
	margin: 0 auto;
	padding: 3px;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 2px 8px rgba(51,51,51, .08);
}

.documents-archive .documents-archive__nav li:not(:last-child)
{
	border-right: 1px solid var(--boder-color);
}

.documents-archive .documents-archive__nav a
{
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	padding: 1em 4em;
	font-size: 15px;
	font-weight: 700;
	color: var(--black);
	text-decoration: none;
}

.documents-archive .documents-archive__nav a span::after
{
	content: "";
	position: relative;
	left: 7px;
	top: 3px;
	display: inline-block;
	width: 18px;
	height: 16px;
	background-image: url(../img/documents/ico-arrow.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center right;
	transform: rotate(90deg);
}

.documents-archive .documents-archive__section
{
	padding: 80px 40px;
}

.documents-archive .documents-archive__section:nth-child(even)
{
	background-color: var(--bg-color);
}

.documents-archive .documents-archive__inner
{
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}

.documents-archive .documents-archive__section .section-ttl
{
	display: flex;
	align-items: center;
	font-size: 32px;
	font-weight: 700;
	line-height: 1em;
}

.documents-archive .documents-archive__section .section-ttl::before
{
	content: "";
	display: inline-block;
	width: 5px;
	height: 40px;
	margin-right: 16px;
	background-color: var(--blue);
	border-radius: 5px;
}

.documents-archive .documents-archive__section .section-dsc
{
	margin-bottom: 36px;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.documents-archive .documents-wrapper
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(calc(33% - 24px), 1fr));
	gap: 50px 24px;
}

.documents-archive .documents__item
{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 5;
	gap: 0;
	padding-bottom: 20px;
	background-color: var(--white);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(51,51,51, .08);
}

.documents-archive .documents__item .img img
{
	width: 100%;
	object-fit: cover;
}

.documents-archive .documents__item .text
{
	display: contents;
}

.documents-archive .documents__cat
{
	list-style: none;
	margin: 0;
	padding: 20px 22px 0;
}

.documents-archive .documents__cat li
{
	width: fit-content;
	padding: .25em 1em;
	font-size: 12px;
	font-weight: 700;
	color: var(--blue);
	background-color: var(--lightblue);
	border-radius: 4px;
}

.documents-archive .documents__ttl
{
	width: 100%;
	margin: .5em auto 1em;
	padding: 0 22px;
	font-size: 16px;
	font-weight: 700;
}

.documents-archive .documents__text
{
	width: calc(100% - 44px);
	margin: 0 auto 1em;
	font-size: 14px;
	line-height: 1.75em;
	color: #596B85;
}

.documents-archive .documents__item .btn-download
{
	display: block;
	width: calc(100% - 44px);
	margin: 0 auto;
	padding: 1em;
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	text-align: center;
	text-decoration: none;
	background-color: var(--pink);
	border: 2px solid var(--pink);
	border-radius: 4em;
	transition: .3s all;
}

.documents-archive .documents__item .btn-download:hover
{
	color: var(--pink);
	background-color: var(--white);
}

/* -------------------------------------
お役立ち資料
------------------------------------- */
.documents-single
{
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 50px 40px 100px;
}

.documents-single::before
{
	content: "";
	position: absolute;
	inset: 0 0 auto;
	z-index: -1;
	display: block;
	width: 100%;
	height: 278px;
	background-color: #00aaff;
}

.documents-single .documents-single-wrapper
{
	display: flex;
	gap: 100px;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}

.documents-single .documents-single-left
{
	flex: 1;
	color: #333;
}

.documents-single .documents-single-right
{
	position: relative;
	width: 46%;
}

.documents-single .documents-form-wrapper
{
	position: sticky;
	top: 130px;
	height: auto;
}

.documents-single .immedio-iframe
{
	width: 100%;
	border: none;
	min-height: 710px;
}

.documents-single .documents-intro-img .mv
{
	margin-bottom: 14px;
}
.documents-single .documents-intro-img .mv h1
{
	margin: 0;
}

.documents-single .documents-intro-img .mv-sub p
{
	margin: 0 0 1em;
	font-size: 14px;
	font-weight: 500;
}

.documents-single .documents-intro-img .imgs
{
	display: flex;
	gap: 10px;
}

.documents-single .documents-intro-img .imgs img
{
	width: calc(50% - 10px);
}

.documents-single .documents-intro-text
{
	margin: 2em 0;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.75em;
}

.documents-single .documents-intro-text p
{
	margin: 0;
}

.documents-single .documents-index
{
	margin-bottom: 40px;
	padding: 16px 32px 32px;
	border: 1px solid var(--boder-color);
	border-radius: 12px;
}

.documents-single .documents-index h2
{
	margin: 0 auto 1em;
	padding-bottom: .25em;
	font-size: 16px;
	border-bottom: 2px solid var(--boder-color);
}

.documents-single .documents-index ol
{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
}

.documents-single .documents-index li
{
	position: relative;
	font-size: 16px;
	text-indent: 1.25em;
}

.documents-single .documents-index li::before
{
	content: "";
	position: absolute;
	top: .45em;
	left: 0;
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #94A3B8;
	border-radius: 50%;
}

.documents-single .documents-recommend
{
	margin: 40px 0;
	font-size: 14px;
}

.documents-single .documents-recommend h2
{
	font-size: 14px;
}

.documents-single .documents-recommend ul
{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin: 0 0 1em;
	padding: 0;
	font-weight: 500;
}

.documents-single .documents-recommend li
{
	position: relative;
	text-indent: 28px;
}

.documents-single .documents-recommend li::before
{
	content: "";
	position: absolute;
	top: .25em;
	left: 0;
	display: inline-block;
	width: 18px;
	height: 14px;
	background-image: url(../img/documents/ico-check_blue.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.documents-single .memo
{
	font-size: 13px;
	font-weight: 500;
	color: #888888;
}

.documents-single .documents-summary
{
	margin-top: 50px;
	padding: 20px 32px;
	background-color: var(--bg-color);
	border-radius: 16px;
}

.documents-single .documents-summary h2
{
	margin: 0 0 1em;
	font-size: 16px;
}

.documents-single .documents-summary ul
{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-weight: 500;
}

.documents-single .documents-summary li
{
	position: relative;
	font-size: 16px;
	text-indent: 1.25em;
}

.documents-single .documents-summary li::before
{
	content: "";
	position: absolute;
	top: .45em;
	left: 0;
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: var(--blue);
	border-radius: 50%;
}

/* -------------------------------------
サービス資料
------------------------------------- */
.temp-download
{
	box-sizing: border-box;
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 0 100px;
	background-color: var(--bg-color);
}

.temp-download *
{
	box-sizing: inherit;
}

.temp-download img
{
	max-width: 100%;
}

.temp-download .temp-download__page-title
{
	position: absolute;
	inset: 0 0 auto;
	z-index: -1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 400px;
	margin: 0;
	padding: 180px 40px 54px;
	background-image: url(../img/industries/title_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

.temp-download .temp-download__page-title hgroup
{
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	color: var(--white);
}

.temp-download .temp-download__page-title h1
{
	margin: 0 auto;
	font-size: 46px;
	font-weight: 700;
}

.temp-download .temp-download__page-title p
{
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.9em;
}

.temp-download .temp-download__page-title strong
{
	padding: .25em .5em;
	line-height: 1em;
	background-color: var(--pink);
	border-radius: 4px;
}

.temp-download .documents-single-wrapper
{
	display: flex;
	gap: 40px;
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
	padding-top: 120px;
}

.temp-download .documents-single-left
{
	flex: 1;
	color: #333;
	padding-top: 250px;
}


.temp-download .documents-single-right
{
	position: relative;
	width: 44%;
	padding-top: 80px;
}

.temp-download .documents-form-wrapper {
	position: sticky;
	top: 150px;
	height: auto;
}

.temp-download .immedio-iframe
{
	width: 100%;
	border: none;
	min-height: 710px;
}

.temp-download .temp-download__data
{
	margin-bottom: 40px;
	padding: 32px;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 2px 7px rgba(51,51,51, .1);
}

.temp-download .temp-download__ttl
{
	display: flex;
	align-items: center;
	margin: 0 0 1em;
	font-size: 20px;
	font-weight: 700;
	line-height: 1em;
}

.temp-download .temp-download__ttl::before
{
	content: "";
	display: inline-block;
	width: 5px;
	height: 30px;
	margin-right: 16px;
	background-color: var(--blue);
	border-radius: 5px;
}

.temp-download .temp-download__data .col3
{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
	margin-bottom: 20px;
}

.temp-download .temp-download__data .item
{
	position: relative;
	text-align: center;
}

.temp-download .temp-download__data .item:not(:last-child)::after
{
	content: "";
	position: absolute;
	top: 5%;
	right: 0;
	width: 1px;
	height: 85%;
	background-color: var(--boder-color);
}

.temp-download .temp-download__data .item strong
{
	display: block;
	text-align: center;
	font-size: 34px;
	font-weight: 700;
	color: var(--blue);
}

.temp-download .temp-download__data .item span
{
	display: block;
	font-size: 14px;
	font-weight: 500;
}

.temp-download .temp-download__data .data-text
{
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
}

.temp-download .temp-download__data .data-text strong
{
	font-weight: 700;
	color: var(--blue);
}

.temp-download .temp-download__summary
{
	margin-bottom: 40px;
	padding: 32px;
	background-color: var(--white);
	border-radius: 16px;
	box-shadow: 0 2px 7px rgba(51,51,51, .1);
}

.temp-download .temp-download__summary .mv
{
	width: 357px;
	margin-bottom: 30px;
}

.temp-download .temp-download__summary ul
{
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1em;
	margin: 0;
	padding: 0;
}

.temp-download .temp-download__summary li
{
	font-size: 16px;
	font-weight: 700;
	text-indent: 28px;
	background-image: url(../img/documents/ico-check_light.svg);
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 23px 22px;
}

.temp-download .temp-download__summary b
{
	font-weight: 700;
	color: var(--blue);
}

.temp-download .temp-download__image
{
	margin-bottom: 40px;
}

.temp-download .image-wrapper
{
	display: flex;
	flex-wrap: wrap;
	gap: 16px 12px;
}

.temp-download .image-wrapper figure
{
	width: calc(25% - 12px);
	margin: 0;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(51,51,51, .08);
	background-color: var(--white);
}

.temp-download .image-wrapper figure:nth-child(n+5)
{
	width: calc(33% - 12px);
}

.temp-download .image-wrapper figcaption
{
	margin-bottom: 4px;
	font-size: 16px;
	font-weight: 700;
	color: var(--white);
	background-color: var(--blue);
}

.temp-download .image-wrapper img
{
	width: 95%;
	border-radius: 0 0 10px 10px;
}

.temp-download .temp-download__recommend
{
	margin-top: 40px;
}

.temp-download .temp-download__recommend ul
{
	list-style: none;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(calc(50% - 12px), 1fr));
	gap: 12px;
	margin: 0;
	padding: 0;
}

.temp-download .temp-download__recommend li
{
	padding: 20px 20px 20px 60px;
	font-weight: 500;
	background-color: var(--white);
	background-image: url(../img/documents/ico-check_circle.svg);
	background-repeat: no-repeat;
	background-size: 23px 22px;
	background-position: center left 20px;
}

@media screen and (max-width: 1110px) {
	.documents-archive,
	.documents-single
	{
		margin-top: 70px;
	}
	.documents-archive .documents-archive__page-title
	{
		padding: 40px 4vw;
	}
	.documents-archive .documents-archive__page-title h1
	{
		font-size: 28px;
	}
	.documents-archive .documents-archive__page-title p
	{
		font-size: 16px;
	}
	.documents-archive .documents-archive__nav
	{
		top: 30px;
		display: block;
		width: 570px;
		max-width: 92vw;
		height: auto;
	}
	.documents-archive .documents-archive__nav li:not(:last-child)
	{
		border-right: none;
		border-bottom: 1px solid var(--boder-color);
	}
	.documents-archive .documents-archive__section
	{
		padding: 80px 4vw;
	}
	.documents-archive .documents-archive__section .section-ttl
	{
		font-size: 24px;
	}
	.documents-archive .documents-archive__section .section-dsc
	{
		font-size: 16px;
		text-align: left;
	}
	.documents-archive .documents-wrapper
	{
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
		gap: 24px;
	}
	.documents-single
	{
		padding: 50px 4vw 100px;
	}
	.documents-single::before
	{
		height: 165px;
	}
	.documents-single .documents-single-wrapper
	{
		flex-wrap: wrap;
	}
	.documents-single .documents-single-right
	{
		width: 570px;
		max-width: 100%;
		margin: 0 auto;
	}
	.temp-download
	{
		margin-top: 70px;
	}
	.temp-download .temp-download__page-title
	{
		position: relative;
		height: auto;
		margin-bottom: 60px;
		padding: 40px 4vw;
	}
	.temp-download .temp-download__page-title p
	{
		orphans: 20px;
	}
	.temp-download .temp-download__page-title h1
	{
		font-size: 36px;
	}
	.temp-download .temp-download__data .col3
	{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		gap: 20px;
	}
	.temp-download .temp-download__data .item:not(:last-child)::after
	{
		display: none;
	}
	.temp-download .temp-download__data .item strong
	{
		font-size: 30px;
	}
	.temp-download .documents-single-wrapper
	{
		flex-wrap: wrap;
		padding: 0 4vw;
	}
	.temp-download .documents-single-left
	{
		padding-top: 0;
	}
	.temp-download .documents-single-right
	{
		width: 570px;
        max-width: 100%;
        margin: 0 auto;
		padding-top: 0;
	}
	.temp-download .image-wrapper
	{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
	}
	.temp-download .image-wrapper figure,
	.temp-download .image-wrapper figure:nth-child(n+5)
	{
		width: auto;
	}
	.temp-download .temp-download__recommend ul
	{
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}
}