@charset "utf-8";

/*============================
fonts
============================*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/*============================*/

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-text-size-adjust: 100%;
    overflow-y: scroll;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
    color: #111;
    min-width: 1040px;
    font-family: 'Noto Sans JP', "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    padding: 0;
    margin: 0;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

p {
    padding: 0;
    margin: 0;
}

img {
    -webkit-touch-callout: none;
    -ms-interpolation-mode: bicubic;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    color: #000;
    outline: none;
}

a:active,
a:hover,
a:focus {
    outline: none;
}

a {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

a:hover {
    opacity: 0.6;
}

@media only screen and (max-width: 768px) {
    a {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    a:hover {
        opacity: 1;
    }

    body {
        width: 100%;
        min-width: 0;
    }
}

/*============================
useful
============================*/

.sp-only {
    display: none;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

article .lead {
    font-size: 22px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }

    .pc-only {
        display: none;
    }

    article .lead {
        font-size: 18px;
    }
}

/*============================
top
============================*/

#top {
    width: 100%;
    z-index: 500;
    border-top: 4px solid #47bcff;
}

#top .inner {
    width: 980px;
    margin: auto;
    overflow: hidden;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    padding: 16px 0;
}

.siteTitle {
    width: 200px;
}

.siteTitle a {
    background: url(../images/common/header/hd_logo.png) no-repeat center center;
    width: 100%;
    padding-top: 22.1276%;
    height: 0;
    display: block;
    overflow: hidden;
    -webkit-background-size: 100%;
    background-size: 100%;
}

p.announce {
    font-size: 14px;
    text-align: left;
    margin-left: 20px;
}

@media only screen and (max-width: 768px) {
    #top {
        width: 100%;
        background: #fff;
        position: fixed;
        left: 0;
        top: 0;
    }

    #top .inner {
        height: 51px;
        padding: 0;
    }

    .siteTitle {
        width: 200px;
        padding-left: 10px;
    }

    p.announce {
        display: none;
    }
}

/*============================
nav
============================*/

nav {
    width: 100%;
    background: #0da7ff;
}

.nav-toggle {
    display: none;
}

.globalNav {
    width: 980px;
    margin: auto;
    overflow: hidden;
    background: url(../images/common/nav/line.png) no-repeat right center;
}

.globalNav li {
    float: left;
    width: 16.6666%;
    padding: 18px 0;
    background: url(../images/common/nav/line.png) no-repeat left center;
}

.globalNav li a {
    color: #fff;
    text-decoration: none;
    display: block;
    font-weight: bold;
    letter-spacing: 0.06em;
    font-size: 16px;
}

@media only screen and (max-width: 768px) {
    nav {
        position: relative;
        z-index: 200;
    }

    .nav-toggle {
        position: fixed;
        top: 0;
        right: 0;
        padding-top: 55px;
        display: block;
        overflow: hidden;
        width: 55px;
        height: 0;
        background: url(../images/common/nav/menu.png) no-repeat center center #13489d;
        background-size: 55px;
        -webkit-transition: all 0.4s ease;
        -moz-transition: all 0.4s ease;
        -o-transition: all 0.4s ease;
        transition: all 0.4s ease;
        z-index: 600;
    }

    .open .nav-toggle {
        background-image: url(../images/common/nav/close.png);
    }

    .globalNav {
        position: fixed;
        top: -55px;
        left: 0;
        width: 100%;
        overflow: inherit;
        background: none;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: .5s;
        -moz-transition: .5s;
        transition: .5s;
        text-align: left;
        background: #13489d;
    }

    .open .globalNav {
        position: fixed;
        top: 55px;
        left: 0;
        opacity: 1;
        visibility: visible;
    }

    .globalNav li {
        width: 100%;
        float: none;
        padding: 0;
        border-top: 1px solid #ffffff;
        background: none;
        position: relative;
    }

    .globalNav li a {
        position: inherit;
        padding: 16px;
        width: 100%;
        overflow: inherit;
        height: inherit;
        color: #fff;
        background: none;
        text-decoration: none;
        font-size: 15px;
        font-weight: bold;
    }

    .globalNav li a span {
        font-size: 12px;
        padding-left: 20px;
        font-weight: normal;
    }

    .globalNav li:after {
        top: 0;
        right: 20px;
        bottom: 0;
        margin: auto;
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-left: 6px solid #fff;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
    }
}

/*============================
container
============================*/

.container {
    padding-bottom: 60px;
    text-align: left;
}

.cont_img {
    text-align: center;
    position: relative;
    background: url(../images/common/cont.jpg) no-repeat center center;
    height: 260px;
    -webkit-background-size: cover;
    background-size: cover;
}

.cont h1 {
    text-align: center;
    position: absolute;
    top: 45%;
    left: 50%;
    font-size: 40px;
    font-weight: bold;
    width: 490px;
    margin-top: -24px;
    margin-left: -245px;
    color: #fff;
    text-shadow: 0px 0px 4px #0da7ff;
}

.container .inner {
    width: 980px;
    margin: auto;
}

.cont .container .inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

@media only screen and (max-width: 768px) {
    .container {
        padding-bottom: 0;
    }

    .container .inner {
        width: 90.625%;
        margin: auto;
    }

    .cont_img {
        margin-top: 55px;
        height: 150px;
    }

    .cont h1 {
        width: 300px;
        margin-left: -150px;
        font-size: 20px;
        font-weight: bold;
        margin-top: -10px;
    }
}

/*============================
primary
============================*/

.primary {
    width: 680px;
}

.cont .primary article:not(:first-of-type) {
    margin-top: 60px;
}

.primary article p:not(:first-of-type) {
    margin-top: 20px;
}

.primary img {
    display: block;
    width: 100%;
}

.root {
    font-size: 11px;
    height: 50px;
    line-height: 50px;
}

.cont h2 {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    padding-left: 10px;
    margin-bottom: 25px;
    border-left: 8px solid #0da7ff;
    background-color: #E9E8E8;
}

.cont h3 {
    font-size: 16px;
    font-weight: bold;
    padding: 8px 0;
    padding-left: 10px;
    margin-bottom: 25px;
    border-left: 8px solid #0da7ff;
    border-bottom: 1px solid #E9E8E8;
    margin-top: 50px;
}

@media only screen and (max-width: 768px) {
    .primary {
        width: 100%;
        float: none;
    }

    .cont .primary article:not(:first-of-type) {
        margin-top: 40px;
    }

    .cont h2,
    .cont h3 {
        margin-bottom: 20px;
    }
}


/*============================
table.info
============================*/

table.info {
    width: 100%;
}

table.info tr {
    display: block;
    padding: 6px 0;
    border-bottom: 1px solid #85d7ff;
}

table.info tr:last-child {
    border: none;
}

table.info th {
    width: 140px;
    text-align: center;
    vertical-align: middle;
    background: #0da7ff;
    color: #fff;
    border-radius: 3px;
}

table.info th,
table.info td {
    padding: 14px 0;
}

table.info tr:first-child {
    padding-top: 0;
}

table.info td {
    text-align: left;
    padding-left: 16px;
}


table.info td a {
    display: block;
}

@media only screen and (max-width: 768px) {
    table.info {
        float: none;
        width: 100%;
        font-size: 15px;
    }

    table.info th {
        width: 110px;
        padding: 14px 6px;
        font-size: 14px;
    }

    table.info td {
        padding-left: 10px;
    }
}

/*============================
company
============================*/
#company .list-mark,
#company_info .list-mark{
    position: relative;
    padding-left: 12px;
}

#company .list-mark::before,
#company_info .list-mark::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #0da7ff;
    position: absolute;
    top: 10px;
    left: 0;
    margin: auto;
}

/*============================
Link
============================*/

.link {
    width: 100%;
    margin: auto;
    padding-top: 40px;
    -js-display: flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.link li {
    width: 320px;
    margin: 0 20px;
}

.link li a,
.link li input {
    display: block;
    line-height: inherit;
    width: 100%;
    padding: 13px 0;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.06em;
    color: #fff;
    border: none;
    border-radius: 3px;
    background-color: #13489d;
    position: relative;
}

.link li a::before,
.link li input::before,
.formBtn li::before {
    display: block;
    top: 0;
    right: 20px;
    bottom: 0;
    margin: auto;
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    z-index: 10;
}

.cont .link li {
    width: 290px;
}

@media only screen and (max-width: 768px) {
    .link {
        padding-top: 20px;
    }
    .link li {
        width: 80%;
        margin: 0;
        margin-top: 20px
    }
    .cont .link li {
        width: 80%;
    }
}
/*============================
secondary
============================*/

.secondary {
    width: 260px;
    margin-top: 50px;
}

.secondary dt {
    padding: 12px 0;
    color: #fff;
    background: #0da7ff;
    text-align: center;
    font-weight: bold;
}

.secondary dd {
    padding: 20px;
    font-size: 14px;
    background: #f8f8f8;
}

.secondary .company .address {
    font-size: 14px;
}

.secondary .company .tel {
    font-size: 24px;
    padding-top: 5px;
    font-weight: bold;
}

.secondary .company img {
    width: 100%;
    display: block;
    margin-top: 10px;
}

.secondary .company .contact {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    border-radius: 3px;
    background: #13489d;
    text-align: center;
}

.secondary .company .contact a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .secondary {
        float: none;
        width: 100%;
        margin-top: 40px;
    }
}

/*============================
toTop
============================*/

.toTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 46px;
    height: 46px;
    z-index: 500;
    border-radius: 2px;
    background-color: #13489d;
}

.toTop li a {
    display: block;
    overflow: hidden;
    padding-top: 100%;
    width: 100%;
    height: 0;
    position: relative;
}

.toTop li a::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    .toTop {
        width: 36px;
        height: 36px;
    }
}

/*============================
footer
============================*/

footer {
    padding: 30px 0;
    color: #fff;
    font-size: 12px;
    background: #0da7ff;
    position: relative;
}

footer a {
    color: #fff;
}

.sitelink li {
    display: inline-block;
    border-left: 1px solid #fff;
    padding: 0 15px;
}

.sitelink li:last-child {
    border-right: 1px solid #fff;
}

.copyright {
    font-size: 12px;
    padding-top: 10px;
}


@media only screen and (max-width: 768px) {

    footer {
        padding: 30px 0 60px;
    }

    .sitelink li {
        padding: 0 4px;
        line-height: 12px;
    }
}
