@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

@media (max-width: 540px) {
    html {
        font-size: 55.5%;
    }
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="reset"],
[type="submit"],
button,
html [type="button"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: '';
    content: none;
}

body {
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

[type="button"],
[type="reset"],
[type="submit"],
a,
a img,
button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
* {
    margin: 0;
    padding: 0;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    color: #052954;
}

@media (max-width: 540px) {
    body {
        line-height: 1.75;
    }
}

body.-noscroll {
    overflow: hidden;
}

main {
    overflow-x: clip;
}

a {
    color: inherit;
    display: block;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    font-family: "Zen Kaku Gothic New", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
    display: block;
    color: #052954;
}

::-moz-selection {
    color: #fff;
    background-color: #052954;
}

::selection {
    color: #fff;
    background-color: #052954;
}

::-webkit-scrollbar {
    width: 12.5px;
}

@media (max-width: 540px) {
    ::-webkit-scrollbar {
        width: 5px;
    }
}

::-webkit-scrollbar-track {
    background-color: #aaa;
}

::-webkit-scrollbar-thumb {
    background-color: #041d3c;
}

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd_inner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 110;
    background-color: rgba(5, 41, 84, 0.9);
    /* 最初は透明 */
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;
}

.hd_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0;
    background-color: transparent;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    height: 90px;
}

.hd_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.6));
    filter: drop-shadow(0px 0px 16px rgba(0, 0, 0, 0.6));
}

@media (max-width: 540px) {
    .hd_content {
        height: 65px;
    }
}

.hd_logo {
    position: relative;
}

.hd_logo a img {
    width: 220px;
    padding: 15px;
}

@media (max-width: 540px) {
    .hd_logo a img {
        width: 170px;
        padding: 15px 5%;
    }
}

.hd_logo a:hover {
    opacity: 0.7;
}

.hd_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.hd_remote {
    position: relative;
    width: 160px;
    margin-right: 15px;
}

@media (max-width: 540px) {
    .hd_remote {
        display: none;
    }
}

.hd_remote a:hover {
    opacity: 0.7;
}

.hd_lists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-right: 15px;
}

@media (max-width: 1280px) {
    .hd_lists {
        display: none;
    }
}

.hd_list {
    position: relative;
}

.hd_link {
    padding: 20px 15px;
    display: block;
    position: relative;
    -webkit-transition: 0.5s opacity;
    transition: 0.5s opacity;
}

.hd_link::after {
    position: absolute;
    left: 50%;
    content: '';
    width: 50%;
    height: 1px;
    background: #fff;
    bottom: 12.5px;
    -webkit-transform: translateX(-50%) scale(0, 1);
    transform: translateX(-50%) scale(0, 1);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    border-radius: 5px;
}

.hd_link:hover {
    opacity: 0.7;
}

.hd_link:hover::after {
    -webkit-transform: translateX(-50%) scale(1, 1);
    transform: translateX(-50%) scale(1, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
}

.hd_link.-nolink:hover {
    opacity: 1;
}

.hd_link span {
    display: block;
    text-align: center;
}

.hd_link span.main {
    font-size: 2.6rem;
    letter-spacing: 1px;
    line-height: 1;
    color: #fff;
    font-family: minion-pro, serif;
}

.hd_link span.sub {
    font-size: 1.4rem;
    color: #fff;
}

.hd_list .hd_pulldown {
    position: absolute;
    top: 85px;
    left: 15px;
    width: 210px;
    background-color: #fff;
    display: none;
    -webkit-box-shadow: 0px 0px 15px -10px #052954;
    box-shadow: 0px 0px 15px -10px #052954;
}

.hd_list .hd_pulldown_list {
    border-bottom: 1px solid rgba(5, 41, 84, 0.5);
    position: relative;
}

.hd_list .hd_pulldown_list:last-child {
    border-bottom: none;
}

.hd_list .hd_pulldown_list a {
    padding: 10px 7.5px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 55px;
}

.hd_list .hd_pulldown_list a:hover {
    opacity: 0.6;
}

.hd_list .hd_pulldown_list a.-external::after {
    content: "\f0327";
    font-family: 'icomoon';
    margin-left: 2.5px;
    margin-top: 2.5px;
}

.hd_list .hd_pulldown.-service .hd_pulldown_list a img {
    width: 35px;
    margin-right: 5px;
}

@media (min-width: 1281px) {
    .hd_menu {
        display: none;
    }
}

.hd_menu_btn {
    position: relative;
    cursor: pointer;
    width: 90px;
    height: 90px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    z-index: 999;
    -webkit-transition: all .5s;
    transition: all .5s;
}

.hd_menu_btn:hover span {
    background: #fff;
}

.hd_menu_btn:hover span:nth-of-type(1) {
    top: 29.5%;
}

.hd_menu_btn:hover span:nth-of-type(2) {
    top: 42.5%;
}

.hd_menu_btn:hover span:nth-of-type(3)::after {
    color: #fff;
}

@media (max-width: 540px) {
    .hd_menu_btn {
        width: 65px;
        height: 65px;
    }
}

.hd_menu_btn span {
    display: inline-block;
    -webkit-transition: all .5s;
    transition: all .5s;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 45%;
    height: 1px;
    background: #fff;
}

.hd_menu_btn span:nth-of-type(1) {
    top: 27.5%;
}

.hd_menu_btn span:nth-of-type(2) {
    top: 44.5%;
}

.hd_menu_btn span:nth-of-type(3) {
    top: 45.5%;
    height: 0;
    left: 50%;
}

.hd_menu_btn span:nth-of-type(3)::after {
    content: "MENU";
    color: #fff;
    font-family: minion-pro, serif;
    font-size: 1.4rem;
    -webkit-transition: all .5s;
    transition: all .5s;
}

@media (max-width: 540px) {
    .hd_menu_btn span:nth-of-type(3)::after {
        font-size: 1.2rem;
    }
}

@media (max-width: 840px) {
    .hd_menu_btn span:nth-of-type(3) {
        top: 43.5%;
        left: 50%;
    }
}

@media (max-width: 540px) {
    .hd_menu_btn span:nth-of-type(3) {
        left: 46.5%;
    }
}

.hd_menu_btn.-active {
    background-color: transparent;
}

.hd_menu_btn.-active:hover {
    opacity: 1;
}

.hd_menu_btn.-active span {
    background-color: #fff;
}

.hd_menu_btn.-active span:nth-of-type(1) {
    top: 35%;
    left: 32%;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 35%;
}

.hd_menu_btn.-active span:nth-of-type(2) {
    top: 35%;
    left: 32%;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 35%;
}

.hd_menu_btn.-active span:nth-of-type(3) {
    height: 0;
    left: 50%;
}

.hd_menu_btn.-active span:nth-of-type(3)::after {
    content: "CLOSE";
    color: #fff;
}

@media (max-width: 840px) {
    .hd_menu_btn.-active span:nth-of-type(3) {
        left: 50%;
    }
}

@media (max-width: 540px) {
    .hd_menu_btn.-active span:nth-of-type(3) {
        left: 46.5%;
    }
}

.hd_menu_body {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #052954;
    -webkit-transition: all .5s;
    transition: all .5s;
    pointer-events: none;
}

.hd_menu_body.-active {
    opacity: 1;
    z-index: 998;
    pointer-events: auto;
}

.hd_menu_inner {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
    padding: 0 3.5%;
}

.hd_menu_content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 80px auto 50px;
    max-width: 1280px;
    height: 80%;
    padding: 0 50px;
    overflow-y: auto;
    position: relative;
}

@media (max-width: 840px) {
    .hd_menu_content {
        padding: 0px 5%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
}

@media (max-width: 540px) {
    .hd_menu_content {
        margin: 90px auto 120px;
    }
}

.hd_menu_info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 30%;
}

@media (max-width: 840px) {
    .hd_menu_info {
        width: 540px;
        max-width: 100%;
    }
}

.hd_menu_logo {
    width: 300px;
    max-width: 100%;
}

.hd_menu_sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hd_menu_sns li:not(:last-child) {
    margin-right: 10px;
}

.hd_menu_sns li a {
    width: 45px;
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}

@media (max-width: 540px) {
    .hd_menu_sns li a {
        width: 35px;
    }
}

.hd_menu_sns li a:hover {
    opacity: 0.5;
}

.hd_menu_main {
    width: 70%;
    padding-left: 5%;
}

@media (max-width: 840px) {
    .hd_menu_main {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
}

.hd_menu_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 55%;
}

@media (max-width: 1280px) {
    .hd_menu_nav {
        width: 100%;
    }
}

.hd_menu_nav_content {
    width: calc(100% / 2 - 15px);
}

@media (max-width: 540px) {
    .hd_menu_nav_content:nth-child(2) {
        margin-top: 30px;
    }
}

.hd_menu_nav_content:nth-child(3) {
    margin-top: 30px;
}

@media (max-width: 540px) {
    .hd_menu_nav_content {
        width: 100%;
    }
}

.hd_menu_nav_ttl {
    font-size: clamp(2.4rem, 3vw, 2.6rem);
    font-family: minion-pro, serif;
    color: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    display: block;
    margin-bottom: 5px;
}

.hd_menu_nav ul {
    margin-left: 10px;
}

.hd_menu_nav ul li a {
    display: inline-block;
    padding: 2.5px 0 2.5px 20px;
    position: relative;
    color: #fff;
}

.hd_menu_nav ul li a::before {
    content: "";
    position: absolute;
    width: 12.5px;
    height: 0.9px;
    background-color: rgba(255, 255, 255, 0.5);
    top: 50%;
    left: 0;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.hd_menu_nav ul li a.-external::after {
    content: "\f0327";
    font-family: 'icomoon';
    margin-left: 2.5px;
    margin-top: 2.5px;
}

.hd_menu_nav ul li a:hover {
    opacity: 0.5;
}

.hd_menu_banner {
    margin-top: 30px;
    width: 400px;
    max-width: 100%;
}

.hd_menu_banner li {
    margin-bottom: 15px;
}

.hd_menu_banner li a {
    position: relative;
}

.hd_menu_banner li a::after {
    content: "\f0327";
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    right: 30px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: 0.5s right, 0.5s top;
    transition: 0.5s right, 0.5s top;
    font-size: 2rem;
}

.hd_menu_banner li a:hover {
    opacity: 0.8;
}

.hd_menu_banner li a:hover::after {
    top: calc(50% - 5px);
    right: 25px;
}

.hd_menu_banner li a.-recruit::after {
    color: #fff;
}

.hd_menu_banner li a.-blog::after {
    color: #052954;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    background-color: #F2F3F4;
    padding: 50px min(50px,5%);
}

.ft_inner {
    padding: 0px 0;
}

.ft_body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
}

.ft_info {
    color: #052954;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.ft_logo {
    width: 300px;
    max-width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 540px) {
    .ft_logo {
        width: 220px;
    }
}

/*==================================================================================================
	共通
==================================================================================================*/
.pagehead_inner {
    position: relative;
}

.pagehead_ttl {
    padding: calc(clamp(100px, 16vw, 150px)*1.2) 5% 0px;
    position: relative;
    z-index: 10;
}

@media (max-width: 540px) {
    .pagehead_ttl {
        padding: calc(clamp(100px, 16vw, 150px)*1.1) 5% 0px;
    }
}

.pagehead_ttl .sub {
    display: block;
    text-align: center;
    font-family: minion-pro, serif;
    font-size: clamp(2.8rem, 3.6vw, 3.2rem);
    font-weight: 400;
    color: #052954;
}

.pagehead_ttl .main {
    display: block;
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    line-height: 1.2;
    word-break: break-all;
    margin: 7.5px 0 0.4em;
    font-size: calc(clamp(3.6rem,6vw,6rem)*1.1);
    font-weight: 500;
    position: relative;
    color: #052954;
}

.pagehead_ttl .border {
    position: relative;
    display: block;
    text-align: center;
}

.pagehead_ttl .border::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 100px;
    height: 2px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background-color: #052954;
}

.cmn {
    margin: clamp(60px, 10vw, 100px) auto;
    padding: 0 5%;
    position: relative;
}

.cmn_inner {
    margin: 0 auto;
    position: relative;
}

.cmn_inner.-xxl {
    max-width: 1600px;
}

.cmn_inner.-xl {
    max-width: 1280px;
}

.cmn_inner.-lg {
    max-width: 1024px;
}

.cmn_inner.-md {
    max-width: 840px;
}

.cmn_inner.-sm {
    max-width: 700px;
}

.cmn_inner.-xs {
    max-width: 540px;
}

.cmn_secttl .sub {
    font-size: clamp(2.4rem, 3vw, 2.6rem);
    font-family: "Zen Old Mincho", serif;
    display: block;
    margin-left: 3px;
}

.cmn_secttl .main {
    font-size: clamp(5.4rem, 10vw, 10rem);
    font-family: minion-pro, serif;
    display: block;
    line-height: 110%;
    word-break: break-all;
    margin-bottom: 0.35em;
}

.uk-modal,
.uk-modal-body {
    padding: 30px min(30px,5%);
}

.uk-modal-dialog {
    width: 840px;
}
