@charset "UTF-8";

@font-face {
    font-family: "YuGothicStdN";
    src: url("../font/YuGothicStdN/YuGoStdN-E.otf");
}

@font-face {
    font-family: "YuGothicPr6N";
    src: url("../font/YuGothicPr6N/YuGoPr6N-B.otf");
    font-weight: 700;
}

.header {
    background: #073683;
    color: #ffffff;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: 1920px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

@media screen and (max-width: 767px) {
    .header-inner {
        padding: 0 15px;
    }
}

.header-container {
    align-items: center;
    display: flex;
    height: 80px;
    justify-content: space-between;
    position: relative;
    transition: 0.2s height ease;
}

.header-container02 {
    height: 100px;
}

@media (min-width: 1500px) {
    .header-container {
        margin-left: 52px;
    }
}

@media screen and (max-width: 767px) {
    .header-container {
        height: 50px;
        justify-content: center;
    }
}



.header-list {
    align-items: center;
    display: flex;
    margin-right: 20px;
    list-style: none;
    margin-bottom: 0;
}

@media (min-width: 1500px) {
    .header-list {
        margin-right: 7.525vw;
    }
}

.header-item {
    font-weight: 700;
}

.header-item:not(:last-child) {
    margin-right: 40px;
}

.header-item a {
    padding: 10px 4px;
    color: #fff;
}

.header-nav {
    display: none;
    width: 100%;
}

@media (min-width: 1350px) {
    .header-nav {
        display: flex;
        justify-content: flex-end;
    }
}

.header-tit {
    align-items: center;
    display: flex;
    font-family: "YuGothicStdN", "游ゴシック体", "Yu Gothic", yugothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 3.2rem;
    font-weight: 500;
}

@media screen and (min-width: 1008px) {
    .header-tit {
        min-width: 350px;
    }
}

@media screen and (max-width: 767px) {
    .header-tit {
        font-size: 2.4rem;
    }
}

.header-tit a {
    color: #fff;
}

.header-tit span {
    font-size: 1.8rem;
    font-weight: 400;
    margin-left: 36px;
    color: #fff;
    word-break: keep-all;
}

@media screen and (max-width: 767px) {
    .header-tit span {
        display: none;
    }
}

.header-btns a {
    display: inline-block;
    font-weight: 700;
    padding: 9.5px 10px;
    text-align: center;
    width: 160px;
    border-radius: 40px;
    line-height: 1.5;
}


.header-btns a:first-child {
    /* border: 2px solid #E09F38;
    background-color: #E09F38; */
    border: 2px solid #f47e22;
    background-color: #f47e22;
    color: #fff;
}

.header-btns a:last-child {
    background: #ffffff;
    border: 2px solid #0450bf;
    color: #073683;
    margin-left: 10px;
}

.drawer {
    background: #073683;
    height: 100vh;
    left: calc(20px - 100%);
    max-width: 600px;
    position: fixed;
    top: 0;
    transition: left 0.5s ease;
    width: calc(100% - 20px);
    z-index: 10001;
}

.drawer._active {
    left: 0;
}

.drawer-opener {
    display: block;
    position: absolute;
    padding: 10px 0;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

@media screen and (min-width: 768px) {
    .drawer-opener {
        left: unset;
        right: 0;
    }
}

@media (min-width: 1350px) {
    .drawer-opener {
        display: none;
    }
}

.drawer-opener span {
    background-color: #ffffff;
    display: block;
    height: 3px;
    position: relative;
    width: 30px;
}

.drawer-opener span::before, .drawer-opener span::after {
    background-color: #ffffff;
    content: "";
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
}

.drawer-opener span::before {
    top: -11px;
}

.drawer-opener span::after {
    top: 11px;
}

.drawer-nav {
    color: #ffffff;
    height: 100%;
    padding: 70px 20px 30px;
    position: relative;
    width: 100%;
}

.drawer-closer {
    cursor: pointer;
    display: block;
    height: 33px;
    position: absolute;
    right: 25px;
    top: 25px;
    transition: opacity 0.3s ease;
    width: 33px;
}

.drawer-closer:hover {
    opacity: 0.7;
}

.drawer-closer::before {
    background: #ffffff;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 30px;
}

.drawer-closer::after {
    background: #ffffff;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 30px;
}

.drawer-list {
    margin: 0 auto 40px;
    max-width: 450px;
    padding-left: 0;
    list-style: none;
}

@media screen and (max-width: 1007px) {
    .drawer-list {
        max-width: 450px;
    }
}

.drawer-item {
    padding: 18px 20px;
}

.drawer-item a {
    color: #fff;
}

.drawer-bwrap {
    margin: 0 auto;
    max-width: 400px;
}

.drawer-btn:first-child {
    margin-bottom: 20px;
}

.drawer-btn:first-child a {
    /* background: #E09F38; */
    background: #f47e22;
    color: #fff !important;
}

.drawer-btn:last-child a {
    background: #ffffff;
    border: 2px solid #0450bf;
    color: #073683;
}

.drawer-btn a {
    border-radius: 40px;
    display: inline-block;
    font-weight: 700;
    padding: 12px 10px;
    text-align: center;
    width: 100%;
}

.overlay {
    background: rgba(0, 0, 0, 0.7);
    bottom: 0;
    display: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1000;
}

.overlay._active {
    display: block;
}

body .content-wrapper {
    padding-left: 0 !important;
}

body>.wrapper {
    margin-bottom: 0;
}

body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper {
    padding-left: 0 !important;
}

@media screen and (min-width: 1008px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .input_form .width-md, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .input_form .width-md {
        padding-left: 80px;
        max-width: 1140px;
    }
}

@media screen and (max-width: 1440px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .input_form .width-md, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .input_form .width-md {
        padding-left: 0;
        margin-left: auto;
    }
}

@media screen and (min-width: 1008px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper form.input_form .form-group label.col-form-label, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper form.input_form .form-group label.col-form-label {
        min-width: 100px;
    }
}

body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .white-box, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .white-box {
    margin-bottom: 5rem;
}

@media screen and (max-width: 767px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .input-text, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .input-text {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 1440px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .search-btn, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .search-btn {
        margin-right: auto;
    }
}

body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper form label.col-form-label, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper form label.col-form-label {
    margin-top: 0 !important;
}

body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .required, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .required {
    line-height: 1 !important;
}

@media screen and (max-width: 1440px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .steps-wrap, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .steps-wrap {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 1440px) {
    body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .steps-wrap-spacer, body:not(.sidebar-mini-md):not(.sidebar-mini-xs):not(.layout-top-nav) .content-wrapper .steps-wrap-spacer {
        display: none;
    }
}
