.l-header {
    position: fixed;
    z-index: 2000;
    pointer-events: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    padding: 30px 4% 0 8%;
    justify-content: flex-end;
}

.l-header.is-menu-opend {
    z-index: 4000;
}

.l-header.is-menu-opend .header-logo {
    opacity: 0;
    visibility: hidden;
}

.l-navi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: background-color 0.4s ease;
    -o-transition: background-color 0.4s ease;
    transition: background-color 0.4s ease;
}

.l-navi.show {
    background-color: rgba(255, 255, 255, 1);
}


/* ナビゲーション用のセロファンパターン */

.l-navi__bgPattern {
    background:#fff;
    background-size: cover;
    z-index: 100;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
}

.l-navi.show .l-navi__bgPattern {
    opacity: 1;
}

.l-navi.show .l-navi__main--center {
    padding-right: 0;
}

.l-navi.show .l-navi__main .navi-list__item {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.l-navi__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.l-navi__item .header-logo.show {
    opacity: inherit;
    visibility: inherit;
}

.l-navi__head {
    z-index: 3400;
    pointer-events: auto;
    user-select: none;
    font-family: "futura-pt", "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
    font-weight: 500;
}

.l-navi__head ul li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.l-navi__head ul li::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #94735F;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

.l-navi__head ul li a {
    font-size: 18px;
    display: block;
    font-weight: 500;
    pointer-events: auto;
	color:#94735F;
}

.l-navi__head ul li a:hover {
    opacity: 0.5;
}

.l-navi__head ul li a span {
    display: block;
    font-size: 12px;
    font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.l-navi__wrapper {
    width: 100%;
}

.l-navi__main {
    width: 60vw;
    margin-left: 8vw;
    margin-top: 18px;
    height: calc(100% - 90px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.l-navi__banners {
    padding-bottom: 30px;
}

.l-navi__banners a+a {
    margin-top: 16px;
}

.l-navi .link {
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
    max-width: 190px;
    width: calc(99% - 20px);
}

.l-navi .link.show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.l-section {
    position: relative;
    margin-bottom: 100px;
}

.l-section--sm-wide {
    width: 315px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.l-section--mb-short {
    margin-bottom: 50px;
}

.l-section--mb-none {
    margin-bottom: 0;
}

.l-section--sm-mb-short {
    margin-bottom: 30px;
}

.l-section-sm {
    margin-bottom: 20px;
}

.l-section-md {
    margin-bottom: 20px;
}

.l-sec-line {
    background: url(../img/hr.svg) no-repeat top center/auto 9px, url(../img/hr.svg) no-repeat bottom center/auto 9px;
    padding: 50px 0 65px;
}

.l-sec-line:not(:last-child) {
    margin-bottom: 40px;
}

.l-sec-line+.l-sec-line {
    background: url(../img/hr.svg) no-repeat bottom center/auto 9px;
    padding-top: 0;
}

.l-sec-line--bb-none {
    background: url(../img/hr.svg) no-repeat top center/auto 9px;
}

.canvas_container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1 !important;
	/* 1227 */
	display:none;
}

.canvas_container img {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -65%, 0);
    transform: translate3d(-50%, -65%, 0);
    width: 18vw;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    opacity: 0;
}

.canvas_container img.logo_co {
    width: 18vw;
}

.canvas_container img.logo_bikatsu-lab {
    width: 25vw;
}

.canvas_container img.logo_lagrace {
    width: 25vw;
}

.menu-btn {
    color: #707070;
    font: 400 1.2rem "Lato", dnp-shuei-gothic-gin-std, sans-serif;
    letter-spacing: 0.08em;
    display: block;
    width: calc(10% + 28px);
    border: none;
    padding: 10px 4%;
    background: none;
    pointer-events: auto;
    z-index: 4000;
    position: relative;
}

.menu-btn.show {
    visibility: visible;
    opacity: 1;
}

.menu-btn__icon {
    width: 32px;
    height: 18px;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: 12px;
}

.menu-btn__icon span {
    width: 32px;
    height: 2px;
    background: #535353;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
}

.menu-btn__icon span:nth-child(1) {
    top: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu-btn__icon span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu-btn__icon span:nth-child(3) {
    top: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.menu-btn.is-hover {
    -webkit-tap-highlight-color: transparent;
}

.menu-btn.is-hover .menu-btn__icon span:nth-child(2) {
    -webkit-transform: translate(-50%, 4px);
    -ms-transform: translate(-50%, 4px);
    transform: translate(-50%, 4px);
}

.menu-btn.is-hover .menu-btn__icon span:nth-child(3) {
    -webkit-transform: translate(-50%, -4px);
    -ms-transform: translate(-50%, -4px);
    transform: translate(-50%, -4px);
}

.menu-btn.is-opend {
    -webkit-transition: color 0.4s, background 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
    transition: color 0.4s, background 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
    -o-transition: color 0.4s, background 0.4s, transform 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s;
    transition: color 0.4s, background 0.4s, transform 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s;
    transition: color 0.4s, background 0.4s, transform 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
}

.menu-btn.is-opend .menu-btn__icon span:nth-child(1) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
}

.menu-btn.is-opend .menu-btn__icon span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.menu-btn.is-opend .menu-btn__icon span:nth-child(3) {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    -ms-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-btn.is-opend.is-hover {
    -webkit-tap-highlight-color: transparent;
}

.menu-btn.is-opend.is-hover .menu-btn__icon span:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(65deg);
    -ms-transform: translate(-50%, -50%) rotate(65deg);
    transform: translate(-50%, -50%) rotate(65deg);
}

.menu-btn.is-opend.is-hover .menu-btn__icon span:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}

.menu-btn.is-opend.is-hover .menu-btn__icon span:nth-child(3) {
    -webkit-transform: translate(-50%, -50%) rotate(-65deg);
    -ms-transform: translate(-50%, -50%) rotate(-65deg);
    transform: translate(-50%, -50%) rotate(-65deg);
}

.navi-sns {
    -webkit-transition: opacity 700ms, -webkit-transform 700ms;
    transition: opacity 700ms, -webkit-transform 700ms;
    -o-transition: transform 700ms, opacity 700ms;
    transition: transform 700ms, opacity 700ms;
    transition: transform 700ms, opacity 700ms, -webkit-transform 700ms;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -webkit-transition-delay: 80ms;
    -o-transition-delay: 80ms;
    transition-delay: 80ms;
    opacity: 0;
    -webkit-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.navi-sns.show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.navi-sns__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-right: 67px;
}

.navi-sns__item {
    margin-left: 12px;
}

.navi-sns__item img,
.navi-sns__item svg {
    width: 24px;
    height: auto;
    display: block;
    -webkit-transition: -webkit-transform 0.4s;
    transition: -webkit-transform 0.4s;
    -o-transition: transform 0.4s;
    transition: transform 0.4s;
    transition: transform 0.4s, -webkit-transform 0.4s;
}

.navi-sns__item path {
    fill: #606060;
}

.navi-sns__item a {
    display: block;
    pointer-events: auto;
    -webkit-transition: color 0.4s, background 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
    transition: color 0.4s, background 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
    -o-transition: color 0.4s, background 0.4s, transform 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s;
    transition: color 0.4s, background 0.4s, transform 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s;
    transition: color 0.4s, background 0.4s, transform 0.4s, opacity 0.4s, padding 0.4s, width 0.4s, letter-spacing 0.4s, -webkit-transform 0.4s;
}

.navi-sns__item a.is-hover {
    -webkit-tap-highlight-color: transparent;
}

.navi-sns__item a.is-hover img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}

.navi-list {
    padding-bottom: 7%;
    color: #464646;
}

.navi-list--lg-2col {
    padding-bottom: 15px;
}

.navi-list__item {
    position: relative;
    font: 400 1.5rem "Lato", dnp-shuei-gothic-gin-std, sans-serif;
    -webkit-transition: opacity 500ms, -webkit-transform 500ms;
    transition: opacity 500ms, -webkit-transform 500ms;
    -o-transition: transform 500ms, opacity 500ms;
    transition: transform 500ms, opacity 500ms;
    transition: transform 500ms, opacity 500ms, -webkit-transform 500ms;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0, 0);
    transform: translate3d(-50px, 0, 0);
}

.navi-list__item:nth-of-type(1) {
    -webkit-transition-delay: 0.07s;
    -o-transition-delay: 0.07s;
    transition-delay: 0.07s;
}

.navi-list__item:nth-of-type(2) {
    -webkit-transition-delay: 0.14s;
    -o-transition-delay: 0.14s;
    transition-delay: 0.14s;
}

.navi-list__item:nth-of-type(3) {
    -webkit-transition-delay: 0.21s;
    -o-transition-delay: 0.21s;
    transition-delay: 0.21s;
}

.navi-list__item:nth-of-type(4) {
    -webkit-transition-delay: 0.28s;
    -o-transition-delay: 0.28s;
    transition-delay: 0.28s;
}

.navi-list__item:nth-of-type(5) {
    -webkit-transition-delay: 0.35s;
    -o-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.navi-list__item:nth-of-type(6) {
    -webkit-transition-delay: 0.42s;
    -o-transition-delay: 0.42s;
    transition-delay: 0.42s;
}

.navi-list__item:nth-of-type(7) {
    -webkit-transition-delay: 0.49s;
    -o-transition-delay: 0.49s;
    transition-delay: 0.49s;
}

.navi-list__item:nth-of-type(8) {
    -webkit-transition-delay: 0.56s;
    -o-transition-delay: 0.56s;
    transition-delay: 0.56s;
}

.navi-list__item:nth-of-type(9) {
    -webkit-transition-delay: 0.63s;
    -o-transition-delay: 0.63s;
    transition-delay: 0.63s;
}

.navi-list__item:nth-of-type(10) {
    -webkit-transition-delay: 0.7s;
    -o-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.navi-list__item a {
    padding: 9px 0 9px 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: letter-spacing 0.4s;
    -o-transition: letter-spacing 0.4s;
    transition: letter-spacing 0.4s;
    letter-spacing: 0.1em;
}

.navi-list__item a:before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 1px;
    background: #AFAFAF;
    vertical-align: middle;
    margin: 0 5px 0 0;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.navi-list__item a span {
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.navi-list__item a span:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 0;
    height: 1px;
    background: #464646;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

.navi-list__item a .navi-list__item__en {
    display: block;
    font-size: 0.8rem;
}

.navi-list__item a .navi-list__item__jp {
    display: block;
}

.navi-switch-wrap {
    position: absolute;
    width: 31.7vw;
    height: calc(100% - 180px);
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3000;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.navi-switch {
    width: 100%;
    height: 100%;
}

.navi-switch:before {
    content: "";
    display: block;
    border: 3px solid #F4F4F4;
    border-radius: 50%;
    width: 1126px;
    height: 1126px;
    position: absolute;
    top: 50%;
    left: 7.46665vw;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
}

@media screen and (max-width: 720px) {
    .navi-switch:before {
        width: 666px;
        height: 666px;
        top: 52%;
    }
}

.navi-switch__item {
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.navi-switch__item button {
    display: block;
    background: none;
    border: none;
    padding: 0;
}

.navi-switch__label {
    display: block;
    margin: 0 auto;
    width: 14.9333vw;
    -webkit-transform: scale(0.67);
    -ms-transform: scale(0.67);
    transform: scale(0.67);
}

.navi-switch__item .navi-switch__label {
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    -o-transition: transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navi-switch__item.current {
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    z-index: 10;
}

.navi-switch__label img {
    display: block;
    width: 100%;
}

@media screen and (max-width: 450px) {
    .navi-switch__label {
        width: 21vw;
    }
}

.navi-switch__item.current .navi-switch__label {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

.navi-switch__item.current .navi-switch__text {
    top: 100%;
    font-size: 16px;
    max-width: 108px;
    width: 100%;
    white-space: nowrap;
    color: #94735F;
}

.navi-switch__item.current .navi-switch__label img {
    content: url(../img/common/img-menu-icon-on.svg);
}

.navi-switch__item.current .navi-switch__label.bikatsu-lab-icon img {
    content: url(../img/common/img-bikatsulab.png);
}

.navi-switch__text {
    font-size: 16px;
    max-width: 108px;
    white-space: nowrap;
    width: 100%;
    position: absolute;
    top: 80%;
    left: 50%;
	color:#94735F;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    letter-spacing: 0.08em;
    padding-top: 5px;
    -webkit-transition: top 400ms;
    -o-transition: top 400ms;
    transition: top 400ms;
    -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: "Noto Sans JP", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

.navi-drag {
    position: absolute;
    top: 50%;
    right: 8vw;
    width: 24px;
    height: 100px;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
    pointer-events: none;
}

@media screen and (max-width: 450px) {
    .navi-drag {
        right: 4vw;
    }
}

.navi-drag:before {
    content: "";
    display: block;
    width: 21px;
    height: 100px;
    background: url(../img/common/img-drag.svg) no-repeat center/100% 100%;
}

.navi-list-text {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 2.16;
    margin-bottom: 20px;
}

.button-page__text {
    text-align: center;
}

.text-name {
    letter-spacing: 0.1em;
    text-align: right;
    line-height: 1.72;
    margin-top: 22px;
}

.line-section {
    display: block;
    height: 9px;
    margin-bottom: 30px;
    background: url(../img/hr.svg) no-repeat top center/auto 9px, url(../img/hr.svg) no-repeat bottom center/auto 9px;
}

@media screen and (max-width: 720px) and (min-width: 721px) {
    .link--sm-on:hover {
        padding: 13px 0 13px 0;
    }
    .link--sm-on:hover:after {
        -webkit-transform: translate(72%, -50%);
        -ms-transform: translate(72%, -50%);
        transform: translate(72%, -50%);
    }
}

@media screen and (min-width: 721px) {
    .l-header {
        /* pc */
        padding: 33px 4% 0 50px;
    }
    .l-navi__head--lg-side {
        width: 200px;
        text-align: center;
        position: absolute;
        top: 50%;
        left: 14.3%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    .l-navi__head--lg-side .header-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    .l-navi__head .header-logo {
        -webkit-transition: opacity 500ms, -webkit-transform 500ms;
        transition: opacity 500ms, -webkit-transform 500ms;
        -o-transition: transform 500ms, opacity 500ms;
        transition: transform 500ms, opacity 500ms;
        transition: transform 500ms, opacity 500ms, -webkit-transform 500ms;
        -webkit-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        -o-transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 0;
        -webkit-transform: translate3d(-100px, 0, 0);
        transform: translate3d(-100px, 0, 0);
    }
    .l-navi__head--lg-wrap {
        /* pc */
        width: 50%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 40px;
    }
    .l-navi__main {
        /* pc */
        width: 80%;
        height: auto;
        margin-left: 0;
        padding-right: 20%;
        padding-bottom: 30px;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .l-navi__main--center {
        /* pc */
        text-align: center;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
    }
    .l-navi__main .l-navi__inner {
        /* pc */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        position: relative;
        z-index: 10000;
    }
    .l-navi__main .l-navi__inner .navi-list {
        /* pc */
        width: 50%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .l-navi__banners {
        /* pc */
        padding-bottom: 0;
    }
    .l-navi .link {
        /* pc */
        white-space: nowrap;
        max-width: 300px;
    }
    .l-section {
        /* pc */
        margin-bottom: 140px;
    }
    .l-section--sm-wide {
        /* pc */
        width: auto;
        left: 0;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    .l-section--mb-short {
        /* pc */
        margin-bottom: 80px;
    }
    .l-section--mb-none {
        /* pc */
        margin-bottom: 0;
    }
    .l-section--md-mb-large {
        /* pc */
        margin-bottom: 250px;
    }
    .l-section-sm {
        /* pc */
        margin-bottom: 35px;
    }
    .l-section-md {
        /* pc */
        margin-bottom: 70px;
    }
    .l-sec-line {
        /* pc */
        padding: 75px 0 90px;
    }
    .l-sec-line:not(:last-child) {
        /* pc */
        margin-bottom: 80px;
    }
    .menu-btn {
        /* pc */
        padding: 10px;
        width: 52px;
    }
    .navi-list {
        /* pc */
        width: auto;
        height: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .navi-list--lg-2col {
        /* pc */
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        padding-bottom: 20px;
        width: 100%;
    }
    .navi-list--lg-2col .navi-list__item a {
        /* pc */
        padding: 15px 20px;
    }
    .navi-list__item {
        /* pc */
        height: 54px;
        font-size: 1.8rem;
    }
    .navi-list__item a {
        /* pc */
        height: auto;
        display: block;
    }
    .navi-list__item a:hover {
        letter-spacing: 0.2em;
    }
    .navi-list__item a:hover:before {
        opacity: 0;
    }
    .navi-list__item a:hover span:after {
        width: calc(100% + 15px);
    }
    .navi-list__item a:before {
        /* pc */
        content: none;
    }
    .navi-list__item a span:after {
        /* pc */
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .navi-list__item__bottom {
        /* pc */
        text-align: right;
    }
    .navi-switch-wrap {
        /* pc */
        width: 28vw;
        height: 100%;
    }
    .navi-switch:before {
        /* pc */
        width: 1026px;
        height: 1026px;
        left: 5vw;
    }
    .navi-drag {
        /* pc */
        height: 100px;
        width: auto;
        right: 11.5vw;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .navi-drag:before {
        /* pc */
        width: 24px;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    .navi-drag span {
        /* pc */
        display: block;
        font: 400 1.2rem "Lato", dnp-shuei-gothic-gin-std, sans-serif;
        letter-spacing: 0.08em;
    }
    .navi-list-text {
        /* pc */
        font-size: 1.5rem;
    }
    @media screen and (min-width: 721px) and (min-width: 721px) {
        .l-navi__head--lg-side .header-logo img {
            /* pc */
        }
        .l-navi__head--lg-side .header-logo img[src*="_crazy"] {
            width: 186px;
        }
        .navi-list__item a:hover span:after {
            /* pc */
            width: 100%;
        }
    }
    @media screen and (min-width: 721px) and (max-height: 520px) {
        .navi-list {
            padding-top: 0;
            padding-bottom: 10px;
        }
        .navi-list__item a {
            padding: 12px 0;
        }
    }
    @media screen and (min-width: 721px) and (max-width: 1000px) {
        .navi-switch-wrap {
            width: 21vw;
        }
        .navi-switch:before {
            left: 7vw;
        }
        .navi-switch__label {
            width: 110px;
        }
        .navi-drag {
            right: 2.5vw;
        }
        .navi-drag span {
            display: none;
        }
    }
    @media screen and (min-width: 984px) {
        .l-navi__head--lg-wrap {
            /* pc */
            width: 50%;
            padding-right: 40px;
        }
        .l-navi__main {
            /* pc */
            width: 70%;
            padding-right: 0;
        }
        .l-navi__main--lg-hor {
            /* pc */
            padding-right: 210px;
        }
        .l-navi__main--lg-hor .navi-list {
            margin-bottom: 0;
        }
        .l-navi__main--lg-hor .navi-list__item a {
            padding: 12px 0;
        }
        .l-navi__banners {
            /* pc */
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
        }
        .l-navi__banners a+a {
            /* pc */
            margin-top: 0;
            margin-left: 72px;
        }
        .l-navi .link {
            /* pc */
            max-width: 100%;
            width: auto;
        }
        .l-side-content:not(:last-child) {
            /* pc */
            margin-bottom: 35px;
        }
        .l-button-2col .button {
            /* pc */
            width: calc(50% - 52px);
        }
        .navi-list--lg-2col {
            /* pc */
            padding-bottom: 30px;
        }
        .navi-list--lg-2col {
            /* pc */
            -webkit-box-orient: horizontal;
            -webkit-box-direction: normal;
            -ms-flex-direction: row;
            flex-direction: row;
        }
        .navi-list--lg-2col .navi-list__item {
            /* pc */
            width: 50%;
        }
        .navi-list__item a .navi-list__item__en {
            /* pc */
            display: inline-block;
        }
        .navi-list__item a .navi-list__item__jp {
            /* pc */
            display: inline-block;
            margin-right: 15px;
        }
        .fixed-button-fair-wrap {
            /* pc */
            top: 60px;
        }
    }
    @media screen and (min-width: 1001px) and (max-width: 1200px) {
        .navi-switch-wrap {
            width: 32vw;
        }
        .navi-switch:before {
            left: 6vw;
        }
        .navi-switch__label {
            width: 120px;
        }
        .navi-drag {
            right: 6.5vw;
        }
    }
    @media screen and (min-width: 1201px) and (max-width: 1400px) {
        .navi-switch-wrap {
            width: 30vw;
        }
        .navi-switch:before {
            left: 5vw;
        }
        .navi-switch__label {
            width: 132px;
        }
        .navi-drag {
            right: 6.5vw;
        }
    }
    @media screen and (min-width: 1401px) and (max-width: 1600px) {
        .navi-switch-wrap {
            width: 25vw;
            -webkit-transform: translateY(-50%) scale(1.1);
            -ms-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
        }
        .navi-switch:before {
            left: 4vw;
        }
        .navi-switch__label {
            width: 132px;
        }
        .navi-drag {
            right: 5.5vw;
            -webkit-transform: translate(50%, -50%) scale(1.1);
            -ms-transform: translate(50%, -50%) scale(1.1);
            transform: translate(50%, -50%) scale(1.1);
        }
    }
    @media screen and (min-width: 1601px) and (max-width: 2000px) {
        .navi-switch-wrap {
            width: 21vw;
            -webkit-transform: translateY(-50%) scale(1.1);
            -ms-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
        }
        .navi-switch:before {
            left: 3vw;
        }
        .navi-switch__label {
            width: 140px;
        }
        .navi-drag {
            right: 4.5vw;
            -webkit-transform: translate(50%, -50%) scale(1.1);
            -ms-transform: translate(50%, -50%) scale(1.1);
            transform: translate(50%, -50%) scale(1.1);
        }
    }
    @media screen and (min-width: 2001px) {
        .navi-switch-wrap {
            width: 16vw;
            -webkit-transform: translateY(-50%) scale(1.1);
            -ms-transform: translateY(-50%) scale(1.1);
            transform: translateY(-50%) scale(1.1);
        }
        .navi-switch:before {
            left: 3.5vw;
        }
        .navi-switch__label {
            width: 140px;
        }
        .navi-drag {
            right: 4vw;
            -webkit-transform: translate(50%, -50%) scale(1.1);
            -ms-transform: translate(50%, -50%) scale(1.1);
            transform: translate(50%, -50%) scale(1.1);
        }
    }
}

@media screen and (max-width: 720px) {
    .l-navi__item {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: flex-start;
        width: 50%;
    }
    .l-navi__head {
        /* sp */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: max-content;
        padding: 30px 4% 0 8%;
        display: block;
    }
    .l-navi__head ul li a {
        font-size: 16px;
    }
    .l-navi__head ul li a span {
        font-size: 10px;
    }
    .l-navi__head--lg-wrap {
        /* sp */
        padding-left: 24px;
    }
    .navi-switch__item.current .navi-switch__text {
        font-size: 12px;
        line-height: 1.2;
    }
    .navi-switch__item .navi-switch__text {
        font-size: 12px;
        line-height: 1.2;
        color: #464646;
    }
    .l-navi__main--center {
        /* sp */
        margin-top: -20px;
    }
    .l-navi__main--lg-hor {
        /* sp */
        position: relative;
    }
    .l-navi__main--lg-hor.is-long:after {
        content: "";
        display: block;
        width: 100vw;
        height: 160px;
        position: absolute;
        bottom: 0;
        left: -8vw;
        pointer-events: none;
        background: -webkit-gradient(linear, left bottom, left top, color-stop(0, white), color-stop(10%, white), to(rgba(255, 255, 255, 0)));
        background: -webkit-linear-gradient(bottom, white 0, white 10%, rgba(255, 255, 255, 0) 100%);
        background: -o-linear-gradient(bottom, white 0, white 10%, rgba(255, 255, 255, 0) 100%);
        background: linear-gradient(to top, white 0, white 10%, rgba(255, 255, 255, 0) 100%);
    }
    .l-navi__main--lg-hor.is-long .l-navi__wrapper {
        overflow-y: auto;
        padding-bottom: 140px;
    }
    .l-navi__main--lg-hor.is-long .l-navi__wrapper::-webkit-scrollbar {
        display: none;
    }
    .l-navi__main .l-navi__inner .navi-list {
        /* sp */
        padding-bottom: 0;
    }
    .canvas_container img {
        /* sp */
        width: 50vw;
    }
    .canvas_container img.logo_co {
        width: 50vw;
    }
    .canvas_container img.logo_bikatsu-lab {
        width: 65vw;
    }
    .canvas_container img.logo_lagrace {
        width: 65vw;
    }
}

@-webkit-keyframes resize {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes resize {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-webkit-keyframes rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotation {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes zoomUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        transform-origin: center top;
    }
    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        transform-origin: center top;
    }
}

@keyframes zoomUp {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        transform-origin: center top;
    }
    100% {
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
        transform-origin: center top;
    }
}

@-webkit-keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes clockwise {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* 小さな画面での重なり防止 */

@media screen and (max-width: 600px) {
    .l-navi__head--lg-wrap {
        margin-right: 40%;
    }
}

@media screen and (max-width: 500px) {
    .l-navi__head--lg-wrap {
        margin-right: 45%;
    }
}

@media screen and (max-width: 400px) {
    .l-navi__head--lg-wrap {
        margin-right: 50%;
    }
}


}