@charset "UTF-8";

.p-download__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 5rem;
	margin-top: 8rem;
	padding-inline: 1.6rem;
}

@media (max-width: 768px) {
	.p-download__list {
		display: grid;
		grid-template-columns: 1fr;
		gap: 2rem;
		max-width: 56.7rem;
		margin-inline: auto;
		margin-top: 4rem;
	}
}

.p-download__list-item-link {
	display: block;
	border-radius: 0.8rem;
	background-color: #fff;
	padding: 3.5rem 3.5rem 2rem 3.5rem;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
	.p-download__list-item-link {
		padding: 2.4rem 1.8rem;
	}
}
@media (any-hover: hover) {
	.p-download__list-item-link:hover {
		background-color: #E7F2F2;
	}
	.p-download__list-item-link:hover .p-download__list-item-btn-text {
		background-color: #BAEBE9;
	}
}

.p-download__list-item-image {
}

.p-download__list-item-image img {
	aspect-ratio: 487 / 289;
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 0.8rem;
}

.p-download__list-item-content {
	padding: 1.6rem 1.5rem;
}
@media (max-width: 768px) {
	.p-download__list-item-content {
		padding: 1.2rem;
	}
}

.p-download__list-item-title {
	font-size: 2.0rem;
	font-weight: 700;
	line-height: calc(32 / 20);
	letter-spacing: 0;
	color: #008785;
}
@media (max-width: 768px) {
	.p-download__list-item-title {
		font-size: 1.6rem;
		line-height: 1.5;
	}
}

.p-download__list-item-title-label {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: calc(32 / 15);
	letter-spacing: 0;
	color: #fff;
	background-color: #008785;
	padding: 0.1rem 1.5rem 0.1rem 2rem;
	border-radius: 0.8rem;
	margin-top: 1.4rem;
	display: inline-block;
}
@media (max-width: 768px) {
	.p-download__list-item-title-label {
		font-size: 1.2rem;
		padding: 0.1rem 1.2rem 0.1rem 1.5rem;
		margin-top: 0.8rem;
	}
}

.p-download__list-item-subtitle {
	margin-top: 2.5rem;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: calc(28 / 18);
	letter-spacing: 0;
	display: flex;
	align-items: center;
}
@media (max-width: 768px) {
	.p-download__list-item-subtitle {
		margin-top: 1.6rem;
		font-size: 1.5rem;
	}
}
.p-download__list-item-subtitle::before {
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.6rem;
	background-color: #5BB2B1;
	border-radius: 50%;
	margin-right: 0.6rem;
}
@media (max-width: 768px) {
	.p-download__list-item-subtitle::before {
		width: 1.4rem;
		height: 1.4rem;
	}
}

.p-download__list-item-list {
	display: flex;
	flex-direction: column;
	margin-top: 0.4rem;
}

.p-download__list-item-point {
	font-size: 1.5rem;
	font-weight: 500;
	line-height: calc(28 / 15);
	letter-spacing: 0;
}
@media (max-width: 768px) {
	.p-download__list-item-point {
		font-size: 1.4rem;
	}
}

.p-download__list-item-btn {
	text-align: center;
	margin-top: 3.8rem;
}
@media (max-width: 768px) {
	.p-download__list-item-btn {
		margin-top: 2.4rem;
	}
}

.p-download__list-item-btn-text {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: calc(33 / 15);
	letter-spacing: 0;
	padding: 1.1rem 3.5rem 1.2rem;
	border-radius: 4rem;
	border: 3px solid #008785;
	background-color: #fff;
	box-shadow: 0 5px 0 rgba(0, 0, 0, 0.16);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
	.p-download__list-item-btn-text {
		padding: 1.1rem 1rem 1.2rem;
	}
}
.p-download__list-item-btn-text::before {
	content: "";
	display: block;
	width: 1.6rem;
	height: 1.8rem;
	margin-right: 0.8rem;
	background-image: url(../img/common/icon-green.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}


.p-media__cta {
	padding: 8rem 0;
}
@media (max-width: 768px) {
	.p-media__cta {
		padding: 4rem 0;
	}
}


/*
/ ダウンロードページ
/ */

.p-download-form {
	display: flex;
	margin-bottom: 4rem;
}
@media (max-width: 768px) {
	.p-download-form {
		flex-direction: column;
		max-width: 50rem;
		margin-inline: auto;
	}
}

.p-download-form__header {
	flex: 1;
	background-color: #F1F8FE;
	padding-block: 4.4rem 2rem;
	padding-inline: 8rem;
}
@media (max-width: 768px) {
	.p-download-form__header {
		padding-block: 2.4rem;
		padding-inline: 2rem;
	}
}

.p-download-form__header-title {
	font-size: 3rem;
	font-weight: 700;
	line-height: calc(42 / 30);
	letter-spacing: 0;
	text-align: center;
}
@media (max-width: 768px) {
	.p-download-form__header-title {
		font-size: 2.2rem;
		line-height: calc(32 / 22);
	}
}

.p-download-form__header-description {
	margin-top: 2.6rem;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: calc(44 / 24);
	letter-spacing: 0;
	color: #F96718;
	text-align: center;
}
@media (max-width: 768px) {
	.p-download-form__header-description {
		margin-top: 1.6rem;
		font-size: 1.8rem;
		line-height: calc(32 / 18);
	}
}

.p-download-form__header-image {
	margin-top: 4.2rem;
	max-width: 40rem;
	margin-inline: auto;
}
@media (max-width: 768px) {
	.p-download-form__header-image {
		margin-top: 2.4rem;
	}
}
.p-wp-form__header-image {
	margin-top: 4.2rem;
	max-width: 36rem;
	margin-inline: auto;
}

.p-download-form__header-image img {
	display: block;
	aspect-ratio: 400 / 225;
	object-fit: cover;
	width: 100%;
	height: auto;
	/* border: 1px solid #707070;
	box-shadow: 0 3px 9px rgba(0, 0, 0, 0.16); */
}
.p-wp-form__header-image img {
	display: block;
	aspect-ratio: 360 / 257;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.p-download-form__header-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 3rem;
}
@media (max-width: 768px) {
	.p-download-form__header-content {
		margin-top: 2.4rem;
		flex-direction: column;
	}
}


.p-download-form__header-content h2 {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: calc(44 / 24);
	letter-spacing: 0;
	padding-right: 2rem;
}
@media (max-width: 768px) {
	.p-download-form__header-content h2 {
		font-size: 2rem;
		line-height: calc(32 / 20);
		padding-right: 0;
	}
}

.p-download-form__header-content ul {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-left: 1rem;
	border-left: 2px solid #CDD6DE;
}
@media (max-width: 768px) {
	.p-download-form__header-content ul {
		margin-top: 1.2rem;
		padding-left: 0;
		padding-top: 1.2rem;
		border-left: none;
		border-top: 2px solid #CDD6DE;
	}
}

.p-download-form__header-content ul li {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(38 / 18);
	letter-spacing: 0;
}
@media (max-width: 768px) {
	.p-download-form__header-content ul li {
		font-size: 1.5rem;
		line-height: calc(32 / 15);
	}
}
.p-download-form__header-content ul li:before {
	content: "-";
	margin-right: 1rem;
}

.p-wp-form__header-content {
	margin-top: 1.1rem;
}
.p-wp-form__header-content h2 {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: calc(44 / 24);
	letter-spacing: 0;
	text-align: center;
}
.p-wp-form__header-content p {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(30 / 18);
	letter-spacing: 0;
	margin-top: 0.8rem;
}


/*
/ ダウンロードフォーム
/ */

.p-download-form__body {
	background-color: #fff;
	padding: 4.4rem 6.2rem 2rem;
	width: 46.7rem;
	flex-shrink: 0;
}

@media (max-width: 768px) {
	.p-download-form__body {
		padding: 2.4rem 2rem;
		width: 100%;
		flex-shrink: 0;
	}
}

.p-download-form__body-info {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: calc(25 / 18);
	letter-spacing: 0;
}
@media (max-width: 768px) {
	.p-download-form__body-info {
		font-size: 1.6rem;
		line-height: calc(25 / 16);
	}
}

.p-download-form__body-content {
	margin-top: 4.5rem;
}
@media (max-width: 768px) {
	.p-download-form__body-content {
		margin-top: 2.4rem;
	}
}


.form-item {
	margin-bottom: 1.2rem;
}

.form-item input[type="text"],
.form-item input[type="email"],
.form-item input[type="tel"],
.form-item select {
	width: 100%;
	box-sizing: border-box;
	padding: 1.2rem 1.6rem;
	border: 1px solid #CDD6DD;
	border-radius: 0;
}

.form-item select {
	-webkit-appearance: auto;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
input[type=checkbox] + label {
	padding: 0 0 0 24px;
}
input[type="checkbox"] + label:after {
	border-bottom: 3px solid #4a839c;
	border-left: 3px solid #4a839c;
}

.p-contact__agreement {
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: center;
	margin: 2.9rem 0;
}
@media (max-width: 768px) {
	.p-contact__agreement {
		display: block;
		margin: 4.6rem 0 1.4rem;
		text-align: center;
	}
}

.submit-btn {
	border-radius: 100vmax;
	border: 2px solid #F96718;
	color: #F96718;
	padding: 1.7rem 2.4rem;
	text-align: center;
	display: block;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 500;
	cursor: pointer;
}

.submit-btn:disabled {
	background-color: #fff;
	color: #CDD6DD;
	border-color: #CDD6DD;
}

.p-download-form__sample {

}

.p-download-form__sample-title {
	font-size: 2.4rem;
	font-weight: 700;
	line-height: calc(41 / 24);
	letter-spacing: 0;
	padding-bottom: 1.6rem;
	border-bottom: 6px solid #008785;
}
.p-download-form__sample-list{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 4.8rem;
	margin-top: 4.6rem;
}
@media (max-width: 768px) {
	.p-download-form__sample-list {
		grid-template-columns: repeat(1, 1fr);
		margin-top: 2.4rem;
		max-width: 40rem;
		margin-inline: auto;
	}
}
.p-download-form__sample-list-item {

}
.p-download-form__sample-list-item figure {
}
.p-download-form__sample-list-item img {
	display: block;
	aspect-ratio: 366 / 261;
	object-fit: cover;
	width: 100%;
	height: auto;
	border: 1px solid #707070;
}

.p-download-form__rocotime-sample .p-download-form__sample-list-item img {
	aspect-ratio: 366 / 206;
}

.p-download-form__sample-list-item-caption{
	font-size: 1.5rem;
	font-weight: 500;
	line-height: calc(25 / 15);
	text-align: center;
	margin-top: 1.1rem;
}