@charset "utf-8";
html {
font-size: 62.5%;
}

body {
font-size: 1.4rem;
font-family: "Meiryo", "MS PGothic", Arial, "ヒラギノ角ゴ Pro W3", sans-serif;
text-size-adjust: 100%;
/* iPhone Safari 文字の自動調節解除 */
-webkit-text-size-adjust: 100%;
}

input, textarea {
font-family:monospace;
font-weight: normal;
}

h1 {
position: relative;
top: 0;
left: 0;
margin: 0;
padding: 6px 20px 6px 6px;
font-size: 0.9em;
text-align: right;
color: #fff;
letter-spacing: 1px;
background-color: #5C849E;
}

h2 {
color: #5C849E;
font-weight: bold;
font-size: 1.4em;
letter-spacing: 3px;
margin: 24px 0px;
}

h3 {
display: block;
color: #444;
font-size: 1.0em;
letter-spacing: 2px;
font-weight: bold;
}

@media (max-width:980px) {
    .navbar-default .navbar-nav > li > a {
    font-size: 15px;
    }
}

@media (max-width:768px) {
    .navbar-brand img {
    left: -20px;
    }
    h1 {
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 22px;
        font-size: 1.1rem;
    }
    #public-navigation-main {
        position: fixed;
        z-index: 999;
        width: 100%;
        top: 22px;
    }
    body {
        padding-top: 74px;
    }
    .navbar-default .navbar-nav > li {
        padding: 0 0 0 10px;
    }
    .navbar-default .navbar-nav > li > a {
        padding-top   : 12px;
        padding-bottom: 12px;
    }
}
@media (max-width:415px) {
    #public-footer li {
        padding: 4px 0px 4px 10px;
        margin: 8px 0px;
        width: 140px;
    }
}

#mainbody {
    max-width: 700px;
    width: 100%;
    margin: 0px auto;
}

#mainbody {
    position: relative;
    padding: 1.5rem;
}

#mainbody h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin: 8px 0px 8px 0px;
    background-color: #f0f0f0;
    padding: 8px;
    border-left: 6px solid #777;
}

#mainbody p {
    font-size: 1.4rem;
    line-height: 1.8em;
    margin: 8px 0px 16px 0px;
}

.concerned {
    position: absolute;
    margin: 0;
    right: 27em;
}
.concerned + ul {
    margin: 0 0 2em auto;
    width: 28em;
    list-style: none;
}
/*
.concerned + ul > li:last-child::after {
    content: "\329E";
    position: absolute;
    right: 1em;
}
*/
.bg-skipdream {
    background-color: #5cb874;
}
.indent1 {
    padding-left: 3em;
    text-indent: 0em;
    line-height: 2;
}
.indent2 {
    padding-left: 6em;
    text-indent: 0m;
    line-height: 2;
}
.indent3 {
    text-align: right;
    padding-left: 6em;
    text-indent: 0m;
    line-height: 2;
}
.redcolor {
    color: red;
}
.bluecolor {
    color: blue;
}


.closewindow{
    margin-top: 10px;
}


a {
    color: #5cb874;
}
  
a:hover {
    color: #80c792;
    text-decoration: none;
}


.items {
    list-style: none;
}


/*レスポンシブで表示させた際、右側に余白出来る現象を回避する*/
.wrap {
	overflow: hidden;
}


/*YouTube動画を表示、再生させる為の各種設定*/
.video-box {
    position: relative;
}
.video-box img {
    padding: 15px 0;
}
.video-box a {
    position: absolute;
}

.play-btn {
    width: 47px;
    height: 47px;
    background: radial-gradient(#428bca 50%, rgba(66, 139, 202, 0.4) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    left: calc(50% - 23px);
    top: calc(50% - 23px);
    overflow: hidden;
}
  
.play-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
  
.play-btn::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation: pulsate-btn 2s;
    animation: pulsate-btn 2s;
    -webkit-animation-direction: forwards;
    animation-direction: forwards;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: steps;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid rgba(66, 139, 202, 0.7);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}
  
.play-btn:hover::after {
    border-left: 15px solid #428bca;
    transform: scale(20);
}
  
.play-btn:hover::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    -webkit-animation: none;
    animation: none;
    border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
}
  
@keyframes pulsate-btn {
    0% {
      transform: scale(0.6, 0.6);
      opacity: 1;
    }
    100% {
      transform: scale(1, 1);
      opacity: 0;
    }
}