@charset "utf-8";
.summary {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	font-size: 20px;
	gap: 30px;
}
.summary .pic {
	overflow: hidden;
	border-radius: 20px;
}
@media screen and (max-width: 768px) {
	.summary {
		justify-content: flex-start;
		flex-direction: column-reverse;
	}
}

.links {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
	margin-top: 30px;
	margin-bottom: 30px;
}

.links a {
	border-radius: 30px;
	display: grid;
	grid-template-rows: subgrid;
	grid-template-columns: 100px 1fr;
	border:1px #6DB030 solid;
	height: 100%;
	transition: all ease 0.4s;
	align-items: center;
	box-sizing: border-box;
}
.links a:hover {
	box-shadow: 0 0 10px gray;
	border:1px solid #fff;
	text-decoration: none;
}
.links a figure {
	display: flex;
	border-right: 1px #6DB030 solid;
	align-items: center;
	justify-content: center;
	padding: 15px;
	height: 50%;
}
.links li:nth-child(1) a figure img {
	height: 75px;
}
.links li:nth-child(2) a figure img {
	height: 60px;
}
.links li:nth-child(1) a figure img {
	height: 62px;
}
.links a dl {
	padding: 15px;
	align-self: flex-start;
}
.links a dl dt {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 5px;
}
.hero .txt .btn-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero .txt .btn-wrap a {
	border-radius: 20px;
	background: #6DB030;
	color: #fff;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	width: 300px;
	position: relative;
}
.hero .txt .btn-wrap a::after {
	content: "";
	display: inline-block;
	position: absolute;
	margin-right: 5px;
	height: 8px;
	width: 8px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(45deg);
	margin-right: 8px;
	vertical-align: middle;
	margin-top: -5px;
	top: 50%;
	right: 10px;
	z-index: 2;
}
.hero .pic {
	width: 100%;
}
@media screen and (max-width: 768px) {
.hero .pic {
	width: 60%;
	margin: 0 auto;
}
}
.hero .pic img {
	width: 530px;
	max-width: 100%;
}
.grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
	margin-top: 30px;
	li {
		p{
			margin-top: 10px;
			padding: 0 5px;
		}
	}
}
@media screen and (max-width: 768px) {
.grid {
	grid-template-columns: 1fr;
}
}
.grid dl dt img {
	width: 100%;
}
.grid dl dt h3 {
	font-weight: 500;
	margin-top: 1rem;
}
.btn {
	display: flex;
	padding: 1.25rem;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--color-gray70);
	border-radius: 1.5625rem;
	font-weight: bold;
	text-decoration: none !important;
	gap: 1rem;
}
.btn.w400 {
	max-width: 400px;
	margin: 0 auto;
}
.btn p {
	flex: 1;
	display: flex;
	text-align: center;
	margin: 0;
}
.btn:hover::after {
	transform: translateX(5px);
	filter: invert(61%) sepia(17%) saturate(1686%) hue-rotate(49deg) brightness(97%) contrast(85%);
}
.btn::after {
	display: flex;
	content: '';
	width: 2.25rem;
	height: 2.25rem;
	background: url(/themes/site/images/icon/arrow01.svg);
	background-position: center;
	background-size: cover;
	transition: all 0.4s ease;
}
.cta {
	background: var(--color-primary);
	margin: 50px auto;
	padding: 30px;
	border-radius: 20px;
	.inn {
		color: #fff;
		font-size: 18px;
		ul.disc {
			margin-left: 20px;
			list-style: disc;
			li {
				list-style: disc;
			}
		}
		p {
			margin-top: 15px;
		}
	}
	.flex {
		gap: 30px;
	}
	.txt {
		padding: 20px
	}
	.pic {
		max-width: 400px;
		width: 100%;
		img {
			width: 100%;
		}
	}
	.btn {
      display: flex;
      padding: 1.25rem;
      justify-content:center;
      align-items: center;
      border: 1px solid var(--color-gray70);
      border-radius: 1.5625rem;
      font-weight: bold;
      text-decoration: none;
      gap: 1rem;
	  background: #ffffff;
	  max-width: 400px;
	  margin: 0 auto;
      p {
        flex: 1;
        display: flex;
        i {
          font-size: 1.5em;
          margin-right: 0.3625rem;
        }
      }
      &:hover {
        &::after {
          transform: translateX(5px);
          filter: invert(61%) sepia(17%) saturate(1686%) hue-rotate(49deg) brightness(97%) contrast(85%);
        }
      }
      &::after {
        display: flex;
        content: '';
        width: 2.25rem;
        height: 2.25rem;
        background: url(/themes/site/images/icon/arrow01.svg);
        background-position: center;
        background-size: cover;
        transition: all 0.4s ease;
      }
    }

}
.flex-wrap {
	display: flex;
	flex-wrap: wrap;
}