@charset "utf-8";
/*------------------------------------------------------------
	home
------------------------------------------------------------*/
#main .mainVisual {
	position: relative;
	background-color: #F3F1ED;
	margin-top: 10rem;
}
#main .mainVisual .image {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	max-height: calc(100vh - 10rem);
	margin: 0 auto;
}
#main .mainVisual .image img,
#main .mainVisual .image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
#main .mainVisual .textImg {
	width: 15.6rem;
	position: absolute;
	bottom: 3.6rem;
	right: 3.6rem;
}
#main .mainVisual .img {
  position: relative;
  display: inline-block;
  overflow: hidden;
	background-color: #fff;
	border-radius: 50%;
	box-shadow: 0 0 12px #0075C2;
}
#main .mainVisual .img {
  animation: anniversary-float 4s ease-in-out infinite;
}

@keyframes anniversary-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}
.anniversary-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid transparent;

  border-top-color: rgba(255, 255, 255, 0.95);
  border-right-color: rgba(150, 220, 255, 0.8);

  box-sizing: border-box;
  pointer-events: none;

  animation: anniversary-shine 10s linear infinite;
}

@keyframes anniversary-shine {

  /* ゆっくり1周 */
  0% {
    transform: rotate(0deg);
    opacity: 0.35;
  }

  25% {
    transform: rotate(360deg);
    opacity: 0.8;
  }

  /* 速く1周 */
  35% {
    transform: rotate(720deg);
    opacity: 1;
  }

  /* ゆっくり1周 */
  60% {
    transform: rotate(1080deg);
    opacity: 0.35;
  }

  /* 速く1周 */
  70% {
    transform: rotate(1440deg);
    opacity: 1;
  }

  /* ゆっくり */
  100% {
    transform: rotate(1800deg);
    opacity: 0.35;
  }
}
@media all and (max-width: 896px) {
	#main .mainVisual {
		padding-bottom: 8rem;
		margin-top: 5.6rem;
	}
	#main .mainVisual .textImg {
		bottom: 1rem;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		width: 10rem;
	}
}


/* businessBox */
#main .businessBox {
	padding: 3.8rem 0 5.1rem;
	background-color: #fcfcfa;
}
#main .businessBox .title {
	margin-bottom: 2.6rem;
	text-align: center;
	color: #E66AA3;
	font-size: 1.4rem;
	font-weight: 800;
	letter-spacing: 0.07em;
}
#main .businessBox .imgBox ul {
	display: flex;
}
#main .businessBox .imgBox ul li {
	margin: 0 1.5rem;
}
#main .businessBox .imgBox ul .image {
	border-radius: 0.8rem;
	border: 1px solid #3D403E;
	background: #fff;
	box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.12);
	display: flex;
	width: 21.8rem;
	height: 7.2rem;
	padding: 0.5rem;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}
#main .businessBox .imgBox ul img {
	height: 3.2rem;
	width: auto;
}
@media all and (max-width: 896px) {
	#main .businessBox .imgBox ul .image {
		width: 13rem;
		height: 4.3rem;
	}
	#main .businessBox {
		padding: 3rem 0 4.3rem;
	}
	#main .businessBox .title {
		margin-bottom: 2.5rem;
		font-size: 1.3rem;
		letter-spacing: 0.07em;
	}
	#main .businessBox .imgBox ul li {
		margin: 0 0.8rem;
	}
	#main .businessBox .imgBox ul img {
		height: 2rem;
	}
}


/* aboutBox */
#main .aboutBox {
	padding: 8.8rem 0;
	display: flex;
}
#main .aboutBox .imgBox {
	display: flex;
	flex: 1;
}
#main .aboutBox .imgBox .photo {
	width: 34.9rem;
}
#main .aboutBox .imgBox .photo.inview img {
	opacity: 0;
	transform: translate(2rem,2rem);
	transition: 1s;
	transition-delay: 1s;
}
#main .aboutBox .imgBox .photo.inview.active img {
	opacity: 1;
	transform: translate(0,0);
	animation: airplaneFloat 12s linear infinite;
}

@keyframes airplaneFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    40% {
        transform: translate(-10px, -10px) rotate(-2deg);
    }

    80% {
        transform: translate(5px, 5px) rotate(2deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}
#main .aboutBox .imgBox .textBox {
	flex: 1;
	margin: -1px 0 0 6.4rem;
	letter-spacing: 0.03em;
}
#main .aboutBox .imgBox .textBox p + p {
	margin-top: 2.4rem;
}
#main .aboutBox .headLine01 {
	width: 33.2rem;
}
@media all and (max-width: 896px) {
	#main .aboutBox {
		padding: 6.3rem 0 10.4rem;
		display: block;
	}
	#main .aboutBox .imgBox {
		display: block;
	}
	#main .aboutBox .imgBox .photo {
		width: 64%;
		margin: 0 0.8rem 4.8rem auto;
		text-align: center;
	}
	#main .aboutBox .imgBox .photo img {
		width: 100%;
	}
	#main .aboutBox .imgBox .textBox {
		margin: 0 0.8rem 0;
		letter-spacing: 0.03em;
		line-height: 1.71;
	}
	#main .aboutBox .imgBox .textBox p + p {
		margin-top: 2.4rem;
	}
	#main .aboutBox .headLine01 {
		width: auto;
		margin-bottom: 4.8rem;
	}
}


/* ourBox */
#main .ourBox {
	margin-bottom: 4.4rem;
	padding: 8.1rem 8rem 13.5rem;
	border-radius: 1.6rem;
	background: rgba(255, 255, 255, 0.48);
	position: relative;
}
#main .ourBox .flexBox {
	display: flex;
	position: relative;
}
#main .ourBox .leftBox {
	width: 44.8rem;
}
#main .ourBox .textBox {
	flex: 1;
	margin-top: 5.3rem;
	letter-spacing: 0.05em;
}
#main .ourBox .image {
	width: 11.8rem;
	position: absolute;
	bottom: 100%;
	left: 15.1rem;
}
#main .ourBox .comLink {
	position: absolute;
	top: 14.3rem;
	left: 0;
	margin: 0;
}
@media all and (max-width: 896px) {
	#main .ourBox {
		padding: 3.8rem 1.9rem 3.9rem;
		border-radius: 1.6rem;
		border: 1px dashed #0075C2;
		margin: 0 1.2rem 4.8rem;
	}
	#main .ourBox .flexBox {
		display: block;
	}
	#main .ourBox .leftBox {
		width: auto;
	}
	#main .ourBox .textBox {
		margin-top: 4.8rem;
		letter-spacing: 0.05em;
		line-height: 1.71;
	}
	#main .ourBox .image {
		width: 11.1rem;
		bottom: 100%;
		left: 1.1rem;
		margin-bottom: 1px;
	}
	#main .ourBox .comLink {
		position: relative;
		top: auto;
		left: auto;
		margin: 4.8rem 0 0 0;
		text-align: center;
	}
}


/* showBox */
#main .showBox {
	text-align: center;
	margin-bottom: 8.8rem;
}
#main .showBox svg {
	width: 121.2rem;
}

@media all and (max-width: 896px) {
	#main .showBox {
		margin: 0 -10% 6.4rem;
	}
	#main .showBox svg {
		width: 120%;
	}
}


/* technologyBox */
#main .technologyBox {
	padding: 8.8rem 0;
	position: relative;
}
#main .technologyBox::before {
	width: 100%;
	height: 36.7rem;
	position: absolute;
	top: 0;
	left: 0;
	background: url("../../image/technology_bg.jpg") no-repeat center center / cover;
	content: "";
	z-index: -1;
}
#main .technologyBox .headLine01 {
	color: #fff;
	margin-bottom: 3.1rem;
}
#main .technologyBox .headLine01 .en {
	text-shadow: 1px 1px 0 #FFF;
}
#main .technologyBox .content {
	position: relative;
}
#main .technologyBox .comLink {
	margin-top: 2.8rem;
	position: absolute;
	top: 0;
	right: 0;
}
#main .technologyBox .comLink a {
	color: #fff;
}
#main .technologyBox .arrowUl {
	display: flex;
	justify-content: flex-end;
	gap: 1.2rem;
	margin-top: 1.6rem;
}
#main .technologyBox .arrowUl li {
	width: 9.2rem;
	cursor: pointer;
	transition: 0.3s;
}
#main .technologyBox .arrowUl img {
	width: 100%;
}
#main .technologyBox .listUl li {
	padding: 4.3rem 4.3rem;
	border-radius: 2.8rem;
	border: 1px solid #0075C2;
	background: #FFF;
	box-shadow: 0 0 1.6rem 0 rgba(45, 90, 61, 0.32);
	font-size: 1.3rem;
	line-height: 1.84;
	letter-spacing: 0.04em;
}
#main .technologyBox .listUl .imgBox {
	display: flex;
}
#main .technologyBox .listUl .textBox {
	flex: 1;
	margin: 2rem 6rem 0 0;
}
#main .technologyBox .listUl .photo {
	width: 56.4rem;
	order: 3;
}
#main .technologyBox .listUl .photo img {
	width: 100%;
}
#main .technologyBox .listUl .title {
	color: #0075C2;
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-bottom: 1.5rem;
}
.slick-list {
	overflow: inherit !important;
}
.slick-slide > div {
	width: 104rem;
	margin: 0 2rem;
	padding: 1.6rem 0;
}
@media all and (min-width: 897px) {
	#main .technologyBox .arrowUl li:hover {
		opacity: 0.7;
	}
}
@media all and (max-width: 896px) {
	#main .technologyBox {
		padding: 8.7rem 0.8rem 6.4rem;
	}
	#main .technologyBox::before {
		height: 29.8rem;
	}
	#main .technologyBox .headLine01 {
		margin-bottom: 3.2rem;
	}
	#main .technologyBox .comLink {
		margin-top: 3.2rem;
		position: relative;
		top: auto;
		right: auto;
		text-align: center;
	}
	#main .technologyBox .comLink a {
		color: #fff;
	}
	#main .technologyBox .arrowUl {
		margin-top: 0;
		display: block;
	}
	#main .technologyBox .arrowUl li {
		width: 3.6rem;
		position: absolute;
		top: 50%;
		left: 0.8rem;
		transform: translateY(-50%);
	}
	#main .technologyBox .arrowUl .next {
		left: auto;
		right: 0.8rem;
	}
	#main .technologyBox .listUl li {
		padding: 3.9rem 2rem;
		border-radius: 2.8rem;
		box-shadow: 0 0 1.6rem 0 rgba(45, 90, 61, 0.32);
		font-size: 1.3rem;
		line-height: 1.84;
		letter-spacing: 0.04em;
		margin: 0;
	}
	#main .technologyBox .listUl .imgBox {
		display: block;
	}
	#main .technologyBox .listUl .textBox {
		margin: 0;
		font-size: 1.2rem;
		line-height: 2;
	}
	#main .technologyBox .listUl .photo {
		width: auto;
		margin: 0 4rem 1.2rem;
	}
	#main .technologyBox .listUl .title {
		font-size: 1.8rem;
		letter-spacing: 0.1em;
		margin-bottom: 1rem;
		text-align: center;
		line-height: 1.5;
	}
	#main .technologyBox .slickBox {
		position: relative;
		margin: 0 -2.4rem;
	}
	.slick-slide > div {
		width: auto;
		margin: 0 2.4rem;
		padding: 1.6rem 0;
	}
	.slick-list {
		overflow: hidden !important;
	}
}



/* environmentBox  */
#main .environmentBox {
	display: flex;
	padding: 4.4rem 0 8.8rem;
}
#main .environmentBox .photo {
	width: 38rem;
	aspect-ratio: 1 / 1;
}
#main .environmentBox .photo svg {
	width: 100%;
	height: 100%;
}
#main .environmentBox .textBox {
	flex: 1;
	margin: 3.7rem 0 0 7.2rem;
	letter-spacing: 0.04em;
}
#main .environmentBox .textBox p + p {
	margin-top: 2.4rem;
}
#main .environmentBox .headLine01 {
	margin-bottom: 4.7rem;
}
#main .environmentBox .comLink {
	margin-top: 6rem;
}
@media all and (max-width: 896px) {
	#main .environmentBox {
		display: block;
		padding: 4.4rem 0.8rem 6.5rem;
	}
	#main .environmentBox .photo {
		width: 60%;
		margin: 0 auto;
		text-align: center;
	}
	#main .environmentBox .textBox {
		margin: 0;
		letter-spacing: 0.04em;
	}
	#main .environmentBox .textBox p + p {
		margin-top: 2.4rem;
	}
	#main .environmentBox .textBox p {
		line-height: 1.71;
	}
	#main .environmentBox .headLine01 {
		margin-bottom: 4.8rem;
	}
	#main .environmentBox .comLink {
		margin-top: 4.8rem;
		text-align: center;
	}
}



/* informationBox */
#main .informationBox {
	padding: 8.9rem 0;
	background-color: #fcfcfa;
}
#main .informationBox .content {
	position: relative;
	display: flex;
}
#main .informationBox .comLink {
	position: absolute;
	top: 11.9rem;
	left: 0;
	margin: 0;
}
#main .informationBox .rightBox {
	margin-top: 3.4rem;
	flex: 1;
}
#main .informationBox .headLine01 {
	width: 22.6rem;
}
#main .typeBox {
	margin-bottom: 3.6rem;
}
#main .typeBox .typeUl {
	display: flex;
	flex-wrap: wrap;
	font-weight: 400;
	gap: 3.1rem;
	letter-spacing: 0.04em;
}
#main .typeBox .typeUl li {
	position: relative;
}
#main .typeBox .typeUl li::after {
	position: absolute;
	top: 0.3rem;
	right: -1.6rem;
	width: 1px;
	height: 2rem;
	content: "";
	transform: rotate(45deg);
	background-color: #101211;
}
#main .typeBox .typeUl li:last-child:after {
	display: none;
}
#main .typeBox .typeUl a {
	display: inline-block;
}
#main .typeBox .typeUl .on a {
	font-weight: 700;
	color: #0075C2;
}
.tabBox {
	display: none;
}
@media all and (min-width: 897px) {
	#main .typeBox .typeUl a:hover {
		font-weight: 700;
		color: #0075C2;
	}
	#main .typeBox .typeUl {
		display: flex !important;
	}
}
@media all and (max-width: 896px) {
	#main .informationBox {
		padding: 6.1rem 0.8rem 6.4rem;
	}
	#main .informationBox .content {
		display: block;
	}
	#main .informationBox .comLink {
		position: relative;
		top: auto;
		left: auto;
		margin: 4.8rem 0 0 0;
		text-align: center;
	}
	#main .informationBox .rightBox {
		margin-top: 0;
	}
	#main .informationBox .headLine01 {
		width: auto;
		margin-bottom: 4.8rem;
		text-align: center;
	}
	#main .typeBox {
		margin-bottom: 1.5rem;
		position: relative;
		z-index: 10;
	}
	#main .typeBox .typeUl {
		width: 100%;
		position: absolute;
		top: 100%;
		left: 0;
		background-color: #fff;
		border: 1px solid #3D403E;
		border-top: none;
		border-radius: 0 0 0.8rem 0.8rem;
		display: none;
	}
	#main .typeBox .typeUl li {
		border-bottom: 1px solid #3D403E;
	}
	#main .typeBox .typeUl li:last-child {
		border-bottom: none;
	}
	#main .typeBox .typeUl a {
		padding: 1.5rem 1.5rem 1.4rem;
		font-size: 1.4rem;
		font-weight: 500;
		display: block;
	}
	#main .typeBox .typeUl li::after {
		display: none;
	}
	#main .typeBox .typeTtl {
		width: 100%;
		padding: 1.4rem 1.5rem 1.5rem;
		border: 1px solid #3D403E;
		font-weight: 500;
		background-color: transparent;
		border-radius: 0.8rem;
		position: relative;
	}
	#main .typeBox .typeTtl::after {
		width: 3.6rem;
		height: 3.6rem;
		position: absolute;
		top: 50%;
		right: 1.5rem;
		background: url("../../image/icon01.png") no-repeat left top / 100% 100%;
		content: "";
		margin-top: -1.8rem;
	}
	#main .typeBox .typeTtl.open::after {
		transform: rotate(-180deg);
	}
	#main .typeBox .typeTtl.open {
		border-radius: 0.8rem 0.8rem 0 0;
		background-color: #fff;
	}
}
