@charset "UTF-8";
/* CSS Document */

/*-----------------
common
-----------------*/
*{margin:0;padding:0;box-sizing:border-box;border:0;outline:0}
html{font-size:62.5%;}
body{font-size:14px;font-size:1.4rem;line-height: 1.75;font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;}
img{vertical-align:middle;max-width:100%;height:auto;}
a{text-decoration:none;color:#004299;transition: all .1s ease-out,color .1s ease-out;}
a:hover {opacity: .7}
ul,li{list-style:none;}

/*-----------------
ヘッダー
-----------------*/
#logo {
    max-width: calc(1200px + 4em);
    margin: 1em auto;
    padding: 0 2em;
}
#title {
    color: #fff;
    background-color: #004299;
    padding: 0.5em 2em;
}
#title h1 {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 26px;
    font-size: 2.6rem;
}
#title h1 a{
    color: #fff;
}
header {
    background-image: url(images/bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.til_logo {
    text-align: center;
    font-size: 24px;
    font-size: 2.4em;
    line-height: 1.3;
    font-weight: bold;
text-shadow: rgba(255, 255, 255, 0.3) 1px 1px 40px, rgba(255, 255, 255, 0.3) -1px 1px 10px, rgba(255, 255, 255, 0.6) 1px -1px 40px, rgba(255, 255, 255, 0.6) -1px -1px 10px;
}
.pnkz-back {
    background-color: #fff;
    padding: 1em 2em;
}
.pnkz {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 12px;
    font-size: 1.2rem;
}
.txt_lead{
    text-align: center;
    margin: 1em;
    font-size: 1.7rem;
}
.top_com {
    font-size: 16px;
    font-size: 1.6rem;
    padding: 0 2em;
    max-width: calc(1200px + 4em);
    margin: 30px auto;
}

/*-----------------
main
-----------------*/
article {
    padding: 4em 2em;
}
article.bg {
    background-color: #e8f6fd;
}
article div {
    margin: 0 auto;
    max-width: 1200px;
}
article div dl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
article div dl dt {
    max-width: 480px;
    width: 40%;
}
article div dl dd {
    width: 55%;
}
.video_wrap {
    position: relative;
    width: 100%;
    padding-top: 60%;
}
.video_wrap > video {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
article h2 {
    margin: 0 0 15px 0;
    font-weight: normal;
    font-size: 30px;
    font-size: 3.0rem;
}
article h2:after {
    content: "";
    width: 70px;
    display: block;
    border-bottom: 3px double #000;
}
article h2 span {
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    margin: 10px 0 -7px;
}
.content {
    margin: 1em auto;
    display: flex;
}
.content a {
    background-color: #004299;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 5px 10px;
    display: block;
    text-align: center;
    border-radius: 5px;
    width: 13em;
    margin: 0 1em 0 0;
}
.content p {
    background-color: #888;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    padding: 5px 10px;
    display: block;
    text-align: center;
    border-radius: 5px;
    width: 13em;
    margin: 0 1em 0 0;
}
.adress {
    background-color: #eee;
    padding: 10px 20px;
    margin: 1em 0 0;
    border-radius: 5px;
}
article.bg .adress {
    background-color: #fff;
}
.adress a {
    margin: 0 2em 0 0;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}
a.js-modal-close {
    position: absolute;
    top: 0;
    right: 15px;
    font-size: 30px;
    font-size: 3.0rem;
}

/*-----------------
footer
-----------------*/
footer {
    padding: 3em 2em;
}
footer ul {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 2em;
    display: flex;
    justify-content: center;
}
footer li {
    align-self: center;
    width: 14em;
    margin: 0 5px;
}
footer p {
    font-size: 12px;
    font-size: 1.2rem;
    text-align: center;
}
footer a {
    background-color: #eee;
    display: block;
    text-align: center;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 16px;
    font-size: 1.6rem;
}
#pagetop {
    position: fixed;
    bottom: 30px;
    right: 20px;
}

/*-----------------
copyright
-----------------*/
.copy-back {
    background-color: #ededed;
    padding: 1em 2em;
    text-align: center;
}
.copy-back p {
    font-size: 12px;
    font-size: 1.2rem;
}

@media screen and (max-width: 780px) {
    #title h1 {font-size:20px;font-size:2.0rem;}
    article div dl dt {
        width: 100%;
    }
    article div dl dd {
        width: 100%;
    }
    .modal__content {
        width: 100%;
        padding: 10px;
    }
    a.js-modal-close {
        z-index: 999;
        top: -50px;
        color: #fff;
    }
    article h2 {font-size: 20px;font-size: 2.0rem;}
    #pagetop {
        position: static;
        text-align: center;
        margin: 3em 0 0;
    }
    footer ul {
        display: block;
    }
    footer li {
        width: auto;
        margin: 0 0 5px;
    }
}