/***********************************************
 stage
************************************************/
#stage{
    position: relative;
}
#stage h1{
    position: absolute;
    content: "";
    top: 50%;
    left: 5%;
    transform: translate(0, -50%);
    margin: 0;
    padding: 45px 50px;
    background: rgba(255,255,255,0.6);
    display: inline-block;
    max-width: 530px;
    width: 85%;
    box-sizing: border-box;
    z-index: 3;
}
#stage h1 img{
    width: 100%;
    height: auto;
}
#stage .stage-bg{
    position: relative;
    height: calc(100vh - 90px);
}
#stage .stage-bg img{
    width: 100%;
    height: calc(100vh - 90px);
    object-fit: cover;
}
#stage .sc-box{
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    width: 120px;
    height: 40px;
    background: url(../images/top/sc-bg.svg) no-repeat;
    background-position: left top;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-size: 13px;
    color: var(--main-color);
    z-index: 3;  
}
#stage .sc-box span{
    position: relative;
    padding-left: 12px;
    line-height: 110%;
    margin-bottom:  5px;
}
#stage .sc-box span:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: rotate(135deg);
    -webkit-animation:blink 1s ease-in-out infinite alternate;
    -moz-animation:blink 1s ease-in-out infinite alternate;
    animation:blink 1s ease-in-out infinite alternate;
}
@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
/***********************************************
 top-service
************************************************/
#top-service{
    width: 90%;
    max-width: 1200px;
    margin: 100px auto;
}
#top-service .inner{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top-service .inner .column-l{
    width: 46%;
}
#top-service .inner .column-l h3{
    font-size: 32px;
    font-weight: 700;
    color: var(--main-color);
    line-height: 140%;
}
#top-service .inner .column-r{
    width: 45%;
}
#top-service .inner .column-r img{
    width: 100%;
    height: auto;
}
/***********************************************
 top-message
************************************************/
#top-message{
    position: relative;
}
#top-message .inner{
    max-width: 1200px;
    width: 100%;
    margin: 50px auto 60px auto;
}
#top-message .inner .column{
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 80px 40px;
    background: rgba(0,169,157,0.7);
    display: inline-block;
    max-width: 1000px;
    width: 85%;
    box-sizing: border-box;
    color: #fff;
    text-align: center;
}
#top-message .inner .column h2{
    font-size: 46px;
    line-height: 120%;
    font-weight: bold;
}
#top-message .inner .column p {
    font-size: 18px;
    font-weight: normal;
    line-height: 160%;
}
#top-message .inner .column p span{
    display: block;
}
#top-message .inner .photo-bg img{
    width: 100%;
    height: auto;
}
#top-message .inner .photo-bg .phone{
    display: none;
}
/***********************************************
 top-number
************************************************/
#top-number{
    position: relative;
}
#top-number:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    padding-top: 70%;
    background: url(../images/top/number-bg.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}
#top-number .inner{
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 100px 0 0 0;
}
#top-number .inner h3{
    text-align: center;
}
#top-number .inner h3 img{
    max-width: 654px;
    width: 94%;
    height: auto;
}
#top-number .inner ul{
    padding: 25px 25px 5px 25px;
    background: rgba(255,255,255,0.5);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top-number .inner ul li{
    width: calc(50% - 12px);
    margin-bottom: 20px;
}
#top-number .inner ul li img{
    width: 100%;
    height: auto;
}
/***********************************************
 top-newslink
************************************************/
#top-newslink{
    max-width: 1000px;
    width: 95%;
    margin: 0 auto;
    padding: 30px 0 0 0;
    display: flex;
    justify-content: center;
}
/***********************************************
 top-banner
************************************************/
#top-banner{
    max-width: 1250px;
    margin: 70px auto;
    width: 90%;
}
#top-banner ul{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
#top-banner ul li{
    width: 48%;
    margin-bottom: 20px;
}
#top-banner ul li img{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 950px) {
/***********************************************
 top-service
************************************************/
#top-service{
    margin: 50px auto;
}
#top-service .inner .column-l{
    width: 100%;
    order: 2;
}
#top-service .inner .column-r{
    width: 90%;
    order: 1;
    margin:0 auto 50px auto;
    max-width: 500px;
}
}
@media screen and (max-width: 900px) {
}
@media screen and (max-width: 850px) {
}
@media screen and (max-width: 768px) {
/***********************************************
 stage
************************************************/
#stage{
    background-position: left 20% center;
}
#stage h1{
    padding: 15px 20px;
    width: 90%;
}
/***********************************************
 top-message
************************************************/
#top-message .inner .column{
    padding: 30px 20px;
    width: 90%;
}
#top-message .inner .column h2{
    font-size: 6.2vw;
    white-space: nowrap;
}
#top-message .inner .column p{
    text-align: left;
    margin-bottom: 0;
    font-size: 16px;
}
#top-message .inner .column p span{
    display: inline;
}
}
@media screen and (max-width: 640px) {
/***********************************************
 top-service
************************************************/
#top-service .inner .column-l h3{
    font-size: 24px;
}
/***********************************************
 top-number
************************************************/
#top-number .inner{
    padding: 60px 0 0 0;
}
#top-number .inner ul{
    padding: 15px 15px 0 15px;
}
#top-number .inner ul li{
    width: 100%;
}
/***********************************************
 top-banner
************************************************/
#top-banner ul li{
    width: 100%;
}
}
@media screen and (max-width: 560px) {
/***********************************************
 top-message
************************************************/
#top-message .inner .photo-bg img.pc{
    display: none;
}
#top-message .inner .photo-bg img.phone{
    display: block;
}
}
@media screen and (max-width: 400px) {
}
@media screen and (max-width: 350px) {
}
@media screen and (max-width: 300px) {
}