@charset "utf-8";

body {
    padding-top: 0;
}

#loading  {
	display: flex;
    align-items: center;
    justify-content: center;
	background-color: #fff;
	width: 100%;
	height: 100%;
	position: fixed;
	left:0;
	top:0;
	z-index: 9999999999999;
}
.loading-logo{
  margin:0 auto 20px;
  text-align:center;
}
.spinner {
    margin: 0 auto;
    width: 100px;
    text-align: center;
    justify-content: space-between;
    display: flex;
}
.spinner > div {
  width: 30px;
  height: 2px;
  background-color: var(--blue-color);
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
@keyframes swipeRight2 {
	0% {
		transform: translate(0);
		width: 0;
	}
	50%, 60% {
		transform: translate3d(0,0,0);
		width: 100%;
	}
	100% {
		transform: translate3d(0,0,0);
		width: 100%;
	}
}

/* header */
.scrolled-off #global-header {
    padding-top: 25px;
    background: none;
}
.scrolled-off #global-header .header-in {
    height: 80px;
}
.scrolled-off #global-header .site-title {
    width: 210px;
}
.scrolled-off #global-header .site-title a {
    padding-top: 75px;
    background-image: url("../img/cmn/site_logo.svg");
}
.scrolled-off #global-header .main-nav__list >li a {
    color: #fff;
}
.scrolled-off #global-header .main-nav__list2 >li a {
    color: #fff;
}
.scrolled-off #global-header .main-nav__list2 >li a:hover {
    color: var(--blue-color);
    background: #fff;
}
.scrolled-off #menu-btn {
    top: 45px;
}
.scrolled-off #menu-btn span {
    background: #fff;
}
.scrolled-off #menu-btn.active span {
    background: var(--blue-color);
}

/* fv */
@keyframes zoom-in {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}


/* -----------------
main-fv
-----------------------*/
#main-fv {
    height: 100vh;
    min-height: 600px;
    position: relative;
    z-index: 1;
}
.main-fv__in {
    display: flex;
    max-width: 1100px;
    height: 100%;
    margin: auto;
    align-items: center;
    position: relative;
    z-index: 10;
}
.main-fv__text p {
    display: inline-block;
    padding: 12px 20px 14px;
    margin: 8px 0;
    line-height: 1;
    position: relative;
    z-index: 11;
    overflow: hidden;
}
.main-fv__text p span {
    font-size: 34px;
    font-family: 'Noto Serif JP', serif;
    color: var(--blue-color);
    line-height: 1;
	opacity:0;
	visibility:hidden;
    position: relative;
    z-index: 10;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
	transition-delay: .4s
}
.main-fv__text p:after {
    content: '';
    display: block;
    width: 0;
    height: 100%;
    background: #fff;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}
.main-fv__text.on p:after {
    animation: swipeRight2 1.1s cubic-bezier(0.6,0,0.4,1);
    animation-fill-mode: forwards;
}
.main-fv__text.on p span {
	opacity:1;
	visibility: visible;
}

.main-fv__slide {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.main-fv__slide .swiper-container {
    height: 100%;
}
.main-fv__slide .swiper-slide .slide-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.main-fv__slide .swiper-slide-active .slide-img,
.main-fv__slide .swiper-slide-duplicate-active .slide-img,
.main-fv__slide .swiper-slide-prev .slide-img{
    animation: zoom-in 10s linear 0s 1 normal both;  
}

.main-fv__slide-cover {
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    left:0;
    top:0;
    z-index: 1;
}

@media (max-width: 815px) {

    .main-fv__text {
        padding: 0 20px;   
    }
    .main-fv__text p {
        padding: 6px 10px 9px;
        margin: 3px 0;
    }
    .main-fv__text p span {
        font-size: 20px;
    }
    
}


/* ----------------
bg
--------------------------*/
#container {
    background-image: url("../img/home/aboutus_bg_nobird.png");
    background-position: center top;
    background-size: 100%;
    background-repeat: no-repeat;
}

@media (max-width: 815px) {
    #container {
        background-image: url("../img/home/aboutus_bg.png");
    }
}

/* ----------------
about
--------------------------*/
#about {
    
}
.about-in {
    width: 44%;
}
.about-in .cmn-title {
    margin-bottom: 40px;
}
.about-in .text01 {
    font-size: 26px;
    font-family: 'Noto Serif JP', serif;
    line-height: 2;
}
.about-in .text02 {
    line-height: 2.8;
    margin-top: 40px;
}

.birds .bird {
    opacity: 0;
    position: absolute;
    z-index: -1;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.birds .bird.on {
    opacity: 1;
}
.birds .bird.bird01 {
    right: -40px;
    top: -80px;
}
.birds .bird.bird02 {
    right: 260px;
    top: 40px;
}
.birds .bird.bird03 {
    right: 320px;
    bottom: -80px;
}
.birds .bird.bird04 {
    left: 285px;
    top: -55px;
}


@media (max-width: 815px) {

    .about-in {
        width: 100%;
    }
    .about-in .text01 {
        font-size: 20px;
    }
    .about-in .text02 {
        margin-top: 20px;
    }
    
    .birds .bird {
        display: none;
    }
}



/* ----------------
contents
--------------------------*/
.contents__list {
    display: flex;
    flex-wrap: wrap;
    max-width: 1300px;
    padding: 0 20px;
    margin: auto;
}
.contents__list > li {
    width: 32%;
    margin: 0 0 60px 2%;
}
.contents__list > li:nth-child(3n+1) {
    margin-left: 0;
}
.contents__list > li a {
    display: block;
    color: var(--base-color);
}
.contents__list > li .info {
    display: flex;
    align-items: end;
    margin-top: 20px;
}
.contents__list > li .info h3 {
    display: inline-block;
    font-size: 30px;
	font-family: var(--font-athelas);
    font-weight: normal;
    line-height: 1;
}
.contents__list > li .info p {
    font-family: 'Noto Serif JP', serif;
    line-height: 1;
    margin: 0 0 5px 10px;
}



@media (max-width: 815px) {

    .contents__list > li {
        width: 48%;
        margin: 0 0 40px 4%;
    }
    .contents__list > li:nth-child(3n+1) {
        margin: 0 0 40px 4%;
    }
    .contents__list > li:nth-child(2n+1) {
        margin-left: 0;
    }
    .contents__list > li .info {
        display: block;
        margin-top: 15px;
    }
    .contents__list > li .info h3 {
        display: block;
        font-size: 24px;
    }
    .contents__list > li .info p {
        font-size: 12px;
        margin: 10px 0 0;
    }

}
