@charset "UTF-8";

/* TOPページ用 */
/*----------------------
news_flow
-----------------------*/
.news_flow {
	padding: 0px 4.39vw 10px;
	margin-top: -25px;
}

.news_flow h2 {
	font-size: 24px;
	font-weight: bold;
	color: rgba(43, 181, 196, 0.4);
	font-family: Audiowide, cursive, Avenir-Light, Futura, "Century Gothic", 游ゴシック, "Yu Gothic", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
	line-height: 1;
}

.news_flow .news_flow_wrap {
	width: 100%;
	overflow: hidden;
}

.news_flow .news_flow_wrap ul {
	font-size: 14px;
	display: inline-block;
	padding-left: 100%;
	white-space: nowrap;
	line-height: 1em;
	animation: 30s linear 0s infinite normal none running scrollAnime;
}

.news_flow .news_flow_wrap ul li {
	display: inline-block;
	margin-right: 4em;
	color: rgb(255, 255, 255);
}

.news_flow .news_flow_wrap ul li span {
	padding-right: 1em;
}

.news_flow .news_flow_wrap ul li a {
	color: rgb(255, 255, 255);
	padding: 2px 0px;
}

.news_flow .news_flow_wrap ul li a:hover {
	color: rgb(43, 192, 201);
}

@keyframes scrollAnime {
	0% {
		transform: translateX(0px);
	}

	100% {
		transform: translateX(-100%);
	}
}

/*----------------------
bnr_area
-----------------------*/
.bnr_area {
	padding: 20px 4.39vw;
	border-top: 1px dashed rgb(55, 77, 89);
	border-bottom: 1px dashed rgb(55, 77, 89);
	background-image: url("../img/pattern_01.png");
	animation: waveLoop 20s linear infinite;
}

.bnr_area h2 {
	font-size: 24px;
	font-weight: bold;
	color: rgba(43, 181, 196, 0.4);
	font-family: Audiowide, cursive, Avenir-Light, Futura, "Century Gothic", 游ゴシック, "Yu Gothic", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
	line-height: 1;
	margin-bottom: 15px;
}

.bnr_area .bnrList {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.bnr_area .bnrList li {
	width: 30%;
	margin: auto;
}

.bnr_area .bnrList li a,
.bnr_area .bnrList li img {
	display: block;
	width: 100%;
}

.bnr_area .bnrList li a:hover {
	filter: drop-shadow(rgb(0, 138, 150) 0px 0px 6px);
	transform: translate(-2px, -2px);
}

@media screen and (max-width: 599px) {
	.bnr_area .bnrList li {
		width: 100%;
		margin: 5px auto;
	}
}

/* 4以上の時横に流す */
.flow_bnr {
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
}
.bnr_area .flow_bnr .bnrList {
	flex-wrap: nowrap;
	animation: loop-slide 25s infinite linear 1s both;
	width: 135%;
	flex-shrink: 0;
}

.bnr_area .flow_bnr .bnrList li {
  width: 23%;
  margin: auto;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@media screen and (max-width: 599px) {
.bnr_area .flow_bnr .bnrList {
	width: 280%;
}
}

/*----------------------
mv_wrap
-----------------------*/
.mv_wrap {
	position: relative;
}

.mv {
	width: 100%;
	height: 100vh;
	min-height: 768px;
	overflow: hidden;
	position: relative;
	background-image: -webkit-linear-gradient(45deg, rgb(14, 14, 14) 0%, rgb(14, 14, 14) 30%, rgba(58, 117, 145, 0.996) 100%);
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 95%);
	-webkit-clip-path: polygon(0px 0px, 100% 0px, 100% 100%, 0px 95%);
}

.mv .chacth {
	position: absolute;
	bottom: -5%;
	left: -5%;
	width: 45vw;
	max-width: 620px;
	height: 45vw;
	max-height: 620px;
	display: flex;
	flex-wrap: wrap;
	place-content: center;
	align-items: center;
	border-radius: 100%;
	z-index: 0;
	background-image: -webkit-linear-gradient(0deg, rgba(43, 193, 201, 0.8) 0%, rgba(65, 120, 172, 0.8) 100%);
}

.mv .chacth span {
	display: block;
	width: 100%;
	color: rgb(255, 255, 255);
	text-align: center;
	line-height: 1.2;
	font-weight: 500;
	-webkit-text-shadow: rgb(0, 234, 255) 0px 0px 40px, rgb(0, 234, 255) 0px 0px 40px;
	text-shadow: rgb(0, 234, 255) 0px 0px 40px, rgb(0, 234, 255) 0px 0px 40px;
}

.mv .chacth span.s-tx {
	font-size: 40px;
	margin-bottom: 1em;
}

.mv .chacth span.l-tx {
	font-size: 50px;
}

@media not all {
	.mv .chacth {
		color: rgb(255, 255, 255);
		background-image: none;
	}
}

@media screen and (max-width: 1365px) {}

@media screen and (max-width: 1100px) {
	.mv .chacth span.s-tx {
		font-size: 30px;
		margin-bottom: 1em;
	}

	.mv .chacth span.l-tx {
		font-size: 40px;
	}
}

@media screen and (max-width: 900px) {
	.mv .chacth {
		bottom: 0%;
		left: 0%;
		width: 52vw;
		height: 52vw;
	}

	.mv .chacth span.s-tx {
		font-size: 28px;
		margin-bottom: 1em;
	}

	.mv .chacth span.l-tx {
		font-size: 36px;
	}
}

@media screen and (max-width: 599px) {
	.mv .chacth {
		bottom: 5%;
		width: 90vw;
		height: 90vw;
		left: -5vw;
	}

	.mv .chacth span.s-tx {
		font-size: 26px;
	}

	.mv .chacth span.l-tx {
		font-size: 32px;
	}

}

/*----------------------
product
-----------------------*/
.product {
	padding: 40px 0px 0px;
	position: relative;
}

/*----------------------
productList
-----------------------*/
.productList {
	width: 100%;
	padding: 0px 4.39vw;
	position: relative;
	margin: 40px auto 90px;
}

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

.productList li {
	width: calc(93% / 7);
	height: 15vw;
	margin-right: 1%;
	margin-top: 2%;
	border-radius: 10px;
	background-color: rgba(55, 77, 89, 0.2);
	transition: background-color 0.2s;
	border: 1px dashed rgb(55, 77, 89);
}

.productList li:hover {
	/* background-color: rgba(255, 255, 255, 1); */
	background-color: rgb(43, 192, 201);
	border: solid 1px #fff;
}

.productList li:nth-child(7n) {
	margin-right: 0%;
}

.productList a {
	display: block;
	/* color: #000; */
}

.productList a img {
	display: block;
	width: auto;
	height: 9vw;
	margin-top: -10px;
	margin-left: -10px;
	transition: all 0.2s;
}

.productList li:hover a img {
	margin-top: -15px;
	margin-left: -15px;
}

.productList a p {
	padding: 5px 8px;
	text-align: right;
	line-height: 1.4;
}

.productList .s_title {
	display: block;
	font-size: 13px;
}

.productList .l_title {
	display: block;
	font-size: 18px;
	font-weight: bold;
}

@media screen and (max-width: 1350px) {
	.productList li {
		width: calc(96% / 5);
	}

	.productList li:nth-child(7n) {
		margin-right: 1%;
	}

	.productList li:nth-child(5n) {
		margin-right: 0%;
	}
}

@media screen and (max-width: 1000px) {
	.productList li {
		width: calc(96% / 3);
		height: auto;
		margin-right: 2%;
	}

	.productList li:nth-child(7n),
	.productList li:nth-child(5n) {
		margin-right: 2%;
	}

	.productList li:nth-child(3n) {
		margin-right: 0%;
	}

	.productList a {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
}

/*
@media screen and (max-width: 720px) {
		.productList {
		margin: 40px auto 0px;
	}

	.productList li {
		width: calc(96% / 2);
		height: auto;
		margin-right: 4%;
		margin-top: 4%;
	}

	.productList li:nth-child(7n),
	.productList li:nth-child(5n),
	.productList li:nth-child(3n) {
		margin-right: 4%;
	}

	.productList li:nth-child(2n) {
		margin-right: 0%;
	}

	.productList a {
		display: block;
	}

	.productList a img {
		width: 80%;
		height: auto;
		margin-top: -5px;
		margin-left: -5px;
	}
}
*/

@media screen and (max-width: 720px) {
	.productList {
		margin: 40px auto 0px;
	}

	.productList li {
		width: 100%;
		height: auto;
		margin-right: 0%;
		margin-top: 4%;
	}

	.productList li:nth-child(7n),
	.productList li:nth-child(5n),
	.productList li:nth-child(3n) {
		margin-right: 0%;
	}

	.productList a img {
		height: 18vw;
	}

	.productList a p {
		padding: 5px 12px;
	}

	.productList p span br {
		display: none;
	}
}

/*----------------------
productNav
-----------------------*/
.productNav {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	position: sticky;
	top: 100%;
	left: 0px;
	transform: translate(0px, -120%);
	z-index: 100;
	width: 100%;
	/* margin-left: auto; */
	transition: all 0.2s ease 0s;
	padding: 0px 60px;
}

/* header.UpMove .productNav {
	transform: translateY(-50px);
} */

.productNav li {
	transition: all 0.2s ease 0s;
	border-radius: 100%;
	margin-right: 8px;
	margin-bottom: 8px;
	background-color: rgba(255, 255, 255, 0.8);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 40px;
	box-shadow: rgba(0, 0, 0, 0.4) 10px 10px 30px;
}

.productNav li:hover {
	background-color: rgb(43, 192, 201);
}

.productNav li a {
	display: block;
	width: 50px;
	height: 50px;
}

@media screen and (max-width: 599px) {
	.productNav {
		/* width: calc(100% - 60px);
		padding: 0 20px 0 10px;
		transform: translate(0px, -110%); */
		display: none;
	}

	/* _::-webkit-full-page-media,
	_:future,
	:root .productNav {
		transform: translate(0px, -120%);
	}

	.productNav li {
		margin-right: 4px;
		margin-bottom: 4px;
		background-size: 30px;
	}

	.productNav li a {
		width: 36px;
		height: 36px;
	}

	_::-webkit-full-page-media,
	_:future,
	:root .productNav li a {
		width: 40px;
		height: 40px;
	} */

}

.product h2 {
	width: 100%;
	padding: 0px 4.39vw;
	line-height: 1.2;
	position: relative;
}

.productWrap {
	/* background: linear-gradient(90deg, rgb(65, 120, 172) 0%, rgb(8, 219, 231) 50%, rgb(65, 120, 172) 100%) 0% 0% / 250% 250%;
	animation: 15s ease 0s infinite normal none running bggradient; */
}

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

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

.productWrap li {
	/* clip-path: polygon(0% 5%, 100% 0px, 100% 95%, 0px 100%);
	-webkit-clip-path: polygon(0% 5%, 100% 0px, 100% 95%, 0px 100%); */
	position: relative;
	width: 100%;
	min-height: 100vh;
	padding: 14vh 0px 20vh;
	overflow: hidden;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background-size: cover;
	transition: background-position-y 0s ease 0s;
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position-x: 50%;
	z-index: 0;
	will-change: background-position-y;
	content-visibility: visible;
}

.productWrap li::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
	background-color: rgba(0, 0, 0, 0.2);
}

.productWrap li .panel {
	width: 72.18vw;
	margin: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 60px 70px;
	border-radius: 20px;
	color: rgb(27, 27, 27);
	-moz-backdrop-filter: blur(16px);
	-ms-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	overflow: hidden;
	background-color: rgba(255, 255, 255, 0.5);
	box-shadow: rgb(0 0 0 / 40%) 10px 10px 30px;
}

.productWrap li .panel a:not([class]) {
	padding: 0 5px;
	color: #1a73e8;
	text-decoration: underline;
}

.productWrap li .panel a:not([class]):hover {
	background-color: rgba(26, 115, 232, 0.2);
}

@media not all {
	.productWrap li .panel {
		background-color: rgba(0, 0, 0, 0.9);
	}
}

.productWrap li:nth-child(2n) .panel {
	flex-direction: row-reverse;
}

.productWrap li .panel .tx {
	width: 57%;
}

.productWrap li .panel .tx h3 {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.2;
	margin: 35px 0px 30px;
}

.productWrap li .panel .tx .maker {
	max-width: 310px;
}

.productWrap li .panel .img {
	width: 30%;
}

.productWrap li .panel .img img {
	display: block;
	width: 100%;
	filter: drop-shadow(20px 20px 10px #0000004d);
}

.productWrap li a.btn {
	display: block;
	width: 43%;
	color: rgb(255, 255, 255);
	font-size: 16px;
	margin-top: -30px;
	margin-left: auto;
	position: relative;
	z-index: 1;
	background: linear-gradient(90deg, rgb(65, 120, 172) 0%, rgb(43, 192, 201) 50%, rgb(65, 120, 172) 100%) 100% 0px / 200% 100%;
	box-shadow: rgba(0, 0, 0, 0.4) 10px 10px 30px;
}

.productWrap li:nth-child(2n) a.btn {
	margin-left: 0px;
	margin-right: auto;
	text-align: right;
}

.productWrap li a.btn:hover {
	background-position: 0px 0px;
}

.productWrap li a.btn p {
	display: inline-block;
	position: relative;
	padding: 1em 7em 1em 3em;
}

.productWrap li a.btn p::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 3em;
	width: 3em;
	height: 5px;
	border-top: none;
	border-left: none;
	border-image: initial;
	border-right: 2px solid rgb(255, 255, 255);
	border-bottom: 1px solid rgb(255, 255, 255);
	transform: skew(45deg);
	transition: all 0.3s ease 0s;
}

.productWrap li a.btn:hover p::after {
	right: 1.5em;
	width: 4em;
}

.productWrap li .gallery {
	width: 62.96vw;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin: 30px auto 0px;
	z-index: 1;
}

.productWrap li .gallery img {
	display: block;
	width: 24%;
	height: auto;
	box-shadow: rgba(0, 0, 0, 0.4) 10px 10px 30px;
	border-radius: 10px;
}

.productWrap li .gallery img:nth-child(2n) {
	margin-top: 10px;
}

.js-target-parallax {
	display: block;
	position: absolute;
	top: 0px;
	left: 50%;
	width: auto;
	height: 110%;
	min-height: 100vh;
	z-index: -1;
	opacity: 0.8;
	transform: translate(-50%, -10%);
}

@media screen and (max-width: 599px) {
	.productWrap li {
		padding: 8vh 0px 16vh;
	}

	.productWrap li .panel,
	.productWrap li:nth-child(2n) .panel {
		width: calc(100% - 40px);
		flex-flow: column-reverse wrap;
		padding: 50px 20px 70px;
		backdrop-filter: blur(15px);
		box-sizing: border-box;
	}

	.productWrap li .panel .tx .maker {
		width: 70%;
    margin: 0 auto;
	}

	.productWrap li .panel .tx h3{
		text-align: center;
		margin: 40px 0px 25px;
		font-size: 18px;
		word-break: keep-all;
		overflow-wrap: break-word;

	}

	.productWrap li .panel .tx {
		width: 100%;
	}

	.productWrap li .panel .img {
		width: 100%;
	}

	.productWrap li a.btn {
		width: 90%;
	}

	.productWrap li .gallery {
		/* width: 90%;
		flex-wrap: wrap; */
		display: none;
	}

	.productWrap li .gallery img {
		width: 49%;
	}
}

/*----------------------
casestudy
-----------------------*/
.casestudy {
	/* background-image: url("../img/pattern_01.png"); */
	background: radial-gradient(#232323 10%, transparent 10%) 0 0 / 20px 20px rgba(14, 14, 14, 0);
	min-height: 100vh;
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 80px 0;
	/* overflow: hidden; */
}

/* .casestudy::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
		top: 0px;
	left: 0px;
	background-image: url("../img/cs_bg_ob.png");
		background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: center;
} */

.casestudy .txBlock {
	position: sticky;
	top: 30%;
	left: 0px;
	color: rgb(255, 255, 255);
	width: 50%;
	padding-top: 50px;
	padding-bottom: 50px;
}

.casestudy .txBlock h2 {
	margin-bottom: 40px;
}

.casestudy .txBlock a.btn {
	margin-top: 40px;
}

.casestudy .kiji {
	width: 50%;
	margin-left: auto;
}

.casestudy .kiji ul {
	width: 100%;
}

.casestudy .kiji ul li {
	width: 80%;
	margin-left: auto;
	margin-right: 0;
	margin-bottom: -10%;
	overflow: hidden;
	border-radius: 15px;
}

.casestudy .kiji ul li:nth-of-type(2n) {
	margin-left: 0;
	margin-right: auto;
}

.casestudy .kiji ul li img {
	transition: 0.2s;
}

.casestudy .kiji ul li:hover img {
	transform: scale(1.2);
}

.casestudy .keyWord {
	width: 100%;
	height: 100%;
	font-size: 17vw;
	color: #fff;
	color: rgba(43, 181, 196, 0.4);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-content: space-around;
	align-items: baseline;
	justify-content: space-around;
	font-family: Audiowide, cursive, Avenir-Light, Futura, "Century Gothic", 游ゴシック, "Yu Gothic", "Helvetica Neue", Helvetica, "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, sans-serif;
	line-height: 1;
	z-index: -1;
	overflow: hidden;
}

.casestudy .keyWord li {
	background: linear-gradient(0deg, rgb(43, 192, 201) 0%, rgb(65, 120, 172) 100%);
	background: -webkit-linear-gradient(0deg, rgb(43, 192, 201) 0%, rgb(65, 120, 172) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media screen and (max-width: 599px) {
	.casestudy {
		display: block;
	}

	.casestudy .txBlock {
		position: relative;
		top: 0;
		width: 100%;
	}

	.casestudy .kiji {
		width: 100%;

	}
}

/*----------------------
businessPartner
-----------------------*/
.businessPartner {
	min-height: 100vh;
	padding: 9vw 0px;
	background-image: -webkit-linear-gradient(235deg, rgb(222, 71, 206) 0%, rgb(143 77 179) 24%, rgb(65, 120, 172) 60%, rgb(43, 192, 201) 89%, rgba(43, 192, 201, 0.996) 100%);
	background-size: 250%;
	animation: 10s ease 0s infinite normal none running bggradient;
	display: flex;
	align-items: center;
	z-index: 0;
	margin: 0px 0px -5vw;
}

.businessPartner .panel {
	border-radius: 20px 0px 0px 20px;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 4vw 5vw;
	width: 85%;
	margin-left: auto;
}

.main .businessPartner h2 .en {
	-webkit-text-stroke: 1px rgb(14, 14, 14);
}

.main .businessPartner h2 .jp {
	color: rgb(14, 14, 14);
}

.businessPartner .panel ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 60px;
	max-width: 1000px;
}

.businessPartner .panel ul li {
	width: calc(100% / 5);
	padding: 20px;
	border-bottom:1px dotted #fff;
	border-right: 1px dotted #fff;
	text-align: center;
	pointer-events: auto;
}

.businessPartner .panel ul li:nth-of-type(5n) {
	border-right: none;
}

.businessPartner .panel ul li:nth-of-type(1),
.businessPartner .panel ul li:nth-of-type(2),
.businessPartner .panel ul li:nth-of-type(3),
.businessPartner .panel ul li:nth-of-type(4),
.businessPartner .panel ul li:nth-of-type(5) {
	border-top:1px dotted #fff;
}

.businessPartner .panel ul li p {
	font-size: 18px;
	margin-top: 5px;
}

.businessPartner .panel ul li p,
.businessPartner .panel ul li img {
	transition: all 0.3s linear 0s;
}

.businessPartner .panel ul li:hover {
	background-color: rgba(255, 255, 255, 0.6);
	transition: all 0.3s linear 0s;
}

.businessPartner .panel ul li:hover p,
.businessPartner .panel ul li:hover img {
	transform: scale(1.08);
	transition: all 0.3s linear 0s;
}

.businessPartner .panel ul li::before {
	content: "";
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-image: url("../img/kara-logo.png");
	z-index: -1;
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: all 0.3s linear 0s;
}

.businessPartner .panel ul li:hover::before {
	opacity: 0.4;
}

@media screen and (max-width: 1024px) {
	.businessPartner .panel ul li p {
		font-size: 16px;
	}
	.businessPartner .panel ul li {
		width: calc(100% /3);
		padding: 10px;
	}
	
	.businessPartner .panel ul li:nth-of-type(5n) {
		border-right: 1px dotted #fff;
	}
	
	.businessPartner .panel ul li:nth-of-type(3n) {
		border-right: none;
	}
	.businessPartner .panel ul li:nth-of-type(4),
	.businessPartner .panel ul li:nth-of-type(5) {
		border-top:none;
	}
	
	.businessPartner .panel ul li:nth-of-type(1),
	.businessPartner .panel ul li:nth-of-type(2),
	.businessPartner .panel ul li:nth-of-type(3){
		border-top:1px dotted #fff;
	}
	
}

@media screen and (max-width: 599px) {
	.businessPartner .panel {
		width: calc(100% - 20px);
	}

	.businessPartner .panel ul li {
		width: calc(100% /2);
		padding: 10px;
	}

	.businessPartner .panel ul li:nth-of-type(3n) {
		border-right: 1px dotted #fff;
	}

	.businessPartner .panel ul li:nth-of-type(2n) {
		border-right: none;
	}
	.businessPartner .panel ul li:nth-of-type(3) {
		border-top:none;
	}
}

/*----------------------
company
-----------------------*/
.company {
	display: flex;
	clip-path: polygon(0% 5%, 100% 0px, 100% 95%, 0px 100%);
	-webkit-clip-path: polygon(0% 5%, 100% 0px, 100% 95%, 0px 100%);
	z-index: 1;
	background-color: rgb(8, 8, 8);
	color: rgb(255, 255, 255);
}

.company .txBlock {
	width: 60%;
	padding: 12vw 10px 10vw 4.39vw;
	min-height: 100vh;
	position: relative;
	z-index: 0;
}

.company .txBlock::before,
.company .txBlock::after {
	content: "";
	width: 100%;
	height: 50%;
	position: absolute;
	background-repeat: no-repeat;
	background-size: contain;
	z-index: -1;
}

.company .txBlock::before {
	top: 0px;
	right: 0px;
	background-image: url("../img/bg_hexagon01.png");
	background-position: right top;
}

.company .txBlock::after {
	bottom: 0px;
	left: 0px;
	background-image: url("../img/bg_hexagon02.png");
	background-position: left bottom;
}

.company .txBlock h2 {
	margin-bottom: 80px;
}

.company .txBlock dl {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 550px;
	margin: auto;
	align-items: flex-start;
}

.company .txBlock dl dt {
	width: 40%;
	padding: 10px 30px;
	margin-bottom: 20px;
}

.company .txBlock dl dd {
	width: 60%;
	padding: 10px 30px;
	margin-bottom: 20px;
	border-left: 1px solid rgb(126, 128, 129);
}

.company .map {
	width: 40%;
	height: 100vh;
	position: sticky;
	top: 0px;
	right: 0px;
	filter: grayscale(1);
	transition: filter 0.2s ease 0s;
}

.company .map:hover {
	filter: grayscale(0);
}

.company .map iframe {
	width: 100%;
	height: 100%;
}

.company a.btn {
	margin-top: 30px;
	margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
	.company {
		display: block;
		clip-path: polygon(0% 1%, 100% 0px, 100% 99%, 0px 100%);
		-webkit-clip-path: polygon(0% 1%, 100% 0px, 100% 99%, 0px 100%);
	}

	.company .txBlock {
		width: 100%;
	}

	.company .txBlock dl dt {
		width: 7em;
		padding: 10px 20px 10px 0;
	}

	.company .txBlock dl dd {
		width: calc(100% - 7em);
		padding: 10px 0 10px 20px;
	}

	.company .map {
		width: 100%;
		height: 60vh;
	}
}

/*----------------------
news
-----------------------*/
.news {
	display: flex;
	justify-content: center;
	padding-top: 90px;
	padding-bottom: 190px;
	background-color: rgb(243, 247, 250);
	background-image: url("../img/pattern_01.png");
	margin-top: -80px;
	margin-bottom: -60px;
	animation: waveLoop 20s linear infinite;
}

.main .news h2 {
	width: 250px;
}

.main .news h2 .en {
	-webkit-text-stroke: 1px rgb(14, 14, 14);
}

.main .news h2 .jp {
	color: rgb(14, 14, 14);
}

@media not all {
	.main .news h2 .en {
		color: rgb(14, 14, 14);
	}
}

.news .listWrap {
	width: calc(100% - 250px);
	max-width: 1000px;
}

.news .listWrap ul,
.news .listWrap ul li {
	width: 100%;
}

.news .listWrap ul li a {
	display: block;
	width: 100%;
	font-size: 18px;
	padding: 1em 6em 1em 1em;
	position: relative;
	border-bottom: 1px solid rgb(122, 135, 146);
	color: #0e0e0e;
}

.news .listWrap ul li a:hover,
.news .listWrap ul li a:hover span {
	color: rgb(43, 192, 201);
}

.news .listWrap ul li a:hover {
	border-bottom: 1px solid rgb(43, 192, 201);
}

.news .listWrap ul li a::after {
	content: "";
	display: block;
	position: absolute;
	top: calc(50% - 5px);
	right: 2.5em;
	width: 2.5em;
	height: 5px;
	border-top: none;
	border-left: none;
	border-image: initial;
	border-right: 2px solid rgb(122, 135, 146);
	border-bottom: 1px solid rgb(122, 135, 146);
	transform: skew(45deg);
	transform-origin: left center;
	transition: all 0.2s ease 0s;
}

.news .listWrap ul li a:hover::after {
	right: 1.5em;
	width: 3em;
	border-right: 2px solid rgb(43, 192, 201);
	border-bottom: 1px solid rgb(43, 192, 201);
}

.news .listWrap ul li a span {
	display: inline-block;
	color: rgb(122, 135, 146);
	font-weight: bold;
	font-size: 16px;
	padding-right: 1.5em;
}

.news a.btn {
	display: block;
	width: 43%;
	margin-left: auto;
	position: absolute;
	bottom: 100px;
	right: 0px;
}

@media screen and (max-width: 599px) {
	.news {
		display: block;
		margin-top: -40px;
	}

	.main .news h2 {
		width: 100%;
	}

	.news .listWrap {
		width: 100%;
	}

	.news .listWrap ul li a {
		padding: 1em 4em 1em 1em;
	}

	.news .listWrap ul li a span {
		display: block;
	}

	.news .listWrap ul li a::after {
		right: 1.8em;
		width: 1.6em;
	}

	.news .listWrap ul li a:hover::after {
		right: 0.8em;
		width: 2em;
	}

	.news .listWrap ul li a span {
		display: inline-block;
		color: rgb(122, 135, 146);
		font-weight: bold;
		font-size: 16px;
		padding-right: 1.5em;
	}

	.news a.btn {
		width: 90%;
	}
}