@charset "UTF-8"; /*==========================
共通
===========================*/
* {
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    background-image: url("../common/img/bg.png");
    color: #333;
    line-height: 1.8;
    margin: 0;
    padding: 0;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0 auto;
}

a:link {
    transition: 0.6s;
    text-decoration: none;
    font-weight: 700;
    color: #333;
}

a:visited {
    color: #333;
}

a:hover {
    transition: 0.3s;
}

a:active {
    color: #000;
}

img {
    display: block;
}

.small {
    font-size: 0.8em;
}

.pc_only {
    display: block;
}

.sp_only {
    display: none;
}

.xsp_only {
    display: none;
}

.t_r {
    text-align: right;
}

.t_l {
    text-align: left;
}

.bold {
    font-weight: 600;
}

.size_up {
    font-size: 1.4em;
}

.size_down {
    font-size: 0.7em;
    font-weight: 400;
}

img.w75 {
    width: 75%!important;
}

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

    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }

    .xsp_only {
        display: none;
    }

    .t_r {
        text-align: center;
    }

    .t_l {
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    body {
        font-weight: 500;
    }

    .xsp_only {
        display: block;
    }
}

/*==========================
コンテナ
===========================*/
section, footer {
    margin-left: 160px;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

@media screen and (max-width: 960px) {
    section, footer {
        margin-left: 0;
    }

    .container {
        width: 100%;
        padding: 0 3%;
    }
}

/*==========================
ヘッダー
===========================*/
header {
    background-color: #182d68;
    width: 160px;
    height: 100vh;
    position: fixed;
    z-index: 100;
    transition: 0.3s;
}

header:hover {
    background-color: #0f3384;
    transition: 0.3s;
}

nav {
    display: block;
}

.logo {
    width: 160px;
    background: #fff;
    display: block;
    padding: 18px 30px 4px;
    line-height: 2.4;
}

.logo img {
    width: 100%;
}

header nav ul {
    display: flex;
    margin: 0 3em;
}

header nav ul li {
    padding: 0 2em;
}

header nav ul li img {
    width: 62%;
}

header nav ul li span {
    display: block;
    font-size: 14px;
    color: #182d68;
}

header nav ul li:hover {
    opacity: 0.7;
    transition: 0.3s;
}

@media screen and (max-width: 960px) {
    header {
        background-color: #182d68;
        width: 100%;
        height: 90px;
        position: fixed;
        z-index: 100;
        transition: 0.3s;
    }

    .logo img {
    }

    header nav ul li {
        padding: 0 1.3em;
    }
}

@media screen and (max-width: 480px) {
    header {
        width: 100%;
        height: 70px;
        transition: 0.3s;
    }

    header nav ul li span {
        font-size: 12px;
    }

    .logo img {
        width: 75px;
    }

    .logo {
        width: 115px;
        background: #fff;
        display: block;
        padding: 11px 20px 1px;
        line-height: 2.4;
        font-size: 12px;
    }

    header nav ul li img {
        width: 90%;
    }
}

/*ハンバーガーメニュー*/
/*メニュー部分*/
nav {
    display: none;
    position: fixed;
    top: 0;
    left: 160px;
    width: 600px;
    height: 100vh;
    background: rgba(255,255,255,0.97);
    z-index: 90;
}

header nav ul {
    display: block;
    width: 100%;
    position: absolute;
    top: 5%;
    right: 0px;
    bottom: 0px;
    left: 0px;
    margin: auto;
}

header nav ul li {
    margin: 0 auto;
    padding: 6%;
    font-size: 24px;
    border-bottom: 1px solid #ccc;
}

header nav ul li:last-child {
    border: none;
}

header nav ul li a {
    display: block;
    color: #000;
}

/*開閉ボタン*/
#nav_toggle {
    width: 160px;
    height: 80vh;
    position: absolute;
    z-index: 200;
    cursor: pointer;
}

#nav_toggle .hum {
    position: relative;
    top: 33vh;
}

#nav_toggle span {
    display: block;
    height: 3px;
    background: #fff;
    position: relative;
    width: 40px;
    left: 60px;
    transition: 0.3s ease-in-out;
}

#nav_toggle .hum p {
    color: #fff;
    position: relative;
    text-align: center;
    top: 30px;
    font-size: 14px;
    font-weight: 500;
}

#nav_toggle span:nth-child(1) {
    top: 0px;
}

#nav_toggle span:nth-child(2) {
    top: 10px;
}

#nav_toggle span:nth-child(3) {
    top: 20px;
}

/*開閉ボタンopen時*/
.open #nav_toggle span:nth-child(1) {
    top: 15px;
    transform: rotate(135deg);
}

.open #nav_toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}

.open #nav_toggle span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}

@media screen and (max-width: 960px) {
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 72%;
        height: 100vh;
        background: rgba(255,255,255,0.97);
    }

    header nav ul {
        display: block;
        width: 100%;
        position: absolute;
        top: 6%;
        right: 0px;
        bottom: 0px;
        left: 0px;
        margin: auto;
    }

    header nav ul li {
        margin: 0 auto;
        padding: 7% 7%;
        font-size: 24px;
        border-bottom: 1px solid #ccc;
    }

    #nav_toggle {
        width: 100px;
        height: 80px;
        top: 18px;
        right: 30px;
    }

    #nav_toggle .hum {
        position: relative;
        top: 0;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #fff;
        position: relative;
        width: 40px;
        left: 60px;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle .hum p {
        color: #fff;
        position: relative;
        text-align: right;
        top: 29px;
        font-size: 14px;
        font-weight: 500;
    }

    .open #nav_toggle span:nth-child(2) {
        width: 0;
        left: 75%;
    }
}

@media screen and (max-width: 480px) {
    nav {
        width: 75%;
    }

    header nav ul {
        top: 6%;
    }

    header nav ul li {
        font-size: 22px;
        border-bottom: 1px solid #ccc;
    }

    #nav_toggle {
        width: 100px;
        height: 80px;
        top: 12px;
        right: 23px;
    }

    #nav_toggle .hum {
        top: 0;
    }

    #nav_toggle span {
        display: block;
        height: 3px;
        background: #fff;
        position: relative;
        width: 35px;
        left: 62px;
        transition: 0.3s ease-in-out;
    }

    #nav_toggle .hum p {
        color: #fff;
        position: relative;
        text-align: right;
        top: 21px;
        font-size: 14px;
        font-weight: 500;
    }
}

/*==========================
キービジュアル
===========================*/
#mainVisual .fv {
    background: url("img/fv_contact.jpg");
    background-position: center bottom 10%;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    position: relative;
}

#mainVisual .fv .key {
    position: absolute;
}

#mainVisual img {
    width: 240px;
    position: relative;
}

@media screen and (max-width: 480px) {
    #mainVisual .fv {
        background: url("img/fv_contact.jpg") no-repeat;
        background-position: right 20% bottom;
        background-size: cover;
        height: 300px;
        position: relative;
    }

    #mainVisual img {
        width: 115px;
        position: relative;
        top: 70px;
    }
}

/*==========================
フォーム関連
===========================*/
#contact {
    text-align: center;
}

#contact h2 img {
    margin: 1em auto;
    height: 100px;
}

#contact .thank {
    text-align: center;
    font-size: 17px;
    margin: 0 0 2em;
    line-height: 2;
    color: #182d68;
    font-weight: 700;
}

#contact .form {
    padding: 1em 10% 3%;
    margin: 2em auto;
    max-width: 1000px;
}

.form-horizontal .control-label {
    font-size: 16px;
    text-align: right;
    margin-bottom: 10px;
}

#contact .mailform .control-label {
    line-height: 2.8em;
    padding-top: 0;
}

.radio, .checkbox {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.radio label, .checkbox label {
    min-height: 20px;
    padding-left: 3em;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer;
}

.mailform .control-label span {
    color: #e6358d;
    display: inline-block;
    position: relative;
    top: 0.2em;
}

.has-error .message {
    display: block!important;
    text-align: left;
}

.form-control {
    width: 100%;
    border: 1px solid #CDD6DD;
    padding: 0.6em;
    height: auto;
    font-size: inherit;
    line-height: inherit;
    cursor: default;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 400;
    color: #000;
}

.label-danger {
    background-color: #ff4f4f;
    text-align: center;
    padding: 3px 10px;
    margin-left: 1em;
}

.label-primary {
    background-color: #ccc;
    text-align: center;
    padding: 3px 10px;
    margin-left: 1em;
}

p.offer {
    margin-top: 20px;
}

.btn-lg, .btn-group-lg>.btn {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.33;
    display: inherit;
    padding: 1em 5em;
    margin: 2em auto 1em;
    text-decoration: none;
    background: #ccc;
    border: none;
    transition: filter 0.4s ease-in-out;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active, .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background: #ffd31d;
    /* filter: brightness(115%); */
}

textarea.form-control {
    height: 15vw;
    min-height: 150px;
}

.agree {
    text-align: center;
    margin: 0;
    font-size: 0.8em;
    color: #555;
}

/* 確認画面 */
.modal .mailform {
    max-width: none;
}

.form-control[readonly] {
    border: none;
    padding: 0.5em;
    width: 100%!important;
    cursor: default;
    outline: none;
    font-size: 1em;
}

.form-control[readonly]:focus {
    box-shadow: none;
}

.modal-header {
    min-height: 16.43px;
    padding: 20px 0 3px;
    margin: 0 15px 10px;
    border-bottom: 3px solid #182d68;
    color: #182d68;
}

.modal-footer {
    text-align: center;
    border: none;
    padding: 3px 5px 15px;
}

.modal-footer .btn {
    width: 45%;
    display: inline-block;
}

.modal-title {
    line-height: 2em;
    text-align: center;
    font-size: 1.5em;
}

.modal-body {
    position: relative;
    padding: 15px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.modal-body .form-group {
    margin-bottom: 10px;
}

.modal-footer .btn {
    padding: 1.8% 0;
    font-size: 1.2em;
    transition: 0.3s;
}

.btn-primary {
    background-color: #ffd31d;
    border: none;
    transition: 0.3s;
    color: #333;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.modal-footer .btn+.btn {
    margin-bottom: 0;
    margin: 0 2%;
    font-weight: 600;
}

@media screen and (max-width: 768px) {
    #contact h2 img, #contact2 h2 img {
        height: 20vw;
        max-height: 100px;
        margin: 0.5em auto;
    }

    #contact .form, #contact2 .form {
        padding: 5%;
        font-size: 16px;
        margin: 0.5em auto 1em;
    }

    #contact .container, #contact2 .container {
        padding: 0%;
    }

    .modal-header {
        margin: 0 15px;
    }

    .modal-footer .btn {
        padding: 3% 0;
        font-size: 1.1em;
    }

    .modal-title {
        text-align: left;
    }

    .modal-body {
        position: relative;
        padding: 10px 15px;
    }

    #contact .thank {
        font-size: 14px;
        margin: 0 0 2em;
    }
}

/*==========================
フッター
===========================*/
footer {
    color: #e2e2e2;
    font-size: 13px;
    background: url(../common/img/logo_f.svg) no-repeat bottom 60px right 52px, #212a37;
    background-size: 50px auto;
}

footer a:link {
    color: #e2e2e2;
    font-weight: 500;
}

footer a:visited {
    color: #e2e2e2;
    font-weight: 500;
}

footer a:hover {
    color: #fff;
    transition: 0.3s;
}

footer a:active {
    color: #e2e2e2;
}

footer .footer_group {
    display: flex;
    padding: 3em 7em 6em 3em;
    margin-right: 2em;
    margin: 0 auto;
}

footer .company {
    padding-right: 7%;
}

footer .company .comp {
    font-size: 17px;
    font-weight: 600;
}

footer .company p {
    line-height: 1.8;
}

footer .footer_nav {
    margin: 0 auto;
}

footer .footer_nav li {
    margin: 0.4em auto;
}

footer .footer_nav li span {
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-bottom: 0.5em;
}

footer .copy p {
    text-align: center;
    border-top: 1px solid #e2e2e2;
    padding: 1em;
    margin: 0;
    vertical-align: bottom;
    font-size: 10px;
}

footer .fab {
    width: 36px;
    font-size: 22px;
    padding-top: 0.8em;
}

.svg-inline--fa.fa-w-14 {
    width: .875em;
    font-size: 26px;
    margin-right: 6px;
    margin-top: 10px;
}

footer address .f_tel {
    font-size: 14px;
    line-height: 1.5;
    display: inline-block;
    padding: 2px 12px;
    border: #e2e2e2 2px solid;
    margin: 6px 0 3px;
    border-radius: 20px;
    font-weight: 700;
}

footer address .f_tel a {
    color: #e2e2e2;
    text-decoration: none;
}

@media screen and (min-width: 481px) and (max-width: 1000px) {
    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: left;
        width: 38%;
        margin-bottom: 2em;
    }

    .clearfix:after {
        content: "";
        display: block;
        clear: both;
    }
}

/*トップへ戻るボタン*/
footer .totop {
    position: fixed;
    bottom: 130px;
    right: 40px;
    z-index: 15;
    width: 75px;
}

footer .contact .totop img {
    width: 100px;
    backface-visibility: hidden;
}

@media screen and (max-width: 480px) {
    footer {
        background: url(../common/img/logo_f.svg) no-repeat bottom 65px right 30px, #212a37;
        background-size: 50px auto;
    }

    footer .footer_group {
        display: block;
        padding: 2em 2em;
    }

    footer .company {
        padding: 0 0 2em 0;
    }

    footer .footer_nav {
        float: none;
        width: auto;
        margin-bottom: 1em;
    }

    footer .fa {
        padding-top: 1em;
    }

    footer .footer_nav li {
        margin: 0 auto;
    }

    footer .totop {
        bottom: 130px;
        right: 25px;
        width: 60px;
    }
}
/*210316*/
header nav ul li {
    padding: 4% 6%;
    font-size: 22px;
}

@media screen and (max-width: 960px) {
    header nav ul {
        top: 4%;
    }
}