@charset "UTF-8";

html {
	font-size:62.5%;
}
html[lang="ja"] {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
body {
	font-size:1.4rem;
	background-color:#FFF;
}
*, *::before, *::after {
	box-sizing:border-box;
}
.clearfix::after {
	content:'';
	display:block;
	clear:both;
}


header {
	z-index: 10;
	position: fixed;
	top: -100px;
	width:100%;
	height:100px;
	background-color:#ff6b01;
	transition: .5s;
	.h1_box {
		background-color:#003c6e;
		height:32px;
		h1 {
			max-width:1280px;
			margin:0 auto;
			color:#fff;
			text-align:right;
			font-size:14px;
			line-height: 32px;
		}
	}
	.inner {
		max-width:1280px;
		margin:0 auto;
		padding:5px 50px;
		display:flex;
		justify-content: space-between;
		align-items: center;
		img {
			width:100px;
		}
		ul {
			display:flex;
			gap: 40px;
			li {
				font-size:16px;
				font-weight:500;
			}
		}
	}
}
header.is-show {
	top: 0;
}


#Hero{
	margin: 0 calc(50% - 50vw);
	max-width: 100vw;
	position: relative;
	overflow: hidden;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoom 10s linear 0s 1 normal both;  
}
.slide-text{
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 46px;
	font-family: serif;
	font-weight: bold;
	text-shadow: 2px 2px 8px #000;
	color: #fff;
	transform: translate(-50%,-50%);
}
.slide-img img{
	object-fit: cover;
	height: 100vh;
  width: 100vw;
}