/*フォント*/

body {
    font-family: 'Noto Sans JP', sans-serif;
}

/* メニューバー */
.menu-item {
    color: navy;
    list-style: none;
    display: inline-block;
    padding: 10px;
    font-size: 100%;
}

/* メニューバーのaタグ */
nav a{
    color: navy;
    text-decoration: none;
}

/* 幅を強制的に100pxにしたいとき */
.width-100px {
    width: 100px !important;
}

/* 幅を強制的に150pxにしたいとき */
.width-150px {
    width: 150px !important;
}

/* フラッシュメッセージ */
.flash{
    font-size: 16px;
    margin-left: -10px;
    border-bottom: 0.5px solid white;
    width: 70vw;
    color: white;
    padding-left: 20px;
    border-radius: 5px 5px 5px 5px;
}

/* フラッシュメッセージ 成功 */
.success{
    background-color: deepskyblue;
}

/* フラッシュメッセージ 失敗 */
.failed{
    background-color: hotpink;
}

/* アイコンのサイズ */
.icon_size_50 {
    /* 上下中央寄せ */
    vertical-align: middle; 
    /* 画像のサイズ */
    width: 50px;
    height: 50px;
    margin-left: 20px;
    margin-right: 20px;
}

/* アイコンのサイズ */
.icon_size_30 {
    /* 上下中央寄せ */
    vertical-align: middle; 
    /* 画像のサイズ */
    width: 30px;
    height: 30px;
    margin-left: 20px;
    margin-right: 20px;
}

/* アイコン用のテキスト */
.icon_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 文字列点滅用 */
.blink {
    -webkit-animation: blink 1s ease infinite;
    animation: blink 1s ease infinite;
}
@-webkit-keyframes blink {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@keyframes blink {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/* google maps ラベル*/
.labels {
    color: #ffffff;
    /* background: #000000; */
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    text-align: center;
    padding: 2px 10px;
    border-radius: 8px;
    opacity:0.3;
}

/* --- トグルボタン --- */
.switch__label {
    width: 50px; /* 変更 */
    position: relative;
    display: inline-block;
}
.switch__content {
    display: block;
    cursor: pointer;
    position: relative;
    border-radius: 25px;
    height: 20px;
    overflow: hidden;
}
.switch__content:before {
    content: "";
    display: block;
    position: absolute;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    top: 0;
    left: 0;
    border: 1.5px solid #E5E5EA;
    border-radius: 30px;
    background-color: #fff;
}
.switch__content:after {
    content: "";
    display: block;
    position: absolute;
    background-color: transparent;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    border-radius: 30px;
    -webkit-transition: all .1s;
       -moz-transition: all .1s;
        -ms-transition: all .1s;
         -o-transition: all .1s;
            transition: all .1s;
}
.switch__input {
    display: none;
}
.switch__circle {
    display: block;
    top: 2px;
    left: 2px;
    position: absolute;
    -webkit-box-shadow: 0 2px 6px #999;
            box-shadow: 0 2px 6px #999;
    width: 18px;
    height: 18px;
    -webkit-border-radius: 20px;
            border-radius: 20px;
    background-color: #fff;
    -webkit-transition: all .1s;
       -moz-transition: all .1s;
        -ms-transition: all .1s;
         -o-transition: all .1s;
            transition: all .1s;
}
.switch__input:checked ~ .switch__circle {
    left: 25px;
}
.switch__input:checked ~ .switch__content:after {
    background-color: #00c4cc;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}