/* ------------------------------------------------------
content
------------------------------------------------------ */
.under-viewport {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.under-scroll-wrapper {
    display: flex;
    will-change: transform;
}

.under-scroll-wrapper .panel_wrap {
    height: 100vh;
}

.under_catcher {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

.under_catcher img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#under-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 99999;
    opacity: 1;
    animation: 2s loading_hidden .6s ease forwards;
    pointer-events: none;
}

@keyframes loading_hidden {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.side_contents {
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: 0 !important;
}

.pages #content .section:not(:last-child) {
    padding: 0 0px 55px 0;
}

.pages #content .section .section {
    padding-top: 30px;
}

.pages #content .section p:last-child {
    margin-bottom: 0;
}

.pages .contents_detail {
    letter-spacing: 0.1em;
    margin-bottom: 131px;
}

.pages .contents_detail p {
    line-height: 2.267;
}

.pages .contents_detail p:not(:last-child) {
    margin-bottom: 45px;
}

.pages .contents_detail a {
    text-decoration: underline;
}

.pages .contents_detail .hasimg {
    line-height: 0;
}

.pages .contents_detail ul li,
.pages .contents_detail ol li {
    list-style: inherit;
    margin-left: 15px;
}

.pages .contents_detail .wp-block-image {
    margin-bottom: 55px;
}

/* ------------------------------------------------------
h3 h4 h5 h6
------------------------------------------------------ */
.pages h3 {
    margin-bottom: 40px;
}

.pages h3,
.pages h4,
.pages h5,
.pages h6 {
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* ------------------------------------------------------
p_mainvisual
------------------------------------------------------ */
.pages #p_mainvisual {
    width: 100vw;
    position: relative;
}

.pages #p_mainvisual::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 25%, rgba(0, 0, 0, 0.5) 100%);
    top: 0;
    left: 0;
    z-index: -1;
}

.pages #p_mainvisual .panel_wrap {
    justify-content: flex-start;
}

.pages #p_mainvisual .under_mv_headline {
    width: 50vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-color);
    padding: 20px 0;
}

.pages #p_mainvisual .under_mv_headline h2 {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding-bottom: 35px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: translateY(30px);
    opacity: 0;
}

.pages #p_mainvisual .under_mv_headline h2.active {
    animation: 1.3s undermv cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes undermv {
    0% {
        transform: translateY(30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.pages #p_mainvisual .under_mv_headline h2 span {
    font-family: var(--en-font);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0;
    margin-right: 10px;
    margin-bottom: -35px;
}

.pages #p_mainvisual .btn-scroll {
    z-index: 1;
}

.pages #p_mainvisual .btn-scroll .txt {
    color: var(--white-color);
}

.pages #p_mainvisual.under_vertical {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pages #p_mainvisual.under_vertical .inner {
    width: 94%;
    z-index: 1;
}

.pages #p_mainvisual.under_vertical h2 {
    font-family: var(--en-font);
    font-size: 100px;
    font-weight: 400;
    text-align: center;
    color: var(--white-color);
}

.pages #p_mainvisual.under_vertical h2 span {
    letter-spacing: 0;
}

.pages #p_mainvisual.under_vertical .p_mainvisual_cover {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.pages #p_mainvisual.under_vertical .p_mainvisual_cover::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
}

.pages #p_mainvisual.under_vertical .p_mainvisual_cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------
topic_path
------------------------------------------------------ */
.pages #topic_path {
    margin: 0 0 67px;
}

.pages #topic_path ul {
    padding: 38px 0 0;
}

.pages #topic_path li {
    display: inline-block;
    color: #3e3a39;
    font-size: 14px;
    line-height: 1.4;
}

.pages #topic_path li a {
    text-decoration: underline;
    color: #e06277;
}

.pages #topic_path li a:hover {
    text-decoration: none;
}

/* ------------------------------------------------------
table
------------------------------------------------------ */
.pages table {
    background: #fff;
    border: 2px solid #118abf;
    margin-bottom: 25px;
}

.pages table th,
.pages table td {
    padding: 15px 15px 15px;
    border: 1px solid #118abf;
}

.pages table th {
    font-size: 18px;
    background: rgba(195, 228, 244, 0.5);
    text-align: left;
}

.pages table.td_top td {
    vertical-align: top;
}

.pages table.td_center td {
    text-align: center;
}

.pages table.tb_fix {
    table-layout: fixed;
}

.pages #content table:last-child {
    margin-bottom: 0;
}

.pages table td a {
    text-decoration: underline;
}

.pages table td ol li,
.pages table td ul li {
    list-style: inherit;
    margin-left: 15px;
}

/*-----txt_note-----*/
.pages .txt_note {
    display: none;
}

.pages .txt_bold {
    font-weight: 700;
}

/* ------------------------------------------------------
under list
------------------------------------------------------ */
.pages .list01 li {
    margin-bottom: 22px;
    padding-left: 35px;
    position: relative;
}

.pages .list01 li::before {
    position: absolute;
    content: "";
    width: 20px;
    height: 3px;
    background: #1e3c72;
    top: 9px;
    left: 0;
}

.pages .list_check li {
    margin-bottom: 22px;
    padding-left: 35px;
    position: relative;
}

.pages .list_check li::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 12px;
    border: solid #1e3c72;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: inline-block;
    top: 8px;
    left: 0;
}

.pages .list01:last-child,
.pages .list01 li:last-child,
.pages .list_check:last-child,
.pages .list_check li:last-child {
    margin-bottom: 0px;
}

/* ------------------------------------------------------
under frame
------------------------------------------------------ */
.pages .frame01 {
    background: rgba(255, 211, 216, 0.3);
    padding: 25px 30px 25px;
    margin: 0 auto 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.pages .frame01:last-child {
    margin: 0 auto;
}

/* ------------------------------------------------------
under_step
------------------------------------------------------ */
.pages .under_step dl {
    margin-bottom: 60px;
}

.pages .under_step dl:last-child {
    margin-bottom: 0px;
}

.pages .under_step dl dt {
    font-size: 18px;
    color: #fff;
    background: #e06277;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border: 2px solid #e06277;
    padding: 10px 20px 5px;
    box-sizing: border-box;
}

.pages .under_step dl dt span {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    margin-right: 5px;
}

.pages .under_step dl dd {
    display: flex;
    align-items: center;
    border: 2px solid #e06277;
    padding: 20px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.pages .under_step dl:nth-child(odd) dd {
    flex-direction: row-reverse;
}

.pages .under_step dl dd .step_img {
    flex-shrink: 0;
    padding-left: 40px;
    margin-bottom: 0 !important;
    box-sizing: border-box;
}

.pages .under_step dl:nth-child(even) dd .step_img {
    padding: 0 40px 0 0;
}

/* ------------------------------------------------------
qa_dl
------------------------------------------------------ */
.pages .qa_dl dl {
    padding-left: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
}

.pages .qa_dl dl:after {
    position: absolute;
    z-index: -1;
    left: 25px;
    top: 0;
    height: 100%;
    width: 1px;
    content: '';
    display: block;
    border-left: rgba(119, 119, 119, 0.30) 1px dotted;
}

.pages .qa_dl dl:last-child {
    padding-bottom: 0;
}

.pages .qa_dl dl dt,
.pages .qa_dl dl dd {
    position: inherit;
    z-index: 1;
}

.pages .qa_dl dl dt span,
.pages .qa_dl dl dd span {
    position: absolute;
    z-index: 1;
    left: -80px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: #fff;
    font-size: 18px;
}

.pages .qa_dl dl dt {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    color: #00478A;
    min-height: 50px;
    display: flex;
    align-items: center;
    line-height: 1.4em;
}

.pages .qa_dl dl dd {
    padding: 30px;
    background: rgba(109, 178, 216, 0.15);
}

/* ------------------------------------------------------
under_bnr
------------------------------------------------------ */
.pages .under_bnr_full {
    background: url(../images/under_btn_bg.jpg) no-repeat center;
    background-size: cover;
    width: 700px;
    height: 150px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.25);
    margin: 0 auto;
    transition: all 0.25s linear;
}

.pages .under_bnr_full a {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    width: 100%;
    height: 100%;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 .5em;
}

/* ------------------------------------------------------
others
------------------------------------------------------ */
.pages .center {
    margin-bottom: 35px;
}

.pages .image_l {
    margin: 0 40px 15px 0;
}

.pages .image_r {
    margin: 0 0 15px 40px;
}

.pages .a_hover:hover {
    text-decoration: none;
}

.pages .wp-pagenavi {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.pages .wp-pagenavi span,
.pages .wp-pagenavi a {
    font-family: var(--en-font);
    font-size: 26px;
    color: var(--main-color);
    border: 0;
    padding: 0 0;
    margin: 0 0;
    position: relative;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.pages .wp-pagenavi .page,
.pages .wp-pagenavi .current,
.pages .wp-pagenavi .pages,
.pages .wp-pagenavi .first,
.pages .wp-pagenavi .last {
    display: none;
}

.pages .wp-pagenavi .previouspostslink,
.pages .wp-pagenavi .nextpostslink {
    margin: 15px 0;
}

.pages .wp-pagenavi .previouspostslink::before,
.pages .wp-pagenavi .previouspostslink::after,
.pages .wp-pagenavi .nextpostslink::before,
.pages .wp-pagenavi .nextpostslink::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: -3px;
    width: 1px;
    height: 100%;
    background: #b3b3b3;
    transform-origin: bottom right;
    transform: scaleY(1) translateZ(0);
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s;
}

.pages .wp-pagenavi .previouspostslink::after,
.pages .wp-pagenavi .nextpostslink::after {
    transform-origin: top;
    transform: scaleY(0) translateZ(0);
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pages .media_back {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pages .media_back li {
    width: calc(100% / 3);
}

.pages .media_back li:not(.special-btn) {
    font-size: 14px;
}

.pages .media_back li:not(.special-btn) a {
    letter-spacing: 0.1em;
    color: #b3b3b3;
    display: inline-flex;
    align-items: center;
    transition: all .3s ease;
}

.pages .media_back li:not(.special-btn) a i {
    display: inline-block;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 39px;
    height: 11px;
    position: relative;
    top: -4px;
}

.pages .media_back li.prev-btn a i {
    background-image: url(../images/common/prev_icon.svg);
    margin-right: 17px;
}

.pages .media_back li.next-btn {
    text-align: right;
}

.pages .media_back li.next-btn a i {
    background-image: url(../images/common/next_icon.svg);
    margin-left: 17px;
}

.pages .media_back li.special-btn {
    width: 300px;
    text-align: center;
    flex-shrink: 0;
    padding-top: 5px;
}

.pages .media_back li.special-btn .btn_primary a {
    text-transform: uppercase;
}

.under_title .word {
    overflow: hidden;
}

.under_title .char {
    opacity: 0;
    transform: translateX(-100%);
    will-change: transform, opacity;
    transition: all .6s cubic-bezier(.15, 0, .25, 1);
    transition-delay: calc(.05s * var(--char-index));
}

.under_title.title-animated .char {
    opacity: 1;
    transform: translateX(0);
}

.pages .catcher_title {
    display: flex;
    align-items: center;
    flex-direction: column;
    font-size: 32px;
    font-weight: 500;
    line-height: 2.1875;
    margin: 0 0;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.pages .catcher_txt {
    max-height: 580px;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 3;
}

.pages .catcher_txt p {
    margin-right: 100px;
}

.pages .catcher_txt p:not(:last-child) {
    margin-bottom: 48px;
}

/* ------------------------------------------------------
p_journal
------------------------------------------------------ */
#journal .under-scroll-wrapper {
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.p_journal {
    background: var(--white-color);
    margin-right: 50vw;
}

.p_journal .panel_wrap {
    padding: 0 220px;
    position: relative;
}

.p_journal #journal_filter {
    width: 1060px;
    margin-bottom: 110px;
    position: relative;
}

.p_journal .cate_list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.p_journal .cate_list li {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding-left: 36px;
    margin: 0 35px 15px 0;
    position: relative;
    cursor: pointer;
}

.p_journal .cate_list li::before,
.p_journal .cate_list li::after {
    position: absolute;
    content: '';
}

.p_journal .cate_list li::before {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid var(--main-color);
    top: -1px;
    left: 0;
}

.p_journal .cate_list li::after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--main-color);
    top: 4px;
    left: 5px;
    opacity: 0;
}

.p_journal .cate_list li.is-active::after {
    opacity: 1;
}

.p_journal .journal_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -ms-writing-mode: tb-lr;
    -webkit-writing-mode: vertical-lr;
    -moz-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    position: relative;
}

.p_journal .journal_list.is-hidden {
    display: none;
}

.p_journal .journal_list .journal_card {
    width: 1060px;
    border-bottom: 1px solid #b3b3b3;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    margin-left: 220px;
}

.p_journal .journal_list .journal_card:nth-child(3n - 2) {
    border-top: 1px solid #b3b3b3;
}

.p_journal .journal_list .journal_card:nth-child(-n + 3) {
    margin-left: 0;
}

.p_journal .journal_list .journal_card a {
    display: block;
    padding: 47px 26px 50px;
    transition: all .3s ease;
}

.p_journal .journal_list .journal_meta {
    display: inline-block;
}

.p_journal .journal_list .journal_meta .cate_group {
    margin-left: -5px;
}

.p_journal .journal_list .journal_meta .cate_group span {
    margin: 0 5px 5px 0;
}

.p_journal .journal_list .journal_meta .date {
    margin-left: 8px;
}

.p_journal .journal_list .journal_title {
    font-size: 18px;
    font-weight: 600;
    text-align: justify;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
}

.journal-details {
    background: var(--white-color);
}

.media_wrap {
    padding: 109px 0 201px;
}

.media_wrap .inner {
    width: 94%;
    max-width: 900px;
}

.media_wrap .media_headline {
    border-bottom: 1px solid #b3b3b3;
    padding-bottom: 75px;
    margin-bottom: 64px;
}

.media_wrap .media_meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.media_wrap .media_gr_cate {
    margin-bottom: 0;
}

.media_wrap .media_gr_cate span {
    display: inline-block;
    margin: 0 5px 5px 0;
}

.media_wrap .media_title {
    font-size: 24px;
    font-weight: 700;
}

/* ------------------------------------------------------
p_faq
------------------------------------------------------ */
.p_faq {
    background: var(--white-color);
    padding: 0 30px 0 220px;
    margin-right: 50vw;
}

.p_faq .faq_list {
    height: 80vh;
    max-height: 680px;
    display: flex;
    flex-wrap: wrap;
    -ms-writing-mode: tb-lr;
    -webkit-writing-mode: vertical-lr;
    -moz-writing-mode: vertical-lr;
    -ms-writing-mode: vertical-lr;
    writing-mode: vertical-lr;
    position: relative;
}

.p_faq .faq_list .faq_card {
    width: 900px;
    margin-right: 200px;
    margin: 2.316vh 200px 2.316vh 0;
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    -moz-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
}

.p_faq .faq_list .faq_card dt {
    display: flex;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2.316vh;
}

.p_faq .faq_list .faq_card dt span {
    font-size: 122.22%;
    letter-spacing: 0.1em;
    margin-right: 18px;
    position: relative;
    top: -5px;
}

.p_faq .faq_list .faq_card dd {
    font-size: 16px;
    font-weight: 600;
    color: #808080;
    line-height: 2.125;
    min-height: calc(1em * 2.125 * 3);
}

/* ------------------------------------------------------
p_contact
------------------------------------------------------ */
.p_contact {
    background: var(--white-color);
    padding: 0 0 0 215px;
}

.p_contact .panel_container {
    display: flex;
    max-height: 550px;
}

.p_contact .panel_container form {
    height: 100%;
    position: relative;
}

.p_contact .contact_title {
    font-size: 32px;
    font-weight: 500;
    line-height: 2.1875;
    margin: 0 215px 0 0;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

.p_contact .contact_form {
    width: 100%;
    height: 100%;
    display: flex;
}

.p_contact .contact_form .contact_layout {
    width: 1060px;
    margin-right: 220px;
}

.p_contact .contact_form dl {
    width: 100%;
    min-height: 170px;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid #b3b3b3;
    padding: 50px 20px 54px;
}

.p_contact .contact_form dl:first-child {
    border-top: 1px solid #b3b3b3;
}

.p_contact .contact_form .field_textarea {
    height: auto;
}

.p_contact .contact_form .required {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #a9884e;
    margin-left: 12px;
}

.p_contact .contact_form dl dt {
    width: 24%;
    font-weight: 600;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.p_contact .contact_form dl dd {
    width: 100%;
    max-width: 760px;
}

.p_contact .contact_form input::placeholder {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: #ccc;
}

.p_contact .contact_form .input_custom,
.p_contact .contact_form .txt_custom {
    width: 100%;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    border: 1px solid #b3b3b3;
    padding: 8px 17px;
}

.p_contact .contact_form .input_custom {
    height: 65px;
}

.p_contact .contact_form .txt_custom {
    height: 299px;
    text-align: justify;
    resize: none;
}

.p_contact .contact_form .wpcf7-not-valid-tip {
    font-size: 13px;
    position: absolute;
    bottom: -48px;
    left: 0;
}

.p_contact .contact_form .wpcf7-list-item {
    font-size: 13px;
    letter-spacing: 0.1em;
    margin: 0 34px 10px 0;
}

.p_contact .contact_form .wpcf7-list-item [type="checkbox"] {
    position: relative;
    top: 2px;
}

.p_contact .contact_form .wpcf7-list-item-label {
    margin-left: 3px;
}

.p_contact .contact_form dl.field_checkbox dd {
    padding-top: 10px;
}

.p_contact .contact_form dl.field_checkbox .wpcf7-not-valid-tip {
    bottom: -35px;
}

.p_contact .contact_form dl.field_textarea {
    align-items: flex-start;
    padding-bottom: 49px;
}

.p_contact .contact_form dl.field_textarea dt {
    padding-top: 20px;
}

.p_contact .contact_form dl.field_textarea .wpcf7-not-valid-tip {
    bottom: -30px;
}

.p_contact .contact_form dl.confirm_group {
    min-height: inherit;
    border-bottom: 0;
    padding: 41px 0 0 0;
}

.p_contact .contact_form dl.confirm_group dd {
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
}

.p_contact .contact_form .accept_box {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}

.p_contact .contact_form .accept_box .wpcf7-list-item {
    margin: 0;
}

.p_contact .contact_form .accept_box input {
    opacity: 0;
    visibility: hidden;
    position: absolute;
}

.p_contact .contact_form .accept_box .wpcf7-list-item-label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: underline;
    white-space: nowrap;
    padding-left: 40px;
    cursor: pointer;
}

.p_contact .contact_form .accept_box .required {
    margin-left: 13px;
    position: relative;
    top: 3px;
    pointer-events: none;
}

.p_contact .contact_form .accept_box label::before {
    position: absolute;
    content: "";
    width: 41px;
    height: 41px;
    border: 1px solid #b3b3b3;
    top: -9px;
    left: 0;
    cursor: pointer;
}

.p_contact .contact_form .accept_box label::after {
    position: absolute;
    content: "";
    background: url(../images/common/ico_check.png) no-repeat center;
    background-size: contain;
    width: 29px;
    height: 28px;
    top: -2px;
    left: 7px;
    pointer-events: none;
    opacity: 0;
}

.p_contact .contact_form .accept_box.active label::after {
    opacity: 1;
}

.p_contact .contact_form dl.confirm_group .wpcf7-not-valid-tip {
    white-space: nowrap;
    bottom: -40px;
}

.p_contact .contact_form .btn_submit {
    width: 100%;
    max-width: 320px;
    height: 64px;
    position: relative;
    transition: .3s ease;
    overflow: hidden;
}

.p_contact .contact_form .btn_submit input {
    width: 100%;
    height: 100%;
    background: #32634b;
    border: none;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--white-color);
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
    position: relative;
    z-index: 1;
}

.p_contact .contact_form .btn_submit .wpcf7-spinner {
    display: none;
}

#contact #light_box {
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.7);
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
}

#contact #light_box.vbox-inline {
    display: flex;
}

#contact #light_box .modal {
    width: 94%;
    max-width: 576px;
    height: 80vh;
    max-height: 550px;
    background: var(--white-color);
    box-shadow: 1px 1px 1px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 92px 82px 47px;
    overflow: auto;
}

#contact #light_box .modal h4 {
    font-size: 24px;
    text-align: center;
    color: #32634B;
    pointer-events: none;
    margin: 0 0 46px;
}

#contact #light_box .modal .modal-txt {
    font-size: 15px;
    line-height: 2.53;
    text-align: justify;
    pointer-events: none;
    margin: 0;
}

#contact #light_box .modal .ico-close {
    width: 64px;
    cursor: pointer;
    text-align: center;
    line-height: 1.5;
    margin: 48px auto 0;
}

#contact #light_box .modal .ico-close span {
    display: block;
    font-family: var(--en-font);
    color: #32634B;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.p_contact .wpcf7 form .wpcf7-response-output {
    width: 100%;
    max-width: 1060px;
    text-align: center;
    margin: 0 0;
    padding: 20px 10px;
    border-color: var(--main-color);
    position: absolute;
    bottom: -90px;
    right: 220px;
}

/* ------------------------------------------------------
p_works
------------------------------------------------------ */
.p_works {
    background: var(--main-color);
    margin-right: 50vw;
}

.p_works .panel_wrap {
    padding: 0 0 0 220px;
    position: relative;
}

.p_works .works_category {
    padding-left: 113px;
    margin-bottom: 110px;
}

.p_works .works_category .cate_list {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
}

.p_works .works_category .cate_list li {
    margin: 0 35px 15px 0;
}

.p_works .works_category .cate_list li.back {
    margin-right: 0;
}

.p_works .works_category .cate_list li a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #808080;
    padding-left: 36px;
    position: relative;
}

.p_works .works_category .cate_list li a::before,
.p_works .works_category .cate_list li a::after {
    position: absolute;
    content: '';
}

.p_works .works_category .cate_list li a::before {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #808080;
    top: -1px;
    left: 0;
}

.p_works .works_category .cate_list li a::after {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white-color);
    top: 4px;
    left: 5px;
    opacity: 0;
}

.p_works .works_category .cate_list li.active a {
    color: var(--white-color);
}

.p_works .works_category .cate_list li.active a::before {
    border-color: var(--white-color);
}

.p_works .works_category .cate_list li.active a::after {
    opacity: 1;
}

.p_works .catcher_layout {
    min-width: 1470px;
    display: flex;
    margin-right: 246px;
    position: relative;
}

.p_works .works_list {
    display: flex;
}

.p_works .works_list .works_item {
    width: 43.158vh;
    max-width: 410px;
    margin-right: 80px;
}

.p_works .works_list .works_item a {
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.p_works .works_list .works_item:last-child {
    margin-right: 0;
}

.p_works .works_list .works_item .works_image {
    width: 100%;
    height: 43.158vh;
    max-height: 410px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.p_works .works_list .works_item .works_image::before,
.p_works .works_list .works_item .works_image::after {
    position: absolute;
    content: '';
    background: var(--main-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.p_works .works_list .works_item .works_image::before {
    width: 10px;
    height: 100%;
}

.p_works .works_list .works_item .works_image::after {
    height: 10px;
    width: 100%;
}

.p_works .works_list .works_item .works_image figure {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    transform-origin: center;
    transition: all .4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.p_works .works_list .works_item .works_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p_works .works_list .works_item .works_image .bglayer {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.p_works .works_list .works_item a:hover .works_image figure {
    width: 110%;
    height: 110%;
}

.p_works .works_list .works_item a:hover .works_image .bglayer {
    opacity: 1;
}

.p_works .works_list .works_item .works_cate {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.p_works .works_list .works_item .works_cate li {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #999;
    border: 1px solid #999;
    padding: 2px 8px;
    margin: 0 5px 5px 0;
}

.p_works .works_list .works_item .works_title {
    font-size: 20px;
    font-weight: 600;
    text-align: justify;
    color: var(--white-color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
}

.pages .p_works .wp-pagenavi {
    height: 43.158vh;
    max-height: 410px;
    flex-direction: column;
    margin-left: 136px;
}

.pages .p_works .wp-pagenavi span,
.pages .p_works .wp-pagenavi a {
    color: var(--white-color);
}

.pages .p_works .wp-pagenavi .previouspostslink::before,
.pages .p_works .wp-pagenavi .previouspostslink::after,
.pages .p_works .wp-pagenavi .nextpostslink::before,
.pages .p_works .wp-pagenavi .nextpostslink::after {
    background: var(--white-color);
}

.works-details {
    background: var(--white-color);
}

.works-details .p_works {
    background: none;
}

.p_works .media_wrap {
    padding: 100px 0 201px;
}

.p_works .media_wrap .media_headline {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 74px;
}

.p_works .media_headline .inner {
    max-width: 1200px;
}

.p_works .media_headline .category_group {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 9px;
}

.p_works .media_headline .category_group li {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #999;
    border: 1px solid #999;
    padding: 1px 8px 2px;
    margin: 0 10px 10px 0;
}

.p_works .media_headline .media_title {
    font-size: 32px;
    margin-bottom: 37px;
}

.p_works .media_headline .main_photo {
    width: 100%;
    text-align: center;
    margin-bottom: 74px;
}

.p_works .media_headline .overview {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    row-gap: 0;
    margin: 0 auto;
}

.p_works .media_headline .overview dl {
    width: calc((100% - 40px) / 2);
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.57;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #ccc;
    padding: 28px 10px 30px;
}

.p_works .media_headline .overview dl:nth-child(-n + 2) {
    border-top: 1px solid #ccc;
}

.p_works .media_headline .overview dl dt {
    width: 100%;
    max-width: 129px;
}

.p_works .media_headline .overview dl dd {
    width: 100%;
    padding-left: 20px;
}

.p_works .works_block .description {
    line-height: 2.267;
}

.p_works .works_block .description p:not(:last-child) {
    margin-bottom: 34px;
}

.p_works .works_block .description ul li,
.p_works .works_block .description ol li {
    list-style: inherit;
    margin-left: 15px;
}

.p_works .works_block .description a {
    text-decoration: underline;
}

.p_works .works_block ul.works_gallery {
    margin-top: 104px;
}

.p_works .works_block ul.works_gallery li:not(:last-child) {
    margin-bottom: 30px;
}

.p_works .works_block ul.works_gallery li figure {
    width: 100%;
    display: flex;
    justify-content: center;
}

.p_works .works_block ul.works_gallery li figure:last-child {
    margin-bottom: 0;
}

.p_works .works_block ul.works_gallery li figure img {
    flex-shrink: 0;
}

.p_works .works_block ul.works_gallery li figure.portrait_image {
    width: 55vw;
    max-width: 550px;
    margin: 0 auto;
}

.pages .p_works .media_back {
    width: 94%;
    max-width: 900px;
    margin: 175px auto 0;
}

#works #p_mainvisual .under_mv_headline {
    position: relative;
}

#works #p_mainvisual .under_mv_headline h2 {
    font-size: 28px;
}

#works #p_mainvisual .btn_primary {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 9.4vh;
    left: 50%;
    transform: translateX(-50%);
}


/* ------------------------------------------------------
p_flow
------------------------------------------------------ */
.p_flow {
    background: var(--white-color);
}

.p_flow .flow_list {
    height: 90vh;
    max-height: 855px;
    display: flex;
}

.p_flow .flow_list li.flow_card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid #ccc;
    padding: 4px 60px 25px;
    transition: all .3s ease;
}

.p_flow .flow_list li.flow_card:first-child {
    border-left: 1px solid #ccc;
}

.p_flow .flow_list li.flow_card .flow_component {
    width: 100%;
    max-width: 360px;
}

.p_flow .flow_list li.flow_card .tag {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 67px;
}

.p_flow .flow_list li.flow_card .flow_card_title {
    font-size: 24px;
    font-weight: 600;
    color: #32634b;
    margin-bottom: 20px;
    transition: all .3s ease;
}

.p_flow .flow_list li.flow_card .flow_txt {
    font-weight: 600;
    line-height: 2.13;
    text-align: justify;
    margin-bottom: 35px;
}

.p_flow .flow_list li.flow_card figure {
    width: 100%;
    max-width: 360px;
    height: 270px;
    max-height: 270px;
    transition: all .3s ease;
}

.p_flow .flow_list li.flow_card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#flow_layer01 {
    padding: 0 149px 0 200px;
}

#flow_layer01.is-active .flow_card_title {
    color: var(--main-color);
    transition: all .3s ease;
}

#flow_layer01.is-active .flow_list li.flow_card {
    border-right-color: var(--main-color);
    transition: all .3s ease;
}

#flow_layer01.is-active figure {
    opacity: 0;
    transition: all .3s ease;
}

#flow_layer02 .panel_container {
    display: flex;
}

#flow_layer02 {
    padding: 0 276px 0 144px;
}

#flow_layer02,
#flow_layer02 .flow_card_title {
    color: var(--white-color);
}

#flow_layer02 .flow_list {
    margin-left: 129px;
}

#flow_layer02 .flow_list li.flow_card {
    border-right-color: var(--white-color);
}

#flow_layer02 .flow_list li.flow_card:first-child {
    border-left-color: var(--white-color);
}

#flow_layer02 figure {
    opacity: 0;
}

#flow_layer02.is-active figure {
    opacity: 1;
}

#flow_intro {
    background: var(--main-color);
    padding: 0 230px 0 149px;
    margin-right: 50vw;
}

#flow_intro .panel_container {
    display: flex;
    align-items: center;
}

#flow_intro .catcher_title {
    margin-right: 126px;
}

#flow_intro .flow_intro_wrap {
    display: flex;
    margin-right: 201px;
}

#flow_intro .flow_intro_wrap .flow_intro_component {
    width: 100%;
    max-width: 500px;
    margin-left: 94px;
}

#flow_intro .flow_intro_wrap .flow_intro_txt {
    line-height: 2.26;
    margin-bottom: 98px;
}

#flow_intro .flow_intro_wrap .flow_intro_txt p:not(:last-child) {
    margin-bottom: 35px;
}

#flow_intro .flow_intro_wrap .component_image {
    width: 100%;
    max-width: 300px;
    height: 225px;
    max-height: 225px;
    margin-left: auto;
    margin-right: -84px;
}

#flow_intro .flow_intro_wrap .component_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#flow_intro .flow_intro_image02 {
    width: 400px;
    height: 400px;
}

#flow_intro .flow_intro_image02 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ------------------------------------------------------
p_profile
------------------------------------------------------ */
.p_profile .profile_title {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 108px;
}

.pages #company_message {
    background: var(--white-color);
    padding: 0 0 0 242px;
}

.pages #company_message .panel_container {
    display: flex;
}

.pages #company_message .catcher_title {
    margin-right: 218px;
}

.pages #company_message .profile_title {
    margin-bottom: 88px;
}

.pages #company_message .company_message_txt {
    width: 100%;
    max-height: 580px;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 3;
}

.pages #company_message .company_message_txt p {
    margin-right: 100px;
}

.pages #company_message .company_message_txt p:not(:last-child) {
    margin-bottom: 48px;
}

.pages #company_message .message_profile {
    min-width: 1500px;
    height: 100%;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom right;
    color: var(--white-color);
    padding: 0 50px 0 116px;
    position: relative;
}

.pages #company_message .message_profile::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    top: 0;
    left: 0;
}

.pages #company_message .message_profile h4 {
    font-size: 60px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    -moz-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    padding-top: 7.474vh;
    margin-right: 71px;
    position: relative;
    z-index: 1;
}

.pages #company_message .message_profile h4 > span {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
}

.pages #company_message .message_profile h4 span.en {
    display: block;
    font-size: 43.33%;
    font-weight: 400;
    letter-spacing: 0;
    margin-right: 4px;
    margin-bottom: 5px;
}

.pages #company_message .message_profile_txt {
    width: 585px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 2.6;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.pages #company_message .message_profile_txt p:not(:last-child) {
    margin-bottom: 42px;
}

.pages #company_message .message_profile_txt a {
    color: var(--white-color);
    text-decoration: underline;
}

.pages #company_information {
    background: var(--white-color);
    padding: 0 210px 0 170px;
}

.pages #company_information .panel_container {
    display: flex;
}

.pages #company_information .company_profile {
    width: 100%;
    max-height: 445px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.pages #company_information .company_profile dl {
    width: 1000px;
    display: flex;
    font-size: 16px;
    letter-spacing: 0.1em;
    margin-right: 100px;
}

.pages #company_information .company_profile dl dt,
.pages #company_information .company_profile dl dd {
    padding: 42px 5px 44px 20px;
    margin-top: -1px;
}

.pages #company_information .company_profile dl dt {
    width: 250px;
    font-weight: 700;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    margin-right: 20px;
}

.pages #company_information .company_profile dl dd {
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    flex: 1;
}

.pages #company_information .access_map {
    width: 700px;
    height: 440px;
}

.pages #company_information .access_map iframe {
    width: 100%;
    height: 100%;
}

.pages #our_office {
    color: var(--white-color);
    background: var(--white-color);
    padding: 0 150px 0 155px;
    margin-right: 50vw;
}

.pages #our_office .panel_wrap {
    width: 100%;
    min-width: inherit;
}

.pages #our_office .panel_container {
    width: 100%;
    min-width: inherit;
    display: flex;
}

.pages #our_office .catcher_title {
    margin: 0 145px 0 0;
}

.pages #our_office .our_office_block {
    width: 650px;
}

.pages #our_office .profile_title {
    margin-bottom: 56px;
}

.pages #our_office .our_office_txt {
    font-size: 16px;
    font-weight: 600;
    line-height: 3;
    text-align: justify;
}

.pages #our_office .our_office_txt p:not(:last-child) {
    margin-bottom: 42px;
}

.pages #our_office .our_office_gallery {
    width: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-left: 130px;
    position: relative;
    flex-shrink: 0;
}

.pages #our_office .our_office_gallery .gallery_wrap {
    position: absolute;
    top: 0;
}

.pages #our_office .our_office_gallery .gallery_item {
    width: 400px;
    overflow: hidden;
}

.pages #our_office .our_office_gallery .gallery_item .item {
    width: 100%;
    height: 300px;
    margin: 0 0;
}

.pages #our_office .our_office_gallery .set01 {
    left: 0;
}

.pages #our_office .our_office_gallery .set01 .gallery_item:first-child {
    animation: catcher-slide03 180s -90s linear infinite;
}

.pages #our_office .our_office_gallery .set01 .gallery_item:last-child {
    animation: catcher-slide04 180s linear infinite;
}

.pages #our_office .our_office_gallery .set02 {
    right: 0;
}

.pages #our_office .our_office_gallery .set02 .gallery_item:first-child {
    animation: catcher-slide01 180s -90s linear infinite;
}

.pages #our_office .our_office_gallery .set02 .gallery_item:last-child {
    animation: catcher-slide02 180s linear infinite;
}

@keyframes catcher-slide03 {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes catcher-slide04 {
    0% {
        transform: translateY(-200%);
    }

    100% {
        transform: translateY(0);
    }
}

/* ------------------------------------------------------
p_about
------------------------------------------------------ */
.p_about .about_title {
    font-size: 50px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 88px;
}

.p_about .about_title span {
    font-size: 16px;
    color: #999;
    margin-left: 33px;
}

.p_about .about_txt_wrap {
    width: 100%;
    max-height: 530px;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 3;
}

.p_about .about_txt_wrap p {
    /*    min-width: 720px;*/
    margin-right: 150px;
}

.p_about .about_txt_wrap p:not(:last-child) {
    margin-bottom: 48px;
}

.p_about .about_txt {
    width: 100%;
    font-size: 16px;
    line-height: 3;
}

.pages #about_philosophy {
    background: var(--white-color);
    padding: 0 120px 0 150px;
}

.pages #about_philosophy .panel_container {
    display: flex;
    flex-wrap: nowrap;
    position: relative;
    z-index: 1;
}

.pages #about_philosophy .philosophy_gallery {
    height: 83.5vh;
    max-height: 835px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.pages #about_philosophy .philosophy_gallery figure {
    position: relative;
}

.pages #about_philosophy .philosophy_gallery figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pages #about_philosophy .philosophy_gallery .image01 {
    width: 45vh;
    max-width: 450px;
    height: 30vh;
    max-height: 300px;
    top: 30px;
}

.pages #about_philosophy .philosophy_gallery .image02 {
    width: 25vh;
    max-width: 250px;
    height: 25vh;
    max-height: 250px;
    margin-left: auto;
    margin-right: -240px;
    top: 115px;
}

.pages #about_philosophy .philosophy_gallery .image03 {
    width: 21vh;
    max-width: 210px;
    height: 28vh;
    max-height: 280px;
    margin: 0 0 0 55px;
}

.pages #about_philosophy .philosophy_gallery .image04 {
    width: 18.9vh;
    max-width: 189px;
    height: 25.2vh;
    max-height: 252px;
    margin-top: -22px;
    margin-left: 60px;
}

.pages #about_philosophy .philosophy_gallery .image05 {
    width: 31.2vh;
    max-width: 312px;
    height: 23.4vh;
    max-height: 234px;
    margin-left: auto;
    margin-right: -378px;
    top: -121px;
}

.pages #about_philosophy .philosophy_gallery .image06 {
    width: 50vh;
    max-width: 500px;
    height: 33.4vh;
    max-height: 334px;
    margin-left: auto;
    margin-right: -29px;
    top: 5px;
}

.pages #about_philosophy .catcher_title {
    margin: 0 120px 0 360px;
}

.pages #about_philosophy .about_block {
    margin-left: 541px;
}

.pages #about_philosophy .philosophy_block {
    width: 680px;
    position: relative;
}

.pages #about_philosophy .philosophy_txt {
    font-size: 14px;
    line-height: 2.29;
    text-align: justify;
    margin-bottom: 0;
    position: absolute;
    top: 42.8%;
    left: 0;
    transform: translateY(-50%);
}

.pages #about_philosophy .philosophy_block .philosophy_gallery {}

.pages #my_work {
    color: var(--white-color);
    padding: 0 192px 0 223px;
    position: relative;
    overflow: hidden;
}

.pages #my_work::before {
    position: absolute;
    content: '';
    width: 101%;
    height: 100%;
    background: rgba(37, 33, 32, 0.7);
    top: 0;
    left: 0;
}

.pages #my_work .panel_container {
    display: flex;
    position: relative;
    z-index: 1;
}

.pages #my_work .about_block {
    margin-left: 218px;
}

.pages #my_work .about_title span {
    color: var(--white-color);
}

.pages #about_balance {
    background: var(--white-color);
    padding: 0 145px 0 341px;
    margin-right: 50vw;
    position: relative;
}

.pages #about_balance::before {
    position: absolute;
    content: '';
    background: url(../images/about/about_balance_slogan.png) repeat-y;
    background-size: 100% 2075px;
    width: 129px;
    height: calc(100vh + 2075px);
    top: 0;
    left: 0;
    transition: all 1s linear;
    animation: mvsloganright 40s linear infinite;
    pointer-events: none;
}

@keyframes mvsloganright {
    0% {
        background-position: 0 2075px;
    }

    100% {
        background-position: 0 0;
    }
}

.pages #about_balance .panel_container {
    display: flex;
    position: relative;
    z-index: 1;
}

.pages #about_balance .about_block {
    margin-left: 218px;
}

/* MOZZILLA CSS */
@-moz-document url-prefix() {}

/* IE CSS */
@media screen\0 {}

/* EDGE 12+ CSS */
@supports (-ms-ime-align:auto) {}
