@charset "utf-8";
/* CSS Document */

/*******************************
mainVisual
*******************************/
#mainVisual {
    position: relative;
    overflow: hidden;
    padding: 0 120px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#bridge01 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    z-index: 4;
    width: 30%;
    height: auto;
    stroke:#b09540;
    stroke-width:2px;
    fill:transparent;
    stroke-dasharray:2000px;
    stroke-dashoffset:2000px;
    animation:anim01 2s ease-in 0s forwards;
    animation-delay: 2s;
}

@keyframes anim01 {
    0%{stroke-dashoffset:2000px;}
    30%{fill:transparent;}
    60%{stroke-dashoffset:0;}
    100%{stroke-dashoffset:0;}
}

#bridge02 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit- transform: translateY(-50%) translateX(-50%);
    z-index: 5;
    width: 30%;
    height: auto;
    animation-name: anim02;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-iteration-count: 1;
    animation-delay: 2s;
}

@keyframes anim02 {
    0% {opacity: 0}
    100% {opacity: 1}
}

#mainImage01 {
    width: 45.99%;
    animation-name: anim03;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

@keyframes anim03 {
    from {
        opacity: 0;
        transform: translateY(200px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mainImage02 {
    width: 15.85%;
    animation-name: anim04;
    animation-duration: 2s;
    animation-timing-function: ease-out;
}

@keyframes anim04 {
    from {
        opacity: 0;
        transform: translateY(-400px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#mainText01 {
    width: 38.16%;
    position: absolute;
    top: 0;
    left: 120px;
    animation-name: anim05;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    display: flex;
    align-items: center;
    height: 100%;
    z-index: 3;
}

@keyframes anim05 {
    from {
        opacity: 0;
        transform: translateX(-400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

#mainText01 h2 {
    font-family: "gothic02";
    color: #b09540;
    font-size: 3.5vw;
    margin-bottom: 2rem;
    line-height: 1.6;
}

#mainText01 .br01 {
    display: none;
}

#mainText01 p {
    font-family: "gothic02";
    color: #333;
    font-size: 1.2vw;
    line-height: 1.8;
}

/*******************************
 news
*******************************/
#news {
    width: 1000px;
    max-width: 90%;
    margin: 5rem auto 2rem;
    display: flex;
    align-items: flex-start;
}

#news h3 {
    font-family: "gothic02";
    font-size: 1.8rem;
    width: 22%;
}

#news #newsContents {
    width: 78%;
}

#news ul {
    border-top: 1px solid #ccc;
    font-size: 0.9rem;
}

#news ul li {
    padding: 1rem 0;
    border-bottom: 1px solid #ccc;
}

#news ul li dl {
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

#news ul li dl dt {
    width: 13%;
}

#news ul li dl dd {
    width: 87%;
}

#news ul li a {
    border-bottom: 1px solid #b09540;
}

#news .readmore {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

#news .readmore a {
    display: flex;
    align-items: center;
}

#news .readmore a .line {
    height: 2px;
    background: #333;
    width: 3rem;
    animation-name: animLineReadmore;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes animLineReadmore {
    from {
        opacity: 0.4;
        transform: translateX(0);
    }
    to {
        opacity: 1;
        transform: translateX(50%);
    }
}

/*******************************
details
*******************************/
#details {
    background: #dad3be;
    background: -webkit-linear-gradient(right, #c0d9ea, #eaced2 50%, #dad3be);
    background: -o-linear-gradient(right, #c0d9ea, #eaced2 50%, #dad3be);
    background: linear-gradient(to left, #c0d9ea, #eaced2 50%, #dad3be);
    padding: 4rem 0;
}

#details ul {
    display: flex;
    flex-wrap:wrap;
    width: 1400px;
    max-width: 90%;
    margin: 0 auto;
}

#details ul li {
    width: 50%;
    background: #fff;
}

#details ul li a {
    height: 12rem;
    overflow: hidden;
    font-family: "gothic02";
    font-size: 1.2rem;
    line-height: 1.4;
}

#details ul li.bnr01 a {
    display: flex;
    align-items: center;
    background: url("/common/images/bnrBgKango.png") no-repeat -2rem 0;
    background-size: auto 120%;
    padding-left: 40%;
    color: #ee7f90;
}

#details ul li.bnr01 a img {
    display: block;
    margin: 1rem 0 -1rem;
    height: 4.6rem;
    width: auto;
}

#details ul li.bnr02 a {
    display: flex;
    align-items: center;
    background: url("/common/images/bnrBgKaigo.png") no-repeat -4rem 0;
    background-size: auto 120%;
    padding-left: 25%;
    color: #48acf0;
}

#details ul li.bnr02 a img {
    display: block;
    margin: 1rem 0 -1rem;
    height: 4.6rem;
    width: auto;
}

/*******************************
contact
*******************************/
#contact {
    position: relative;
    border: 2px solid #333;
    width: 300px;
    margin: 0 auto;
    overflow: hidden;
    transition: all 0.5s ease 0s;
    z-index: 5;
}

#contact:hover {
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.1);
}

#contact a {
    padding: 1.5rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact a:hover {
    opacity: 1.0!important;
}

#contact a .line {
    height: 2px;
    background: #333;
    width: 3rem;
    position: absolute;
    top: 50%;
    right: 0;
    animation-name: animLineContact;
    animation-duration: 2s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

#contact a .circle {
    width: 1rem;
    height: 1rem;
    border-radius: 100%;
    background: #dad3be;
    background: -webkit-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: -o-linear-gradient(right, #6fc5ff, #f24662 50%, #b09540);
    background: linear-gradient(to left, #6fc5ff, #f24662 50%, #b09540);
    position: absolute;
    left: 46%;
    bottom: -48%;
    z-index: -1;
    transform: scale(0);
    transition: transform 1s;
    opacity: .2;
}

@keyframes animLineContact {
    from {
        opacity: 0.4;
        transform: translateX(20%);
    }
    to {
        opacity: 1;
        transform: translateX(100%);
    }
}


