@charset "UTF-8";
/* index.css */

/* break point
tab 560px以上 @media screen and (min-width: 560px) {…}
pc  960px以上 @media screen and (min-width: 960px) {…}*/

/*
effect
------------------------------------------ */
/* opening */
#shutter {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #f9c9c8;
	z-index: 9999;
	animation: byeShutter 1300ms cubic-bezier(0.77, 0, 0.11, 1) 0ms both;
}
@keyframes byeShutter {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100vh);
  }
}
.fadein-opening {
	animation: fadein-top 800ms cubic-bezier(0.77, 0, 0.11, 1) 700ms both;
}
@keyframes fadein-top {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.opening ul > li {
	overflow: hidden;
}
.opening ul > li img {
	transform: scale(1);
	transition: 0.5s ease-out;
}
.opening ul > li:hover img {
	transform: scale(1.05);
}

/* title */
.fadein {
	opacity : 0;
	transform : translate(0, 10px);
	transition-property: all;
	transition-duration: 0.5s;
	transition-timing-function: ease-out;
}
.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

/*
opening
------------------------------------------ */
.opening > section {
    margin: 165px 30px 30px 30px;
}
.copy h1 {
    margin-bottom: 60px;
}
.copy p {
    margin-bottom: 85px;
}
.opening ul > li {
    padding: 0 25px 60px 25px;
    width: 88.2352%;
    height: 65.0725%;
}
.opening ul > li a img.border {
	  border: 1px solid #f5f5f5;
}
.opening .btn-area {
    margin-bottom: 65px;
    text-align: center;
}
.opening .btn-area p:first-child .btn-arr {
    letter-spacing: 0.28em;
}
.btn-arr {
    position: relative;
    display: inline-block;
    padding: 0.5em 0.5em 0.55em;
    text-align: center;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 0.1em;
    white-space: nowrap;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.btn-arr::after {
    position: absolute;
    content: '';
    top: 50%;
    right: -1.2em;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background-image: url(../img/common/icon_arr.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    transition: right .2s;
}
.btn-arr:hover::after {
    right: -1.9em;
}
.opening .note {
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media screen and (min-width: 560px) {
.opening > section {
    width: 76.3020%;
    margin: 150px auto 65px auto;
}	
.opening .copy {
	display: flex;
	justify-content: space-between;
}
.opening .copy h1 {
    margin-right: 5%;
}
.opening ul {
	display: flex;
	flex-wrap: wrap;	
	justify-content: space-between;
	align-items: stretch;
}
.opening ul > li {
	width: 47.3214%;
  height: 46.1819%;
	padding: 0 0 65px 0;
}
}

@media screen and (min-width: 960px) {
.opening > section {
    margin: 250px auto 65px auto;
}
.opening ul > li {
	width: 29.1208%;
  height: 21.427%;
}
}

@media screen and (min-width: 1400px) {
.opening > section {
    width: 960px;
}
.opening .note {
    text-align: center;
}
.opening ul > li {
	width: 265px;
  height: 195px;
}
}

/*
about,service,contact
------------------------------------------ */
.cont > section {
    margin: 0 55px;
}
.cont h1 {
    text-align: center;
}
.cont h1 img {
    margin-bottom: 45px;
    padding-top: 60px;
}
.cont .img-area {
    text-align: center;
}
.cont .img-area img {
    margin-bottom: 45px;
}
.cont .text-area p {
    margin-bottom: 45px;
	letter-spacing: 0.1em;
	line-height: 2;
}
.cont .btn-area {
    text-align: center;
}
.cont .btn-area p {
    padding-bottom: 60px;
}
.about {
    background-color: #e9f6fe;
}
.contact {
    background-color: #fae9e9;
    text-align: center;
}
.contact p {
    margin-bottom: 20px;
}
.contact .note {
    padding-bottom: 60px;
    font-size: 1.1rem;
    line-height: 1.6;
}
.contact a {
    font-size: 1.6rem;
    font-weight: 600;
}
@media screen and (min-width: 560px) {
.cont > section {
	width: 76.4322%;
    margin: 0 auto;
}
.cont .column {
	display: flex;
  	align-items: center;
}
.cont .img-area {
    margin-right: 30px;
}
.cont .img-area img {
    max-width: initial; 
}
}
@media screen and (min-width: 960px) {
.cont .text-area p {
	font-size: 1.6rem;
}
}
@media screen and (min-width: 1400px) {
.cont > section {
	width: 960px;
}
}
