@charset "UTF-8";
/* CSS Document */

:root {
	--blue: #3071b3;
	--green: #86b71b;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
}

.none,.sp {display: none;}

img {
	width: 100%;
}

@media screen and (max-width: 640px) {
	body {
		font-size: 14px;
	}
	.pc {display: none;}
	.sp {display: block;}
}

/**********************************************************************************

#title
2e67a2
**********************************************************************************/
#title {
	background: 
    url('../images/title.jpg'),
/* 青味が転じるので「var(--blue)」を使用停止
    linear-gradient(45deg, #84ccc9 0%, var(--blue) 30%, var(--blue) 100%)*/
    linear-gradient(45deg, #84ccc9 0%, #3071b3 30%, #3071b3 100%);
	background-repeat: no-repeat;
/*  background-position: right top;
	background-size: auto 100%;*/
/* 画像変更の場合は見栄えにより表示位置を見直す */
  background-position: right 70px;
	background-size: auto 271px;
	position: relative;
	height: 341px;
}

#title .inner {
	padding-top: 70px;
	position: absolute;
	top: 50%;
    left: 0;
	right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	margin: 0 auto;
	text-align: center;
}

#title .inner h2 {
	font-weight: bold;
	font-size: 40px;
	margin-bottom: 30px;
	color: #fff;
}

#title .inner p {
	line-height: 1.5em;
	color: #fff;
}

@media screen and (max-width: 1000px) {
	#title {
		background:url('../images/title_sp.jpg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
	
	#title .pc {display: none;}
	#title .sp {display: block;}
}

@media screen and (max-width: 640px) {
	#title {
		height: 270px;
	}
	
	#title .inner h2 {
		font-size: 30px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 430px) {
	#title {
		background:url('../images/title_sp02.jpg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}
}

/**********************************************************************************

#tag-box

**********************************************************************************/
#tag-box {
	width: 90%;
	max-width: 1200px;
	margin: 100px auto 0;
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
	padding: 50px;
}

#tag-box ul li {
	margin-bottom: 50px;
}

#tag-box ul li:last-child {
	margin-bottom: 0;
}

#tag-box ul li h3 {
	display: flex;
	align-items: center;
	font-size: 24px;
	gap: 15px;
	margin-bottom: 25px;
}

#tag-box ul li h3 img {
	width: 24px;
}

#tag-box ul li .btn-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

#tag-box ul li .btn-list .tag-btn {
	border: solid 1px #898989;
	border-radius: 20px;
	padding: 10px 20px;
	cursor: pointer;
}

#tag-box ul li .btn-list .tag-btn.active {
	color: #fff;
	background-color: var(--blue);
	border: var(--blue);
}

@media screen and (max-width: 640px) {
	#tag-box {
		margin: 60px auto 0;
		border-radius: 10px;
		padding: 30px;
	}
	
	#tag-box ul li {
		margin-bottom: 30px;
	}

	#tag-box ul li h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	#tag-box ul li h3 img {
		width: 20px;
	}
	
	#tag-box ul li .btn-list .tag-btn {
		padding: 5px 15px;
	}
}

/**********************************************************************************

.dl-btn

**********************************************************************************/
.dl-btn {
	width: 90%;
	max-width: 1200px;
	margin: 100px auto 0;
	text-align: center;	
}

.dl-btn a {
	display: inline-block;
	width: 550px;
	background-color: var(--green);
	color: #fff;
	border: solid 2px var(--green);
	padding: 33px 0;
	font-size: 30px;
	font-weight: bold;
	border-radius: 50px;
	position: relative;
}

.dl-btn a:after {
	content: '';
	width: 20px;
	height: 20px;
	border: 0;
	border-bottom: solid 4px #fff;
	border-right: solid 4px #fff;
	transform: rotate(45deg);
	position: absolute;
	top: 0;
	right: 40px;
	bottom: 10px;
	margin: auto;
}

.dl-btn a:hover {
	background-color: #fff;
	color: var(--green);
}

.dl-btn a:hover:after {
	border-bottom: solid 4px var(--green);
	border-right: solid 4px var(--green);
}

@media screen and (max-width: 640px) {
	.dl-btn {
		margin: 60px auto 0;
	}
	
	.dl-btn a {
		width: 350px;
		padding: 20px 0;
		font-size: 20px;
	}
	
	.dl-btn a:after {
		width: 14px;
		height: 14px;
		border-bottom: solid 2px #fff;
		border-right: solid 2px #fff;
		right: 20px;
		bottom: 8px;
	}

	.dl-btn a:hover:after {
		border-bottom: solid 2px var(--green);
		border-right: solid 2px var(--green);
	}
}

@media screen and (max-width: 390px) {
	.dl-btn a {
		width: 300px;
		font-size: 16px;
	}
	
	.dl-btn a:after {
		width: 12px;
		height: 12px;
	}
}

/**********************************************************************************

#case-list

**********************************************************************************/
#case-list {
	width: 90%;
	max-width: 1200px;
/*	margin: 120px auto;*/
	margin: 0 auto 120px;
}

#case-list .order {
	margin-bottom: 100px;
}

#case-list h3 {
	font-size: 36px;
	font-weight: bold;
	color: var(--blue);
	padding-bottom: 30px;
	margin-bottom: 60px;
	border-bottom: solid 1px;
}

#case-list .list-item {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px;
	grid-auto-rows: 1fr;
}

#case-list .list-item .item {
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
	display: flex;
	flex-direction: column;
	height: 100%;
}

#case-list .list-item .item a {
	display: flex;
	flex-direction: column;
	height: 100%;
}

#case-list .list-item .item .thum {
	position: relative;
	overflow: hidden;
}

#case-list .list-item .item .thum img {
	height: auto;
	display: block;
	aspect-ratio: 5 / 3;
	object-fit: cover;
	transition: transform 0.5s ease;
}

#case-list .list-item .item a:hover .thum img {
	transform: scale(1.1);
}

#case-list .list-item .item .thum .bg {
	position: absolute;
	z-index: 1;
}

#case-list .list-item .item .thum .photo {
	position: relative;
	z-index: 0;
}

#case-list .list-item .item .thum h4 {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	position: absolute;
	left: 15px;
	bottom: 15px;
	z-index: 2;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#case-list .list-item .item .thum h4 span {
	font-size: 18px;
}

#case-list .list-item .item .name-box {
	padding: 20px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	flex: 1;
}

#case-list .list-item .item .name-box h4 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: auto;
}

#case-list .list-item .item .name-box ul {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 15px;
}

#case-list .list-item .item .name-box ul li {
	color: #fff;
	background-color: var(--blue);
	border-radius: 15px;
	padding: 5px 15px;
}

@media screen and (max-width: 820px) {
	#case-list .list-item {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 30px;
	}
}

@media screen and (max-width: 640px) {
	#case-list {
		margin: 80px auto;
	}
	
	#case-list .order {
		margin-bottom: 60px;
	}
	
	#case-list h3 {
		font-size: 30px;
		padding-bottom: 20px;
		margin-bottom: 40px;
	}
	
	#case-list .list-item .item .thum h4 {
		font-size: 20px;
	}

	#case-list .list-item .item .thum h4 span {
		font-size: 14px;
	}
	
	#case-list .list-item .item .name-box h4 {
		font-size: 20px;
	}
}

@media screen and (max-width: 430px) {
	#case-list .list-item {
		grid-template-columns: repeat(1, 1fr);
	}
	
	#case-list .list-item .item .thum h4 {
		font-size: 22px;
	}

	#case-list .list-item .item .thum h4 span {
		font-size: 16px;
	}
}

/**********************************************************************************

#docu-dl

**********************************************************************************/
#docu-dl {
	background: linear-gradient(-45deg, #84ccc9, var(--blue));
}

#docu-dl .box {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 120px 0;
	text-align: center;
}

#docu-dl .box h3 {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	margin-bottom: 50px;
}

#docu-dl .box .read {
	color: #fff;
	margin-bottom: 80px;
	line-height: 1.5em;
}

#docu-dl .box .inner {
	background-color: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
	padding: 50px 70px;
}

#docu-dl .box .inner h4 {
	font-size: 30px;
	font-weight: bold;
	color: var(--blue);
	margin-bottom: 50px;
	line-height: 1.5em;
}

#docu-dl .box .inner h4 span {
	font-size: 36px;
}

#docu-dl .box .inner .inner-box {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 50px;
	margin-bottom: 80px;
}

#docu-dl .box .inner .inner-box img {
	max-width: 540px;
}

#docu-dl .box .inner .inner-box .right {
	border: solid 2px var(--blue);
	padding: 30px;
}

#docu-dl .box .inner .inner-box .right h5 {
	font-size: 24px;
	font-weight: bold;
	color: var(--blue);
	margin-bottom: 20px;
}

#docu-dl .box .inner .inner-box .right ul {
	margin: 0 auto;
	text-align: left;
	font-size: 20px;
}

.docu-dl-btn {
	display: inline-block;
	width: 400px;
	background-color: var(--green);
	color: #fff;
	border: solid 2px var(--green);
	padding: 33px 0;
	font-size: 30px;
	font-weight: bold;
	border-radius: 50px;
	position: relative;
}

.case-dlbtn {
	width: 500px;
}

.docu-dl-btn:hover {
	background-color: #fff;
	color: var(--green);
}

@media screen and (max-width: 1024px) {
	#docu-dl .box .inner {
		padding: 50px;
	}
}

@media screen and (max-width: 820px) {
	#docu-dl .box .inner .inner-box {
		flex-direction: column;
		align-items: center;
	}
}

@media screen and (max-width: 640px) {
	#docu-dl .box {
		padding: 80px 0;
	}
	
	#docu-dl .box h3 {
		font-size: 30px;
		margin-bottom: 30px;
	}
	
	#docu-dl .box .read {
		margin-bottom: 50px;
	}
	
	#docu-dl .box .inner {
		border-radius: 10px;
		padding: 30px;
	}
	
	#docu-dl .box .inner h4 {
		font-size: 24px;
		margin-bottom: 30px;
	}

	#docu-dl .box .inner h4 span {
		font-size: 30px;
	}
	
	#docu-dl .box .inner .inner-box {
		gap: 40px;
		margin-bottom: 50px;
	}
	
	#docu-dl .box .inner .inner-box .right {
		padding: 20px;
	}
	
	#docu-dl .box .inner .inner-box .right h5 {
		font-size: 20px;
		margin-bottom: 10px;
	}

	#docu-dl .box .inner .inner-box .right ul {
		font-size: 16px;
	}

	.docu-dl-btn {
		width: 350px;
		padding: 20px 0;
		font-size: 20px;
	}
}

@media screen and (max-width: 430px) {
	#docu-dl .box .inner h4 {
		font-size: 20px;
	}

	#docu-dl .box .inner h4 span {
		font-size: 24px;
	}
}

@media screen and (max-width: 390px) {
	.docu-dl-btn {
		width: 300px;
		font-size: 16px;
	}
}

/**********************************************************************************

#inner-title

**********************************************************************************/
#inner-title {
	background: linear-gradient(-45deg, var(--blue), #84ccc9);
	position: relative;
	height: 341px;
}

#inner-title .inner {
	position: absolute;
	top: 50%;
    left: 0;
	right: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	margin: 0 auto;
	text-align: center;
	padding: 70px 30px 0;
}

#inner-title .inner h2 {
	font-weight: bold;
	font-size: 30px;
	margin-bottom: 30px;
	line-height: 1.3em;
	color: #fff;
}

#inner-title .inner p {
	line-height: 1.5em;
	color: #fff;
}

@media screen and (max-width: 820px) {
	#inner-title .inner h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
}

@media screen and (max-width: 640px) {
	#inner-title {
		height: 270px;
	}
	
	#inner-title .inner h2 {
		font-size: 20px;
	}
}

/**********************************************************************************

.pnkz

**********************************************************************************/
.pnkz {
	width: 90%;
	max-width: 1000px;
	margin: 80px auto 100px;
}

.pnkz a {
	text-decoration: underline;
}

.pnkz a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 640px) {
	.pnkz {
		margin: 40px auto 60px;
	}
}


/**********************************************************************************

#main

**********************************************************************************/
#main {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 120px;
	display: flex;
	align-items: flex-start;
	gap: 70px;
}

#main p {
	text-align: justify;
	line-height: 1.5em;
	font-size: 18px;
}

#main img {
	max-width: 440px;
}

@media screen and (max-width: 820px) {
	#main img {
		max-width: 300px;
	}
}

@media screen and (max-width: 640px) {
	#main {
		margin: 0 auto 80px;
		flex-direction: column;
		align-items: center;
		gap: 50px;
	}
	
	#main p {
		font-size: 16px;
	}
	
	#main img {
		max-width: 500px;
	}
}

/**********************************************************************************

#point

**********************************************************************************/
#point {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 120px;
}

#point h3 {
	font-size: 24px;
	padding: 10px 50px;
	text-align: center;
	margin: 0 auto 50px;
	color: #fff;
	position: relative;
	z-index: 1;
	width: fit-content;
}

#point h3:after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(-45deg, var(--blue), #84ccc9);
	clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
	z-index: -1;
}

#point ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	place-items: center;
	gap: 25px;
}

#point ul li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	padding-right: 25px;
	border-right: solid 1px var(--blue);
}

#point ul li:last-child {
	padding-right: 0;
	border-right: none;
}

#point ul li .num {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	color: var(--blue);
	line-height: 2.5em;
}

#point ul li .num span {
	font-size: 40px;
}

#point ul li h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.3em;
}

@media screen and (max-width: 640px) {
	#point {
		margin: 0 auto 80px;
	}
	
	#point h3 {
		font-size: 20px;
		margin: 0 auto 30px;
	}
	
	#point ul {
		grid-template-columns: repeat(1, 1fr);
	}
	
	#point ul li {
		padding-right: 0;
		padding-bottom: 25px;
		border-right: none;
		border-bottom: solid 1px var(--blue);
	}
	
	#point ul li:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}
}

@media screen and (max-width: 430px) {
	#point ul li {
		gap: 25px;
	}
	
	#point ul li .num {
		font-size: 12px;
	}

	#point ul li .num span {
		font-size: 34px;
	}

	#point ul li h4 {
		font-size: 18px;
	}
}

/**********************************************************************************

.case-box

**********************************************************************************/
.case-box {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto 120px;
}

.case-box h3 {
	font-size: 36px;
	font-weight: bold;
	margin-bottom: 50px;
	color: var(--blue);
}

.case-box .inner {
	margin-bottom: 70px;
}

.case-box .inner.last {
	margin-bottom: 0;
}

.case-box .inner h4 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	padding: 5px 0 5px 20px;
	border-left: solid 4px var(--blue);
	line-height: 1.3em;
}

.case-box .inner h5 {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 30px;
	line-height: 1.3em;
}

.case-box .inner .inner-box {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

.case-box .inner .inner-box .txt {
	text-align: justify;
	line-height: 1.5em;
	font-size: 18px;
	max-width: 640px;
}

.case-box .inner .inner-box .txt.no-side {
	max-width: 1200px;
}

.case-box .inner .inner-box .txt span {
	font-weight: bold;
}

.case-box .inner .inner-box .image-box {
	width: 100%;
	max-width: 300px;
}

.case-box .inner .inner-box .image-box .bottom-img {
	margin-top: 30px;
}

.case-box .inner .inner-box .image-box .bottom-img02 {
	margin-top: 50px;
}

.case-box .inner .inner-box .image-box .name {
	margin-top: 15px;
}

.case-box .name02 {
	margin-top: 30px;
}

@media screen and (max-width: 820px) {
	.case-box h3 {
		font-size: 30px;
	}
}

@media screen and (max-width: 640px) {
	.case-box {
		margin: 0 auto 80px;
	}
	
	.case-box h3 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	
	.case-box .inner h4 {
		font-size: 20px;
	}
	
	.case-box .inner h5 {
		font-size: 18px;
	}
	
	.case-box .inner .inner-box {
		flex-direction: column;
		align-items: center;
		gap: 50px;
	}
	
	.case-box .inner .inner-box .txt {
		font-size: 16px;
	}
	
	.case-box .inner .inner-box .image-box {
		max-width: 400px;
	}
	
	.case-box .inner .inner-box .image-box .bottom-img {
		margin-top: 20px;
	}
	
	.case-box .inner .inner-box .image-box .bottom-img02 {
		margin-top: 40px;
	}
	
	.case-box .inner .inner-box.imgleft .txt {
		order: 1;
	}

	.case-box .inner .inner-box.imgleft .image-box {
		order: 2;
	}
}

/**********************************************************************************

.dlbox

**********************************************************************************/
.dlbox {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto 120px;;
	text-align: center;	
}

@media screen and (max-width: 640px) {
	.dlbox {
		margin: 0 auto 80px;
	}
}