@charset "utf-8";
/* ------------共通------------ */

:root {
	--blue: #1c5dab;
	--jade: #1192a8;
	--black: #1a1a1a;
	--orange: #e6690d;
	--green: #209d3e;
	--m-plus:"M PLUS Rounded 1c",serif;
	--arya:"Arya",serif;
}

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	/* 横方向のスクロールバーを非表示にする */
}

html {
	scroll-padding-top: 70px;
	scroll-behavior: smooth;
}

body {
	font-family: "Helvetica Neue",
		Arial,
		"Hiragino Kaku Gothic ProN",
		"Hiragino Sans",
		Meiryo,
		sans-serif;
}
a{
	color: var(--black);
}

/* google font */
.arya-regular {
	font-family: "Arya", serif;
	font-weight: 400;
	font-style: normal;
}
.arya-bold {
	font-family: "Arya", serif;
	font-weight: 700;
	font-style: normal;
}
.m-plus-rounded-1c-regular {
	font-family: "M PLUS Rounded 1c", serif;
	font-weight: 400;
	font-style: normal;
}

a {
	text-decoration: none;
}
li {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}

.btn01 {
	width: 100%;
	max-width: 270px;
	height: 60px;
	padding: 0 20px;
	position: relative;
	text-decoration: none;
	outline: none;
	display: flex;
	align-items: center;
	border-radius: 9999px;
	background-color: var(--blue);
	transition: background-color 0.3s ease;
	overflow: hidden;
	margin-left: 15px;
}
.btn01::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	background-color: #fff;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.btn01 .btn01_text,
.btn01 .btn01_text>span {
	position: relative;
	font-family: var(--arya);
	font-size: 1.5rem;
	font-weight: 600;
	color: #fff;
	top: -2px;
	z-index: 2;
	transition: color 0.3s ease;
}
.btn01 .btn01_text>span {
	font-family: var(--m-plus);
	font-size: 1.125rem;
	font-weight: 600;
	margin-left: 15px;
	top: -1px;
}
/* 丸アイコン */
.btn01::after {
	content: '';
	position: absolute;
	top: calc(50% - 4px);
	right: 20px;
	z-index: 3;
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: #fff;
	transition: all 0.3s ease;
}
.btn01:hover {
	background-color: #fff !important;
}
.btn01:hover::before {
	transform: scaleX(1);
}
.btn01:hover .btn01_text,
.btn01:hover .btn01_text>span {
	color: var(--blue);
}
.btn01:hover::after {
	background-color: var(--blue);
	transform: scale(2);
}

/* -------View ボタン---------- */
.view_btn a {
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--black);
	display: block;
	position: relative;
	box-sizing: border-box;
	max-width: 180px;
	text-align: center;
	padding: 4px 16px 4px 0;
	margin: 10px;
	margin-inline: auto;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}
.view_btn a::before {
	content: "";
	display: block;
	position: absolute;
	width: 120px;
	height: 1px;
	background: var(--black);
	bottom: 0;
	left: 0;
	transition: all 0.3s;
}
.view_btn a::after {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 1px;
	background: var(--black);
	rotate: 40deg;
	right: -20px;
	bottom: 7px;
	transition: all 0.3s;
}
.view_btn a:hover::after,
.view_btn a:hover::before {
	translate: 20px 0;
	transition: all 0.3s;
}
/* -----戻るボタン---------- */
.back_btn a {
	font-size: 1.125rem;
	font-weight: 500;
	font-family: var(--m-plus);
	color: var(--black);
	display: block;
	position: relative;
	box-sizing: border-box;
	max-width: 180px;
	text-align: center;
	padding: 4px 16px 4px 0;
	margin: 10px;
	margin-inline: auto;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
}
.back_btn a::before {
	content: "";
	display: block;
	position: absolute;
	width: 145px;
	height: 1px;
	background: var(--black);
	bottom: 0;
	left: 0;
	transition: all 0.3s;
}
.back_btn a::after {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 1px;
	background: var(--black);
	rotate: -40deg;
	left: -1px;
	bottom: 7px;
	transition: all 0.3s;
}
.back_btn a:hover::after,
.back_btn a:hover::before {
	translate: -20px 0;
	transition: all 0.3s;
}

/* ---------翡翠丸button------------- */
button.link_btn01{
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-color: var(--green);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 320px;
	left: 50%;
}
button.link_btn02 {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-color: var(--green);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 1000px;
	left: 35%;
}
a.page_link {
	font-family: var(--arya);
	font-size: 2.5rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 2px no-repeat;
	transition: background-size .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.page_link:hover {
	background-position: right bottom;
	background-size: 0 2px;
}

button.link_btn03 {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background-color: #fff;
	border: 2px solid var(--blue);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -30px;
}
a.page_link03 {
	font-family: var(--arya);
	font-size: 2.5rem;
	font-weight: 600;
	color: var(--blue);
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 2px no-repeat;
	transition: background-size .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.page_link03:hover {
	background-position: right bottom;
	background-size: 0 2px;
}

button.industry_link_btn{
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background-color: var(--orange);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
a.industry_link {
	font-family: var(--m-plus);
	font-size: 1.7rem;
	font-weight: 500;
	color: #fff;
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 2px no-repeat;
	transition: background-size .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.industry_link:hover {
	background-position: right bottom;
	background-size: 0 2px;
}
button.page_link_btn {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	background-color: var(--orange);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}
a.page_inner_link {
	font-family: var(--m-plus);
	font-size: 1.25rem;
	font-weight: 500;
	color: #fff;
	background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 2px no-repeat;
	transition: background-size .4s cubic-bezier(0.215, 0.61, 0.355, 1);
}
a.page_inner_link:hover {
	background-position: right bottom;
	background-size: 0 2px;
}

@media(max-width:1200px){
	button.link_btn02{
	width: 260px;
	height: 260px;
	top: 230px;
	left: 60%;
	}
	button.link_btn02{
		width: 260px;
		height: 260px;
		top: 860px;
		left: 23%;
	}
	button.link_btn03{
		width: 250px;
		height: 250px;
		bottom: -10px;
	}
	button.industry_link_btn{
		width: 180px;
		height: 180px;
	}
	a.industry_link{
		font-size: 1.25rem;
	}
}
@media(max-width:950px){
	button.industry_link_btn {
		width: 150px;
		height: 150px;
	}
	a.industry_link {
		font-size: 1.25rem;
	}
}
@media(max-width:780px) {
	button.link_btn01 {
		width: 200px;
		height: 200px;
		top: 180px;
		left: 60%;
	}
	button.link_btn02 {
		width: 200px;
		height: 200px;
		top: 830px;
		left: 13%;
	}
	a.page_link,
	a.page_link03{
		font-size: 2rem;
	}
	button.link_btn03 {
		bottom: -20px;
	}
}
@media(max-width:550px) {
	button.link_btn01 {
		width: 160px;
		height: 160px;
		top: 230px;
		left: 50%;
	}
	button.link_btn02 {
		width: 160px;
		height: 160px;
		top: 790px;
		left: 10%;
	}
	a.page_link,
	a.page_link03 {
		font-size: 1.5rem;
	}
	button.link_btn03 {
		width: 200px;
		height: 200px;
		bottom: 180px;
	}
	button.industry_link_btn {
		width: 120px;
		height: 120px;
	}
	a.industry_link {
		font-size: 1rem;
	}
	button.page_link_btn{
		width: 120px;
		height: 120px;
	}
	a.page_inner_link{
		font-size: 1.125rem;
	}
}

.back_btn2 {
	display: inline-block;
	width: 300px;
	text-align: center;
	text-decoration: none;
	line-height: 50px;
	outline: none;
	color: var(--border-color);
	background-color: rgba(255, 255, 255, 0.6);
	position: relative;
	border: 1px solid var(--border-color);
	transition: color 0.5s ease;
}
.back_btn2:hover {
	color: #00002f;
}
.back_btn2:hover::before {
	transform: scaleX(1);
	transform-origin: right;
}
.back_btn2::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: #51b2e0;
	transform: scaleX(0);
	transform-origin: left;
	transition: all 0.5s ease;
	transition-property: transform;
}
.back_text2 {
	position: relative;
}

.sp{
	display: none;
}
span.sp{
	display: none;
}

/* ハンバーガーメニューと同時に表示切替 */
@media(max-width:1200px){
	.sp{
		display: block;
	}
	span.sp{
		display: contents;
	}
	.pc_only{
		display: none;
	}
}

/* タブレット以下非表示 */
@media(max-width:950px){
	.sp_none{
		display: none;
	}
}


/* トップに戻るボタン */
a.backToTop {
	background: #d7eef3;
	width: 50px;
	height: 50px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	opacity: 0;
	z-index: 999;
	border-radius: 9999px;
	display: inline-block;
	transition: opacity 1s;
	pointer-events: none;
}
/* 上三角 */
a.backToTop:before {
	display: inline-block;
	color: var(--border-color);
	line-height: 1;
	width: 0.8rem;
	height: 0.8em;
	border: 0.2em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	box-sizing: border-box;
	content: "";
	z-index: 1000;
	opacity: 1;
	left: 50%;
	top: 55%;
	position: absolute;
	transform: translate(-50%, -50%) rotate(-45deg);
}
/* hover時 */
a.backToTop:hover {
	background: var(--color);
	opacity: 0.8 !important;
}
/* ------------共通 end------------ */
/* ------------title共通------------ */
.page_titleBox{
	width: 660px;
	height: 330px;
	border-radius: 0 0 660px 660px;
	background-color: var(--green);
	text-align: center;
	margin: auto;
}
.page_titleBox2 {
	width: 660px;
	height: 330px;
	border-radius: 0 0 660px 660px;
	background-color: var(--green);
	text-align: center;
	margin: auto;
}
h1.page_Uptitle{
	font-size: 5rem;
	font-family: var(--arya);
	color: #fff;
	line-height: 1.2;
	padding-top: 120px;
}
.page_titleBox>span,
.page_titleBox2>span{
	display: block;
	font-family: var(--m-plus);
	font-size: 1.5rem;
	line-height: 2.0;
	color: #fff;
	font-weight: 400;
}
h2 {
	font-size: 6.25rem;
	font-family: var(--arya);
	color: #fff;
	font-weight: 400;
	line-height: 1;
	background-color: var(--blue);
}
h3 {
	font-family: var(--m-plus);
	font-size: 1.5rem;
	padding: 0.25em 0.5em;
	color: var(--blue);
	background: transparent;
	border-left: solid 5px var(--blue);
	border-bottom: solid 2px var(--blue);
	width: fit-content;
}
h3>span{
	font-size: 1.25rem;
	padding-left: 10px;
}
h4{
	display: inline-block;
	font-size: 1.25rem;
	font-weight: bold;
	color: var(--black);
	padding-bottom: 15px;
	border-bottom: 2px solid var(--blue);
	width: fit-content;
	margin-bottom: 50px;
}

@media(max-width:900px){
.page_titleBox,
.page_titleBox2{
	width: 550px;
	height: 275px;
}
h1.page_Uptitle{
	font-size: 4rem;
	padding-top: 80px;
}
}

@media(max-width:550px){
.page_titleBox,
.page_titleBox2 {
		width: 400px;
		height: 200px;
}
h1.page_Uptitle {
	font-size: 3rem;
	padding-top: 60px;
}
.page_titleBox>span,
.page_titleBox2>span {
	font-size: 1.3rem;
}
h3{
	font-size: 1.25rem;
}
h3>span{
	font-size: 1rem;
}
h4{
	margin-bottom: 30px;
}
}
@media(max-width:400px) {
	.page_titleBox,
	.page_titleBox2 {
		width: 300px;
		height: 160px;
	}
	h1.page_Uptitle {
		font-size: 2.5rem;
		padding-top: 50px;
	}
.page_titleBox>span,
.page_titleBox2>span {
		font-size: 1rem;
	}
}
/* ------------title共通 end------------ */
/* ------------PAGE 共通------------ */
.page_mv {
	width: 100%;
	height: 700px;
	margin-bottom: 120px;
}
.page_mvtitle {
	max-width: 1500px;
	height: 100%;
	display: block;
	margin: auto;
	position: relative;
}
h1.page_title{
	position: absolute;
	right: 0;
	bottom: 25px;
	font-family: var(--arya);
	font-size: 7rem;
	color: var(--jade);
	mix-blend-mode: plus-lighter;
}

@media (max-width:550px) {
	.page_mv {
		height: 500px;
		margin-bottom: 60px;
	}
	h1.page_title{
		font-size: 3.5rem;
	}
}

/* ------------PAGE 共通 end------------ */
/* -----------------animation 共通 --------------------- */
.img-wrap div {
	max-width: 100%;
	animation-name: anime_left_to_right;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-direction: normal;
}

@keyframes anime_left_to_right {
	0% {
		clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}

	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}
.img-anime div {
	max-width: 100%;
	animation-name: anime_top_to_right2;
	animation-fill-mode: forwards;
	animation-duration: 5s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-delay: 0s;
	animation-direction: normal;
}
@keyframes anime_top_to_right2 {
	0% {
			clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
		}

	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}
.text-wrap {
	max-width: 100%;
	animation-name: anime_left_to_right;
	animation-fill-mode: both;
	animation-duration: 1s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-delay: 0.5s;
	animation-direction: normal;
}

@keyframes anime_left_to_right {
	0% {
		clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
	}

	100% {
		clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	}
}

/*一文字ずつ上にあがってくるテキスト*/
@keyframes showTextFromBottom {
	0% {
		transform: translateY(100%);
	}

	100% {
		transform: translateY(0px);
	}
}
.anime-up.displayed span {
	animation: showText 1s backwards;
	display: inline-block;
}
.anime-up.displayed>span {
	overflow: hidden;
}
.anime-up.displayed>span>span {
	animation: showTextFromBottom 0.3s backwards;
}

/* 大から小へフェードインする */
.fadein.js-scrollAnimation {
	opacity: 0;
	transform: scale(1.2);
	transition: opacity 5s ease, transform 1s ease;
}
.fadein.is-animated {
	opacity: 1;
	transform: scale(1);
}
/* フェードアップさせる */
.up.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s, transform 1s;
	transform: translate3d(0, 100px, 0);
}
.up_2.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s 0.5s, transform 1.3s 0.5s;
	transform: translate3d(0, 100px, 0);
}
.up_3.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s 0.8s, transform 1.6s 0.8s;
	transform: translate3d(0, 100px, 0);
}
.up_4.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s 1.1s, transform 1.9s 1.1s;
	transform: translate3d(0, 100px, 0);
}
.up_5.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s 1.4s, transform 2.2s 1.4s;
	transform: translate3d(0, 100px, 0);
}
.up_6.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s 1.7s, transform 2.5s 1.7s;
	transform: translate3d(0, 100px, 0);
}
.up.js-scrollAnimation.is-animated,
.up_2.js-scrollAnimation.is-animated,
.up_3.js-scrollAnimation.is-animated,
.up_4.js-scrollAnimation.is-animated,
.up_5.js-scrollAnimation.is-animated,
.up_6.js-scrollAnimation.is-animated {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.right.js-scrollAnimation {
	opacity: 0;
	transition: opacity 1s, transform 0.8s;
	transform: translate3d(200px, 0, 0);
}
.right.js-scrollAnimation.is-animated {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.right_2.js-scrollAnimation {
	opacity: 0;
	transition: opacity 1s 0.5s, transform 1s 0.5s;
	transform: translate3d(200px, 0, 0);
}
.right_2.js-scrollAnimation.is-animated {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.left.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s, transform 1.5s;
	transform: translate3d(-200px, 0, 0);
}
.left.js-scrollAnimation.is-animated {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}
.left_2.js-scrollAnimation {
	opacity: 0;
	transition: opacity 0.5s 0.5s, transform 1.5s 0.5s;
	transform: translate3d(-200px, 0, 0);
}
.left_2.js-scrollAnimation.is-animated {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}




