@charset "UTF-8";

/* --------------------------------------------------
BASE
-------------------------------------------------- */
* {
    box-sizing:border-box;
}

html {
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: 1rem;
    line-height: 3em;
    color:#38383A;
    letter-spacing: 0.03em;
}

img {
    max-width:100%;
    width:auto;
    height:auto;
}

p,a,li,dt,dd,th,td {
    font-size:1.4rem;
}

a {
    text-decoration: none;
    color:#38383A;
}

small {
    font-size:1.2rem;
}

th {
    font-weight:normal;
}

h2,h3,h4 {
    font-weight:normal;
}

.txt-c {
    text-align:center;
}

li {
    list-style-type:none;
}

em {
    font-style:normal;
}

.img {
    line-height:0;
}

.img img {
    width:100%;
    height:auto;
}

.sp-br {
    display:none;
}

#main {
    max-width:1600px;
    margin:0 auto;
    overflow-x:hidden;
}

@media (max-width: 600px) {
    .sp-br {
        display:block;
    }
}

/* margin
-------------------------------- */
.mb10 {
    margin-bottom:10px;
}

.mb20 {
    margin-bottom:20px;
}

.mb30 {
    margin-bottom:30px;
}

.mb40 {
    margin-bottom:40px;
}

.mb50 {
    margin-bottom:50px;
}

.mb60 {
    margin-bottom:60px;
}

.mb70 {
    margin-bottom:70px;
}

/* cf
-------------------------------- */
.cf:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.cf {
    display: inline-table;
}

/* Hides from IE-mac */
* html .cf {
    height: 1%;
}

.cf {
    display: block;
}


/* --------------------------------------------------
LAYOUT
-------------------------------------------------- */
.l-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content:space-between;
}

#l-side {
    width:250px;
    position:fixed;
    border-left:7px solid #4172b4;
    border-right:7px solid #fff;
    text-align:center;
    box-shadow: 2px 2px 7px rgba(238,238,238,0.7);
    height:100%;
}

@media (min-width: 1001px) {
    #l-side .l-side-inner {
        overflow-y: scroll;
        height: 100%;
    }
}

#l-main {
    width:100%;
    padding:20px 0 0 250px;
}

.l-container {
    padding:0 30px;
}

.l-column-2 {
    width:49%;
    float:left;
}

.l-column-2:nth-child(even){
    margin-left:2%;
}

@media (max-width: 1200px) {
    #l-side {
        width:220px;
    }

    #l-main {
        padding:30px 0 0 220px;
    }
}

@media (max-width: 1000px) {
    #l-side {
        width:100%;
        position:fixed;
        bottom:-200%;
        background:#fff;
        transition:0.5s;
    }

    .open #l-side {
        top:auto;
        bottom:0;
        height:auto;
        z-index:100;
        border:none;
        padding:0 20px 120px;
    }

    .open .overlay {
        display: block;
        position: fixed;
        z-index: 90;
        top: 0;
        left: 0;
        /* display: none; */
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,.2);
    }

    .gnav-btn-list {
        display:none;
    }

    #l-main {
        padding:30px 0 0 0;
    }

    .l-container {
        padding:0 20px;
    }
}

@media (max-width: 600px) {
    .open #l-side {
        padding:20px 20px 100px;
    }

    .l-container {
        padding:0 15px;
    }
}

@media (max-width: 400px) {
    .l-container {
        padding:0 10px;
    }
}

/* --------------------------------------------------
MODULE
-------------------------------------------------- */
.logo {
    width:100px;
    margin:20px auto 30px;
}

.logo img {
    width:100%;
    height:auto;
}

#gnav {
    display:inline-block;
    text-align:left;
}

.gnav-list {
    margin-bottom:15px;
}

.gnav-list li {
    margin-bottom:14px;
}

.gnav-list li a {
    font-size:1.2rem;
    letter-spacing:0.25em;
    line-height:1.7em;
    display:block;
}

.pc .gnav-list li a {
    transition:0.5s;
    color:#3891F5;
}

.pc .gnav-list li a:hover {
}

.gnav-list li span {
    display:block;
    font-family: 'Lato', sans-serif;
    font-size:1.6rem;
    color:#333;
    font-weight:700;
    margin-bottom:1px;
}

.gnav-btn-list li {
    margin-bottom:13px;
}

.gnav-btn {
    text-align:left;
    padding:9px 20px;
    font-size:1.4rem;
}

.btn {
    display:block;
    color:#fff;
    padding-right:25px;
    background: linear-gradient(-90deg, #64A0D7 0%, #01589C 96%);
    box-shadow:0 0 7px 0 rgba(0,0,0,0.27);
    position:relative;
    transition:0.5s;
}

.btn:hover {
    opacity:0.9;
    box-shadow:none;
}

.btn:after {
    font-family: ionicons;
    content: "\f3d1";
    position: absolute;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    top: 50%;
    right: 20px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    font-weight: 900;
    font-size:2rem;
}

@media (max-width: 1400px) {
    .logo {
        width:80px;
        margin:20px auto 20px;
    }

}

@media (max-width: 1100px) {
    .logo {
        width:90px;
    }
}

@media (max-width: 1000px) {
    .logo {
        width:50px;
        margin-bottom:10px;
    }

    .gnav-list li {
        border-bottom:1px dotted #ddd;
        margin-bottom:8px;
        padding-bottom:5px;
    }

    .gnav-list li:last-child {
        border-bottom:none;
        margin-bottom:0;
        padding-bottom:0;
    }

    .gnav-list li span {
        display:inline-block;
        margin-right:2px;
    }

    .gnav-list li a {
        padding:3px 5px;
    }
}

@media (max-width: 415px) {
    #gnav {
        width:100%;
    }
}

/* ------------------------------
HEADER
------------------------------ */
header {
    position:relative;
}

#main header .img img {
    width:100%;
}

.hd-bt {
    position:fixed;
    right:30px;
    top:30px;
    width:180px;
    height:180px;
    border-radius:90px;
    z-index:20;
    transition:0.5s;
    background: #01589C;
    background: -webkit-gradient(linear, left top, right top, from(#01589C) ,to(#64A0D7));
    background: linear-gradient(to right, #01589C 0%, #64A0D7 100%);
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.21);
    display:block;
    text-align:center;
    cursor:pointer;
    overflow:hidden;
}

.hd-bt a {
    color:#fff;
    display:block;
    text-align:center;
    background:url(../img/hd_bg_01.svg) no-repeat 10px 30px;
    width:100%;
    height:100%;
    background-size:76px 117px;
}

.hd-bt:hover {
    opacity:0.9;
    box-shadow:none;
}

.hd-bt img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition:0.5s;
}

.hd-bt small {
    display:block;
}

.hd-bt.mini {
    width:130px;
    height:130px;
    border-radius:65px;
    top:15px;
}

.hd-bt.mini a {
    background:url(../img/hd_bg_01.svg) no-repeat 10px 30px;
    background-size:50px auto;
}

.hd-bt.mini img {
    width:80px;
    height:auto;
}

@media (max-width: 800px) {
    .hd-bt {
        display:none;
    }
}

/* ------------------------------
SECTION
------------------------------ */
#l-main section {
    margin-bottom:50px;
}

.sec-hd {
    margin-bottom:60px;
    padding-top:50px;
}

.sec-hd h2 {
    font-family: 'Lato', sans-serif;
    font-size:3rem;
    text-align:center;
    letter-spacing:0.15em;
    margin-bottom:15px;
    font-weight:700;
    padding-bottom:25px;
    background:url(../img/co_ln_01.svg) no-repeat center bottom;
    line-height:1;
}

.sec-hd h3 {
    color:#3891F5;
    font-size:2.2rem;
    font-weight:bold;
    letter-spacing:0.1em;
    border-bottom: solid 1px #ccc;
    position: relative;
    padding-bottom:10px;
}

.sec-hd h3:after {
    position: absolute;
    content: " ";
    display: block;
    border-bottom: solid 2px #3891F5;
    bottom:-1px;
    left:0;
    width:160px;
}

.sec-hd p {
    color:#333;
    text-align:center;
    font-size:1.7rem;
    letter-spacing:0.7em;
    font-weight:bold;
}

.sec-content .copy {
    text-align:center;
    font-size:1.8rem;
    letter-spacing:0.05em;
    margin-bottom:30px;
    font-weight:bold;
}

.sec-content .copy em {
    font-size:2.7rem;
    margin:0 5px;
    display:inline-block;
}

@media (max-width: 1000px) {
    .sec-hd h2 {
        font-size:2.8rem;
    }
}

@media (max-width: 767px) {
    .sec-hd {
        padding-top:50px;
        margin-bottom:50px;
    }

    .sec-hd h2 {
        font-size:2.7rem;
    }

    .sec-content .copy {
        font-size:1.8rem;
    }

    .sec-hd h3 {
        font-size:1.8rem;
    }
}

@media (max-width: 400px) {
    .sec-hd h2 {
        font-size:2.6rem;
    }
    .sec-hd {
        padding-top:30px;
        margin-bottom:40px;
    }
}

@media (max-width: 350px) {
    .sec-hd {
        margin-bottom:40px;
    }

    .sec-hd h2 {
        font-size:2.5rem;
    }
}

/* ------------------------------
FOOTER
------------------------------ */
.ft-btn-area {
    background:url(../img/co_bg_01.jpg) repeat left top;
    padding:30px;
    text-align:center;
}

.ft-btn-area li {
    max-width:47%;
    display:inline-block;
    width:430px;
}

.ft-btn-area li:nth-child(even){
    margin-left:2%;
}

.ft-btn {
    display:block;
    text-align:center;
    padding:21px 15px;
    letter-spacing:0.1em;
    font-size:2rem;
}

.ft-btn i {
    font-size:3rem;
    top:4px;
    position:relative;
    margin-bottom:2px;
}

.ft-logo {
    width:300px;
    display:inline-block;
    margin-bottom:10px;
}

.ft-info {
    padding:30px 30px 0;
}

footer small {
    font-family: 'Lato', sans-serif;
    letter-spacing:0.07em;
}

.ft-info .ft-left {
    float:left;
    width:40%;
    min-width:360px;
}

.ft-info .ft-right {
    float:right;
    line-height:2.5em;
    width:56%;
    padding-left:20px;
}

.ft-info .ft-right p {
    font-size:1.3rem;
    letter-spacing:-0.01em;
}

.ft-info .telnum {
    margin-top:5px;
    font-size:1.8rem;
}

.ft-info .telnum i {
    font-size:2.5rem;
    color:#3891F5;
    margin-right:5px;
}

.ft-info .telnum a {
    font-size:2.7rem;
    font-family: 'Lato', sans-serif;
}

.copyright {
    line-height:1.2em;
}

@media (max-width: 1100px) {
    .ft-btn-area {
        position:fixed;
        bottom:0;
        left:0;
        width:100%;
        z-index:200;
    }

    .ft-info {
        padding-bottom:150px;
    }

    .ft-btn {
        padding:13px 20px;
        font-size:1.4rem;
    }

    .ft-info .ft-left,.ft-info .ft-right {
        width:100%;
        float:none;
        padding:0;
        text-align:center;
    }

    .ft-info .ft-left {
        min-width:100%;
    }

    .ft-logo {
        max-width:100%;
    }

    .ft-right {
        margin-bottom:30px;
    }

    .ft-info .telnum {
        margin-top:10px;
    }

    .ft-btn i {
        font-size:2.7rem;
    }
}

@media (max-width: 1000px) {
    .ft-btn-area ul.cf {
        margin-right:76px;
    }
}

@media (max-width: 600px) {
    .ft-btn-area {
        padding:20px;
    }

    .ft-btn {
        padding:13px 20px;
        font-size:1.3rem;
    }

    .ft-btn-area ul.cf {
        margin-right:65px;
    }

    .ft-btn span {
        display:none;
    }

    .ft-btn i {
        font-size:2rem;
    }
}

@media (max-width: 500px) {
    .ft-btn i {
        display:none;
    }
}

@media (max-width: 375px) {
    .ft-btn {
        text-align:left;
    }
}

@media (max-width: 350px) {
    .ft-btn {
        padding:13px 15px;
    }
}

.pagetop {
    position:fixed;
    bottom:20px;
    right:30px;
}

.pagetop a {
    display:block;
    width:70px;
    height:70px;
    border-radius:35px;
    background-image: linear-gradient(-90deg, #64A0D7 0%, #01589C 100%);
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.21);
    text-align:center;
    line-height:70px;
    z-index:20;
    text-align:center;
    transition:0.5s;
    position:relative;
}

.pagetop a:hover {
    opacity:0.9;
    box-shadow:none;
}

.pagetop i {
    font-size:3rem;
    color:#fff;
    line-height:70px;
    position:absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    width: 100%;
    text-align: center;
}

.pc .pagetop a {
    transition:0.5s;
}

.pagetop img {
    width:27px;
    height:auto;
    vertical-align: middle;
    top: -2px;
    position: relative;
}

.spmenu {
    display:none;
}

@media (max-width: 1000px) {
    .pagetop {
        display:none !important;
    }
    .spmenu {
        background:#fff;
        width:56px;
        height:56px;
        cursor:pointer;
        color:#4172b4;
        text-align:center;
        font-size:1.2rem;
        display:block;
        position:absolute;
        right:30px;
        top:30px;
    }

    .spmenu .inner {
        height:100%;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .btnbox li.spmenu {
        float:right;
    }

    .spmenu,
    .spmenu span {
        transition: all .4s;
        box-sizing: border-box;
    }

    .spmenu span {
        position: absolute;
        left: 15%;
        width: 70%;
        height: 4px;
        background-color: #4172b4;
        border-radius: 4px;
    }
    .spmenu span:nth-of-type(1) {
        top: 34px;
    }
    .spmenu span:nth-of-type(2) {
        top: 45px;
    }
    .spmenu span:nth-of-type(3) {
        bottom: 29px;
    }

    .open .spmenu span:nth-of-type(1) {
        -webkit-transform: translateY(20px) rotate(-45deg);
        transform: translateY(20px) rotate(-45deg);
        top:14px;
    }
    .open .spmenu span:nth-of-type(2) {
        opacity: 0;
    }
    .open .spmenu span:nth-of-type(3) {
        -webkit-transform: translateY(-20px) rotate(45deg);
        transform: translateY(-20px) rotate(45deg);
        bottom:-2px;
    }
}

@media (max-width: 600px) {
    .spmenu {
        top:20px;
        right:20px;
    }
}