@charset "utf-8";

/*---------------------------------
Font
---------------------------------*/
/* English
---------------------------------*/
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Roboto';
    src: url('../font/Roboto-Italic.ttf') format('truetype');
    font-style: italic;
}


/*---------------------------------
Variable
---------------------------------*/
:root{

    --color-important: #FF3838;
    --color-important-rgb: 255,56,56;

    --color-bk: #000;
    --color-bk-rgb: 0,0,0;

    --color-dark: #333;
    --color-dark-rgb: 51,51,51;

    --color-medium: #747474;
    --color-medium-rgb: 116,116,116;

    --color-neutral: #EAEAEA;
    --color-neutral-rgb: 234,234,234;

    --color-light: #FAFAFA;
    --color-light-rgb: 250,250,250;

    --color-wh: #fff;
    --color-wh-rgb: 255,255,255;

    --color-creator: #F78B8B;
    --color-creator-rgb: 247,139,139;

    --color-estate: #FAB065;
    --color-estate-rgb: 250,176,101;

    --color-casting: #F2E979;
    --color-estate-rgb: 242,233,121;

    --color-smart: #8EEFAC;
    --color-smart-rgb: 142,239,172;

    --color-workshop: #9FD3F8;
    --color-workshop-rgb: 159,211,248;

    --color-blog: #A1ABFD;
    --color-blog-rgb: 161,171,253;

    --color-games: #E0A8F5;
    --color-games-rgb: 224,168,245;

    --font-en: "Roboto";

    --size-xs: 4px;

    --size-s: 8px;

    --size-m: 16px;

    --size-m: 24px;

    --size-l: 32px;

    --size-xl: 40px;
}
@media (min-width: 768px) {
    :root{

        --size-xs: 8px;

        --size-s: 16px;

        --size-m: 32px;

        --size-m: 48px;

        --size-l: 64px;

        --size-xl: 80px;
    }
}

/*---------------------------------
Reset
---------------------------------*/
html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    background: var(--color-wh);
}
body {
    margin: 0;
    font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN","メイリオ",Meiryo, 'Noto Sans JP', "游ゴシック", YuGothic, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
    color: var(--color-bk);
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
div {
    box-sizing: border-box;
}
a {
    color: var(--color-bk);
}

a:visited {
    color: var(--color-bk);
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
ol {
    padding-left: 1.6rem;
}
img {
    width: 100%;
}
p {
    margin: 0;
}
p + p {
    margin: var(--size-s) 0 0 0;
}
strong {
    color: #fd7a9f;
}
li {
    font-size: 1.6rem;
}
pre {
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: auto;
}
@media (min-width: 768px) {
    a {
        transition: color .3s;
    }
    a:hover {
        color: var(--color-dark);
    }
}

/*---------------------------------
Common
---------------------------------*/
#wrapper {
    position: relative;
    min-height: 100%;
    height: auto;
    box-sizing:border-box;
    animation: fadein 2s ease 0s 1 normal;
    -webkit-animation: fadein 2s ease 0s 1 normal;
    padding-top: 56px;
}
.page_content {
    padding: 70px 0 80px;
}
.container {
    margin: 0 16px;
}
.inner {
    background: #D9D9D9;
    color: var(--color-bk);
    padding: 16px;
}
.inner a {
    color: var(--color-bk);
}
.image img {
    max-width: 100%;
}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}
@media (min-width: 768px) {
    #wrapper {
        padding-top: 80px;
    }
    .page_content {
        padding: 80px 0;
    }
    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
    .container {
        max-width: 1280px;
        padding: 0 40px;
        margin: 0 auto;
    }
    .inner {
        padding: 40px;
    }
}

/*
Btn
---------------------------------*/
.btn_wrapper {
    margin-top: 48px;
}
a.btn {
    position: relative;
    display: block;
    text-align: center;
    color: var(--color-wh);
    font-weight: 700;
    background: var(--color-bk);
    padding: 14px;
    z-index: 2;
    transition: transform .3s;
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    text-decoration: none;
    max-width: 200px;
    margin: 0 auto;
}
.btn::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: var(--color-wh);
    height: 1px;
    width: 24px;
    transform-origin: right;
    transition: transform .3s;
}
.btn::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -24px;
    margin: auto;
    background: var(--color-bk);
    height: 1px;
    width: 24px;
    transform-origin: left;
    transition: transform .3s;
}
a.btn:hover {
    text-decoration: none;
}
@media (min-width: 768px) {

    a.btn {
        max-width: 240px;
        font-size: 1.6rem;
        padding: 12px;
        transition: box-shadow .3s;
    }
    .btn::before {
        width: 32px;
    }
    .btn::after {
        right: -32px;
        width: 32px;
    }
    a.btn:hover {
        box-shadow: 0 4px 8px rgba(var(--color-bk-rgb),0.1), 
                    0 8px 16px rgba(var(--color-bk-rgb), 0.1);
    }
    a.btn:hover::before {
        transform: scaleX(.5);
    }
    a.btn:hover::after {
        transform: scaleX(1.5);
    }

}




/*
Pagenation
---------------------------------*/
.pagination {
    margin: 40px 0 0;
    text-align: center;
}
.nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.pagination .page-numbers {
    position: relative;
    font-family: var(--font-en);
    display: inline-block;
    padding: 0 8px 0 20px;
    margin: 0 0 0 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-bk);
    text-decoration: none;
}
.pagination .page-numbers:not(.next):not(.prev):not(:first-child)::before {
    content: "/";
    position: absolute;
    left: 0;
}
body.paged .pagination .page-numbers:not(.next):not(.prev):nth-child(2)::before {
    content: none;
}

.pagination .page-numbers.current {
    font-weight: 700;
}
.pagination .page-numbers.current::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 16px;
    height: 1px;
    background: var(--color-bk);
}

.pagination .page-numbers.next {
    font-size: 0;
    position: relative;
}
.pagination .page-numbers.next::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 16px;
    height: 16px;
    transform: rotate(45deg);
    border-top: 1px solid var(--color-bk);
    border-right: 1px solid var(--color-bk);
}
.pagination .page-numbers.prev {
    font-size: 0;
    position: relative;
    margin: 0;
}
.pagination .page-numbers.prev::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 16px;
    height: 16px;
    transform: rotate(225deg);
    border-top: 1px solid var(--color-bk);
    border-right: 1px solid var(--color-bk);
}




@media (min-width: 768px) {
    .pagination {
        margin: 64px 0 0;
    }
    .pagination .page-numbers {
        font-size: 1.8rem;
    }
    .pagination .page-numbers.current::after {
        left: 12px;
    }
}









/*
Breadcrumb
---------------------------------*/
.breadcrumb {
    background: var(--color-light);
    padding: 16px 0;
}
.breadcrumb span {
    font-family: var(--font-en);
}
.breadcrumb span a {
    font-weight: 700;
    text-decoration: none;
}
@media (min-width: 768px) {
    .breadcrumb {
    }
    .breadcrumb a {
        transition: opacity .3s;
    }
    .breadcrumb a:hover {
        opacity: .7;
    }
}

/*
Animation
---------------------------------*/
@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1}
}

@keyframes fadein-display {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}


.-effect {
    opacity: 0;
}
.-effect.-animated {
    -webkit-animation: effect-visible .7s .2s cubic-bezier(.25,.46,.45,.94);
    animation: effect-visible .7s .2s cubic-bezier(.25,.46,.45,.94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@keyframes effect-visible {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0)
    }
}
.-effect-child {
    opacity: 0
}
.-animated .-effect-child:nth-child(1) {
    -webkit-animation: effect-visible .6s .55s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s .55s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(2) {
    -webkit-animation: effect-visible .6s .7s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s .7s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(3) {
    -webkit-animation: effect-visible .6s .85s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s .85s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(4) {
    -webkit-animation: effect-visible .6s 1s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(5) {
    -webkit-animation: effect-visible .6s 1.15s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1.15s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(6) {
    -webkit-animation: effect-visible .6s 1.3s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1.3s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(7) {
    -webkit-animation: effect-visible .6s 1.45s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1.45s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(8) {
    -webkit-animation: effect-visible .6s 1.6s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1.6s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(9) {
    -webkit-animation: effect-visible .6s 1.75s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1.75s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}
.-animated .-effect-child:nth-child(10) {
    -webkit-animation: effect-visible .6s 1.9s cubic-bezier(.25, .46, .45, .94);
    animation: effect-visible .6s 1.9s cubic-bezier(.25, .46, .45, .94);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}



/*
TOP Animation
---------------------------------*/
body.home {
    overflow: hidden; /* アニメーション中のスクロールを無効化 */
}
#animation-wrapper {
    transition: .3s;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-wh);
    z-index: 99999;
}
#animation-container {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 1000;
    opacity: 1;
    transition: opacity 2s ease; /* フェードアウト時間を調整 */
}
#slideshow {
    position: relative;
    width: 400px;
    height: 40px;
    overflow: hidden;
}
#slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: auto;
    height: 100%;
    display: none; /* 初期状態は非表示 */
}
#text-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-bk);
    opacity: 0;
}
@media (min-width:  768px) {
    #slideshow {
        height: 80px;
    }
    #text-message {
        font-size: 4rem;
    }
}



/*---------------------------------
Header Footer
---------------------------------*/
/*
Header
---------------------------------*/
.header {
    width: 100%;
    border-bottom: solid 1px var(--color-medium);
    position: fixed;
    background: var(--color-wh);
    top: 0;
    left: 0;
    z-index: 9999;
    transition: border-color .3s;
}
.header.active {
    border-color: var(--color-wh);
}
.header_inner {
    margin: 0 16px;
    padding: 16px 0;
    height: 56px;
}
.header_logo {
    font-size: 0;
    display: inline-block;
}
.header_logo a {
    height: 24px;
    display: inline-block;
    transition: opacity .3s;
}
.header_logo a img {
    height: 100%;
    width: auto;
    margin: 0 auto;
    display: block;
}
@media (min-width:  768px) {
    .header_inner {
        height: 80px;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 40px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header_logo {
        height: 32px;
    }
    .header_logo a {
        height: 32px;
    }
    .header_logo:hover {
        opacity: 0.7;
    }

}


/*
Menu Btn
---------------------------------*/
.btn_menu {
    display: block;
    height: 56px;
    width: 64px;
    position: fixed;
    top: 0;
    right: 0;
    padding: 16px;
    z-index: 9999;
    box-sizing: border-box;
    cursor: pointer;
    transition: opacity .3s;
    text-decoration: none;
}
.btn_menu:hover {
    text-decoration: none;
}
.btn_menu span {
    display: block;
    height: 4px;
    width: 32px;
    background: var(--color-bk);
    margin: 4px auto 0;
    transition: transform .3s;
    transform-origin: left;
}
.global_nav .btn_menu span {
    
}
.btn_menu span:nth-child(2) {
    margin-top: 8px;
    transition: transform .3s;
    transform-origin: left;
}
.btn_menu div {
    display: none;
}
.btn_menu.active span:nth-child(1) {
    transform: rotate(45deg) translateY(-7.5px);

}
.btn_menu.active span:nth-child(2) {
    transform: rotate(-45deg) translateY(7.5px);
    
}
@media (min-width: 768px) {
    .btn_menu {
        display: none;
    }
}


/*
GlobalNav
---------------------------------*/
.global_nav {
    position: fixed;
    top: 56px;
    left: 0;
    width:  100%;
    height: calc(100% - 56px);
    transition: opacity .3s,visibility .3s;
    background: var(--color-wh);
    z-index: 999;
    visibility: hidden;
    opacity: 0;
}
.global_nav.active {
    visibility: visible;
    opacity: 1;
}
.global_nav_inner {
    margin: 0 20px;
    padding: 52px 0 16px;
    text-align: center;
}
.global_nav_item + .global_nav_item {
    margin-top: 24px;
}
.global_nav_item a {
    position: relative;
    text-decoration: none;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 700;
}
@media (min-width: 768px) {
    .global_nav {
        position: relative;
        height: auto;
        top: 0;
        visibility: visible;
        opacity: 1;
        width: auto;
        overflow: auto;
    }
    .page .global_nav {
        background: none;
    }
    .global_nav_inner {
        margin: 0;
        padding: 0;
    }
    .global_nav_main {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
    .global_nav_item + .global_nav_item {
        margin: 0 0 0 32px;
    }
    .global_nav_item a {
        font-size: 2rem;
        display: block;
        padding: 24px 0;
    }
    .global_nav_item a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        height: 6px;
        width: 100%;
        background: var(--color-bk);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s;
    }
    .global_nav_item a:hover::after {
        transform: scaleX(1);
    }





}


/*
Footer
---------------------------------*/
.footer {
    padding: 16px 0;
    width: 100%;
    background: var(--color-neutral);
}
.footer_inner {
    margin: 0 16px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
.footer_copy small {
    font-size: 1.2rem;
    font-family: var(--font-en);
}
.footer_link a {
    font-size: 1.2rem;
    text-decoration: none;
    font-family: var(--font-en);
}
@media (min-width: 768px) {
    .footer {
        padding: 32px 0;
    }
    .footer_inner {
        justify-content: flex-end;
        margin: 0 40px;
    }
    .footer_copy small {
        font-size: 1.6rem;
    }
    .footer_link a {
        font-size: 1.6rem;
        margin-left: 32px;
    }

}


/*---------------------------------
Main
---------------------------------*/
#home {
    overflow: hidden;
}








/*---------------------------------
Common Parts
---------------------------------*/


/*
Section Cta
---------------------------------*/
.section_cta {
    padding: 48px 0;
    text-align: center;
    background: linear-gradient(var(--color-light) , var(--color-wh));
}
.section_cta h2 {
    margin: 0;
}
.section_cta .btn {
    max-width: 240px;
}
@media (min-width: 768px) {
    .section_cta {
        padding: 112px 0;
    }
    .section_cta .btn {
        max-width: 320px;
    }
}


/*
Work List
---------------------------------*/
.work_list .work_item {
    position: relative;
    background: var(--color-wh);
    border: solid 1px #ddd;
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
}
.work_list .work_outer_link {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
@media (max-width: 767px) {
    .work_list .work_item + .work_item {
    margin-top: 20px;
}
}
.work_list .work_item_inner {
    display: flex;
}
.work_list .work_item_thumb {
    max-width: 140px;
    aspect-ratio: 1/1;
}
.work_list .work_item_thumb img {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 100%;
}
.work_list .work_item_text {
    width: calc( 100% - 140px);
    padding: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
}
.work_list .work_item_text .work_item_title {
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.work_list .work_item_text .work_item_data {
    line-height: 1.2;
}
.work_list .work_item_text .work_item_date {
    font-size: 1.2rem;
    margin: 4px 0 0;
    color: var(--color-medium);
    font-style: italic;
    font-family: var(--font-en);
    line-height: 1;
}
.work_list .work_item_text .work_item_tag {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1;
}
.work_list .work_item_text .work_item_tag a {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-dark);
    position: relative;
    z-index: 2;
}
.work_list .work_item_text .work_item_tag a + a {
    margin: 0 0 0 4px;
}
.work_list .work_item_text .work_item_writer {
    text-align: right;
    line-height: 1;
    margin-left: auto;
    margin-top: auto;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: calc(100% - 88px);
}
.work_list .work_item_text .work_item_writer a {
    color: var(--color-medium);
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    z-index: 2;
}
.work_list .work_item_text .work_item_writer i {
    margin-right: 2px;
}
.work_list .work_item_text .work_item_cat {
    position: absolute;
    bottom: 0;
    left: 8px;
}
.work_list .work_item_text .work_item_cat a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bk);
    font-size: 1rem;
    color: var(--color-wh);
    font-weight: 700;
    height: 28px;
    width: 80px;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    z-index: 2;
    padding: 0 4px;
}
.work_list .work_item_text .work_item_cat a span {
    position: relative;
}
.work_list .work_item_text .work_item_cat a::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    background: var(--color-bk);
    height: 12px;
    width: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.work_list .work_item_text .work_item_cat .cat_creator {
    color: var(--color-creator);
}
.work_list .work_item_text .work_item_cat .cat_real-estate {
    color: var(--color-estate);
}
.work_list .work_item_text .work_item_cat .cat_casting {
    color: var(--color-casting);
}
.work_list .work_item_text .work_item_cat .cat_smart-solution {
    color: var(--color-smart);
}
.work_list .work_item_text .work_item_cat .cat_workshop {
    color: var(--color-workshop);
}
.work_list .work_item_text .work_item_cat .cat_blog {
    color: var(--color-blog);
}
.work_list .work_item_text .work_item_cat .cat_games {
    color: var(--color-games);
}
@media (min-width: 768px) {
    .work_list {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .work_list .work_item {
        width: 48.4%;
    }


}
@media  (min-width: 768px) and (max-width: 1023px) {
    .work_list .work_item:nth-of-type( n+3 ) {
        margin-top: 3.2%;
    }
}
@media (min-width: 1024px) {
    .work_list::after {
        content: "";
        width: 32%;
    }
    .work_list .work_item {
        width: 32%;
        transition: box-shadow .3s;
    }
    .work_list .work_item:hover {
        box-shadow: 0 4px 8px rgba(var(--color-bk-rgb), 0.1),
                    0 8px 16px rgba(var(--color-bk-rgb), 0.1);
    }
    .work_list .work_item:nth-of-type( n+4 ) {
        margin-top: 2%;
    }
    .work_list .work_item_inner {
        flex-direction: column;
        height: 100%;
    }
    .work_list .work_item_thumb {
        max-width: none;
        aspect-ratio: 16/9;
    }
    .work_list .work_item_thumb img {
        aspect-ratio: 16/9;
    }
    .work_list .work_item_text {
        width: auto;
        padding: 16px 24px;
        height: 100%;
    }
    .work_list .work_item_text .work_item_title {
        font-size: 1.8rem;
    }
    .work_list .work_item_text .work_item_data {
        margin-top: 16px;
        display: flex;
        align-items: center;
        margin-bottom: 24px;
    }
    .work_list .work_item_text .work_item_date {
        padding-right: 24px;
        margin-top: 0;
        position: relative;
    }
    .work_list .work_item_text .work_item_date::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
        height: 1px;
        width: 20px;
        background: var(--color-medium);
    }
    .work_list .work_item_text .work_item_tag {
        width: calc(100% - 90px);
        padding-left: 8px;
    }
    .work_list .work_item_text .work_item_tag a {
        font-size: 1.2rem;
        transition: opacity .3s;
    }
    .work_list .work_item_text .work_item_tag a:hover {
        opacity: .7;
    }
    .work_list .work_item_text .work_item_writer {
        width: calc(100% - 112px);
    }
    .work_list .work_item_text .work_item_writer a {
        transition: opacity .3s;
    }
    .work_list .work_item_text .work_item_writer a:hover {
        opacity: .7;
    }
    .work_list .work_item_text .work_item_cat {
        left: 24px;
    }
    .work_list .work_item_text .work_item_cat a {
        font-size: 1.3rem;
        width: 104px;
        height: 32px;
        transition: opacity .3s;
        padding: 0 6px;
    }
    .work_list .work_item_text .work_item_cat a:hover {
        opacity: .7;
    }
    .work_list .work_item_text .work_item_cat a::before {
        top: -14px;
        height: 28px;
    }

}




/*
Fillter
---------------------------------*/
/* work */

.work_fillter_sp {
    margin: 0 0 20px;
}
.work_fillter_modal_btn {
    font-size: 1.5rem;
    padding: 12px 16px;
    position: relative;
    color: var(--color-wh);
    font-weight: 700;
    background: var(--color-bk);
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
}
.work_fillter_modal_btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    height: 1px;
    width: 20px;
    background: var(--color-wh);
    margin: auto;
}
.work_fillter_modal_btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    height: 1px;
    width: 20px;
    background: var(--color-wh);
    transform: rotate(90deg);
    margin: auto;
}
.work_fillter_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,50%);
    padding: 40px 16px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 99999;
}
.work_fillter_modal.active{
    opacity: 1;
    visibility: visible;
}
.work_fillter_modal_container {
    position: relative;
}
.work_fillter_modal_inner {
    background: var(--color-neutral);
    padding: 48px 16px 16px;
}
.work_fillter_modal_close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-bk);
    height: 44px;
    width: 44px;
}
.work_fillter_modal_close::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 12px;
    height: 1px;
    width: 22px;
    background: var(--color-wh);
    transform: rotate(45deg);
}
.work_fillter_modal_close::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 12px;
    height: 1px;
    width: 22px;
    background: var(--color-wh);
    transform: rotate(-45deg);
}
.work_fillter_modal_title {
    font-weight: 700;
    font-family: var(--font-en);
    font-size: 1.8rem;
}
.work_cat_list {
    margin: 8px 0 0;
}
.work_cat_list + .work_fillter_modal_title {
    margin-top: 32px;
}
.work_cat_list li + li {
    margin-top: 8px;
}
.work_cat_list li a {
    background: var(--color-wh);
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 700;
}
.work_tag_list {
    display: flex;
    flex-wrap: wrap;
    margin: 8px 0 0;
}
.work_tag_list li {
    margin: 0 8px 8px 0;
}
.work_tag_list li a {
    background: var(--color-wh);
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 700;
}
@media (min-width: 768px) {
    .work_fillter_pc {
        margin: 0 0 56px;
    }


    .work_fillter_btn {
        font-size: 1.5rem;
        padding: 12px 16px;
        position: relative;
        color: var(--color-wh);
        font-weight: 700;
        min-width: 320px;
        background: var(--color-bk);
        box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                    0 4px 8px rgba(var(--color-bk-rgb), 0.05);
        cursor: pointer;
    }
    .work_fillter_btn::after {
        content: "";
        position: absolute;
        top: -8px;
        bottom: 0;
        right: 16px;
        margin: auto;
        border-top: solid 1px var(--color-wh);
        border-right: solid 1px var(--color-wh);
        width: 16px;
        height: 16px;
        transform: rotate(135deg);
    }
    .work_fillter_cat {
        position: relative;
        display: inline-block;
    }
    .work_fillter_tag {
        position: relative;
        display: inline-block;
        margin-left: 16px;
    }
    .work_tag_list_wrapper {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: var(--color-neutral);
        padding: 16px;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                    0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    }
    .work_tag_list_wrapper.active {
        opacity: 1;
        visibility: visible;
    }
    .work_tag_list {
        display: block;
        margin: 0;
    }
    .work_tag_list li {
        margin: 0;
    }
    .work_tag_list li + li {
        margin-top: 8px;
    }
    .work_fillter_modal_btn {
        margin-top: 8px;
        cursor: pointer;
    }
    .work_cat_list {
        position: absolute;
        left: 0;
        top: 100%;
        margin: 0;
        width: 100%;
        background: var(--color-neutral);
        padding: 16px;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                    0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    }
    .work_cat_list.active {
        opacity: 1;
        visibility: visible;
    }

    .work_fillter_modal_container {
        position: absolute;
        max-width: 1280px;
        max-height: 560px;
        padding: 0 40px;
        height: 60%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .work_fillter_modal_inner {
        overflow: auto;
        height: 100%;
        padding: 64px 24px 24px;
    }
    .work_fillter_modal_close {
        right: 40px;
        height: 48px;
        width: 48px;
        cursor: pointer;
    }
    .work_fillter_modal_close::before,
    .work_fillter_modal_close::after {
        width: 24px;
        top: 24px;
    }
    .work_fillter_modal .work_tag_list {
        display: flex;
        flex-wrap: wrap;
    }
    .work_fillter_modal .work_tag_list li {
        margin: 0 8px 8px 0;
    }
}

/* member */
.member_fillter_sp {
    margin: 0 0 20px;
}
.member_fillter_modal_btn {
    font-size: 1.5rem;
    padding: 12px 16px;
    position: relative;
    color: var(--color-wh);
    font-weight: 700;
    background: var(--color-bk);
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
}
.member_fillter_modal_btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    height: 1px;
    width: 20px;
    background: var(--color-wh);
    margin: auto;
}
.member_fillter_modal_btn::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 8px;
    height: 1px;
    width: 20px;
    background: var(--color-wh);
    transform: rotate(90deg);
    margin: auto;
}
.member_fillter_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,50%);
    padding: 40px 16px;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    box-sizing: border-box;
    z-index: 99999;
}
.member_fillter_modal.active{
    opacity: 1;
    visibility: visible;
}
.member_fillter_modal_container {
    position: relative;
}
.member_fillter_modal_inner {
    background: var(--color-neutral);
    padding: 48px 16px 16px;
}
.member_fillter_modal_close {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-bk);
    height: 44px;
    width: 44px;
}
.member_fillter_modal_close::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 12px;
    height: 1px;
    width: 22px;
    background: var(--color-wh);
    transform: rotate(45deg);
}
.member_fillter_modal_close::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 12px;
    height: 1px;
    width: 22px;
    background: var(--color-wh);
    transform: rotate(-45deg);
}
.member_fillter_modal_title {
    font-weight: 700;
    font-family: var(--font-en);
    font-size: 1.8rem;
}
.member_cat_list {
    margin: 8px 0 0;
}
.member_cat_list li + li {
    margin-top: 8px;
}
.member_cat_list li a {
    background: var(--color-wh);
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 700;
}
.member_tag_list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 32px;
}
.member_tag_list li {
    margin: 0 8px 8px 0;
}
.member_tag_list li a {
    background: var(--color-wh);
    display: block;
    text-decoration: none;
    padding: 8px 12px;
    font-weight: 700;
}
@media (min-width: 768px) {
    .member_fillter_pc {
        margin: 0 0 56px;
    }
    .member_fillter_btn {
        font-size: 1.5rem;
        padding: 12px 16px;
        position: relative;
        color: var(--color-wh);
        font-weight: 700;
        min-width: 320px;
        background: var(--color-bk);
        box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                    0 4px 8px rgba(var(--color-bk-rgb), 0.05);
        cursor: pointer;
    }
    .member_fillter_btn::after {
        content: "";
        position: absolute;
        top: -8px;
        bottom: 0;
        right: 16px;
        margin: auto;
        border-top: solid 1px var(--color-wh);
        border-right: solid 1px var(--color-wh);
        width: 16px;
        height: 16px;
        transform: rotate(135deg);
    }
    .member_fillter_cat {
        position: relative;
        display: inline-block;
    }
    .member_fillter_tag {
        position: relative;
        display: inline-block;
        margin-left: 16px;
    }
    .member_fillter_tag a.member_fillter_btn {
        color: var(--color-wh);
        text-decoration: none;
        display: inline-block;
        min-width: 0;
    }
    .member_fillter_tag a.member_fillter_btn::after {
        content: none;
    }
    .member_fillter_tag a + a {
        margin-left: 16px;
    }
    .member_tag_list_wrapper {
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        background: var(--color-neutral);
        padding: 16px;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                    0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    }
    .member_tag_list_wrapper.active {
        opacity: 1;
        visibility: visible;
    }
    .member_tag_list {
        display: block;
        margin: 0;
    }
    .member_tag_list li {
        margin: 0;
    }
    .member_tag_list li + li {
        margin-top: 8px;
    }
    .member_fillter_modal_btn {
        margin-top: 8px;
        cursor: pointer;
    }
    .member_cat_list {
        position: absolute;
        left: 0;
        top: 100%;
        margin: 0;
        width: 100%;
        background: var(--color-neutral);
        padding: 16px;
        z-index: 5;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                    0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    }
    .member_cat_list.active {
        opacity: 1;
        visibility: visible;
    }
    .member_fillter_modal_container {
        position: absolute;
        max-width: 1280px;
        max-height: 560px;
        padding: 0 40px;
        height: 60%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .member_fillter_modal_inner {
        overflow: scroll;
        height: 100%;
        padding: 64px 24px 24px;
    }
    .member_fillter_modal_close {
        right: 40px;
        height: 48px;
        width: 48px;
        cursor: pointer;
    }
    .member_fillter_modal_close::before,
    .member_fillter_modal_close::after {
        width: 24px;
        top: 24px;
    }
    .member_fillter_modal .member_tag_list {
        display: flex;
        flex-wrap: wrap;
    }
    .member_fillter_modal .member_tag_list li {
        margin: 0 8px 8px 0;
    }

}


/*---------------------------------
Top
---------------------------------*/
/*
Main Visual
---------------------------------*/

@media (min-width: 768px) {
    .main_visual {
        max-width: 1280px;
        padding: 0 40px;
        margin: 64px auto 0;
    }
}

/*
Top banner
---------------------------------*/
.top_banner_section {
    padding: 32px 0 0;
}
.top_vimeo {
    max-width: 640px;
    margin: 0 auto;
}
.top_vimeo a {
    transition: opacity .3s;
}
.top_vimeo p {
    margin: 8px 0 0;
    text-align: center;
    color: #444;
}
@media (min-width: 768px) {
    .top_banner_section {
        padding: 64px 0 0;
    }  
    .top_vimeo a:hover {
        opacity: .7;
    }
}
/*
Top Works
---------------------------------*/
.top_work_section {
    padding: 32px 0;
}
.top_work_section .work_top_area .work_item_inner {
    flex-direction: column;
    height: 100%;
}
.top_work_section .work_top_area .work_item_thumb {
    max-width: none;
    aspect-ratio: 16/9;
}
.top_work_section .work_top_area .work_item_thumb img {
    aspect-ratio: 16/9;
}
.top_work_section .work_top_area .work_item_text {
    width: auto;
    padding: 16px;
    height: 100%;
}
.top_work_section .work_top_area .work_item_title {
    font-size: 1.7rem;
}
.top_work_section .work_top_area .work_item_data {
    margin-top: 4px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.top_work_section .work_top_area .work_item_date {
    
    padding-right: 24px;
    margin-top: 0;
    position: relative;
}
.top_work_section .work_top_area .work_item_date::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 20px;
    background: var(--color-medium);
}
.top_work_section .work_top_area .work_item_tag {
    width: calc( 100% - 90px);
    padding-left: 8px;
}
.top_work_section .work_top_area .work_item_tag a {
    font-size: 1.2rem;
}
.top_work_section .work_top_area .work_item_writer {
    width: calc(100% - 112px);
}
.top_work_section .work_top_area .work_item_cat {
    left: 16px;
}
.top_work_section .work_top_area .work_item_cat a {
    font-size: 1.2rem;
    width: 100px;
    height: 32px;
    padding: 0 8px;
}
.top_work_section .work_top_area .work_item_cat a::before {
    top: -8px;
    height: 16px;
}
@media (min-width: 768px) {
    .top_work_section {
        padding: 64px 0;
    }
    .top_work_section .work_top_area .work_item_title {
        font-size: 2.2rem;
    }
}
@media (min-width: 1024px) {
    .top_work_section .work_top_area .work_list::after {
        content: none;
    }
    .top_work_section .work_top_area .work_item {
        width: 48.4%;
    }
    .top_work_section .work_top_area .work_item_text {
        padding: 16px 24px;
    }
    .top_work_section .work_top_area .work_item_title {
        font-size: 2.8rem;
    }
    .top_work_section .work_top_area .work_item_date {
        font-size: 1.6rem;
        padding-right: 48px;
    }
    .top_work_section .work_top_area .work_item_data {
        margin-top: 16px;
        margin-bottom: 40px;
    }
    .top_work_section .work_top_area .work_item_date::after {
        width: 40px;
    }
    .top_work_section .work_top_area .work_item_tag {
        width: calc(100% - 128px);
    }
    .work_list .work_item_text .work_item_tag a {
        font-size: 1.6rem;
    }
    .top_work_section .work_top_area .work_item_writer {
        width: calc(100% - 128px);
    }
    .top_work_section .work_top_area .work_item_writer a {
        font-size: 1.6rem;
    }
    .top_work_section .work_top_area .work_item_cat {
        left: 24px;
    }
    .top_work_section .work_top_area .work_item_cat a {
        font-size: 1.4rem;
        width: 120px;
        height: 40px;
        padding: 0 10px;
    }
    .top_work_section .work_top_area .work_item_cat a::before {
        top: -16px;
        height: 32px;
    }
}

.top_work_section .work_bottom_area {
    margin-top: 28px;
}
@media (min-width: 1024px) {
    .top_work_section .work_bottom_area {
        margin-top: 40px;
    }
}


/*
Top Pickup
---------------------------------*/
.top_pickup_section {
    padding: 0 0 48px;
}
.top_pickup_title {
    text-align: center;
    position: relative;
    padding-top: 64px;
    margin: 0;
    font-family: var(--font-en);
    font-size: 3.2rem;
}
.top_pickup_title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 56px;
    width: 1px;
    background: var(--color-bk);
}
.top_pickup_list {
    margin-top: 20px;
}
@media (max-width: 767px) {
    .top_pickup_list li + li {
        margin-top: 16px;
    }
}
.top_pickup_list li a {
    display: block;
    aspect-ratio: 16/9;
    transition: box-shadow .3s;
    border: solid 1px #ddd;
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
}
.top_pickup_list li img {
    aspect-ratio: 16/9;
    object-fit: cover;
    height: 100%;
}
@media (min-width: 768px) {
    .top_pickup_section {
        padding: 0 0 80px;
    }
    .top_pickup_list {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 56px;
    }
    .top_pickup_list li {
        width: 32%;
    }
    .top_pickup_list li + li {
        margin-left: 2%;
    }
    .top_pickup_list li a:hover {
        box-shadow: 0 4px 8px rgba(var(--color-bk-rgb), 0.1),
                    0 8px 16px rgba(var(--color-bk-rgb), 0.1);
    }
    .top_pickup_title {
        font-size: 4rem;
        padding-top: 120px;
    }
    .top_pickup_title::before {
        height: 112px;
    }
}



/*---------------------------------
Page
---------------------------------*/
.page_contents {
    padding: 48px 0;
}
.page_title {
    margin: 0 0 32px;
}
.page_title h1 {
    margin: 0;
    font-family: var(--font-en);
    font-size: 3.2rem;
    font-weight: 700;
}


@media (min-width: 768px) {
    .page_contents {
        padding: 112px 0;
    }
    .page_title {
        margin: 0 0 64px;
    }
    .page_title h1 {
        font-size: 4rem;
    }

}


/*
MEMBER
---------------------------------*/
.member_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}
.member_list .member_item {
    border: solid 1px #ddd;
    width: 48.4%;
    background: var(--color-wh);
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    transition: box-shadow .3s;
}
@media (max-width: 767px) {
    .member_list .member_item:nth-of-type(n+3) {
        margin-top: 3.2%;
    }
}
.member_list .member_item a {
    display: block;
    text-decoration: none;
}
.member_list .member_item a:hover {
    text-decoration: none;
}
.member_list .member_thumb {
    position: relative;
    padding: 8px;
}
.member_list .member_thumb img {
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.member_item a .member_name {
    background: var(--color-bk);
    color: var(--color-wh);
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    padding: 8px;
}
.member_item a .member_name.cat_creator {
    color: var(--color-creator);
}
.member_item a .member_name.cat_real-estate {
    color: var(--color-estate);
}
.member_item a .member_name.cat_casting {
    color: var(--color-casting);
}
.member_item a .member_name.cat_smart-solution {
    color: var(--color-smart);
}
.member_item a .member_name.cat_workshop {
    color: var(--color-workshop);
}
.member_item a .member_name.cat_blog {
    color: var(--color-blog);
}
.member_item a .member_name.cat_games {
    color: var(--color-games);
}
@media (min-width: 768px) {
    .member_list {
        margin-top: 56px;
        position: relative;
   }
   .member_list::after {
        content: "";
        width: 32%;
    }
   .member_list .member_item {
        width: 32%;
   }
   .member_list .member_item:hover {
        box-shadow: 0 4px 8px rgba(var(--color-bk-rgb), 0.1),
                    0 8px 16px rgba(var(--color-bk-rgb), 0.1);

   }
   .member_list .member_item:nth-of-type(n+4) {
        margin-top: 2%;
    }
    .member_list .member_thumb {
        padding: 16px;
    }
    .member_item a .member_name {
        font-size: 1.8rem;
        padding: 10px;
    }


}
@media (min-width: 1201px) {
  
}






/*
SERVICE
---------------------------------*/
.service_mv {
    width: 100vw;
    margin: 0 -16px;
}
.service_list {
    margin-top: 20px;
}
@media (max-width: 767px) {
    .service_list li + li {
        margin-top: 20px;
    }
}
.service_item h2 {
    margin: 0;
}
@media (min-width: 768px) {
    .service_mv {
        width: auto;
        margin: 0;
    }
    .service_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-top: 40px;
    }
    .service_list .service_item {
        width: 48.4%;
    }
    .service_list .service_item:nth-of-type(n+3) {
        margin-top: 3.2%;
    }
    .service_list .service_item a {
        transition: opacity .3s;
    }
    .service_list .service_item a:hover {
        opacity: .7;
    }
}


/*
ABOUT
---------------------------------*/
body.about .page_contents {
    padding: 0;
}
.about_section {
    padding: 48px 0;
    background: linear-gradient( var(--color-wh), var(--color-light) );
}
.about_section p {
    font-weight: 700;
    max-width: 540px;
}
.about_section p + p {
    margin: 16px 0 0 0;
}
.infomation_section {
    padding: 48px 0;
}
.infomation_section h2 {
    margin: 0;
    font-family: var(--font-en);
    font-size: 3.2rem;
    font-weight: 700;
}
.infomation_list {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.5rem;
    font-weight: 700;
}
.infomation_list dt {
    width: 96px;
    padding: 6px 0;
}
.infomation_list dd {
    width: calc(100% - 96px);
    margin: 0;
    padding: 6px 0 6px 12px;
    border-left: solid 1px var(--color-bk);
}
.infomation_list dt:nth-of-type(n+2){
    margin-top: 24px;
}
.infomation_list dd:nth-of-type(n+2){
    margin-top: 24px;
}
@media (min-width: 768px) {
    .about_section {
        padding: 112px 0;
    }
    .infomation_section {
        padding: 112px 0;
    }
    .infomation_section h2 {
        font-size: 4rem;
    }
    .infomation_list {
        font-size: 1.6rem;
    }
    .infomation_list dt {
        width: 160px;
        padding: 8px 0;
    }
    .infomation_list dd {
        width: calc(100% - 160px);
        padding: 8px 0 8px 40px;
    }
    .infomation_list dt:nth-of-type(n+2){
        margin-top: 32px;
    }
    .infomation_list dd:nth-of-type(n+2){
        margin-top: 32px;
    }
}



/*
CONTACT
---------------------------------*/
input[type="text"],
input[type="email"],
input[type="submit"],
input[type="tel"] {
    -webkit-appearance: none;
    appearance: none;
}
.wpcf7 {
    background: var(--color-wh);
    border: solid 1px #ddd;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
}
.contact_list dt {
    font-weight: 700;
}
.contact_list dd + dt {
    margin: 20px 0 0;
}
.contact_list dd {
    margin: 8px 0 0;
}
.contact_list .contact_item_name {
    display: flex;
    align-items: center;
}
.contact_list dd .label {
    font-weight: 700;
    margin-right: 8px;
    white-space: nowrap;
}
.contact_list dd .wpcf7-form-control-wrap + .label {
    margin-left: 8px;
}
.required {
    color: var(--color-important);
    font-size: 1.2rem;
    margin-right: 8px;
    padding: 1px 4px 2px;
    border-radius: 6px;
    font-weight: 700;
    border: solid 1px var(--color-important);
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    display: inline-block;
}
.optional {
    color: var(--color-medium);
    font-size: 1.2rem;
    margin-right: 8px;
    padding: 1px 4px 2px;
    border-radius: 6px;
    font-weight: 700;
    border: solid 1px var(--color-medium);
    letter-spacing: 0.3em;
    text-indent: 0.3em;
    display: inline-block;
}
.wpcf7-form-control {
    appearance: none;
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 1.6rem;
    border-radius: 4px;
    border: none;
    box-sizing: border-box;
    border-radius: 4px;
    background: var(--color-light);
    border: 1px solid var(--color-neutral);
    box-shadow: inset 2px 2px 2px rgba(var(--color-bk-rgb), 0.05);
}
.send_btn {
    position: relative;
    max-width: 200px;
    margin: 32px auto 0;
}
.send_btn::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    background: var(--color-wh);
    height: 1px;
    width: 24px;
    transform-origin: right;
    transition: transform .3s;
    z-index: 3;
}
.send_btn::after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    right: -24px;
    margin: auto;
    background: var(--color-bk);
    height: 1px;
    width: 24px;
    transform-origin: left;
    transition: transform .3s;
}
.send_btn input {
    cursor: pointer;
    border-radius: 0;
    display: block;
    position: relative;
    text-align: center;
    color: var(--color-wh);
    font-weight: 700;
    background: var(--color-bk);
    padding: 14px;
    z-index: 2;
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb),0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
    border: none;
}
.send_btn .wpcf7-spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    margin: auto;
    z-index: 3;
    background: var(--color-medium);
}

.wpcf7 .wpcf7-not-valid-tip {
    color: var(--color-important);
    font-size: 1rem;
    margin-top: 4px;
}

.wpcf7 form.wpcf7-form .wpcf7-response-output {
    border: none;
    padding: 0;
    text-align: center;
}
@media (min-width: 768px) {
    body.contact .container {
        max-width: 1120px;
    }
    .wpcf7 {
        padding: 40px;
    }
    .contact_list {
        display: flex;
        flex-wrap: wrap;

    }
    .contact_list dt {
        width: 32%;
        padding: 14px 0;
    }
    .contact_list dd {
        width: 68%;
        margin: 0;
    }
    .contact_list dd + dt {
        margin: 32px 0 0;
    }
    .contact_list dd:nth-of-type(n+2) {
        margin: 32px 0 0;
    }

    .wpcf7-form-control {
        padding: 16px;
    }
    .send_btn {
        max-width: 240px;
    }
    .send_btn input {
        font-size: 1.6rem;
        padding: 12px;
        transition: box-shadow .3s;
    }
    .send_btn::before {
        width: 32px;
    }
    .send_btn:hover::before {
        transform: scaleX(.5);
    }
    .send_btn::after {
        right: -32px;
        width: 32px;
    }
    .send_btn:hover::after {
        transform: scaleX(1.5);
    }

    .wpcf7 .wpcf7-not-valid-tip {
        font-size: 1.2rem;
        margin-top: 8px;
    }
    
}







/*---------------------------------
Category
---------------------------------*/
@media (max-width: 767px) {
    body.category-creator .page_contents,
    body.category-casting .page_contents,
    body.category-real-estate .page_contents,
    body.category-smart-solution .page_contents,
    body.category-games .page_contents,
    body.category-workshop .page_contents {
        padding-top: 0;
    }
    body.category-creator .page_title .container,
    body.category-casting .page_title .container,
    body.category-real-estate .page_title .container,
    body.category-smart-solution .page_title .container,
    body.category-games .page_title .container,
    body.category-workshop .page_title .container {
        margin: 0;
    }
    
}







/*---------------------------------
Single
---------------------------------*/
.single_contents {
    padding: 56px 0;
}
.single_contents_inner {
    position: relative;
    padding: 16px;
    border: solid 1px #ddd;
    box-shadow: 0 2px 4px rgba(var(--color-bk-rgb), 0.05),
                0 4px 8px rgba(var(--color-bk-rgb), 0.05);
}
.single_contents_header {
    margin-bottom: 24px;
}
.single_title h1 {
    font-size: 2rem;
    margin: 0;
}
.single_data {
    line-height: 1.2;
    margin-top: 16px;
    display: flex;
}
.single_data .single_date {
    position: relative;
    font-size: 1.2rem;
    margin: 4px 0 0;
    color: var(--color-medium);
    font-style: italic;
    font-family: var(--font-en);
    padding-right: 32px;
}
.single_data .single_date::after {
    content: "";
    position: absolute;
    right: 0;
    top: 7px;
    width: 20px;
    height: 1px;
    background: var(--color-medium);
}
.single_data .single_tag {
    width: calc(100% - 96px);
    padding-left: 8px;
}
.single_data .single_tag a {
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--color-dark);
}
.single_data .single_tag a + a {
    margin-left: 4px;
}
.single_cat {
    position: absolute;
    top: -28px;
    left: 16px;
}
.single_cat a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bk);
    font-size: 1rem;
    color: var(--color-wh);
    font-weight: 700;
    height: 28px;
    width: 80px;
    line-height: 1.1;
    text-decoration: none;
    text-align: center;
    z-index: 2;
    padding: 0 4px;
}
.single_cat a.cat_creator {
    color: var(--color-creator);
}
.single_cat a.cat_real-estate {
    color: var(--color-estate);
}
.single_cat a.cat_casting {
    color: var(--color-casting);
}
.single_cat a.cat_smart-solution {
    color: var(--color-smart);
}
.single_cat a.cat_workshop {
    color: var(--color-workshop);
}
.single_cat a.cat_blog {
    color: var(--color-blog);
}
.single_cat a.cat_games {
    color: var(--color-games);
}
.single_cat a::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 0;
    background: var(--color-bk);
    height: 12px;
    width: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
.single_cat a span {
    position: relative;
}
.single_sns {
    margin-top: 16px;
}
.single_thumb img {
    height: auto;
}
.single_contents_body {
    margin-top: 24px;
}
.single_contents_body *:first-child {
    margin-top: 0;
}
.single_contents_body h2 {
    margin: 32px 0 16px;
    font-size: 2rem;
}
.single_contents_body h3 {
    margin: 24px 0 8px;
    font-size: 1.8rem;
}
.single_contents_body h3 {
    margin: 16px 0 4px;
}
.single_contents_body ul.wp-block-list {
    list-style: disc;
    padding-left: 1.6rem;
    margin-bottom: 1.6rem;
}
.single_contents_body ol.wp-block-list {
    list-style: decimal;
    padding-left: 2.4rem;
    margin-bottom: 1.6rem;
}

.single_contents_body .wp-block-list li + li {
    margin-top: 0.8rem;
}
.single_contents_body p {
    margin-bottom: 1.6rem;
}
.single_contents_body .wp-block-embed__wrapper {
    aspect-ratio: 16 / 9;
}
.single_contents_body .wp-block-embed__wrapper iframe {
    width: 100%;
    height: 100%;
}

.single_contents_writer {
    border-top: solid 1px var(--color-medium);
    margin-top: 24px;
    padding-top: 24px;
}
.single_contents_writer a {
    display: flex;
    align-items: center;
    text-decoration: none;
    width: fit-content;
    transition: opacity .3s;
}
.single_writer_thumb {
    width: 80px;
}
.single_writer_thumb img {
    aspect-ratio: 1/1;
    object-fit: cover;
    height: 100%;
}
.single_writer_name {
    margin-left: 16px;
    font-weight: 700;
}
.single_writer_name i {
    margin-right: 8px;
}
@media (min-width: 768px) {
    .single_contents {
        padding: 112px 0;
    }
    .single_contents .container {
        max-width: 1120px;
    }
    .single_contents_inner {
        padding: 40px;
        position: relative;
    }
    .single_title h1 {
        font-size: 4rem;
    }
    .single_data .single_date {
        font-size: 1.6rem;
        padding-right: 48px;
        margin: 0;
    }
    .single_data .single_date::after {
        width: 40px;
    }
    .single_data .single_tag {
        width: calc(100% - 130px);
        padding-left: 8px;
    }
    .single_data .single_tag a {
        font-size: 1.6rem;
        transition: opacity .3s;
    }
    .single_data .single_tag a:hover {
        opacity: .7;
    }
    .single_data .single_tag a + a {
        margin-left: 8px;
    }
    .single_cat {
        top: -32px;
        left: 40px;
    }
    .single_cat a {
        font-size: 1.3rem;
        width: 104px;
        height: 32px;
        padding: 0 6px;
        transition: opacity .3s;
    }
    .single_cat a:hover {
        opacity: .7;
    }
    .single_cat a::before {
        top: -14px;
        height: 28px;
    }
    .single_contents_body {
        margin-top: 56px;
    }
    .single_contents_writer {
        margin-top: 56px;
        padding-top: 56px;
    }
    .single_contents_writer a:hover {
        opacity: .7;
    }
    .single_writer_thumb {
        width: 120px;
    }
    .single_writer_name {
        margin-left: 32px;
    }
}



/*
MEMBER Single
---------------------------------*/
.member_single_thumb {
    max-width: 200px;
    margin: 0 auto;
}
.member_single_thumb img {
    aspect-ratio: 1/1;
    height: 100%;
    object-fit: cover;
}
.member_contents_header {
    margin-top: 24px;
    text-align: center;
}
.member_contents_header .single_title h1 {
    font-size: 2rem;
}
.member_contents_header .single_title div {
    font-size: 1.4rem;
    font-weight: 400;
    font-family: var(--font-en);
}
.member_contents_header .member_tag {
    margin-top: 16px;
}
.member_contents_header .member_tag a {
    text-decoration: none;
    font-weight: 700;
    color: var(--color-dark);
}
.member_contents_header .member_tag a + a {
    margin-left: 8px;
}
.member_contents_header .member_sns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}
.member_contents_header .member_sns a {
    height: 24px;
}
.member_contents_header .member_sns a img {
    width: auto;
    height: 100%;
}
.member_contents_body {
    margin-top: 32px;
}
.member_contents_body h2 {
    font-size: 1.8rem;
    margin: 24px 0 8px;
}
.member_contents_detail {
    text-align: left;
}
.related_works {
    margin: 32px 0;
}
.related_works h2 {
    text-align: center;
    position: relative;
    padding-top: 64px;
    margin: 0;
    font-family: var(--font-en);
    font-size: 2rem;
}
.related_works h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 56px;
    width: 1px;
    background: var(--color-bk);
}
.related_works .work_list {
    margin-top: 20px;
}
.connection_member h2 {
    text-align: center;
    position: relative;
    padding-top: 64px;
    margin: 0;
    font-family: var(--font-en);
    font-size: 2rem;
}
.connection_member h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 56px;
    width: 1px;
    background: var(--color-bk);
}

@media (min-width: 768px) {
    .member_single_thumb {
        max-width: 380px;
    }
    .member_contents_header {
        margin-top: 48px;
    }
    .member_contents_header .single_title h1 {
        font-size: 3.2rem;
    }
    .member_contents_header .single_title div {
        font-size: 1.6rem;
        margin-top: 8px;
    }
    .member_contents_header .member_tag {
        margin-top: 32px;
    }
    .member_contents_header .member_sns {
        margin-top: 32px;
    }
    .member_contents_header .member_sns a {
        height: 32px;
        transition: opacity .3s;
    }
    .member_contents_header .member_sns a:hover {
        opacity: .7;
    }
    .member_contents_body {
        text-align: center;
        margin-top: 64px;
    }
    .member_contents_body h2 {
        font-size: 2.4rem;
        margin: 64px 0 16px;
    }

    .related_works {
        margin: 64px 0;
    }
    .related_works h2 {
        font-size: 2.4rem;
        padding-top: 120px;
    }
    .related_works h2::before {
        height: 112px;
    }
    .related_works .work_list {
        margin-top: 56px;
    }
    .connection_member h2 {
        font-size: 2.4rem;
        padding-top: 120px;
    }
    .connection_member h2::before {
        height: 112px;
    }
}



/*---------------------------------
Add Class
---------------------------------*/
/*
Bg Color
---------------------------------*/

.-bg-gray {
    background: var(--color-light);
}
.-bg-white {
    background: var(--color-wh);
}

/*
Font Color
---------------------------------*/
.-fc-pink {
    color: var(--color-important);
}

/*
Font Size
---------------------------------*/

/*
Text Align
---------------------------------*/
.-ta-right {
    text-align: right;
}
.-ta-center {
    text-align: center;
}
.-ta-left {
    text-align: left;
}


/*
Margin
---------------------------------*/
.-m-auto {
    margin-left: auto;
    margin-right: auto;  
}

.-mt0 {
    margin-top: 0!important;
}
.-mt-xs {
    margin-top: var(--size-xs);
}
.-mt-s {
    margin-top: var(--size-s);
}
.-mt-m {
    margin-top: var(--size-m);
}
.-mt-l {
    margin-top: var(--size-l);
}
.-mt-xl {
    margin-top: var(--size-xl);
}

.-mb0 {
    margin-bottom: 0!important;
}
.-mb-xs {
    margin-bottom: var(--size-xs);
}
.-mb-s {
    margin-bottom: var(--size-s);
}
.-mb-m {
    margin-bottom: var(--size-m);
}
.-mb-l {
    margin-bottom: var(--size-l);
}
.-mb-xl {
    margin-bottom: var(--size-xl);
}

.-mr0 {
    margin-right: 0!important;
}
.-mr-xs {
    margin-right: var(--size-xs);
}
.-mr-s {
    margin-right: var(--size-s);
}
.-mr-m {
    margin-right: var(--size-m);
}
.-mr-l {
    margin-right: var(--size-l);
}
.-mr-xl {
    margin-right: var(--size-xl);
}

.-ml0 {
    margin-left: 0!important;
}
.-ml-xs {
    margin-left: var(--size-xs);
}
.-ml-s {
    margin-left: var(--size-s);
}
.-ml-m {
    margin-left: var(--size-m);
}
.-ml-l {
    margin-left: var(--size-l);
}
.-ml-xl {
    margin-left: var(--size-xl);
}

/*
Padding
---------------------------------*/
.-pt0 {
    padding-top: 0!important;
}
.-pt-xs {
    padding-top: var(--size-xs);
}
.-pt-s {
    padding-top: var(--size-s);
}
.-pt-m {
    padding-top: var(--size-m);
}
.-pt-l {
    padding-top: var(--size-l);
}
.-pt-xl {
    padding-top: var(--size-xl);
}

.-pb0 {
    padding-bottom: 0!important;
}
.-pb-xs {
    padding-bottom: var(--size-xs);
}
.-pb-s {
    padding-bottom: var(--size-s);
}
.-pb-m {
    padding-bottom: var(--size-m);
}
.-pb-l {
    padding-bottom: var(--size-l);
}
.-pb-xl {
    padding-bottom: var(--size-xl);
}

.-pr0 {
    padding-right: 0!important;
}
.-pr-xs {
    padding-right: var(--size-xs);
}
.-pr-s {
    padding-right: var(--size-s);
}
.-pr-m {
    padding-right: var(--size-m);
}
.-pr-l {
    padding-right: var(--size-l);
}
.-pr-xl {
    padding-right: var(--size-xl);
}

.-pl0 {
    padding-left: 0!important;
}
.-pl-xs {
    padding-left: var(--size-xs);
}
.-pl-s {
    padding-left: var(--size-s);
}
.-pl-m {
    padding-left: var(--size-m);
}
.-pl-l {
    padding-left: var(--size-l);
}
.-pl-xl {
    padding-left: var(--size-xl);
}









