@charset "UTF-8";

/* ------------------------------------------------
                    TOP
--------------------------------------------------- */

/*---------- 共通 ----------*/

.cont-ttl-wrap {
	width: 100%;
	margin-bottom: 60px;
	padding-top: 47px;
	text-align: center;
	position: relative;
}
.cont-ttl-wrap::before {
	content: '';
	width: 22px;
	height: 22px;
	background: var(--color-light-green);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: calc(50% - 11px);
	z-index: 1;
}
.cont-ttl-wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: 6px;
	left: calc(50% - 5px);
	z-index: 1;
}
.cont-ttl-ja {
	margin-bottom: 10px;
	color: var(--color-txt-gray);
	font-size: 1.8rem;
    font-weight: 500;
	line-height: 1;
}
.cont-ttl-en {
	color: var(--color-txt-black);
	font-size: 5.7rem;
	line-height: 1;
}



@media (max-width: 768px) {
	.cont-ttl-wrap {
		width: 100%;
		margin-bottom: 12vw;
		padding-top: 8vw;
		text-align: center;
		position: relative;
	}
	.cont-ttl-wrap::before {
		content: '';
		width: 4vw;
		height: 4vw;
		top: 0;
		left: calc(50% - 2vw);
		z-index: 1;
	}
	.cont-ttl-wrap::after {
		content: '';
		width: 2vw;
		height: 2vw;
		top: 1vw;
		left: calc(50% - 1vw);
		z-index: 1;
	}
	.cont-ttl-ja {
		margin-bottom: 2vw;
		font-size: 3.4vw;
	}
	.cont-ttl-en {
		font-size: 8.66vw;
	}
	
	
}



/*---------- MV ----------*/
.sec-mv {
	width: 100%;
	background: url("../../img/top/bg_mv.png") bottom center no-repeat;
	background-size: 100%;
	position: relative;
	z-index: 2;
}

/* text */
.mv-txt-wrap {
	padding: 150px 0 190px;
	position: relative;
	z-index: 2;
}
.mv-copy {
	font-size: 6.4rem;
	line-height: 1;
	margin-bottom: 40px;
}
.mv-txt {
	font-size: 2.5rem;
	font-weight: 400;
}

/* slide */
.mv-slide-wrap {
	width: 320px;
	height: 320px;
	margin: 0 auto;
	position: absolute;
	top: 100px;
	right: 10%;
	z-index: 5;
}
.sec-mv .swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
	border-radius: 80px;
    padding: 0;
    position: relative;
    z-index: 1;
	animation: rotateIn 10s linear 0s normal infinite;
}

.sec-mv .slide a {
	width: 320px;
	height: 320px;
	margin: 0 auto;
	padding: 30px;
	display: block;
}


.sec-mv .slide-01 a {
	background: url("../../img/top/img_slide_01.jpg") center center no-repeat;
	background-size: cover;
}
.sec-mv .slide-02 a {
	background: url("../../img/top/img_slide_02.jpg") center center no-repeat;
	background-size: cover;
}
.sec-mv .slide-03 a {
	background: url("../../img/top/img_slide_03.jpg") center center no-repeat;
	background-size: cover;
}

.slide-grad {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	border-radius: 80px;
	opacity: 1;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 80;
	animation: mvGradWrap 10s linear 0s normal infinite;
}
.slide-grad::after {
	content: '';
	width: 200%;
	height: 200%;
	background: url("../../img/top/bg_slide_01.jpg") center center no-repeat;
	background-size: 200% 200%;
	position: absolute;
	top: -50%;
	left: -50%;
	animation: Grad 4s linear 0s normal infinite;
}

/* スライダーのhover時 */
.mv-slide-wrap:hover .slide-grad {
	animation: hoverOut 0.4s linear 0s normal 1;
	opacity: 0;
	pointer-events: none;
}
.mv-slide-wrap.is-over:hover .slide-grad {
	animation: none;
	opacity: 0;
	pointer-events: none;
}
.mv-slide-wrap:hover .slide-grad::after {
}
.mv-slide-wrap:hover .swiper {
	animation: none;
}



@keyframes Grad { /* グラデーションの動き */
	0%{
		transform: rotate(0);
		background-position:100% 0;
	}
	50%{
		transform: rotate(180deg);
		background-position:0% 20%;
	}
	65%{
		transform: rotate(160deg);
		background-position:50% 60%;
	}
	100%{
		transform: rotate(360deg);
		background-position:100% 0%;
	}
}

@keyframes mvGradWrap { /* グラデーションの回転と透過 */
	0% {
		transform: rotate(0); opacity: 0; pointer-events: none;
	}
	5% {
		transform: rotate(45deg); opacity: 1; pointer-events: auto;
	}
	40% {
		transform: rotate(45deg); opacity: 1; pointer-events: auto;
	}
	45% {
		transform: rotate(90deg); opacity: 1; pointer-events: auto;
	}
	50% {
		transform: rotate(90deg); opacity: 0; pointer-events: none;
	}
	80% {
		transform: rotate(0); opacity: 0; pointer-events: none;
	}
	100% {
		transform: rotate(0); opacity: 0; pointer-events: none;
	}
}
	
@keyframes rotateIn { /* スライダーの回転と透過 */
	0% {
		transform: rotate(0); opacity: 0.5;
	}
	6% {
		transform: rotate(45deg); opacity: 0;
	}
	15% {
		transform: rotate(-45deg); opacity: 0;
	}
	40% {
		transform: rotate(-45deg); opacity: 0;
	}
	45% {
		transform: rotate(0); opacity: 1;
	}
	50% {
		transform: rotate(0); opacity: 1;
	}
	98% {
		transform: rotate(0); opacity: 1;
	}
	100% {
		transform: rotate(0); opacity: 1;
	}
}

@keyframes hoverOut{
	0% { opacity: inherit;}
	100% { opacity: 0;}
}


/* slider コンテンツ */
.slide-link-wrap {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.slide-link-wrap.slide-case {
	justify-content: center;
}
.btn-slide-link {
	width: auto;
	height: 30px;
	margin: auto auto 0;
	padding-right: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.8rem;
	position: relative;
}
.btn-slide-link::before {
	content: '';
	width: 30px;
	height: 30px;
	background: var(--color-black);
	border-radius: 50%;
	position: absolute;
	top: calc(50% - 15px);
	right: 0;
	transition: 0.3s ease-in-out;
}
.btn-slide-link::after {
	content: '';
	width: 30px;
	height: 30px;
	background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
	background-size: 9px;
	position: absolute;
	top: calc(50% - 15px);
	right: 0;
	transition: 0.3s ease-in-out;
}


.slide-case-item-num {
	width: 100%;
	margin-bottom: 5px;
	text-align: left;
	color: var(--color-txt-gray);
	font-size: 2.4rem;
	line-height: 2;
}
.slide-case-item-ttl {
	width: 100%;
	margin-bottom: 5px;
	text-align: left;
	font-size: 2.4rem;
	font-weight: 500;
	line-height: 1.8;
}
.slide-case-item-txt {
	width: 100%;
	text-align: left;
	font-size: 1.5rem;
	line-height: 1.8;
}


@media (max-width: 1210px) {

	/* text */
	.mv-txt-wrap {
		width: calc(100% - 380px);
	}
	.mv-copy {
		font-size: 5.0vw;
		line-height: 1;
		margin-bottom: 40px;
	}
	.mv-txt {
		font-size: 1.88vw;
	}

	/* slide */
	.mv-slide-wrap {
		right: 8%;
	}
	

}


@media (min-width: 769px) {
	.swiper-slide a:hover .btn-slide-link::before {
		content: '';
		width: 26px;
		height: 26px;
		top: calc(50% - 13px);
		right: 2px;
		transition: 0.3s ease-in-out;
	}
}


@media (max-width: 768px) {
	.sec-mv {
		width: 100%;
	}

	/* text */
	.mv-txt-wrap {
		width: 100%;
		padding: 13.15vw 0;
		position: relative;
		z-index: 2;
	}
	.mv-copy {
		font-size: 8.42vw;
		margin-bottom: 6.57vw;
		text-align: center;
	}
	.mv-txt {
		font-size: 3.68vw;
		text-align: center;
	}

	/* slide */
	.mv-slide-wrap {
		width: 42.10vw;
		height: 42.10vw;
		position: relative;
		top: auto;
		right: auto;
		z-index: 1;
	}

	.sec-mv .swiper {
		border-radius: 10vw;
	}

	.sec-mv .slide a {
		width: 42.10vw;
		height: 42.10vw;
		margin: 0 auto;
		padding: 5vw;
		display: flex;
		flex-direction: column;
		position: relative;
	}

	.slide-grad {
		border-radius: 10vw;
	}


	/* slider コンテンツ */
	.btn-slide-link {
		width: auto;
		height: 6vw;
		padding-right: 8vw;
		font-size: 4.8vw;
	}
	.btn-slide-link::before {
		content: '';
		width: 6vw;
		height: 6vw;
		top: calc(50% - 3vw);
	}
	.btn-slide-link::after {
		content: '';
		width: 6vw;
		height: 6vw;
		background: url("../../img/common/icon_arrow_w.svg") center center no-repeat;
		background-size: 2vw;
		top: calc(50% - 3vw);
	}


	.slide-case-item-num {
		width: 100%;
		margin-bottom: 1vw;
		font-size: 4.2vw;
	}
	.slide-case-item-ttl {
		width: 100%;
		margin-bottom: 1vw;
		font-size: 4.0vw;
	}
	.slide-case-item-txt {
		display: none;
	}

}
    


/*---------- お知らせ ----------*/
.sec-news {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 30px 0 40px;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 30px;
	position: relative;
	z-index: 2;
}

.news-ttl {
	width: 128px;
	font-size: 3.0rem;
	line-height: 1;
}

/* リスト */
.news-list-wrap {
	width: calc(100% - 128px - 214px);
	margin: 0 auto;
}
.news-list-wrap li {
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid var(--color-light-gray);
	text-align: left;
}
.news-list-wrap li:last-child {
	border-bottom: none;
}
.news-list-wrap li a {
	width: 100%;
	display: flex;
	align-items: flex-start;
}
.news-list-date {
	width: 95px;
}
.news-list-tag {
	width: 95px;
	height: 25px;
	margin: 0 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--color-black);
	border-radius: 20px;
	color: #fff;
	font-size: 1.3rem;
	text-align: center;
}
.tag-information {
	background: #fff;
	color: var(--color-black);
}
.tag-important {
	background: var(--color-black);
}

.news-list-ttl {
	width: calc(100% - 190px);
	padding-right: 25px;
	position: relative;
}
.news-list-ttl::after {
	content: '';
	width: 19px;
	height: 8px;
	background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
	background-size: 19px;
	position: absolute;
	top: calc(50% - 4px);
	right: 0;
	transition: 0.3s ease-in-out;
}


@media (max-width: 768px) {
	.sec-news {
		width: 90%;
		max-width: initial;
		margin: 19.73vw auto 0;
		padding: 7.89vw 6.57vw;
		flex-direction: column;
		justify-content: flex-start;
		border-radius: 7.89vw;
	}

	.news-ttl {
		width: 100%;
		margin-bottom: 1.97vw;
		font-size: 6.57vw;
		text-align: center;
	}

	/* リスト */
	.news-list-wrap {
		width: 100%;
		margin: 0 auto;
	}
	.news-list-wrap li {
		width: 100%;
		padding: 4.60vw 0;
		border-bottom: 1px solid var(--color-light-gray);
		text-align: left;
	}
	.news-list-wrap li:last-child {
		border-bottom: none;
	}
	.news-list-wrap li a {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.news-list-date {
		width: 20vw;
	}
	.news-list-tag {
		width: 15vw;
		height: 4vw;
		margin: 0 1.97vw;
		border-radius: 4vw;
		font-size: 2.36vw;
	}

	.news-list-ttl {
		width: 100%;
		margin-top: 1.97vw;
		padding-right: 5vw;
	}
	.news-list-ttl::after {
		content: '';
		width: 3.8vw;
		height: 1.6vw;
		background: url("../../img/common/icon_arrow_b.svg") center center no-repeat;
		background-size: 100%;
		position: absolute;
		top: calc(50% - 0.8vw);
	}
}



/*---------- Service ----------*/
.sec-service {
	width: 100%;
	padding: 100px 0 50px;
	position: relative;
}
.sec-service::before {
	content: '';
	width: 100%;
	height: 117.83vw;
	background: url("../../img/top/bg_dot.png") center bottom no-repeat;
	background-size: 100%;
	position: absolute;
	top: 38.88vw;
	left: 0;
}

.service-lead-txt {
	margin-bottom: 80px;
	font-size: 1.6rem;
	font-weight: 500;
	text-align: center;
}

/* リスト */
.service-list {
	width: 100%;
	padding-left: 96px;
	position: relative;
}
.service-list::before {
	content: '';
	width: 1px;
	height: calc(100% - 86px);
	background: var(--color-black);
	position: absolute;
	top: 50px;
	left: 0;
	z-index: 1;
}
.service-item {
	width: 100%;
	margin-bottom: 110px;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.service-item:last-child {
	margin-bottom: 0;
}



.service-item-txt-wrap {
	width: calc(100% - 250px);
	padding-left: 48px;
	position: relative;
}
.service-item-txt-wrap::before {
	content: '';
	width: 23px;
	height: 23px;
	background: var(--color-light-green);
	border-radius: 50%;
	opacity: 0;
	position: absolute;
	top: 1.4em;
	left: -107px;
	z-index: 2;
	transition: 0.3s ease-in-out;
}
.service-item-txt-wrap::after {
	content: '';
	width: 11px;
	height: 11px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: calc(1.4em + 6px);
	left: -101px;
	z-index: 3;
}


.service-item-num {
	font-size: 2.6rem;
	font-weight: 500;
	position: absolute;
	top: 0.3em;
	left: 0;
	transition: 0.3s ease-in-out;
}
.service-item-ttl {
	margin-bottom: 30px;
	font-size: 3.2rem;
	font-weight: 500;
}
.service-item-txt {
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 2;
}

.service-item-img-wrap {
	width: 200px;
	border-radius: 50px;
	overflow: hidden;
}

.is-current .service-item-txt-wrap::before {
	opacity: 1;
}
.is-current .service-item-num {
	color: var(--color-light-green);
}

@media (max-width: 768px) {
	.sec-service {
		width: 100%;
		padding: 20vw 0 10vw;
		position: relative;
	}
	.sec-service::before {
		content: '';
		width: 100%;
		height: 117.83vw;
		background: url("../../img/top/bg_dot.png") center bottom no-repeat;
		background-size: 100%;
		position: absolute;
		top: 38.88vw;
		left: 0;
	}

	.service-lead-txt {
		margin-bottom: 12vw;
		font-size: 3.6vw;
	}

	/* リスト */
	.service-list {
		width: 100%;
		padding-left: 10vw;
		position: relative;
	}
	.service-list::before {
		content: '';
		width: 1px;
		height: calc(100% - 12vw);
		background: var(--color-black);
		position: absolute;
		top: 5vw;
		left: calc(2.2vw - 0.5px);
		z-index: 1;
	}
	.service-item {
		width: 100%;
		margin-bottom: 16vw;
		justify-content: space-between;
		align-items: center;
		position: relative;
	}
	.service-item:last-child {
		margin-bottom: 0;
	}



	.service-item-txt-wrap {
		width: 100%;
		padding-left: 9vw;
		position: relative;
	}
	.service-item-txt-wrap::before {
		content: '';
		width: 4.4vw;
		height: 4.4vw;
		background: var(--color-light-green);
		border-radius: 50%;
		opacity: 0;
		position: absolute;
		top: 1.0em;
		left: -10vw;
		z-index: 2;
		transition: 0.3s ease-in-out;
	}
	.service-item-txt-wrap::after {
		content: '';
		width: 2.2vw;
		height: 2.2vw;
		background: var(--color-green);
		border-radius: 50%;
		position: absolute;
		top: calc(1.15em + 0.55vw);
		left: calc(-10vw + 1.1vw);
		z-index: 3;
	}


	.service-item-num {
		font-size: 4.8vw;
	}
	.service-item-ttl {
		margin-bottom: 4vw;
		font-size: 5.66vw;
	}
	.service-item-txt {
		font-size: 3.4vw;
	}

	.service-item-img-wrap {
		width: 30vw;
		margin: 10vw auto 0;
		border-radius: 8vw;
		overflow: hidden;
	}

	.is-current .service-item-txt-wrap::before {
		opacity: 1;
	}
	.is-current .service-item-num {
		color: var(--color-light-green);
	}
	
	.more-btn-wrap {
		padding-right: 9vw;
	}
	.more-btn-wrap .btn-more {
		margin: 0 auto;
	}
}



/*---------- Case ----------*/
.sec-case {
	width: 100%;
	padding: 100px 0;
	position: relative;
	z-index: 3;
}

.case-caption {
	margin-bottom: 50px;
	color: var(--color-txt-gray);
}

/* リスト */
.case-item-wrap {
	width: 100%;
	display: flex;
	justify-content: center;
}
.case-item {
	width: 32%;
	display: flex;
	flex-direction: column;
	background: #fff;
	border-radius: 50px;
	padding: 30px 30px 40px;
}
.case-item + .case-item {
	margin-left: 40px;
}

.case-item-num {
	margin-bottom: 10px;
	color: var(--color-txt-gray);
	font-size: 2.4rem;
	line-height: 2;
}
.case-item-ttl {
	margin-bottom: 20px;
	font-size: 3.0rem;
	font-weight: 500;
	line-height: 1.8;
}

.case-tag-list {
	width: 100%;
	margin-bottom: 10px;
	align-items: center;
	justify-content: flex-start;
}
.case-tag {
	margin: 0 10px 10px 0;
	padding: 0 15px;
	display: inline-block;
	background: #E7E7E7;
	border-radius: 15px;
	font-size: 1.3rem;
	font-weight: 500;
	line-height: 2;
}
.case-item-txt {
	margin-bottom: 20px;
	font-size: 1.6rem;
	line-height: 1.8;
}
.case-item .btn-icon-more {
	margin: auto auto 0;
}

@media (max-width: 768px) {
	.sec-case {
		width: 100%;
		padding: 20vw 0 10vw;
		position: relative;
		z-index: 3;
	}

	.case-caption {
		margin-bottom: 10vw;
		font-size: 3.4vw;
	}

	/* リスト */
	.case-item-wrap {
		width: 100%;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	.case-item {
		width: 90%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		background: #fff;
		border-radius: 8vw;
		padding: 6vw 8vw 8vw;
	}
	.case-item + .case-item {
		margin: 6.66vw auto 0;
	}

	.case-item-num {
		margin-bottom: 2vw;
		font-size: 4.8vw;
		line-height: 2;
	}
	.case-item-ttl {
		margin-bottom: 4vw;
		font-size: 5.2vw;
	}

	.case-tag-list {
		width: 100%;
		margin-bottom: 2vw;
	}
	.case-tag {
		margin: 0 2vw 2vw 0;
		padding: 0 3vw;
		display: inline-block;
		background: #E7E7E7;
		border-radius: 3vw;
		font-size: 2.8vw;
	}
	.case-item-txt {
		margin-bottom: 4vw;
		font-size: 3.2vw;
	}
	.case-item .btn-icon-more {
		margin: auto auto 0;
	}
    
}




/*---------- Strength ----------*/
.sec-strength {
	width: 100%;
	padding: 100px 0 50px;
	position: relative;
}

/* slider */
.slider-dots {
	width: 100%;
	height: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1000;
}

.slider-dots .swiper-pagination-bullet {
	width: 5px;
	height: 5px;
	display: inline-block;
	position: relative;
	border-radius: 50%;
	margin: 0 6px !important;
	background: var(--color-green) !important;
	cursor: pointer;
	opacity: 1 !important;
}

.slider-dots .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
	content: '';
	width: 11px;
	height: 11px;
	border-radius: 50%;
	position: absolute;
	top: -3px;
	left: -3px;
	z-index: -1;
	background: var(--color-light-green);
}



/* slider contents */
.strength-item {
	width: 100%;
	display: flex;
	flex-direction: column;
}
.strength-item .strength-item-icon {
	width: 90%;
	max-width: 240px;
	margin: 0 auto 30px;
	overflow: hidden;
	border-radius: 50px;
}
.strength-item-copy {
	margin-bottom: 20px;
	font-size: 2.0rem;
	font-weight: 500;
	text-align: center;
}
.strength-item-txt {
	margin-bottom: 60px;
	font-size: 1.6rem;
	line-height: 1.8;
	text-align: center;
}

@media (max-width: 768px) {
	.sec-strength {
		width: 100%;
		padding: 10vw 0;
		position: relative;
	}

	/* slider */

	.slider-dots {
		width: 100%;
		height: 2.6vw;
	}
	.slider-dots .swiper-pagination-bullet {
		width: 1.4vw;
		height: 1.4vw;
		margin: 0 1.8vw;
	}
	.slider-dots .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
		content: '';
		width: 2.6vw;
		height: 2.6vw;
		top: -0.6vw;
		left: -0.6vw;
	}



	/* slider contents */
	.strength-item {
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.strength-item .strength-item-icon {
		width: 32%;
		max-width: initial;
		margin: 0 auto 5vw;
		border-radius: 8vw;
		overflow: hidden;
	}
	.strength-item-copy {
		margin-bottom: 4vw;
		font-size: 4.0vw;
	}
	.strength-item-txt {
		margin-bottom: 12vw;
		font-size: 3.33vw;
		line-height: 2;
	}
}



.sl-trans-elems .deco{
	animation: roll 1s ease-out both, fadeIn 1s ease-out both;
}
.sl-trans-back-elems .deco{
	animation: scaleDown 1s ease-in-out both;
}

@keyframes roll{
	0% {transform:scale(0) rotate(360deg); opacity:0;}
	100% {transform:scale(1) rotate(0deg); opacity:1;}
}

@keyframes moveUp{
	0% {transform:translateY(40px); opacity:0;}
	100% {transform:translateY(0px); opacity:1;}
}

@keyframes fadeIn{
	0% {opacity:0;}
	100% {opacity:1;}
}

@keyframes scaleDown{
	0% {transform:scale(1);}
	100% {transform:scale(0.5);}
}

@keyframes fadeOut{
	0% {opacity:1;}
	100% {opacity:0;}
}






/*---------- ドキュメント・お問い合わせ ----------*/
.sec-bottom-links {
	width: 100%;
	padding: 100px 0 200px;
	position: relative;
}
.sec-bottom-links .cont-inn {
	justify-content: space-between;
}

.bottom-link {
	width: calc((100% - 50px) / 2);
	padding: 70px 50px;
	border-radius: 80px;
	position: relative;
}
.bottom-link-document {
	background: linear-gradient( to bottom, #D8D8D8, #677671, #000000);
	background-size: 400% 400%;
	animation: bottomlinkGrad 10s ease infinite;
}
.bottom-link-contact {
	background: linear-gradient( to bottom, #C4D700, #109A98, #004831);
	background-size: 400% 400%;
	animation: bottomlinkGrad 10s ease infinite;
}

@keyframes bottomlinkGrad {
	0% {
		background-position: 50% 0%;
	}
	50% {
		background-position: 50% 100%;
	}
	100% {
		background-position: 50% 0%;
	}
}

.bottom-link-ttl-wrap {
	width: 100%;
	margin-bottom: 100px;
	padding-left: 35px;
	position: relative;
	color: #fff;
}
.bottom-link-ttl-wrap::before {
	content: '';
	width: 20px;
	height: 20px;
	background: var(--color-light-green);
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	transition: 0.3s ease-in-out;
}
.bottom-link-ttl-wrap::after {
	content: '';
	width: 10px;
	height: 10px;
	background: var(--color-green);
	border-radius: 50%;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 3;
}

.bottom-link-ttl-ja {
	margin-bottom: 15px;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
}
.bottom-link-ttl-en {
	font-size: 4.2rem;
	line-height: 1;
}

a.btn-bottom-link {
	width: 70px;
	height: 70px;
	margin: auto 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	position: relative;
}
a.btn-bottom-link::before {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-radius: 50%;
	position: absolute;
	top: 0;
	left: 0;
	transition: 0.3s ease-in-out;
}
@media (min-width: 769px) {
	a.btn-bottom-link:hover::before {
		content: '';
		width: 90%;
		height: 90%;
		top: 5%;
		left: 5%;
	}
}

.bottom-link-document .btn-bottom-link img {
	width: 14px;
}
.bottom-link-contact .btn-bottom-link img {
	width: 17px;
}

@media (max-width: 768px) {
	.sec-bottom-links {
		width: 100%;
		padding: 6vw 0 12vw;
		position: relative;
	}
	.sec-bottom-links .cont-inn {
		justify-content: space-between;
	}

	.bottom-link {
		width: 90%;
		margin: 0 auto 8vw;
		padding: 8vw 6vw;
		border-radius: 10vw;
		position: relative;
	}

	.bottom-link-ttl-wrap {
		width: 100%;
		margin-bottom: 8vw;
		padding-left: 7vw;
	}
	.bottom-link-ttl-wrap::before {
		content: '';
		width: 4vw;
		height: 4vw;
	}
	.bottom-link-ttl-wrap::after {
		content: '';
		width: 2vw;
		height: 2vw;
		top: 1vw;
		left: 1vw;
	}

	.bottom-link-ttl-ja {
		margin-bottom: 3vw;
		font-size: 3.6vw;
	}
	.bottom-link-ttl-en {
		font-size: 7.8vw;
	}

	a.btn-bottom-link {
		width: 10vw;
		height: 10vw;
		margin: auto 0 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		background: none;
		position: relative;
	}
	a.btn-bottom-link::before {
		top: -1px;
		left: -1px;
	}

	.bottom-link-document .btn-bottom-link img {
		width: 2vw;
	}
	.bottom-link-contact .btn-bottom-link img {
		width: 2.8vw;
	}
    
}


