/* ------------------------------------------------------------------------ */
/* base

/* ------------------------------------------------------------------------ */
html {
    height: -webkit-fill-available;
}
body {
    margin: 0;
    padding: 0;
    font-family: "Yu Gothic UI", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    color: #000000;
    font-weight: normal;
    font-size: 14px;
    line-height: 1.3rem;
    min-height: -webkit-fill-available;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}
ol, ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
    color: #222222;
    text-decoration: none;
}
p {
    margin-bottom: 0;
}
button:focus {
    box-shadow: none !important;
}
/* ------------------------------------------------------------------------ */
/* header

/* ------------------------------------------------------------------------ */
header {
    background-color: #fff;
}
header .logo {
    display: inline-block;
    margin-left: 10px;
    width: 356px;
    height: 38px;
    font-size: 0;
    cursor: default;
    background: url("../images/logo.svg") no-repeat;
    background-position: center center;
}
/*header .title {
  display: inline-block;
  width: 240px;
  height: 30px;
  font-size: 0;
  background: url("../images/logo_dnsol.webp") no-repeat;
  background-position: center center;
}*/
header .navbar {
    padding: 20px 15px;
}
header .navbar .nav li a {
    color: #4A4A4A;
    font-weight: bold;
    margin-left: 10px;
    border-radius: 50px;
    border: #707070 1px solid;
    transition: .3s;
}
header .navbar .nav li a:hover {
    color: #fff;
    background: #4A4A4A;
    border: #4A4A4A 1px solid;
}
header .navbar .nav li.red a {
    color: #fff;
    border: #E6001B 1px solid;
    background: #E6001B;
}
header .navbar .nav li.red a:hover {
    background: #B70015;
    border: #B70015 1px solid;
}
header #banner {
    background: #E4F2F8;
    text-align: center;
}
@media (max-width: 767.98px) {
    header .navbar .container-fluid {
        display: block;
    }
    header .navbar .nav li {
        margin-top: 20px;
        margin-right: 0;
        margin-left: 0;
    }
    header .navbar .nav li a {
        margin-left: 0;
        margin-right: 10px;
    }
    header .logo {}
}
@media (max-width: 575.98px) {
    header .navbar {
        padding: 15px 10px 20px;
    }
    header .logo {
        width: 330px;
        margin-left: 0;
        background-size: 90%;
    }
    header .navbar .nav {
        justify-content: center !important;
    }
    header .navbar .nav li a {
        font-size: 12px;
    }
    header .btn-home {
        font-weight: bold;
        background: #f7f7f7;
        padding: 10px;
        text-align: center;
    }
}
/* ------------------------------------------------------------------------ */
/* sp-title-area

/* ------------------------------------------------------------------------ */
.sp-title-area {
    display: none;
    padding: 25px 20px;
    width: 90%;
    margin: -40px auto 20px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 30px -10px rgba(0,0,0, 0.4);
    z-index: 10;
}
.sp-title-area .info {
    padding: 10px 0;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.2em;
    border-bottom: #707070 solid 1px;
}
@media (max-width: 767.98px) {
    .sp-title-area {
        display: block;
    }
}
/* ------------------------------------------------------------------------ */
/* mainvisual

/* ------------------------------------------------------------------------ */
#mainvisual {
    position: relative;
    padding: 0 20px;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.6);
}
#mainvisual .title-area {
    display: block;
    position: absolute;
    top: 60px;
    left: 60px;
    padding: 40px 40px;
    width: 440px;
    background: rgba(255, 255, 255, 0.7);
}
#mainvisual .info {
    padding: 15px 0 20px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5em;
    border-bottom: #707070 solid 1px;
}
#mainvisual #video-area {
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
#mainvisual #video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 177.77777778vh;
    height: 56.25vw;
    min-height: 100%;
    min-width: 100%;
}
@media (max-width: 767.98px) {
    #mainvisual {
        background: none;
    }
    #mainvisual .title-area {
        display: none;
    }
}
/* ------------------------------------------------------------------------ */
/* main

/* ------------------------------------------------------------------------ */
main {
    margin-top: 40px;
    text-align: center;
}
main .lead {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 30px;
}
main h2 {
    font-size: 24px;
    margin-bottom: 20px;
}
main section {
    text-align: left;
    margin-bottom: 40px;
}
main section h3 {
    width: fit-content;
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: solid 3px #e7e7e7;
    position: relative;
}
main section h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 3px #E6001B;
    bottom: -3px;
    width: 30px;
}
main section .row {
    margin-bottom: 40px;
}
main section .row .tit {
    font-weight: bold;
    font-size: 19px;
    margin-bottom: 10px;
}
main section .row .txt {
    margin-bottom: 10px;
    line-height: 2em;
}
/* ------------------------------------------------------------------------ */
/* pickup

/* ------------------------------------------------------------------------ */
#pickup {
    text-align: center;
    margin-bottom: 100px;
}
#pickup .pic {
    margin: 0 auto;
    width: fit-content;
    position: relative;
    margin-bottom: 10px;
}
#pickup .pic a {
    transition: .1s;
}
#pickup .pic a:hover {
    opacity: .6;
}
#pickup .pic img {
    border: #ccc solid 1px;
    box-shadow: #ccc 10px 10px 15px -10px;
}
#pickup .ico {
    position: absolute;
    bottom: 1px;
    right: 1px;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
}
#pickup .caption {
    margin-bottom: 10px;
}
/* ------------------------------------------------------------------------ */
/* information

/* ------------------------------------------------------------------------ */
#info {
    margin-bottom: 40px;
}
#info .pic {
    padding: 60px;
    text-align: center;
    border: #ccc solid 1px;
}
#info .table-bordered {
    margin-bottom: 30px;
    border: #ccc solid 1px;
}
#info .table-bordered a {
    display: inline-block;
    margin-left: 5px;
    font-weight: bold;
    color: #425283;
}
#info .table-bordered a:hover {
    text-decoration: underline;
}
#info .list-area {
    margin-bottom: 40px;
}
#info .list-area .list-title {
    margin-bottom: 5px;
    color: #707070;
    font-size: 16px;
    font-weight: bold;
}
#info .list-area ol {
    margin-bottom: 20px;
}
#info .list-area ol li {
    margin-bottom: 5px;
}
@media (max-width: 767.98px) {
    #info {
        margin-bottom: 30px;
    }
    #info .pic {
        padding: 30px;
    }
}
/* ------------------------------------------------------------------------ */
/* link

/* ------------------------------------------------------------------------ */
#link {
    text-align: center;
    margin-bottom: 0;
}
#link p {
    margin: 10px;
    display: inline-block;
}
#link .footer-qr img {
    width: 80px;
}
/* ------------------------------------------------------------------------ */
/* footer

/* ------------------------------------------------------------------------ */
footer {
    text-align: center;
    color: #FFFFFF;
    background-color: #425283;
}
footer #pic {
    margin-bottom: 60px;
    border-bottom: #fff solid 1px;
}
footer #pic .row div {
    border-right: #fff solid 1px;
}
footer #pic .row div:last-child {
    border-right: none;
}
footer #contact .button a {
    display: block;
    color: #425283;
    font-size: 16px;
    font-weight: bold;
    padding: 20px 10px;
    margin-bottom: 20px;
    border-radius: 100px;
    background: #fff;
}
footer #contact .button a:hover {
    opacity: .8;
}
footer #contact .text {
    margin-bottom: 20px;
}
footer #contact .box {
    font-size: 16px;
    text-align: center;
    padding: 20px 0;
    margin-bottom: 60px;
    border: #fff solid 1px;
}
footer #contact .box .ico {
    font-size: 14px;
    margin-bottom: 5px;
}
footer #contact .box .ico i {
    width: 23px;
    text-align: center;
    font-size: 10px;
    color: #fff;
    background-color: #707070;
    padding: 7px 0;
    border-radius: 50px;
}
footer #copy {
    padding: 5px;
    font-size: 12px;
    background-color: #222222;
}
@media (max-width: 1199.98px) {
    footer #contact .box {
        text-align: left;
        padding: 20px 0 20px 110px;
    }
}
@media (max-width: 575.98px) {
    footer #contact .box {
        padding: 20px 0 20px 20px;
    }
}
/* ------------------------------------------------------------------------ */
/* pagetop

/* ------------------------------------------------------------------------ */
#pagetop {
    position: fixed;
    right: 15px;
    bottom: 20px;
    z-index: 1000;
}
@media (max-width: 575px) {
    #pagetop {
        display: none !important;
    }
}