@charset "utf-8";


.contents h2{font-size:36pt;}
@media only screen and (max-width: 767px){
  .contents h2 { font-size: 28px;}
}




/* wave effect : start */

.ss-header {
  position: relative;
  text-align: center;
  background: url('/ssl/img/cover.jpg') no-repeat center !important;
  /* background: linear-gradient(135deg, rgba(124,179,66,1) 5%, rgba(10,151,167,1) 50%, rgba(25,118,210,1) 95%) !important; */
  background-size: cover !important;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 160px;
}
.ss-header h1{font-size:16pt; line-height:1.25em;}
.inner-header {
  // height: 480px;
  width: 100%;
  margin-x: auto;
  // padding-top: 160px;
  color: #3e4e57;
}
.logo_image{padding-left:0.5em;padding-right:0.5em;filter: drop-shadow(0 0 4px rgba(255,255,255,0.8)); !important; }

.flex {
  /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.waves {
  position: relative;
  width: 100%;
  height: 15vh;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
  overflow: hidden;
}
.ss-header-bottomcontent {
  position: relative;
  text-align: center;
  background-color: white;
  padding-top:2rem;
  padding-bottom:2rem;
}
/* Animation */
.parallax>use {
  overflow: hidden;
  animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}
.parallax>use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax>use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax>use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}


/*Shrinking for mobile*/
@media (max-width: 768px) {
  .ss-header h1{font-size:12.5pt; line-height:1.25em;}
  .waves {
    height: 80px;
    min-height: 80px;
  }
  .inner-header{height: 40vh;padding-top: 12vh;}
  
}

/* wave effect : end */





/* lineup tile : start */

.grid {
	position: relative;
	margin: 0 auto;
	max-width: 1200px;
	list-style: none;
	text-align: center;
}

/* lineup tile common */
.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	width: 100%;
	max-height: 360px;
	/* background: #3085a3; */
	text-align: center;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	/* height: auto; */
	max-width: 100%;
	/* opacity: 0.9; */
}

.grid figure figcaption {
	padding: 2em;
	color: #fff;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.grid figure figcaption::before,
.grid figure figcaption::after {
	pointer-events: none;
}

.grid figure figcaption,
.grid figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.grid figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.grid figure h5 {
	font-weight: 300;
    font-size:24pt;
    margin-top:2rem;
}

.grid figure h5 span {
	font-weight: 800;
}

.grid figure p {
	margin: 0;
}

.grid figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}


/*---------------*/
/***** Oscar *****/
/*---------------*/

figure.effect-oscar {
	/* background: -webkit-linear-gradient(45deg, #22682a 0%, #9b4a1b 40%, #3a342a 100%);
	background: linear-gradient(45deg, #22682a 0%,#9b4a1b 40%,#3a342a 100%); */
}

figure.effect-oscar img {
	opacity: 0.9;
	-webkit-transition: opacity 0.35s;
	transition: opacity 0.35s;
    top: 40%;
}

figure.effect-oscar figcaption {
	padding: 3em;
	/* background-color: rgba(58,52,42,0.7); */
	-webkit-transition: background-color 0.35s;
	transition: background-color 0.35s;
}

figure.effect-oscar figcaption::before {
	position: absolute;
	top: 30px;
	right: 30px;
	bottom: 30px;
	left: 30px;
	border: 1px solid #9E9D24;
	content: '';
}

figure.effect-oscar figcaption.ev::before {
	border: 1px solid #9E9D24;
}
figure.effect-oscar figcaption.ov::before {
	border: 1px solid #1E88E5;
}


figure.effect-oscar h2 {
	margin: 20% 0 10px 0;
	-webkit-transition: -webkit-transform 0.35s;
	transition: transform 0.35s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

figure.effect-oscar figcaption::before,
figure.effect-oscar p {
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

figure.effect-oscar:hover h2 {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

figure.effect-oscar:hover figcaption::before,
figure.effect-oscar:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}

figure.effect-oscar:hover figcaption {
	background-color: rgba(58,52,42,0);
}

figure.effect-oscar:hover img {
	opacity: 0.8;
}

/* lineup tile : end */


/* cta : start */

.cta-matomete{
    padding: 50px 15px;
    text-align: center;
    background: url(/ssl/promotion/img/norikae-bg-kv-01.jpg) no-repeat 50% 50% fixed;
    background-size: cover;
}

.cta-matomete-image{
  overflow:hidden;
}


/* cta : end */



.head_conversion {
    max-width: 360px;
    background: linear-gradient(135deg, #fffed8cc, #fffef58c, #e6e4a4cc);
    box-shadow: 0 8px 32px 0 rgb(31 38 135 / 50%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(6px);
    border: 6px solid #919725;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
}
.head_conversion h5{color:#307f33;}

.head_conversion .btn-success{background-color: #307f33;}



.ss-partners-cover{
    text-align: center;
    background: url('/ssl/img/ss-partners-front-cover.jpg') center center no-repeat !important;
    background-size: cover;
    /* background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.6)), url(/ssl/img/ss-partners-cover.jpg) no-repeat center !important; */
}

.evc-report{
  background-color: #CFD8DC !important;
  padding: 0.5em 0;
}
.evc-report a{color:#01579B;}

.bcs-container-searchbox {border-width: 2px; border-radius: 5px;}
