@charset "utf-8";
/* CSS Document */

.main-image-reractive {
	width: 100%;
	position: relative;
	margin: 17.35vw 0 8vw;
}
.main-image-ttl {
	position: absolute;
	top: -10.5vw;
	left: 13.75vw;
	z-index: 1;
}
.main-image-ttl h1 {
	font-size: 12vw;
	color: #27b3ba;
	font-family: century-gothic, sans-serif;
	font-weight: 700;
	font-style: normal;
	display: inline-block;
	position: relative;
}
.main-image-ttl h1 span {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	font-family: "Zen Kaku Gothic New", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1.4vw;
	color: #ffffff;
}
.main-image-flex {
	display: flex;
}
.mainimage-img {
	width: 75%;
	overflow-x: hidden;
}
.mainimage-img img {
	width: 106%;
	height: auto;
	vertical-align: bottom;
	transform: translateX(-6%);
}
.mainimage-menu {}
.mainimage-menu ul {
	display: flex;
	flex-direction: column;
}
.mainimage-menu ul li {
	font-family: century-gothic, sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 1vw;
	margin-bottom: 1.8em;
	padding-left: 3em;
}
.mainimage-menu ul li a {
	color: #27b3ba;
}
.mainimage-menu ul li.active a {
	color: #000000;
	display: block;
	position: relative;
}
.mainimage-menu ul li.active a::before {
	width: 0.7vw;
	height: 0.7vw;
	content: "";
	background-color: #000000;
	border-radius: 1vw;
	position: absolute;
	left: -1.8vw;
	top: 50%;
	transform: translateY(-50%);
}

#fix-flash {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}

#fix-flash img {
	width: 33.8vw;
}


#works-items {
	position:relative;
	width: 100%;
	height: 355vw;
}

#img01-box {
	position:absolute;
	top:0vw;
	left:46vw;
}

#img01 {
	position:relative;
}

#img01 img {
	width: 43.75vw;
}

#img01 p{
	position: absolute;
	top: 1vw;
    left: 36vw;
}


#img02-box {
	position:absolute;
	top: 29vw;
    left: 10vw;
}

#img02 {
	position:relative;
}

#img02 img {
	width: 33.5vw;
}

#img02 p{
	position: absolute;
	top: 36vw;
    left: 2vw;
}


#img03-box {
	position:absolute;
	top: 77vw;
    left: 32vw;
}

#img03 {
	position:relative;
}

#img03 img {
	width: 43.75vw;
}

#img03 p{
	position: absolute;
	top: 35vw;
    left: 35vw;
}

#img07-box {
	position:absolute;
	top: 124vw;
    left: 18vw;
}

#img07 {
	position:relative;
}

#img07 p{
	position: absolute;
	top: 2vw;
    left: 33vw;
}

#img07 img {
	width: 49.65vw;
}

#img08-box {
	position:absolute;
	top: 192vw;
    left: 32vw;
}

#img08 {
	position:relative;
}

#img08 p{
	position: absolute;
	top: 5vw;
    left: 39vw;
}

#img08 img {
	width: 55.05vw;
}



#img04-box {
	position:absolute;
	top: 255vw;
    left: 28vw;
}

#img04 {
	position:relative;
}

#img04 img {
	width: 46.1vw;
}

#img04 p{
	position: absolute;
	top: 1.5vw;
    left: 35vw;
}


#img05-box {
	position:absolute;
	top: 319vw;
    left: 51vw;
}

#img05 {
	position:relative;
}

#img05 img {
	width: 32.95vw;
}

#img05 p{
	position: absolute;
	top: 36vw;
    left: 23vw;
}

.zoom {
	overflow: hidden;
	border-radius: 1vw;
}

.zoom img{
	transition:1s all;
}

.zoom img:hover{
	transform:scale(1.2,1.2);
	transition:1s all;
}


#view-button {
	position: absolute;
	top: 252vw;
    left: 35vw;
	width: 30%;
}

#flow-button {
	width:100%;
	height: 6.5vw;
	background-color: #e0ede7;
	border-radius: 0.8vw;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 4.5vw;
	box-shadow: 0.2vw 0.7vw 1.3vw 0.2vw rgba(0, 0, 0, 0.22);
	overflow: hidden;
	position: relative;
	transition-duration: .4s;
	z-index: 2;
}

#flow-button::after {
	background: #27b3ba;
	border-radius: 50%;
	content: "";
	display: block;
	margin: auto;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	width: 100%;
	padding-top: 100%;
	height: 0;
	z-index: -1;
	transform: translateY(-50%) scale(0.1);
	transition: opacity .5s, transform 0s;
	transition-delay: 0s, .4s;
}

#flow-button p {
	font-size: 1.5vw;
	font-family: century-gothic, sans-serif;
	font-weight: 700;
	font-style: normal;
	color: #27b3ba;
	padding-bottom: 0.5vw;
	border-bottom: 1px solid #27b3ba;
}

#flow-button:hover p {
	color: #fff;
	border-bottom: 1px solid #fff;
}

#flow-button:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity .8s, transform .6s ease-in-out;
}

#flow-innner-button {
	margin-left: 1vw;
}

.btn1 {
        position: relative;
        overflow: hidden;
        background: #FFFFFF;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        width: 3.5vw;
        height: 3.5vw;
}
	
.btn2 {
	display:none;
}

.br_sp {
	display:none;
}

.fade-in-up {
		opacity: 0;
		transform: translateY(100px);
}