@charset "utf-8";

/**
 * Version: 1.0.0
 */

/* **************************************************
	CSS Redefine
************************************************** */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}

body {
    width: 100%;
    height: 100%;
    color: #000000;
    font-size: 14px;
    line-height: 23px;
    font-family:
        "メイリオ",
        Meiryo,
        "Hiragino Kaku Gothic ProN",
        "ヒラギノ角ゴ ProN",
        "游ゴシック Medium",
        "游ゴシック体",
        "Yu Gothic Medium",
        YuGothic,
        "ＭＳ Ｐゴシック",
        "MS PGothic",
        sans-serif;
    -webkit-text-size-adjust: 100%;
    padding: 0;
    margin: 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

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

input,
button,
select,
textarea {
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

a,
a:visited,
a:active {
    /*color: #446548;*/
    text-decoration: underline;
}

a:hover,
a img:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
button:hover {
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

a.disable:hover,
a.disable img:hover,
input[type="button"].disable:hover,
input[type="submit"].disable:hover,
button.disable:hover {
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    opacity: 1;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

/* **************************************************
	Common
************************************************** */
.wrap {
    width: 100%;
    padding: 0;
    margin: 0;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

.clearfix {
    min-height: 1px;
}

* html .clearfix {
    height: 1px;
    /*\*/
    /*/
	height: auto;
	overflow: hidden;
	/**/
}

#wrapper {
    position: relative;
    padding: 0;
    margin: 0;
}

.container {
    position: relative;
    width: 100%;
    padding: 60px 0 0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}

.inner,
.inner_ {
    width: 100%;
    padding: 0;
    margin: 0;
}

@media (min-width: 768px) {
    .wrap {
        min-width: 1280px;
    }

    #wrapper {
        padding: 0;
        margin: 0;
        width: 100%;
    }
    .container {
        padding: 0;
    }

    .inner {
        width: 1280px;
        margin: 0 auto;
    }
}

/* 見出し
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
}

/* **************************************************
	header
************************************************** */
header {
/*    position: relative;*/
    position: fixed;
    left: 0;
    top:0;
    width: 100%;
    margin: 0;
    padding: 0;
    height: 60px;
    z-index: 9999;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
header .h_inner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

header.h_top {
    background: url
}

header.scroll_on {
    background: #ffffff;
}

@media (min-width: 768px) {
    header {
        position: relative;
        min-width: 1280px;
        height: 110px;
    }
}

header .h_inner .hi_left {
    float: left;
}

header .h_inner .hi_left img {
    height: 60px;
    width: auto;
}

header .h_inner .hi_right {
    float: right;
}
header .h_inner .hi_right:after {
    clear: both;
}
@media (min-width: 768px) {
    header .h_inner .hi_left img {
        height: 110px;
    }
}

/* **************************************************
	グローバルメニュー
************************************************** */
/* グロナビを開いている間背景を固定するクラス */
.bg_fixed {
    overflow: hidden;
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100%;
}

/*グロナビ（スマホ用グロナビ）*/
#global-nav {
    position: fixed;
    /*	display: none;*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #093257;
    z-index: 1;
}
#global-nav.hidden{
    display: none;
}
#global-nav .ul_gnav {
    display: block;
    padding: 60px 20px 0;
    text-align: center;
}
#global-nav .ul_gnav li {
    display: block;
    border-bottom: 1px solid #4F6477;
}

#global-nav .ul_gnav li a {
    font-size: 14px;
    line-height: 21px;
    color: #fff;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
}

@media (min-width: 768px) {
    #global-nav {
        display: block;
        position: relative;
        top: inherit;
        left: inherit;
        width: 700px;
        height: 100%;
        background: none;
    }
    #global-nav .ul_gnav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 0 45px 0 0;
        height: 100%;
        margin: 0 0 0 auto;
    }

    #global-nav .ul_gnav li {
        display: inline-block;
        border:none;
    }


    #global-nav .ul_gnav li a {
        font-size: 14px;
        line-height: 21px;
        color: #163254;
        display: inline-block;
        padding: 8px 20px 12px;
        text-decoration: none;
    }
    /* トップページのときの文字色 */
   .body_top #global-nav .ul_gnav li a {
        color: #ffffff;
    }
}

/* トグル(三)ボタン */
#gn-toggle {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    z-index: 9999;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#gn-toggle img {
    max-width: 100%;
    max-height: 100%;
}

#gn-toggle img.img-open {
    display: block;
}

#gn-toggle img.img-close {
    display: none;
}

#gn-toggle._nav_open img.img-open {
    display: none;
}

#gn-toggle._nav_open img.img-close {
    display: block;
}




/* **************************************************
	footer
************************************************** */
footer {
    width: 100%;
    margin: 0;
    padding: 0 20px;
    background: #093257;
    border-top: 1px solid #707070;
    z-index: 1;
}

footer .inner {
    width: 100%;
    padding: 0;
    margin: 0;
    color: #fff;
}
/* フッタメニュー */
footer .ul_fnav{
    text-align: center;
}
footer .ul_fnav li {
    display: block;
    border-bottom: 1px solid #4F6477;
}
footer .ul_fnav li a{
    font-size: 14px;
    line-height: 20px;
    color: #fff;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
}
/*  copyright */
footer .copyright{
    padding: 23px 0 22px;
    font-size: 10px;
    line-height: 14px;
    color: #B4B4B4;
    border-top: none;
}
@media (min-width: 768px) {
    footer {
        min-width: 1280px;
        padding: 0;
        background-color: #093257;
    }

    footer .inner {
        /* padding: 19px 35px; */
        width: 1280px;
        margin: 0 auto;
        padding: 0 140px 0;
    }
    /* フッタメニュー */
    footer .ul_fnav{
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 9px 0 10px;
    }
    footer .ul_fnav li {
        display: inline-block;
        border:none;
    }
    footer .ul_fnav li + li:before{
        content: '｜';
        font-size: 14px;
        line-height: 20px;
    }
    footer .ul_fnav li a{
        font-size: 14px;
        line-height: 20px;
        color: #ffffff;
        display: inline-block;
        padding: 10px 14px;
        text-decoration: none;
    }
    /*  copyright */
    footer .copyright{
        padding: 21px 0 25px;
        text-align: center;
        border-top: 1px solid #4F6477;
    }
}

/* **************************************************
	TOPへ戻るボタン
************************************************** */
#pagetop {
    position: fixed;
    bottom: 13px;
    right: 10px;
    width: 35px;
    height: 35px;
    z-index: 999;

}

#pagetop a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url('../img/btn_top.png') no-repeat center center;
    background-size: cover;
}

/* **************************************************
	top
************************************************** */

/* ローディング
---------------------------------------- */
#loader-bg {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 999;
}

#loading {
    position: absolute;
    left: 50%;
    top: 40%;
    margin-left: -16px;
}


/* 真空成形で理想の形を実現します
---------------------------------------- */
.top_greeting {
    width: 100%;
    padding: 0;
    margin: 0;
}

.top_greeting .inner {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
}
.top_greeting .inner img{
    width: 100%;
    padding: 0;
    margin: -60px auto 0;
    text-align: center;
}
@media (min-width: 768px) {
    .top_greeting {
        margin: -110px 0 0;
    }

    .top_greeting .inner {
        width: 100%;
        margin: 0 auto;
    }
    .top_greeting .inner img{
        margin: -110px 0 0;
    }
}

/* 長年の実績と経験が...  以下のような課題を抱えて...
---------------------------------------- */
.top_contents_1 {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.top_contents_2 {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    background-color: #093257;
}

/* サービスのご紹介
---------------------------------------- */
.top_service {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    text-align: center;
    background-color: #D8E8F0;
}

/* 会社概要
---------------------------------------- */
.top_company {
    width: 100%;
    padding: 40px 20px 40px;
    margin: 0 auto;
/*    text-align: center;*/
}
.top_company inner{
     
}
.top_company .hl_company{
    font-size: 22px;
    line-height: 33px;
    padding: 0 0 21px;
    text-align: center;
    font-weight: normal;
    color: #093257;
}
.top_company .dl_company{
    background: #ffffff;
    border-top:1px solid #CCCCCC;
}
.top_company .dl_company dt{
    font-weight: bold;
    padding: 17px 13px 0;
    font-weight: 14px;
    line-height: 22px;
    vertical-align: middle;
}
.top_company .dl_company dd{
    padding: 0 13px 9px;
    border-bottom:1px solid #CCCCCC;
    vertical-align: middle;
}
.top_company .dl_company dt.odd,
.top_company .dl_company dd.odd{
    background:#F8FDFF;
/*    background:#ffaaaa;*/
}

.top_company .dl_company dd p.adr{
    
}
.top_company .dl_company dd p.tel{
    padding-left: 3em;
}
.top_company .dl_company dd span.dd_3em{
   display: inline-block;
   width: 3em;
}
@media (min-width: 768px) {
    .top_company {
        padding: 80px 0 82px;
    }
   .top_company .inner{
      width: 1000px;

    }
    .top_company .hl_company{
        font-size: 32px;
        line-height: 48px;
        padding: 0 0 18px;
    }
    .top_company .dl_company{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .top_company .dl_company dt{
        display: block;
        width: 154px;
        flex-grow: 0;
        flex-shrink: 0;
        padding: 17px 0 15px 20px;
        border-bottom:1px solid #CCCCCC;
    }
    .top_company .dl_company dd{
        display: block;
        width: 846px;
        flex-grow: 0;
        flex-shrink: 1;
        padding: 17px 16px 14px 22px;
    }
}
/* お問い合わせ
---------------------------------------- */
.contact {
    width: 100%;
    padding: 15px 20px 50px;
    margin: 0 auto;
}

.contact .inner {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .contact {
        width: 1280px;
        padding: 40px 0 50px;
    }

    .contact .inner {
        width: 1000px;
    }
}

.contact .hl {
    display: inline-block;
    width: 100%;
    font-size: 32px;
    line-height: 48px;
    font-weight: normal;
    vertical-align: top;
    text-align: center;
    color: #093257;
    padding: 0 0 20px;
}

.contact .txt_main {
    padding-bottom: 16px;
}

@media (min-width: 768px) {

    .contact .hl {}

    .contact .txt_main {
        text-align: center;
    }
}



/* お問い合わせフォーム */
.contact form {
    padding: 0;
    margin: 0 auto;
}
dl.form {
    border-top: 1px solid #CCCCCC;
    
}
dl.form > dt {
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 19px;
    padding: 8px 0 7px;
/*    margin-bottom: 8px;*/
/*    height: 19px;*/
    font-weight: bold;
}

dl.form > dd {
    display: block;
    padding: 0 0 11px;
    margin: 0;
    width: 100%;
    margin-left: auto;
    border-bottom: 1px solid #CCCCCC;

}


dl.form input[type="text"] {
    width: 100%;
    height: 40px;
    padding: 10px;
    background-color: #F8FDFF;
    border: solid 1px #7199BC;
    border-radius: 4px;
    font-size: 14px;
}

dl.form textarea {
    width: 100%;
    height: 200px;
    padding: 10px;
    background-color: #F8FDFF;
    border: solid 1px #7199BC;
    border-radius: 4px;
    vertical-align: bottom;
    font-size: 14px;
}

dl.form dt span.required {
    color: #FF0000;
    margin-left: 5px;
}

/* 個人情報保護方針 */
.hl_policy {
    font-size: 14px;
    font-weight: bold;
}

.policy_inner {
    height: 220px;
    margin-top: 0;
    padding: 10px 10px 0;
    border: 1px solid #CCCCCC;
    overflow-y: scroll;
    line-height: 24px;
    font-size: 14px;
}

.policy_inner .pin_hl {
    padding-bottom: 10px;
    font-weight: bold;
}

.policy_inner dl {
    padding-top: 15px;
}

.policy_inner dl dt {
    padding-bottom: 5px;
}

.policy_inner dl dd {
    padding-bottom: 10px;
}

.policy_inner dl dd ul li {
    list-style-type: none;
}

.policy_inner dl dd p {
    padding-bottom: 5px;
}

/* 同意チェック */
p.consent {
    padding: 15px 0 0 0;
    font-size: 14px;
}

p.consent_check {
    padding: 15px 0 3px 0;
}

p.consent_check input[type="checkbox"] {
    display: none;
}

p.consent_check span.checkbox_text {
    position: relative;
    display: inline-block;
    padding: 0 0 0 35px;
    cursor: pointer;
    font-size: 14px;
    line-height: 26px;
    font-weight: bold;
}

p.consent_check span.checkbox_text::before {
    /* チェック前 */
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #F2FAFF;
    border: solid 1px #7199BC;
    border-radius: 4px;
}

p.consent_check span.checkbox_text::after {
    position: absolute;
    content: '';
    top: 7px;
    left: 6px;
    width: 13px;
    height: 8px;
    border-left: 2px solid #D3D3D3;
    border-bottom: 2px solid #D3D3D3;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

p.consent_check input[type="checkbox"]:checked + span.checkbox_text::before {
    /* チェック後 */
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-color: #2C4460;
    border: solid 1px #2C4460;
    border-radius: 4px;
}

p.consent_check input[type="checkbox"]:checked + span.checkbox_text::after {
    position: absolute;
    content: '';
    top: 7px;
    left: 6px;
    width: 13px;
    height: 8px;
    border-left: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* 送信ボタン */
.submit {
    margin: 0;
    padding: 30px 0 0;
    text-align: center;
    font-weight: bold;
    font-size: 0;
    display: flex;
    justify-content: center;
}

.submit input[type="reset"],
.submit input[type="submit"],
.submit input[type="button"] {
    display: inline-block;
    height: 50px;
    margin-right: 14px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0px 0px 6px #00000029;
}

.submit input[type="reset"] {
    /* リセット */
    width: 100px;
    background-color: #FFFFFF;
    border: solid 1px #093257;
    color: #093257;
    border-radius: 25px;
    flex-grow: 0;
    flex-shrink: 0;
}

.submit input[type="button"][id="submitBack"] {
    /* 戻る */
    width: 220px;
    background-color: #FFFFFF;
    border: solid 1px #093257;
    color: #093257;
    margin-bottom: 20px;
    border-radius: 25px;
}


.submit input[id="submitConfirm"],
/* 確認 */
.submit input[id="submitContact"] {
    /* 送信 */
    width: 220px;
    background-color: #093257;
    color: #FFFFFF;
    box-shadow: 0px 0px 6px #00000029;
    margin-right: 0;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    border-radius: 25px;
    flex-grow: 0;
    flex-shrink: 1;
    margin-right: 0;
}

.submit input[type="reset"]:hover,
.submit input[id="submitConfirm"]:hover,
.submit input[type="button"][id="submitBack"]:hover,
.submit input[id="submitContact"]:hover {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;

}

.submit input[id="submitConfirm"][disabled] {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
    cursor: default;
}
.submit input:last-of-type {
    margin-right: 0 !important;
}
@media (min-width: 768px) {

    /* メール */
    .contact_mail {}

    /* お問い合わせフォーム */
    .contact form {}

    dl.form{
        display: flex;
        flex-wrap:wrap;
        justify-content: space-between;
        align-items: stretch;
    }
    dl.form > dt {
        display: block;
        width: 190px;
        flex-grow: 1;
        flex-shrink: 1;
        border-bottom: 1px solid #CCCCCC;
        padding: 20px 0 20px 10px;
        line-height: 50px;
    }

    dl.form > dd {
        display: block;
        width: 810px;
        flex-grow: 0;
        flex-shrink: 0;
        padding: 20px 0;

    }

    dl.form input[type="text"] {
        height: 50px;
        font-size: 16px;
        padding: 14px 20px 15px 20px;
    }

    dl.form textarea {
        font-size: 16px;
        padding: 14px 20px 15px 20px;
    }


    /* 個人情報保護方針 */
    dl.form dd .policy_inner {
        height: 220px;
        padding: 20px;
    }

    /* 同意チェック */
    p.consent {
        padding: 29px 0 0 0;
        font-size: 16px;
    }

    p.consent_check {
        padding: 23px 0 0 0;
    }

    p.consent_check span.checkbox_text {
        font-size: 16px;
    }

    /* 送信ボタン */
    .submit {
        padding: 45px 0 78px;
    }

    .submit input[type="reset"],
    .submit input[type="submit"],
    .submit input[type="button"] {
        margin-right: 40px;
        width: 220px;
        height: 50px;
    }


}

/*	送信内容の確認
---------------------------------------- */
.mail_confirm {
    width: 100%;
    padding: 0 20px 50px;
    margin: 0;
}

.mail_confirm.error {
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-calc(100vh - 330px);
    min-height: calc(100vh - 330px);
}

.mail_confirm .inner {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mail_confirm {
        padding: 0;
    }

    .mail_confirm.error {
        min-height: 100vh;
        min-height: -webkit-calc(100vh - 220px);
        min-height: calc(100vh - 220px);
        padding: 0;
    }

    .mail_confirm .inner {
        width: 1280px;
        padding: 0 145px;
        margin: 0 auto;
    }
}

.mail_confirm .hl {
    display: inline-block;
    width: 100%;
    font-size: 30px;
    line-height: 47px;
    vertical-align: top;
    font-weight: bold;
    text-align: center;
    color: #093257;
    padding: 24px 0 52px;
}

.mail_confirm .hl span {
    display: inline-block;
}

.mail_confirm .confirm_message {
    padding-bottom: 40px;
    font-size: 14px;
}

.mail_confirm .error_messe {
    color: #f00;
}

table.confirm {
    width: 100%;
    margin-top: 0px;
}

table.confirm th {
    display: block;
    padding-bottom: 5px;
    font-weight: bold;
    text-align: left;
    font-size: 14px;
}

table.confirm td {
    display: block;
    width: 100%;
    min-height: 40px;
    margin-bottom: 18px;
    padding: 10px 0 11px 10px;
    border: solid 1px #7199BC;
    background-color: #F8FDFF;
    color: #000000;
    border-radius: 4px;
    font-size: 14px;
}

@media (min-width: 768px) {
    .mail_confirm .hl {
        padding: 40px 0 60px;
    }

    .mail_confirm .hl span {
        display: inline;
    }

    .mail_confirm .confirm_message {
        font-size: 16px;
        padding-bottom: 60px;
    }

    table.confirm th {
        padding-bottom: 8px;
        font-size: 14px;
    }

    table.confirm td {
        min-height: 50px;
        padding: 14px 0 15px 20px;
        font-size: 16px;
    }

}

/*	送信完了
---------------------------------------- */
.mail_complete {
    width: 100%;
    height: 100%;
    height: 100vh;
    min-height: -webkit-calc(100vh - 330px);
    min-height: calc(100vh - 330px);
    padding: 0 15px;
    margin: 0;
}

.mail_complete .inner {
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .mail_complete {
        min-height: 100vh;
        min-height: -webkit-calc(100vh - 220px);
        min-height: calc(100vh - 220px);
        padding: 0;
    }

    .mail_complete .inner {
        width: 1280px;
        padding: 0 145px;
        margin: 0 auto;
    }
}

.mail_complete .hl {
    display: inline-block;
    width: 100%;
    font-size: 30px;
    line-height: 47px;
    vertical-align: top;
    font-weight: bold;
    text-align: center;
    color: #093257;
    padding: 24px 0 52px;
}

.mail_complete .hl span {
    display: inline-block;
}

.mail_complete .txt_msg {
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
}

.mail_complete p.return_top {
    margin: 0;
    padding: 50px 0;
    text-align: center;
}

.mail_complete p.return_top a {
    display: block;
    width: 220px;
    height: 50px;
    margin: 0 auto;
    background: #093257;
    color: #fff;
    font-size: 18px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
}

@media (min-width: 768px) {
    .mail_complete .hl {
        padding: 40px 0 60px;
    }

    .mail_complete .hl span {
        display: inline;
    }

    .mail_complete .txt_msg {
        font-size: 16px;
    }

    .mail_complete p.return_top {
        margin: 0;
        padding: 50px 0 90px;
        text-align: center;
    }

    .mail_complete p.return_top a {
        width: 320px;
        font-size: 20px;
    }
}

/* **************************************************
	404ページ
************************************************** */
.not_found {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-calc(100vh - 330px);
    min-height: calc(100vh - 330px);
    padding: 0 15px;
    margin: 0;
}

.not_found .inner {
    width: 100%;
    padding: 40px 0 60px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .not_found {
        padding: 0;
        min-height: 100vh;
        min-height: -webkit-calc(100vh - 220px);
        min-height: calc(100vh - 220px);
    }

    .not_found .inner {
        width: 1280px;
        min-height: 680px;
        padding: 60px 145px 90px;
        margin: 0 auto;
    }
}

.not_found p {
    padding-top: 50px;
    text-align: center;
    font-size: 14px;
    color: #000000;
}

.not_found p.return_top a {
    display: block;
    width: 280px;
    height: 50px;
    margin: 20px auto 0;
    background: #093257;
    color: #fff;
    font-size: 18px;
    line-height: 48px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
}

@media (min-width: 768px) {
    .not_found p {
        font-size: 16px;
    }

    .not_found p.return_top a {
        width: 320px;
    }
}
