@charset "UTF-8";
@import"https://fonts.googleapis.com/css2?family=Work+Sans:wght@600;700&display=swap";
@import"https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@900&display=swap";

body {
    overflow-x: scroll;
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    content: '';
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

@keyframes swing1 {
    0% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transform: rotate(0deg) translateY(0);
    }

    35% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: rotate(5deg) translateY(-10px);
    }

    50% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transform: rotate(0deg) translateY(0);
    }

    85% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: rotate(-5deg) translateY(-10px);
    }

    100% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transform: rotate(0deg) translateY(0);
    }
}

@keyframes swing2 {
    0% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transform: rotate(0deg) translateY(0);
    }

    35% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: rotate(-5deg) translateY(-10px);
    }

    50% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transform: rotate(0deg) translateY(0);
    }

    85% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: rotate(5deg) translateY(-10px);
    }

    100% {
        animation-timing-function: cubic-bezier(.175, .885, .32, 1.275);
        transform: rotate(0deg) translateY(0);
    }
}

@keyframes bounce {

    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        animation-timing-function: cubic-bezier(.165, .84, .44, 1);
        transform: translate3d(0, -4px, 0);
    }
}

.slide-in {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .6s cubic-bezier(.39, .575, .565, 1), transform 1.2s cubic-bezier(.165, .84, .44, 1);
}

.slide-in.is-inview {
    opacity: 1;
    transform: translateY(0);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-15deg) translate(-15px, 15px);
    transform-origin: right bottom;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1), transform .6s cubic-bezier(.175, .885, .32, 1.275);
}

.rotate-in.is-inview {
    opacity: 1;
    transform: rotate(0deg) translate(0, 0);
}

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,
input,
textarea,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
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;
    box-sizing: border-box;
}

main,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

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;
}

img,
svg {
    vertical-align: top;
}

html {
    font-size: 10px;
}

@media screen and (max-width:768px) {
    html {
        font-size: 1.30208vw;
    }
}

body {
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    height: 100vh;
    color: #000;
    background: #fff;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", Yu Gothic Medium, "游ゴシック", Yu Gothic, "メイリオ", sans-serif;
    /*font-size: 1.5rem;*/
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

@media screen and (max-width:768px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width:1024px) {
    body.is-show-nav {
        overflow: hidden;
    }
}

a {
    color: #000;
    text-decoration: underline;
    -webkit-tap-highlight-color: transparent;
}

@media screen and (min-width:769px) {

    a:hover,
    a:active {
        text-decoration: none;
    }
}

img {
    max-width: 100%;
}

::selection {
    background: #000;
    color: #fff;
}

.only-middle {
    display: none;
}

@media screen and (max-width:1100px) {
    .only-pc {
        display: none !important;
    }
}

@media screen and (min-width:768px) and (max-width:1110px) {
    .only-middle {
        display: block;
    }
}

@media screen and (min-width:769px) {
    .only-sp {
        display: none !important;
    }
}

.js-fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

.js-disabled {
    pointer-events: none;
    opacity: .15;
}

.nallow-spacing {
    letter-spacing: -.05em;
}

.font-family-en {
    font-size: 1.8rem;
    font-family: Work Sans, sans-serif;
}

.font-family-secusup {
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
}

@media screen and (min-width:768px) and (max-width:1440px) {

    .font-family-en {
        font-size: 1.6rem;
    }

    .font-family-secusup {
        font-size: 1.4rem;
    }
}

.align-center,
.alignCenter {
    text-align: center;
}

.align-right {
    text-align: right;
}

.margin_t10 {
    margin-top: 1rem;
}

.margin_t20 {
    margin-top: 2rem;
}

.margin_t60 {
    margin-top: 6rem;
}

.margin_b30 {
    margin-bottom: 3rem;
}

.margin_l20 {
    margin-left: 2rem;
}


/*--------------------------*/


#home .heading-section {
    position: relative;
    padding-bottom: 2.6rem;
    color: #1b3f5c;
    line-height: 1;
    text-align: center
}

@media screen and (max-width:768px) {
    #home .heading-section {
        padding-bottom: 3rem
    }
}

#home .heading-section:after {
    width: 6rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 3rem);
    content: '';
    display: block;
    background: #1b3f5c
}

@media screen and (max-width:768px) {
    #home .heading-section:after {
        left: calc(50% - 4rem);
        width: 8rem;
        font-size: 2.4rem
    }
}

#home .heading-section__ja {
    display: block
}

@media screen and (max-width:768px) {
    #home .heading-section__ja {
        font-size: 2.4rem
    }
}

#home .heading-section__en {
    display: block;
    margin-top: 2.5rem;
    font-family: Work Sans, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: .1em
}

@media screen and (max-width:768px) {
    #home .heading-section__en {
        font-size: 4.7rem
    }
}

#home .heading-section--white {
    color: #fff
}

#home .heading-section--white:after {
    background: #fff
}

#home .lead-section {
    margin-top: 4.5rem;
    font-size: 1.8rem;
    letter-spacing: .01em;
    text-align: center
}

@media screen and (max-width:768px) {
    #home .lead-section {
        font-size: 3rem;
        line-height: 1.875
    }
}


#home .section-hero {
    overflow: hidden;
    position: relative;
    background: #000;
}

#home .text-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: rgba(0, 0, 0, .1);
    text-align: center;
}

#home .text-hero__en {
    font-family: Work Sans, sans-serif;
    font-size: 6rem;
    letter-spacing: .2em;
    line-height: 1;
}

@media screen and (max-width:1000px) {
    #home .text-hero__en {
        font-size: 5.0rem
    }
}

@media screen and (max-width:768px) {
    #home .text-hero__en {
        font-size: 4.6rem
    }
}

@media screen and (max-width:768px) {
    #home .text-hero__en span {
        display: block;
        width: 100%;
        margin: 1rem auto;
    }
}

#home .text-hero__ja {
    margin-top: 23px;
    font-size: 2.6rem;
    letter-spacing: .2em;
    line-height: 2.3;
}


@keyframes animation-hero_en_span {
    0% {
        opacity: 0;
        top: 75px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@keyframes animation-hero_ja {
    0% {
        opacity: 0;
        top: 50px;
    }

    100% {
        opacity: 1;
        top: 0;
    }
}

@media screen and (max-width:768px) {
    #home .text-hero__ja {
        margin-top: 1rem;
        font-size: 3.2rem;
        letter-spacing: .2em;
        line-height: 1.35;
    }
}

#home .text-hero.is-started .text-hero__en {
    position: relative;
    display: inline-block;
    animation-name: animation-hero_en_span;
    animation-duration: 4s;
    animation-delay: .4s;
}

#home .text-hero.is-started .text-hero__ja {
    position: relative;
    display: inline-block;
    animation-name: animation-hero_ja;
    animation-duration: 5s;
    animation-delay: .2s;
}

#home .button-scrolldown {
    position: absolute;
    right: 3rem;
    bottom: 0;
    font-family: Work Sans, sans-serif;
    font-size: 1.3rem;
    letter-spacing: .3em;
    line-height: 1;
    text-align: center;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl
}

@media screen and (max-width:768px) {
    #home .button-scrolldown {
        font-size: 2rem
    }
}

#home .button-scrolldown a {
    position: relative;
    display: inline-block;
    padding-bottom: 13rem;
    color: #fff;
    text-decoration: none
}

@media screen and (max-width:768px) {
    #home .button-scrolldown a {
        padding-bottom: 15rem
    }
}

#home .button-scrolldown a:after {
    position: absolute;
    top: 3rem;
    left: 50%;
    width: 1px;
    height: calc(100% - 3rem);
    content: '';
    display: block;
    background: #fff;
    animation: scrolldown 2s cubic-bezier(.77, 0, .175, 1) infinite
}

@media screen and (max-width:768px) {
    #home .button-scrolldown a:after {
        top: 12rem;
        height: calc(100% - 12rem);
        animation: scrolldownSp 2s cubic-bezier(.77, 0, .175, 1) infinite
    }
}

@keyframes scrolldown {
    0% {
        top: 8rem;
        bottom: auto;
        height: 0
    }

    40% {
        top: 8rem;
        bottom: auto;
        height: calc(100% - 8rem)
    }

    60% {
        top: auto;
        bottom: 0;
        height: calc(100% - 8rem)
    }

    100% {
        top: auto;
        bottom: 0;
        height: 0
    }
}

@keyframes scrolldownSp {
    0% {
        top: 12rem;
        bottom: auto;
        height: 0
    }

    40% {
        top: 12rem;
        bottom: auto;
        height: calc(100% - 12rem)
    }

    60% {
        top: auto;
        bottom: 0;
        height: calc(100% - 12rem)
    }

    100% {
        top: auto;
        bottom: 0;
        height: 0
    }
}

/*--------------------------*/

.layout-container {
    position: relative;
    overflow: hidden;
    min-width: 124rem;
    padding-top: 7rem;
}

@media screen and (max-width:1024px) {
    .layout-container {
        padding-top: 5rem;
    }
}

.layout-container.iframe--detail {
    max-width: 90rem;
    min-width: 80rem;
}

@media screen and (max-width:768px) {
    .layout-container {
        min-width: 0;
        padding-top: 10rem;
    }
}

.is-scrolled-down .layout-container {
    padding-top: 0;
}

@media screen and (max-width:768px) {
    .is-scrolled-down .layout-container {
        padding-top: 10rem;
    }
}

.layout-content {
    overflow: hidden;
}

.layout-content.alog {
    padding-top: 3rem;
}

.layout-content__header.alog {
    padding-top: 5rem;
}

.layout-content__footer {
    padding: 10rem 0 0;
}

.layout-content__container {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 9rem 0 10rem;
}

@media screen and (max-width:768px) {
    .layout-content__container {
        display: block;
        padding: 6rem 3rem 10rem;
    }
}

.layout-content__container+.layout-content__footer {
    padding-top: 4rem;
}

.layout-content__main {
    width: 81rem;
}

@media screen and (max-width:768px) {
    .layout-content__main {
        width: 100%;
    }
}

.layout-content__main>:first-child {
    margin-top: 0 !important;
}

.layout-content__sidebar {
    width: 24rem;
}

@media screen and (max-width:768px) {
    .layout-content__sidebar {
        width: 100%;
        margin-top: 10rem;
    }
}

.layout-content__sidebar>:first-child {
    margin-top: 0 !important;
}

.layout-footer {
    position: relative;
    padding: 8rem 0;
    color: #fff;
    background: #1b2024;
}

@media screen and (max-width:768px) {
    .layout-footer {
        padding: 8rem 3rem 6rem;
    }
}

.layout-footer__inner {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
}

@media screen and (max-width:768px) {
    .layout-footer__inner {
        display: block;
    }
}

.layout-footer__primary {
    width: 42rem;
}

@media screen and (max-width:768px) {
    .layout-footer__primary {
        width: 100%;
    }
}

.layout-footer__secondary {
    width: 68rem;
}

@media screen and (max-width:768px) {
    .layout-footer__secondary {
        width: 100%;
    }
}

.layout-footer-contact {
    text-align: center;
}

.layout-footer__tertiary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: 1100px;
    margin: 8rem auto 0;
}

.layout-footer__tertiary-contact {
    width: 110rem;
    text-align: center;
    margin: 0 auto;
}

.layout-footer__tertiary a {
    font-size: 1.1rem;
}

@media screen and (max-width:768px) {
    .layout-footer__tertiary {
        display: block;
        margin-top: 5rem;
        width: auto;
    }

    .layout-footer__tertiary a {
        font-size: inherit;
    }
}

.layout-footer__tertiary-contact .list-sub-menu {
    margin: 1rem auto;
}

.layout-header {
    width: 100%;
    height: 7rem;
    position: fixed;
    top: 0;
    left: 0;
    min-width: 124rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    z-index: 9999;
    transition: transform .2s cubic-bezier(.39, .575, .565, 1);
    will-change: transform;
}

@media screen and (max-width:768px) {
    .layout-header {
        min-width: 0;
        height: 10rem;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}

.is-scrolled-down .layout-header {
    transform: translateY(-100%);
}

@media screen and (max-width:768px) {
    .is-scrolled-down .layout-header {
        transform: translateY(0);
    }
}

@media screen and (max-width:1024px) {
    .is-scrolled-down.is-show-nav .layout-header {
        transform: translateY(0);
    }
}

.layout-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    pointer-events: auto;
    transition: opacity .6s cubic-bezier(.39, .575, .565, 1);
}

.is-loaded .layout-loading {
    opacity: 0;
    pointer-events: none;
}

.agree-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .agree-form {
        margin-top: 6rem;
    }
}

.agree-form__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.agree-form__inner input {
    margin-right: .5rem;
}

.agree-form.is-required .agree-form__inner:after {
    content: '※';
    margin-left: 5px;
    color: #e60000;
    font-size: 1.2rem;
    font-weight: 700;
}

.archive-case {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -2.3rem;
    margin-left: -2.3rem;
}

@media screen and (max-width:768px) {
    .archive-case {
        margin-right: -2rem;
        margin-left: -2rem;
    }
}

.archive-case__item {
    width: 24rem;
    margin-right: 2.3rem;
    margin-left: 2.3rem;
}

@media screen and (max-width:768px) {
    .archive-case__item {
        width: 33.4rem;
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

.archive-case__item a {
    display: block;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.archive-case__item a.is-on {
    opacity: .6;
}

.archive-case__item:nth-of-type(n+5) {
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .archive-case__item:nth-of-type(n+3) {
        margin-top: 4rem;
    }
}

.archive-case__category {
    position: relative;
    margin-top: 2rem;
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .archive-case__category {
        font-size: 2rem;
    }
}

.archive-case__category:before {
    width: 2rem;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    content: '';
    display: block;
}

@media screen and (max-width:768px) {
    .archive-case__category:before {
        height: 1px;
        top: 50%;
    }
}

.archive-case__category.is-alog {
    color: #0f6e5a;
}

.archive-case__category.is-alog:before {
    background: #0f6e5a;
}

.archive-case__category.is-secsup {
    color: #55522f;
}

.archive-case__category.is-secsup:before {
    background: #55522f;
}

.archive-case__category.is-nac {
    color: #4482ac;
}

.archive-case__category.is-nac:before {
    background: #4482ac;
}

.archive-case__category.is-ubiquiti {
    color: #224faa;
}

.archive-case__category.is-ubiquiti:before {
    background: #224faa;
}

.archive-case__category.is-training {
    color: #894622;
}

.archive-case__category.is-training:before {
    background: #894622;
    ;
}

.archive-case__category.is-secserv {
    color: #EC7600;
}

.archive-case__category.is-secserv:before {
    background: #EC7600;
}

.archive-case__heading {
    margin-top: 1rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .archive-case__heading {
        line-height: 1.6;
    }
}

.archive-case__company {
    margin-top: 1rem;
    color: #a0a0a0;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .archive-case__company {
        font-size: 2rem;
    }
}

.archive-download {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-right: -.8rem;
    margin-left: -.8rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .archive-download {
        margin-top: 3rem;
        margin-right: -1rem;
        margin-left: -1rem;
    }
}

.archive-download__item {
    position: relative;
    width: 35.6rem;
    margin-right: .8rem;
    margin-left: .8rem;
    padding: 0 1.8rem 11.5rem;
    background: #fff;
}

.wallpaper_list .archive-download {
    margin-top: 60px;
    margin-bottom: 60px;
}

.wallpaper_list .archive-download__item {
    margin-bottom: 40px;
}

@media screen and (max-width:768px) {
    .archive-download__item {
        width: 34.4rem;
        margin-right: 1rem;
        margin-left: 1rem;
        padding: 0 2rem 11.5rem;
    }

    .wallpaper_list .archive-download__item {
        width: 100%;
    }

    .wallpaper_list .button-basic--full {
        font-size: 2rem;
    }

    .wallpaper_list .button-basic .icon--download {
        top: calc(50% - 1.4rem);
        width: 2.8rem;
    }

    .wallpaper_list .button-basic .icon {
        left: 1.5rem;
    }
}

.archive-download__item:nth-of-type(n+4) {
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .archive-download__item:nth-of-type(n+4) {
        margin-top: 3rem;
    }
}

@media screen and (max-width:768px) {
    .archive-download__item:nth-of-type(n+3) {
        margin-top: 3rem;
    }
}

.archive-download__heading {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 11rem;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
}

@media screen and (max-width:768px) {
    .archive-download__heading {
        height: 12rem;
        font-size: 2.7rem;
    }
}

.archive-download__heading small {
    display: block;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .archive-download__heading small {
        font-size: 2rem;
    }
}

.archive-download__image {
    text-align: center;
}

.archive-download__caption {
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .archive-download__caption {
        font-size: 2rem;
    }
}

.archive-download__button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 1.8rem 1.8rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .archive-download__button {
        padding: 0 2rem 2rem;
        font-size: 2rem;
    }
}

.archive-download__button a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7.3rem;
    padding-bottom: .3rem;
    color: #fff;
    box-shadow: 0 -.3rem 0 0 rgba(0, 0, 0, .4) inset;
    text-decoration: none;
}

@media screen and (max-width:768px) {
    .archive-download__button a {
        padding-left: 1rem;
    }
}

.archive-download__button a:before {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    background: rgba(0, 0, 0, .2);
    z-index: 1;
    transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

.archive-download__button a.is-on:before {
    bottom: 0;
    top: auto;
    height: 100%;
}

.archive-download__button span {
    position: relative;
    display: inline-block;
    z-index: 9;
}

.archive-download__button .icon {
    position: absolute;
    top: calc(50% - 1.6rem);
    left: 2rem;
    width: 3.2rem;
    height: 3.2rem;
    fill: #fff;
    z-index: 9;
    transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

.archive-download--alog .archive-download__heading {
    color: #0f6e5a;
}

.archive-download--alog .archive-download__button a {
    background: #0f6e5a;
}

.archive-download--nac .archive-download__heading {
    color: #4482ac;
}

.archive-download--nac .archive-download__button a {
    background: #4482ac;
}

.archive-download--bg-gray .archive-download__item {
    background: #f7f8f9;
}

.archive-press__item {
    background: #f4f4f4;
}

.archive-press__item a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    padding: 2rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .archive-press__item a {
        display: block;
        padding: 3rem;
    }
}

.archive-press__item a.is-on {
    opacity: .6;
}

.archive-press__item a.is-on .archive-seminar__title {
    text-decoration: none;
}

.archive-press__item:nth-of-type(n+2) {
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .archive-press__item:nth-of-type(n+2) {
        margin-top: 3rem;
    }
}

.archive-press__date {
    width: 10rem;
}

@media screen and (max-width:768px) {
    .archive-press__date {
        width: auto;
    }
}

.archive-press__title {
    width: calc(100% - 20.3rem);
    margin-left: 1.5rem;
}

@media screen and (max-width:768px) {
    .archive-press__title {
        width: auto;
        margin: 2rem 0 0;
    }
}

@media screen and (max-width:768px) {
    .archive-press .icon-category-press {
        position: absolute;
        top: 3rem;
        right: 3rem;
    }
}

.archive-seminar {
    margin-top: 4rem;
}

.archive-seminar__item {
    background: #f4f4f4;
}

.archive-seminar__item a {
    position: relative;
    display: block;
    padding: 2rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .archive-seminar__item a {
        padding: 3rem;
    }
}

.archive-seminar__item a.is-on {
    opacity: .6;
}

.archive-seminar__item a.is-on .archive-seminar__title {
    text-decoration: none;
}

.archive-seminar__item:nth-of-type(n+2) {
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .archive-seminar__item:nth-of-type(n+2) {
        margin-top: 3rem;
    }
}

.archive-seminar__body {
    margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
    .archive-seminar__body {
        margin-top: 2rem;
    }
}

.archive-seminar__company {
    color: #a0a0a0;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .archive-seminar__company {
        font-size: 2rem;
    }
}

.archive-seminar__title {
    margin-top: .8rem;
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: underline;
}

@media screen and (max-width:768px) {
    .archive-seminar__title {
        font-size: 3rem;
    }
}

.archive-seminar__title small {
    display: block;
    margin-top: .3rem;
    font-size: 1.6rem;
}

@media screen and (max-width:768px) {
    .archive-seminar__title small {
        margin-top: 1rem;
        font-size: 2.4rem;
    }
}

.article-case {
    position: relative;
}

.article-case:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 12rem);
    content: '';
    display: block;
    background: #f7f8f9;
}

.article-case__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
}

.article-case__header {
    position: relative;
    z-index: 9;
    padding: 8rem 0 10rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .article-case__header {
        padding: 8rem 3rem 10rem;
    }
}

.article-case__body {
    width: 100%;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9;
    margin-top: 10rem;
}

@media screen and (max-width:768px) {
    .article-case__body {
        padding: 0 3rem;
    }
}

.article-case__footer {
    position: relative;
    z-index: 9;
    margin-top: 10rem;
}

.article-message {
    width: 100%;
    max-width: 90rem;
    margin-left: auto;
    margin-right: auto;
    padding: 10rem 0;
}

.article-message__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

.article-message__body {
    margin-top: 5rem;
}

.article-press__footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6rem;
}

.article-seminar__footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6rem;
}

.aside-case {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6rem;
}

@media screen and (max-width:768px) {
    .aside-case {
        padding: 0 3rem;
    }
}

.aside-case__heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .aside-case__heading {
        font-size: 3.2rem;
    }
}

.aside-case__body {
    margin-top: 4rem;
}

.aside-press {
    position: relative;
    padding: 4rem 0;
}

.aside-press__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9;
}

@media screen and (max-width:768px) {
    .aside-press__inner {
        padding: 0 3rem;
    }
}

.aside-press__heading {
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .aside-press__heading {
        font-size: 3.6rem;
    }
}

.aside-press__heading+* {
    margin-top: 0 !important;
}

.aside-press__text {
    margin-top: 3rem;
    line-height: 2;
}

.aside-press__notes {
    margin-top: 3rem;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .aside-press__notes {
        margin-top: 3.5rem;
        font-size: 2rem;
    }
}

.banner-recruit {
    margin-bottom: 9.5rem;
    text-align: center;
}

.box-border {
    margin-top: 3rem;
    padding: 2.5rem 4rem;
    border: 1px solid #1b3f5c;
}

.box-border__heading--center {
    text-align: center;
}

.box-border__text {
    margin-top: 2rem;
}

.box-border>:first-child {
    margin-top: 0 !important;
}

.box-border--gray {
    border-color: #dcdcdc;
}

.box-border--margin-top-narrow {
    margin-top: 2rem;
}

.button-back {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

.button-basic {
    width: 20rem;
    height: 5.1rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1b3f5c;
    border: solid 1px #1b3f5c;
    background: none;
    /* ボタン 基本カラー */
    outline: none;
    font-family: inherit;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none;
    cursor: pointer;
    transition: color .3s cubic-bezier(.39, .575, .565, 1) .2s;
}

.button-basic.download {
    color: #ffffff;
    border: solid 1px #222222;
    background: linear-gradient(to right, #1f94e6 0, #09578d 100%);
    /* ボタン 基本カラー */
}

.section-statement .button-basic,
.group-conversion-case .button-basic {
    color: #fff;
    border: solid 1px #fff;
}


@media screen and (max-width:768px) {
    .button-basic {
        width: 30rem;
        height: 6.0rem;
        font-size: 2.4rem;
    }
}

.button-basic:before {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    display: block;
    background: #fff;
    /* ホバー時のカラー */
    z-index: 1;
    transition: width .5s cubic-bezier(.77, 0, .175, 1);
}

.button-basic.download:before {
    background: #48b0ec;
    /* ホバー時のカラー */
}

/* アニメーションバー */
.button-basic:after {
    width: 3rem;
    height: 1px;
    position: absolute;
    top: calc(50% - 1px);
    left: calc(100% - 1.9rem);
    content: '';
    display: block;
    /*background:#fff;*/
    /*background: linear-gradient(to right, #1f94e6 0, #09578d 100%);*/
    background: #222222;
    z-index: 1;
    transition: width .5s cubic-bezier(.77, 0, .175, 1);
}

.section-statement .button-basic:before,
.section-statement .button-basic:after,
.group-conversion-case .button-basic:before,
.group-conversion-case .button-basic:after {
    background: #fff;
}

@media screen and (max-width:768px) {
    .button-basic:after {
        left: calc(100% - 4rem);
        width: 6rem;
    }
}

.button-basic span {
    position: relative;
    display: inline-block;
    z-index: 9;
}

.button-basic .icon {
    position: absolute;
    left: 1.5rem;
    /*fill:#fff;*/
    fill: #1b3f5c;
    z-index: 9;
    transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

.button-basic.download .icon {
    fill: #fff;
}

.button-basic:hover use {
    fill: #fff;
    transition: .3s;
}

.button-basic:hover span {
    color: #fff;
    transition: .3s;
}


/* ランサポ ボタン */
.button-basic.runsup {
    color: #ffffff;
    border: solid 1px #f6b17a;
    background: linear-gradient(60deg, #f6d553 10%, #ee5f1f 50%, #e63e45 100%);
    /* ボタン 基本カラー */
    font-size: 1.6rem;
}

.button-basic.runsup:before {
    color: #ffffff;
    background: linear-gradient(60deg, #e63e45 10%, #f6d553 100%);
    /* ホバー時のカラー */
}

.button-basic.runsup:after {
    background: #f6b17a;
}

.button-basic.runsup.is-on {
    color: #ffffff;
}

/* ランサポ ボタン END */


.section-statement .button-basic .icon,
.group-conversion-case .button-basic .icon {
    fill: #fff;
}

.section-statement.button-basic:hover use,
.group-conversion-case .button-basic:hover use {
    fill: #1b3f5c;
}

.section-statement .button-basic:hover span,
.group-conversion-case .button-basic:hover span {
    color: #1b3f5c;
}


@media screen and (max-width:768px) {
    .button-basic .icon {
        left: 3rem;
    }
}

.button-basic .icon--download {
    top: calc(50% - 1.3rem);
    width: 2.6rem;
}

@media screen and (max-width:768px) {
    .button-basic .icon--download {
        top: calc(50% - 1.6rem);
        width: 3.2rem;
    }
}

.button-basic .icon--contact {
    top: calc(50% - 1rem);
    width: 2.9rem;
}

@media screen and (max-width:768px) {
    .button-basic .icon--contact {
        left: 2.8rem;
        top: calc(50% - 2rem);
        width: 5.8rem;
    }
}

.button-basic .icon--trial {
    top: calc(50% - 1rem);
    width: 2rem;
}

@media screen and (max-width:768px) {
    .button-basic .icon--trial {
        left: 2.8rem;
        top: calc(50% - 2rem);
        width: 5.8rem;
    }
}

.button-basic.is-on {
    color: #000;
}

.button-basic.download.is-on {
    color: #ffffff;
}

.button-basic.is-on:before {
    left: 0;
    right: auto;
    width: 100%;
}

.button-basic.is-on:after {
    right: -1.1rem;
    left: auto;
    width: 0;
}

@media screen and (max-width:768px) {
    .button-basic.is-on:after {
        right: -2rem;
    }
}

.button-basic.is-on .icon {
    fill: #000;
}

.button-basic.download.is-on .icon {
    fill: #ffffff;
}

.button-basic--black {
    color: #000;
    border-color: #000;
}

.button-basic--black:before {
    background: #000;
}

.button-basic--black:after {
    background: #000;
}

.button-basic--black.is-on {
    color: #fff;
}

.button-basic--navy {
    color: #1b3f5c;
    border-color: #1b3f5c;
}

.button-basic--navy::before,
.button-basic--navy::after {
    background: #1b3f5c;
}

.button-basic--navy.is-on {
    color: #fff;
}

.button-basic--full {
    width: 100%;
    font-size: 1.5rem;
}

@media screen and (max-width:768px) {
    .button-basic--full {
        font-size: 2.0rem;
    }
}

.button-basic--wide {
    width: 40rem;
}

@media screen and (max-width:768px) {
    .button-basic--wide {
        width: 64.8rem;
    }
}

/*@keyframes buttonBasicLine {
	0% {
		right: -1.1rem;
		left: auto;
		width: 3rem;
	}

	40% {
		right: -1.1rem;
		left: auto;
		width: 0;
	}

	60% {
		right: auto;
		left: calc(100% - 1.9rem);
		width: 0;
	}

	100% {
		right: auto;
		left: calc(100% - 1.9rem);
		width: 3rem;
	}
}*/

.button-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6rem;
}

@media screen and (max-width:768px) {
    .button-form {
        flex-wrap: wrap;
        flex-direction: column-reverse;
        width: 100%;
        margin-top: 4rem;
    }
}

.button-form__item {
    text-align: center;
    width: 35%;
}

@media screen and (max-width:768px) {
    .button-form__item {
        display: block;
        width: 100%;
        margin: auto;
    }
}

.button-form__item:nth-of-type(n+2) {
    margin-left: 4rem;
}

@media screen and (max-width:768px) {
    .button-form__item:nth-of-type(n+2) {
        margin-top: 4rem;
        margin-left: auto;
    }
}

.button-more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6rem;
}

@media screen and (max-width:768px) {
    .button-more {
        margin-top: 6rem;
    }
}

.button-more--margin-narrow {
    margin-top: 1rem;
}

@media screen and (max-width:768px) {
    .button-more--margin-narrow {
        margin-top: 3rem;
    }
}

.button-more--margin-top-narrow {
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .button-more--margin-top-narrow {
        margin-top: 3rem;
    }
}

.button-pagetop {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    line-height: 0;
    font-size: 0;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .button-pagetop {
        bottom: 3rem;
        right: 2rem;
    }
}

.button-pagetop a {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 100%;
    display: block;
    background: rgba(0, 0, 0, .4) url(../../images/ja/common/arw_small_white.svg) no-repeat center center;
    background-size: .5rem auto;
    transform: rotate(-90deg);
    text-decoration: none;
}

@media screen and (max-width:768px) {
    .button-pagetop a {
        width: 7rem;
        height: 7rem;
        border-radius: 100%;
        background-image: url(../../images/ja/common/arw_white.svg);
        background-size: 1rem 1.8rem;
    }
}

.is-scrolled .button-pagetop {
    opacity: 1;
    pointer-events: auto;
}

.button-recruitment {
    width: 100%;
    max-width: 50rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 7.5rem;
}

@media screen and (max-width:768px) {
    .button-recruitment {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.carousel-banner {
    padding: 3rem 0;
    background: #121212;
}

.carousel-banner__inner {
    width: 100%;
    max-width: 97rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:768px) {
    .carousel-banner__inner {
        width: 100%;
        max-width: 63.8rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.carousel-banner__item {
    padding: 0 .5rem;
    vertical-align: top;
}

.carousel-banner__item img {
    width: 100%;
}

.carousel-banner .slick-slide {
    width: 19.4rem;
}

@media screen and (max-width:768px) {
    .carousel-banner .slick-slide {
        width: 21.2rem;
    }
}

.carousel-banner .slick-arrow {
    width: 6.5rem;
    height: 100%;
    position: absolute;
    top: 0;
    padding: 0;
    outline: none;
    border: none;
    background: url(../../images/ja/common/arw_white.svg) no-repeat center center;
    background-size: .8rem auto;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    z-index: 9;
}

@media screen and (max-width:768px) {
    .carousel-banner .slick-arrow {
        background-size: 1rem 1.8rem;
    }
}

.carousel-banner .slick-prev {
    left: -6.5rem;
    transform: rotate(180deg);
}

.carousel-banner .slick-next {
    right: -6.5rem;
}


/* 導入事例 一覧 */
.list-case {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 110rem;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    margin: 0 auto 4rem;
    align-items: flex-start;
}

.carousel-case {
    margin-top: 4rem;
}

.carousel-case__item {
    display: inline-block;
    /*width: 41.6rem;*/
    width: 28rem;
    padding: 0 1.2rem;
    vertical-align: top;
}

.carousel-case__item a {
    display: block;
    width: 95%;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.carousel-case__item a.is-on {
    opacity: .6;
}

.carousel-case__category {
    position: relative;
    margin-top: 2rem;
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .carousel-case__category {
        margin-top: 2.4rem;
        padding-left: 5rem;
        font-size: 2.2rem;
    }
}

.carousel-case__category:before {
    width: 2rem;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    content: '';
    display: block;
}

@media screen and (max-width:768px) {
    .carousel-case__category:before {
        width: 4rem;
        height: 1px;
        top: 50%;
    }
}

.carousel-case__category.is-alog {
    color: #0f6e5a;
}

.carousel-case__category.is-alog:before {
    background: #0f6e5a;
}

.carousel-case__category.is-nac {
    color: #4482ac;
}

.carousel-case__category.is-nac:before {
    background: #4482ac;
}

.carousel-case__heading {
    margin-top: 1rem;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    .carousel-case__heading {
        margin-top: 1.2rem;
        font-size: 2.6rem;
        line-height: 1.8;
    }
}

.carousel-case__company {
    margin-top: 1rem;
    color: #a0a0a0;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .carousel-case__company {
        font-size: 2.2rem;
    }
}

.carousel-logo {
    margin-top: 4rem;
}

.carousel-logo__inner {
    margin-top: 1rem;
}

.carousel-logo__item {
    width: 20rem;
    padding: 0 1rem;
}

.carousel-logo__item img {
    width: 18rem;
}

.carousel-verona-result {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    border: solid 1px #dcdcdc;
}

.carousel-verona-result__item {
    vertical-align: top;
}

.carousel-verona-result .slick-slide {
    vertical-align: top;
}

.carousel-verona-result .slick-arrow {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 2.4rem);
    padding: 0;
    outline: none;
    border: solid 1px #4482ac;
    background: #fff url(../../images/ja/common/arw_small_nac.svg) no-repeat center center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 0;
    line-height: 0;
    z-index: 9;
    cursor: pointer;
}

.carousel-verona-result .slick-prev {
    left: -2.4rem;
    transform: rotate(180deg);
}

.carousel-verona-result .slick-next {
    right: -2.4rem;
}

.cover-case {
    height: 24rem;
    background: #1b3f5c;
    text-align: center;
}

.cover-case img {
    max-width: 128rem;
    height: 24rem;
}

.group-case-nac {
    padding: 6rem 12rem;
    background: #fff;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-case-nac {
        padding: 5rem 3rem;
    }
}

.group-case-solutions {
    padding: 3rem 5rem;
    background: #fff;
}

.group-case-solutions--border {
    border: solid 1px #dcdcdc;
}

.group-case-solutions__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    .group-case-solutions__header {
        display: block;
    }
}

.group-case-solutions__image {
    width: 53rem;
    margin-right: 4.5rem;
}

@media screen and (max-width:768px) {
    .group-case-solutions__image {
        width: 100%;
        max-width: 53rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.group-case-solutions__title {
    width: calc(100% - 57.5rem);
}

@media screen and (max-width:768px) {
    .group-case-solutions__title {
        width: auto;
        margin-top: 3rem;
    }
}

.group-case-solutions__category span {
    display: inline-block;
    padding: .5rem 1rem;
    color: #fff;
    background: #1e5078;
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .group-case-solutions__category span {
        font-size: 2rem;
    }
}

.group-case-solutions__sub-heading {
    margin-top: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-case-solutions__sub-heading {
        font-size: 2.4rem;
    }
}

.group-case-solutions__heading {
    margin-top: .3rem;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-case-solutions__heading {
        margin-top: .6rem;
        font-size: 3rem;
    }
}

.group-case-solutions__body {
    margin-top: 2rem;
}

.group-case-solutions__text {
    line-height: 2;
}

.group-case-vclient {
    padding: 7rem 5rem;
    background: #f7f8f9;
}

@media screen and (max-width:768px) {
    .group-case-vclient {
        padding: 5rem 3rem;
    }
}

.group-case-vclient+.group-case-vclient {
    margin-top: 3rem;
}

.group-case-vclient__title {
    color: #1b3f5c;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-case-vclient__title {
        font-size: 3.6rem;
    }
}

.group-case-vclient__lead {
    margin-top: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-case-vclient__lead {
        font-size: 2.4rem;
    }
}

.group-case-vclient__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .group-case-vclient__item {
        display: block;
    }
}

.group-case-vclient__heading {
    width: 10rem;
    height: 10rem;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin-right: 4rem;
    color: #62a4cf;
    border: solid 1px #62a4cf;
    background: #fff;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.group-case-vclient__body {
    width: calc(100% - 14rem);
}

@media screen and (max-width:768px) {
    .group-case-vclient__body {
        width: auto;
        margin-top: 2rem;
    }
}

.group-case-vclient__body>:first-child {
    margin-top: 0;
}

.group-case-vclient__sub-heading {
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-case-vclient__sub-heading {
        font-size: 3rem;
    }
}

.group-case-vclient__text {
    margin-top: .5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .group-case-vclient__text {
        font-size: 2.4rem;
    }
}

.group-case-vclient__image {
    margin-top: 4rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-case-vclient__image {
        margin-top: 3rem;
    }
}

/* 導入事例 一覧 END */

.group-company-data {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 1rem;
}

.group-company-data__image {
    width: 28rem;
    padding: 1rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-company-data__image {
        width: 20rem;
    }
}

.group-company-data__body {
    width: calc(100% - 28rem);
}

@media screen and (max-width:768px) {
    .group-company-data__body {
        width: calc(100% - 20rem);
    }
}

.group-company-data__table {
    width: 100%;
}

@media screen and (max-width:768px) {
    .group-company-data__table {
        font-size: 2rem;
    }
}

.group-company-data__table th,
.group-company-data__table td {
    border: none;
    border-bottom: 1px solid #dcdcdc;
}

.group-company-data__table th {
    width: 20rem;
    padding: 2rem;
}

@media screen and (max-width:768px) {
    .group-company-data__table th {
        padding: 2rem 1rem;
    }
}

.group-company-data__table td {
    width: calc(100% - 20rem);
    padding: 2rem 0;
}

.group-company-data__table a {
    color: #0068bd;
}

.group-contact-press {
    margin-top: 6rem;
    background: #fff;
    text-align: center;
}

.group-contact-press+.group-contact-press {
    margin-top: 3rem;
}

.group-contact-press__heading {
    padding: .5rem;
    color: #fff;
    background: #1b3f5c;
    font-size: 2.4rem;
}

@media screen and (max-width:768px) {
    .group-contact-press__heading {
        font-size: 3rem;
    }
}

.group-contact-press__text {
    padding: 2.5rem;
    line-height: 2;
}

.group-conversion-case {
    width: 140rem;
    margin: 6rem auto 0;
    padding-bottom: 4rem;
}

@media screen and (max-width:768px) {
    .group-conversion-case {
        width: auto;
        margin: 6rem 0 0;
    }
}

.group-conversion {
    width: 100%;
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 24rem;
    /*	color:#fff;*/
    color: #1b3f5c;
    background-color: #1b3f5c;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin: -20px auto;
}

.article-case__footer .group-conversion {
    background-color: #fff;
}

.group-conversion-case .group-conversion {
    color: #fff;
}

@media screen and (max-width:768px) {
    .group-conversion {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
        height: auto;
        padding: 5rem 5rem 7rem;
    }
}

.group-conversion__heading {
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .group-conversion__heading {
        font-size: 3.4rem;
        text-align: center;
    }
}

.group-conversion__heading span {
    font-family: Work Sans, sans-serif;
    font-size: 3rem;
}

@media screen and (max-width:768px) {
    .group-conversion__heading span {
        font-size: 3.2rem;
    }
}

.group-conversion__sub-heading {
    margin-top: 1rem;
}

@media screen and (max-width:768px) {
    .group-conversion__sub-heading {
        font-size: 2.7rem;
        text-align: center;
    }
}

.group-conversion__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .group-conversion__list {
        display: block;
        margin-top: 4rem;
    }
}

.group-conversion__list--left {
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.group-conversion__item {
    width: 30rem;
}

.group-conversion__line {
    width: 30rem;
    margin: 20px auto 0;
}

.doc_download .archive-download__item {
    padding: 0 1.8rem 2rem;
}

@media screen and (max-width:768px) {
    .group-conversion__item {
        width: 100%;
    }

    .group-conversion__line .button-basic .icon--download {
        top: calc(50% - 1.5rem);
        left: 1rem;
        width: 3rem;
    }

    .group-conversion__line .button-basic {
        height: 7rem;
    }

    .group-conversion__line span {
        font-size: 1.5rem;
    }

    .doc_download .archive-download__item {
        padding: 0 2rem 2rem;
    }
}

.group-conversion__item:nth-of-type(n+2) {
    margin-left: 4rem;
}

.group-conversion__footer {
    width: 30rem;
    margin: 4rem auto 0;
}

@media screen and (max-width:768px) {
    .group-conversion__footer {
        width: 60%;
        margin: 4rem auto 0;
    }
}

@media screen and (max-width:768px) {
    .group-conversion__item:nth-of-type(n+2) {
        margin: 4rem 0 0;
    }
}

.group-conversion__image {
    width: 14.1rem;
    margin-right: 6rem;
}

@media screen and (max-width:768px) {
    .group-conversion__image {
        width: 100%;
        max-width: 20rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.group-conversion__image--wide {
    width: 22rem;
}

@media screen and (max-width:768px) {
    .group-conversion__body {
        margin-top: 3rem;
    }
}

.group-conversion--alog {
    background: none;
}

.group-conversion--nac {
    background: #fff;
}

.group-conversion--case {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background-image: url(../../images/ja/case/bg_conversion.jpg);
}

.group-conversion--none {
    background: none;
}

.group-conversion--case .group-conversion__heading {
    color: #fff;
    padding-bottom: 0;
}

.group-conversion .btn-link {
    cursor: pointer;
    user-select: none;
    text-decoration: none;
}

.group-download__heading {
    padding-bottom: 3rem;
    color: #1b3f5c;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-download__heading {
        padding-bottom: 5rem;
        font-size: 4rem;
    }
}

.group-download__heading span {
    position: relative;
    display: inline-block;
}

.group-download__body {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.group-download__body:before {
    border-style: solid;
    border-width: 2.8rem 2.7rem 0;
    border-color: #fff transparent transparent;
    position: absolute;
    top: 0;
    left: calc(50% - 2.7rem);
    width: 0;
    height: 0;
    content: '';
    display: block;
}

.group-download--alog .group-download__body {
    background-image: url(../../images/ja/solutions/alog/bg/bg_download.jpg);
}

.group-download--nac .group-download__body {
    background-image: url(../../images/ja/solutions/network_all_cloud/bg_download.jpg);
}

.group-environment {
    padding: 6rem 12rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .group-environment {
        padding: 6rem 3rem;
    }
}

.group-environment>:first-child {
    margin-top: 0;
}

.group-environment--gray {
    background: #f7f8f9;
}

.group-environment__table {
    width: 100%;
    margin-top: 3rem;
    letter-spacing: 0;
}

@media screen and (max-width:768px) {
    .group-environment__table {
        margin-top: 4rem;
        font-size: 2rem;
    }
}

.group-environment__table caption {
    margin-bottom: 1rem;
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: left;
}

@media screen and (max-width:768px) {
    .group-environment__table caption {
        font-size: 2.4rem;
    }
}

.group-environment__table th,
.group-environment__table td {
    padding: 1rem 2rem;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    line-height: 2;
}

@media screen and (max-width:768px) {

    .group-environment__table th,
    .group-environment__table td {
        padding: 1rem;
    }
}

.group-environment__table th {
    width: 18rem;
    background: #f4f4f4;
}

.group-environment__table th a {
    color: #0068bd;
    font-size: 1.8rem;
    font-weight: 700;
}

.group-environment__table th a.fontsize-nomal {
    font-size: 100%;
}

.group-environment__table td {
    width: calc(100% - 18rem);
}

.group-environment__table td a {
    color: #0068bd;
}

.group-environment__table--vertical {
    table-layout: fixed;
    font-size: 1.6rem;
}

@media screen and (max-width:768px) {
    .group-environment__table--vertical {
        font-size: 2rem;
    }
}

.group-environment__table--vertical th {
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.group-environment__table--vertical th+th {
    border-left: 1px solid #dcdcdc;
}

.group-environment__table--vertical td {
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.group-environment__table--vertical td+td {
    border-left: 1px solid #dcdcdc;
}

.group-environment__table--vertical td.align-right {
    text-align: right;
}

.group-environment__table--vertical td.word-break-keep {
    word-break: keep-all;
}

@media screen and (min-width:769px) {
    .group-environment__table--vertical td.word-break-keep-pc {
        word-break: keep-all;
    }
}

.group-environment__table--mix {
    table-layout: fixed;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .group-environment__table--mix {
        font-size: 1.6rem;
    }
}

.group-environment__table--mix th {
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.group-environment__table--mix th+th,
.group-environment__table--mix th+td {
    border-left: 1px solid #dcdcdc;
}

.group-environment__table--mix td {
    width: auto;
    text-align: center;
    vertical-align: middle;
}

.group-environment__table--mix td+td {
    border-left: 1px solid #dcdcdc;
}

.group-environment__table--mix td.align-right {
    text-align: right;
}

.group-faq {
    margin-top: 6rem;
    padding: .1rem 12rem 6rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .group-faq {
        padding: .1rem 3rem 6rem;
    }
}

.group-feature-hypersonix {
    width: 140rem;
    margin: 9rem -15rem 0;
    padding: 10rem 15rem;
    background: #f7f8f9;
}

@media screen and (max-width:768px) {
    .group-feature-hypersonix {
        width: auto;
        margin: 9rem 0 0;
        padding: 6rem 3rem;
    }
}

.group-feature-hypersonix__heading {
    margin-bottom: 4rem;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-feature-hypersonix__heading {
        margin-bottom: 4rem;
        font-size: 3.6rem;
    }
}

.group-feature-hypersonix__message {
    margin-top: 6rem;
    font-size: 4.6rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-feature-hypersonix__message {
        margin-top: 4rem;
    }
}

.group-feature+.group-feature {
    margin-top: 6rem;
}

@media screen and (max-width:768px) {
    .group-feature+.group-feature {
        margin-top: 3rem;
    }
}

.group-feature__header {
    position: relative;
    padding: 1rem;
    color: #fff;
    background: #1b3f5c;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-feature__header {
        padding: 2rem 1rem;
    }
}

.group-feature__number {
    position: absolute;
    top: 0;
    left: 0;
    width: 15.5rem;
    height: 100%;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-feature__number {
        width: 12rem;
        padding-right: 1.5rem;
        font-size: 2rem;
    }
}

.group-feature__number:before {
    position: absolute;
    top: 0;
    left: -1.5rem;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: #32536d;
    transform: skewX(-25deg);
}

@media screen and (max-width:768px) {
    .group-feature__number:before {
        transform: skewX(-20deg);
    }
}

.group-feature__number span {
    position: relative;
    display: inline-block;
}

.group-feature__heading {
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-feature__heading {
        padding-left: 12rem;
        text-align: left;
    }
}

.group-feature__body {
    padding: 4rem 5rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .group-feature__body {
        padding: 4rem 3rem 5rem;
    }
}

.group-feature__body>:first-child {
    margin-top: 0;
}

.group-functions-solutions {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 4rem;
}

@media screen and (max-width:768px) {
    .group-functions-solutions {
        padding-bottom: 3rem;
    }
}

.group-functions-solutions+.group-functions-solutions {
    margin-top: 4rem;
    padding-top: 4rem;
}

@media screen and (max-width:768px) {
    .group-functions-solutions+.group-functions-solutions {
        margin-top: 3rem;
        padding-top: 3rem;
    }
}

.group-functions-solutions+.group-functions-solutions:before {
    position: absolute;
    top: 0;
    left: -5rem;
    width: calc(100% + 10rem);
    height: 1px;
    content: '';
    display: block;
    background: #e8eaed;
}

.group-functions-solutions__heading {
    width: 19rem;
    height: 6rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1b3f5c;
    border: solid 2px #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-functions-solutions__heading {
        width: 16rem;
        height: 6rem;
    }
}

.group-functions-solutions__heading span {
    font-size: 3.6rem;
}

.group-functions-solutions__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    width: calc(100% - 19rem);
}

@media screen and (max-width:768px) {
    .group-functions-solutions__list {
        width: calc(100% - 16rem);
    }
}

.group-functions-solutions__list--3step {
    padding-left: 2rem;
}

.group-functions-solutions__item {
    position: relative;
}

.group-functions-solutions__item:nth-of-type(n+2):before {
    border-style: solid;
    border-width: 1.8rem 0 1.8rem 1.8rem;
    border-color: transparent transparent transparent #0f6e5a;
    position: absolute;
    top: calc(50% - 1.8rem);
    left: -4rem;
    width: 0;
    height: 0;
    content: '';
    display: block;
}

@media screen and (max-width:768px) {
    .group-functions-solutions__item:nth-of-type(n+2):before {
        border-style: solid;
        border-width: .9rem 0 .9rem .9rem;
        border-color: transparent transparent transparent #0f6e5a;
        position: absolute;
        top: calc(50% - .9rem);
        left: -1rem;
    }
}

.group-functions-solutions__image {
    position: relative;
    text-align: center;
}

.group-functions-solutions__text {
    position: absolute;
    bottom: -4rem;
    left: 0;
    width: 100%;
    font-size: 1.8rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .group-functions-solutions__text {
        bottom: -3rem;
        letter-spacing: 0;
    }
}

.group-functions-solutions__text--after {
    color: #0f6e5a;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .group-functions-solutions__text--after {
        font-size: 2rem;
    }
}

.group-horizontal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    .group-horizontal {
        display: block;
    }
}

.group-horizontal__image {
    display: block;
    width: 26.6rem;
    margin-right: 2rem;
}

@media screen and (max-width:768px) {
    .group-horizontal__image {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.group-horizontal__text {
    width: calc(100% - 28.6rem);
}

@media screen and (max-width:768px) {
    .group-horizontal__text {
        width: auto;
        margin-top: 3rem;
    }
}

.group-horizontal a {
    color: #1b3f5c;
}

.group-horizontal--vedge {
    margin-top: 5rem;
    padding: 0 7rem;
}

@media screen and (max-width:768px) {
    .group-horizontal--vedge {
        padding: 0;
    }
}

.group-horizontal--vedge .group-horizontal__image {
    display: block;
    width: 48.6rem;
    margin-right: 5rem;
}

@media screen and (max-width:768px) {
    .group-horizontal--vedge .group-horizontal__image {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.group-horizontal--vedge .group-horizontal__text {
    width: calc(100% - 53.6rem);
    line-height: 2;
}

@media screen and (max-width:768px) {
    .group-horizontal--vedge .group-horizontal__text {
        width: auto;
    }
}

.group-isms {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .group-isms {
        display: block;
    }
}

.group-isms__image {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
}

.group-isms__image>p {
    font-size: 1.4rem;
}

@media screen and (max-width:768px) {
    .group-isms__image {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
    }

    .group-isms__image>p {
        font-size: 2rem;
    }
}

.group-isms__text {
    width: 80.4rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .group-isms__text {
        width: auto;
        margin-top: 4rem;
    }
}

.group-receiver {
    margin-top: 3rem;
    padding: 5rem;
    background: #fff;
}

.group-receiver__slogan {
    color: #0f6e5a;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.group-receiver__heading {
    margin-top: 1rem;
    color: #0f6e5a;
    font-family: Work Sans, sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
}

.group-receiver__image {
    margin-top: 2.5rem;
}

.group-share-alog {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3.5rem;
}

.group-share-alog__image {
    text-align: center;
}

.group-share-alog__notes {
    margin-top: 2.5rem;
    font-size: 1.2rem;
    text-align: right;
}

.group-ssl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.group-ssl__image {
    width: 12.8rem;
}

.group-ssl__text {
    width: 84rem;
    line-height: 2;
}

.group-ssl__text a {
    color: #0068bd;
}

.group-stetment {
    text-align: center;
}

.group-stetment__heading {
    margin-bottom: 5.5rem;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.7;
}

.group-stetment__text {
    margin-top: 4rem;
    line-height: 2.666;
}

@media screen and (max-width:768px) {
    .group-stetment__text {
        font-size: 2.4rem;
    }
}

.group-stetment__text strong {
    display: inline-block;
    margin-top: 1rem;
    font-family: Work Sans, sans-serif;
    font-size: 3rem;
    letter-spacing: .1em;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .group-stetment__text strong {
        font-size: 3.6rem;
    }
}

.group-summary-solutions {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 8rem;
}

.group-summary-solutions>:first-child {
    margin-top: 0;
}

.group-summary-solutions__check {
    position: relative;
    padding: 0 0 1.5rem 3.2rem;
    border-bottom: 2px solid #1b3f5c;
    font-size: 1.7rem;
    line-height: 1;
}

.group-summary-solutions__check:before {
    position: absolute;
    top: -.3rem;
    left: 0;
    width: 2rem;
    height: 2rem;
    content: '';
    display: block;
    box-sizing: border-box;
    border: solid 1px #dcdcdc;
    background: url(../../images/ja/common/icn_check_alog.svg) no-repeat center center;
    background-size: 1.6rem auto;
}

.group-summary-solutions__heading {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

.group-summary-solutions__lead {
    margin-top: 10px;
    font-size: 1.7rem;
    line-height: 2;
    text-align: center;
}

.group-summary-solutions__image {
    margin-top: 5rem;
    text-align: center;
}

.group-summary-solutions__image--margin-top-narrow {
    margin-top: 2rem;
}

.group-support-link {
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.group-support-link__button a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    border: 1px solid #dcdcdc;
    text-decoration: none;
}

.group-support-link__button a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: .5rem .9rem;
    transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

.group-support-link__button a.is-on {
    opacity: .6;
}

.group-support-link__button a.is-on:after {
    right: .7rem;
}

.group-support-link__image {
    margin-right: 2rem;
}

.group-support-link__text {
    margin-top: 4rem;
    font-size: 1.3rem;
    text-align: center;
}

.heading-article {
    margin-top: 9rem;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    color: #000;
    border-bottom: 2px solid #1b3f5c;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .heading-article {
        margin-top: 8rem;
        padding-bottom: 2rem;
        font-size: 3.2rem;
    }
}

.heading-article+* {
    margin-top: 3rem !important;
}

.heading-case {
    margin-top: 9rem;
    padding-bottom: 1rem;
    color: #1b3f5c;
    border-bottom: 2px solid #1b3f5c;
    font-size: 3rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .heading-case {
        margin-top: 8rem;
        padding-bottom: 2rem;
        font-size: 3.6rem;
    }
}

.heading-case+* {
    margin-top: 2rem !important;
}

@media screen and (max-width:768px) {
    .heading-case+* {
        margin-top: 4rem !important;
    }
}

.heading-download {
    margin-top: 8rem;
    padding: 1rem;
    color: #fff;
    background: #1b3f5c;
    font-size: 2.4rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .heading-download {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 3.2rem;
    }
}

.heading-form {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2.4rem;
    color: #1b3f5c;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
}

@media screen and (max-width:768px) {
    .heading-form {
        padding-bottom: 3rem;
        font-size: 4rem;
    }
}

.heading-form:after {
    width: 6rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 3rem);
    content: '';
    display: block;
    background: #1b3f5c;
}

@media screen and (max-width:768px) {
    .heading-form:after {
        width: 8rem;
        left: calc(50% - 4rem);
    }
}

.heading-history {
    width: 14rem;
    color: #1b3f5c;
    font-family: Work Sans, sans-serif;
    font-size: 5rem;
    line-height: 1;
}

.heading-seminar {
    margin-top: 9rem;
    padding-bottom: 1.5rem;
    color: #1b3f5c;
    border-bottom: 2px solid #1b3f5c;
    font-size: 3rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .heading-seminar {
        margin-top: 8rem;
        padding-bottom: 2rem;
        font-size: 3.2rem;
    }
}

.heading-sidebar {
    margin-top: 5rem;
    padding-bottom: 1.5rem;
    color: #000;
    border-bottom: 2px solid #1b3f5c;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .heading-sidebar {
        font-size: 3.2rem;
    }
}

.heading-verona {
    margin-bottom: 4rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .heading-verona {
        margin-bottom: 3rem;
    }
}

.heading-verona__en {
    font-family: Work Sans, sans-serif;
    font-size: 5rem;
    letter-spacing: .14em;
}

.heading-verona small {
    display: block;
}

.icon-category-press {
    width: 10rem;
    height: 2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0;
}

@media screen and (max-width:768px) {
    .icon-category-press {
        width: 20rem;
        height: 4rem;
        font-size: 2rem;
    }
}

.icon-category-press.is-news {
    background: #1b3f5c;
}

.icon-category-press.is-pr {
    background: #82509b;
}

.icon-category-seminar {
    width: 8rem;
    height: 2rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0;
}

@media screen and (max-width:768px) {
    .icon-category-seminar {
        width: 14rem;
        height: 4rem;
        font-size: 2rem;
    }
}

.icon-category-seminar.is-event {
    background: #1b3f5c;
}

.icon-category-seminar.is-seminar {
    background: #82509b;
}

.icon-category-seminar.is-conference {
    background: #942343;
}

.image-article {
    margin-top: 3rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .image-article {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 4rem;
    }
}

.image-article--right {
    float: right;
    width: 30rem;
}

@media screen and (max-width:768px) {
    .image-article--right {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
        float: none;
        margin-top: 4rem;
    }
}

.image-case-verona {
    margin-bottom: 9rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .image-case-verona {
        margin-bottom: 4rem;
    }
}

.image-case {
    margin-top: 7rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .image-case {
        margin-top: 6rem;
    }
}

.image-centering {
    text-align: center;
}

.image-global {
    margin-top: -1.5rem;
    text-align: center;
}

.image-message {
    width: 48rem;
}

.image-message span {
    display: block;
}

.image-platform-alog {
    width: 100%;
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.image-platform-alog:after {
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    top: 7.1rem;
    height: 28rem;
    background: url(../../images/ja/solutions/alog/bg_current_platform.png);
    background-size: 1px auto;
    mix-blend-mode: color-dodge;
    animation: current-platform 1s cubic-bezier(.39, .575, .565, 1) infinite;
}

@media screen and (max-width:768px) {
    .image-platform-alog:after {
        top: 5.2rem;
        height: 20.7rem;
    }
}

.image-platform-alog--converter:after {
    left: 0;
    width: 31.8rem;
}

@media screen and (max-width:768px) {
    .image-platform-alog--converter:after {
        width: 23.4rem;
    }
}

.image-platform-alog--db:after {
    left: 33rem;
    width: 20.2rem;
}

@media screen and (max-width:768px) {
    .image-platform-alog--db:after {
        left: 24.2rem;
        width: 14.8rem;
    }
}

.image-platform-alog--eva:after {
    left: 54.5rem;
    width: 41.5rem;
}

@media screen and (max-width:768px) {
    .image-platform-alog--eva:after {
        left: 40.1rem;
        width: 30.5rem;
    }
}

@keyframes current-platform {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .6;
    }

    100% {
        opacity: 0;
    }
}

.information-press {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
    .information-press {
        padding-bottom: 3rem;
    }
}

.information-press__date {
    margin-left: 1.5rem;
}

.information-seminar {
    position: relative;
    padding-bottom: 1.3rem;
    border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
    .information-seminar {
        padding-bottom: 2rem;
    }
}

.information-seminar__primary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    .information-seminar__primary {
        display: block;
    }
}

.information-seminar__secondary {
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
}

@media screen and (max-width:768px) {
    .information-seminar__secondary {
        margin-top: 2rem;
    }
}

.lead-recruitment {
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
}

@media screen and (max-width:768px) {
    .lead-recruitment {
        font-size: 2.7rem;
    }
}

.list-access {
    margin-top: 1.5rem;
}

.list-access__item {
    padding: 2.5rem 1rem;
    border-bottom: 1px solid #dcdcdc;
}

.list-access__heading {
    color: #1b3f5c;
    font-size: 1.6rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-access__heading {
        font-size: 2.7rem;
    }
}

.list-access__text {
    line-height: 2;
}

.list-area-alog {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 98rem;
    margin: 0 auto;
}

.list-area-alog:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: url(../../images/ja/solutions/alog/img_area_arrow.png) no-repeat center top;
    background-size: contain;
    pointer-events: none;
}

@media screen and (max-width:768px) {
    .list-area-alog {
        width: 90%;
        margin: 0 auto;
    }

    .list-area-alog:after {
        display: none;
    }
}

.list-area-alog__item {
    width: 41rem;

}

@media screen and (max-width:768px) {
    .list-area-alog__item {
        width: 100%;
    }

    .list-area-alog__item img {
        width: 100%;
    }
}

.list-area-alog__item:nth-of-type(3),
.list-area-alog__item:nth-of-type(4) {
    margin-top: 2rem;
}

@media screen and (max-width:768px) {

    .list-area-alog__item:nth-of-type(3),
    .list-area-alog__item:nth-of-type(4) {
        margin-top: 2rem;
    }
}

.list-area-alog__item:nth-of-type(1) {
    width: 41rem;
}

.evaArea {
    width: 40rem;
    height: 39.3rem;
    margin-left: 10px;
}

.dbArea {
    margin-top: 4rem;
    width: 40rem;
    height: 16rem;
    margin-left: 10px;
}

@media screen and (max-width:768px) {
    .list-area-alog__item:nth-of-type(1) {
        width: 100%;
    }

    .list-area-alog__item:nth-of-type(1) img {
        width: 100%;
    }

    .evaArea {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-left: 0px;
    }

    .dbArea {
        width: 100%;
        height: auto;
        margin-top: 2rem;
        margin-left: 0px;
    }

    .evaArea img {
        width: 100%;
    }

    .dbArea img {
        width: 100%;
    }
}

.list-area-alog__item:nth-of-type(3),
.list-area-alog__item:nth-of-type(4) {
    width: 48rem;
}

@media screen and (max-width:768px) {

    .list-area-alog__item:nth-of-type(3),
    .list-area-alog__item:nth-of-type(4) {
        width: 100%;
    }

    .list-area-alog__item:nth-of-type(3) img,
    .list-area-alog__item:nth-of-type(4) img {
        width: 100%;
    }

}

.list-area-alog__item a {
    position: relative;
    display: block;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.list-area-alog__item a:after {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 3.1rem;
    height: 3.1rem;
    border-radius: 100%;
    content: '';
    display: block;
    box-sizing: border-box;
    border: solid 1px #0f6e5a;
    background: url(../../images/ja/common/arw_small_alog.svg) no-repeat center center;
    background-size: .5rem auto;
}

@media screen and (max-width:768px) {
    .list-area-alog__item a {
        width: 100%;
    }

    .list-area-alog__item a:after {
        width: 5.1rem;
        height: 5.1rem;
        border-radius: 100%;
        top: 2rem;
        right: 2rem;
        background-image: url(../../images/ja/common/arw_alog.svg);
        background-size: .8rem 1.5rem;
    }
}

.list-area-alog__item a.is-on {
    opacity: .6;
}

.list-banner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -.8rem;
    margin-left: -.8rem;
}

@media screen and (max-width:768px) {
    .list-banner {
        margin-right: -2rem;
        margin-left: -2rem;
    }
}

.list-banner__item {
    width: 35.6rem;
    margin-right: .8rem;
    margin-left: .8rem;
}

@media screen and (max-width:768px) {
    .list-banner__item {
        width: 33.4rem;
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

@media screen and (max-width:768px) {
    .list-banner__item:nth-of-type(n+3) {
        margin-top: 4rem;
    }
}

.list-banner__item--blog {
    background: #f4f4f4;
}

.list-banner__item--facebook {
    background: #3a5e91;
}

.list-banner__item--youtube {
    border: solid 1px #a0a0a0;
    background: #fff;
}

.list-bullets {
    margin: 2rem 0 0 2.5rem;
    list-style-type: disc;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-bullets {
        margin-left: 3.5rem;
    }
}

.list-bullets--font-small {
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .list-bullets--font-small {
        font-size: 2rem;
    }
}

.list-bullets--margin-top-0 {
    margin-top: 0;
}

.list-bullets__item strong {
    color: #e60012;
}

.list-card {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1rem;
    margin-left: -1rem;
}

@media screen and (max-width:768px) {
    .list-card {
        margin-right: -2rem;
        margin-left: -2rem;
    }
}

.list-card__item {
    width: 32rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

@media screen and (max-width:768px) {
    .list-card__item {
        width: 33.4rem;
        margin-right: 2rem;
        margin-left: 2rem;
    }
}

.list-card__item:nth-of-type(n+4) {
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .list-card__item:nth-of-type(n+3) {
        margin-top: 4rem;
    }
}

.list-card__heading {
    margin-top: 2rem;
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-card__heading {
        font-size: 3rem;
    }
}

.list-card__text {
    margin-top: 1rem;
    line-height: 2;
}

/*   導入実績  Hyper/Verona */
.list-case-hypersonix {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.list-case-hypersonix__item {
    width: 47rem;
    margin-right: 6rem;
    text-align: center;
}

.list-case-hypersonix__item:nth-of-type(2n) {
    margin-right: 0;
}

.list-case-hypersonix__item:nth-of-type(n+3) {
    margin-top: 4.5rem;
}

.list-case-hypersonix__item a {
    text-decoration: none;
}

.list-case-hypersonix__heading {
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
}

.list-case-vedge {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    text-align: center;
}

.list-case-vedge__item {
    position: relative;
    width: 35.6rem;
    margin: 1.6rem 1.6rem 0 0;
    padding: 3rem 3rem 4rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .list-case-vedge__item {
        width: 33.4rem;
        margin: 3rem 4rem 0 0;
        padding: 3rem 2rem;
    }
}

.list-case-vedge__item:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    .list-case-vedge__item:nth-of-type(3n) {
        margin-right: 4rem;
    }
}

@media screen and (max-width:768px) {
    .list-case-vedge__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.list-case-vedge__icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 6rem;
    height: 6rem;
    border-radius: 100%;
    overflow: hidden;
    content: '';
    display: block;
    background: #1e5078;
}

.list-case-vedge__heading {
    color: #1e5078;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-case-vedge__heading {
        font-size: 2.8rem;
    }
}

.list-case-vedge__sub-heading {
    margin-top: 4.5rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .list-case-vedge__sub-heading {
        margin-top: 3rem;
        font-size: 2rem;
    }
}

.list-case-vedge__number {
    margin-top: 1.5rem;
    color: #1e5078;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-case-vedge__number {
        font-size: 2.4rem;
    }
}

.list-case-vedge__number strong {
    font-size: 6rem;
}

.list-case-vedge__button {
    margin-top: 5rem;
}

@media screen and (max-width:768px) {
    .list-case-vedge__button {
        margin-top: 3rem;
    }
}

/*   導入実績 Hyper/Verona END */

.list-check-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .list-check-text {
        display: block;
        margin-top: 4rem;
        font-size: 2.7rem;
    }
}

.list-check-text__item {
    width: 48rem;
    height: 4.4rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1rem;
    padding-left: 5rem;
    position: relative;
    background: #f7f8f9;
}

@media screen and (max-width:768px) {
    .list-check-text__item {
        width: 100%;
        height: 8rem;
        margin-top: 2rem;
        padding-left: 9rem;
    }
}

.list-check-text__item:before {
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    top: calc(50% - 1.1rem);
    left: 1.5rem;
    box-sizing: border-box;
    content: '';
    display: block;
    border: 1px solid #dcdcdc;
    background: url(../../images/ja/common/icn_check_alog.svg) no-repeat center center;
    z-index: 9;
}

@media screen and (max-width:768px) {
    .list-check-text__item:before {
        width: 4rem;
        height: 4rem;
        top: calc(50% - 2rem);
        left: 3rem;
    }
}

.list-check {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:768px) {
    .list-check {
        display: block;
    }
}

.list-check__item {
    width: calc(33.333% - 3.2rem);
    margin: 3rem 4.8rem 0 0;
}

@media screen and (max-width:768px) {
    .list-check__item {
        width: auto;
        margin: 4rem 0 0;
    }
}

.list-check__item:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    .list-check__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-check__image {
    margin-bottom: 3rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-check__image {
        width: 100%;
        max-width: px2rewm(600px);
        margin-left: auto;
        margin-right: auto;
    }
}

.list-check__heading {
    position: relative;
    padding-left: 3.2rem;
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-check__heading {
        padding-left: 5rem;
        font-size: 2.8rem;
        line-height: 1.5;
    }
}

.list-check__heading:before {
    position: absolute;
    top: -.3rem;
    left: 0;
    width: 2rem;
    height: 2rem;
    content: '';
    display: block;
    box-sizing: border-box;
    border: solid 1px #dcdcdc;
    background: url(../../images/ja/common/icn_check_alog.svg) no-repeat center center;
    background-size: 1.6rem auto;
}

@media screen and (max-width:768px) {
    .list-check__heading:before {
        width: 3.6rem;
        height: 3.6rem;
        top: .4rem;
        background-size: 2.8rem auto;
    }
}

.list-check__text {
    margin-top: 1.5rem;
    line-height: 2;
}

.list-customer-voice__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3rem 5rem;
    background: #f7f8f9;
}

@media screen and (max-width:768px) {
    .list-customer-voice__item {
        padding: 3rem;
    }
}

.list-customer-voice__item:nth-of-type(n+2) {
    margin-top: 1rem;
}

@media screen and (max-width:768px) {
    .list-customer-voice__item:nth-of-type(n+2) {
        margin-top: 3rem;
    }
}

.list-customer-voice__image {
    width: 10rem;
    text-align: center;
}

.list-customer-voice__image span {
    display: block;
    background: #fff;
}

.list-customer-voice__body {
    width: calc(100% - 13rem);
}

.list-customer-voice__body--full {
    width: auto;
}

.list-customer-voice__heading {
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-customer-voice__heading {
        font-size: 3.2rem;
    }
}

.list-customer-voice__name {
    margin-top: .5rem;
    color: #1b3f5c;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .list-customer-voice__name {
        font-size: 2.4rem;
    }
}

.list-customer-voice__text {
    margin-top: 1rem;
    line-height: 2;
}

.list-customer-voice__text strong {
    color: #e60012;
}

.list-customer-voice--bg-white .list-customer-voice__item {
    background: #fff;
}

.list-customer-voice--vclient {
    margin-top: 7rem;
}

.list-customer-voice--vclient .list-customer-voice__item {
    padding: 0;
    background: none;
}

.list-customer-voice--margin-top {
    margin-top: 4.5rem;
}

.list-data-seminar {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:768px) {
    .list-data-seminar {
        font-size: 2.4rem;
    }
}

.list-data-seminar__item:nth-of-type(n+2) {
    margin-left: 1.5rem;
}

.list-definition-horizontal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .list-definition-horizontal {
        display: block;
    }
}

.list-definition-horizontal__item {
    width: calc(33.333% - 2rem);
    margin-right: 3rem;
}

@media screen and (max-width:768px) {
    .list-definition-horizontal__item {
        width: auto;
        margin-right: 0;
    }
}

.list-definition-horizontal__item:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    .list-definition-horizontal__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-definition-horizontal__item>:first-child {
    margin-top: 0;
}

@media screen and (max-width:768px) {
    .list-definition-horizontal__image {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.list-definition-horizontal__heading {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-definition-horizontal__heading {
        margin-top: 3rem;
        font-size: 3rem;
    }
}

.list-definition-horizontal__text {
    margin-top: 1rem;
    line-height: 2;
}

.list-definition {
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .list-definition {
        margin-top: 3rem;
    }
}

.list-definition__heading {
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-definition__heading {
        font-size: 2.8rem;
    }
}

.list-definition__heading:nth-of-type(n+2) {
    margin-top: 3rem;
}

.list-definition__text {
    margin-top: .5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-definition__text {
        margin-top: .5rem;
        font-size: 2.4rem;
        line-height: 1.6;
    }
}

.list-definition--border {
    padding: 1.5rem 2rem 1.2rem;
    border: solid 2px #1b3f5c;
}

.list-definition--point .list-definition__heading {
    color: #1b3f5c;
    font-family: Work Sans, sans-serif;
}

.list-download {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 6rem 0 8rem;
}

@media screen and (max-width:768px) {
    .list-download {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
        padding: 4rem 0 6rem;
    }
}

.list-download--alog .list-download__heading {
    color: #0f6e5a;
}

.list-download--alog .list-download__button a {
    background: #0f6e5a;
}

.list-download--nac .list-download__heading {
    color: #1e5078;
}

.list-download--nac .list-download__button a {
    background: #4482ac;
}

.list-download__item {
    position: relative;
    width: 54rem;
    margin: 2rem 2rem 0 0;
    padding: 3rem 3rem 5rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .list-download__item {
        width: 100%;
        margin: 2rem 0 0;
        padding: 3rem 3rem 14rem;
    }
}

.list-download__item:nth-of-type(2n) {
    margin-right: 0;
}

.list-download__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.list-download__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-grow: 1;
}

.list-download__image {
    width: 19.2rem;
}

.list-download__body {
    width: calc(100% - 22.2rem);
}

.list-download__heading {
    font-size: 2.3rem;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.4;
}

@media screen and (max-width:768px) {
    .list-download__heading {
        font-size: 3.2rem;
    }
}

.list-download__heading small {
    display: block;
    margin-bottom: .3rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .list-download__heading small {
        margin-bottom: .3rem;
        font-size: 2.4rem;
    }
}

.list-download__text {
    margin-top: 1rem;
}

@media screen and (max-width:768px) {
    .list-download__text {
        font-size: 2.4rem;
    }
}

.list-download__button {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0 3rem 1.5rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .list-download__button {
        padding: 0 3rem 2rem;
        font-size: 2.8rem;
    }
}

.list-download__button a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7.3rem;
    padding-bottom: .3rem;
    color: #fff;
    box-shadow: 0 -.3rem 0 0 rgba(0, 0, 0, .4) inset;
    text-decoration: none;
}

@media screen and (max-width:768px) {
    .list-download__button a {
        height: 10rem;
        padding-bottom: .6rem;
        box-shadow: 0 -.6rem 0 0 rgba(0, 0, 0, .4) inset;
    }
}

.list-download__button a:before {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    background: rgba(0, 0, 0, .2);
    z-index: 1;
    transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

.list-download__button a.is-on:before {
    bottom: 0;
    top: auto;
    height: 100%;
}

.list-download__button span {
    position: relative;
    display: inline-block;
    z-index: 9;
}

.list-download__button .icon {
    position: absolute;
    top: calc(50% - 1.6rem);
    left: 2rem;
    width: 3.2rem;
    height: 3.2rem;
    fill: #fff;
    z-index: 9;
    transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

.list-faq {
    position: relative;
    margin-top: 3rem;
    padding-bottom: 2rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-faq {
        margin-top: 2rem;
        padding-top: 6rem;
    }
}

.list-faq__button {
    position: absolute;
    top: -7rem;
    right: 0;
    padding: .5rem 4rem .5rem .5rem;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .list-faq__button {
        top: 0;
        padding: .5rem 3rem .5rem .5rem;
        font-size: 2rem;
    }
}

.list-faq__button:before,
.list-faq__button:after {
    position: absolute;
    top: calc(50% - 1px);
    right: 2rem;
    width: 1.3rem;
    height: 1px;
    content: '';
    display: block;
    background: #000;
    transition: transform .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {

    .list-faq__button:before,
    .list-faq__button:after {
        width: 2.5rem;
        height: 1px;
        top: 50%;
        right: 0;
    }
}

.list-faq__button:after {
    transform: rotate(90deg);
}

.list-faq__button.is-show:before {
    transform: rotate(45deg);
}

.list-faq__button.is-show:after {
    transform: rotate(135deg);
}

.list-faq__item {
    padding: 0 1rem;
    background: #f7f8f9;
    box-shadow: 0 .3rem 0 0 #dadada;
    transition: background .2s cubic-bezier(.39, .575, .565, 1), box-shadow .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .list-faq__item {
        padding: 0 1.5rem;
        box-shadow: 0 .6rem 0 0 #dadada;
    }
}

.list-faq__item:nth-of-type(n+2) {
    margin-top: 1.3rem;
}

@media screen and (max-width:768px) {
    .list-faq__item:nth-of-type(n+2) {
        margin-top: 2.6rem;
    }
}

.list-faq__item.is-show {
    background: #eff4f5;
    box-shadow: 0 .3rem 0 0 #a5c3c9;
}

@media screen and (max-width:768px) {
    .list-faq__item.is-show {
        box-shadow: 0 .6rem 0 0 #a5c3c9;
    }
}

.list-faq__item.is-show .list-faq__q:before {
    transform: rotate(45deg);
}

.list-faq__item.is-show .list-faq__q:after {
    transform: rotate(135deg);
}

.list-faq__q {
    position: relative;
    padding: 1rem;
    color: #1b3f5c;
    font-size: 1.7rem;
    font-weight: 700;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .list-faq__q {
        padding: 2rem 6rem 2rem 1.5rem;
        font-size: 2.7rem;
        line-height: 1.5;
    }
}

.list-faq__q:before,
.list-faq__q:after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 1.3rem;
    height: 1px;
    content: '';
    display: block;
    background: #000;
    transition: transform .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {

    .list-faq__q:before,
    .list-faq__q:after {
        width: 2.5rem;
        height: 1px;
    }
}

.list-faq__q:after {
    transform: rotate(90deg);
}

.list-faq__a {
    display: none;
    padding: 2.5rem 1rem;
    border-top: 1px solid #a5c3c9;
}

@media screen and (max-width:768px) {
    .list-faq__a {
        padding: 2rem 1.5rem;
        font-size: 2.4rem;
    }
}

.list-feature-verona {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:768px) {
    .list-feature-verona {
        display: block;
    }
}

.list-feature-verona__item {
    position: relative;
    width: 32rem;
    margin-right: 2rem;
}

@media screen and (max-width:768px) {
    .list-feature-verona__item {
        width: auto;
        margin-right: 0;
    }
}

.list-feature-verona__item:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    .list-feature-verona__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-feature-verona__category {
    position: absolute;
    top: -1rem;
    left: -1rem;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #fff;
    background: #4482ac;
}

@media screen and (max-width:768px) {
    .list-feature-verona__category {
        top: -1.5rem;
        left: -1.5rem;
    }
}

.list-feature-verona__heading {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-feature-verona__heading {
        margin-top: 3rem;
        font-size: 3rem;
    }
}

.list-feature-verona__text {
    margin-top: 1rem;
    line-height: 2;
}

.list-flow {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-flow {
        display: block;
    }
}

.list-flow__item {
    width: calc(50% - 4.8rem);
    margin: 5rem 4.8rem 0 0;
}

@media screen and (max-width:768px) {
    .list-flow__item {
        width: auto;
        margin: 4rem 0 0;
    }
}

.list-flow__item:nth-of-type(2n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    .list-flow__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-flow__heading {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 4.4rem;
    padding: 0 5.4rem;
}

@media screen and (max-width:768px) {
    .list-flow__heading {
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 0 0 0 6rem;
    }
}

.list-flow__number {
    position: absolute;
    top: calc(50% - 2.2rem);
    left: 0;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    color: #1b3f5c;
    border: solid 1px #1b3f5c;
}

.list-flow__image {
    margin-top: 2rem;
}

.list-flow--column3 .list-flow__item {
    width: calc(33.333% - 3.2rem);
}

@media screen and (max-width:768px) {
    .list-flow--column3 .list-flow__item {
        width: auto;
    }
}

.list-flow--column3 .list-flow__item:nth-of-type(2n) {
    margin-right: 4.8rem;
}

@media screen and (max-width:768px) {
    .list-flow--column3 .list-flow__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.list-flow--column3 .list-flow__item:nth-of-type(3n) {
    margin-right: 0;
}

.list-form-horizontal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 5rem;
}

.list-form-horizontal__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.list-form-horizontal__item:nth-of-type(n+2) {
    margin-left: 3rem;
}

.list-form-vertical__item:nth-of-type(n+2) {
    margin-top: 1rem;
}

.list-form-zipcode {
    display: -ms-flexbox;
    display: flex;
}

.list-form-zipcode__item {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.list-form-zipcode__item:nth-of-type(1) {
    width: 9rem;
}

.list-form-zipcode__item:nth-of-type(2) {
    width: 14.4rem;
    padding-left: 2.4rem;
}

.list-form-zipcode__item:nth-of-type(2):before {
    position: absolute;
    top: 50%;
    left: .7rem;
    width: 1rem;
    height: 1px;
    content: '';
    display: block;
    background: #dcdcdc;
}

.list-guideline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.list-guideline__item {
    width: 22rem;
}

@media screen and (max-width:768px) {
    .list-guideline__item {
        width: 33.4rem;
    }
}

.list-guideline__item:nth-of-type(1) .list-guideline__icon svg {
    width: 10.6rem;
}

.list-guideline__item:nth-of-type(2) .list-guideline__icon svg {
    width: 8.9rem;
}

.list-guideline__item:nth-of-type(3) .list-guideline__icon svg {
    width: 9.4rem;
}

.list-guideline__item:nth-of-type(4) .list-guideline__icon svg {
    width: 8.9rem;
}

@media screen and (max-width:768px) {
    .list-guideline__item:nth-of-type(n+3) {
        margin-top: 4rem;
    }
}

.list-guideline__icon {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 9.3rem;
}

.list-guideline__icon svg {
    fill: #1b3f5c;
}

.list-guideline__heading {
    margin-top: 2rem;
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-guideline__heading {
        font-size: 3rem;
    }
}

.list-guideline__text {
    margin-top: 1.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-guideline__text {
        font-size: 2.4rem;
    }
}

.list-history {
    position: relative;
    width: calc(100% - 14rem);
    padding-top: .6rem;
}

@media screen and (max-width:768px) {
    .list-history {
        padding-top: 0;
    }
}

.list-history--recruit {
    width: 100%;
    margin-top: 6rem;
}

.list-history:before {
    position: absolute;
    top: -5rem;
    left: 14.1rem;
    width: 2px;
    height: calc(100% + 10rem);
    content: '';
    display: -ms-flexbox;
    display: flex;
    background: #1b3f5c;
    z-index: 9;
}

@media screen and (max-width:768px) {
    .list-history:before {
        left: 16.1rem;
    }
}

.list-history__item {
    display: -ms-flexbox;
    display: flex;
}

.list-history__item:nth-of-type(n+2) {
    margin-top: 2.5rem;
}

.list-history__month {
    position: relative;
    width: 18rem;
    padding-right: 8rem;
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: right;
}

@media screen and (max-width:768px) {
    .list-history__month {
        width: 20rem;
        font-size: 3rem;
    }
}

.list-history__month:after {
    position: absolute;
    top: 1rem;
    right: 3rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 100%;
    content: '';
    display: -ms-flexbox;
    display: flex;
    background: #1b3f5c;
}

@media screen and (max-width:768px) {
    .list-history__month:after {
        top: 1.4rem;
    }
}

.list-history__text {
    width: calc(100% - 18rem);
    padding-top: .3rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-history__text {
        width: calc(100% - 20rem);
        line-height: 1.6;
    }
}

.list-horizontal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.list-horizontal.around {
    justify-content: space-around;
}

@media screen and (max-width:768px) {
    .list-horizontal {
        display: block;
        margin-top: 6rem;
    }
}

.list-horizontal__item {
    width: calc(50% - 2rem);
    margin-right: 4rem;
}

@media screen and (max-width:768px) {
    .list-horizontal__item {
        width: auto;
        margin-right: 0;
    }
}

.list-horizontal__item:nth-of-type(2n) {
    margin-right: 0;
}

.list-horizontal__item:nth-of-type(n+3) {
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .list-horizontal__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-horizontal__item>:first-child {
    margin-top: 0;
}

.list-horizontal__heading {
    padding: .5rem;
    background: #d6d6d6;
    text-align: center;
}

.list-horizontal__heading--bg-navy {
    color: #fff;
    background: #1b3f5c;
}

.list-horizontal__heading--bg-nac {
    color: #fff;
    background: #62a4cf;
}

.list-horizontal__heading--font-large {
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-horizontal__heading--font-large {
        font-size: 3.2rem;
    }
}

.list-horizontal__large-heading {
    margin-top: 3.5rem;
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-horizontal__large-heading {
        margin-top: 4rem;
        font-size: 3.2rem;
    }
}

.list-horizontal__image {
    margin-top: 2rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-horizontal__image {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 3rem;
    }
}

.list-horizontal__text {
    margin-top: 2rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-horizontal__text {
        margin-top: 3rem;
    }
}

.list-horizontal__text--center {
    text-align: center;
}

.list-horizontal__button {
    margin-top: 2rem;
}

.list-horizontal__button--center {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
}

@media screen and (max-width:768px) {
    .list-horizontal__button {
        margin-top: 4rem;
    }
}

.list-horizontal--column3 .list-horizontal__item {
    width: calc(33.333% - 1.4rem);
    margin-right: 2.1rem;
}

@media screen and (max-width:768px) {
    .list-horizontal--column3 .list-horizontal__item {
        width: auto;
        margin-right: 0;
    }
}

.list-horizontal--column3 .list-horizontal__item:nth-of-type(2n) {
    margin-right: 2.1rem;
}

@media screen and (max-width:768px) {
    .list-horizontal--column3 .list-horizontal__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.list-horizontal--column3 .list-horizontal__item:nth-of-type(3n) {
    margin-right: 0;
}

.list-horizontal--column3 .list-horizontal__item:nth-of-type(n+3) {
    margin-top: 0;
}

@media screen and (max-width:768px) {
    .list-horizontal--column3 .list-horizontal__item:nth-of-type(n+3) {
        margin-top: 6rem;
    }
}

.list-link {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 1.4rem;
}

@media screen and (max-width:768px) {
    .list-link {
        display: block;
        font-size: 2rem;
    }
}

.list-link__item {
    width: 48rem;
    margin-right: 4rem;
    border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
    .list-link__item {
        width: 100%;
        margin-right: 0;
    }
}

.list-link__item:nth-of-type(2n) {
    margin-right: 0;
}

.list-link__item a {
    position: relative;
    display: block;
    padding: 2rem 3rem 2rem 0;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.list-link__item a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: .5rem .9rem;
    transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .list-link__item a:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        background-image: url(../../images/ja/common/arw_black.svg);
        background-size: 1rem 1.8rem;
    }
}

.list-link__item a.is-on {
    opacity: .6;
}

.list-link__item a.is-on:after {
    right: .7rem;
}

.list-media {
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .list-media {
        margin-top: 6rem;
    }
}

.list-media__item {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:768px) {
    .list-media__item {
        display: block;
    }
}

.list-media__item:nth-of-type(n+2) {
    margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
    .list-media__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-media__image {
    margin-right: 4rem;
}

@media screen and (max-width:768px) {
    .list-media__image {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }
}

.list-media__image--width-300 {
    width: 30rem;
}

@media screen and (max-width:768px) {
    .list-media__image--width-300 {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.list-media__image--width-300+.list-media__body {
    width: calc(100% - 34rem);
}

@media screen and (max-width:768px) {
    .list-media__image--width-300+.list-media__body {
        width: auto;
    }
}

@media screen and (max-width:768px) {
    .list-media__body {
        margin-top: 4rem;
    }
}

.list-media__heading {
    color: #1b3f5c;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-media__heading {
        font-size: 3rem;
    }
}

.list-notes {
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .list-notes {
        font-size: 2rem;
    }
}

.list-notes__item {
    text-indent: -1em;
    padding-left: 1em;
}

.list-notes--margin-top {
    margin-top: 1.5rem;
}

.list-notes--indent-2 {
    padding-left: 2em;
}

.list-order {
    margin: 2rem 0 0 2.5rem;
    list-style-type: decimal;
    line-height: 2;
}

.caret-circle-right {
    background-image: url('../../images/ja/common/arrow_right_gray.svg');
    display: block;
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    width: 25px;
    height: 25px;
}

.list-officer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 auto;
}

.list-officer.head {
    margin-bottom: 4rem;
    gap: 1rem;
}

.list-officer.head-detail {
    margin-bottom: 1.2rem;
}

.list-officer.head.sub {
    margin-bottom: 3rem;
}

.list-officer+.list-officer {
    margin-top: 6rem;
}

.list-officer.head.director_auditor {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto, 8rem);
    gap: 1.5rem;
}



@media screen and (max-width:768px) {
    .list-officer.head.director_auditor {
        margin: 0;
        grid-template-columns: repeat(2, 1fr);
        min-height: 8rem;
    }
}

@media screen and (max-width:768px) {
    .list-officer+.list-officer {
        margin-top: 6rem;
    }
}

.list-officer__item {
    width: 21rem;
    font-family: 'Shippori Mincho B1', serif;
}

.list-officer__item.director {
    width: 35rem;
    min-height: 8rem;
}

.list-officer__item a {
    text-decoration: none;
}

.list-officer__item_w {
    display: -ms-flexbox;
    display: flex;
    width: 21rem;
    min-height: 21rem;
    position: relative;
    cursor: pointer;
}

.list-officer__item_w img {
    display: block;
    position: absolute;
    top: 0;
    width: 21rem;
    height: 21rem;
    z-index: 10;
}

.list-officer__item_w img:hover {
    filter: brightness(90%);
    top: 0.2rem;
    left: 0.1rem;
}

.caret-circle-right_w {
    background-image: url('../../images/ja/common/arrow_right_gray.svg');
    display: block;
    position: absolute;
    left: 16.5rem;
    top: 16.5rem;
    width: 3rem;
    height: 3rem;
    z-index: 100;
}

@media screen and (max-width:768px) {
    .caret-circle-right_w {
        left: 27rem;
        top: 27rem;
        width: 26px;
        height: 26px;
    }

    .list-officer__item_w {
        min-height: 32rem;
    }

    .list-officer__item_w img {
        width: 34rem;
        height: 34rem;
    }

    .list-officer__item {
        display: block;
        width: 34rem;
    }

    .director_auditor .list-officer__item {
        display: block;
        width: 32rem;
        min-height: 10rem;
        margin-bottom: 4rem;
    }
}

@media screen and (max-width:768px) {
    .list-officer__item:nth-of-type(n+4) {
        margin-top: 0rem;
    }
}

.list-officer__item--large {
    display: block;
}

@media screen and (max-width:768px) {
    .list-officer__item--large {
        width: 34rem;
        height: 34rem;
    }
}

@media screen and (max-width:768px) {
    .list-officer__item--large:nth-of-type(2n) {
        margin-left: 0;
    }
}

@media screen and (max-width:768px) {
    .list-officer__item--large+.list-officer__item--large {
        margin-top: 5rem;
    }
}

.list-officer__item--large .list-officer__image {
    width: 100%;
}

.list-officer__item--large .list-officer__box {
    width: 100%;
    padding: 1.7rem 0 0;
}

@media screen and (max-width:768px) {
    .list-officer__item--large .list-officer__box {
        padding: 3.2rem 0 3rem;
    }
}

.list-officer__image {
    width: 18rem;
}

@media screen and (max-width:768px) {
    .list-officer__image {
        width: 100%;
    }
}

.list-officer__box {
    width: 22rem;
    padding: .6rem 0 0 0;
}

.list-officer__box.sub {
    display: block;
    position: relative;
    width: 35rem;
    min-height: 6rem;
    padding: 1rem 0 1rem 2rem;
    border-left: solid 6px #94938e;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .list-officer__box.sub {
        padding-left: 1rem;
        margin-bottom: 2rem;
    }

    .list-officer__box.sub .caret-circle-right {
        width: 18px;
        height: 18px;
    }
}

.list-officer__box.sub .list-officer__heading {
    font-size: 1.9rem;
    margin-bottom: 5px;
}

@media screen and (max-width:768px) {
    .list-officer__box.sub .list-officer__heading {
        font-size: 3.0rem;
    }
}

.list-officer__box.sub:hover {
    background-color: #eeeeee;
    top: 1px;
    left: 1px;
}

@media screen and (max-width:768px) {
    .list-officer__box {
        width: 100%;
        padding: 1rem 0 0 0;
    }
}

.list-officer_position {
    font-size: 1.5rem;
}

@media screen and (max-width:768px) {
    .list-officer_position {
        font-size: 2.2rem;
    }
}

.list-officer__heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: .3rem;
    margin-bottom: .1rem;
    letter-spacing: -1px;
}

@media screen and (max-width:768px) {
    .list-officer__heading {
        font-size: 4rem;
        margin-top: .2rem;
    }
}

.list-officer__profile {
    display: block;
    font-size: 1.5rem;
    line-height: 1.75;
    margin-top: 4rem;
}

@media screen and (max-width: 768px) {
    .list-officer__profile {
        width: 95%;
        font-size: 1.8rem;
        line-height: 1.35;
    }
}

.list-officer__profile .kana {
    letter-spacing: -2px;
}

dl.board_topic {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin-top: 2rem;
}

.board_topic dt {
    flex-basis: 25%;
    font-size: 1.6rem;
    letter-spacing: -1px;
    margin: 0.5rem 0;
}

.board_topic dd {
    flex-basis: 73%;
    margin: 0.5rem 0;
}

@media screen and (max-width: 768px) {
    dl.board_topic {
        display: block;
        width: 100%;
    }

    .board_topic dt {
        width: 100%;
        font-size: 1.6rem;
    }

    .board_topic dd {
        width: 100%;
        font-size: 1.8rem;
        padding-left: 1rem;
        margin-bottom: 1.5rem;
    }
}

dl.board_profile {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin-top: 2rem;
}

.board_profile dt {
    flex-basis: 28%;
    font-size: 1.6rem;
    letter-spacing: -1px;
    margin: 0.5rem 0;
}

.board_profile dd {
    flex-basis: 70%;
    margin: 0.5rem 0;
    padding-left: 1rem;
}

/*@media screen and (max-width: 768px) {
	.company dl {
		flex-flow: column;
	}
}*/
@media screen and (max-width: 768px) {
    dl.board_profile {
        width: 95%;
    }

    .board_profile dt {
        flex-basis: 18%;
        font-size: 2rem;
    }

    .board_profile dd {
        flex-basis: 80%;
        font-size: 2rem;
    }
}

.list-officer__profile .expertise_title {
    display: block;
    font-size: 2.0rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: solid 1px #222222;
}

.list-officer__profile .expertise_list {
    display: block;
    margin-top: 2rem;
    list-style: square outside;
    padding-left: 24px;
}

.list-officer__profile .expertise_list li {
    display: list-item;
    font-size: 1.6rem;
    margin-left: 18px;
    margin-bottom: 4px;
    padding-left: 5px;
    list-style: square;
    color: #333333;
}

@media screen and (max-width: 768px) {
    .list-officer__profile .expertise_title {
        font-size: 2.2rem;
    }

    .list-officer__profile .expertise_list li {
        font-size: 1.8rem;
    }
}

.hiragana {
    letter-spacing: -0.2px;
}

.list-officer__profile .expertise_list li .kana {
    letter-spacing: -2px;
}

.officer__detail {
    overflow: hidden;
}

.list-officer__detail {
    display: -ms-flexbox;
    display: flex;
    min-height: 42rem;
    max-width: 80rem;
    font-family: 'Shippori Mincho B1', serif;
    margin: 8rem auto 8rem;
    padding-top: 2rem;
    overflow: hidden;
}

.list-officer__detail .profile--box {
    display: block;
    width: 44rem;
}

.list-officer__detail .profile--box.nopicture {
    width: 84rem;
}

.list-officer__detail .image--box {
    display: block;
    width: 40rem;
    margin-top: 4rem;
    margin-left: 6rem;
}

.list-order {
    margin: 2rem 0 0 2.5rem;
    list-style-type: decimal;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-officer__detail .profile--box {
        width: 68%;
    }

    .list-officer__detail .profile--box.nopicture {
        width: 100%;
    }

    .list-officer__detail .profile--box.sub {
        width: 100%;
    }

    .list-officer__detail .image--box {
        display: block;
        width: 30%;
        margin-top: 4rem;
        margin-left: 0rem;
    }

    .list-order {
        margin-left: 5rem;
    }
}

.list-photo {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 6rem;
}

.list-photo__item {
    width: 48rem;
}

@media screen and (max-width:768px) {
    .list-photo__item {
        width: 33.4rem;
    }
}

.list-photo__item:nth-of-type(n+3) {
    margin-top: 2rem;
}

.list-policy {
    font-size: 1.8rem;
    font-weight: 700;
}

.list-policy__item {
    position: relative;
    padding: 0 0 1rem 3.5rem;
    border-bottom: 2px solid #1b3f5c;
}

.list-policy__item:before {
    position: absolute;
    top: .3rem;
    left: 0;
    width: 2rem;
    height: 2rem;
    content: '';
    display: block;
    background: #fff url(../../images/ja/common/icn_check_navy.svg) no-repeat center center;
    background-size: 1.7rem auto;
}

.list-policy__item:nth-of-type(n+2) {
    margin-top: 3.5rem;
}

.list-product-seminar {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:768px) {
    .list-product-seminar {
        margin-top: 2rem;
    }
}

.list-product-seminar__item {
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-product-seminar__item {
        font-size: 1.6rem;
    }
}

.list-product-seminar__item:nth-of-type(n+2) {
    margin-left: 2rem;
}

.list-product-seminar__item:before {
    width: 2rem;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    content: '';
    display: block;
}

@media screen and (max-width:768px) {
    .list-product-seminar__item:before {
        top: 50%;
        height: 1px;
    }
}

.list-product-seminar__item.is-alog {
    color: #0f6e5a;
}

.list-product-seminar__item.is-alog:before {
    background: #0f6e5a;
}

.list-product-seminar__item.is-nac,
.list-product-seminar__item.is-runsup {
    color: #4482ac;
}

.list-product-seminar__item.is-nac:before,
.list-product-seminar__item.is-runsup:before {
    background: #4482ac;
}

.list-product-seminar__item.is-training {
    color: #894622;
}

.list-product-seminar__item.is-training:before {
    background: #894622;
}

.list-product-seminar__item.is-corporate {
    color: #686868;
}

.list-product-seminar__item.is-corporate:before {
    background: #686868;
}

.list-product-seminar--vertical {
    display: block;
    margin-top: 1.5rem;
}

.list-product-seminar--vertical .list-product-seminar__item {
    margin-top: 1rem;
}

.list-product-seminar--vertical .list-product-seminar__item:nth-of-type(n+2) {
    margin-left: 0;
}

.list-reason-solutions {
    text-align: center;
}

.list-reason-solutions__item {
    padding: 5rem;
    background: #fff;
}

.list-reason-solutions__item:nth-of-type(n+2) {
    margin-top: 3rem;
}

.list-reason-solutions__number {
    color: #0f6e5a;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-reason-solutions__number {
        font-size: 2.8rem;
    }
}

.list-reason-solutions__heading {
    margin-top: 2.5rem;
    font-size: 2.6rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .list-reason-solutions__heading {
        margin-top: 2rem;
        font-size: 3.2rem;
    }
}

.list-reason-solutions__text {
    margin-top: 1.5rem;
    line-height: 2;
}

.list-reason-solutions__image {
    margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
    .list-reason-solutions__image {
        margin-top: 3rem;
    }
}

.list-reason-solutions--nac {
    margin-top: 10rem;
}

.list-reason-solutions--nac .list-reason-solutions__item {
    padding: 0;
}

.list-reason-solutions--nac .list-reason-solutions__item:nth-of-type(n+2) {
    margin-top: 10rem;
}

.list-reason-solutions--nac .list-reason-solutions__number {
    color: #4482ac;
}

.list-scene-case {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: -3rem;
    margin-left: -3rem;
}

@media screen and (max-width:768px) {
    .list-scene-case {
        margin-right: -2rem;
        margin-left: -2rem;
    }
}

.list-scene-case__item {
    width: 38rem;
    margin-right: 3rem;
    margin-left: 3rem;
}

@media screen and (max-width:768px) {
    .list-scene-case__item {
        width: 33.4rem;
        margin-right: 2rem;
        margin-left: 2rem;
        margin-bottom: 2rem;
    }

    .list-scene-case__item:last-child {
        margin-bottom: 0;
    }
}

.list-scene-case__item:nth-of-type(n+3) {
    margin-top: 6rem;
}

@media screen and (max-width:768px) {
    .list-scene-case__item:nth-of-type(n+3) {
        margin-top: 0;
    }
}

.list-scene-case__image {
    width: 100%;
    height: 22rem;
}

.list-scene-case__image img {
    object-fit: contain;
    font-family: 'object-fit: contain;';
}

.list-scene-case__text {
    margin-top: 1.2rem;
    font-size: 1.3rem;
    line-height: 1.8;
}

@media screen and (max-width:768px) {
    .list-scene-case__text {
        margin-top: 2rem;
        font-size: 2rem;
    }
}

.list-series-alog {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width:768px) {
    .list-series-alog {
        display: block;
    }
}

.list-series-alog__item {
    display: -ms-flexbox;
    display: flex;
    width: 50%;
}

@media screen and (max-width:768px) {
    .list-series-alog__item {
        width: auto;
    }
}

.list-series-alog__item:nth-of-type(n+3) {
    margin-top: 8rem;
}

@media screen and (max-width:768px) {
    .list-series-alog__item:nth-of-type(n+3) {
        margin-top: 6rem;
    }
}

@media screen and (max-width:768px) {
    .list-series-alog__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-series-alog__image {
    width: 12.8rem;
    margin-right: 3.2rem;
}

.list-series-alog__body {
    width: calc(100% - 16rem);
}

.list-series-alog__category {
    color: #0f6e5a;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-series-alog__category {
        font-size: 2.4rem;
    }
}

.list-series-alog__heading {
    margin-top: .8rem;
    color: #0f6e5a;
    font-family: Work Sans, sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-series-alog__heading {
        font-size: 4rem;
    }
}

.list-series-alog__text {
    margin-top: 1.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-series-alog__text {
        font-size: 2.2rem;
    }
}

.list-series-alog__button {
    width: 25rem;
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .list-series-alog__button {
        width: 50rem;
    }
}

.list-series-nac__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .list-series-nac__item {
        display: block;
    }
}

.list-series-nac__item:nth-of-type(n+2) {
    margin-top: 10rem;
}

.list-series-nac__logo {
    width: 31rem;
}

@media screen and (max-width:768px) {
    .list-series-nac__logo {
        width: 100%;
        max-width: 31rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.list-series-nac__body {
    margin-top: -.5rem;
    width: 69rem;
}

@media screen and (max-width:768px) {
    .list-series-nac__body {
        width: auto;
        margin-top: 3rem;
    }
}

.list-series-nac__text {
    line-height: 2;
}

.list-series-nac__button {
    margin-top: 2.5rem;
    width: 28rem;
}

@media screen and (max-width:768px) {
    .list-series-nac__button {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 4rem;
    }
}

.list-series-nac__image {
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .list-series-nac__image {
        margin-top: 5rem;
    }
}

.list-series-verona {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 6rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-series-verona {
        display: block;
        margin-top: 4rem;
    }
}

.list-series-verona__item {
    width: 50%;
}

@media screen and (max-width:768px) {
    .list-series-verona__item {
        width: auto;
    }
}

.list-series-verona__item:nth-of-type(n+3) {
    margin-top: 8rem;
}

@media screen and (max-width:768px) {
    .list-series-verona__item:nth-of-type(n+3) {
        margin-top: 6rem;
    }
}

@media screen and (max-width:768px) {
    .list-series-verona__item:nth-of-type(n+2) {
        margin-top: 6rem;
    }
}

.list-series-verona__image {
    text-align: center;
}

.list-series-verona__body {
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    .list-series-verona__body {
        margin-top: 3rem;
    }
}

.list-series-verona__category {
    color: #4482ac;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-series-verona__category {
        font-size: 2.4rem;
    }
}

.list-series-verona__heading {
    margin-top: .8rem;
    color: #4482ac;
    font-family: Work Sans, sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-series-verona__heading {
        margin-top: 1.5rem;
        font-size: 3.6rem;
    }
}

.list-series-verona__text {
    margin-top: 1.5rem;
    line-height: 2;
}

.list-series-verona__button {
    width: 100%;
    max-width: 25rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .list-series-verona__button {
        width: 100%;
        max-width: 60rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.list-step {
    display: -ms-flexbox;
    display: flex;
    color: #9fa6b1;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .list-step {
        display: block;
        font-size: 2.4rem;
    }
}

.list-step__item {
    width: 33.333%;
    height: 6rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

@media screen and (max-width:768px) {
    .list-step__item {
        width: auto;
        height: 6rem;
        background: #e8eaed;
    }
}

.list-step__item:before {
    position: absolute;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    font-size: 3rem;
    line-height: 1;
}

.list-step__item:nth-of-type(1):before {
    content: '1';
}

.list-step__item:nth-of-type(2):before {
    content: '2';
    left: 3rem;
}

@media screen and (max-width:768px) {
    .list-step__item:nth-of-type(2):before {
        left: 2rem;
    }
}

.list-step__item:nth-of-type(3):before {
    content: '3';
    left: 3rem;
}

@media screen and (max-width:768px) {
    .list-step__item:nth-of-type(3):before {
        left: 2rem;
    }
}

@media screen and (max-width:768px) {
    .list-step__item:nth-of-type(n+2) {
        margin-top: 1rem;
    }
}

.list-step--1 {
    background-image: url(../../images/ja/common/bg_step01.svg);
}

@media screen and (max-width:768px) {
    .list-step--1 {
        background: none;
    }
}

.list-step--1 .list-step__item:nth-of-type(1) {
    color: #fff;
}

@media screen and (max-width:768px) {
    .list-step--1 .list-step__item:nth-of-type(1) {
        background: #1b3f5c;
    }
}

.list-step--2 {
    background-image: url(../../images/ja/common/bg_step02.svg);
}

@media screen and (max-width:768px) {
    .list-step--2 {
        background: none;
    }
}

.list-step--2 .list-step__item:nth-of-type(2) {
    color: #fff;
}

@media screen and (max-width:768px) {
    .list-step--2 .list-step__item:nth-of-type(2) {
        background: #1b3f5c;
    }
}

.list-step--3 {
    background-image: url(../../images/ja/common/bg_step03.svg);
}

@media screen and (max-width:768px) {
    .list-step--3 {
        background: none;
    }
}

.list-step--3 .list-step__item:nth-of-type(3) {
    color: #fff;
}

@media screen and (max-width:768px) {
    .list-step--3 .list-step__item:nth-of-type(3) {
        background: #1b3f5c;
    }
}

.list-tab {
    position: relative;
    background: #fff;
}

@media screen and (max-width:768px) {
    .list-tab {
        margin-left: -3rem;
        margin-right: -3rem;
        padding: 0 3rem;
    }
}

.list-tab__item {
    display: none;
}

.list-tab__item.is-active {
    display: block;
}

.list-text-horizontal {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

@media screen and (max-width:768px) {
    .list-text-horizontal {
        display: block;
        margin-top: 2rem;
    }
}

.list-text-horizontal--font-small {
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .list-text-horizontal--font-small {
        font-size: 2.4rem;
    }
}

.list-text-horizontal__item {
    width: 50%;
    margin-top: .8rem;
    padding-left: 1rem;
}

@media screen and (max-width:768px) {
    .list-text-horizontal__item {
        width: auto;
        margin-top: 1rem;
        padding-left: 0;
    }
}

.list-topicpath {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .list-topicpath {
        margin-left: 2%;
    }
}

.list-topicpath__item {
    position: relative;
}

.list-topicpath__item:nth-of-type(n+2) {
    margin-left: .8rem;
    padding-left: 1.2rem;
}

.list-topicpath__item:nth-of-type(n+2):before {
    width: .4rem;
    height: .7rem;
    position: absolute;
    top: calc(50% - .4rem);
    left: 0;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_topicpath.svg) no-repeat center center;
    background-size: .4rem .7rem;
}

.list-topicpath__item a {
    text-decoration: none;
}

.list-v8 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width:768px) {
    .list-v8 {
        display: block;
    }
}

.list-v8--gray .list-v8__item {
    background: #f7f8f9;
}

.list-v8__item {
    width: calc(33.333% - 1.2rem);
    padding: 3rem 2rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .list-v8__item {
        width: auto;
        padding: 5rem 3rem;
    }
}

.list-v8__item:nth-of-type(n+2) {
    margin-top: 3rem;
}

.list-v8__item--full {
    width: 100%;
    padding: 5rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-v8__item--full {
        padding: 5rem 3rem;
    }
}

.list-v8__heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

@media screen and (max-width:768px) {
    .list-v8__heading {
        font-size: 3.6rem;
    }
}

.list-v8__text {
    margin-top: 2rem;
    padding: 0 1rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-v8__text {
        text-align: left;
    }
}

.list-v8__notes {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-v8__notes {
        font-size: 2rem;
        text-align: left;
    }
}

.list-v8__image {
    margin-top: 5rem;
}

.list-v8__image+* {
    margin-top: 10rem !important;
}

@media screen and (max-width:768px) {
    .list-v8__image+* {
        margin-top: 8rem !important;
    }
}

.logo-verona-result {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
}

.logo-verona-result__item {
    width: 13.4rem;
    margin-left: -.2rem;
    border: solid 1px #dcdcdc;
    vertical-align: top;
    cursor: pointer;
    opacity: .5;
}

@media screen and (max-width:768px) {
    .logo-verona-result__item {
        width: 17rem;
        margin-left: -.4rem;
    }
}

@media screen and (max-width:768px) {
    .logo-verona-result .slick-list {
        padding-bottom: 1px;
    }
}

.logo-verona-result .slick-slide {
    width: 13.8rem;
    outline: none;
    padding: 0 .2rem;
    vertical-align: top;
}

@media screen and (max-width:768px) {
    .logo-verona-result .slick-slide {
        width: 17.8rem;
        padding: 0 .4rem;
    }
}

.logo-verona-result .slick-current .logo-verona-result__item {
    opacity: 1;
    border: solid 1px #1b3f5c;
}

.map-access {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    height: 50rem;
    margin-top: 6rem;
}

.map-access iframe {
    width: 100%;
    height: 100%;
}

.map-access__loader {
    height: 100%;
}

.nav-anchor-sub {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 5rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .nav-anchor-sub {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.nav-anchor-sub__item {
    position: relative;
    width: calc(25% - .8rem);
    margin-top: 1rem;
    margin-right: 1rem;
    background: #f4f4f4;
}

@media screen and (max-width:768px) {
    .nav-anchor-sub__item {
        width: 100%;
        margin-top: 2rem;
        margin-right: 0;
    }
}

.nav-anchor-sub__item:nth-of-type(4n) {
    margin-right: 0;
}

.nav-anchor-sub__item a {
    position: relative;
    display: block;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .nav-anchor-sub__item a {
        padding: 2rem;
        text-align: left;
    }
}

.nav-anchor-sub__item a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1.5rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: .5rem .9rem;
    transform: rotate(90deg);
    transition: top .1s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .nav-anchor-sub__item a:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .8rem);
        right: 2rem;
        background-image: url(../../images/ja/common/arw_black.svg);
        background-size: 1rem 1.8rem;
    }
}

.nav-anchor-sub__item a.is-on {
    opacity: .6;
}

.nav-anchor-sub__item a.is-on:after {
    top: calc(50% - 1px);
}

.nav-anchor-sub--bg-white .nav-anchor-sub__item {
    background: #fff;
}

.nav-anchor-sub--column2 .nav-anchor-sub__item {
    width: calc(50% - .5rem);
}

@media screen and (max-width:768px) {
    .nav-anchor-sub--column2 .nav-anchor-sub__item {
        width: 100%;
    }
}

.nav-anchor-sub--column2 .nav-anchor-sub__item:nth-of-type(4n) {
    margin-right: 1rem;
}

.nav-anchor-sub--column2 .nav-anchor-sub__item:nth-of-type(2n) {
    margin-right: 0;
}

.nav-anchor-sub--column3 .nav-anchor-sub__item {
    width: calc(33.333% - .7rem);
}

@media screen and (max-width:768px) {
    .nav-anchor-sub--column3 .nav-anchor-sub__item {
        width: 100%;
    }
}

.nav-anchor-sub--column3 .nav-anchor-sub__item:nth-of-type(4n) {
    margin-right: 1rem;
}

.nav-anchor-sub--column3 .nav-anchor-sub__item:nth-of-type(3n) {
    margin-right: 0;
}

.nav-anchor {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -2rem;
    margin-bottom: 3rem;
    background: #fff;
}

.nav-anchor_case {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.nav-anchor img {
    height: 3rem;
    max-width: 16rem;
}

@media screen and (max-width:768px) {
    .nav-anchor {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        font-size: 2rem;
    }

    .nav-anchor_case {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        font-size: 2rem;
    }

    .nav-anchor img {
        height: 5rem;
        max-width: 25rem;
    }
}

.nav-anchor__item {
    position: relative;
    width: 25%;
    margin-bottom: -1px;
    border-bottom: 1px solid #dcdcdc;
}

.nav-anchor_case__item {
    position: relative;
    width: 32%;
    margin-bottom: 1rem;
    margin-right: 1.33%;
    border: 1px solid #dcdcdc;
    transition: color .3s cubic-bezier(.39, .575, .565, 1) .2s;
}

.nav-anchor_case__item:nth-of-type(3n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    .nav-anchor__item {
        width: 50%;
    }

    .nav-anchor_case__item {
        width: 49%;
        margin-right: 2%;
    }

    .nav-anchor_case__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

.nav-anchor__item:after {
    position: absolute;
    top: calc(50% - 1.5rem);
    right: 0;
    width: 1px;
    height: 3rem;
    content: '';
    display: block;
    background: #dcdcdc;
}

.nav-anchor__item:nth-of-type(4n):after {
    display: none;
}

@media screen and (max-width:768px) {
    .nav-anchor__item:nth-of-type(4n):after {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .nav-anchor__item:nth-of-type(2n):after {
        display: none;
    }
}

.nav-anchor__item a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 4.2rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}


.nav-anchor_case__item:nth-of-type(4n):after {
    display: none;
}

@media screen and (max-width:768px) {
    .nav-anchor_case__item:nth-of-type(4n):after {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .nav-anchor_case__item:nth-of-type(2n):after {
        display: none;
    }
}

.nav-anchor_case__item a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 4.2rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-anchor__item.logo a {
    height: 6rem;
}

@media screen and (max-width:768px) {
    .nav-anchor__item a {
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 6rem;
        padding: 0 2rem;
    }

    .nav-anchor_case__item a {
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 6rem;
        padding: 0 2rem;
    }

    .nav-anchor__item.logo a {
        justify-content: center;
        height: 8rem;
    }
}

.nav-anchor__item a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1.5rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: .5rem .9rem;
    transform: rotate(90deg);
    transition: top .1s cubic-bezier(.39, .575, .565, 1);
}

.nav-anchor_case__item a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1.5rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: .5rem .9rem;
    transform: rotate(0);
    transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .nav-anchor__item a:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        right: 2rem;
        background-image: url(../../images/ja/common/arw_black.svg);
        background-size: 1rem 1.8rem;
    }

    .nav-anchor_case__item a:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        right: 2rem;
        background-image: url(../../images/ja/common/arw_black.svg);
        background-size: 1rem 1.8rem;
    }
}


.nav-anchor_case__item a.is-on:before {
    left: 0;
    right: auto;
    width: 100%;
}

.nav-anchor_case__item a:before {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    content: '';
    display: block;
    background: #f5f5f5;
    z-index: -1;
    transition: width .5s cubic-bezier(.77, 0, .175, 1);
}

.nav-anchor__item a.is-on {
    opacity: .6;
}

.nav-anchor__item a.is-on:after {
    top: calc(50% - 1px);
}

.nav-anchor_case__item a.is-on:after {
    top: calc(50% - 0.4rem);
    right: 1.2rem;
}

@media screen and (max-width:768px) {
    .nav-anchor_case__item a.is-on:after {
        top: calc(50% - 0.9rem);
        right: 1.2rem;
    }
}

.nav-anchor__item--link a:after {
    transform: rotate(0);
    transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-anchor__item--link a.is-on {
    opacity: .6;
}

.nav-anchor__item--link a.is-on:after {
    top: calc(50% - .4rem);
    right: 1.2rem;
}

.nav-anchor--column2 .nav-anchor__item {
    width: 50%;
}

.nav-anchor--column2 .nav-anchor__item:nth-of-type(4n):after {
    display: block;
}

.nav-anchor--column2 .nav-anchor__item:nth-of-type(2n):after {
    display: none;
}

.nav-anchor--column3 .nav-anchor__item {
    width: 33.333%;
}

.nav-anchor--column3 .nav-anchor__item:nth-of-type(4n):after {
    display: block;
}

.nav-anchor--column3 .nav-anchor__item:nth-of-type(3n):after {
    display: none;
}

@media screen and (max-width:768px) {
    .nav-anchor--column3 .nav-anchor__item.logo {
        width: 100%;
    }
}

.nav-local {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: -2rem;
    margin-bottom: 3rem;
    background: #fff;
}

@media screen and (max-width:768px) {
    .nav-local {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
        font-size: 2rem;
    }
}

.nav-local__item {
    position: relative;
    width: 25%;
    margin-bottom: -1px;
    border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {
    .nav-local__item {
        width: 50%;
    }
}

.nav-local__item:after {
    position: absolute;
    top: calc(50% - 1.5rem);
    right: 0;
    width: 1px;
    height: 3rem;
    content: '';
    display: block;
    background: #dcdcdc;
}

.nav-local__item:nth-of-type(4n):after {
    display: none;
}

@media screen and (max-width:768px) {
    .nav-local__item:nth-of-type(4n):after {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .nav-local__item:nth-of-type(2n):after {
        display: none;
    }
}

.nav-local__item a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 4.2rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .nav-local__item a {
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 6rem;
        padding: 0 2rem;
    }
}

.nav-local__item a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1.5rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: .5rem .9rem;
    transition: right .1s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .nav-local__item a:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        right: 2rem;
        background-image: url(../../images/ja/common/arw_black.svg);
        background-size: 1rem 1.8rem;
    }
}

.nav-local__item a.is-on {
    opacity: .6;
}

.nav-local__item a.is-on:after {
    right: 1.2rem;
}

.nav-local--column3 .nav-anchor__item {
    width: 33.333%;
}

.nav-local--column3 .nav-anchor__item:nth-of-type(4n):after {
    display: block;
}

.nav-local--column3 .nav-anchor__item:nth-of-type(3n):after {
    display: none;
}

.nav-sidebar {
    margin-top: .6rem;
}

.nav-sidebar__item {
    border-bottom: 1px solid #dcdcdc;
}

.nav-sidebar__item a {
    position: relative;
    display: block;
    padding: 1rem 2.5rem 1rem .5rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-sidebar__item a:after {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .5rem);
    right: 1rem;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_navy.svg) no-repeat center center;
    background-size: contain;
    transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .nav-sidebar__item a:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        right: 1rem;
        background-image: url(../../images/ja/common/arw_navy.svg);
    }
}

.nav-sidebar__item a.is-on {
    opacity: .6;
}

.nav-sidebar__item a.is-on:after {
    right: .7rem;
}

.nav-tab {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    padding: 0 7rem;
    color: #aaa;
    font-size: 1.6rem;
    line-height: 1.3;
    text-align: center;
}

@media screen and (max-width:768px) {
    .nav-tab {
        margin-left: -3rem;
        margin-right: -3rem;
        padding: 0 1rem;
        letter-spacing: 0;
    }
}

.nav-tab:before {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    content: '';
    display: block;
    background: #0f6e5a;
}

.nav-tab__item {
    width: 100%;
    height: 6rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 2px;
    cursor: pointer;
    z-index: 9;
}

.nav-tab__item.is-active {
    padding-top: 0;
    color: #0f6e5a;
    border-left: solid 2px #0f6e5a;
    border-top: solid 2px #0f6e5a;
    border-right: solid 2px #0f6e5a;
    background: #fff;
}

@media screen and (max-width:768px) {
    .nav-tab__item--sp-text-narrow {
        letter-spacing: -.1em;
    }
}

@media screen and (max-width:768px) {
    .nav-tab--sp-height70 .nav-tab__item {
        width: 100%;
        height: 7rem;
    }
}

.nav-tab--nac:before {
    background: #4482ac;
}

.nav-tab--nac .nav-tab__item.is-active {
    color: #4482ac;
    border-left: solid 2px #4482ac;
    border-top: solid 2px #4482ac;
    border-right: solid 2px #4482ac;
}

.recaptcha-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 6rem;
}

.section-content {
    position: relative;
    padding: 10rem 0;
}

.section-content:first-child {
    padding-top: 8rem;
}

.section-content__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9;
}

@media screen and (max-width:768px) {
    .section-content__inner {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-content__inner>:first-child {
    margin-top: 0 !important;
}

.section-content__inner--narrow {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:768px) {
    .section-content__inner--narrow {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-content__inner--wide {
    width: 100%;
    max-width: 124rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width:768px) {
    .section-content__inner--wide {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-content__body {
    margin-top: 6rem;
}

.section-content__body>:first-child {
    margin-top: 0 !important;
}

.section-content__body--narrow {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
}

.section-content__body--margin-top-wide {
    margin-top: 16rem;
}

.section-content__link {
    display: block;
    width: 100%;
    margin: 4rem auto;
    text-align: center;
}

.contact_phone_text {
    color: #0c86bf;
}

.contact_phone {
    display: flex;
    width: 480px;
    margin: 1rem auto;
}

.contact_phone dt {
    display: block;
    width: 80px;
    font-size: 1.4rem;
    padding: 1.0rem;
}

.contact_phone dd {
    display: block;
    width: 400px;
    padding: 0.5rem;
    font-size: 2.0rem;
    color: #555555;
    font-weight: 700;
}

.contact_phone dd span {
    font-size: 1.2rem;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    .contact_phone_text {
        font-size: 2.2rem;
    }

    .contact_phone {
        width: 600px;
    }

    .contact_phone dt {
        width: 100px;
        font-size: 1.8rem;
        padding: 1.4rem;
    }

    .contact_phone dd {
        width: 500px;
        font-size: 2.7rem;
    }

    .contact_phone dd span {
        font-size: 1.8rem;
    }
}

.section-content__footer {
    position: relative;
    margin-top: 10rem;
    z-index: 9;
}

.section-content__heading {
    position: relative;
    padding-bottom: 2.4rem;
    color: #1b3f5c;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
}

.section-content__heading.sub {
    font-size: 2.8rem;
}

@media screen and (max-width:768px) {
    .section-content__heading {
        padding-bottom: 3rem;
        font-size: 4rem;
    }
}

.section-content__heading:after {
    width: 6rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 3rem);
    content: '';
    display: block;
    background: #1b3f5c;
}

@media screen and (max-width:768px) {
    .section-content__heading:after {
        width: 8rem;
        left: calc(50% - 4rem);
    }
}

.section-content__heading>span {
    position: relative;
    display: inline-block;
}

.section-content__heading>span>small {
    display: inline-block;
    margin-left: -3.8rem;
    margin-right: 1rem;
    padding-top: .3rem;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    vertical-align: top;
}

@media screen and (max-width:768px) {
    .section-content__heading>span>small {
        margin-left: -4.8rem;
        font-size: 2.4rem;
    }
}

.section-content__heading .sub-heading {
    display: block;
    margin: 0 0 1.5rem;
    padding-top: 0;
    color: #1b3f5c;
    font-size: 1.5rem;
}

.section-content__sub-heading {
    margin-top: 8rem;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .section-content__sub-heading {
        font-size: 3.6rem;
    }
}

.section-content__sub-heading--small {
    font-size: 1.7rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .section-content__sub-heading--small {
        font-size: 2.4rem;
    }
}

.section-content__sub-heading--margin-top-narrow {
    margin-top: 5rem;
}

.section-content__small-heading {
    margin-top: 6rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #1b3f5c;
    font-size: 2rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .section-content__small-heading {
        margin-top: 8rem;
        padding-bottom: 2rem;
        font-size: 3.2rem;
    }
}

.section-content__middle-heading {
    position: relative;
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    text-align: center;
}

@media screen and (max-width:768px) {
    .section-content__middle-heading {
        font-size: 3.4rem;
    }
}

.section-content__small-heading strong {
    color: #e60012;
}

.section-content__small-heading--margin-top-wide {
    margin-top: 10rem;
}

.section-content__small-heading--font-small {
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .section-content__small-heading--font-small {
        font-size: 2.4rem;
        line-height: 1.5;
    }
}

.section-content__check-heading {
    position: relative;
    margin-top: 6rem;
    padding: 0 0 1.4rem 3.2rem;
    border-bottom: 2px solid #1b3f5c;
    font-size: 1.7rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .section-content__check-heading {
        margin-top: 8rem;
        padding: 0 0 2rem 5rem;
        font-size: 2.8rem;
        line-height: 1.5;
    }
}

.section-content__check-heading:before {
    position: absolute;
    top: -.3rem;
    left: 0;
    width: 2rem;
    height: 2rem;
    content: '';
    display: block;
    box-sizing: border-box;
    border: solid 1px #dcdcdc;
    background: url(../../images/ja/common/icn_check_alog.svg) no-repeat center center;
    background-size: 1.6rem auto;
}

@media screen and (max-width:768px) {
    .section-content__check-heading:before {
        width: 3.6rem;
        height: 3.6rem;
        top: .4rem;
        background-size: 2.8rem auto;
    }
}

.section-content__check-heading--margin-top-wide {
    margin-top: 10rem;
}

.section-content__lead {
    margin-top: 2rem;
    line-height: 2;
    text-align: center;
}

@media screen and (max-width:768px) {
    .section-content__lead {
        margin-top: 2.4rem;
    }
}

.section-content__lead--strong {
    margin-top: 4rem;
    color: #485b6f;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.section-content__text {
    margin-top: 2rem;
    line-height: 2;
}

.section-content__text--center {
    text-align: center;
}

.section-content__text--signature {
    margin-top: 3rem;
    text-align: right;
}

.section-content__text--large {
    color: #1b3f5c;
    font-size: 2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .section-content__text--large {
        font-size: 3rem;
    }
}

.section-content__text--large a {
    color: #1b3f5c;
}

.section-content__text--margin-top-wide {
    margin-top: 4rem;
}

.section-content__text--margin-top-narrow {
    margin-top: 1rem;
}

.section-content__text--margin-top-0 {
    margin-top: 0;
}

.section-content__text--font-small {
    font-size: 1.2rem;
}

.section-content__image {
    margin-top: 5rem;
    text-align: center;
}

@media screen and (max-width:768px) {
    .section-content__image {
        margin-top: 6rem;
    }
}

.section-content__image--margin-top-narrow {
    margin-top: 3rem;
}

@media screen and (max-width:768px) {
    .section-content__image--margin-top-narrow {
        margin-top: 4rem;
    }
}

.section-content__video {
    text-align: center;
}

.section-content__video iframe {
    width: 80rem;
    height: 45rem;
}

@media screen and (max-width:768px) {
    .section-content__video iframe {
        width: 70.8rem;
        height: 39.8rem;
    }
}

.section-content__notes {
    margin-top: 6rem;
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .section-content__notes {
        margin-top: 4rem;
        font-size: 1.4rem;
    }
}

.section-content__notes--margin-top-narrow {
    margin-top: 3rem;
}

.section-content--narrow {
    width: 100%;
    max-width: 140rem;
    margin-left: auto;
    margin-right: auto;
}

.section-content--narrow:last-child {
    margin-bottom: 10rem;
}

.section-content--case:before {
    position: absolute;
    top: 53rem;
    left: calc(50% - 70rem);
    width: 140rem;
    height: 75rem;
    content: '';
    display: block;
    background: #f7f8f9;
    z-index: 0;
}

@media screen and (max-width:768px) {
    .section-content--case:before {
        top: 76rem;
        height: 85rem;
    }
}

.section-content--case2:before {
    position: absolute;
    top: 40rem;
    left: calc(50% - 70rem);
    width: 140rem;
    height: calc(100% - 40rem);
    content: '';
    display: block;
    background: #f7f8f9;
    z-index: 0;
}

@media screen and (max-width:768px) {
    .section-content--case2:before {
        top: 50rem;
        height: calc(100% - 50rem);
    }
}

.section-content--case3:before {
    position: absolute;
    top: 46rem;
    left: calc(50% - 70rem);
    width: 140rem;
    height: 60rem;
    content: '';
    display: block;
    background: #fff;
    z-index: 0;
}

@media screen and (max-width:768px) {
    .section-content--case3:before {
        top: 76rem;
        height: 85rem;
    }
}

.section-content--case4 {
    padding-bottom: 20rem;
}

.section-content--case4:before {
    position: absolute;
    top: 40rem;
    left: calc(50% - 70rem);
    width: 140rem;
    height: calc(100% - 50rem);
    content: '';
    display: block;
    background: #f7f8f9;
    z-index: 0;
}

@media screen and (max-width:768px) {
    .section-content--case4:before {
        top: 50rem;
        height: calc(100% - 60rem);
    }
}

.section-content--video:before {
    position: absolute;
    top: 40rem;
    left: calc(50% - 70rem);
    width: 140rem;
    height: calc(100% - 40rem);
    content: '';
    display: block;
    background: #e8eaed;
    z-index: 0;
}

.section-content--white {
    background: #fff;
}

.section-content--white-broken {
    padding-bottom: 0;
}

.section-content--white-broken:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 12rem);
    content: '';
    display: block;
    background: #fff;
    z-index: 0;
}

.section-content--gray {
    background: #f7f8f9;
}

.section-content--gray-broken {
    padding-bottom: 0;
}

.section-content--gray-broken:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 12rem);
    content: '';
    display: block;
    background: #f7f8f9;
    z-index: 0;
}

.section-content--dark-gray {
    background: #e8eaed;
}

.section-content--dark-gray-broken {
    padding-bottom: 0;
}

.section-content--dark-gray-broken:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 12rem);
    content: '';
    display: block;
    background: #e8eaed;
    z-index: 0;
}

@media screen and (max-width:768px) {
    .section-content--dark-gray-broken:before {
        height: calc(100% - 19rem);
    }
}

.section-content--alternate:nth-of-type(2n) {
    background: #f7f8f9;
}

.section-content--margin-top {
    margin-top: 10rem;
}

.section-history {
    padding: 5rem 0;
}

.section-history__inner {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:768px) {
    .section-history__inner {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.section-history:nth-of-type(2n) {
    background: #f7f8f9;
}

.section-history:first-child {
    margin-top: 8rem;
}

.sub-heading-article {
    margin-top: 5rem;
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .sub-heading-article {
        font-size: 3rem;
    }
}

.sub-heading-case {
    margin-top: 5rem;
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .sub-heading-case {
        margin-top: 4rem;
        font-size: 3rem;
    }
}

.summary-case {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
    .summary-case {
        display: block;
        margin-top: 4rem;
    }
}

.summary-case__image {
    width: 24rem;
}

@media screen and (max-width:768px) {
    .summary-case__image {
        width: 100%;
        max-width: 24rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.summary-case__text {
    width: calc(100% - 30rem);
    line-height: 2;
}

@media screen and (max-width:768px) {
    .summary-case__text {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        margin-top: 2rem;
    }
}

.summary-document__frame {
    border: solid 1px #1b3f5c;
    margin-bottom: 6rem;
}

.summary-document {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 3rem;
}

@media screen and (max-width:768px) {
    .summary-document__frame {
        margin-bottom: 4rem;
    }

    .summary-document {
        padding: 3rem 2rem;
    }
}

.summary-document__image {
    width: 25rem;
    margin-right: 3rem;
}

@media screen and (max-width:768px) {
    .summary-document__image {
        width: 20rem;
        margin-right: 2rem;
    }
}

.summary-document__body {
    width: calc(100% - 20rem);
}

.summary-document__heading {
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-document__heading {
        font-size: 3rem;
    }
}

.summary-document__lead {
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-document__lead {
        font-size: 2rem;
    }
}

.summary-document__sub-heading {
    margin-top: 2rem;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-document__sub-heading {
        margin-top: 2rem;
        font-size: 2.4rem;
    }
}

.summary-document__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: .5rem;
    padding-left: 2rem;
    list-style-type: disc;
}

@media screen and (max-width:768px) {
    .summary-document__list {
        padding-left: 3rem;
        font-size: 2rem;
    }
}

.summary-document__item {
    margin-top: .5rem;
    width: 33.333%;
}

@media screen and (max-width:768px) {
    .summary-document__item {
        width: 50%;
    }
}

.wp_dlRecommend_sv {
    background: #f5f5f5;
    padding: 1rem 3rem 3rem;
}

@media screen and (max-width:768px) {}

.summary-message {
    width: 47rem;
}

.summary-message__text {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 2;
}

.summary-message__name {
    margin-top: 3rem;
    font-size: 1.3rem;
    text-align: right;
}

.summary-message__name span {
    margin-left: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.summary-press {
    margin-top: 2rem;
}

.summary-press__title {
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-press__title {
        font-size: 3.6rem;
    }
}

.summary-press__title small {
    display: block;
    margin-top: .3rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .summary-press__title small {
        margin-top: 1rem;
        font-size: 3rem;
    }
}

.summary-press__lead {
    margin-top: 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .summary-press__lead {
        margin-top: 5rem;
        font-size: 3rem;
    }
}

.summary-press__text {
    margin-top: 2.5rem;
    line-height: 2;
}

.summary-press__button {
    margin-top: 3rem;
    font-size: 1.8rem;
}

@media screen and (max-width:768px) {
    .summary-press__button {
        font-size: 3rem;
    }
}

.summary-press__button a {
    color: #0068bd;
}

.summary-press__button a.is-on {
    text-decoration: none;
}

.summary-seminar {
    margin-top: 2rem;
}

@media screen and (max-width:768px) {
    .summary-seminar {
        margin-top: 2.5rem;
    }
}

.summary-seminar__company {
    color: #a0a0a0;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    .summary-seminar__company {
        font-size: 2rem;
    }
}

.summary-seminar__title {
    margin-top: 1.5rem;
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-seminar__title {
        font-size: 3.6rem;
    }
}

.summary-seminar__title small {
    display: block;
    margin-top: .3rem;
    font-size: 2rem;
}

@media screen and (max-width:768px) {
    .summary-seminar__title small {
        margin-top: 1rem;
        font-size: 3rem;
    }
}

.summary-seminar__text {
    margin-top: 1.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .summary-seminar__text {
        margin-top: 3rem;
    }
}

.summary-seminar__text h2 {
    margin-top: 1.5rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-seminar__text h2 {
        margin-top: 3rem;
    }
}

.summary-seminar__text table {
    width: 100%;
    margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
    .summary-seminar__text table {
        margin-top: 2rem;
        font-size: 2rem;
    }
}

.summary-seminar__text table th,
.summary-seminar__text table td {
    padding: 1rem 2rem;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.summary-seminar__text table th {
    width: 18rem;
    background: #f4f4f4;
}

.summary-seminar__text table th a {
    color: #0068bd;
    font-size: 1.8rem;
    font-weight: 700;
}

.summary-seminar__text table td {
    width: calc(100% - 18rem);
    line-height: 2;
}

.summary-seminar__text table td a {
    color: #0068bd;
}

.summary-seminar__text .title {
    color: #1b3f5c;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .summary-seminar__text .title {
        font-size: 2.4rem;
    }
}

.summary-seminar__text .fontbold {
    font-weight: 700;
}

.summary-seminar__text .txt_right {
    display: block;
    margin-top: 1rem;
    font-size: 1.3rem;
    text-align: right;
}

@media screen and (max-width:768px) {
    .summary-seminar__text .txt_right {
        font-size: 2rem;
        text-align: left;
    }
}

.summary-seminar__button a {
    width: 48rem;
    height: 7rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 3.5rem auto 0;
    color: #fff;
    background: #1b3f5c;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 .3rem 0 0 #0b273d;
}

@media screen and (max-width:768px) {
    .summary-seminar__button a {
        width: 60rem;
        height: 10.2rem;
        margin-top: 5rem;
        font-size: 2.6rem;
    }
}

.summary-seminar__button a:before {
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    display: block;
    background: #355792;
    z-index: 1;
    transition: height .5s cubic-bezier(.77, 0, .175, 1);
}

.summary-seminar__button a:after {
    width: 2.2rem;
    height: 2.2rem;
    position: absolute;
    top: calc(50% - 1.1rem);
    left: 2rem;
    box-sizing: border-box;
    content: '';
    display: block;
    border: 1px solid #fff;
    background: url(../../images/ja/common/icn_check_white.svg) no-repeat center center;
    z-index: 9;
}

@media screen and (max-width:768px) {
    .summary-seminar__button a:after {
        width: 3.2rem;
        height: 3.2rem;
        top: calc(50% - 1.6rem);
        left: 3rem;
        background-size: 2.2rem auto;
    }
}

.summary-seminar__button a.is-on:before {
    bottom: 0;
    top: auto;
    height: 100%;
}

.summary-seminar__button span {
    position: relative;
    display: block;
    z-index: 9;
}

.summary-seminar__alert {
    margin-top: 3.5rem;
    color: #c00;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .summary-seminar__alert {
        margin-top: 5rem;
        font-size: 3rem;
    }
}

.table-article {
    width: 100%;
    margin-top: 6rem;
}

@media screen and (max-width:768px) {
    .table-article {
        margin-top: 8rem;
        font-size: 2rem;
    }
}

.table-article th,
.table-article td {
    padding: 1rem 2rem;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    line-height: 2;
    vertical-align: middle;
}

@media screen and (max-width:768px) {

    .table-article th,
    .table-article td {
        padding: 1rem;
    }
}

.table-article th {
    width: 24rem;
    background: #f4f4f4;
}

.table-article th a {
    color: #0068bd;
    font-size: 1.8rem;
    font-weight: 700;
}

.table-article td {
    width: calc(100% - 24rem);
}

.table-article td a {
    color: #0068bd;
}

.table-case {
    width: 100%;
    margin-top: 8rem;
}

@media screen and (max-width:768px) {
    .table-case {
        font-size: 2rem;
    }
}

.table-case caption {
    margin-bottom: 3rem;
    padding-bottom: .8rem;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 2px solid #1b3f5c;
    text-align: left;
}

@media screen and (max-width:768px) {
    .table-case caption {
        padding-bottom: 2rem;
        font-size: 3.2rem;
    }
}

.table-case th,
.table-case td {
    padding: 1rem 2rem;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    line-height: 2;
}

@media screen and (max-width:768px) {

    .table-case th,
    .table-case td {
        padding: 10px;
    }
}

.table-case th {
    width: 18rem;
    background: #e8eaed;
}

.table-case td {
    width: calc(100% - 18rem);
}

.table-case td a {
    color: #0068bd;
}

.table-form--area {
    padding: 2rem;
    margin-top: 4.5rem;
    background-color: #f2f2f2;
}

.table-form {
    width: 100%;
    margin-top: 4.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {

    .table-form tbody,
    .table-form tr,
    .table-form th,
    .table-form td {
        display: block;
    }
}

@media screen and (max-width:768px) {
    .table-form tr+tr {
        margin-top: 3rem;
    }
}

.table-form th {
    width: 25rem;
    padding: 1.5rem 1.5rem 1.5rem 0;
    font-size: 1.6rem;
    font-weight: 700;
    vertical-align: top;
}

@media screen and (max-width:768px) {
    .table-form th {
        width: auto;
        padding: 0;
        font-size: 2.7rem;
    }
}

.table-form th span {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 5rem;
}

@media screen and (max-width:768px) {
    .table-form th span {
        min-height: 0;
    }
}

/*
.table-form th.is-required span:after {
	content: '※';
	margin-left: 5px;
	color: #e60000;
	font-size: 1.2rem;
}*/
.table-form th span:before {
    content: '任意';
    display: inline-block;
    padding: 0.1rem 0.7rem;
    background-color: #818d93;
    margin-right: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 4px;
}

.table-form th.is-required span:before {
    content: '必須';
    display: inline-block;
    padding: 0.1rem 0.7rem;
    background-color: #b20000;
    margin-right: 10px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 4px;
}

.table-form td {
    width: calc(100% - 25rem);
    padding: 1.5rem 0;
    vertical-align: top;
}

@media screen and (max-width:768px) {
    .table-form td {
        width: auto;
        padding: 0;
        font-size: 3.2rem;
    }
}

.table-form td input[type=text] {
    width: 100%;
    height: 5rem;
    padding: 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width:768px) {
    .table-form td input[type=text] {
        height: 7rem;
        font-size: 3.2rem;
    }
}

.table-form td select {
    width: 100%;
    height: 5rem;
    padding: 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width:768px) {
    .table-form td select {
        height: 7rem;
        font-size: 3.2rem;
    }
}

.table-form td textarea {
    width: 100%;
    height: 24rem;
    padding: 1rem;
    border: 1px solid #dcdcdc;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@media screen and (max-width:768px) {
    .table-form td textarea {
        font-size: 3.2rem;
    }
}

.table-form td .select-form {
    position: relative;
}

.table-form td .select-form:after {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: .8rem .5rem 0;
    border-color: #1b2024 transparent transparent;
    position: absolute;
    top: calc(50% - .4rem);
    right: 1.5rem;
    content: '';
    display: block;
}

@media screen and (max-width:768px) {
    .table-form td .select-form:after {
        border-style: solid;
        border-width: 1.2rem .8rem 0;
        border-color: #1b2024 transparent transparent;
        top: calc(50% - .2rem);
    }
}

.table-form__confirm {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    min-height: 5rem;
}

@media screen and (max-width:768px) {
    .table-form__confirm {
        min-height: 7rem;
    }
}

.table-horizontal {
    width: 100%;
    margin-top: 6rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .table-horizontal {
        font-size: 2rem;
    }
}

.table-horizontal th,
.table-horizontal td {
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

.table-horizontal th table,
.table-horizontal td table {
    width: 100%;
}

.table-horizontal th td,
.table-horizontal th th,
.table-horizontal td td,
.table-horizontal td th {
    border-top: none;
    border-bottom: none;
    padding: 0;
}

.table-horizontal th {
    width: 30rem;
    padding: 2rem;
}

@media screen and (max-width:768px) {
    .table-horizontal th {
        padding: 1rem;
    }
}

.table-horizontal td {
    width: calc(100% - 30rem);
    padding: 2rem 0;
}

@media screen and (max-width:768px) {
    .table-horizontal td {
        padding: 1rem 0;
    }
}

.table-horizontal td a {
    color: #0068bd;
}

.table-patent {
    width: 100%;
    max-width: 100rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

.table-patent th,
.table-patent td {
    border-bottom: 1px solid #dcdcdc;
}

.table-patent th {
    width: 20rem;
    padding: 2rem;
}

@media screen and (max-width:768px) {
    .table-patent th {
        padding: 1rem;
    }
}

.table-patent td {
    width: calc(100% - 20rem);
    padding: 2rem 0;
}

@media screen and (max-width:768px) {
    .table-patent td {
        padding: 1rem 0;
    }
}

.table-patent td a {
    color: #0068bd;
    font-weight: 700;
    text-decoration: none;
}

.table-patent td a.is-on {
    text-decoration: underline;
}

.table-patent tr:first-child th,
.table-patent tr:first-child td {
    padding-top: 0;
    border-bottom: 2px solid #1b3f5c;
}

.table-patent tr:first-child td {
    color: #1b3f5c;
    font-weight: 700;
}

.table-patent+.table-patent {
    margin-top: 5rem;
}

.table-recruitment {
    width: 100%;
    margin-top: 4rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .table-recruitment {
        font-size: 2rem;
    }
}

.table-recruitment th,
.table-recruitment td {
    border-bottom: 1px solid #dcdcdc;
}

.table-recruitment th {
    width: 20rem;
    padding: 2rem;
}

@media screen and (max-width:768px) {
    .table-recruitment th {
        padding: 1rem;
    }
}

.table-recruitment td {
    width: calc(100% - 20rem);
    padding: 2rem 0;
}

@media screen and (max-width:768px) {
    .table-recruitment td {
        padding: 1rem 0;
    }
}

.table-recruitment td strong {
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .table-recruitment td strong {
        font-size: 2.7rem;
    }
}

.table-recruitment tr:first-child th,
.table-recruitment tr:first-child td {
    padding-top: 0;
}

.table-recruitment tr:last-child th,
.table-recruitment tr:last-child td {
    padding-bottom: 0;
    border-bottom: none;
}

.table-seminar {
    width: 100%;
    margin-top: 8rem;
}

@media screen and (max-width:768px) {
    .table-seminar {
        font-size: 2rem;
    }
}

.table-seminar caption {
    margin-bottom: 3rem;
    padding-bottom: .8rem;
    font-size: 2rem;
    font-weight: 700;
    border-bottom: 2px solid #1b3f5c;
    text-align: left;
}

.table-seminar th,
.table-seminar td {
    padding: 1rem 2rem;
    border-top: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
}

@media screen and (max-width:768px) {

    .table-seminar th,
    .table-seminar td {
        padding: 1rem;
    }
}

.table-seminar th {
    width: 18rem;
    background: #f4f4f4;
}

.table-seminar th a {
    color: #0068bd;
    font-size: 1.8rem;
    font-weight: 700;
}

.table-seminar td {
    width: calc(100% - 18rem);
    line-height: 2;
}

.table-seminar td a {
    color: #0068bd;
}

.table-seminar--product th {
    width: 22rem;
}

.table-seminar--product td {
    width: calc(100% - 22rem);
}

.table-vertical {
    table-layout: fixed;
    width: 100%;
    margin-top: 3rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .table-vertical {
        font-size: 2rem;
    }
}

.table-vertical th,
.table-vertical td {
    padding: .6rem 1rem;
    border: 1px solid #dcdcdc;
    line-height: 2;
    vertical-align: middle;
}

@media screen and (max-width:768px) {

    .table-vertical th,
    .table-vertical td {
        padding: 1rem;
    }
}

.table-vertical th {
    background: #f4f4f4;
    text-align: center;
}

.table-vertical th+th {
    border-left: 1px solid #dcdcdc;
}

.table-vertical th a {
    color: #0068bd;
    font-size: 1.8rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .table-vertical th a {
        font-size: 2rem;
    }
}

.table-vertical td+td {
    border-left: 1px solid #dcdcdc;
}

.table-vertical td a {
    color: #0068bd;
}

.table-vertical--font-small {
    font-size: 1.6rem;
}

@media screen and (max-width:768px) {
    .table-vertical--font-small {
        font-size: 1.6rem;
    }
}

.table-vertical--margin-top-narrow {
    margin-top: 1.5rem;
}

.text-article,
.article-press__body p {
    overflow: hidden;
    margin-top: 1.5rem;
    line-height: 2;
}

.text-case {
    margin-top: 1.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .text-case {
        margin-top: 2rem;
    }
}

.text-form {
    line-height: 2;
    text-align: center;
}

.text-form:nth-of-type(n+2) {
    margin-top: 5rem;
}

@media screen and (max-width:768px) {
    .text-form:nth-of-type(n+2) {
        margin-top: 2rem;
    }
}

.text-form span {
    color: #e60000;
}

.text-introduction {
    margin-top: 10rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    text-align: center;
}

@media screen and (max-width:768px) {
    .text-introduction {
        width: 100%;
        max-width: 70.8rem;
        margin-left: auto;
        margin-right: auto;
        font-size: 2.7rem;
    }
}

.message-alignRight {
    text-align: right;
    margin-top: 4rem;
    margin-right: 8rem;
}

.text-message {
    line-height: 2;
    font-size: 1.6rem;
    font-family: 'Shippori Mincho B1', serif;
    margin-top: 1rem;
    padding-left: 8rem;
}

@media screen and (max-width:768px) {
    .text-message {
        font-size: 1.8rem;
        padding: 0 1rem;
    }
}

.text-message--signature {
    font-size: 1.3rem;
    text-align: right;
    margin-right: 8rem;
}

.text-message--signature span {
    margin-left: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    .text-message--signature span {
        font-size: 3rem;
    }
}

@media screen and (max-width:768px) {
    .message-alignRight {
        margin-right: 1rem;
    }

    .text-message--signature {
        font-size: 2rem;
        margin-right: 1rem;
    }
}

.text-motto {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1;
    text-align: center;
}

.text-notes {
    margin-top: 6rem;
    padding-left: 1em;
    text-indent: -1em;
    line-height: 2;
}

.text-notes a {
    color: #0068bd;
}

.text-notes--font-small {
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .text-notes--font-small {
        font-size: 1.6rem;
    }
}

.text-notes--margin-top-narrow {
    margin-top: 1rem;
}

.text-philosophy {
    font-family: Work Sans, sans-serif;
    font-size: 5rem;
    letter-spacing: .1em;
    line-height: 1;
    text-align: center;
}

.text-statement {
    margin-top: 8rem;
    line-height: 1;
    text-align: center;
}

.text-statement.message {
    margin-top: 4rem;
    margin-bottom: 8rem;
}

.text-statement__en {
    display: block;
    font-family: Work Sans, sans-serif;
    font-size: 5rem;
    letter-spacing: .1em;
}

.text-statement__jp {
    display: block;
    margin-top: 2rem;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: .1em;
}

@media screen and (max-width:768px) {
    .text-statement__jp {
        font-size: 2.2rem;
    }
}

.title-case {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .title-case {
        font-size: 4rem;
    }
}

.title-content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 22rem;
    padding-bottom: 1rem;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-color: #1b2024;
    line-height: 1;
    text-align: center;
}

.title-content__ja {
    display: block;
    font-size: 1.8rem;
    line-height: 1.5;
}

.title-content__en {
    display: block;
    margin-top: 1.6rem;
    font-family: Work Sans, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: .2em;
}

.title-content__logo {
    display: block;
    width: auto;
}

.title-content__logo.logo_type-wide {
    margin-top: 1.6rem;
    height: 80px;
}

.title-content__logo.logo_type-nomal {
    margin-top: 1.6rem;
    height: 50px;
}

.title-content__logo.logo_type-thin {
    margin-top: 1.6rem;
    height: 40px;
}

.title-content__logo.logo_type-verythin {
    margin-top: 1.6rem;
    height: 30px;
}

@media screen and (max-width:768px) {
    .title-content__logo.logo_type-wide {
        margin-top: 1.6rem;
        height: 50px;
    }

    .title-content__logo.logo_type-nomal {
        margin-top: 1.6rem;
        height: 30px;
    }

    .title-content__logo.logo_type-thin {
        margin-top: 1.6rem;
        height: 30px;
    }

    .title-content__logo.logo_type-verythin {
        margin-top: 1.6rem;
        height: 20px;
    }
}

.title-content--alog {
    background-image: url(../../images/ja/solutions/bg/bg_title_content01.jpg);
}

.title-content--nac {
    background-image: url(../../images/ja/solutions/bg/bg_title_content02.png);
}

.title-content--ubiquiti {
    background-image: url(../../images/ja/solutions/bg/bg_title_content03.jpg);
}

.title-content--corptop {
    background-image: url(../../images/ja/corporate/bg/bg_title_content_top.webp);
}

.title-content--vision {
    background-image: url(../../images/ja/corporate/bg/bg_title_content01.jpg);
}

.title-content--message {
    background-image: url(../../images/ja/corporate/bg/bg_title_content02.jpg);
}

.title-content--profile {
    background-image: url(../../images/ja/corporate/bg/bg_title_content03.jpg);
}

.title-content--history {
    background-image: url(../../images/ja/corporate/bg/bg_title_content04.jpg);
}

.title-content--global {
    background-image: url(../../images/ja/corporate/bg/bg_title_content05.jpg);
}

.title-content--innovation {
    background-image: url(../../images/ja/corporate/bg/bg_title_content06.jpg);
}

.title-content--access {
    background-image: url(../../images/ja/corporate/bg/bg_title_content07.jpg);
}

.title-content--officer {
    background-image: url(../../images/ja/corporate/bg/bg_title_content08.jpg)
}

.title-content--case {
    background-image: url(../../images/ja/solutions/bg/bg_title_content01.jpg);
}

.title-content--case-detail {
    height: 18rem;
    color: #1b3f5c;
    background: #fff;
}

.title-content--seminar {
    background-image: url(../../images/ja/seminar/bg_title_content01.jpg);
}

.title-content--press {
    background-image: url(../../images/ja/news/bg_title_content01.jpg);
}

.title-content--doc-download {
    background-image: url(../../images/ja/documents/bg/bg_title_content01.jpg);
}

.title-content--recruit {
    background-image: url(../../images/ja/recruitment/bg_title_content01.jpg);
}

.title-content--recruitment {
    background-image: url(../../images/ja/recruitment/bg_title_content01.jpg);
}

.title-content--siteinfo {
    background-image: url(../../images/ja/siteinfo/bg/bg_title_content01.jpg);
}

.title-content--contact {
    background-image: url(../../images/ja/form/bg_title_content_form.jpg);
}

.title-sub-case {
    margin-top: 8rem;
    color: #1b3f5c;
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
}

@media screen and (max-width:768px) {
    .title-sub-case {
        font-size: 3.2rem;
    }
}

.group-company-information__heading {
    font-size: 1.8rem;
}

.group-company-information__heading .sub {
    margin-top: 1.6rem;
}

@media screen and (max-width:768px) {
    .group-company-information__heading {
        font-size: 2.0rem;
    }
}

.group-company-information__text {
    margin-top: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.group-company-information__text a {
    display: block;
    color: #ffffff;
    text-decoration: none;
}

.group-company-information__text span {
    font-size: 1.4rem;
    line-height: 1.0;
}

@media screen and (max-width:768px) {
    .group-company-information__text {
        font-size: 1.6rem;
    }
}

.group-sitemap {
    line-height: 1.2;
}

@media screen and (max-width:768px) {
    .group-sitemap {
        display: none;
    }
}

.group-sitemap__sub-heading {
    position: relative;
    margin-top: 2rem;
    padding-left: 1.1rem;
    border-left: .4rem solid #fff;
}

.group-sitemap__body+.group-sitemap__heading {
    margin-top: 4.5rem;
}

.group-sitemap__heading.ir {
    margin-bottom: 4.5rem;
}

.group-sitemap__body+.group-sitemap__sub-heading {
    margin-top: 4.5rem;
}

.group-sitemap a {
    color: #fff;
    text-decoration: none;
}

.list-official-sns {
    display: -ms-flexbox;
    display: flex;
    font-size: 3.2rem;
}

@media screen and (max-width:768px) {
    .list-official-sns {
        font-size: 6.4rem;
    }
}

.list-official-sns__item:nth-of-type(n+2) {
    margin-left: 2rem;
}

@media screen and (max-width:768px) {
    .list-official-sns__item:nth-of-type(n+2) {
        margin-left: 3rem;
    }
}

.list-official-sns__item a {
    color: #fff;
    text-decoration: none;
}

.list-relation-menu {
    margin-top: 4.5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    .list-relation-menu {
        margin-top: 7rem;
        font-size: 2.6rem;
    }
}

.list-relation-menu__item a {
    color: #fff;
    text-decoration: none;
}

.list-sitemap-child {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -1rem;
    padding-left: 3rem;
    font-size: 1.1rem;
    line-height: 1;
}

.list-sitemap-child__item {
    margin-top: 1.5rem;
    margin-right: 1rem;
    padding-right: 1rem;
    border-right: solid 1px #fff;
}

.list-sitemap-child__item a {
    color: #fff;
    text-decoration: none;
}

.list-sitemap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 10rem 0 3rem;
    font-size: 1.3rem;
    line-height: 1;
}

.list-sitemap__item {
    width: 50%;
    margin-top: 1.5rem;
    line-height: 1.5;
}

.list-sitemap__item a {
    color: #fff;
    text-decoration: none;
}

.list-sitemap-child+.list-sitemap {
    margin-top: 1rem;
}

.list-sub-menu {
    display: -ms-flexbox;
    display: flex;
    font-size: 1.3rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    .list-sub-menu {
        display: block;
        font-size: 2.0rem;
    }
}

@media screen and (max-width:768px) {
    .list-sub-menu__item {
        border-bottom: 1px solid #585858;
    }
}

.list-sub-menu__item:nth-of-type(n+2) {
    margin-left: 1.2rem;
    padding-left: 1.2rem;
    border-left: solid 1px #fff;
}

@media screen and (max-width:768px) {
    .list-sub-menu__item:nth-of-type(n+2) {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

.list-sub-menu__item a {
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width:768px) {
    .list-sub-menu__item a {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        height: 10rem;
    }

    .list-sub-menu__item a:after {
        width: 1rem;
        height: 1.8rem;
        position: absolute;
        top: calc(50% - .9rem);
        right: 1rem;
        content: '';
        display: block;
        background: url(../../images/ja/common/arw_white.svg) no-repeat center center;
        background-size: contain;
    }
}

.text-copyright-contact {
    display: block;
    width: 100%;
    text-align: center;
    margin: 1rem 0;
    margin-left: 0;
}

.text-copyright {
    font-family: Work Sans, sans-serif;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: .1em;
    margin-left: 1rem;
}

@media screen and (max-width:768px) {
    .text-copyright {
        margin-top: 6rem;
        font-size: 2.4rem;
        text-align: center;
    }
}

.button-hamburger {
    display: none;
}

@media screen and (max-width:1024px) {
    .button-hamburger {
        width: 5rem;
        height: 5rem;
        position: relative;
        display: block;
        background: #1b3f5c;
        z-index: 999;
    }

    .button-hamburger__line {
        position: absolute;
        top: 50%;
        left: calc(50% - 1rem);
        width: 2rem;
        height: 1px;
        background: #fff;
        transition: top .2s cubic-bezier(.39, .575, .565, 1) .2s, transform .2s cubic-bezier(.39, .575, .565, 1), opacity .2s cubic-bezier(.39, .575, .565, 1) .2s;
    }

    .button-hamburger__line:nth-of-type(1) {
        top: calc(50% - 0.5rem);
    }

    .button-hamburger__line:nth-of-type(3) {
        top: calc(50% + 0.5rem);
    }

    .is-show-nav .button-hamburger__line {
        transition: top .2s cubic-bezier(.39, .575, .565, 1), transform .2s cubic-bezier(.39, .575, .565, 1) .2s, opacity .2s cubic-bezier(.39, .575, .565, 1);
    }

    .is-show-nav .button-hamburger__line:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    .is-show-nav .button-hamburger__line:nth-of-type(2) {
        opacity: 0;
    }

    .is-show-nav .button-hamburger__line:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg);
    }

    .button-hamburger__text {
        position: absolute;
        bottom: 0.125rem;
        left: calc(50% - 1.25rem);
        font-size: 0.8rem;
        text-align: center;
        color: #ffffff;
        margin: 0.25rem auto 0;
    }
}

@media screen and (max-width:768px) {
    .button-hamburger {
        width: 10rem;
        height: 10rem;
        position: relative;
        display: block;
        background: #1b3f5c;
        z-index: 999;
    }

    .button-hamburger__line {
        position: absolute;
        top: 50%;
        left: calc(50% - 2rem);
        width: 4rem;
        height: 1px;
        background: #fff;
        transition: top .2s cubic-bezier(.39, .575, .565, 1) .2s, transform .2s cubic-bezier(.39, .575, .565, 1), opacity .2s cubic-bezier(.39, .575, .565, 1) .2s;
    }

    .button-hamburger__line:nth-of-type(1) {
        top: calc(50% - 1rem);
    }

    .button-hamburger__line:nth-of-type(3) {
        top: calc(50% + 1rem);
    }

    .is-show-nav .button-hamburger__line {
        transition: top .2s cubic-bezier(.39, .575, .565, 1), transform .2s cubic-bezier(.39, .575, .565, 1) .2s, opacity .2s cubic-bezier(.39, .575, .565, 1);
    }

    .is-show-nav .button-hamburger__line:nth-of-type(1) {
        top: 50%;
        transform: rotate(45deg);
    }

    .is-show-nav .button-hamburger__line:nth-of-type(2) {
        opacity: 0;
    }

    .is-show-nav .button-hamburger__line:nth-of-type(3) {
        top: 50%;
        transform: rotate(-45deg);
    }

    .button-hamburger__text {
        position: absolute;
        bottom: 0.25rem;
        left: calc(50% - 2.5rem);
        font-size: 1.6rem;
        text-align: center;
        color: #ffffff;
        margin: 0.5rem auto 0;
    }
}


.list-conversion {
    display: -ms-flexbox;
    display: flex;
    margin-left: 1rem;
}

@media screen and (max-width:768px) {
    .list-conversion {
        margin: 3rem 0 0;
    }
}

.list-conversion__item:nth-of-type(n+2) {
    margin-left: 1rem;
}

@media screen and (max-width:768px) {
    .list-conversion__item:nth-of-type(n+2) {
        margin-left: 2rem;
    }
}

.list-conversion__item a {
    width: 20rem;
    height: 5rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 2rem;
    color: #fff;
    border-radius: .8rem;
    background: linear-gradient(to right, #183260 0, #355792 100%);
    text-decoration: none;
    transition: opacity .4s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .list-conversion__item a {
        width: 34.4rem;
        height: 10rem;
        padding-left: 4rem;
        border-radius: 1.6rem;
    }
}

.list-conversion__item a.orange {
    background: linear-gradient(to right, #1f94e6 0, #09578d 100%);
}

.list-conversion__item a.is-on {
    opacity: .6;
}

.list-conversion__item a .icon {
    position: absolute;
    top: 50%;
    left: 1.5rem;
    fill: #fff;
    z-index: 9;
    transition: fill .3s cubic-bezier(.39, .575, .565, 1) .1s;
}

@media screen and (max-width:768px) {
    .list-conversion__item a .icon {
        left: 3rem;
    }
}

.list-conversion__item a .icon--download {
    top: calc(50% - .9rem);
    width: 1.8rem;
    height: 1.8rem;
}

@media screen and (max-width:768px) {
    .list-conversion__item a .icon--download {
        top: calc(50% - 1.8rem);
        width: 3.6rem;
        height: 3.6rem;
    }
}

.list-conversion__item a .icon--contact {
    top: calc(50% - .7rem);
    width: 2rem;
    height: 1.3rem;
}

@media screen and (max-width:768px) {
    .list-conversion__item a .icon--contact {
        top: calc(50% - 1.4rem);
        width: 4rem;
        height: 2.6rem;
    }
}

.list-dropdown {
    margin-top: 1.2rem;
    padding-left: 4rem;
    column-count: 2;
}

.list-dropdown2nd {
    width: 100%;
}

@media screen and (max-width:768px) {
    .list-dropdown {
        padding-left: 8rem;
        column-count: 1;
    }

    .list-dropdown2nd {
        padding-left: 4rem;
        margin-top: 2rem;
    }
}

.list-dropdown__item:nth-of-type(n+2) {
    margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
    .list-dropdown__item:nth-of-type(n+2) {
        margin-top: 3rem;
    }
}

.list-dropdown__item a {
    position: relative;
    text-decoration: none;
}

.list-dropdown__item a:after {
    width: 0;
    height: 1px;
    position: absolute;
    top: calc(50% + 1.4rem);
    right: 0;
    content: '';
    display: block;
    background: #000;
    transition: width .4s cubic-bezier(.77, 0, .175, 1);
}

@media screen and (max-width:768px) {
    .list-dropdown__item a:after {
        top: calc(50% + 2.4rem);
    }

    .item2line {
        line-height: 1.2;
    }

    .item2line a:after {
        top: calc(110%);
    }

    .item2line.subcontents {
        padding-left: 2rem;
    }
}

.list-dropdown__item a.is-on:after {
    left: 0;
    right: auto;
    width: 100%;
}

.list-dropdown__child {
    margin-top: 1.5rem;
    padding-bottom: .5rem;
}

@media screen and (max-width:768px) {
    .list-dropdown__child {
        margin-top: 3rem;
        padding-bottom: 1rem;
    }
}

.list-dropdown__child .list-dropdown__item {
    position: relative;
    padding-left: 2rem;
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .list-dropdown__child .list-dropdown__item {
        padding-left: 3.6rem;
        font-size: 2.4rem;
    }
}

.list-dropdown__child .list-dropdown__item:before {
    position: absolute;
    top: 50%;
    left: .8rem;
    width: .4rem;
    height: 1px;
    content: '';
    display: block;
    background: #000;
}

@media screen and (max-width:768px) {
    .list-dropdown__child .list-dropdown__item:before {
        width: 1rem;
    }
}

.list-dropdown__child .list-dropdown__item a:after {
    top: calc(50% + 1.2rem);
}

@media screen and (max-width:768px) {
    .list-dropdown__child .list-dropdown__item a:after {
        top: calc(50% + 2rem);
    }
}

@media screen and (max-width:768px) {
    .list-dropdown {
        padding-left: 4rem;
        line-height: 1.35;
    }

    span.list-dropdown__item2nd {
        font-size: 2.0rem;
    }
}

.list-menu-child {
    position: fixed;
    top: 7rem;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 3rem;
    background: #1b2024;
}

@media screen and (max-width:1400px) {
    .list-menu-child {
        font-size: 1.3rem;
    }
}

@media screen and (max-width:768px) {
    .list-menu-child {
        display: none;
    }
}

.list-menu-child a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 5.0rem;
    color: #fff;
    text-decoration: none;
}

.list-menu-child a:after {
    width: 0;
    height: .4rem;
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    display: block;
    background: #23ac38;
    transition: width .4s cubic-bezier(.77, 0, .175, 1);
}

.list-menu-child a.is-on:after {
    left: 0;
    right: auto;
    width: 100%;
}

.list-menu-child__heading {
    font-weight: 700;
}

.list-menu-child__inner {
    display: -ms-flexbox;
    display: flex;
}

.list-menu-child__item {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 3rem;
}

.list-menu-child__item--left-spacer {
    margin-left: 6rem;
}

.list-menu-child__dropdown {
    position: absolute;
    top: 4.4rem;
    left: calc(50% - 12rem);
    width: 24rem;
    background: #4482ac;
    font-size: 1.3rem;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.list-menu-child__dropdown.is-show {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width:1366px) {
    .list-menu-child__dropdown {
        font-size: 1.1rem;
    }
}

.list-menu-child__dropdown .list-menu-child__item {
    margin-left: 0;
}

.list-menu-child__dropdown a {
    -ms-flex-pack: center;
    justify-content: center;
    transition: background .2s cubic-bezier(.39, .575, .565, 1);
}

.list-menu-child__dropdown a:after {
    display: none;
}

.list-menu-child__dropdown a.is-on {
    background: #62a4cf;
}

.list-menu-child .is-current a:after {
    width: 100%;
}

.list-menu-child--alog a:after {
    background: #0f6e5a;
}

.list-menu-child--nac a:after {
    background: #4482ac;
}

.list-menu {
    display: -ms-flexbox;
    display: flex;
}

.list-menu__item {
    font-size: 100%;
}

@media screen and (min-width:768px) and (max-width:1280px) {
    .list-menu__item {
        font-size: 100%;
    }
}

@media screen and (max-width:768px) {
    .list-menu {
        display: block;
    }
}

.list-menu__item {
    position: relative;
    padding-right: 1rem;
}

@media screen and (max-width:768px) {
    .list-menu__item {
        border-bottom: 1px solid #dcdcdc;
        padding-left: 1.5rem;
    }
}

.list-menu__item:nth-of-type(n+2) {
    padding-left: 1.5rem;
}

@media screen and (max-width:768px) {
    .list-menu__item:nth-of-type(n+2) {
        margin-left: 0;
    }
}

.list-menu__item>a,
.list-menu__item>span {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 7rem;
    color: #000;
    text-decoration: none;
    cursor: pointer;
    z-index: 9;
}

@media screen and (max-width:768px) {

    .list-menu__item>a,
    .list-menu__item>span {
        display: block;
        height: auto;
        padding: 2.4rem 0;
    }
}

.list-menu__item>a:after,
.list-menu__item>span:after {
    width: 0;
    height: 2px;
    position: absolute;
    top: calc(50% + 1.5rem);
    right: 0;
    content: '';
    display: block;
    background: #000;
    transition: width .4s cubic-bezier(.77, 0, .175, 1);
}

@media screen and (max-width:768px) {

    .list-menu__item>a:after,
    .list-menu__item>span:after {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        right: 1rem;
        background: url(../../images/ja/common/arw_black.svg) no-repeat center center;
        background-size: contain;
        transition: right .2s cubic-bezier(.39, .575, .565, 1);
    }
}

.list-menu__item>a.is-on:after,
.list-menu__item>span.is-on:after {
    left: 0;
    right: auto;
    width: 100%;
}

@media screen and (max-width:768px) {

    .list-menu__item>a.is-on:after,
    .list-menu__item>span.is-on:after {
        left: auto;
        right: 0;
        width: 1rem;
    }
}

@media screen and (max-width:768px) {
    .list-menu__item>span:after {
        transform: rotate(90deg);
        transition: top .2s cubic-bezier(.39, .575, .565, 1);
    }
}

@media screen and (max-width:768px) {
    .list-menu__item>span.is-on:after {
        top: calc(50% - .3rem);
        right: 1rem;
    }
}

.list-menu__item.is-current>a:after,
.list-menu__item.is-current>span:after {
    left: 0;
    right: auto;
    width: 100%;
}

@media screen and (max-width:768px) {

    .list-menu__item.is-current>a:after,
    .list-menu__item.is-current>span:after {
        left: auto;
        right: 1rem;
        width: 1rem;
    }
}

.logo-amiya {
    width: 15rem;
    padding-left: 3rem;
}

@media screen and (max-width:768px) {
    .logo-amiya {
        width: 18rem;
    }
}

/* ソリューションメニュー */
.nav-dropdown {
    position: fixed;
    top: 7rem;
    left: 0;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 0;
    padding: 0;
    background: #fff;
    border-top: 1px solid #dcdcdc;
    z-index: 9;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

.nav-dropdown_area {
    display: -ms-flexbox;
    display: flex;
    width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width:1024px) {
    .nav-dropdown {
        position: static;
        display: none;
        width: 90%;
        height: auto;
        top: 0.5rem;
        padding: 0 0 2rem;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-dropdown_area {
        display: block;
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width:768px) {
    .nav-dropdown {
        position: static;
        display: none;
        width: 90%;
        height: auto;
        top: 1rem;
        padding: 0 0 4rem;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-dropdown_area {
        display: block;
        width: 100%;
        margin: 0 auto;
    }
}

.nav-dropdown_dts {
    width: 38%;
}

.nav-dropdown_nws {
    width: 60%;
    margin-left: 2%;
}

.dts-solution,
.nws-solution {
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width:1024px) {
    .nav-dropdown_dts {
        width: 100%;
    }

    .nav-dropdown_nws {
        width: 100%;
        margin-left: 0;
    }

    .dts-solution,
    .nws-solution {
        display: block;
    }

    .nav-dropdown_solution_nws {
        margin-top: 3rem;
    }
}

@media screen and (max-width:768px) {
    .nav-dropdown_dts {
        width: 100%;
    }

    .nav-dropdown_nws {
        width: 100%;
        margin-left: 0;
    }

    .dts-solution,
    .nws-solution {
        display: block;
    }

    .nav-dropdown_solution_nws {
        margin-top: 6rem;
    }
}

.nav-dropdown_solution {
    display: block;
    height: 0;
    min-height: 1.8rem;
    padding: 0;
    background: #fff;
    margin: 0 auto;
}

.nav-dropdown_solution_dts {
    background: linear-gradient(transparent 90%, #1d5525 0%);
    color: #1d5525;
    font-size: 1.8rem;
    height: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.nav-dropdown_solution_nws {
    background: linear-gradient(transparent 90%, #184179 0%);
    color: #184179;
    font-size: 1.8rem;
    height: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.nav-dropdown_solution_dts div,
.nav-dropdown_solution_nws div {
    display: inline-block;
    background: #ffffff;
    padding: 0.5rem 1rem 0.5rem 0;
    min-width: 20rem;
}

.nav-dropdown_solution div {
    display: block;
    background: #ffffff;
    padding: 0.5rem;
    min-height: 1.8rem;
    font-size: 1.6rem;
    font-weight: 700;
}

@media screen and (max-width:1024px) {
    .nav-dropdown_solution {
        width: 100%;
        min-height: 2.75rem;
    }

    .nav-dropdown_solution div {
        display: block;
        background: #ffffff;
        padding: 0.5rem;
        min-height: 4.0rem;
        font-size: 1.6rem;
        font-weight: 700;
        margin: 1rem auto;
    }

    .nav-dropdown_solution.first {
        width: 87%;
        left: 0.6rem;
        top: 4.0rem;
    }

    .nav-dropdown_solution.second {
        width: 87%;
        left: 0.6rem;
        margin-top: 3rem;
        margin-left: 0;
    }
}

@media screen and (max-width:768px) {
    .nav-dropdown_solution {
        width: 100%;
        min-height: 5.5rem;
    }

    .nav-dropdown_solution div {
        display: block;
        background: #ffffff;
        padding: 1rem;
        min-height: 8.0rem;
        font-size: 3.2rem;
        font-weight: 700;
        margin: 2rem auto;
    }

    .nav-dropdown_solution.first {
        width: 87%;
        left: 1.2rem;
        top: 8.0rem;
    }

    .nav-dropdown_solution.second {
        width: 87%;
        left: 1.2rem;
        margin-top: 6rem;
        margin-left: 0;
    }
}

.nav-dropdown.is-show {
    height: auto;
    padding: 2rem;
    opacity: 1;
    pointer-events: auto;
}

@media screen and (min-width:768px) and (max-width:1440px) {
    .nav-dropdown.is-show {
        height: auto;
        padding: 2rem 2rem 4rem 9rem;
        opacity: 1;
        pointer-events: auto;
    }
}

.nav-dropdown_area .nav-dropdown__item.solutionMenu {
    width: auto;
}

.nav-dropdown_area .nav-dropdown__item {
    width: auto;
}

@media screen and (max-width:768px) {
    .nav-dropdown_area .nav-dropdown__item {
        width: 100%;
        margin-top: 4rem;
    }
}

.nav-dropdown__item:nth-of-type(n+2) {
    margin-left: 6%;
}

@media screen and (min-width:768px) and (max-width:1440px) {
    .nav-dropdown__item:nth-of-type(n+2) {
        margin-left: 4rem;
    }
}

@media screen and (max-width:768px) {
    .nav-dropdown__item:nth-of-type(n+2) {
        margin: 4rem 0 0;
    }

    /*	.nav-dropdown__item:nth-of-type(3) {
		margin: 16rem 0 0;
	}*/
}

.nav-dropdown__heading {
    font-size: 1.8rem;
    font-weight: 700;
    padding-top: 2rem;
}

@media screen and (min-width:768px) and (max-width:1440px) {
    .nav-dropdown__heading {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:768px) {
    .nav-dropdown__heading {
        font-size: 2.8rem;
        line-height: 1.2;
        padding-top: 0rem;
        padding-left: 4.0rem;
        border-bottom: solid 1px #dddddd;
    }
}

.nav-dropdown__heading a {
    position: relative;
    display: inline-block;
    padding-left: 4rem;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
    padding-top: 0;
}

@media screen and (max-width:768px) {
    .nav-dropdown__heading a {
        padding-left: 5.2rem;
    }
}

@media screen and (min-width:768px) and (max-width:1110px) {
    .nav-dropdown__heading--ubi a {
        padding-top: 0.5rem;
    }
}

.nav-dropdown__heading a:before {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 1.3rem);
    left: 0;
    box-sizing: border-box;
    content: '';
    display: block;
    border: solid 1px #1b2024;
    background-image: url(../../images/ja/common/arw_small_navy.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: .5rem auto;
}

@media screen and (max-width:768px) {
    .nav-dropdown__heading a:before {
        width: 3.7rem;
        height: 3.7rem;
        border-radius: 100%;
        top: calc(50% - 1.6rem);
        background-size: .7rem auto;
    }
}

.nav-dropdown__heading a.is-on {
    opacity: .6;
}

.nav-dropdown__heading {
    line-height: 1;
}

.nav-dropdown__heading .nav-dropdown__heading-sub {
    display: inline-block;
    line-height: 1.2;
    font-size: 1.15rem;
    margin-bottom: 4px;
}

@media screen and (min-width:768px) and (max-width:1440px) {
    .nav-dropdown__heading .nav-dropdown__heading-sub {
        font-size: 1.0rem;
    }
}

@media screen and (max-width:768px) {
    .font-family-en {
        font-size: 2.8rem;

    }

    .font-family-secusup {
        font-size: 2.6rem;
    }

    .nav-dropdown__heading small {
        font-size: 1.8rem;
    }

    .nav-dropdown__heading .nav-dropdown__heading-sub {
        font-size: 2rem;
    }
}

.nav-dropdown__heading--alog a {
    color: #0f6e5a;
}

.nav-dropdown__heading--alog span:before {
    border: solid 1px #0f6e5a;
    background-image: url(../../images/ja/common/arw_small_alog.svg);
}

.nav-dropdown__heading--secsap a {
    color: #55522f;
}

.nav-dropdown__heading--secsap span:before {
    border: solid 1px #55522f;
    background-image: url(../../images/ja/common/arw_small_ubiquiti.svg);
}

.nav-dropdown__heading--nac a {
    color: #4482ac;
}

.nav-dropdown__heading--nac span:before {
    border: solid 1px #4482ac;
    background-image: url(../../images/ja/common/arw_small_nac.svg);
}

.nav-dropdown__heading--ubi a {
    color: #224faa;
}

.nav-dropdown__heading--ubi span:before {
    border: solid 1px #224faa;
    background-image: url(../../images/ja/common/arw_small_ubiquiti.svg);
}

.nav-dropdown__heading--runsapo {
    color: #1b294a;
}

.nav-dropdown__heading--runsap span:before {
    border: solid 1px #1b294a;
    background-image: url(../../images/ja/common/arw_small_ubiquiti.svg);
}

@media screen and (max-width:768px) {
    .nav-dropdown__body {
        margin-top: 3rem;
        padding-top: 4rem;
    }
}


@media screen and (max-width:768px) {
    .nav-dropdown__heading a {
        position: relative;
        display: inline-block;
        padding-left: 4rem;
        text-decoration: none;
        transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
        padding-left: 5.2rem;
    }

    .nav-dropdown__heading a:before {
        position: absolute;
        left: 0;
        box-sizing: border-box;
        content: '';
        display: block;
        border: solid 1px #1b2024;
        background-image: url(../../images/ja/common/arw_small_navy.svg);
        background-repeat: no-repeat;
        background-position: center center;
        width: 3.7rem;
        height: 3.7rem;
        border-radius: 100%;
        top: calc(50% - 1.6rem);
        background-size: .7rem auto;
    }
}

/* ソリューションメニュー END */

.nav-global {
    width: calc(100% - 15rem);
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 1.4rem;
}

@media screen and (max-width:1024px) {
    .nav-global {
        position: absolute;
        top: 5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 5rem);
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 2rem 1.5rem 4rem;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
    }
}

@media screen and (max-width:768px) {
    .nav-global {
        position: absolute;
        top: 10rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 10rem);
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 4rem 3rem 8rem;
        background: #fff;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
    }
}

.nav-global__primary {
    height: 100%;
    padding-left: 4rem;
}

@media screen and (max-width:768px) {
    .nav-global__primary {
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        height: auto;
        padding-left: 0;
        margin-top: 3rem;
        font-size: 2.0rem;
    }
}

.nav-global__secondary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    padding-right: 1rem;
}

@media screen and (max-width:768px) {
    .nav-global__secondary {
        display: block;
        height: auto;
        padding-right: 0;
        font-size: 2.4rem;
    }
}

@media screen and (max-width:1024px) {
    .is-show-nav .nav-global {
        opacity: 1;
        pointer-events: auto;
    }
}

.select-lang {
    position: relative;
    display: block;
    padding-left: 1rem;
    letter-spacing: .2em;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .select-lang {
        width: 13rem;
        padding-left: 4rem;
        border-radius: 1rem;
        background: #f4f4f4;
    }
}

.select-lang:before {
    width: .5rem;
    height: .9rem;
    position: absolute;
    top: calc(50% - .5rem);
    left: 0;
    box-sizing: border-box;
    content: '';
    display: block;
    background: url(../../images/ja/common/arw_small_black.svg) no-repeat center center;
    background-size: contain;
    transform: rotate(90deg);
}

@media screen and (max-width:768px) {
    .select-lang:before {
        width: 1rem;
        height: 1.8rem;
        top: calc(50% - .9rem);
        left: 3rem;
        background-image: url(../../images/ja/common/arw_black.svg);
    }
}

.select-lang__list {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1rem;
    border: none;
    outline: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

@media screen and (max-width:768px) {
    .select-lang__list {
        padding: 2.4rem;
    }
}

#home .heading-section {
    position: relative;
    padding-bottom: 2.6rem;
    color: #1b3f5c;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width:768px) {
    #home .heading-section {
        padding-bottom: 3rem;
    }
}

#home .heading-section:after {
    width: 6rem;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: calc(50% - 3rem);
    content: '';
    display: block;
    background: #1b3f5c;
}

@media screen and (max-width:768px) {
    #home .heading-section:after {
        left: calc(50% - 4rem);
        width: 8rem;
        font-size: 2.4rem;
    }
}

#home .heading-section__ja {
    display: block;
}

@media screen and (max-width:768px) {
    #home .heading-section__ja {
        font-size: 2.4rem;
    }
}

#home .heading-section__en {
    display: block;
    margin-top: 2.5rem;
    font-family: Work Sans, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: .1em;
}

@media screen and (max-width:768px) {
    #home .heading-section__en {
        font-size: 4.7rem;
    }
}

#home .heading-section--white {
    color: #fff;
}

#home .heading-section--white:after {
    background: #fff;
}

#home .lead-section {
    margin-top: 4.5rem;
    font-size: 1.8rem;
    letter-spacing: .01em;
    text-align: center;
}

@media screen and (max-width:768px) {
    #home .lead-section {
        font-size: 3rem;
        line-height: 1.875;
    }
}

#home .section-hero {
    width: 100%;
    height: calc(100vh - 70px);
    /*height: auto;
	margin-bottom: -20px;*/
}

#home .player-hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:1400px) {
    #home .player-hero {
        min-width: 1410px;
        object-fit: none;
    }
}


#home .button-scrolldown {
    position: absolute;
    right: 3rem;
    bottom: 0;
    font-family: Work Sans, sans-serif;
    font-size: 1.3rem;
    letter-spacing: .3em;
    line-height: 1;
    text-align: center;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

@media screen and (max-width:768px) {
    #home .button-scrolldown {
        font-size: 2rem;
    }
}

#home .button-scrolldown a {
    position: relative;
    display: inline-block;
    padding-bottom: 13rem;
    color: #fff;
    text-decoration: none;
}

@media screen and (max-width:768px) {
    #home .button-scrolldown a {
        padding-bottom: 15rem;
    }
}

#home .button-scrolldown a:after {
    position: absolute;
    top: 3rem;
    left: 50%;
    width: 1px;
    height: calc(100% - 3rem);
    content: '';
    display: block;
    background: #fff;
    animation: scrolldown 2s cubic-bezier(.77, 0, .175, 1) infinite;
}

@media screen and (max-width:768px) {
    #home .button-scrolldown a:after {
        top: 12rem;
        height: calc(100% - 12rem);
        animation: scrolldownSp 2s cubic-bezier(.77, 0, .175, 1) infinite;
    }
}

@keyframes scrolldown {
    0% {
        top: 8rem;
        bottom: auto;
        height: 0;
    }

    40% {
        top: 8rem;
        bottom: auto;
        height: calc(100% - 8rem);
    }

    60% {
        top: auto;
        bottom: 0;
        height: calc(100% - 8rem);
    }

    100% {
        top: auto;
        bottom: 0;
        height: 0;
    }
}

@keyframes scrolldownSp {
    0% {
        top: 12rem;
        bottom: auto;
        height: 0;
    }

    40% {
        top: 12rem;
        bottom: auto;
        height: calc(100% - 12rem);
    }

    60% {
        top: auto;
        bottom: 0;
        height: calc(100% - 12rem);
    }

    100% {
        top: auto;
        bottom: 0;
        height: 0;
    }
}

#home .section-statement {
    position: relative;
    padding: 5rem 0;
    color: #fff;
    background: #1b2024;
}

@media screen and (max-width:768px) {
    #home .section-statement {
        padding: 10rem 0;
    }
}

#home .section-statement__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    padding: 0 5rem;
    z-index: 9;
    align-items: center;
}

@media screen and (max-width:768px) {
    #home .section-statement__inner {
        display: block;
        padding: 0 3rem 18rem;
    }
}

#home .section-statement__primary {
    width: 60%;
    padding-right: 5%;
}

@media screen and (max-width:768px) {
    #home .section-statement__primary {
        width: 100%;
        padding-right: 0%;
    }
}

#home .section-statement__secondary {
    width: 40%;
}

@media screen and (max-width:768px) {
    #home .section-statement__secondary {
        width: 100%;
        margin-top: 6rem;
    }
}

#home .popup {
    transition: filter .2s cubic-bezier(.39, .575, .565, 1);
}

#home .popup:hover {
    filter: brightness(1.75);
}

#corporate .popup:hover {
    filter: brightness(1.75);
}

/*↓↓↓youtube-popup↓↓↓*/
.mfp-bg {
    opacity: 0;
    transition: opacity 1s;
}

.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-wrap .mfp-content {
    opacity: 0;
    transition: opacity 1s;
}

.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

.mfp-iframe-scaler iframe::-webkit-scrollbar {
    display: none;
    /*Google Chrome、Safariへの対応*/
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
			 * Remove all paddings around the image on small screen
			 */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/*↑↑↑youtube-popup↑↑↑*/


#home .heading-statement {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 2.083;
}

@media screen and (max-width:768px) {
    #home .heading-statement {
        font-size: 4rem;
        letter-spacing: .15em;
        line-height: 1.875;
    }
}

#home .text-statement {
    text-align: justify;
    text-justify: inter-ideograph;
    word-break: break-all;
    margin-top: 0;
    line-height: 2;
}

@media screen and (max-width:768px) {
    #home .text-statement {
        line-height: 2;
    }
}

#home .text-statement:nth-of-type(n+2) {
    margin-top: 1.5rem;
}

@media screen and (max-width:768px) {
    #home .text-statement:nth-of-type(n+2) {
        margin-top: 4rem;
    }
}

#home .button-statement {
    margin-top: 2.5rem;
}

@media screen and (max-width:768px) {
    #home .button-statement {
        position: absolute;
        bottom: 0;
        left: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        width: 100%;
        margin-top: 0;
    }
}

#home .section-product {
    position: relative;
    padding: 10rem 0 0;
}

#home .section-product__inner {
    position: relative;
    z-index: 9;
}

#home .list-product-menu {
    display: -ms-flexbox;
    display: flex;
    margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
    #home .list-product-menu {
        display: block;
        margin-top: 6rem;
    }
}

#home .list-product-menu__item {
    position: relative;
    width: 50%;
    color: #fff;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__item {
        width: 100%;
    }
}

#home .list-product-menu__item>a {
    width: 100%;
    height: 50rem;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 4rem;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-decoration: none;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__item>a {
        height: 60rem;
        padding: 3rem;
    }
}

#home .list-product-menu__item>a:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    display: block;
    background: #000;
    opacity: 0;
    z-index: 1;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .list-product-menu__item>a.is-on:before {
    opacity: .6;
}

#home .list-product-menu__item--alog>a {
    background-image: url(../../images/ja/home/img_product_cover01.jpg);
}

#home .list-product-menu__item--alog .list-product-menu__heading:before {
    background: #0f6e5a;
}

#home .list-product-menu__item--nac>a {
    background-image: url(../../images/ja/home/img_product_cover02.jpg);
}

#home .list-product-menu__item--nac .list-product-menu__heading:before {
    background: #4482ac;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__item:nth-of-type(n+2) {
        margin-top: 4rem;
    }
}

#home .list-product-menu__slogan {
    position: absolute;
    top: 5rem;
    left: 4rem;
    font-size: 1.8rem;
    letter-spacing: .1em;
    z-index: 9;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__slogan {
        top: 10rem;
        left: 3rem;
        font-size: 3rem;
    }
}

#home .list-product-menu__heading {
    position: relative;
    padding: .5rem 0 3rem 3.5rem;
    z-index: 9;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__heading {
        padding: .5rem 0 4rem 5.6rem;
    }
}

#home .list-product-menu__heading:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1.2rem;
    height: calc(100% - 3rem);
    content: '';
    display: block;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__heading:before {
        width: 1.8rem;
        height: calc(100% - 4rem);
    }
}

#home .list-product-menu__heading:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36rem;
    height: 1px;
    content: '';
    display: block;
    background: #fff;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__heading:after {
        width: 63rem;
    }
}

#home .list-product-menu__heading span {
    display: block;
    line-height: 1;
}

#home .list-product-menu__heading span:nth-of-type(1) {
    font-size: 2.4rem;
    font-weight: 700;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__heading span:nth-of-type(1) {
        font-size: 3.4rem;
    }
}

#home .list-product-menu__heading span:nth-of-type(2) {
    margin-top: 1rem;
    font-family: Work Sans, sans-serif;
    font-size: 3.4rem;
    letter-spacing: .1em;
}

@media screen and (max-width:768px) {
    #home .list-product-menu__heading span:nth-of-type(2) {
        margin-top: 2rem;
        font-size: 5.4rem;
    }
}

#home .list-product-menu__text {
    position: relative;
    margin-top: 2.5rem;
    z-index: 9;
}

/*
#home .button-product-document {
	width: 100%;
	max-width: calc(100% - 30rem);
	margin-left: auto;
	margin-right: 3rem;
	position: relative;
	margin-top: -15rem;
	z-index: 9;
	text-align: right;
}

@media screen and (max-width:768px) {
	#home .button-product-document {
		width: 100%;
		max-width: calc(100% - 12rem);
		margin-left: auto;
		margin-right: auto;
		margin-top: -25rem;
	}
}

#home .button-product-document a {
	position: relative;
	display: inline-block;
}

#home .button-product-document a.is-on{
	opacity:.6;
}
#home .button-product-document__text{
	position:relative;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-align:center;
	align-items:center;
	height:5.9rem;
	margin-right:4.5rem;
	padding-left:7.2rem;
}
@media screen and (max-width:768px){
	#home .button-product-document__text{
		padding-left:7.6rem;
		font-size:2.4rem;
		line-height:1.6;
	}
}
#home .button-product-document__text:before{
	width:5.9rem;
	height:5.9rem;
	border-radius:100%;
	position:absolute;
	top:calc(50% - 2.9rem);
	left:0;
	box-sizing:border-box;
	content:'';
	display:block;
	border:solid 1px #fff;
	background:url(../../images/ja/common/arw_white.svg) no-repeat center center;
	background-size:.8rem auto;
}
@media screen and (max-width:768px){
	#home .button-product-document__text:before{
		background-size:1rem auto;
	}
}
*/
#home .button-product-document {
    width: 100%;
    max-width: calc(100% - 12rem);
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: -7.1rem;
    z-index: 9;
}

@media screen and (max-width:768px) {
    #home .button-product-document {
        width: 100%;
        max-width: calc(100% - 6rem);
        margin-left: auto;
        margin-right: auto;
    }
}

#home .button-product-document--alog {
    background: #0f6e5a;
}

#home .button-product-document--nac {
    background: #4482ac;
}

#home .button-product-document a {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    height: 14.2rem;
    padding: 0 3rem;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .button-product-document a.is-on {
    opacity: .6;
}

#home .button-product-document__text {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: 5.9rem;
    margin-right: 4.5rem;
    padding-left: 7.2rem;
}

@media screen and (max-width:768px) {
    #home .button-product-document__text {
        padding-left: 7.6rem;
        font-size: 2.4rem;
        line-height: 1.6;
    }
}

#home .button-product-document__text:before {
    width: 5.9rem;
    height: 5.9rem;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 2.9rem);
    left: 0;
    box-sizing: border-box;
    content: '';
    display: block;
    border: solid 1px #fff;
    background: url(../../images/ja/common/arw_white.svg) no-repeat center center;
    background-size: .8rem auto;
}

@media screen and (max-width:768px) {
    #home .button-product-document__text:before {
        background-size: 1rem auto;
    }
}

#home .button-product-document__image {
    width: 19.2rem;
}

#home .section-case {
    position: relative;
    background: #f7f8f9;
    padding: 10rem 0;
}

#home .section-case__inner {
    position: relative;
    z-index: 9;
}

#home .carousel-case {
    margin-top: 6rem;
}

#home .section-seminar {
    position: relative;
    padding: 10rem 0;
}

#home .section-seminar__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9;
}

@media screen and (max-width:768px) {
    #home .section-seminar__inner {
        padding: 0 6.5rem;
    }
}

#home .big_banner {
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    #home .big_banner {
        margin-left: -6.5rem;
        width: 100vw;
    }
}

#home .big_banner a {
    position: relative;
    display: block;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .big_banner a.is-on {
    opacity: .6;
}

#home .list-seminar {
    display: -ms-flexbox;
    display: block;
    margin-top: 6rem;
}

#home ul.list-seminar:after {
    content: "";
    clear: both;
    display: block;
}

@media screen and (max-width:768px) {
    #home .list-seminar {
        display: block;
    }
}

#home .list-seminar__item {
    width: 24rem;
    display: block;
    float: left;
    margin-right: 4.6rem;
    min-height: 32rem;
}

@media screen and (max-width:768px) {
    #home .list-seminar__item {
        width: 100%;
        margin-right: 0;
    }
}

#home .list-seminar__item:nth-of-type(4n) {
    margin-right: 0;
}

@media screen and (max-width:768px) {
    #home .list-seminar__item:nth-of-type(n+2) {
        margin-top: 7rem;
    }
}

#home .list-seminar__item a {
    position: relative;
    display: block;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .list-seminar__item a.is-on {
    opacity: .6;
}

#home .list-seminar__item .is-alog.list-seminar-product__item {
    background: #0f6e5a;
}

#home .list-seminar__item.is-alog .group-seminar-date {
    color: #0f6e5a;
}

#home .list-seminar__item.is-alog .group-seminar-date__heading {
    border-color: #0f6e5a;
}

#home .list-seminar__item .is-secsup.list-seminar-product__item {
    background: #55522f;
}

#home .list-seminar__item .is-secsup .group-seminar-date {
    color: #55522f;
}

#home .list-seminar__item .is-secsup .group-seminar-date__heading {
    border-color: #55522f;
}

#home .list-seminar__item .is-nac.list-seminar-product__item,
#home .list-seminar__item .is-runsup.list-seminar-product__item {
    background: #4482ac;
}

#home .list-seminar__item.is-nac .group-seminar-date,
#home .list-seminar__item.is-runsup .group-seminar-date {
    color: #4482ac;
}

#home .list-seminar__item.is-nac .group-seminar-date__heading,
#home .list-seminar__item.is-runsup .group-seminar-date__heading {
    border-color: #4482ac;
}

#home .list-seminar__item .is-ubiquiti.list-seminar-product__item {
    background: #224faa;
}

#home .list-seminar__item .is-ubiquiti .group-seminar-date {
    color: #224faa;
}

#home .list-seminar__item .is-ubiquiti .group-seminar-date__heading {
    border-color: #224faa;
}

#home .list-seminar__item .is-corporate.list-seminar-product__item {
    background: #942343;
}

#home .list-seminar__item.is-corporate .group-seminar-date {
    color: #942343;
}

#home .list-seminar__item.is-corporate .group-seminar-date__heading {
    border-color: #942343;
}

#home .list-seminar__item.is-end a:before {
    position: absolute;
    top: 0;
    left: 0;
    content: '\7D42\4E86\3057\307E\3057\305F';
    padding: .5rem;
    color: #fff;
    background: rgba(27, 63, 92, .8);
    font-size: 1rem;
    line-height: 1;
}

@media screen and (max-width:768px) {
    #home .list-seminar__item.is-end a:before {
        padding: 1rem;
        font-size: 2rem;
    }
}

#home .list-seminar__image img {
    width: 100%;
}

#home .list-seminar__category {
    position: relative;
    margin-top: 2rem;
    padding-left: 2.5rem;
    font-size: 1.3rem;
    line-height: 1;
}

#home .list-seminar__category:before {
    width: 2rem;
    height: 2px;
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    content: '';
    display: block;
}

#home .list-seminar__heading {
    margin-top: 1rem;
    line-height: 1.5;
}

@media screen and (max-width:768px) {
    #home .list-seminar__heading {
        margin-top: 1.6rem;
        line-height: 1.8;
    }
}

#home .list-seminar-product {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #fff;
    font-size: 1rem;
    letter-spacing: .02em;
    line-height: 1;
    text-align: center;
}

@media screen and (max-width:768px) {
    #home .list-seminar-product {
        font-size: 2rem;
    }
}

#home .list-seminar-product__item {
    width: 50%;
    margin-top: 1px;
    padding: .5rem 0;
}

@media screen and (max-width:768px) {
    #home .list-seminar-product__item {
        padding: 1rem;
    }
}

#home .list-seminar-product__item:nth-of-type(2n) {
    width: calc(50% - 1px);
    margin-left: 1px;
}

#home .group-seminar-date {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 1.4rem;
}

@media screen and (max-width:768px) {
    #home .group-seminar-date {
        margin-top: 2.4rem;
    }
}

#home .group-seminar-date__heading {
    display: inline-block;
    margin-right: .6rem;
    padding: 1px 0.3rem;
    border: solid 1px #000;
    font-size: 1.0rem;
}

@media screen and (max-width:768px) {
    #home .group-seminar-date__heading {
        margin-right: 1.6rem;
        font-size: 2rem;
    }
}

#home .group-seminar-date__text {
    display: inline-block;
    font-size: 1.12rem;
}

@media screen and (max-width:768px) {
    #home .group-seminar-date__text {
        font-size: 2.4rem;
    }
}

#home .section-information {
    position: relative;
    padding: 10rem 0;
    color: #fff;
    background: #000 url(../../images/ja/home/bg_information.jpg) no-repeat center center;
    background-size: cover;
}

#home .section-information__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9;
}

@media screen and (max-width:768px) {
    #home .section-information__inner {
        padding: 0 3rem;
    }
}

#home .column-information {
    display: -ms-flexbox;
    display: flex;
    margin-top: 6rem;
}

@media screen and (max-width:768px) {
    #home .column-information {
        display: block;
        margin-top: 8rem;
    }
}

#home .column-information__item {
    position: relative;
    width: 50rem;
}

@media screen and (max-width:768px) {
    #home .column-information__item {
        width: 100%;
    }
}

#home .column-information__item:nth-of-type(n+2) {
    margin-left: 10rem;
}

@media screen and (max-width:768px) {
    #home .column-information__item:nth-of-type(n+2) {
        margin: 10rem 0 0;
    }
}

#home .heading-information {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 1;
}

#home .heading-information__en {
    display: inline-block;
    margin-right: 1.6rem;
    font-family: Work Sans, sans-serif;
    font-size: 2.8rem;
}

@media screen and (max-width:768px) {
    #home .heading-information__en {
        margin-right: 2rem;
        font-size: 4.4rem;
    }
}

#home .heading-information__ja {
    display: inline-block;
    padding-bottom: .2rem;
}

@media screen and (max-width:768px) {
    #home .heading-information__ja {
        font-size: 2.4rem;
        padding-bottom: .4rem;
    }
}

#home .button-more-information {
    position: absolute;
    top: .5rem;
    right: 0;
    font-size: 1.3rem;
}

@media screen and (max-width:768px) {
    #home .button-more-information {
        font-size: 2.6rem;
    }
}

#home .button-more-information a {
    position: relative;
    display: inline-block;
    padding-left: 4.5rem;
    color: #fff;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    #home .button-more-information a {
        padding-left: 5.1rem;
    }
}

#home .button-more-information a.is-on {
    opacity: .6;
}

#home .button-more-information a:before {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 100%;
    position: absolute;
    top: calc(50% - 1.5rem);
    left: 0;
    box-sizing: border-box;
    content: '';
    display: block;
    border: solid 1px #fff;
    background: url(../../images/ja/common/arw_small_white.svg) no-repeat center center;
    background-size: .5rem auto;
}

@media screen and (max-width:768px) {
    #home .button-more-information a:before {
        width: 3.5rem;
        height: 3.5rem;
        border-radius: 100%;
        top: calc(50% - 1.7rem);
        background-size: .7rem auto;
    }
}

#home .list-information {
    margin-top: 5rem;
    line-height: 2;
}

@media screen and (max-width:768px) {
    #home .list-information {
        line-height: 1.8;
    }
}

#home .list-information__item {
    display: -ms-flexbox;
    display: flex;
    margin-top: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid #585858;
}

@media screen and (max-width:768px) {
    #home .list-information__item {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }
}

#home .list-information__date {
    width: 11rem;
}

@media screen and (max-width:768px) {
    #home .list-information__date {
        width: 18rem;
        letter-spacing: 0;
    }
}

#home .list-information__text {
    width: calc(100% - 11rem);
}

@media screen and (max-width:768px) {
    #home .list-information__text {
        width: calc(100% - 18rem);
    }
}

#home .list-information__text a {
    color: #fff;
    text-decoration: none;
}

#home .list-information__text a.is-on {
    text-decoration: underline;
}

#home .section-company {
    position: relative;
    padding: 10rem 0;
}

#home .section-company__inner {
    width: 100%;
    max-width: 110rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 9;
}

@media screen and (max-width:768px) {
    #home .section-company__inner {
        padding: 0 3rem;
    }
}

#home .list-company-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 4rem;
}

@media screen and (max-width:768px) {
    #home .list-company-menu {
        display: block;
        margin-top: 6rem;
    }
}

#home .list-company-menu__item {
    width: 52rem;
    margin-top: 2rem;
    margin-right: 6rem;
}

@media screen and (max-width:768px) {
    #home .list-company-menu__item {
        width: 100%;
        margin-right: 0;
    }
}

#home .list-company-menu__item:nth-of-type(2n) {
    margin-right: 0;
}

#home .list-company-menu__item a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    background: #f4f4f4;
    text-align: center;
    text-decoration: none;
    transition: opacity .2s cubic-bezier(.39, .575, .565, 1);
}

#home .list-company-menu__item a.is-on {
    opacity: .6;
}

#home .list-company-menu__image {
    width: 50%;
}

#home .list-company-menu__heading {
    width: 50%;
}

#home .list-company-menu__heading span {
    display: block;
    line-height: 1;
}

#home .list-company-menu__heading span:nth-of-type(1) {
    font-size: 2rem;
}

@media screen and (max-width:768px) {
    #home .list-company-menu__heading span:nth-of-type(1) {
        font-size: 3.4rem;
    }
}

#home .list-company-menu__heading span:nth-of-type(2) {
    margin-top: 1rem;
    color: #1b3f5c;
    font-family: Work Sans, sans-serif;
    font-size: 1rem;
    letter-spacing: .1em;
}

@media screen and (max-width:768px) {
    #home .list-company-menu__heading span:nth-of-type(2) {
        margin-top: 2rem;
        font-size: 2rem;
    }
}

#solutions .layout-container {
    padding-top: 11.2rem;
}

@media screen and (max-width:1024px) {
    #solutions .layout-container {
        padding-top: 5rem;
    }
}

@media screen and (max-width:768px) {
    #solutions .layout-container {
        padding-top: 10rem;
    }
}

#solutions.is-scrolled-down .layout-container {
    padding-top: 4.4rem;
}

@media screen and (max-width:768px) {
    #solutions.is-scrolled-down .layout-container {
        padding-top: 10rem;
    }
}

.freeprogramBanner {
    margin: 30px auto 10px;
    text-align: center;
}

.group-rs_point08 {
    width: 100%;
    display: flex;
}

.group-rs_point08 li {
    width: 50%;
}

.group-rs_point08_box {
    width: 100%;
    background: #eef4f6;
    padding: 15px;
}

.group-rs_point08_box .fontbold {
    font-weight: bold;
}

@media screen and (max-width:768px) {
    .group-rs_point08 {
        flex-direction: column;
    }

    .group-rs_point08 li {
        width: 100%;
    }
}

.innovation_member {
    width: 100%;
    text-align: left;
}

.innovation_member li {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.innovation_member img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

.innovation_member p {
    width: 70%;
}

.innovation_member .fontbold {
    font-weight: bold;
}

.innovation_member .fontlarge {
    font-size: 120%;
}

@media screen and (max-width:768px) {
    .innovation_member li {
        width: 95%;
        align-items: center;
        margin: 0 auto 60px;
        flex-direction: column;
    }

    .innovation_member img {
        max-width: 250px;
        height: auto;
        width: 50%;
        margin-bottom: 20px;
    }

    .innovation_member p {
        width: 100%;
    }
}


.bn_recruit_pc {
    display: block;
    margin: 10px auto;
    width: 100%;
}

.bn_recruit_sp {
    display: none;
    margin: 10px auto;
    width: 100%;
}

@media screen and (max-width:600px) {

    .bn_recruit_pc {
        display: none;
        margin: 10px auto;
        width: 100%;
    }

    .bn_recruit_sp {
        display: block;
        margin: 10px auto;
        width: 100%;
    }
}

#home .column-bn {
    position: relative;
    padding: 0 0 10rem;
    background: #f7f8f9;
    text-align: center;
}

#home .column-bn a:hover {
    opacity: 0.7;
    transition: .3s;
}

.horizontal-bn {
    position: relative;
    padding: 10rem 0 0;
    text-align: center;
}

.horizontal-bn a:hover {
    opacity: 0.7;
    transition: .3s;
}

/*	DX推進ページ	*/
.digital_transformation--img {
    margin: 60px auto 0;
}

.digital_transformation--case,
.digital_transformation--list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.digital_transformation--list li {
    width: 48%;
    background: #fff;
    border-radius: 10px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0px 0px 15px 5px #ebebeb;
}

.digital_transformation--list.shadow li {
    box-shadow: 0px 0px 15px 5px #ebebeb;
}

.digital_transformation--list.shadow img {
    max-width: 100%;
    max-height: 420px;
    margin-top: 20px;
}

.digital_transformation--list .logo {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 3em;
    margin-bottom: 20px;
}

.digital_transformation--list .logo img {
    max-width: 60%;
    max-height: 3em;
    margin: 0 auto;
}

.digital_transformation--list .images {
    max-width: 100%;
    max-height: 400px;
    margin-top: 20px;
}

.digital_transformation--list .title {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.digital_transformation--case li {
    position: relative;
    width: 48%;
    padding: 0;
    box-shadow: 0px 0px 15px 5px #ebebeb;
}

.digital_transformation--case img {
    width: 100%;
}

.digital_transformation--case p {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 20px;
}

.digital_transformation--case span {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 2;
}

.digital_transformation--case a:hover {
    opacity: 0.7;
    transition: .3s;
}

@media screen and (max-width:768px) {
    .digital_transformation--img {
        margin: 20px auto 0;
    }

    .digital_transformation--case,
    .digital_transformation--list {
        flex-direction: column;
        margin-top: 20px;
    }

    .digital_transformation--list li {
        width: 98%;
        margin: 0 auto;
        padding: 20px;
        margin-bottom: 20px;
        text-align: center;
    }

    .digital_transformation--list .logo {
        width: 100%;
        height: 2.5em;
    }

    .digital_transformation--list .logo img {
        max-width: 60%;
        max-height: 2.5em;
    }

    .digital_transformation--list .title {
        width: 100%;
        height: auto;
        display: block;
        text-align: center;
        font-size: 3rem;
        margin-bottom: 0;
    }

    .digital_transformation--case li {
        width: 98%;
        margin-bottom: 20px;
    }

    .digital_transformation--case p {
        padding: 10px;
    }

    .digital_transformation--case span {
        font-size: 3rem;
    }
}

/**	youtube動画レスポンシブ設定	**/
@media screen and (max-width:768px) {
    .movie-sp {
        margin: 7.2rem auto;
    }

    .movie-sp__iframe {
        width: 100%;
        height: 39rem;
    }

}

.text-casetop {
    display: block;
    width: 90%;
    text-align: left;
    line-height: 2.0;
    margin: 2rem auto;
}


/*3パックページ共通要素*/
.section-content--milkgray {
    background-color: #F0F0F0;
}

.section-content--darkgray {
    background-color: #2F3133;
}

.section-content--silvergray {
    background-color: #d2d4d7;
}

.section-content--greengray {
    background-color: #ddebda;
}

/*3パックページへのリンク共通要素*/
#pack_section {
    text-align: center;
    background-image: url("../../images/ja/solutions/alog/bg/img_packpage_link_background.png");
    background-position: center;
    background-size: cover;
}

.pack-section-content__inner {
    background: #ffffffb8;
    width: 780px;
    text-align: center;
    display: inline-block;
    padding: 4rem 2rem;
}

#pack_section .pack-section-content__heading {
    color: #1B2024;
    font-size: 1.8rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

#pack_section .pack-section-content__heading span {
    color: #0F6FA1;
}

.LinkPackImage {
    width: auto;
    height: 150px;
}

.btn,
a.btn,
button.btn {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 1rem 4rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #212529;
    border-radius: 0.5rem;
}

a.btn-flat {
    overflow: hidden;
    padding: 1.1rem 3rem;
    color: #fff;
    border-radius: 0;
    background: #464646;
    margin-top: 1rem;
}

a.btn-flat span {
    position: relative;
}

a.btn-flat:before {
    position: absolute;
    top: 0;
    left: 20px;
    width: 150%;
    height: 500%;
    content: '';
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
    transform: translateX(-98%) translateY(-70%) rotate(135deg);
}

a.btn-flat:hover:before {
    -webkit-transform: translateX(-9%) translateY(-25%) rotate(135deg);
    transform: translateX(-9%) translateY(-25%) rotate(135deg);
}

a.btn-flat.btn_cyber:before {
    background: #F8B500;
}

a.btn-flat.btn_ms365:before {
    background: #56C0CF;
}

a.btn-flat.btn_internal:before {
    background: #107698;
}


.list-packlink {
    display: flex;
    justify-content: space-between;
}

.list-packlink__item {
    display: inline-block;
}

@media screen and (max-width:768px) {
    .pack-section-content__inner {
        width: auto;
        padding: 4rem 6rem;
    }

    .list-packlink {
        flex-direction: column;
    }

    .pack-section-content__inner img {
        vertical-align: middle;
        padding-right: 2rem;
    }

    .LinkPackImage {
        width: auto;
        height: 100px;
    }

    .list-packlink__item {
        margin: 1rem 0;
    }
}

@media screen and (max-width:500px) {
    #pack_section .pack-section-content__heading {
        font-size: 2.4rem;
    }

    .btn,
    a.btn,
    button.btn {
        font-size: 2.2rem;
    }
}

.visionmovie {
    display: block;
    width: 100%;
    margin: 4rem auto 2rem;
    text-align: center;
}

.visionmovie-text {
    display: block;
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.7;
}

/*	IR Info	*/
.title-content--ir {
    background-image: url("../../images/ja/ir/bg/bg_title_content01.jpg");
}

.contact-alart {
    display: block;
    width: 90%;
    margin: 2rem auto 4rem;
    padding: 2rem;
    border: solid 2px #dddddd;
    border-radius: 10px;
}

.contact-alart .text-form {
    text-align: left;
}

.contact-alart ul {
    margin-top: 2rem;
    margin-left: 4rem;
}

.contact-alart ul li {
    list-style-type: disc;
}


@media screen and (max-width:768px) {
    .nav-dropdown__heading {
        line-height: 1.2;
        font: inherit;
        font-weight: normal;
        padding-bottom: 2rem;
    }
}

@media screen and (max-width:768px) {

    .nav-dropdown>a:after,
    .nav-dropdown>span:after {
        width: 1rem;
        height: auto;
        top: calc(50% - 0.9rem);
        right: 1rem;
        background: url(../../images/ja/common/arw_black.svg) no-repeat center center;
        background-size: contain;
        transition: right .2s cubic-bezier(.39, .575, .565, 1);
    }
}

.nav-dropdown__heading>span:after {
    transform: rotate(90deg);
    width: 1rem;
    height: 1.8rem;
    top: calc(50% - 0.9rem);
    right: 1rem;
    background: url(../../images/ja/common/arw_black.svg) no-repeat center center;
    background-size: contain;
    transition: top .2s cubic-bezier(.39, .575, .565, 1);
    transition: right .2s cubic-bezier(.39, .575, .565, 1);
}

@media screen and (max-width:768px) {
    .item2line a:after {
        top: calc(105%);
    }

    .item2line .small {
        font-size: 1.8rem;
    }
}

@media screen and (max-width:768px) {
    .nav-dropdownSub.is-show {
        height: auto;
        padding: 4rem 4rem 4rem 19rem;
        opacity: 1;
        pointer-events: auto;
    }
}

/* モーダル---------------------------------------------------------------------*/

.more_profile {
    margin: 0px 10px;
    width: 17px;
    height: 17px;
    vertical-align: middle;
}

@media screen and (max-width:768px) {
    .more_profile {
        margin: 0;
    }
}

.works_modal_wrapper {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*margin: auto;*/
    border: none;
    opacity: 0;
    z-index: -1;
}

.more_profile_wrapper {
    margin: auto;
    padding: 15px;
    z-index: 9998;
    overflow: hidden;
}

.more_profile_container {
    margin: 0 auto;
    display: flex;
    max-width: 900px;
    padding: 30px;
    background: #ffffff;
    overflow: hidden;
}

.profile_lc {
    display: flex;
}

.works_modal_mask {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.works_modal_close_backg {
    z-index: 9997;
    position: fixed;
    width: 100vw;
    height: 100vh;
    cursor: pointer;
    top: 0;
    left: 0;
}

.works_modal_close_btn {
    z-index: 9999;
    position: absolute;
    top: 24px;
    right: 30px;
    color: #808080;
    font-size: 2.5rem;
    cursor: pointer;
}

.works_modal_close_btn:hover {
    color: #000;
    transition: all .5s;
}

html.is_open,
body.is_open {
    overflow: hidden;
}

.works_modal_wrapper.is_open {
    animation: works_modal_wrapper_open .5s ease forwards;
}

.works_modal_wrapper.is_open .more_profile_wrapper {
    animation: works_modal_window_open .5s ease forwards;
}

.works_modal_wrapper.is_close {
    animation: works_modal_wrapper_close .5s ease forwards;
}

.works_modal_wrapper.is_close .more_profile_wrapper {
    animation: works_modal_window_close .5s ease forwards;
}

@keyframes works_modal_wrapper_open {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
        z-index: 9999;
    }
}

@keyframes works_modal_window_open {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes works_modal_wrapper_close {
    0% {
        z-index: 9999;
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes works_modal_window_close {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        transform: translateY(-30px);
        opacity: 0;
    }
}

.profile_l {
    width: auto;
}

.profile_c {
    width: 350px;
    padding: 20px;
    margin: 0 15px;
    background: #fff;
}

.profile_r {
    width: 330px;
    padding: 10px;
}

.more_profile_container .sns:hover {
    opacity: 0.5;
}

.more_profile_container .affiliation {
    font-size: 1.2rem;
    font-weight: 500;
}

.more_profile_container .name {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.8em;
}

.more_profile_container .name span {
    font-size: 1.1rem;
    margin-left: 0.5em;
}

.more_profile_container .profile_text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.more_profile_container .session_table_part {
    font-size: 1.2rem;
    font-weight: 500;
    padding: 0.1em 0.6em;
    line-height: 1.4em;
}

.more_profile_container .session_time {
    font-size: 1.3rem;
    font-weight: 700;
    padding: 0.3em 1em;
}

.more_profile_container .title_session {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4em;
    margin: 10px 0;
}

.more_profile_container .session_text {
    font-size: 1.2rem;
    font-weight: 500;
}

@media only screen and (max-width: 768px) {
    .more_profile_wrapper {
        margin: auto;
        padding: 0px;
        width: 100%;
    }

    .profile_lc {
        flex-wrap: wrap;
        background: #fff;
        padding: 20px;
        min-width: 60%;
    }

    .works_modal_close_btn {
        top: 8px;
        right: 24px;
    }

    .profile_l {
        width: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .profile_c {
        width: auto;
        padding: 0px;
        margin: 0 0px;
    }

    .profile_r {
        width: auto;
        padding: 0;
    }

    .more_profile_container .speaker_img {
        width: 90px;
        height: auto;
        margin-right: 10px;
        margin-bottom: 10px;
    }

    .speaker_prolile_text_sp {
        width: 50vw;
    }

    .name_sns {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }

    .more_profile_container .name {
        margin-right: 2em;
        margin-bottom: 2px;
    }

    .long_profile .profile_lc {
        padding: 10px 20px;
    }

    .long_profile .profile_r {
        padding: 10px 20px 20px 20px;
    }

    .long_profile .more_profile_container .profile_text {
        font-size: 1.1rem;
        margin-top: 10px;
    }

    .long_profile .more_profile_container .session_table_part {
        font-size: 1.1rem;
        padding: 0.1em 0.4em;
        line-height: 1.2em;
    }

    .long_profile .more_profile_container .session_time {
        font-size: 1.0rem;
        padding: 0.3em 1em;
    }

    .long_profile .more_profile_container .title_session {
        font-size: 1.2rem;
        line-height: 1.2em;
        margin: 5px 0;
    }

    .long_profile .more_profile_container .session_text {
        font-size: 1.1rem;
    }
}

.formError {
    color: #b73535;
}

/* SecurityBLAZE2022 バナー配置 */
.section-securityblaze2022 {
    width: 100%;
    height: auto;
    background-color: #040404;
    padding: 6rem 0;
    text-align: center;
}

.securityblaze2022_banner {
    display: block;
    min-width: 110rem;
    margin: 0 auto;
}

.securityblaze2022Column {
    display: block;
    min-width: 28rem;
    height: auto;
    margin: 0 auto 3rem;
}

.securityblaze2022ColumnTop {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 auto 3rem;
}

/* お知らせ レイアウト調整 */
.double_content {
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
    margin-bottom: 6rem;
}

.double_content .double_contentDetail {
    width: 50%;
}

.double_content .double_contentDetail:first-child {
    margin-right: 4rem;
}

/*コンバージョンボタン*/
.conversion-btn-wrapper {
    padding: 0rem 0 0;

}

@media screen and (max-width:768px) {
    .conversion-btn-wrapper .section-inner.display-flex {
        align-items: stretch;
        flex-direction: column;
        padding: 0 3rem
    }
}

.conversion-btn-wrapper a {
    margin: 0 1rem;
    display: inline-block;
}

.display-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.section-inner {
    width: 110rem;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
    .section-inner {
        min-width: auto;
        max-width: 90%;
    }
}

.flex-wrap-nowrap {
    flex-wrap: nowrap;
}

.justify-content-space-between {
    justify-content: space-between;
}

.justify-content-space-evenly {
    justify-content: space-evenly;
}


.align-items-flex-start {
    align-items: flex-start;
}

.text-decoration-none {
    text-decoration: none;
}

.line-height-175 {
    line-height: 1.75;
}

.margin-t-5 {
    margin-top: 5rem;
}

/*---------------------------------------------------------------------*/
.group-conversion__heading {
    font-size: 1.8rem;
    color: #444444;
    padding-bottom: 3rem;
    font-weight: bold;
}

.group-conversion__heading.green {
    color: #1EAA39;
}

.group-conversion__heading.blue {
    color: #08476f;
}

.group-conversion__heading.red {
    color: #4b1f0f;
}

.group-conversion__heading span {
    font-family: 'Noto Sans JP';
}


@media screen and (max-width:768px) {
    .group-conversion__heading {
        font-size: 2.8rem;
    }
}


/*基本ボタン*/
/* From uiverse.io by @adamgiebl */
.btn-gradation-1 {
    cursor: pointer;
    position: relative;
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    vertical-align: middle;
    border-radius: 0.7rem;
    border: none;
    color: #fff;
    background: linear-gradient(130deg, #000, #565656);
    overflow: hidden;
    min-width: 32rem;
    min-height: 6.4rem;
}

@media screen and (max-width:768px) {
    .btn-gradation-1 {
        min-width: 100%;
        min-height: auto;
        margin: 1rem 0;
        font-size: 2.5rem;
    }
}


.btn-gradation-1 .btn-icon {
    width: 3rem;
    height: 3rem;
    margin-right: 0.6rem;
    fill: #fff;
}

@media screen and (max-width:768px) {
    .btn-gradation-1 .btn-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
}

.gradation-lightblue.btn-gradation-1.white {
    background: linear-gradient(130deg, #cccdc6, #8892a3);
}

.btn-gradation-1 span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 1.6rem 1.4rem;
}

@media screen and (max-width:768px) {
    .btn-gradation-1 span {
        padding: 2.5rem 1.4rem;
    }
}

.btn-gradation-1 span i {
    padding-left: 1rem;
}

.btn-gradation-1::before,
.btn-gradation-1::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.btn-gradation-1::before {
    content: "";
    background: linear-gradient(130deg, #50bc21, #057E8E);
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}

.btn-gradation-1:hover::before {
    transform: translate3d(100%, 0, 0);
}

.btn-gradation-1:active {
    transform: scale(0.95);
}


.btn-gradation-1.btn-mini {
    min-width: auto;
    min-height: auto;
}

.btn-gradation-1.btn-mini span {
    padding: 1rem 1.4rem;
}

.gradation-red.btn-gradation-1::before {
    content: "";
    background: linear-gradient(130deg, #AA1E1E, #B24500);
}

.gradation-blue.btn-gradation-1::before {
    content: "";
    background: linear-gradient(130deg, #314A78, #477093);
}

.gradation-lightblue.btn-gradation-1::before {
    content: "";
    background: linear-gradient(to right, #7ee4ba 0%, #0096ff 75%);
}

.btn-link.heroleft {
    display: block;
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

/* フッター ソリューションメニュー */
.footer_solutionMenu_Area {
    display: block;
    width: 110rem;
    margin: 4rem auto 6rem;
}

.footer_solutionMenu {
    display: flex;
    justify-content: space-between;
    width: 95%;
    margin: 1.5rem auto 2rem;
}

.footer_solutionMenu li {
    display: block;
    width: 160px;
    text-align: center;
    margin-top: 2rem;
}

.footer_solutionMenu li img {
    border-bottom: solid 4px #23ac38;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.footer_solutionMenu li a {
    line-height: 1.1;
    text-decoration: none;
}

.footer_solutionMenu li a:hover {
    color: #23ac38;
}

.footer_solutionMenu li:hover {
    background-color: #eeeeee;
}

.footer_solutionMenu li span {
    font-size: 1.2rem;
}

@media screen and (max-width:768px) {
    .footer_solutionMenu_Area {
        display: block;
        width: 100%;
    }

    .footer_solutionMenu {
        display: flex;
        flex-wrap: wrap;
        width: 95%;
        justify-content: center;
        margin: 5px auto 40px;
    }

    .footer_solutionMenu li {
        display: inline-block;
        width: 30%;
        text-align: center;
        margin: 5px 5px 30px 5px;
    }

    .footer_solutionMenu li:hover {
        background-color: #eeeeee;
        border-radius: 10px;
        border-top: none;
    }

    .footer_solutionMenu li span {
        font-size: 1.2rem;
    }
}

.footer_solutionText {
    display: block;
    margin-top: 1rem;
    font-size: 1.3rem;
    line-height: 1.5;
    color: #444444;
}

/* ローディングアニメーション */
.loader {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.sk-fading-circle {
    position: fixed;
    height: 80px;
    width: 80px;
    top: calc(50% - 80px/2);
    left: calc(50% - 80px/2);
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.sk-fading-circle .sk-circle:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: #404040;
    border-radius: 100%;
    -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}

/* 修正 */
.loader {
    background-color: rgba(0, 0, 0, 0);
}

.sk-fading-circle {
    position: fixed;
    height: 120px;
    width: 120px;
    top: calc(50% - 120px/2);
    left: calc(50% - 120px/2);
}

.sk-fading-circle .sk-circle:before {
    background-color: #404040;
}

/* 修正 */

.sk-fading-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.sk-fading-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.sk-fading-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.sk-fading-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.sk-fading-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.sk-fading-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sk-fading-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.sk-fading-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.sk-fading-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.sk-fading-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.sk-fading-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

.sk-fading-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
    animation-delay: -1.1s;
}

.sk-fading-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
    animation-delay: -1s;
}

.sk-fading-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s;
}

.sk-fading-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

.sk-fading-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
    animation-delay: -0.7s;
}

.sk-fading-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
    animation-delay: -0.6s;
}

.sk-fading-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.sk-fading-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.sk-fading-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
    animation-delay: -0.3s;
}

.sk-fading-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.sk-fading-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
    animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

@keyframes sk-circleFadeDelay {

    0%,
    39%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

.block_ttl-gray {
    font-size: 20px;
    font-size: 2rem;
    margin-bottom: 15px;
    color: #424242;
    padding-bottom: 10px;
    border-bottom: 1px solid #424242;
}

.block_ttl {
    position: relative;
    font-weight: bold;
    line-height: 1.3;
}

.ml_cmn-contents {
    padding: 30px !important;
    font-size: 1.5rem;
}

.mail_magazine_ttl {
    width: 100%;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    margin: 0 auto 30px;
}

#mag .c-inner {
    width: 1000px;
    margin: 0 auto;
}

/* コーポレートTOP イベント・セミナー表示調整 */
.l-seminar__pickup--product {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.l-seminar__pickup--product-item {
    padding: 5px 12px !important;
    border-radius: 100px;
    width: auto !important;
    background: #aa5;
}



/* コーポレートTOP イベント・セミナー表示調整 */

/* VeronaSummit（SecurityBLAZE）バナー設置 */
.section-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0 0;
    background: #1b2024;
}

.section-banner__inner {
    width: 720px;
}

.section-banner__image {
    width: 100%;
    height: auto;
    transition: all .3s;
}

.section-banner__image:hover {
    opacity: 0.5;
}

@media only screen and (max-width: 768px) {
    .section-banner {
        padding: 8rem 0 0;
    }

    .section-banner__inner {
        width: 80%;
    }
}



/* コーポレートTOP 動画コンテンツ表示調整 */

.section-movie {
    background: #f7f8f9;
}

.section-movie__inner {
    margin: 0 auto;
    width: 110rem;
    padding: 10rem 0;
}

.section-movie__list {
    display: flex;
    gap: 3.2rem;
    margin-top: 4rem;
}

.section-movie__item {
    align-items: center;
    gap: 4rem;
}

.section-movie__detail {
    padding-top: 1.6rem;
}

.section-movie__detail--subcatch {
    display: inline-block;
    background: #1b3f5c;
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    padding: 0.2rem 0.8rem;
}

.section-movie__detail--catch {
    font-size: 1.8rem;
    font-weight: 900;
    padding: 0.8rem 0;
}

.section-movie__youtube--thumbnail {
    position: relative;
    display: inline-block;
    border-radius: 0.8rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 0.4rem 2.4rem rgba(255, 255, 255, 0.5);
}

.section-movie__youtube--thumbnail figure {
    width: 100%;
}

.section-movie__youtube--thumbnail img {
    display: block;
    width: 100%;
    height: auto;
}

.section-movie__youtube--overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s;
}

.section-movie__youtube--play-icon {
    font-size: 4.8rem;
    color: white;
    filter: drop-shadow(0 0 1rem rgba(0, 0, 0, 0.2));
    transition: transform 0.2s;
}

.section-movie__youtube--thumbnail:hover .section-movie__youtube--overlay {
    background: rgba(0, 0, 0, 0.3);
}

.section-movie__youtube--thumbnail:hover .section-movie__youtube--play-icon {
    transform: scale(1.2);
}

.section-movie__youtube--modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.section-movie__youtube--modal[aria-hidden="false"] {
    display: flex;
}

.section-movie__youtube--modal-content {
    position: relative;
    max-width: 90%;
    width: 80rem;
    background: transparent;
}

.section-movie__youtube--modal-video iframe {
    width: 100%;
    height: 45rem;
    border: none;
}

.section-movie__youtube--modal-close {
    position: absolute;
    top: -4rem;
    right: -2rem;
    font-size: 4rem;
    color: white;
    background: transparent;
    border: none;
    cursor: pointer;
    text-shadow: 0 0 1rem black;
}

@media only screen and (max-width: 768px) {
    .section-movie__inner {
        width: 100%;
        padding: 10rem 6.4rem;
    }

    .section-movie__list {
        flex-direction: column;
        gap: 5.6rem;
    }

    .section-movie__detail--subcatch {
        font-size: 2.2rem;
        padding: 0.4rem 1rem;
    }

    .section-movie__detail--catch {
        font-size: 2.8rem;
        padding: 1.6rem 0;
    }
}


/* フッター調整 */
.l-footer__main--menu-service-container>div.cloud-security {
    grid-column: 1 / 2 !important;
    grid-row: 2 / 3 !important;
}

.l-footer__main--menu-service-container>div.security-service {
    grid-column: 2 / 3 !important;
    grid-row: 1 / 3 !important;
}

/* メガメニュー補修用 !!絶対に最下部に記述すること!! */
.list-menu__item {
    padding: 0 1.5rem;
    min-width: 92px;
    transition: all .3s;
    cursor: pointer;
}

.list-menu__item.is-on {
    background-color: #26447d;
}

.list-menu__item>a,
.list-menu__item>span {
    transition: color .3s;
}

.list-menu__item.is-on>a,
.list-menu__item.is-on>span {
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .list-menu__item.is-on {
        background-color: #ffffff;
    }

    .list-menu__item.is-on>a,
    .list-menu__item.is-on>span {
        color: #000000;
    }
}

.list-menu__item a.is-on::after,
.list-menu__item span.is-on::after {
    content: none;
}

.nav-dropdown {
    padding: 4rem 4rem 4rem 19rem;
    transition: none;
}

.nav-dropdown__item {
    margin-top: 1.2rem;
}

@media only screen and (max-width: 768px) {
    .nav-dropdown {
        padding: 2rem;
        transition: none;
    }

}

@media only screen and (max-height: 900px) {
    #service .l-megamenu__service--menu-list {
        overflow-y: scroll;
        max-height: calc(100vh - 28rem);
        min-height: 36rem;
        padding-right: 8px;
    }

    .l-megamenu__service--menu-list::-webkit-scrollbar {
        width: 4px;
        background-color: #6f6f6f;
        border-radius: 3px;
    }

    .l-megamenu__service--menu-list::-webkit-scrollbar-thumb {
        background-color: #a4a4a4;
        border-radius: 4px;
        background-clip: padding-box;
    }
}

.l-megamenu__service--menu-container#service {
    width: 22rem;
}

.l-megamenu__service--menu-main>ul>li {
    height: auto !important;
}

.l-megamenu__service--menu-main>ul>li>a {
    gap: 0.4rem;
    padding: 1.4rem 0;
}

.l-megamenu__service--menu-main>ul>li>a>p {
    font-weight: 700 !important;
    font-size: 1.3rem !important;
}

.l-megamenu__service--menu-heading>p {
    letter-spacing: 0 !important;
}

.l-megamenu__service--menu-main>ul>li>a>img {
    height: 2.4rem;
}

.l-megamenu__service--menu-item .series_title img {
    width: 14rem;
    height: 2rem;
    margin-bottom: 1rem;
}

.l-megamenu__service--menu-main>ul>li>a.logo-alog>img {
    height: 2.7rem;
    width: auto !important;
}

.l-megamenu__service--menu-main>ul>li>a.logo-ra>img {
    height: 1.6rem;
}

.l-megamenu__service--menu-sub {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

/* メガメニュー補修用 !!絶対に最下部に記述すること!! */