@charset "UTF-8";


/* 基本設定 */
body {
    font-family: 'メイリオ','Hiragino Kaku Gothic Pro','sans-serif';
    color: #202f55;
    margin: 0;
}

body a {
    color: #bf6a7a;
    text-decoration: none;
}

p {
   line-height: 1.5;
}

p.spec {
    color: #bf6a7a;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 0.8em;
}


span.cau{
    color: #c9011f;
    font-size: 0.8em;
}

/* header */
.pageheader {
    position: absolute;
    display: inline-block;
    line-height: 15px;
    padding-left: 10px;
    padding-right: 10px;
}

.notop .pageheader{
    position: static;
    background-color: #000000;
}

.head-color {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    line-height: 15px;
    background-color: #000000;
}

.top {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 60vh;
    min-height: 450px;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url(../img/top.jpg);
    background-position: center;
    background-size: cover;
    color: #ffffff;
}

.top p {
    margin-top: 10;
    margin-bottom: 0;
    font-size: 20px;
}

.top a {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    border: solid 2px currentColor;
    border-radius: 6px;
    background-color: #bf6a7a;
    font-size: 14px;
    color: #ffffff;
}

.top a:hover {
    background-image: linear-gradient(rgba(255,255,255,0.2),rgba(255,255,255,0.2));
}

/* footer */
footer {
    color: #ffffff;
    background-color: #2b5566;
}

footer .container{
    padding: 30px 20px;    
}

@media (min-width: 768px) {
    footer .container {
        display: flex;
        flex-wrap: wrap;
        max-width: 1000px;
        margin: auto;
    }

    .info {
        flex: 0 0 40%;
    }
    
    .menu {
        flex: 0 0 60%;
    }
    
    .copyright {
        flex: 0 0 100%;
    }
}

.info {
    margin-bottom: 30px;
}

.info h2 {
    margin-top: 0;
    margin-bottom: 0px;
}

.info p {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 20px;
    font-size: 14px;
}

.menu div {
    margin-top: 10px;
    margin-bottom: 20px;
}

.menu h3 {
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: dotted 1px currentColor;
    font-size: 14px;
}

.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu a {
    display: block;
    padding: 5px;
    color: inherit;
    font-size: 12px;
    text-decoration: none;
}

.menu a:hover {
    background-color: rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
    .menu {
        display: flex;
    }
    
    .menu div {
        flex: 1;
    }
    
    .menu div:not(:first-child) {
        margin-left: 40px;
    }
}

.copyright {
    font-size: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

/* menu */
.navigation {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
}

.navigation ul{
    padding-left: 0px;
}

.navigation ul li{
    margin: 0px;
    padding: 10px 20px;
    display: inline-block;
    list-style: none;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.navigation a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #202f55;
}

.navigation a::after {
  position: absolute;
  bottom: -8px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #bf6a7a;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.navigation a:hover::after {
  bottom: -4px;
  opacity: 1;
  visibility: visible;
}

.side-column {
    vertical-align: top;
    text-align: center;
}

/* PC */
@media(min-width: 850px){
    /* レイアウト全体 */
    .page-cover {
        display: table;
        width: 100%;
    }
    /* main */
    .main-column {
        display: table-cell;
    }

    /* menu */
    .side-column {
        display: table-cell;
        width: 10%;
        padding-top: 40px;
    }
    
}

/* 更新履歴 */
.new dl {
    margin: 20px;
    padding: 10px;
    line-height: 1.8;
    width: 60%;
    font-size: 14px;
}

.new dl dt {
    width: 6em;
    float: left;
    margin: 0;
    padding: 0 0 0 5px;
    font-weight: bold;
    color: #2b5566;
}

.new dl dd {
    position: relative;
    margin: 0 0 10px;
    padding: 0 5px 10px 13em;
    border-bottom: 1px dotted;
}

.new dl dd span.cat {
    display: block;
    position: absolute;
    top: 0;
    left: 6.5em;
    width: 4.5em;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #dcdcdc;
    border-radius: 5px;
}

.new dl dd a {
    color: #202f55;
}

.new dl dd a:hover {
    background-image: linear-gradient(rgba(0,102,204,0.3),rgba(0,102,204,0.3));
}

.new dl p {
    padding-left: 0.5rem;
    border-left: solid 0.5rem;
    border-bottom: 1px dotted;
}

@media(max-width:767px) {
    .new dl {
        margin: auto;
        width: 90%;
    }
    
    .new dl dt {
        width: 100%;
    }
    
    .new dl dd {
        margin-left: 0;
        padding-left: 5px;
    }
    
    .new dl dd span.cat {
        left: 5.5em;
    }
}