@charset "UTF-8";

/* Top
------------------------------------------ */

#mv {
	height: calc( 100vh - 80px );
	height:calc( ( var(--vh, 1vh) * 100 ) - 80px );
}
#mv .slider figure {
	height: calc( 100vh - 80px );
	height:calc( ( var(--vh, 1vh) * 100 ) - 80px );
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
@keyframes zoomUp {
	0% {
	  transform: scale(1);
	}
	100% {
	  transform: scale(1.1); /* 拡大率 */
	}
}
.add-animation {
	animation: zoomUp 10s linear 0s normal both;
}
#ani-bnr {
	position: fixed;
	right: 2.4%;
	bottom: 20px;
	z-index: 9;
	width: 9.4%;
	transition: all .5s ease;
}
#ani-bnr.fixed {
	width: 100px;
	/* bottom: 75px; */
	right: 1.2%;
}
#ani-bnr #txt {
	animation: spin 50s linear infinite;
	transform-origin:center;
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
/* mv responsive */
@media screen and (max-width: 1200px) {
	#mv {
		height: calc( 100vh - 60px );
		height:calc( ( var(--vh, 1vh) * 100 ) - 60px );
	}
	#mv .slider figure {
		height: calc( 100vh - 60px );
		height:calc( ( var(--vh, 1vh) * 100 ) - 60px );
	}
}
@media screen and (max-width: 800px) {
	#mv {
		height: calc( 70vh - 60px );
		height:calc( ( var(--vh, 1vh) * 70 ) - 60px );
	}
	#mv .slider figure {
		height: calc( 70vh - 60px );
		height:calc( ( var(--vh, 1vh) * 70 ) - 60px );
	}
	#ani-bnr {
		bottom: 38vh;
		right: 1.5%;
		width: 80px
	}
	#ani-bnr.fixed {
		width: 60px;
		bottom: 0;
	}
}

#top-news {
	position: relative;
	z-index: 8;
	width: 84.4%;
	margin: -100px 0 0;
	padding: 0 0 80px;
	background-color: #FFF;
}
#top-news .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	width: 88.2%;
	margin: 0 auto;
}
#top-news h2 {
	position: relative;
	width: 23%;
	font-size: 2.625rem;
	letter-spacing: .075em;
	margin: 0;
	/* padding: 1.8em 0 1.8em 2.8%; */
	padding: 1.2em 0 1.8em 2.8%;
}
#top-news h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 4px;
	/* height: calc( 3.6em + 1em + 1rem ); */
	height: calc( 2.4em + 1em + 1rem );
	background-color: #0b308e;
}
#top-news h2 span {
	display: block;
	font-family: Roboto, NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: .07em;
	color: #848484;
}
#top-news ul {
	width: 77%;
	padding-top: 96px;
	/* padding-top: 76px; */
	margin-bottom: 40px;
}
#top-news ul li {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	padding: 2em 0;
	border-bottom: 1px solid #d4d4d4;
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	letter-spacing: .03em;
}
#top-news ul li:first-child {
	border-top: 1px solid #d4d4d4;
}
#top-news ul li time {
	color: #666666;
	margin-right: 2.2em;
}
#top-news a {
	color: #202020;
}
#top-news ul a:hover {
	color: #00aa83;
}

/* top-news responsive */
@media screen and (max-width: 1400px) {
	#top-news h2 {
		width: 25%;
	}
	#top-news ul {
		width: 73%;
	}
	
}
@media screen and (max-width: 1200px) {
	#top-news .inner {
		flex-wrap: wrap;
	}
	#top-news h2 {
		width: 100%;
		padding: 1em 0 .5em 2.8%;
	}
	#top-news h2 span {
		display: inline-block;
		margin-left: 1em;
	}
	#top-news h2::before {
		height: calc( 2.625rem + 2.625rem + 1em );
	}
	#top-news ul {
		width: 100%;
		padding-top: 2.625rem;
	}
	#top-news ul li {
		padding: 1.5em 0;
	}
}
@media screen and (max-width: 800px) {
	#top-news {
		width: 90%;
		margin: -50px auto 0;
		padding-bottom: 60px;
	}
	#top-news h2 {
		font-size: 1.875rem;
	}
	#top-news h2::before {
		height: calc( 1.875rem + 1.875rem + 1em );
	}
	#top-news h2 span {
		font-size: .875rem;
	}
}
@media screen and (max-width: 700px) {
	#top-news ul li {
		flex-wrap: wrap;
	}
	#top-news ul li time {
		display: block;
	}
	#top-news ul li a {
		display: block;
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
	#top-news {
		width: 94%;
	}
	#top-news h2 {
		padding-left: 20px;
		letter-spacing: .05em;
	}
}
#top .view {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	margin-right: 5.9%;
}
#top .view a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: end;
	justify-content: flex-end;
	align-items: center;
	font-family: Roboto, NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
}
#top .view a::after {
	content: '';
	display: block;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 2px solid #00aa83;
	background: url(../img/arrow01-green.svg) no-repeat center center;
	background-size: 30px;
	margin-left: .5em;
	transition: all .5s ease;
}
#top .view a:hover {
	color: #00aa83;
}
#top .view a:hover::after {
	background: #00aa83 url(../img/arrow01-w.svg) no-repeat center center;
	background-size: 30px;
}

#top-about {
	position: relative;
	padding: 30vh 0;
	/* background: url(../img/bg-message.png) no-repeat center top;
	background-attachment: fixed;
	background-size: cover; */
	-webkit-clip-path: inset(0);
	clip-path: inset(0);
}
#top-about .bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url(../img/bg-message.png) no-repeat center center;
	background-size: cover;
	z-index: -1;
}

#top-about .inner {
	width: 44%;
	padding: 3vw 3vw;
	margin: 0 auto;
	font-family: Roboto, NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 2.5;
	letter-spacing: .05em;
	background-color: rgba(255,255,255,.3);
}
#top-about .inner h2 {
	font-size: 1.875rem;
	line-height: 2;
}
#top-about .btn {
	margin-top: 80px;
}
#top-about .btn a::after {
	content: '';
	position: absolute;
	right: 30px;
	top: 50%;
	transform: translateY(-50%);
	display: block;
	width: 36px;
	height: 17px;
	background: url(../img/arrow01-green.svg) no-repeat center center;
	background-size: contain;
	transition: all .5s ease;
}
#top-about .btn a:hover::after {
	background: url(../img/arrow01-w.svg) no-repeat center center;
	background-size: contain;
}
/* top-about responsive */
@media screen and (max-width: 1400px) {
	#top-about .inner {
		width: 60%;
	}
}
@media screen and (max-width: 800px) {
	#top-about {
		padding: 15vh 0;
	}
	#top-about .inner {
		width: 80%;
	}
}
@media screen and (max-width: 800px) {
	#top-about .inner {
		font-size: 1.125rem;
	}
}
#top-works {
	padding-left: 5%;
	padding-bottom: 150px;
	overflow-x: hidden;
}
#top-works .ttl-blk {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: start;
	justify-content: flex-start;
	align-items: center;
	padding: 150px 0 40px 50px;
	margin-bottom: 50px;
}
#top-works .ttl-blk::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 4px;
	height: 100%;
	background-color: #0b308e;
}
#top-works h2 {
	position: relative;
	font-size: 2.625rem;
	letter-spacing: .075em;
	margin: 0;
}
#top-works h2 span {
	display: block;
	font-family: Roboto, NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: .07em;
	color: #848484;
}
#top-works .view {
	margin-left: 40px;
}
#top-works .view a {
	color: #202020;
}
#top-works .swiper-container {
	width: 100vw;
}
#top-works .swiper-scrollbar {
	width: 74.375%;
	margin: 100px 0 0 7.8%;
	background-color: #d4d4d4;
	height: 8px !important;
	border-radius: 4px;
	cursor: pointer;
}
#top-works .swiper-scrollbar-drag {
	background-color: #0b308e;
	height: 8px !important;
	border-radius: 4px;
}
#top-works .swiper-slide figure {
	position: relative;
	padding-top: 66.666%;
	margin-bottom: .5em;
	overflow: hidden;
	background-color: #f4f4f4;
}
#top-works .swiper-slide figure img {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: all .5s ease;
}
#top-works .swiper-slide a:hover figure img {
	transform-origin: center;
	transform: scale(1.1) translateX(-45%);
}
#top-works a {
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 1.25rem;
	color: #202020;
}
#top-works a:hover {
	color: #00aa83;
}
#top-works a .cat {
	display: block;
	font-size: 1rem;
	color: #666666;
}
#top-works a em {
	font-style: normal;
}
#top-works .zeb {
	width: 320px;
	height: 110px;
	margin: 100px auto 0;
}
#top-works .zeb a {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	font-size: 1.375rem;
	letter-spacing: .025rem;
	background-color: #FFF;
}
#top-works .zeb a::after {
	content: '';
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 16px;
	display: block;
	background: url(../img/arrow03-gr.svg) no-repeat center center;
	background-size: contain;
	transition: all .5s ease;
}
#top-works .zeb a:hover {
	color: #00aa83;
}
#top-works .zeb a:hover::after {
	background: url(../img/arrow03-green.svg) no-repeat center center;
	background-size: contain;
}
#top-works .zeb figure {
	width: 60px;
	margin-right: .5em;
}
/* top-works responsive */
@media screen and (max-width: 1200px) {
	#top-works .ttl-blk {
		padding-top: 100px;
	}
}
@media screen and (max-width: 800px) {
	#top-works {
		padding-bottom: 100px;
	}
	#top-works .ttl-blk {
		padding-top: 60px;
	}
	#top-works h2 {
		font-size: 1.875rem;
	}
	#top-works h2 span {
		font-size: .875rem;
	}
	#top-works a {
		font-size: 1.125rem;
	}
	#top-works .zeb {
		margin-top: 60px;
	}
}
@media screen and (max-width: 480px) {
	#top-works {
		padding: 0 3% 60px;
	}
	#top-works .ttl-blk {
		-webkit-box-pack: justify;
    	justify-content: space-between;
		padding-left: 20px;
		padding-bottom: 20px;
	}
	#top-works h2 {
		letter-spacing: .05em;
	}
	#top-works .swiper-container {
		width: 100%;
	}
	#top-works .swiper-scrollbar {
		width: 100%;
		margin: 50px 0 0;
	}
	#top .view {
		margin-right: 0;
	}
}
#top-contents {
	background-color: #FFF;
	padding: 150px 10.9%;
}
#top-contents .inner {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
#top-contents .inner li {
	width: 46.6%;
}
#top-contents .inner li:nth-child(2n) {
	margin-top: 150px;
}
#top-contents a figure {
	overflow: hidden;
}
#top-contents a figure img {
	transition: all .5s ease;
}
#top-contents a:hover figure img {
	transform: scale(110%);
}
#top-contents a .ttl-blk {
	position: relative;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	align-items: center;
	width: 95%;
	margin-left: 5%;
	font-family: NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 2.625rem;
	letter-spacing: .075rem;
	color: #202020;
	padding: .5em 0 .5em .75em;
	transition: all .5s ease;
}
#top-contents a .ttl-blk::before {
	content: '';
	position: absolute;
	top: -60px;
	left: 0;
	display: block;
	width: 4px;
	height: calc( 100% + 60px );
	background-color: #0b308e;
}
#top-contents a .ttl-blk::after {
	content: '';
	display: block;
	width: 83px;
	height: 83px;
	border: 2px solid #00aa83;
	border-radius: 50%;
	background: url(../img/arrow01-green.svg) no-repeat center center;
	background-size: 46px;
	transition: all .5s ease;
}
#top-contents a:hover .ttl-blk::after {
	background: #00aa83 url(../img/arrow01-w.svg) no-repeat center center;
	background-size: 46px;
}
#top-contents a .ttl span {
	display: block;
	font-family: Roboto, NotoSansJP, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-weight: 500;
	font-size: 1rem;
	color: #848484;
}
/* top-contents responsive */
@media screen and (max-width: 1400px) {
	#top-contents {
		padding: 150px 5%;
	}
}
@media screen and (max-width: 800px) {
	#top-contents {
		padding: 100px 5%;
	}
	#top-contents a .ttl-blk {
		font-size: 1.875rem;
	}
	#top-contents a .ttl-blk::after {
		width: 60px;
		height: 60px;
		background-size: 30px
	}
	#top-contents a .ttl span {
		font-size: .875rem;
	}
}
@media screen and (max-width: 700px) {
	#top-contents .inner {
		flex-wrap: wrap;
	}
	#top-contents .inner li {
		width: 100%;
		margin-bottom: 60px;
	}
	#top-contents .inner li:nth-child(2n) {
		margin-top: 0;
	}
	#top-contents .inner li:last-child {
		margin-bottom: 0;
	}
}