@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*font-family:"Zen Kaku Gothic New", sans-serif;*/
/*font-family:"Plus Jakarta Sans", sans-serif;*/


* {
    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;
    letter-spacing: 0.04em;
    text-align: left;
    line-height: 1.7;
    color: #2f3134;
    min-width: 1040px;
    font-family: "Zen Kaku Gothic New", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Font Awesome 5 Free";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    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;
    display: block;
}

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

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

a,
input {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    cursor: pointer;
}

a:hover,
.link input:hover {
    opacity: 0.6;
}

@media only screen and (max-width: 768px) {
    body {
        width: 100%;
        min-width: 0;
    }

    a {
        -webkit-transition: none;
        -moz-transition: none;
        -o-transition: none;
        transition: none;
    }

    a:hover {
        opacity: 1;
    }

}

/*============================
Clearfix float
============================*/

.clearfix {
    zoom: 1;
    /* for IE */
}

.clearfix:after {
    content: "";
    /*空のコンテンツを挿入 これがないとafterが機能しない*/
    display: block;
    /*表示形式はブロックレベルに指定しないとうまく機能しないブラウザがある*/
    clear: both;
    /*そして、floatの解除をする*/
}

.left {
    float: left;
}

.right {
    float: right;
}

/*============================
flex
============================*/

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

/*============================
脚注文字表記etc.
============================*/

.eng {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.min {
    font-size: 13px;
    display: block;
}

/*============================
表示切り替え
============================*/

.sp-only {
    display: none;
}

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

    /*============================
Clearfix float
============================*/
    .right,
    .left {
        float: none;
        padding: 0;
    }

    /*============================
表示切り替え
============================*/
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/*============================
wrapper
============================*/

.wrapper {
    position: relative;
}

@media only screen and (max-width: 980px) {
    .wrapper {
        padding-top: 57px;
    }
}

/*============================
inner
============================*/

.inner {
    width: 1040px;
    margin: auto;
    overflow: hidden;
}

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

/*============================
header
============================*/

#top {
    position: relative;
    width: 100%;
    background-color: #fff;
    z-index: 80000;
}

#top .site-header {
    transition: .7s;
    width: 100%;
    position: relative;
    background-color: #fff;
}

#top .site-header .inner {
    align-items: center;
}

.siteTitle {
    width: 200px;
    transition: 0.5s;
}

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

/**header 途中から*****/

#top .site-header.transform {
    position: fixed;
    top: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
    background-color: #fff;
}

#top .site-header.transform .siteTitle {
    width: 180px;
}

@media only screen and (max-width: 768px) {
    #top {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        border: none;
        min-width: 0;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 8px;
        padding: 14px 0;
    }

    #top .site-header .inner {
        padding: 0 0 0 8px;
    }

    .siteTitle {
        width: 130px;
        margin: 0;
    }

    .siteTitle a {
        padding-top: 24.7349823%;
        width: 100%;
        background-image: url(../images/common/header/sitetitle_sp.png);
        background-size: 100%;
    }

    /**header 途中から*****/
    #top .site-header.transform {
        position: static;
        box-shadow: none;
    }

    #top .site-header.transform .siteTitle {
        width: 130px;
    }
}

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

#top nav {
    margin-left: auto;
}

#top .globalNav {
    align-items: center;
}

#top .globalNav > li > a {
    color: #2f3134;
    display: block;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.1em;
padding: 15px;
    position: relative;
}

#top .globalNav li a .eng {
    display: block;
    font-size: 10px;
}

#top .mail {
    margin-left: 10px;
    background-color: #004ea2;
    border-radius: 50%;
    height: 35px;
    width: 35px;
    line-height: 35px;
    text-align: center;
}

#top .mail a {
    display: block;
    color: #fff;
    font-weight: bold;
}

#top .tel {
    margin-left: 15px;
    background-color: #004ea2;
    border-radius: 20px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

#top .tel a {
    display: block;
    color: #fff;
    font-weight: bold;
    padding: 0 25px;
    font-family: "Plus Jakarta Sans";
    font-size: 13px;
}

/**header 途中から*****/

#top .transform .globalNav > li > a {
    padding: 12px 15px;
}

#top .transform .globalNav li.custom > a::after {
    top: 0;
    left: auto;
    right: 9px;
    bottom: 0;
    margin: auto;
}

@media only screen and (max-width: 768px) {
    #top nav {
        margin: 0;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        margin-top: 58px;
        background-color: rgba(40, 125, 192, 0.95);
        overflow-y: scroll;
    }

    #top .globalNav li {
        float: none;
        width: 100%;
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, 0.7);
        background-color: transparent;
    }

    #top .globalNav li a {
        overflow: inherit;
        width: 100%;
        height: inherit;
        padding: 17px 0;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        color: #fff;
        font-size: 16px;
        letter-spacing: 2px;
    }

    #top .globalNav li a::after {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 18px;
        margin: auto;
        content: '';
        display: block;
        width: 6px;
        height: 6px;
        border-top: solid 2px #fff;
        border-right: solid 2px #fff;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 10;
    }

    #top .globalNav li a .eng {
        font-size: 13px;
    }

    #top .mail {
        margin-left: 0;
        position: absolute;
        right: 62px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    #top .tel {
        margin-left: 0;
        display: block;
        padding: 0;
        border-radius: 50%;
        height: 35px;
        width: 35px;
        line-height: 35px;
        text-align: center;
        position: absolute;
        right: 110px;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    #top .tel a {
        padding: 0;
    }

    #top .tel a span {
        display: none;
    }

    /**header 途中から*****/
    #top .transform .globalNav li {
        width: 100%;
    }

    #top .site-header.transform .siteTitle {
        width: 130px;
    }

    #top .transform .globalNav > li > a {
        padding: 17px 0;
    }

}

/*============================
menu(sp)  ハンバーガー
============================*/

.menu {
    display: none;
}

@media only screen and (max-width: 768px) {
    .menu {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
        right: 16px;
        z-index: 1000;
        width: 31px;
        height: 23px;
    }

    .menu-trigger,
    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
    }

    .menu-trigger {
        position: relative;
        width: 31px;
        height: 23px;
    }

    .menu-trigger span {
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #004ea2;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 0;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 10px;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }

    /* anime */
    .active .menu-trigger span {
        background-color: #004ea2;
    }

    .active .menu-trigger span:nth-of-type(1) {
        -webkit-transform: translateY(10px) rotate(-45deg);
        transform: translateY(10px) rotate(-45deg);
    }

    .active .menu-trigger span:nth-of-type(2) {
        opacity: 0;
    }

    .active .menu-trigger span:nth-of-type(3) {
        -webkit-transform: translateY(-10px) rotate(45deg);
        transform: translateY(-10px) rotate(45deg);
    }
}

/*============================
cont_img
============================*/

.cont_img {
    text-align: center;
    position: relative;
    background: url(../images/common/cont_img.jpg) no-repeat center center;
    background-size: cover;
    height: 325px;
    align-items: center;
    justify-content: center;
}

.cont_img h1 {
    line-height: 1.3;
    font-size: 36px;
    letter-spacing: 0.1em;
    color: #004ea2;
    font-weight: bold;
}

.cont_img h1 span {
    display: block;
}

.cont_img h1 span.eng {
    font-size: 20px;
    font-weight: 500;
}

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

    .cont_img h1 {
        font-size: 25px;
    }

    .cont_img h1 span.eng {
        font-size: 14px;
        font-weight: 500;
    }
}

/*============================
パンくず
============================*/

.root {
    font-size: 14px;
    padding: 15px 20px;
    background-color: #e9f6fd;
    font-family: "Plus Jakarta Sans";
}

.root ul {
    display: flex;
    overflow: hidden;
}

.root li {
    position: relative;
    letter-spacing: 0.06em;
    padding-bottom: 0;
    white-space: nowrap;
}

.root li::before {
    content: '>';
    margin: 0 5px;
}

.root li:first-child {
    margin-left: 0;
}

.root li:first-child:before {
    display: none;
}


@media only screen and (max-width: 768px) {
    .root {
        overflow-x: auto;
        font-size: 13px;
    }
}

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

.cont .container {
    width: 1040px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: left;
    overflow: hidden;
}

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

    .cont .container {
        width: 100%;
        padding-top: 40px;
        padding-bottom: 0;
    }
}

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

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

.cont .link {
    padding-top: 80px;
}

.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: 500;
    text-align: center;
    letter-spacing: 0.06em;
    color: #fff;
    border: none;
    border-radius: 28px;
    background-color: #004ea2;
    position: relative;
}

.link li a::before,
.link li input::before,
.formBtn li::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 18px;
    margin: auto;
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    z-index: 10;
}

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

@media only screen and (max-width: 768px) {
    .link {
        padding-top: 20px;
    }

    .cont .link {
        padding-top: 20px;
    }


    .link li {
        width: 80%;
        margin: 0;
        margin-top: 20px
    }

    .cont .link li {
        width: 80%;
    }
}


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

.primary {
    width: 760px;
    float: left;
}

.cont .primary article {
    padding-top: 100px;
}

.cont .primary article:first-of-type {
    padding-top: 0;
}

.primary .inner p {
    margin-top: 13px;
}

.primary .inner p.catch,
.primary .inner h3.catch {
    font-size: 22px;
    font-weight: 500;
}

.primary .inner p:first-of-type {
    margin-top: 0;
}

.cont .primary .inner {
    width: 100%;
}

.cont h2 {
    font-size: 18px;
    padding: 15px 0;
    padding-left: 20px;
    margin-bottom: 40px;
    border-left: 8px solid #004ea2;
    background: #e9f6fd;
}

.cont h3 {
    padding: 10px;
    margin-top: 40px;
    margin-bottom: 30px;
    clear: both;
}

.cont h4 {
    font-size: 16px;
    margin: 30px 0 10px;
}

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

    .primary {
        width: 90.625%;
        margin: auto;
        float: none;
    }

    .cont .primary article {
        padding-top: 40px;
    }

    .cont h2 {
        font-size: 16px;
        margin-bottom: 20px;
        padding: 10px 0 10px 8px;
    }

    .cont h3 {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .primary .inner p.catch,
    .primary .inner h3.catch {
        font-size: 20px;
    }
}


/*============================
table
============================*/

table.info {
    width: 100%;
}

table.info tr {
    display: block;
    padding-bottom: 10px;
}

table.info tr:last-child {
    padding-bottom: 0;
}

table.info th {
    width: 140px;
    text-align: center;
    vertical-align: middle;
    background: #004ea2;
    color: #FFF;
    border-radius: 5px;
    font-weight: 500;
}

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

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

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

table.info td li {
    padding-top: 20px;
    list-style-type: none;
}

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

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

table.info td dt:first-of-type {
    padding-top: 0;
}

table.info td strong {
    display: block;
}

a.google::before {
    content: '\f3c5';
    font-weight: 900;
    margin-right: 5px;
    color: #c0e155;
}

a.google {
    display: block;
    margin: 5px 0;
    font-weight: bold;
}

/* googlemap */

#map {
    width: 100%;
    height: 400px;
}

#map iframe {
    width: 100%;
    height: 100%;
}

.cont #map {
    margin-top: 40px;
}

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

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

    table.info th {
        width: 100px;
        font-size: 13px;
    }

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

    /* googlemap */
    #map {
        height: 300px;
    }

    .cont #map {
        margin-top: 20px;
    }
}


/*============================
secondary
============================*/

.secondary {
    width: 245px;
    float: right;
}

.secondary .banner li a {
    display: block;
}

.secondary .banner li a img {
    width: 100%;
}

/* 会社概要 */

.company {
    margin-top: 30px;
}

.company .photo img {
    width: 100%;
}

.company dl {
    background: #e8f7fc;
    padding: 20px;
    padding-bottom: 30px;
    font-size: 15px;
}

.company dd strong {
    padding-top: 15px;
    padding-bottom: 4px;
    display: block;
}

.company dd span {
    padding-top: 5px;
    display: block;
}

.company a.google i {
    margin-bottom: 15px;
}

.company li.btn {
    margin-top: 15px;
}

.company .btn a {
    padding: 12px;
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    background-color: #004ea2;
}

@media only screen and (max-width: 768px) {
    .secondary {
        padding: 0;
        margin: 0;
        float: none;
        width: 100%;
        border-top: 1px solid #d9d9d9;
        margin-top: 70px;
    }

    .secondary .banner {
        width: 90.625%;
        margin: auto;
        padding: 30px 0;
    }

    .secondary .banner li {
        width: 100%;
    }

    .company {
        margin: 0;
    }

    .company dl {
        padding-bottom: 30px;
    }

    .company .btn a {
        padding: 20px 0;
    }
}

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

.toTop {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10000;
}

.toTop li a {
    padding-top: 45px;
    display: block;
    overflow: hidden;
    width: 45px;
    height: 0;
    background: url(../images/common/footer/totop.png) no-repeat center top rgba(28, 106, 189);
}

@media only screen and (max-width: 768px) {
    .toTop li a {
        width: 40px;
        height: 40px;
        padding-top: 40px;
        background-image: url(../images/common/footer/totop_sp.png);
        background-size: 40px;
    }
}

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

footer {
    background: #e9f6fd;
}

footer .inner {
    position: relative;
    padding: 100px 0;
}

footer .detail {
    color: #2f3134;
    font-size: 15px;
}

footer .detail .siteTitle {
    margin-bottom: 20px;
}

footer .footer-nav .sitelink {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
}

footer .footer-nav .sitelink li {
    border-left: 1px solid #d9d9d9;
}

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

footer .footer-nav .sitelink li a {
    display: block;
    color: #2f3134;
    text-align: center;
    padding: 0 20px;
    letter-spacing: 0.1em;
    font-weight: 500;
}

footer .footer-nav .sublink {
    overflow: hidden;
    padding: 15px 0;
}

footer .footer-nav .sublink li {
    float: left;
    margin-right: 23px;
}

footer .footer-nav .sublink li a {
    color: #2f3134;
    position: relative;
    padding-left: 10px;
    font-size: 13px;
    line-height: 1;
}

footer .footer-nav .sublink li a::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid #287dc0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

footer .footer-nav .contact {
    display: inline-block;
    background-color: #004ea2;
    color: #fff;
    padding: 8px 40px;
    border-radius: 25px;
    font-weight: 500;
    text-align: center;
}

footer .copyright {
    text-align: center;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 15px 0;
    color: #FFF;
    background-color: #1c6abd;
}

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

    footer .inner {
        position: relative;
        width: 90.625%;
        padding: 40px 0;
        display: block;
    }

    footer .detail {
        font-size: 14px;
    }

    footer .detail .siteTitle {
        margin: 0;
        margin-bottom: 15px;
    }

    footer .footer-nav .sitelink {
        padding: 20px 0;
    }

    footer .footer-nav .sitelink li {
        border-left: none;
        background: #287dc0;
        width: 49%;
        margin-bottom: 2%;
        border-radius: 3px;
    }

    footer .footer-nav .sitelink li:last-child {
        border-right: none;
    }

    footer .footer-nav .sitelink li a {
        padding: 10px 0;
        color: #fff;
    }

    footer .footer-nav .contact {
        display: block;
        padding: 15px 0;
    }
}

/*============================
common_js
============================*/

.sa {
    opacity: 0;
    transition: all 0.8s ease;
}

.sa.show {
    opacity: 1;
    transform: none;
}

.sa--lr {
    transform: translate(-100px, 0);
}

.sa--rl {
    transform: translate(100px, 0);
}

.sa--up {
    transform: translate(0, 100px);
}

.sa--down {
    transform: translate(0, -100px);
}

.sa--scaleUp {
    transform: scale(.5);
}

.sa--scaleDown {
    transform: scale(1.5);
}

.sa--rotateL {
    transform: rotate(180deg);
}

.sa--rotateR {
    transform: rotate(-180deg);
}
