
/* CSS Document */

.top-image {
	width: 100%;
    max-width: 100%;
    position: relative;
    background: linear-gradient(90deg, #0052c4, #001f99);
    padding-bottom: 120px;
}
.top-image img {
    width: 100%;
	max-width: 100%;
	height: auto;
}
.top-image::before {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 20%;
    background-color: #fff;
    top: 0;
    left: 0;
    z-index: 1;
}
.top-image::after {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .2;
    mix-blend-mode: screen;
    background-image: url("../../images/efect_2.png");
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: auto;
    top: 0;
    left: 0;
    z-index: 1;
    animation: blink 2s ease-in-out infinite 0s alternate;
}

@keyframes blink {
    0% {
        opacity: .1;
    }
    50% {
        opacity: .3;
    }
    100% {
        opacity: .1;
    }
}

.top-image .mv {
    width: 90%;
    max-width: 1500px;
    position: relative;
    margin: 0 auto;
    z-index: 2;
}
.top-image .txt {
    width: 100%;
    position: absolute;
    color: #FFF;
    left: 0;
    bottom: 0;
    padding: 0 5% 6%;
    z-index: 2;
}
.top-image .txt h1 {
    color: #0072ff;
    text-align: left;
    font-size: clamp(3rem, 10vw, 16rem);
    line-height: 100%;
}
.top-image .txt h1 span {
    display: block;
    font-size: 20%;
    line-height: 100%;
    margin-bottom: .5em;
}
.top-image .photo {
    background-color: #fff;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.1);
}

.senior-search {
    width: 90%;
    max-width: 1000px;
    margin: 60px auto 0;
}
.senior-search .inner {
    width: 100%;
    border: 4px solid #0033b3;
    border-radius: 20px;
    padding: 40px 40px 20px;
}
.senior-search input[type="radio"] {
    position: relative;
    width: 20px;
    height: 20px;
    border: 1px solid #999;
    border-radius: 50%;
    vertical-align: -4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-right: 5px;
    pointer-events: none;
}

.senior-search input[type="radio"]:checked:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0033b3;
}
.senior-search dl {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    align-items: center; 
    border-bottom: 1px solid #CCC;
    margin: 0 0 20px;
    padding: 0 0 20px;
}
.senior-search dl:nth-last-of-type(1) {
    border-bottom: none;
    padding: 0;
}
.senior-search dl dt {
    width: 8em;
    color: #0033b3;
    border-radius: 10px;
    text-align: center;
    background-color: #e9eef6;
    padding: .5em 1em;
}
.senior-search dl dd {
    text-align: left;
    padding: .5em 1em;
}
.senior-search dl dd label {
    display: inline-block;
    line-height: 200%;
    margin-right: 1em;
}
.senior-search .button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    max-width: 300px;
    background-color: #CCC;
    border: 2px solid #CCC;
    text-align: center;
    margin: 40px auto 0;
}
.senior-search .button:hover {
    color: #999;
    background-color: #FFF;
}

.senior-top {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-flow: row wrap;
    margin: 60px auto 0;
}
.senior-top img {
    width: 100%;
	max-width: 100%;
	height: auto;
}
.senior-top a {
    width: 28.33%;
    display: block;
    position: relative;
    color: #FFF;
    text-decoration: none;
    background-color: #0033b3;
    border-radius: 18px;
    overflow: hidden;
    margin: 60px 2.5% 0;
    
    -webkit-transition: all 0.4s;
	transition: all 0.4s;
}
.senior-top a:hover {
    opacity: 1;
	
}
.senior-top a dl {
    width: 100%;
    position: relative;
}
.senior-top a::after {
    content: " ";
	display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: .2;
    mix-blend-mode: screen;
    background-image: url("../../images/efect_2.png");
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 280%;
    top: 0;
    left: 0;
    z-index: 1;
}
.senior-top a dd {
    position: relative;
    text-align: center;
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    padding: 10% 3%;
    z-index: 2;
}
.senior-top a dd span {
    display: inline-block;
    margin: 0 .5em;
}




@media only screen and (min-width:1px) and (max-width: 768px) {
	
	.top-image {
        width: 100%;
        margin-top: 80px;
        padding-bottom: 10%;
	}
    .top-image::after {
        background-position: left bottom;
        background-repeat: repeat-x;
        background-size: 200%;
        z-index: 1;
    }
    .top-image::before {
        content: " ";
        display: block;
        position: absolute;
        width: 100%;
        height: 50%;
        background-color: #fff;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .top-image .mv {
        display: flex;
        flex-flow: column-reverse wrap;
    }
    .top-image .txt {
        position: relative;
        padding: 6% 3% 0;
        z-index: 2;
    }
    .top-image .txt h1 {
        color: #FFF;
        font-size: clamp(5rem, 10vw, 16rem);
        text-align: left;
        line-height: 80%;
    }
    .top-image .txt h1 span {
        font-size: 20%;
    }
    
    .senior-search {
        width: 90%;
        max-width: 1000px;
        margin: 6% auto 0;
    }
    .senior-search .inner {
        width: 100%;
        border: 4px solid #0033b3;
        border-radius: 10px;
        padding: 20px 5% 10px;
    }
    .senior-search dl {
        width: 100%;
        display: block;
        border-bottom: none;
        margin: 0 0 0;
        padding: 0;
    }
    .senior-search dl:nth-last-of-type(1) {
        border-bottom: none;
        padding: 0;
    }
    .senior-search dl dt {
        width: 100%;
        color: #0033b3;
        border-radius: 10px;
        text-align: center;
        background-color: #e9eef6;
        padding: .5em 1em;
    }
    .senior-search dl dd {
        padding: 1em 0 1.2em;
    }
    .senior-search dl dd label {
        display: inline-block;
    }
    .senior-search .button {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        max-width: 300px;
        background-color: #CCC;
        border: 2px solid #CCC;
        text-align: center;
        margin: 40px auto 0;
    }
    .senior-top {
        margin: 6% auto 0;
    }
    .senior-top a {
        width: 46%;
        border-radius: 12px;
        margin: 6% 2% 0;
    }
    .senior-top a:hover {
        -webkit-transform: translate(0, 0); 
        transform: translate(0, 0);
    }
    .senior-top a dd {
        padding: 15% 2%;
        z-index: 2;
    }
}

@media only screen and (min-width:1px) and (max-width: 568px) {
	

}
	
@media only screen and (min-width:1px) and (max-width: 480px) {
	

}

