﻿@charset "utf-8";
/* CSS Document */

/* ピクトグラムについてヒューマンピクトグラム2.0に展示しているデータの著作権はTopeconHeroesダーヤマが保持します */

/* 拡大・縮小するナビゲーション */

ul#kaku {
    height: 150px;
}

ul#kaku li {
    float: left;
    margin-right: 30px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

ul#kaku li:hover {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
}

ul#kaku li a {
    width: 100px;
    color: #fff;
    height: 100px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border-radius: 800px;
    -moz-border-radius: 800px;
    -webkit-border-radius: 800px;
    font-weight: bold;
}


/* 回転するナビゲーション */


ul#ten {
    height: 150px;
}

ul#ten li {
    float: left;
    margin-right: 30px;
    text-align: center;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
}

ul#ten li:hover {
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
}

ul#ten li a {
    width: 100px;
    color: #fff;
    height: 100px;
    display: table-cell;
    text-align: center;
    vertical-align: middle;
    border-radius: 800px;
    -moz-border-radius: 800px;
    -webkit-border-radius: 800px;
    font-weight: bold;
}


/* くるくる */


.guruguru {
    display: block;
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    transition: all 1s ease;
    -webkit-transition: all 1s ease;
}


.guruguru:hover {
    transform: rotate(720deg);
    -webkit-transform: rotate(720deg);
}


/* =ぷるぷる= */

.puru {
    text-align: center;
    color: #fff;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    padding: 30px 0;
}

.puru:hover {
    animation: shake 0.5s linear infinite;
    -webkit-animation: shake 0.5s linear infinite;
}

@-webkit-keyframes shake {
    0% {
        -webkit-transform: translate(3px, 2px) rotate(0deg);
    }

    10% {
        -webkit-transform: translate(-2px, -3px) rotate(-1deg);
    }

    20% {
        -webkit-transform: translate(-4px, 0px) rotate(1deg);
    }

    30% {
        -webkit-transform: translate(0px, 3px) rotate(0deg);
    }

    40% {
        -webkit-transform: translate(2px, -2px) rotate(1deg);
    }

    50% {
        -webkit-transform: translate(-2px, 3px) rotate(-1deg);
    }

    60% {
        -webkit-transform: translate(-4px, 2px) rotate(0deg);
    }

    70% {
        -webkit-transform: translate(3px, 2px) rotate(-1deg);
    }

    80% {
        -webkit-transform: translate(-2px, -2px) rotate(1deg);
    }

    90% {
        -webkit-transform: translate(2px, 4px) rotate(0deg);
    }

    100% {
        -webkit-transform: translate(2px, -3px) rotate(-1deg);
    }
}

@keyframes shake {
    0% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    10% {
        transform: translate(-2px, -3px) rotate(-1deg);
    }

    20% {
        transform: translate(-4px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(0px, 3px) rotate(0deg);
    }

    40% {
        transform: translate(2px, -2px) rotate(1deg);
    }

    50% {
        transform: translate(-2px, 3px) rotate(-1deg);
    }

    60% {
        transform: translate(-4px, 2px) rotate(0deg);
    }

    70% {
        transform: translate(3px, 2px) rotate(-1deg);
    }

    80% {
        transform: translate(-2px, -2px) rotate(1deg);
    }

    90% {
        transform: translate(2px, 4px) rotate(0deg);
    }

    100% {
        transform: translate(2px, -3px) rotate(-1deg);
    }
}


/* ================ */




/* デフォルト */

body {
    padding-top: 80px;
    font-size: 2em;
}

@media (min-width: 768px) {
    #banner {
        min-height: 300px;
        border-bottom: none;
    }

    .bs-docs-section {
        margin-top: 8em;
    }

    .bs-component {
        position: relative;
    }

    .bs-component .modal {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        z-index: 1;
        display: block;
    }

    .bs-component .modal-dialog {
        width: 90%;
    }

    .bs-component .popover {
        position: relative;
        display: inline-block;
        width: 220px;
        margin: 20px;
    }

    .nav-tabs {
        margin-bottom: 15px;
    }

    .progress {
        margin-bottom: 10px;
    }
}

/* ここまでデフォルト */

/* 曇りガラスパネル 　JavaScriptあり　*/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.cloudy-bg,
.cloudy {
    background: url(../img/img_top.jpg) no-repeat center;

}

.cloudy {
    color: #000;
    position: relative;
}

.cloudy-bg {
    position: absolute;
    background-clip: content-box;
    width: 100%;
    height: 100%;
    padding: 30px;
    top: 0;
    left: 0;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    filter: blur(0px);
}

.cloudy-in {
    padding: 30px;
    position: relative;
}

.cloudy-main {
    width: 400px;
    margin: 10px 0 10px 90px;
    padding: 30px;
    z-index: 30;
    position: relative;
    border: solid 1px rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.5);
}

@media (max-width: 800px) {
    .cloudy-main {
        width: auto;
    }
}

/* ここまで曇りガラスパネル */

/* 角丸カラム */

.my-radius {
    border: 1px solid #CCC;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 8px;
    font-family: 'Noto Sans JP', cursive;

}

/* 角丸カラム　ここまで */

.wrap{
 display:flex;
}


/* Googleマップをレスポンシブに埋め込む <div class="google-maps">*/

.google-maps {
    position: relative;
    padding-bottom: 35%; // これが縦横比
    height: 0;
    overflow: hidden;
}

.google-maps iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}

/* Googleマップをレスポンシブに埋め込む ここまで*/

div.sbox {
  width: 90%;
  height: 200px;
  overflow: scroll;
  margin-left: auto;
  font-size: 0.8em;
}
