@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400&family=Noto+Color+Emoji&family=Noto+Sans+JP:wght@600&family=Zen+Maru+Gothic:wght@700&display=swap');
@font-face {
    font-family: 'Axo-M';
    src: url('/assets/font/Axo-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Axo-NM';
    src: url('/assets/font/Axo-NarrowMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Axo-WM';
    src: url('/assets/font/Axo-WideMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* ==================================================
common
================================================== */
html, body {
	width: 100%;
    height: 100%;
    font-size: 16px;
    color: #212121;
    background: #EBEBEB;
}
body {
    font-family: 'Axo-M', 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    font-feature-settings: 'lnum';
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    word-break: break-word;
    -webkit-font-smoothing: antialiased;
}
.hidden {
    opacity: 0;
    visibility: hidden;
}
/* PC */
@media screen and (min-width: 768px) , print {
    .hidden-pc,
    .display-sp,
    .br-sp {
        display: none !important;
    }
}
@media screen and (min-width: 1441px) {
    body {
        font-family: 'Axo-WM', 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    html, body {
        font-size: 15px;
    }
    body {
        font-family: 'Axo-NM', 'Zen Maru Gothic', 'Noto Sans JP', sans-serif;
    }
    .hidden-sp,
    .display-pc,
    .br-pc {
        display: none !important;
    }
    :focus {
        outline: none;
    }
}
@media screen and (max-width: 350px) {
    html, body {
        font-size: 4vw;
    }
}
/* --------------------------------------------------
font, text
-------------------------------------------------- */
#loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #EBEBEB;
    z-index: 9999;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.5s ease;
}
#loading.is-hidden {
    opacity: 0;
}
/* --------------------------------------------------
font, text
-------------------------------------------------- */
dl dt {
    font-weight: normal;
}
sup, sub {
    font-size: 0.6em;
}
em {
    display: inline-block;
    font-style: normal;
    transform: skewX(-5deg);
}
.small {
    font-size: 0.8em;
}
.txtcolor-white * {
    color: #FFFFFF;
}
.lan-en {
    word-spacing: 0.1em;
}
.lan-emoji {
    font-family: 'Apple Color Emoji', 'Twemoji Mozilla', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}
.dash {
    font-family: 'Inter', sans-serif;
}
.char-wrap {
    display: inline-block;
    white-space: nowrap;
}
.char-ja {
    font-size: 0.95em;
}
.char-emoji {
    font-size: 0.95em;
    margin: 0 0.1em;
}
/* PC */
@media screen and (min-width: 1441px) {
    .char-ja {
        display: inline-block;
        transform: scaleX(1.1);
        margin-right: 0.1em;
    }
    .char-en + .char-ja {
        margin-left: 0.1em;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .char-ja {
        display: inline-block;
        transform: scaleX(0.8);
        margin-right: -0.2em;
    }
    .char-ja + .char-en,
    .char-inner > .char-en:first-child {
        margin-left: 0.2em;
    }
}
/* --------------------------------------------------
link, btn
-------------------------------------------------- */
a, a .hover-line {
    cursor: pointer;
}
a .hover-line,
.lan-en a,
.lan-ja a {
    border-bottom: #212121 1px solid;
}
a:hover .hover-line,
.lan-en a:hover,
.lan-ja a:hover {
    border: none;
}
a.no-link {
    color: #828282;
    cursor: not-allowed;
}
/* --------------------------------------------------
img
-------------------------------------------------- */
img {
    width: 100%;
    height: auto;
}

/* ==================================================
header
================================================== */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
}
#header .header-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 2rem;
}
#header #site-ttl,
#header #g-nav {
    font-size: 1.05em;
}
#header #g-nav .g-nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: flex-end;
}
#header #g-nav .g-nav-list li {
    margin-left: 1em;
}
/* #header a.current { text-transform: uppercase; } */
/* SP */
@media screen and (max-width: 767px) {
    #header .header-inner {
        padding: 2.666vw 4vw;
    }
    #header #g-nav .g-nav-list li {
        margin-left: 0.5em;
    }
}
/* --------------------------------------------------
list-header
-------------------------------------------------- */
#list-header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
#list-nav {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    font-size: 1.05em;
}
#list-nav .list-nav-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}
#list-nav .viewmode-list {
    justify-content: flex-start;
}
#list-nav .viewmode-list li {
    margin-right: 1em;
}
#list-nav .pj-cat-list {
    flex: auto;
    justify-content: center;
}
#list-nav .side-list {
    justify-content: flex-end;
}
#list-nav .side-list li {
    margin-left: 1em;
}
/* #list-nav a.current { text-transform: uppercase; } */
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #list-nav {
        padding: 0 2rem 1.5rem;
    }
    #list-nav .pj-cat-list li {
        margin: 0 0.5em;
    }
}
/* Tablet, SP */
@media screen and (max-width: 1024px) {
    #list-nav .pj-cat-list {
        width: 33.333%;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #list-nav {
        padding: 0 4vw 2.666vw;
    }
    #list-nav .viewmode-list li:has(> a.current) {
        display: none;
    }
    #list-nav .pj-cat-list li {
        margin: 0 0.25em;
    }
}
/* ==================================================
footer
================================================== */
#footer {
    width: 100%;
}
#footer .footer-inner {
    width: 100%;
    padding: 1.5rem 2rem;
}
#footer .footer-copy {
    display: block;
    font-size: 10px;
    text-align: right;
}
#home #footer,
#projects-shelf #footer,
#projects-showcase #footer {
    overflow: hidden;
    height: 1px;
}
/* SP */
@media screen and (max-width: 767px) {
    #footer .footer-inner {
        padding: 2.666vw 4vw;
    }
}

/* ==================================================
contents
================================================== */
.contents-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    box-sizing: border-box;
}
@supports not (min-height: 100dvh) {
    .contents-wrapper {
        min-height: calc(var(--vh, 1vh) * 100);
    }
}
#barba-container {
    flex: 1;
}
#contents {
    padding-top: 7.5rem;
    padding-bottom: 4.5rem;
}
#contents .page-cont {
    padding-top: 6rem;
}
#contents .page-cont-wrap .page-cont:first-child {
    padding-top: 0;
}
/* SP */
@media screen and (max-width: 767px) {
    #contents {
        padding-top: 6rem;
    }
    #contents .page-cont {
        padding-top: 4.5rem;
    }
}
/* --------------------------------------------------
w
-------------------------------------------------- */
/* PC */
@media screen and (min-width: 1025px) , print {
    .w01 {
        padding: 0 17.777%;
    }
    .w02 {
        padding: 0 11.111%;
    }
    .w03 {
        padding: 0 4rem;
    }
}
/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .w01,
    .w02 {
        padding: 0 8.888%;
    }
    .w03 {
        padding: 0 3rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .w01,
    .w02,
    .w03 {
        padding: 0 5.333vw;
    }
}
/* --------------------------------------------------
cont-ttl
-------------------------------------------------- */
#contents .cont-ttl01 {
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.03em;
}
#contents .cont-ttl02 {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #contents .cont-ttl01 {
        padding-bottom: 1.5rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #contents .cont-ttl01 {
        padding-bottom: 1.25rem;
    }
}
/* ==================================================
comp
================================================== */
.comp-empty {
    text-align: center;
    margin: 1em 0;
    color: #FFFFFF;
}
/* --------------------------------------------------
comp-txt-wrap, comp-txtbox
-------------------------------------------------- */
.comp-txt-wrap .lan-en {
    margin-top: 0.5em;
}
.comp-txt-wrap ul li {
    text-indent: -1em;
    margin-left: 1em;
    margin-top: 0.5em;
    line-height: 1.75;
}
.comp-txt-wrap ul li:first-child {
    margin-top: 0;
}
.comp-txt-wrap ul li::before {
    content: '';
    display: inline-block;
    width: 0.5em;
    height: 0.5em;
    vertical-align: 0.125em;
    background-color: #FFFFFF;
    border-radius: 50%;
    margin-right: 0.5em;
}
.comp-txt-wrap p:first-child {
    margin-top: 0 !important;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-txt-wrap .lan-ja p {
        line-height: 2;
        margin-top: 1em;
    }
    .comp-txt-wrap .lan-en p {
        line-height: 1.6;
        margin-top: 0.75em;
    }
}
/* PC */
@media screen and (min-width: 1025px) , print {
    .comp-txtbox {
        width: 80%;
    }
    .comp-txtbox .lan-en {
        width: 88%;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-txt-wrap .lan-ja p {
        line-height: 1.75;
        margin-top: 0.75em;
    }
    .comp-txt-wrap .lan-en p {
        line-height: 1.5;
        margin-top: 0.5em;
    }
}
/* --------------------------------------------------
comp-disc
-------------------------------------------------- */
.comp-disc {
    display: flex;
    flex-wrap: nowrap;
    margin-top: 0.5em;
}
.comp-disc-wrap .comp-disc:first-child {
    margin-top: 0;
}
.comp-disc::before {
    content: '●';
    font-size: 0.5rem;
    line-height: 1.75rem;
    color: #FFFFFF;
    margin-right: 1em;
}
.comp-disc .lan-ja {
    line-height: 1.75;
}
/* --------------------------------------------------
comp-dl
-------------------------------------------------- */
.comp-dl-wrap .comp-dl:last-child {
    margin-bottom: 0;
}
.comp-dl .comp-dt {
    font-size: 0.8rem;
}
.comp-dl .comp-dd {
    line-height: 1.75;
}
.comp-dl .comp-dd {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5em;
}
.comp-tag-list li {
    display: inline-block;
}
.comp-tag-list li::after {
    content: ', ';
    margin-left: 0.1em;
}
.comp-tag-list li:last-child::after {
    content: '';
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-dl {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        justify-content: space-between;
        margin-bottom: 1rem;
    }
    .comp-dl .comp-dt {
        width: 6rem;
        padding-right: 1rem;
        padding-top: 0.25rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-dl {
        margin-bottom: 1.5rem;
    }
    .comp-dl .comp-dt {
        padding-bottom: 0.5rem;
    }
}

/* --------------------------------------------------
comp-btn
-------------------------------------------------- */
.comp-btn-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.comp-btn a {
    display: inline-block;
    padding: 0.75em 1.5em;
    background-color: #FFFFFF;
    border-radius: 3em;
}
.comp-btn a.no-link {
    background-color: #CCCCCC !important;
}
/* --------------------------------------------------
comp-iconbtn
-------------------------------------------------- */
.comp-iconbtn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.comp-iconbtn a {
    display: block;
    width: 100%;
    height: 100%;
}
.comp-iconbtn .comp-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    border-radius: 2rem;
}
.comp-iconbtn .comp-emoji {
    text-align: center;
    background-color: #F5F5F5;
    border-radius: 50%;
}
.comp-iconbtn .comp-ttl {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-iconbtn-wrap {
        justify-content: center;
        margin: -1rem;
    }
    .comp-iconbtn {
        width: 25%;
        padding: 1rem;
    }
    .comp-iconbtn .comp-inner {
        padding: 1.75rem 1.5rem;
    }
    .comp-iconbtn .comp-emoji {
        width: 7.777vw;
        height: 7.777vw;
        font-size: 3.125vw;
        line-height: 7.777vw;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-iconbtn-wrap {
        justify-content: flex-start;
        margin: -2vw;
    }
    .comp-iconbtn {
        width: 50%;
        padding: 2vw;
    }
    .comp-iconbtn .comp-inner {
        padding: 5.333vw 4vw;
    }
    .comp-iconbtn .comp-emoji {
        width: 16vw;
        height: 16vw;
        font-size: 6.4vw;
        line-height: 16vw;
    }
}
/* --------------------------------------------------
comp-iconbox
-------------------------------------------------- */
.comp-iconbox-wrap {
    display: flex;
}
.comp-iconbox .comp-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 2rem;
}
.comp-iconbox .comp-emoji {
    text-align: center;
    background-color: #F5F5F5;
    border-radius: 50%;
}
.comp-iconbox .comp-ttl {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    margin-top: 0.5rem;
}
.comp-iconbox .comp-txt-wrap {
    flex: 1;
    width: 100%;
}
.comp-iconbox .comp-txt-wrap p {
    margin-top: 0.25em !important;
}
.comp-iconbox .comp-txt-wrap .lan-ja p {
    line-height: 1.75;
}
.comp-iconbox .comp-btn-wrap {
    align-items: center;
}
.comp-iconbox .comp-btn a {
    background-color: #F5F5F5;
}
/* PC */
@media screen and (min-width: 1025px) , print {
    .comp-iconbox-wrap {
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: space-between;
        margin: -1rem;
    }
    .comp-iconbox {
        width: 50%;
        padding: 1rem;
    }
    .comp-iconbox .comp-inner {
        height: 100%;
        gap: 1.5rem;
        padding: 3rem 3.5rem;
    }
    .comp-iconbox .comp-emoji {
        width: 7.777vw;
        height: 7.777vw;
        font-size: 3.125vw;
        line-height: 7.777vw;
    }
    .comp-iconbox .comp-btn-wrap {
        margin-top: 0.5rem;
    }
}
/* Tablet, SP */
@media screen and (max-width: 1024px) {
    .comp-iconbox-wrap {
        flex-direction: column;
        gap: 1.5rem;
    }
    .comp-iconbox .comp-inner {
        gap: 1rem;
        padding: 2.5rem 8vw;
    }
    .comp-iconbox .comp-emoji {
        width: 24vw;
        height: 24vw;
        font-size: 9.6vw;
        line-height: 24vw;
    }
    .comp-iconbox .comp-btn-wrap {
        margin-top: 0.75rem;
    }
}
/* --------------------------------------------------
comp-locker
-------------------------------------------------- */
.comp-locker .comp-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 2rem;
}
.comp-locker .comp-btn a {
    background-color: #F5F5F5;
}
.comp-locker .comp-body {
    width: 100%;
}
.comp-locker .comp-ttl-ja {
    font-size: 1.1rem;
}
.comp-locker .comp-ttl-en {
    margin-top: 0.25em;
}
.comp-locker .comp-ttl-wrap {
    margin-bottom: 1.75rem;
}
.comp-locker .comp-txt-wrap .lan-ja p {
    line-height: 1.75;
}
.comp-locker .comp-txt-wrap .lan-en {
    margin-top: 1.5rem;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-locker .comp-inner {
        gap: 3rem;
        padding: 4.5rem 6rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-locker .comp-inner {
        gap: 2rem;
        padding: 2.5rem 8vw;
    }
    .comp-locker .comp-header {
        margin-bottom: 0.25rem;
    }
}
/* --------------------------------------------------
comp-drawer
-------------------------------------------------- */
.comp-drawer {
    border-top: #CCCCCC 1px solid;
}
.comp-drawer-wrap .comp-drawer:first-child {
    border: none;
    padding-top: 0;
}
.comp-drawer-handle {
    cursor: pointer;
}
.comp-drawer-handle .cont-ttl01 {
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-transform: uppercase; */
}
/* .comp-drawer.is-close .comp-drawer-handle .cont-ttl01 { text-transform: unset; } */
.comp-drawer-handle .cont-ttl01::after {
    content: '+';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-left: 0.25em;
    text-indent: -9999%;
    overflow: hidden;
    background-image: url(/assets/img/btn_minus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 70% auto;
}
.comp-drawer.is-close .comp-drawer-handle .cont-ttl01::after {
    background-image: url(/assets/img/btn_plus.svg);
}
.comp-drawer-body {
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-drawer {
        padding-top: 1.5rem;
    }
    .comp-drawer-body::before {
        content: '';
        display: block;
        padding-top: 1rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-drawer {
        padding-top: 1.25rem;
    }
}
/* --------------------------------------------------
comp-pj-showcase
-------------------------------------------------- */
.comp-pj-showcase-wrap {
    display: flex;
}
.comp-pj-showcase a {
    display: block;
}
.comp-pj-showcase .comp-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
}
.comp-pj-showcase .comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comp-pj-showcase .comp-img.no-img {
    background-color: #FFFFFF;
}
.comp-pj-showcase .comp-ttl-ja {
    font-size: 0.9em;
    margin-top: 1em;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-pj-showcase-wrap {
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        margin: -1.5rem -1rem;
    }
    .comp-pj-showcase {
        padding: 1.5rem 1rem;
    }
}
/* PC */
@media screen and (min-width: 1025px) , print {
    .comp-pj-showcase {
        width: 33.333%;
    }
}
/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .comp-pj-showcase {
        width: 50%;
    }
    .comp-pj-showcase .comp-ttl-ja {
        display: none;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-pj-showcase-wrap {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 2.666vw;
    }
    .comp-pj-showcase {
        width: 100%;
    }
    .comp-pj-showcase .comp-ttl-ja {
        display: none;
    }
}
/* --------------------------------------------------
comp-pj-shelf
-------------------------------------------------- */
.comp-pj-shelf-wrap {
    border-bottom: #CCCCCC 1px solid;
}
.comp-pj-shelf {
    border-top: #CCCCCC 1px solid;
}
.comp-pj-shelf .comp-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}
.comp-pj-shelf .comp-ttl-ja {
    flex: 1;
    padding: 1.5em 1.5em 1.5em 0;
    color: #828282;
    cursor: not-allowed;
}
.comp-pj-shelf a .comp-ttl-ja {
    color: #212121;
    cursor: pointer;
}
.comp-pj-shelf .comp-img {
    padding: 0.5rem 0;
}
.comp-pj-shelf .comp-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    overflow: hidden;
    object-fit: cover;
}
.comp-pj-shelf .comp-img.no-img::after {
    content: '';
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    background-color: #FFFFFF;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-pj-shelf .comp-inner {
        padding: 0 0.5rem;
    }
    .comp-pj-shelf .comp-img {
        width: 9.42%;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-pj-shelf .comp-inner {
        padding: 0 2.666vw;
    }
    .comp-pj-shelf .comp-img {
        width: 16vw;
    }
}
/* --------------------------------------------------
comp-pj-visual
-------------------------------------------------- */
.comp-pj-visual,
.comp-pj-visual-full {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.comp-pj-visual .comp-img,
.comp-pj-visual .comp-img img,
.comp-pj-visual-full .comp-img,
.comp-pj-visual-full .comp-img img {
    width: 100%;
    height: 100%;
}
.comp-pj-visual .comp-img img {
    object-fit: contain;
}
.comp-pj-visual-full .comp-img img {
    object-fit: cover;
}
.comp-pj-visual figcaption {
    font-size: 11px;
    text-align: right;
}
.comp-pj-visual .comp-video {
    position: relative;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
}
.comp-pj-visual .comp-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-pj-visual,
    .comp-pj-visual-full {
        height: 100vh;
    }
    .comp-pj-visual {
        padding: 4.5rem 11.111%;
    }
    .comp-pj-visual figcaption {
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        padding: 1.5rem 2rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-pj-visual-wrap {
        padding: 4.5rem 0;
    }
    .comp-pj-visual,
    .comp-pj-visual-full {
        height: auto;
    }
    .comp-pj-visual,
    .comp-pj-visual-full {
        padding: 4.5rem 0;
    }
    .comp-pj-visual {
        padding-left: 4vw;
        padding-right: 4vw;
    }
    .comp-pj-visual img,
    .comp-pj-visual-full img {
        max-height: 100vw;
    }
    .comp-pj-visual-full img {
        height: auto;
        aspect-ratio: 1/1;
        overflow: hidden;
    }
    .comp-pj-visual figcaption {
        width: 100%;
        padding: 1em 2.666vw 0;
    }
}
/* --------------------------------------------------
comp-info-visual
-------------------------------------------------- */
.comp-info-visual .comp-img {
    width: 100%;
}
.comp-info-visual .comp-img img {
    width: 100%;
    height: auto;
    overflow: hidden;
    object-fit: cover;
}
.comp-info-visual .comp-img figcaption {
    font-size: 11px;
    text-align: right;
    margin-top: 0.5em;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-info-visual .comp-img img {
        aspect-ratio: 3/2;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-info-visual {
        margin-left: -2.666vw;
        margin-right: -2.666vw;
    }
    .comp-info-visual .comp-img img {
        aspect-ratio: 5/4;
    }
}
/* --------------------------------------------------
comp-news
-------------------------------------------------- */
.comp-news-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
}
.comp-news a {
    display: block;
    text-align: center;
    border-radius: 50%;
    background-color: #FFFFFF;
}
.comp-news-detail .comp-emoji {
    text-align: center;
    background-color: #F5F5F5;
    border-radius: 50%;
}
.comp-news-detail .comp-date {
    font-size: 10px;
    margin-top: 2rem;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-news {
        margin-right: 0.75rem;
    }
    .comp-news a {
        font-size: 1.75rem;
        width: 3.5rem;
        height: 3.5rem;
        line-height: 3.5rem;
    }
    .comp-news-detail .comp-emoji {
        width: 11.111vw;
        height: 11.111vw;
        font-size: 4.444vw;
        line-height: 11.111vw;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-news {
        margin-right: 0.5rem;
    }
    .comp-news a {
        font-size: 1.5rem;
        width: 3rem;
        height: 3rem;
        line-height: 3rem;
    }
    .comp-news-detail .comp-emoji {
        width: 32vw;
        height: 32vw;
        font-size: 12.8vw;
        line-height: 32vw;
    }
}

/* --------------------------------------------------
comp-member
-------------------------------------------------- */
.comp-member-wrap {
    display: flex;
}
.comp-member-detail .comp-header,
.comp-member-detail .comp-img,
.comp-member .comp-img {
    width: 100%;
}
.comp-member-detail .comp-img {
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.comp-member-detail .comp-img img,
.comp-member .comp-img img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    object-fit: cover;
}
.comp-member .comp-img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #FFFFFF;
}
.comp-member .comp-img img.comp-img02 {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.comp-member .comp-ttl-wrap {
    margin-top: 1rem;
}
.comp-member .comp-ttl-en {
    margin-top: 0.25em;
}
.comp-member .comp-job {
    font-size: 0.8rem;
    margin-top: 0.5em;
}
.comp-member-detail .comp-job {
    font-size: 0.8rem;
    margin-top: 0.75em;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    .comp-member-wrap {
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        margin-left: -1rem;
        margin-right: -1rem;
    }
    .comp-member {
        width: 33.333%;
        padding: 0 1rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-member-wrap {
        flex-direction: column;
        gap: 2.5rem;
    }
}
/* --------------------------------------------------
comp-faq
-------------------------------------------------- */
.comp-faq-wrap .comp-faq:first-child {
    margin-top: 0;
}
.comp-faq .comp-question,
.comp-faq .comp-answer {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
}
.comp-faq .comp-question::before,
.comp-faq .comp-answer::before {
    display: block;
    font-size: 1.5rem;
    line-height: 1.75rem;
    text-align: center;
    margin-right: 0.5em;
    color: #FFFFFF;
}
.comp-faq .comp-question::before {
    content: 'Q';
}
.comp-faq .comp-answer::before {
    content: 'A';
}
.comp-faq .comp-txt-wrap {
    flex: 1;
}
.comp-faq .comp-txt-wrap .lan-ja p,
.comp-faq .comp-txt-wrap .lan-en p {
    margin-top: 0.5em;
}
.comp-faq .comp-txt-wrap .lan-ja p {
    line-height: 1.75;
}
.comp-faq .comp-txt-wrap .lan-en {
    margin-top: 0.25em;
}
.comp-faq .comp-answer {
    margin-top: 0.5em;
}
/* PC, Tablet */
@media screen and (min-width: 1441px) {
    .comp-faq .comp-question::before,
    .comp-faq .comp-answer::before {
        width: 1.5em;
    }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
    .comp-faq .comp-question::before,
    .comp-faq .comp-answer::before {
        width: 1em;
    }
}
@media screen and (min-width: 768px) , print {
    .comp-faq {
        margin-top: 3rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    .comp-faq .comp-question::before,
    .comp-faq .comp-answer::before {
        width: 0.5em;
    }
    .comp-faq {
        margin-top: 2.5rem;
    }
}

/* ==================================================
home
================================================== */
#home #contents {
    padding-bottom: 0;
    margin-bottom: -1px;
}
/* --------------------------------------------------
home-pj-window
-------------------------------------------------- */
#home-pj-window {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
#home-pj-window .comp-pj-window .comp-img {
    position: relative;
    width: 100%;
    height: 100%;
}
#home-pj-window .comp-pj-window .comp-img figcaption {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    font-size: 0.8rem;
    text-align: right;
}
#home-pj-window .comp-pj-window .lan-ja a {
    border: none;
}
#home-pj-window .comp-pj-window .comp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #home-pj-window .comp-pj-window .comp-img figcaption {
        padding: 1.5rem 2rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #home-pj-window .comp-pj-window .comp-img figcaption {
        padding: 2.666vw 4vw;
    }
}
/* --------------------------------------------------
news
-------------------------------------------------- */
#home-news {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #home-news {
        padding: 1.5rem 2rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #home-news {
        padding: 4vw;
    }
}

/* ==================================================
information
================================================== */
#information .info-cont {
    margin-bottom: 3rem;
}
#info-press .comp-disc .small,
#info-lecture .comp-disc .small,
#info-news .comp-disc .small {
    display: inline-block;
}
#info-statement .comp-txt-wrap .lan-en {
    margin-top: 1.5em;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #information .info-cont .cont-body {
        padding: 0 0.5rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #information .info-cont .cont-body {
        padding: 0 2.666vw;
    }
}

/* ==================================================
members
================================================== */
#members-detail .cont-ttl01 {
    text-transform: uppercase;
}
#members-detail .cont-footer .comp-member .comp-ttl-wrap {
    display: none;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #members-detail .cont-footer .page-cont .cont-body {
        padding: 0 0.5rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #members-detail .cont-footer .page-cont .cont-body {
        padding: 0 2.666vw;
    }
    #members-detail .cont-footer .comp-member-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
        margin: -1rem -2vw;
    }
    #members-detail .cont-footer .comp-member {
        width: 50%;
        padding: 1rem 2vw;
    }
}
/* ==================================================
news
================================================== */
#news-detail .cont-ttl01 {
    text-transform: uppercase;
}

/* ==================================================
projects
================================================== */
#projects-detail #contents {
    padding-top: 0;
}
#pj-detail-close-btn {
    position: fixed;
    display: block;
    text-indent: -9999%;
    overflow: hidden;
    background-image: url(/assets/img/btn_close.svg);
    background-repeat: no-repeat;
    background-position: center;
    z-index: 100;
}
#pj-detail-body {
    background-color: #FFFFFF;
}
#projects-detail .detail-ttl-ja {
    font-size: 1.1rem;
    line-height: 1.75;
}
#projects-detail .detail-ttl-en {
    line-height: 1.6;
    margin-top: 0.25em;
}
#projects-detail .detail-cont {
    margin-bottom: 3rem;
}
#projects-detail .detail-cont-wrap .detail-cont:last-child {
    margin: 0;
}
#projects-detail .detail-ttl-wrap {
    margin-bottom: 2.5rem;
}
#pj-outline .comp-txt-wrap .lan-en {
    margin-top: 1.5em;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #pj-detail-close-btn {
        top: 1rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        background-size: 80% auto;
    }
    #projects-detail .detail-cont .cont-body {
        padding: 0 0.5rem;
    }
    #pj-detail-footer {
        margin-top: 6rem;
    }
    #projects-detail .comp-pj-showcase {
        width: 25%;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #pj-detail-close-btn {
        top: 0;
        right: 0;
        width: 14.666vw;
        height: 14.666vw;
        background-size: 6.666vw auto;
    }
    #projects-detail .detail-cont .cont-body {
        padding: 0 2.666vw;
    }
    #pj-detail-footer {
        margin-top: 4.5rem;
    }
    #projects-detail .comp-pj-showcase-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: 0;
        margin: -1rem -2vw;
    }
    #projects-detail .comp-pj-showcase {
        width: 50%;
        padding: 1rem 2vw;
    }
}

/* ==================================================
locker
================================================== */
body.locker-open {
    overflow: hidden;
}
#locker-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    display: none;
}
#locker-wrapper::before{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
#locker-wrapper.is-open {
    display: block;
}
#locker-wrapper.is-open.no-scroll {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#locker-wrapper .locker-container-wrap {
    position: relative;
    margin-top: 3rem;
    margin-bottom: 3rem;
}
#locker-close-btn {
    position: absolute;
    display: block;
    text-indent: -9999%;
    overflow: hidden;
    background-image: url(/assets/img/btn_close.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.locker-sr-ttl {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}
/* PC, Tablet */
@media screen and (min-width: 768px) , print {
    #locker-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        width: 2.5rem;
        height: 2.5rem;
        background-size: 80% auto;
    }
    #locker-wrapper .comp-locker .comp-header {
        margin-top: 0.5rem;
    }
}
/* SP */
@media screen and (max-width: 767px) {
    #locker-wrapper .w01 {
        padding: 0 4vw;
    }
    #locker-close-btn {
        top: 1.333vw;
        right: 1.333vw;
        width: 14.666vw;
        height: 14.666vw;
        background-size: 6.666vw auto;
    }
    #locker-wrapper .comp-locker .comp-header {
        margin-top: 8vw;
    }
}

/* ==================================================
animation
================================================== */
@keyframes fuyofuyo {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
/* --------------------------------------------------
closebtn, handle
-------------------------------------------------- */
#locker-close-btn,
#pj-detail-close-btn,
.comp-drawer.is-close .comp-drawer-handle .cont-ttl01::after {
    transition: transform 0.3s;
}
#locker-close-btn:hover,
#pj-detail-close-btn:hover,
.comp-drawer.is-close .comp-drawer-handle .cont-ttl01:hover:after {
    animation: fuyofuyo 1.5s ease-in-out infinite;
}
/* --------------------------------------------------
comp-btn
-------------------------------------------------- */
.comp-btn a {
    transition: background 0.3s cubic-bezier(0.25,0.46,0.45,0.94); /* easeOutQuad */
}
.comp-btn a:hover {
    background-color: #CCCCCC !important;
}
/* --------------------------------------------------
comp-iconbtn
-------------------------------------------------- */
.comp-iconbtn a .comp-emoji {
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), background 0.3s cubic-bezier(0.25,0.46,0.45,0.94); /* easeOutQuad */
}
.comp-iconbtn a:hover .comp-emoji {
    transform: rotate(360deg);
    background-color: #EBEBEB;
}
/* --------------------------------------------------
comp-news
-------------------------------------------------- */
.comp-news a {
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), background 0.3s cubic-bezier(0.25,0.46,0.45,0.94); /* easeOutQuad */
}
.comp-news a:hover {
    transform: rotate(360deg);
    background-color: #EBEBEB;
}
/* --------------------------------------------------
comp-pj-showcase
-------------------------------------------------- */
/* PC */
@media screen and (min-width: 1025px) , print {
    .comp-pj-showcase .comp-ttl-ja {
        opacity: 0;
        transition: opacity 0.3s cubic-bezier(0.25,0.46,0.45,0.94); /* easeOutQuad */
    }
    .comp-pj-showcase:hover .comp-ttl-ja {
        opacity: 1;
    }
}
/* --------------------------------------------------
comp-member
-------------------------------------------------- */
/* PC */
@media screen and (min-width: 1025px) , print {
    .comp-member .comp-img img {
        transition: opacity 0.3s cubic-bezier(0.25,0.46,0.45,0.94); /* easeOutQuad */
    }
    .comp-member a:hover .comp-img img.comp-img01 {
        opacity: 1;
    }
    .comp-member a:hover .comp-img img.comp-img02 {
        opacity: 0;
    }
    .comp-member a:hover .comp-img img.comp-img01  {
        opacity: 0;
    }
    .comp-member a:hover .comp-img img.comp-img02 {
        opacity: 1;
}
}
/* --------------------------------------------------
comp-drawer
-------------------------------------------------- */
.comp-drawer .comp-drawer-handle .dw-text {
    display: inline;
    text-transform: none;
    letter-spacing: inherit;
    line-height: 1;
    vertical-align: text-bottom;
}
.comp-drawer .comp-drawer-handle .dw-char {
    display: inline-block;
    overflow: hidden;
    opacity: 0;
    width: 0;
}
.comp-drawer .comp-drawer-handle .dw-char.show {
    opacity: 1 !important;
    width: auto !important;
}
.comp-drawer .comp-drawer-handle .dw-text.dw-mode-lower {
    text-transform: none;
}
.comp-drawer .comp-drawer-handle .dw-text.dw-mode-upper {
    text-transform: uppercase;
}
/* --------------------------------------------------
header
-------------------------------------------------- */
#header a span,
#list-header a span {
    display: inline-block;
    overflow: hidden;
}
#header a.anim-leave span,
#list-header a.anim-leave span {
    opacity: 0;
    width: 0;
}
#header a.current span,
#list-header a.current span {
    opacity: 0;
    width: 0;
    text-transform: uppercase;
    display: inline-block;
    overflow: hidden;
}
#header a.current span.show,
#list-header a.current span.show {
    opacity: 1 !important;
    width: auto !important;
}
/* --------------------------------------------------
locker
-------------------------------------------------- */
@keyframes locker-pop-in{
    0% { opacity: 0; transform: scale(0.99); }
    60% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes locker-pop-out{
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.99); }
}
.locker-container-wrap{
    position: relative;
    transform-origin: 50% 50%;
    animation: none;
}
#locker-wrapper::before{
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s cubic-bezier(0.39,0.57,0.56,1); /* easeOutSine */
}
#locker-wrapper.is-open::before{
    background: rgba(0,0,0,.25);
}
#locker-wrapper.is-open .locker-container-wrap{
    animation: locker-pop-in 0.45s cubic-bezier(0.39,0.57,0.56,1) forwards; /* easeOutSine */
}
#locker-wrapper.is-leaving .locker-container-wrap{
    animation: locker-pop-out 0.3s cubic-bezier(0.39,0.57,0.56,1) forwards; /* easeOutSine */
}

/* ==================================================
error
================================================== */
#error .comp-txt-wrap p {
    text-align: center;
}