/**********************************
 *
 * 共通CSS
 *
 **********************************/ 
.disnone {
    display:none!important;
}

.pcClass {
    display:block;
}

.spClass {
    display:none;
}

.panel img {
    width:100%;
    height:auto;
    vertical-align: bottom;
}


.button {
	position: relative;
	display: inline-block;
}

.button::before,.button::after {
	position: absolute;
	top: 45%;
	right: .2em;
	content: '';
	margin-top: -5px;
	margin-right: 10px;
    width: 10px;
    height: 10px;
    border: 0px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.button::after {
	opacity: 0;
	right: 1em;
}
.button:hover::before {
	animation: arrowbefore .5s;
}
.button:hover::after {
	animation: arrowafter .5s;
}
@keyframes arrowbefore {
	100% {
		right: -.6em;
		opacity: 0;
	}
}
@keyframes arrowafter {
	99% {
		right: .2em;
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}




/**********************************
 *
 * ヘッダ
 *
 **********************************/ 
header {
    width:100%;
    height:90px;
    min-width:1350px;
    background-color:rgba(255, 255, 255, 0.6);
    padding:0;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    border-bottom:1px solid #fff;
}

header h1 {
    width:12%;
    max-width:148px;
    height:26px;
    display:block;
    float:left;
    padding:32px 0;
}

header section {
    width:96%;
    margin:0 auto;
}

header a:hover {
    opacity:0.7;
}


/**********************************
 *
 * ナビ
 *
 **********************************/ 
nav {
    width: 88%;
    height: 40px;
    padding:25px 0;
    float:right;
}

nav ul {
    width: 100%;
    display: inline-block;
}

nav ul li {
    float:right;
    height:40px;
    border-right:1px #626262 solid;
}

nav ul li:first-child {
    border-left:none;
}

nav ul li p{
    display: inline-flex;
    height: 40px;
    text-align: center;
    vertical-align: middle;
}

nav ul li a {
    display:block;
    width:100%;
    text-decoration:none;
    color:#434343;
    font-weight:bold;
    font-size:15px;
    line-height: 140%;
    letter-spacing:0.1em;
    padding:0 40px;
}

nav ul li a span{
    text-decoration:none;
    color:#a4a4a4;
    font-size:12px;
}


nav ul li:first-child {
    background-color:#55c6f0;
    border-right:none;
    margin-left:40px;
}

nav ul li:first-child p{
    display: table-cell;
}

nav ul li:first-child a {
    width:190px;
    padding:0;
}

nav ul li:first-child span{
    color:#fff;
    font-weight:bold;
    font-size:15px;
    padding-left:5px;
}

nav ul li:first-child img {
    height:18px;
    vertical-align: middle;
}



/**********************************
 *
 * ボディ
 *
 **********************************/ 
body {
    font-family: '游ゴシック', 'Yu Gothic', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ ゴシック', sans-serif;
    width:100%;
    min-width:1350px;
    height:auto;
    position:relative;
    font-size:14px;
    font-weight:normal;
    line-height:2;
    letter-spacing:0.1em;
    color:#434343;
    background-color:#fff;
}

article {
    clear: both;
    position: relative;
    width:100%;
    padding:80px 0;
}


.inner {
    width:960px;
    padding:0;
    margin:0 auto;
    position:relative;
}




/**********************************
 *
 * フッター
 *
 **********************************/
footer {
    width:100%;
    background-color:#fff;
}

footer h3 {
    width:148px;
    margin:0 auto;
    padding:60px 0 0 0;
}

footer h4 {
    text-align:center;
    padding:5px 0 40px 0;
    color:#626262;
}

footer ul {
    width:850px;
    margin:0 auto 50px;
    display:block;
}

footer ul li {
    float:left;
    padding:0 25px;
}

footer ul li a{
    text-decoration:none;
    color:#707070;
    font-weight:bold;
}

footer ul li a{
    opacity:0.7;
}


footer h5 {
    width:100%;
    padding:25px 0;
    font-size:10px;
    color:#626262;
    border-top:1px solid #626262;
    text-align:center;
}


#pageTop {
    width:80px;
    height:80px;
    position:fixed;
    bottom:80px;
    right:50px;
    background-color:#626262;
    z-index:100;
}

#pageTop a {
    display:block;
    width:80px;
    height:80px;
}

#pageTop a:hover {
    opacity:0.8;
}

#pageTop img {
    width: 23px;
    height: 19px;
    padding: 30.5px 0 0 28.5px;
    text-align: center;
}



/*------------------------------------------------------------*/
/* スマホサイト用
 ------------------------------------------------------------*/
@media screen and (max-width: 780px) {

    * {
        -webkit-box-sizing: border-box;
           -moz-box-sizing: border-box;
             -o-box-sizing: border-box;
            -ms-box-sizing: border-box;
                box-sizing: border-box;
        -webkit-text-size-adjust: 100%;
    }


    /**********************************
     *
     * 共通CSS
     *
     **********************************/ 
	.pcClass{
        display:none;
    }
	.spClass{
        display:block;
    }


    /**********************************
     *
     * ヘッダ
     *
     **********************************/ 
    header {
        width:100%;
        min-width:100%;
        height:45px;
        background-color:rgba(255, 255, 255, 0.6);
    }



    header section {
        width:96%;
        height:45px;
        margin:0 auto;
    }



    /**********************************
     *
     * ナビゲーション
     *
     **********************************/ 

    header h1 {
        width:95px;
        max-width:95px;
        height:17px;
        float:left;
        padding:11px 0 0 0;
    }

     header section h1 img{
        width:100%;
        height:auto;
        position:static;
    	bottom: 0;
        left:0;
        max-width: 100%;
        display: block;
    }

     header section .menu {
        position:absolute;
        top:10px;
        right:0;
        display:block;
        width: 60px;
        height: 35px;
        text-align: center;
    }

    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        cursor:pointer;
    }
    .menu-trigger {
        position: relative;
        width: 30px;
        height: 25px;
    }
    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #55C6F0;
        border-radius: 4px;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 11px;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(12px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-9px) rotate(45deg);
    }

    .cateMenu {
        position:absolute;
        width:100%;
        height:auto;
        top:45px;
        left:0;
        background-color:#55c6f0;
        z-index:100;
        padding:0px 10%;
    }

    .cateMenu ul{
        width:100%;
        padding:40px 0;
    }

    .cateMenu ul li{
        width:100%;
        padding:10px 0;
        text-align:left;
        border-bottom:1px #fff solid;
        position:relative;
    }

    .cateMenu ul li a{
        font-size: 17px;
        width:95%;
        display:block;
        text-decoration:none;
        color:#fff;
        margin: 0 auto;
        padding:0;
        font-weight:bold;
    }


    .cateMenu ul li a span{
        text-decoration:none;
        color:#fff;
        font-size:9px;
        font-weight:normal;
        padding:0 0 0 10px;
    }

    .cateMenu ul li a img{
        position:absolute;
        width:10px;
        top:18px;
        right:0;
    }


    .cateMenu ul li:last-child{
        text-align:center;
        border:none;
        background-color:#ffffff;
        color:#55c6f0;
        margin-top:20px;
    }

    .cateMenu ul li:last-child a{
        font-size: 17px;
        width:95%;
        display:block;
        text-decoration:none;
        color:#55c6f0;
        margin: 0 auto;
        padding:0;
    }

    .cateMenu ul li:last-child a img{
        position:static;
        width:18px;
        top:0;
        right:0;
    }



    /**********************************
     *
     * ボディ
     *
     **********************************/ 
    body {
        min-width:100%;
        font-size:14px;
        line-height:2;
        letter-spacing:0.1em;
    }

    article {
        clear: both;
        position: relative;
        width:100%;
        padding:80px 0;
    }


    .inner {
        width:100%;
        padding:0;
        margin:0 auto;
        position:relative;
    }


    /**********************************
     *
     * フッター
     *
     **********************************/
    footer h3 {
        width:25%;
        max-width:118px;
        margin:0 auto;
        padding:40px 0 0 0;
    }

    footer h3 img {
        width:100%;
    }

    footer ul {
        width:100%;
        margin:0 auto 40px;
        display:block;
        text-align:center;
    }

    footer ul li {
        float:none;
        padding:20px 2% 0 2%;
        font-size:12px;
    }

    footer h4 {
        padding: 5px 0 0 0;
        font-size:10px;
    }

    footer h5 {
        width:100%;
        padding:25px 0;
        font-size:7px;
    }


    #pageTop {
        width:50px;
        height:50px;
        position:aboslute;
        bottom:50px;
        right:1%;
        background:none;
        z-index:100;
    }

    #pageTop a {
        display:block;
        width:50px;
        height:50px;
    }

    #pageTop img {
        width: 50px;
        height: 50px;
        padding: 0;
    }


}
