body {
    background-color: #b2cde8;
    font: 16px/1.2 "Microsoft JhengHei", "Microsoft YaHei", "SimHei", "STHeiti", "LiHei Pro Medium", "Apple LiGothic Medium", Verdana, Helvetica, Arial, sans-serif, cursive;
    font-size: 1rem;
    font-weight: normal;
}
section{ background-image: url(../images/bg_footer.png); background-repeat: no-repeat;
    background-position: left bottom;}
@media screen and (max-width: 480px) {
    section{ background-size: 220%; background-position: left 7% bottom;}
}

a { cursor: pointer;
    -webkit-transition:all 200ms ease-out; -mozilla-transition:all 200ms ease-out;
    -ms-transition:all 200ms ease-out; -o-transition:all 200ms ease-out;
    transition:all 200ms ease-out;}
a:hover {
    opacity: 0.75;
    text-decoration: none;}

.navbar {
    background: #ffffff;
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.16);
    padding: 1rem;
}
.navbar .navbar-brand {
    background: url(../images/logo.svg) center no-repeat;
    display: block;
    width: 180px;
    height: 32px;
    font-size: 0;}

.container { max-width: 1200px;}

.mainPic{ width: 100%; height: 925px; position: relative;
    background-image: url(../images/mainPic_pc.jpg); background-size: cover;
    background-repeat: no-repeat; background-position: center top;}
.mainPic > div{ width: 740px;
    position: absolute; top: 60px; left: 50%; margin-left: -450px;
    animation: Float 1s infinite alternate ease-out;}
@media screen and (max-width: 1000px) {
    .mainPic > div{ width: 80%; top: 6%; left: 10%; margin-left: 0;}
}
@media screen and (max-width: 640px) {
    .mainPic > div{ animation: Float_s 1s infinite alternate ease-out;}
}
@keyframes Float {
  from {
    margin-top: 0;
  }
  to {
    margin-top: -20px;
  }
}
@keyframes Float_s {
  from {
    margin-top: 0;
  }
  to {
    margin-top: -10px;
  }
}

.mainContainer > div{ width: calc(100% - 40px); max-width: 1200px; margin: 0 auto;}
@media screen and (max-width: 1000px) {
    .mainPic{ height: auto; padding-top: 97%;
        background-image: url(../images/mainPic_m.jpg);}
}

.projectDiv > div{ padding: 15px; margin-bottom: 25px; position: relative;}
.projectDiv img{-webkit-filter: drop-shadow(0 8px 15px rgba(35, 88, 165, 0.3));
    filter: drop-shadow(0 8px 15px rgba(35, 88, 165, 0.3));}
.projectDiv a{ width: 50%; max-width: 245px; display: block; opacity: 1; z-index: 5; position: absolute;
    animation: Updown 1s infinite alternate ease-out;}
.projectDiv a:hover{ animation-play-state: paused;}
.projectDiv > div:first-child a{ margin-left: 10%;}
.projectDiv > div:last-child a{ right: 50%; margin-right: -40%;}
@media screen and (max-width: 480px) {
    .projectDiv > div{ padding: 15px 0;}
}

@keyframes Updown {
  from {
    bottom: -6%;
  }
  to {
    bottom: -3%;
  }
}

#note h3{ margin-bottom: 15px; color: #412233; font-size: 22px;}
.noteTab{ margin-left: 0; justify-content: flex-end; position: relative;
    background-image: url(../images/line_point.svg); background-repeat: repeat-x;
    background-position: left center; background-size: auto 10px;}
.noteTab::before{ content: ""; width: 185px; height: 55px; position: absolute; left: 0; top: 0;
    background-image: url(../images/note.svg);}
.noteTab li{ position: relative; background: #b2cde8;}
.noteTab li a:link{ position: relative;
    -webkit-transition:all 200ms ease-out; -mozilla-transition:all 200ms ease-out;
    -ms-transition:all 200ms ease-out; -o-transition:all 200ms ease-out;
    transition:all 200ms ease-out;}
.noteTab li a:hover{ opacity: 1; margin-top: -10px;}
.noteTab > * > :first-child{ padding: 10px 30px; border-radius: 30px;
    font-weight: bold; font-size: 30px; color: #5b91be;
    background: rgba(255,255,255,0.5);}
.noteTab > * > :first-child:hover{ color: #5b91be;}
.noteTab > .uk-active > a,.noteTab > .uk-active > a:hover{
    background-color: #5b91be; color: #fff;}
.noteTab > .uk-active > a::before{ content: ""; width: 10px; height: 0; display: inline-block;
    position: absolute; left: 50%; bottom: -10px; margin-left: -4px;
    border-left: 8px solid transparent;  
    border-right: 8px solid transparent;  
    border-top: 12px solid #5b91be;
}

@media screen and (max-width: 768px) {
    .noteTab::before{ width: 135px; height: 40px; top: 2px;}
    .noteTab > *{ padding-left: 10px;}
    .noteTab > * > :first-child{  padding: 10px 20px; font-size: 20px;}
}
@media screen and (max-width: 480px) {
    .noteTab{ background-size: auto 8px;}
    .noteTab::before{ width: 118px; height: 35px;}
    .noteTab > * > :first-child{  padding: 8px 12px; font-size: 18px;}
}

table{ width: 100%; border-collapse: separate; border-radius: 25px; overflow: hidden;}
table th,table td{ padding: 8px; font-size: 18px; text-align: center; font-weight: bold; color: #412233;}
table th{ background-color: rgba(90,145,190,0.7); color: #fff;}
table .subTh{ background-color: rgba(90,145,190,0.3);}
table tbody tr:nth-child(odd){ background-color: rgba(255,255,255,0.5);}
table tbody tr:nth-child(even){ background-color: rgba(255,255,255,0.2);}
table td b{ margin-right: 4px; color: #ad0268; font-size: 22px;}
@media screen and (max-width: 480px) {
    table th,table td{ font-size: 16px;}
}

.num{ margin: 15px 0; list-style: decimal; color: #412233;}
.num li{ margin-bottom: 8px; font-size: 18px;}
@media screen and (min-width: 960px) {
    .num{ font-weight: 600;}
}

.btn-area {
    text-align: center;
}

.btn-area>a {
    position: relative;
    max-width: 200px;
    font-size: 1.5rem;
    display: inline-block;
    padding: 8px 20px;
    color: #152e38;
}

.btn-area>a+a {
    border-left: 1px solid #000;
}

.btn-area>.btn01::before {
    content: "";
    background-image: url(../images/Arrow_Left.svg);
    position: absolute;
    width: 24px;
    height: 24px;
    top: 10px;
    left: -12px;
}

.btn-area>.btn02::before {
    content: "";
    background-image: url(../images/Arrow_Right.svg);
    position: absolute;
    width: 24px;
    height: 24px;
    top: 10px;
    right: -12px;
}

footer {
    background-color: #f4f4f4;
}

.sns {
    text-align: center;
}

.sns>div {
    display: inline-block;
    width: 20%;
    max-width: 120px;
}

.sns>div>a {
    color: #717171;
}

.sns i {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto 0.5rem auto;
}

.sns .fb {
    background: url(../images/Facebook.svg) no-repeat center;
    background-size: cover;
}

.sns .youtube {
    background: url(../images/Youtube.svg) no-repeat center;
    background-size: cover;
}

.sns .line {
    background: url(../images/Line.svg) no-repeat center;
    background-size: cover;
}

.sns .instagram {
    background: url(../images/Instagram.svg) no-repeat center;
    background-size: cover;
}

.sns span {
    font-size: 0.75rem;
}

.copyright {
    border-top: 1px solid #dfdedc;
    text-align: center;
}

.copyright .container>div {
    display: inline-block;
    text-align: center;
    padding: 1rem;
}

.copyright img {
    width: 100%;
}

.cpr {
    width: 58%;
}

.phone {
    width: 40%;
}

.sidebtn>.bn {
    background-color: #3e3e3e;
    text-align: center;
}

.sidebtn>.bn>a {
    color: #FFFFFF;
    display: block;
}

.sidebtn>.bn>a:hover {
    text-decoration: none;
}

.sidebtn>.bn-01 .ico {
    background: url(../images/Icon-01.svg) no-repeat center;
    background-size: contain;
}
.sidebtn>.bn-02 .ico {
    background: url(../images/Icon-02.svg) no-repeat center;
    background-size: contain;
}
.sidebtn>.bn-03 .ico {
    background: url(../images/Icon-03.svg) no-repeat center;
    background-size: contain;
}
.sidebtn>.bn-04 .ico {
    background: url(../images/Icon-04.svg) no-repeat center;
    background-size: contain;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
    }
    .navbar .navbar-brand {
        width: 140px;
        height: 32px;
    }
}

@media screen and (max-width: 959px) {
    footer {
        margin-bottom: 3rem;
    }
    .btn-area>a {
        font-size: 1rem;
    }
    .btn-area>.btn01::before,
    .btn-area>.btn02::before {
        top: 4px;
    }
    .copyright .container>div {
        display: block;
    }
    .copyright .container>div {
        width: 100%;
        padding: 0.5rem;
    }
    .sidebtn {
        position: fixed;
        width: 100%;
        bottom: 0;
        text-align: center;
        background: #eeeeee;
        padding: 8px;
        box-shadow: 0px -1px 5px rgba(0, 0, 0, 0.16);
    }
    .sidebtn>.bn {
        padding: 0.5rem;
        font-size: 1rem;
        border-radius: 6px;
        width: 49%;
        display: inline-block;
    }
    .sidebtn>.bn>a:hover {
        text-decoration: none;
    }
    .sidebtn>.bn .ico {
        width: 24px;
        height: 24px;
        display: inline-block;
        margin-right: 0.5rem;
    }
    .sidebtn>.bn span {
        vertical-align: super;
    }
}

@media screen and (min-width: 960px) {
    .sidebtn {
        position: fixed;
        right: 0;
        top: 24%;
    }
    .sidebtn>.bn {
        padding: 2rem 0.5rem;
        font-size: 1.25rem;
        border-radius: 12px 0 0 12px;
    }
    .sidebtn>.bn+.bn {
        margin-top: 0.5rem;
    }
    .sidebtn>.bn .ico {
        width: 32px;
        height: 32px;
        display: block;
        margin-bottom: 1rem;
    }
    .sidebtn>.bn span {
        writing-mode: tb-rl;
    }
}