@charset "UTF-8";

.plyr__control--overlaid {
  background-color: #333;
  transition: .1s
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background-color: #666
}

.mouse-over img{
	transition: 0.5s;
}
.mouse-over:hover img{
	opacity: 0.7;
}

.float-menu{
	position: fixed;
	right: 8px;
	bottom: 8px;
	z-index: 100000;
	cursor: pointer;
	width: 18.4vw;
}
.float-menu img{
	width: 100%;
}


/* --------------------------------
   □ loader
-------------------------------- */
#loader {
    opacity: 1;
    position: fixed;
    z-index: 1000000;
    width: 100%;
    height: 100%;
    background: #fff;
    top: 0;
    left: 0;
}

#loader .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	margin: auto;

}

#loader .double-bounce1, #loader .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #164593;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

#loader .double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
#loader .spinnerText {
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    width: 40px;
    height: 40px;
	color:#164593;
    text-align: center;
    font-size: 10px;
}

/* ボタン
------------------------------ */
.c-button {
	height: 56px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 1.6rem;
	border-radius: 28px;
	border: 2px solid transparent;
	transition: .1s;
	position: relative;
	max-width: 390px;
	width: 100%
}

.c-button.\--large {
  height: 66px;
  border-radius: 33px
}
.c-button.\--mini {
  height: 40px;
  border-radius: 20px
}

.c-button::after, .c-button::before {
  position: absolute;
  content: '';
  top: 50%;
}

.c-button::before {
  background-color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-top: -12px;
  right: 13px
}




.c-button.\--large::before {
  right: 16px
}

.c-button::after {
  right: 22px;
  width: 8px;
  border-top: 2px solid;
  border-right: 2px solid;
  height: 6px;
  transform: translate(-50%, -50%) rotate(45deg)
}

.c-button:hover::after {

}

.c-button.\--orange {
	background-color: #f69800;
}

.c-button.\--orange:hover {
	animation: bubbles_pink 1s forwards ease-out;
  border-color: #cb4485;
  background-color: #cb4485
}

.c-button.\--orange::after {
  border-color: #cb4485
}

.c-button.\--orange:hover::before {

}

.c-button.\--blue {
  background-color: #004ea2
}

.c-button.\--blue:hover {
  border-color: #0ba29a;
  background-color: #0ba29a;
}

.c-button.\--blue::after {
  background-color: #fff;
  border-color: #004ea2;
}

.c-button.\--blue:hover::before {
  border-color: #0ba29a;
}

.c-button.\--blank::after {
	right: 26px;
	width: 14px;
	height: 13px;
	top: 40%;
	background: url("../image/blank.svg") 50% 50% no-repeat;
	background-size: 100% 100%;
	border: 0;
	transform: none;
}

@media screen and (max-width:768px) {
	.c-button.\--blank::after {
		right: 18px;
	}
}


.c-button.\--blank.\--orange::after {
	background: url("../image/blank_orange.svg") 50% 50% no-repeat;
	background-size: 100% 100%;
}

.c-button.\--blank:hover::after {
	background: url("../image/blank_emerald.svg") 50% 50% no-repeat;
	background-size: 100% 100%;
}
.c-button.\--blank.\--orange:hover::after {
	background: url("../image/blank_pink.svg") 50% 50% no-repeat;
	background-size: 100% 100%;
}
.c-button.\--none::after {
	display: none;
}
.c-button.\--none::before {
	display: none;
}

@media screen and (min-width:768px) {
	.c-button {
		height: 76px;
		border-radius: 38px;
		font-size: 1.9rem;
	}
	.c-button.\--large {
		height: 76px;
		border-radius: 38px
	}
	.c-button.\--mini {
		height: 40px;
		border-radius: 20px;
		font-size: 1.6rem;
	}
	
  .c-button::before {
    margin-top: -16px;
    right: 20px;
    width: 32px;
    height: 32px
  }
  .c-button.\--large::before {
    right: 20px
  }
  .c-button::after {
    width: 11px;
    height: 11px;
    right: 24px
  }
  .c-button.\--large::after {
    width: 11px;
    height: 11px;
    right: 25px
  }
	
	.c-button.\--blank::after {
		width: 17px;
		height: 15px;
	}

}


/* c-text-button
------------------------------ */
.c-text-button {
  position: relative;
  color: #004099;
  font-size: 19px;
  padding: 2px;
  border-bottom: 1px solid #004099;
  transition: .1s;
  font-weight: 700
}

.c-text-button:hover {
  opacity: .8
}

.c-text-button.\--back {
  padding-left: 20px;
  margin-left: -20px
}

.c-text-button.\--back::before {
  position: absolute;
  content: '';
  border-left: 2px solid #004099;
  border-top: 2px solid #004099;
  transform: translate(-14px, 8px) rotate(-45deg);
  width: 12px;
  height: 12px
}

@media screen and (min-width:768px) {
  .c-text-button {
    font-size: 20px
  }
  .c-text-button.\--back {
    margin-left: 0
  }
}


/* pc sp
------------------------------ */
@media screen and (min-width:768px) {
  .u-sp {
    display: none!important
  }
}

@media screen and (max-width:767px) {
  .u-pc {
    display: none!important
  }
}


/* mfp
------------------------------ */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  transition: all .15s ease-out
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: .8
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  transition: all .15s ease-out
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0
}

/* animation
------------------------------ */
@keyframes Roll {
	0% { transform: rotateZ(5deg) scale(0.9); }
	50% { transform: rotateZ(-5deg) scale(1.0); }
	100% { transform: rotateZ(5deg) scale(0.9); }
}

@keyframes fuwaH {
	0% { transform:translate3d(1.5vw,0,0); }
	50% { transform:translate3d(-1.5vw,0,0); }
	100% { transform:translate3d(1.5vw,0,0); }
}

@keyframes huwaV {
	0% { transform:translate3d(0,0.5vw,0); }
	50% { transform:translate3d(0,-0.5vw,0); }
	100% { transform:translate3d(0,0.5vw,0); }
}

@keyframes fuwaHp {
	0% { transform:translate3d(1.5%,0,0); }
	50% { transform:translate3d(-1.5%,0,0); }
	100% { transform:translate3d(1.5%,0,0); }
}

@keyframes huwaVp {
	0% { transform:translate3d(0,0.5%,0); }
	50% { transform:translate3d(0,-0.5%,0); }
	100% { transform:translate3d(0,0.5%,0); }
}


.inview{
	opacity:0;
	visibility:hidden;
}
.inview.confirmed{
	opacity:1;
	visibility:visible;

	animation-duration: 0.8s;	
	-webkit-animation-duration: 0.8s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
}

/*
==============================================
左に
==============================================
*/

.animation-left.inview.confirmed{
	animation-name: animation-left;
	-webkit-animation-name: animation-left;	
}

@keyframes animation-left {
	0% {
		opacity:0;
		transform: translateX(150%);
	}
	100% {
		opacity:1;
		transform: translateX(0%);
	}	
}

/*
==============================================
右に
==============================================
*/

.animation-right.inview.confirmed{
	animation-name: animation-right;
	-webkit-animation-name: animation-right;	
}

@keyframes animation-right {
	0% {
		opacity:0;
		transform: translateX(-150%);
	}
	100% {
		opacity:1;
		transform: translateX(0%);
	}	
}

/*
==============================================
下に
==============================================
*/

.animation-down.inview.confirmed{
	animation-name: animation-down;
	-webkit-animation-name: animation-down;	
}

@keyframes animation-down {
	0% {
		opacity:0;
		transform: translateY(-100%);
	}
	100% {
		opacity:1;
		transform: translateY(0%);
	}	
}


/*
==============================================
上に
==============================================
*/

.animation-up.inview.confirmed{
	animation-name: animation-up;
	-webkit-animation-name: animation-up;	
}

@keyframes animation-up {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0%);
	}	
}

/*
==============================================
zoomIn
==============================================
*/

.animation-zoomIn.inview.confirmed{
	animation-name: animation-zoomIn;
	-webkit-animation-name: animation-zoomIn;

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;
}

@keyframes animation-zoomIn {
	0% {
		transform: scale(0);
		opacity: 0.0;		
	}	
	100% {
		transform: scale(1);
		opacity: 1;	
	}		
}

/*
==============================================
fadeIn
==============================================
*/

.animation-fadeIn.inview.confirmed{
	animation-name: animation-fadeIn;
	-webkit-animation-name: animation-fadeIn;

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;
}

@keyframes animation-fadeIn {
	0% {
		opacity: 0.0;
		transform:translate(0,15px);		
	}	
	100% {
		opacity: 1;	
		transform:translate(0,0);
	}		
}

@keyframes animation-fadeIn_logo {
	0% {
		opacity: 0.0;
		transform:translate(0,15px);		
	}
	20% {
		opacity: 0.0;
		transform:translate(0,10px);		
	}	
	100% {
		opacity: 1;	
		transform:translate(0,0);
	}		
}
/*
==============================================
animation
==============================================
*/

.animation-expandOpen.inview.confirmed{
	animation-name: expandOpen;
	-webkit-animation-name: expandOpen;	

	animation-duration: 1.2s;	
	-webkit-animation-duration: 1.2s;

	animation-timing-function: ease-out;	
	-webkit-animation-timing-function: ease-out;	
}

/*
==============================================
bubbles
==============================================
*/
@keyframes bubbles {
	0% {
		/* box-shadow: inset 0 0 0 #004ea2; */
		background-position: 2% 109%, 30% 83%, -1% 134%, 98% 147%, 85% 92%, 62% 101%, 36% 88% , 88% 89%, 25% 107%, 32% 112%, 29% 114%;
	}	
	100% {
		background-position: -8% -320%, 39% -316%, 2% -16%, 100% -96%, 86% -85%, 66% -29%, 31% -123%, 79% -360%, 32% -51%, 39% -234%, 30% -20%;
		box-shadow: inset 0 -6.5em 0 #0ba29a;	
	}		
}

@keyframes bubbles_pink {
	0% {
		background-position: 2% 109%, 30% 83%, -1% 134%, 98% 147%, 85% 92%, 62% 101%, 36% 88% , 88% 89%, 25% 107%, 32% 112%, 29% 114%;
	}	
	100% {
		background-position: -8% -320%, 39% -316%, 2% -16%, 100% -96%, 86% -85%, 66% -29%, 31% -123%, 79% -360%, 32% -51%, 39% -234%, 30% -20%;
		box-shadow: inset 0 -6.5em 0 #cb4485;
	}		
}