@charset "utf-8";

:root {
    --light-grey: #ccc;
    --beige: #f3efe3;
    --orange: #f56e00;
    --navy: #111d8a;
    --green: #32c100;
    --white: #fff;
    --oswald-font: 'Noto Sans JP', sans-serif;
}
html{
  overflow-y: scroll;
  scroll-behavior: smooth;
}

#splash {
	position: fixed;
	width: 100%;
	height: 100%;
	background: var(--beige);
	z-index: 9999999;
	text-align:center;
	color:#333;
}

#splash-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#splash-logo img,
#splash-logo canvas{
	width:50px;
}


.splashbg{
	position: fixed;
	top: 0;
	right:0;
	bottom:0;
	left: 0;
	border-width: 0px;
	border-style:solid;
    border-color: var(--orange);
	animation-duration:.5s;
	animation-fill-mode:forwards;
}

@keyframes backBoxAnime{
	99.9% {/*アニメーション終了ぎりぎりまで*/
        z-index: 2;/*最前面に*/
		border-width: 0px;/*開始はボーダーの太さは0*/
	}
    100%{
       z-index: -1; /*最背面に*/
        border-width: 0px;/*終了はボーダーの太さは0*/
    }
}


#container{
    position: relative;
	opacity: 0;/*はじめは透過0に*/
}

body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}


.btn06{
	position: relative;
    font-weight:bold;
	text-decoration: none;
	display: inline-block;
	background:var(--green);
	color:var(--white);
    padding:10px;
    width:230px;
	border-radius:25px;
    text-align: center;
    outline: none;
   
    transition: ease .2s;
}


.btnarrow2::after{
    content: '';

	position: absolute;
    top: 1.2em;
    right: 25px;
    /*矢印の形状*/
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
}

.btnarrow2:hover::after{
  animation: arrow .5s;
}

@keyframes arrow {
  50% {
    right: 20px;
  }
  100% {
    right: 25px;
  }
}


.btn03{
    position: relative;
    width: 226px;
	text-decoration: none;
    font-weight:bold;
	display: inline-block;
    text-align: center;
    background: transparent;
	border-radius: 25px;
	border: solid 1px var(--white);
    outline: none;

    transition: all 0.2s ease;
}


.btn03:hover{
	border-color:transparent;	
}


.btn03 span {
	position: relative;
	z-index: 2;
    /*テキストの形状*/
	display: block;
    padding: 10px 30px;
	background:var(--navy);
	border-radius: 25px;
    /*アニメーションの指定*/
    transition: all 0.3s ease;
    color: var(--white);
}
.btn03 span a{
  color: var(--white);
}

.pushright:before {
    content: "";
    position: absolute;
	z-index: -1;
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
	border-radius: 25px;
    background-color: #333;
}

.pushright:hover span {
	background-color: #333;
	color: #fff;
	transform: translate(4px, 4px);
}


#page-top {
	position: fixed;
	right: 10px;
	bottom:40px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

#page-top a {
   
	display: block;
	width: 80px;
	height: 80px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
    
	background: url("../img/balloon_base.svg") no-repeat center;
	background-size: contain;
}

#page-top.floatAnime a{
	width: 80px;
	height: 80px;
  
	background: url("../img/balloon.svg") no-repeat center;
	background-size: contain;
   
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}


#page-top span{
    position: absolute;
    bottom: -11px;
    right: 20px;
	color: #333;
    font-weight: bold;
    line-height: 1.3;
}

#page-top.floatAnime span{
    bottom: -30px;
}



.slick-prev, 
.slick-next {
    position: absolute;
	z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}




.slider2 img {
    width:100%;
    height:auto;
}

.slider2 .slick-slide {
    margin:0 10px;
}


.rotateRightZ{
	animation-name: rotateRightZAnime;
	animation-duration:3s;
	animation-fill-mode:forwards;
}

@keyframes rotateRightZAnime{
	from{
		transform: rotateZ(0);
		}
	to{
		transform: rotateZ(360deg);
		}
}


.fadeIn{
animation-name: fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}



.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}


.flipLeftTop{
animation-name: flipLeftTopAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipLeftTopAnime{
  from {
   transform: translate(-20px,80px) rotate(-15deg);
 	opacity: 0;
  }

  to {
   transform: translate(0,0) rotate(0deg);
	opacity: 1;
  }
}


.flipRightTop{
animation-name: flipRightTopAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes flipRightTopAnime{
  from {
   transform: translate(-20px,80px) rotate(25deg);
   opacity: 0;
  }

  to {
   transform: translate(0,1) rotate(0deg);
	opacity: 1;
  }
}


.zoomIn{
	animation-name: zoomInAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
}

@keyframes zoomInAnime{
  from {
	transform: scale(0.6);
	opacity: 0;
  }

  to {
    transform: scale(1);
	opacity: 1;
  }
}

.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger{
    opacity: 0;
}

