@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Noto+Serif+JP:400,700&display=swap&subset=japanese');

/* ==========================================================================
   RESET
   ========================================================================== */
/*
* http://meyerweb.com/eric/tools/css/reset/
* v2.0 | 20110126
* License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* form */
input,textarea {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -webkit-appearance: none;
    max-width: 100%;
    cursor: pointer;
}

/*
input[type="text"],
input[type="number"],
input[type="tel"],
input[type="email"],
input[type="button"],
input[type="submit"] {
    padding: 0;
    border: none;
    border-radius: 0;
    outline: none;
    background: none;

    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    box-sizing: border-box;
    cursor: pointer;
}
*/

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

input[type="radio"] {
    display: none;
}
input[type="radio"]:checked + label {
    background: #ff0000;
}

input[type="checkbox"] {
    display: none;
}
input[type="checkbox"]:checked + label {
    background: #ff0000;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    border-radius: 0;
}

textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    padding: 0;
    border: 0;
    outline: none;
    background: transparent;
}

button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

/* add */
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

* {
    box-sizing: border-box;
}

audio, canvas, iframe, img, svg, video {
    vertical-align: middle;
}

a, a:hover {
    text-decoration: none;
}

a {
    color: inherit;
    content: inherit;
}

b {
    font-weight: bold;
}

*:focus {
    outline: none;
}

/* ==========================================================================
 *
 * ========================================================================== */
html {
    font-family: "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
}

.font-min {
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

html.noScroll,
html.noScroll body {
    overflow: hidden;
    height: 100%;
}

.disp-pc { display: block; }
.disp-sp { display: none; }

@media only screen and (max-width: 768px) {
    .disp-pc { display: none; }
    .disp-sp { display: block; }
}

#wrapper {
    width: 100%;
    overflow: hidden;
}

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

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

.lyt-inner {
    max-width: 980px;
    padding: 0 20px;
    margin: 0 auto;
}

@media only screen and (max-width: 768px) {
    .lyt-inner {
        width: 94%;
        padding: 0 0;
    }
}

.text-sup {
    font-size: 50%;
    vertical-align: top;
}

.text-sub {
    font-size: 50%;
    vertical-align: text-after-edge;
}

.svg-wrap {
    position: relative;
}

.svg-wrap svg {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

/* ------------------------------
 * #gHeader
 * ------------------------------ */
#gHeader {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3000;
}

.gHeader_logo01,
.gHeader_logo-page {
    width: 270px;
    position: absolute;
    top: 70px;
    left: 22px;
    z-index: 1000;
}

.is-gHeader_logo-hidden .gHeader_logo01 {
    display: none;
}

@media only screen and (max-width: 768px) {
    .gHeader_logo01,
    .gHeader_logo-page {
        width: 127px;
        top: 12px;
        left: 11px;
    }
}

/* ------------------------------
 *
 * ------------------------------ */
.sideFlBtn {
    color: #fff;
    font-size: 1.8rem;
    letter-spacing: 0.34em;
    display: block;
    width: 80px;
    height: 226px;
    background: #958c54;
    border-radius: 12px 0 0 12px;
    position: fixed;
    top: 208px;
    right: 0;
    transform: translateX(10px);
    z-index: 3000;
}

.device-pc .sideFlBtn {
    transition: transform 300ms;
}

.device-pc .sideFlBtn:hover {
    transform: translateX(0);
}

.sideFlBtn_text.is-horizonal {
    display: none;
}

.sideFlBtn_text.is-vertical {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    display: block;
    width: 20px;
    height: 100%;
    position: absolute;
    top: 70px;
    left: 25px;
}

@media only screen and (max-width: 768px) {
    .sideFlBtn {
        font-size: 1.4rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(700/750 * 100%);
        height: 40px;
        border-radius: 11px 11px 0 0;
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    .sideFlBtn_text.is-horizonal {
        display: block;
    }

    .sideFlBtn_text.is-vertical {
        display: none;
    }

    .device-pc .sideFlBtn {
        transition: none;
    }

    .device-pc .sideFlBtn:hover {
        transform: translateX(-50%);
    }
}

/* ------------------------------
 * hNav
 * ------------------------------ */
.hNav {
    display: block;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
}

.hNav_container {
    width: 100%;
    height: 52px;
    background: rgba(255, 255, 255, .9);
}

.hNav_list-1st {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hNav_list-1st > li {
    padding: 0 40px;
    position: relative;
}

.hNav_btn-1st {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 52px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.hNav_btn-1st.is-comingsoon {
    opacity: .4;
    cursor: auto;
}

.hNav_btn-1st .hNav_btn_text {
    position: relative;
}

.hNav_btn-1st .hNav_btn_text img {
    height: 18px;
    width: auto;
}

[aria-selected="false"] .hNav_btn-1st:before,
[aria-selected="false"] .hNav_btn-1st:after {
    opacity: 1;
    visibility: hidden;
    transition: all 400ms;
}

[aria-selected="true"] .hNav_btn-1st:before,
[aria-selected="true"] .hNav_btn-1st:after {
    opacity: 1;
    visibility: visible;
    transition: all 400ms;
}

.hNav_block-2nd {
    width: 100%;
    background: rgba(255, 255, 255, .9);
    position: absolute;
    top: 52px;
    left: 0;
    z-index: 1;
    display: none;
}

.hNav_btn-2nd {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
}

.hNav_btn-a {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.hNav_btn-a_num {
    width: 16px;
    margin: 0 12px 0 24px;
}

.hNav_btn-a_text {
    color: #000000;
    font-size: 1.7rem;
    letter-spacing: 0.15em;
}

/* hover */
.hNav_btn-1st .hNav_btn_text:after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #0d1d82;
    position: absolute;
    bottom: -3px;
    left: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 300ms;
}

.hNav_list-1st > li:hover .hNav_btn-1st:not(.is-comingsoon) .hNav_btn_text:after {
    transform: translateX(0);
    opacity: 1;
}

/* current */
.hNav_list-1st > li.is-current .hNav_btn_text:after {
    transform: translateX(0);
    opacity: 1;
}

@media only screen and (max-width: 840px) {
    .hNav_list-1st > li {
        padding: 0 25px;
    }

    .hNav_btn-a_num {
        margin: 0 12px 0 10px;
    }
}

@media only screen and (max-width: 768px) {
    .hNav {
        display: none;
    }
}

/* ------------------------------
* .drawerSwitch
* ------------------------------ */
.drawerSwitch {
    display: none;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .8);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 4001;
    cursor: pointer;
}

.drawerSwitch,
.drawerSwitch *,
.drawerSwitch *:before,
.drawerSwitch *:after {
    transition: all 300ms;
}

.drawerSwitch_border {
    display: block;
    width: 25px;
    height: 17px;
    margin: auto auto;
    position: relative;
}

.drawerSwitch_border span {
    display: block;
    width: 25px;
    height: 1px;
    background: #0d1d82;
    position: absolute;
    left: 0;
}

.drawerSwitch_border span:nth-child(1) { top: 0; }
.drawerSwitch_border span:nth-child(2) { width: 22px; top: 8px; }
.drawerSwitch_border span:nth-child(3) { width: 19px; bottom: 0; }

/* active */
.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(1) { width: 25px; transform: rotate(45deg); top: 8px; }
.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(2) { opacity: 0; }
.drawerSwitch[aria-expanded="true"] .drawerSwitch_border span:nth-child(3) { width: 25px; transform: rotate(-45deg); bottom: 8px }

@media only screen and (max-width: 768px) {
    .drawerSwitch {
        display: block;
    }
}

/* ------------------------------
 * #drawer
 * ------------------------------ */
#drawer {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .97);
    padding: 0 0 0 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4000;
}

#drawer[aria-expanded] {
    transition: all 400ms;
}

#drawer[aria-expanded="false"] {
    opacity: 0;
    visibility: hidden;
}

#drawer[aria-expanded="true"] {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------
 * gNav
 * ------------------------------ */
.gNav {
    display: block;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling : touch;
}

.gNav_logo01 {
    width: 270px;
    position: absolute;
    top: 72px;
    left: 22px;
}

@media only screen and (max-width: 768px) {
    .gNav_logo01 {
        width: 127px;
        top: 12px;
        left: 11px;
    }
}

.gNav_inner {
    width: 100%;
    padding: 80px 0 45px 0;
}

.gNav_list-1st > li {
    transition: all 400ms;
}

.gNav_list-1st > li:nth-child(1) { transition-delay: 200ms; }
.gNav_list-1st > li:nth-child(2) { transition-delay: 300ms; }
.gNav_list-1st > li:nth-child(3) { transition-delay: 400ms; }
.gNav_list-1st > li:nth-child(4) { transition-delay: 500ms; }
.gNav_list-1st > li:nth-child(5) { transition-delay: 600ms; }
.gNav_list-1st > li:nth-child(6) { transition-delay: 700ms; }

#drawer[aria-expanded="false"] .gNav_list-1st > li {
    opacity: 0;
    transform: translateY(30px);
}

#drawer[aria-expanded="true"] .gNav_list-1st > li {
    opacity: 1;
    transform: translateX(0);
}

.gNav_btn-1st {
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 82px;
    position: relative;
}

.gNav_btn-1st-l {
    height: 110px;
}

.gNav_btn-1st .gNav_btn_text_en {
    margin: 20px 0 0 0;
}

.gNav_btn-1st .gNav_btn_text_en img {
    width: auto;
    height: 10px;
}

.gNav_btn-1st .gNav_btn_text01 {
    color: #000;
    font-size: 1.65rem;
    letter-spacing: 0.15em;
    line-height: 1.55;
    margin: 5px 0 0 0;
}

.gNav_btn-2nd {
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 40px;
    position: relative;
}

.gNav_btn-a {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
}

.gNav_btn-a_num {
    width: 15px;
    margin: 0 20px 0 36%;
}

.gNav_btn-a_text {
    color: #000;
    font-size: 1.5rem;
    letter-spacing: 0.15em;
}

/* comingsoon */
.gNav_btn-1st.is-comingsoon .icon-comingsoon {
    color: #fff;
    font-size: 0.8em;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 14px;
    background: #d1d1d1;
    position: absolute;
    bottom: 3px;
    left: calc(50% - 42px);
}

/* ------------------------------
 * #gFooter
 * ------------------------------ */
#gFooter {
    padding: 35px 0 25px 0;
    position: relative;
}

#gFooter .gFooter_inner {
    max-width: 980px;
    padding: 0 20px;
    margin: 0 auto;
}

#gFooter .gFBtn_list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

#gFooter .gFBtn_list > li + li {
    margin-left: 45px;
}

#gFooter .gFBtn_link {
    color: #000;
    font-size: 1.2rem;
    letter-spacing: 0.09em;
    display: block;
    padding: 0 10px 0 0;
    position: relative;
}

#gFooter .copyright {
    color: #000;
    font-size: 1.0rem;
    letter-spacing: 0.09em;
    line-height: 1.8;
    margin: 10px 0 0 0;
}

@media only screen and (max-width: 768px) {
    #gFooter {
        padding: 15px 0 60px 0;
    }

    #gFooter .gFooter_inner {
        width: 94%;
        padding: 0 0;
    }

    #gFooter .gFBtn_list {
    }

    #gFooter .gFBtn_list > li {
        width: 50%;
    }

    #gFooter .gFBtn_list > li + li {
        margin-left: 0;
    }

    #gFooter .gFBtn_link {
        font-size: 1.2rem;
    }

    #gFooter .copyright {
        font-size: 0.7rem;
        letter-spacing: normal;
        line-height: 1.5;
        margin: 22px 0 0 0;
    }

}

/* ==========================================================================
 * pageloader
 * ========================================================================== */
#pageloader {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background: #012144;
    background: radial-gradient(ellipse at center, #012144 1%,#000826 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#012144', endColorstr='#000826',GradientType=1 );
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
}

#nw-loader_icon {
    display: block;
    width: 100px;
    height: 100px;
    background: url("/chuto/common/img/copy.png") no-repeat center center / contain;
    position: relative;
    animation: loadingImg 2s ease-in-out 0s infinite both;
}

@keyframes loadingImg {
    from { opacity: 1; }
    50% { opacity: 0; }
    to { opacity: 1; }
}

@media only screen and (max-width: 768px) {
    #nw-loader_icon {
        width: 80px;
    }
}

/* ==========================================================================
 * loading
 * ========================================================================== */
#loading {
    width: 100vw;
    height: 100vh;
    background: #012144;
    background: radial-gradient(ellipse at center, #012144 1%,#000826 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#012144', endColorstr='#000826',GradientType=1 );
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9998;
}

/*
#loading_icon {
    display: block;
    width: 100px;
    height: 100px;
    background: url("/chuto/common/img/copy.png") no-repeat center center / contain;
    position: absolute;
    top: calc(50% - 120px);
    left: calc(50% - 50px);
    display: none;
}
*/

#loading_gauge {
    width: 0;
    height: 2px;
    background: #fff;
    margin-left: 2px;
    position: absolute;
    top: 50%;
    left: 0;
}

/* ==========================================================================
 * #main
 * ========================================================================== */
#main {
    position: relative;
    z-index: 1;
}

@media only screen and (max-width: 768px) {
    #main {
    }
}

.text {
    text-align: justify;
}

.device-pc .hover-opacity {
    transition: opacity 300ms;
}

.device-pc .hover-opacity:hover {
    opacity: .4;
}

.device-pc .hover-scale {
    transform: scale(1);
    transition: transform 300ms;
}

.device-pc .hover-scale:hover {
    transform: scale(1.05);
}

.list-disc li:before {
    content: '・';
}

.list-disc li {
    text-indent: -1em;
    padding-left: 1em;
}

.is-accordionBtn {
    cursor: pointer;
}

/* .mdl-btn-comingsoon */
.mdl-btn-comingsoon {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px!important;
    height: 26px!important;
    background: rgba(153, 153, 153, .5);
}

@media only screen and (max-width: 768px) {
    .mdl-btn-comingsoon {
        font-size: 0.8rem;
        width: 80px!important;
        height: 20px!important;
    }
}

/* .mdl-btn-more */
.mdl-btn-more {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 172px;
    height: 42px;
    border: 1px solid #fff;
    position: relative;
}

.mdl-btn-more.is-type-d {
    border-color: #203192;
}

.mdl-btn-more * {
    fill: #fff;
}

.mdl-btn-more.is-type-d * {
    fill: #203192;
}

.mdl-btn-more_text {
    display: block;
    width: 50px;
    height: 15px;
}

.mdl-btn-more .icon-arrow {
    display: block;
    width: 16px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}

.mdl-btn-more .icon-blank {
    display: block;
    width: 13px;
    height: 13px;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
}

.device-pc .mdl-btn-more,
.device-pc .mdl-btn-more * {
    transition: all 300ms;
}

.device-pc .mdl-btn-more:hover {
    background: #fff;
}

.device-pc .mdl-btn-more:hover * {
    fill: #203192;
}

.device-pc .mdl-btn-more:hover .icon-arrow svg {
    transform: translateX(5px);
}

.device-pc .mdl-btn-more.is-type-d:hover {
    background:  #203192;
}

.device-pc .mdl-btn-more.is-type-d:hover * {
    fill: #fff;
}

@media only screen and (max-width: 768px) {
    .mdl-btn-more {
        width: calc(628/750 * 100%);
        height: 36px;
    }

    .mdl-btn-more_text {
        display: block;
        width: 39px;
        height: 11px;
    }

    .mdl-btn-more .icon-arrow {
        width: 14px;
        height: 18px;
        right: auto;
        left: calc(50% + 40px);
    }

    .mdl-btn-more .icon-blank {
        width: 12px;
        height: 12px;
        right: auto;
        left: calc(50% + 40px);
    }
}

/* .mdl-btn-entry */
.mdl-btn-entry {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 396px;
    height: 98px;
    background: #978e54;
    border: 2px solid #978e54;
    position: relative;
    overflow: hidden;
}

.mdl-btn-entry * {
    fill: #fff;
    position: relative;
}

.mdl-btn-entry_text {
    color: #fff;
    font-size: 2.6rem;
    letter-spacing: 0.6em;
    margin: 0 25px 0 0;
}

.mdl-btn-entry .icon-arrow {
    display: block;
    width: 20px;
    height: 25px;
    position: absolute;
    top: calc(50% + 2px);
    right: 90px;
    transform: translateY(-50%);
}

.device-pc .mdl-btn-entry,
.device-pc .mdl-btn-entry * {
    transition: all 300ms;
}

.device-pc .mdl-btn-entry:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-103%);
    transition: all 300ms;
}

.device-pc .mdl-btn-entry:hover:before {
    transform: translateX(0);
}

.device-pc .mdl-btn-entry:hover .mdl-btn-entry_text {
    color: #978e54;
}

.device-pc .mdl-btn-entry:hover * {
    fill: #978e54;
}

.device-pc .mdl-btn-entry:hover .icon-arrow svg {
    transform: translateX(5px);
}

@media only screen and (max-width: 768px) {
    .mdl-btn-entry {
        width: calc(628/750 * 100%);
        height: 60px;
    }

    .mdl-btn-entry_text {
        font-size: 1.8rem;
        margin: 0 12px 0 0;
    }

    .mdl-btn-entry .icon-arrow {
        width: 14px;
        height: 18px;
        right: auto;
        left: calc(50% + 60px);
    }
}

/* .mdl-mv */
.mdl-mv {
    width: 100%;
    height: 395px;
}

@media only screen and (max-width: 768px) {
    .mdl-mv {
        height: 300px;
    }
}

/* .mdl-title */
.mdl-title {
    text-align: center;
    padding: 190px 0 0 0;
}

.mdl-title_text01 {
    display: block;
    padding: 0 0 15px 0;
    position: relative;
}

.mdl-title_text01:after {
    content: '';
    display: block;
    width: 84px;
    height: 1px;
    background: #cac68a;
    position: absolute;
    bottom: 0;
    left: calc(50% - 42px);
}

.mdl-title_text01 img {
    height: 25px;
    width: auto;
}

.mdl-title_text02 {
    color: #fff;
    font-size: 3.7rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
    display: block;
    margin: 20px 0 0 0;
}

@media only screen and (max-width: 768px) {
    .mdl-title {
        padding: 120px 0 0 0;
    }

    .mdl-title_text01 {
        padding: 0 0 14px 0;
    }

    .mdl-title_text01:after {
        width: 96px;
        height: 2px;
        left: calc(50% - 48px);
    }

    .mdl-title_text01 img {
        height: 33px;
    }

    .mdl-title_text02 {
        font-size: 1.9rem;
        margin: 18px 0 0 0;
    }
}

/* ==========================================================================
   .pageNav
   ========================================================================== */
.pageNav {
    padding: 50px 0;
}

.pageNav_title {
    text-align: center;
}

.pageNav_title img {
    height: 18px;
    width: auto;
}
.page-person .pageNav_title img {
    height: 24px;
}

.pageNav_text01 {
    color: #000;
    font-size: 2.0rem;
    letter-spacing: 0.28em;
    text-align: center;
    margin: 15px 0 0 0;
}

.pageNav_container01 {
    margin: 28px 0 0 0;
}

@media only screen and (max-width: 768px) {
    .pageNav {
        padding: 50px 0;
    }

    .pageNav_title img,
    .page-person .pageNav_title img {
        height: 13px;
    }

    .pageNav_text01 {
        font-size: 1.5rem;
        letter-spacing: 0.20em;
        margin: 10px 0 0 0;
    }

    .pageNav_container01 {
        margin: 20px 0 0 0;
    }
}

/* ==========================================================================
   .pageNavPerson
   ========================================================================== */
.pageNavPerson {}

.pageNavPerson_list {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.pageNavPerson_list > li {
    width: 240px;
}

.pageNavPerson_link {
    display: block;
    position: relative;
    overflow: hidden;
}

.pageNavPerson_link .icon-arrow {
    width: 16px;
    height: 20px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
}

.pageNavPerson_link .icon-arrow * {
    fill: #0c1d80;
}

.pageNavPerson_link .mdl-btn-comingsoon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* current */

/* hover */
.device-pc .pageNavPerson_link img {
    transition: all 300ms;
}


.device-pc .pageNavPerson_link:hover img {
    transform: scale(1.1);
}

@media only screen and (max-width: 600px) {
    .pageNavPerson_list > li {
        width: 50%;
    }

    .pageNavPerson_link .icon-arrow {
        width: 12px;
        height: 15px;
        right: 10px;
    }

    .pageNavPerson_link .mdl-btn-comingsoon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

/* ==========================================================================
   .pageNav02
   ========================================================================== */
.pageNav02 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.pageNav02_column {
    text-align: center;
    width: calc(50% - 1px);
    background: #eeeff6;
    padding: 40px 0 28px 0;
}

.pageNav02_title01 img {
    height: 22px;
    width: auto;
}

.pageNav02_title02 {
    color: #000;
    font-size: 2.0rem;
    letter-spacing: 0.2em;
    margin: 15px 0 0 0;
}

.pageNav02_btn01 {
    margin: 30px auto 0 auto;
}

@media only screen and (max-width: 600px) {
    .pageNav02_column {
        padding: 22px 0 28px 0;
    }

    .pageNav02_title01 img {
        height: 14px;
    }

    .pageNav02_title02 {
        font-size: 1.4rem;
        margin: 12px 0 0 0;
    }

    .pageNav02_btn01 {
        width: 105px;
        margin: 25px auto 0 auto;
    }

    .pageNav02_btn01.mdl-btn-more .icon-arrow,
    .pageNav02_btn01.mdl-btn-more .icon-blank {
        left: calc(50% + 33px);
    }

}


    /* ==========================================================================
	 * Helper
	 * ========================================================================== */
.tc { text-align: center; }
.tl { text-align: left; }
.tr { text-align: right; }

.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; }
.mb80 { margin-bottom: 80px; }
.mb90 { margin-bottom: 90px; }
.mb100 { margin-bottom: 100px; }
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mt70 { margin-top: 70px; }
.mt80 { margin-top: 80px; }
.mt90 { margin-top: 90px; }
.mt100 { margin-top: 100px; }

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

.hidden {
    display: none !important;
    visibility: hidden;
}

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

.invisible {
    visibility: hidden;
}
