﻿@font-face {
    font-family: 'WebSymbolsRegular';
    src: url('websymbols/websymbols-regular-webfont.eot');
    src: url('websymbols/websymbols-regular-webfont.eot?#iefix') format('embedded-opentype'),
        url('websymbols/websymbols-regular-webfont.woff') format('woff'),
        url('websymbols/websymbols-regular-webfont.ttf') format('truetype'),
        url('websymbols/websymbols-regular-webfont.svg#WebSymbolsRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}
.ca-menu{
    position: absolute;
    /*padding: 0 0 0 48px;*/
    /*margin: 0 0 0 50px;*/
    /*margin: 5px auto;*/
    width: 600px;/*1020px;*/   /* メニュー部分全体の幅 */
}
.ca-menu li{
    top: -5px;
    left: 311px;
    width: 130px;/*230px;*/ /* 円が外接する四角形の幅 */
    height: 130px;/*230px;*/ /* 円が外接する四角形の高さ */
    border: 10px solid /*rgba(246,246,246,0.8);*/ /*#f6f6f6;*/ mintcream; /* 外周の枠の太さ&色 */
    overflow: hidden;
    position: relative;
    float:left;
    background: cornsilk; /*#fff;*/ /* 円の内側の色＆透過 */
    margin-left:-37px;/*-48px;*/ /* 円の重なり具合 */
    -webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
    -webkit-border-radius: 75px;/*125px;*/  /* 半径 */
    -moz-border-radius: 75px;/*125px;*/     /* 半径 */
    border-radius: 75px;/*125px;*/          /* 半径 */
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ca-menu li:last-child{
    margin-right: 0px;
}
.ca-menu li a{
    text-align: left;
    width: 100%;
    height: 100%;
    display: block;
    color: #333;
    position: relative;
}
.ca-icon{
    font-family: 'WebSymbolsRegular', cursive;
    font-size: 30px;
    color: #f6f6f6;;
    line-height: 60px;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 0px;
    top: 10px;
    text-align: center;
    -webkit-transition: all 400ms linear;
    -moz-transition: all 400ms linear;
    -o-transition: all 400ms linear;
    -ms-transition: all 400ms linear;
    transition: all 400ms linear;
}
.ca-main{ /* メニュー項目文字*/
    font-size: 14px;/*24px;*/
    position: absolute;
    top: 75px; /*110px;*/  /* 文字位置 */
    height: 80px;
    width: 170px;
    left: 50%;
    margin-left: -85px;
    opacity: 0.8;
    text-align: center;
    color: #555;
    font-weight:bold;
}
.ca-sub{
    display: none;
}
.ca-menu li:hover{
    border-color: rgb(34,85,136);/*#333;*/
    z-index: 998;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.ca-menu li:hover .ca-icon{
    color: #000;
    font-size: 50px;
    text-shadow: 0px 0px 1px #000;
    -webkit-animation: moveFromBottom 300ms ease;
    -moz-animation: moveFromBottom 300ms ease;
    -ms-animation: moveFromBottom 300ms ease;
}
.ca-menu li:hover .ca-main{
    /*color: #000;*/
    color: red;
    -webkit-animation: moveFromBottom 500ms ease;
    -moz-animation: moveFromBottom 500ms ease;
    -ms-animation: moveFromBottom 500ms ease;
}

.ca-icon#top{
    color: lightblue; /*#f7002f;*/
    text-shadow: 0px 0px 3px navy; /*#f7002f;*/
}

.ca-icon#introduce{
    color: lightblue; /*#f7002f;*/
    text-shadow: 0px 0px 3px navy; /*#f7002f;*/
}

.ca-icon#heart{
    color: pink;
    text-shadow: 0px 0px 3px #f7002f;
}

.ca-icon#activity{
    color: lightblue; /*#f7002f;*/
    text-shadow: 0px 0px 3px navy; /*#f7002f;*/
}

.ca-icon#link{
    color: lightblue; /*#f7002f;*/
    text-shadow: 0px 0px 3px navy; /*#f7002f;*/
}

.ca-icon#contuctus{
    color: lightblue; /*#f7002f;*/
    text-shadow: 0px 0px 3px navy; /*#f7002f;*/
}

@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(200%) scale(0.5);
        opacity: 0;
    }
    to {
        -webkit-transform: translateY(0%) scale(1);
        opacity: 1;
    }
}
@-moz-keyframes moveFromBottom {
    from {
        -moz-transform: translateY(200%) scale(0.5);
        opacity: 0;
    }
    to {
        -moz-transform: translateY(0%) scale(1);
        opacity: 1;
    }
}
@-ms-keyframes moveFromBottom {
    from {
        -ms-transform: translateY(200%) scale(0.5);
        opacity: 0;
    }
    to {
        -ms-transform: translateY(0%) scale(1);
        opacity: 1;
    }
}