@charset "utf-8";
@import url("common.css");

/* 見出し装飾 -------------------------------------------- */

#contents h1 {
    position: relative;
    padding: 0 .3em .5em;
    margin-bottom: 1em;
    border-bottom: 3px solid #cccc99;
    font-size: 14pt;
    font-family: 'Arial Black','Hiragino Kaku Gothic ProN',
     'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ',
     'YuGothic', '游ゴシック', arial, helvetica, sans-serif;
    clear: both;
}

#contents h1::before {
    position: absolute;
    bottom: -3px;
    left: 0;
    z-index: 2;
    content: '';
    width: 100px;
    height: 3px;
    background-color: #999966;
}

#contents>h2 {
    position: relative;
    padding: 0 .3em .5em;
    margin-bottom: 1em;
    border-bottom: 2px solid #cccc99;
    font-size: 12pt;
    font-family: 'Hiragino Kaku Gothic ProN',
     'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ',
     'YuGothic', '游ゴシック', arial, helvetica, sans-serif;
    clear: both;
}

#main_visual {
    position: relative;
    width: auto;
    height: 300px;
    min-width: 1030px;
    min-height: 300px;
    overflow: hidden;
}

div #title {
    position: absolute;
    display: block;
    top: 0px;
    left: 10%;
    width: 330px;
    height:100%;
    padding:50px 20px 50px;
    color: #ffffff;
    background:rgba(0,0,0,.3);
    /*text-shadow:  0px 0px 1px #666,  0px 0px 5px #666,  0px 0px 6px #666;*/
    /*text-shadow: -1px 1px 0 rgba(0,0,0,1);*/
}

#title p {
    font-size: 1.3rem;
    line-height: .5em;
    font-weight: bold;
    font-family: "arial";
}

#title dt {
    font-size: 2.0em;
    /*margin-left: 5px;*/
    line-height: 1.1em;
}

#title hr {
  border-bottom: 1px solid #fff;
  margin: 10px 0;
}

#title dd {
    /*margin: 5px 0 0 30px;*/
    margin-top: 5px;
    font-size: .8em;
}

div #relatedTags {
    position: absolute;
    display: block;
    bottom: 20px;
    right: 10%;
    width: 230px;
    text-align: right;
}

#relatedTags>a.btn-sm {
    margin-bottom: 3px;
    background: rgba(0,0,0,.3);
    color: #ffffff;
}

#relatedTags>a.btn-sm:hover {
    color: #999966;
}

#relatedTags>.btn-outline-secondary {
    border-color: #ffffff;
}

#relatedTags>.btn-outline-secondary:hover {
    border-color: #999966;
}
/* メイン部分 */

/* コンテンツ部分 */
.article {
    padding: 0 10px;
    clear:both;
    margin-bottom: 20px;
    /*----- フェードインしながら上へスライド -----*/
    transform: translate3d(0, 10px, 0);
    transition: .8s;
    opacity: 0;
}

/*----- フェードインしながら上へスライド -----*/

.fadeInUp {
    transform: translate3d(0, 0, 0);
    opacity: 1.0;
}

.article p {
  overflow: auto;
}

.article img.right {
    float:right;
    margin: 0 0 20px 15px ;
}

.article img.left {
    float:left;
    margin: 0 15px 20px 0;
}

.article img {
    margin: 0 15px 20px 0;
}

