@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;700&family=Shippori+Mincho:wght@500&display=swap');

:root{
    --text-color: #231815;
    --theme-color: #E60012;
    --light-gray: #EDEDED;
    --gray: #CCCCCC;
    --bg-gray: #F6F6F6;

    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

    --transition: .2s;
    --font-poppins: "Poppins", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-shippori: "Shippori Mincho", "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    
    --padding: 140px;
    --wrap: 1200px;
    --space: calc((100vw - var(--wrap))/2);
}

/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

body{
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    color: var(--text-color);
    font-family: var(--base-font);
    line-height: normal;
    padding-top: 80px;
    letter-spacing: 0.1em;
}

.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a{
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}
a:hover{
    text-decoration: none;
}
@media screen and (min-width: 992px) {
    a:hover{
        opacity: .85;
    }
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-top-half{
    padding-top: calc(var(--padding) / 2);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.padding-tb{
    padding: var(--padding) 0;
}
br.s-up{
    display: none;
}


/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    transition : all 600ms;
    }

.ts1 {
    transition-delay: 200ms;
}

.ts2 {
    transition-delay: 400ms;
}

.ts3 {
    transition-delay: 600ms;
}

.ts4 {
    transition-delay: 800ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    }

.fadeino.scrollin {
   opacity : 1;
}
.img-animation img{
    clip-path: inset(0 100% 0 0);
    transition: .8s;
}
.img-animation.scrollin img{
    clip-path: inset(0 0 0 0);
}


/* COMMON */
.pc-none{
    display: none;
}
.bg-gray{
    background-color: var(--bg-gray);
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}
.header-logo{
    padding: 30px 55px 30px 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
}
.header-logo img{
    display: block;
}
.header-menu{
    background-color: #fff;
    display: flex;
    justify-content: flex-end;
}
.header-menu nav,
.header-menu__nav{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header-menu__nav > li > a{
    padding: 30px 15px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: normal;
}
@media screen and (min-width: 992px) {
    .header-menu__nav > li > a:hover{
        opacity: 1;
        color: var(--theme-color);
    }
}
.header-menu__nav > li.has-sub{
    position: relative;
    padding: 22px 15px;
}
.header-menu__nav > li.has-sub > span{
    padding: 0 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 34px;
    border: 1px solid var(--text-color);
    border-radius: 20px;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .header-menu__nav > li.has-sub:hover > span{
        background-color: var(--text-color);
        color: #fff;
    }
    .header-menu__nav > li.has-sub:hover .header-menu__nav__sub{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}
.header-menu__nav__sub{
    position: absolute;
    transform: translate(-50%,100%);
    bottom: 14px;
    left: 50%;
    width: max-content;
    border: 1px solid var(--theme-color);
    border-radius: 6px;
    box-shadow: 4px 4px 30px rgb(0 0 0 / .06);
    background-color: #fff;
    padding: 30px 45px 30px 30px;
    z-index: 1;
    opacity: 0;
    transition: var(--transition);
    visibility: hidden;
    pointer-events: none;
}
.header-menu__nav__sub li{
    margin-bottom: 10px;
}
.header-menu__nav__sub li:last-child{
    margin-bottom: 0;
}
.header-menu__nav__sub li,
.header-menu__nav__sub li a{
    font-size: 14px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.1em;
}
.header-menu__nav__sub li::before{
    content: "";
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 8px;
    background: url(img/common/header-sub-arrow.svg) no-repeat center center / contain;
    position: relative;
    top: 2px;
}
@media screen and (min-width: 992px) {
    .header-menu__nav__sub li a:hover{
        opacity: 1;
        color: var(--theme-color);
    }
}
.header-menu__link{
    display: flex;
    flex-wrap: wrap;
    margin-left: 15px;
}
.header-menu__link-item.bg-bk a{
    background-color: var(--text-color);
}
.header-menu__link-item.bg-theme a{
    background-color: var(--theme-color);
}
.header-menu__link-item a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    height: 80px;
    font-size: 14px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.1em;
    width: 200px;
    position: relative;
}
.header-menu__link-item a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
    width: 14px;
    height: 12px;
    background: url(img/common/arrow.svg) no-repeat center center / contain;
}
.header-menu__link-item a span{
    display: block;
    letter-spacing: 0.2em;
    font-family: var(--font-poppins);
    font-weight: bold;
}
.nav-toggle-wrap,
#drawer,
#fixed-link{
    display: none;
}



/* FOOTER */
#footer{
    padding: 80px 0 40px;
    margin-top: 140px;
    border-top: 6px solid var(--theme-color);
    background-color: var(--text-color);
    color: #fff;
}
body.home #footer,
body.page-company #footer,
body.page-crosstalk #footer,
body.page-people #footer{
    margin-top: 0;
}
.footer-flex{
    justify-content: space-between;
}
.footer-flex__logo img{
    display: block;
}
.footer-flex__menu{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 140px;
}
.footer-flex__menu li,
.footer-flex__menu li a{
    line-height: normal;
    letter-spacing: 0.1em;
    font-size: 15px;
    font-weight: 500;
}
.footer-flex__menu li:not(:last-child){
    margin-bottom: 20px;
}
.footer-link{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 35px;
}
.footer-link__menu{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 43px;
}
.footer-link__menu li,
.footer-link__menu li a{
    font-size: 12px;
    line-height: normal;
    letter-spacing: 0.1em;
}
.footer-link__menu li::before{
    content: "";
    width: 14px;
    height: 12px;
    background: url(img/common/arrow-color.svg) no-repeat center center / contain;
    display: inline-block;
    margin-right: 15px;
    position: relative;
    top: 1px;
}
.footer-link__instagram{
    position: relative;
}
.footer-link__instagram::after{
    content: "";
    width: 134px;
    height: 38px;
    position: absolute;
    transform: translate(100%,-50%);
    top: 50%;
    right: -8px;
    background: url(img/common/footer-ig-balloon.svg) no-repeat center center / contain;
    pointer-events: none;
}
.footer-copy{
    font-size: 12px;
    font-family: var(--font-poppins);
    margin-top: 20px;
}



/* COMMON */
.title-en{
    font-family: var(--font-poppins);
    font-size: 18px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.2em;
    color: var(--theme-color);
}
.title-text{
    font-family: var(--font-shippori);
    font-weight: 500;
    font-size: 46px;
    line-height: 1.86;
    letter-spacing: 0.3em;
}
.view-more a{
    display: inline-flex;
    align-items: center;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.1em;
}
.view-more span{
    width: 60px;
    height: 60px;
    background-color: var(--text-color);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    margin-right: 20px;
    border: 1px solid var(--text-color);
    transition: var(--transition);
}
.view-more span::before{
    content: "";
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    width: 14px;
    height: 12px;
    background: url(img/common/arrow.svg) no-repeat center center / contain;
    transition: var(--transition);
}
.view-more.wh span{
    background-color: #fff;
    border-color: #fff;
}
.view-more.wh span::before{
    background: url(img/common/arrow-color.svg) no-repeat center center / contain;
}
@media screen and (min-width: 992px) {
    .view-more a:hover{
        opacity: 1;
    }
    .view-more a:hover span{
        background-color: #fff;
    }
    .view-more:not(.wh) a:hover span::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(0);
        -moz-filter: brightness(0) grayscale(100%) invert(0);
        -o-filter: brightness(0) grayscale(100%) invert(0);
        -ms-filter: brightness(0) grayscale(100%) invert(0);
        filter: brightness(0) grayscale(100%) invert(0);   
    }
    .view-more.wh a:hover span::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(1);
        -moz-filter: brightness(0) grayscale(100%) invert(1);
        -o-filter: brightness(0) grayscale(100%) invert(1);
        -ms-filter: brightness(0) grayscale(100%) invert(1);
        filter: brightness(0) grayscale(100%) invert(1);   
    }
    .view-more.wh a:hover span{
        background-color: transparent;
    }
}


/* TOP */
.mv{
    padding-left: 60px;
    position: relative;
}
.mv-img img{
    width: 100%;
}
.mv-scroll{
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    gap: 35px;
    height: 100%;
}
.mv-scroll__text{
    font-size: 12px;
    font-family: var(--font-poppins);
    line-height: normal;
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
}
.mv-scroll__bar{
    height: 140px;
    background: #EEEEEE;
    width: 1px;
    position: relative;
}
.mv-scroll__bar span{
    width: 3px;
    height: 50px;
    position: absolute;
    top: 0;
    left: -1px;
    background: #eee;
    display: block;
    animation-name: scrollAnimation;
    animation-fill-mode: backwards;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-delay: 0.5s;
    animation-direction: normal;
}
@keyframes scrollAnimation {
    0% {
        top: 0;
    }
    100% {
        top: 100px;
    }
}
.mv-inner{
    position: relative;
}
.mv-box{
    position: absolute;
    top: 16vw;
    left: 42vw;
    z-index: 1;
}
.mv-box__text{
    font-size: 2.76vw;
    line-height: normal;
    font-weight: 500;
    font-family: var(--font-shippori);
    color: #fff;
}
.mv-box__text span{
    line-height: normal;
    background-color: var(--text-color);
    padding: 0 20px;
    letter-spacing: 0.1em;
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    transition: .6s;
}
.mv-box__text span:nth-of-type(1){
    margin-left: 3.26vw;
}
.mv-box__text span:nth-of-type(2){
    margin-left: 7.77vw;
    transition-delay: .2s;
}
.mv-box__text span:nth-of-type(3){
    transition-delay: .4s;
}
.mv-box.scrollin .mv-box__text span{
    clip-path: inset(0 0 0 0);
}
.mv-box.scrollin .mv-box__en{
    transform: translateY(0);
    opacity: 1;
}
.mv-box__en{
    margin-top: 3.47vw;
    font-size: 1.25vw;
    color: #fff;
    letter-spacing: 0.2em;
    font-family: var(--font-poppins);
    line-height: normal;
    margin-left: 1.5vw;
    transform: translateY(30px);
    transition: .6s;
    opacity: 0;
    transition-delay: .6s;
}
.mv-box__en small{
    font-size: 0.833vw;
    display: block;
    letter-spacing: 0.2em;
}
.top-vision{
    text-align: center;
    padding: 156px 0 140px;
}
.top-vision__ttl{
    color: var(--theme-color);
    font-family: var(--font-poppins);
    font-weight: bold;
    font-size: 18px;
    line-height: normal;
    letter-spacing: 0.2em;
    position: relative;
    z-index: 0;
    margin-bottom: 57px;
}
.top-vision__ttl::before{
    content: "VISION";
    -webkit-text-stroke: 1px #F9E2DC;
    color: transparent;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    z-index: -1;
    font-size: 140px;
    letter-spacing: 0.2em;
}
.top-vision__text{
    font-weight: 500;
    font-size: 15px;
    line-height: 3;
    margin-bottom: 60px;
}
.entry-btn{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    gap: 20px;
}
.entry-btn__item.bg-bk a{
    background-color: var(--text-color);
}
.entry-btn__item.bg-theme a{
    background-color: var(--theme-color);
}
.entry-btn__item a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    height: 90px;
    font-weight: bold;
    line-height: normal;
    letter-spacing: 0.1em;
    position: relative;
}
.entry-btn__item a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
    width: 14px;
    height: 12px;
    background: url(img/common/arrow.svg) no-repeat center center / contain;
}
.entry-btn__item a span{
    display: block;
    letter-spacing: 0.2em;
    font-family: var(--font-poppins);
    font-weight: bold;
    font-size: 12px;
}
.top-people{
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.top-people::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    width: 43.75%;
    height: calc(100% - 146px);
    background-color: #E30202;
    clip-path: polygon(170px 0, 100% 0, 100% 100%, 0 100%);
}
.top-people::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 218px);
    background-color: var(--theme-color);
    z-index: -3;
}
.top-people__flex{
    color: #fff;
    margin-bottom: 60px;
    justify-content: space-between;
    align-items: flex-end;
}
.top-people__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}
.top-people__flex-item__title{
    margin-bottom: 48px;
}
.top-people__flex-item__title .title-en{
    color: #fff;
}
.top-people__text{
    line-height: 1.6;
}
.top-people__label{
    position: absolute;
    top: 48px;
    right: -107px;
    z-index: -1;
}
.people-card a{
    display: block;
}
@media screen and (min-width: 992px) {
    .people-card a:hover{
        opacity: 1;
    }
    .people-card a:hover .people-card__img-item img{
        transform: scale(1.05);
    }
}
.people-card__img{
    position: relative;
}
.people-card__img-item{
    overflow: hidden;
}
.people-card__img-item img{
    width: 100%;
    transition: .6s;
}
.people-card__img-box{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 0 40px 60px;
}
.people-card__img-box__text span{
    display: inline-block;
    color: #fff;
    background-color: var(--text-color);
    padding: 0 20px;
    font-family: var(--font-shippori);
    font-weight: 500;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.people-card__img-box__text span:last-child{
    margin-bottom: 0;
}
.people-card__img-box__tag{
    margin-top: 20px;
}
.people-card__img-box__tag span{
    background-color: var(--theme-color);
    border: 1px solid #fff;
    color: #fff;
    padding: 4px 14px;
    display: inline-block;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0;
    font-weight: normal;
}
.people-card__img-box__tag.career span{
    background-color: #fff;
    border-color: var(--theme-color);
    color: var(--theme-color);
}
.people-card__inner{
    padding: 15px 40px 0;
}
.people-card__name{
    font-family: var(--font-poppins);
    color: var(--theme-color);
    font-weight: bold;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0.2em;
}
.people-card__text{
    font-size: 14px;
    line-height: normal;
}
.top-cross__flex{
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}
.crosstalk-card a{
    display: block;
    position: relative;
}
@media screen and (min-width: 992px) {
    .crosstalk-card a:hover{
        opacity: 1;
    }
    .crosstalk-card a:hover .crosstalk-card__img img{
        transform: scale(1.05);
    }
    .crosstalk-card a:hover .view-more span{
        background-color: #fff;
    }
    .crosstalk-card a:hover .view-more span::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(0);
        -moz-filter: brightness(0) grayscale(100%) invert(0);
        -o-filter: brightness(0) grayscale(100%) invert(0);
        -ms-filter: brightness(0) grayscale(100%) invert(0);
        filter: brightness(0) grayscale(100%) invert(0);   
    }
}
.crosstalk-card__img{
    overflow: hidden;
}
.crosstalk-card__img img{
    width: 100%;
    transition: .6s;
}
.crosstalk-card__ttl{
    position: absolute;
    /* top: 30px; */
    right: 40px;
    bottom: 30px;
    z-index: 1;
    font-family: var(--font-poppins);
    font-size: 40px;
    line-height: 1.4;
    letter-spacing: 0.2em;
    -webkit-text-stroke: 1px #fff;
    color: transparent;
    font-weight: bold;
    text-align: right;
}
.crosstalk-card__box{
    position: absolute;
    z-index: 1;
    bottom: 60px;
    left: 60px;
}
.crosstalk-card__box__label{
    margin-bottom: 6px;
}
.crosstalk-card__box__label span{
    display: inline-block;
    padding: 2px 10px;
    line-height: normal;
    font-weight: bold;
    background-color: var(--theme-color);
    color: #fff;
}
.crosstalk-card__box__text span{
    margin-bottom: 6px;
    padding: 2px 10px;
    display: inline-block;
    background-color: #fff;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0;
}
.crosstalk-card__box__text span:last-child{
    margin-bottom: 0;
}
.crosstalk-card__arrow{
    display: none;
    position: absolute;
    z-index: 1;
    bottom: 20px;
    right: 20px;
}
.crosstalk-card__arrow span{
    margin: 0;
}
.top-works{
    background-color: #F5F5F5;
}
.top-works__flex-img{
    width: 22.2%;
}
.top-works__flex-img__item{
    height: 50%;
}
.top-works__flex-img__item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-works__flex-box{
    width: calc(100% - (22.2% * 2));
}
.top-works__flex-box{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.top-works__flex-box__en{
    color: var(--theme-color);
    letter-spacing: 0.2em;
    font-size: 18px;
    font-weight: bold;
    font-family: var(--font-poppins);
    position: relative;
    z-index: 0;
    margin-bottom: 25px;
}
.top-works__flex-box__en::before{
    content: "WORK";
    display: block;
    line-height: 1;
    position: relative;
    z-index: -1;
    letter-spacing: 0.2em;
    font-size: 120px;
    font-weight: bold;
    -webkit-text-stroke: 1px #EEEEEE;
    color: #FBFBFB;
    font-family: var(--font-poppins);
    margin-bottom: -45px;
}
.top-works__flex-box__ttl{
    font-size: 46px;
    font-family: var(--font-shippori);
    line-height: 1.86;
    letter-spacing: 0.3em;
    font-weight: 500;
    margin-bottom: 40px;
}
.top-works__flex-box__text{
    line-height: 1.6;
    margin-bottom: 60px;
}
.top-company,
.company-sec02{
    position: relative;
    z-index: 0;
}
.top-company::before,
.company-sec02::before{
    content: "";
    width: calc(520px + var(--space));
    height: 100%;
    background-color: var(--theme-color);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.top-company__flex,
.company-sec02__flex{
    align-items: center;
    justify-content: space-between;
}
.top-company__flex-title,
.company-sec02__flex-title,
.top-company__flex-title .title-en,
.company-sec02__flex-title .title-en{
    color: #fff;
}
.top-company__flex-title .title{
    margin-bottom: 40px;
}
.top-company__flex-title__text{
    line-height: 1.6;
    margin-bottom: 60px;
}
.top-company__flex-content,
.company-sec02__flex-content{
    width: 100%;
    max-width: 740px;
}
.top-company__flex-content__box{
    border: 1px solid var(--theme-color);
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.top-company__flex-content__box:not(:last-child){
    border-bottom: none;
}
.top-information{
    padding-top: 195px;
}
.top-information__en{
    text-align: center;
    color: var(--theme-color);
    font-size: 18px;
    font-family: var(--font-poppins);
    line-height: normal;
    letter-spacing: 0.2em;
    font-weight: bold;
    margin-bottom: 25px;
    position: relative;
    z-index: 0;
}
.top-information__en::before{
    content: "INFORMATION";
    position: absolute;
    transform: translateX(-50%);
    bottom: -20px;
    left: 50%;
    z-index: -1;
    font-weight: bold;
    font-size: 120px;
    letter-spacing: 0.2em;
    line-height: 1;
    color: #F9E2DC;
    opacity: 0.2;
}
.top-information__ttl{
    font-weight: 500;
    font-size: 46px;
    font-family: var(--font-shippori);
    letter-spacing: 0.3em;
    line-height: 1.86;
    margin-bottom: 60px;
    text-align: center;
}
.top-news{
    padding-bottom: 100px;
}
.top-news__flex{
    justify-content: space-between;
}
.top-news__flex-title__en{
    font-size: 42px;
    font-weight: bold;
    font-family: var(--font-poppins);
    letter-spacing: 0.1em;
    line-height: normal;
    color: var(--theme-color);
}
.top-news__flex-title__text{
    font-family: var(--font-shippori);
    font-weight: 500;
    letter-spacing: 0.3em;
}
.top-news__flex-content{
    width: 100%;
    max-width: 880px;
}
.news-card{
    border-top: 1px dashed #ccc;
}
.news-card:last-child{
    border-bottom: 1px dashed #ccc;
}
.news-card a{
    display: block;
    padding: 30px 70px 30px 40px;
    position: relative;
    z-index: 0;
}
.news-card a::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--theme-color);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
    transition: .6s cubic-bezier(0.86, 0, 0.07, 1);
}
.news-card a::before{
    content: "";
    width: 14px;
    height: 12px;
    display: inline-block;
    background: url(img/common/arrow-color.svg) no-repeat center center / contain;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 40px;
    pointer-events: none;
    transition: var(--transition);
}
.news-card__date{
    color: #aaa;
    font-size: 13px;
    font-family: var(--font-poppins);
    font-weight: normal;
    margin-bottom: 11px;
}
.news-card__date .icon-note{
    width: 50px;
    height: 12px;
    background: url(img/common/icon-note.svg) no-repeat center center / contain;
    display: inline-block;
    margin-left: 15px;
    position: relative;
    top: 1px;
}
.news-card__text{
    font-size: 15px;
}
@media screen and (min-width: 992px) {
    .news-card a:hover{
        opacity: 1;
    }
    .news-card a:hover::after{
        width: 100%;
    }
    .news-card a:hover::before{
        right: 30px;
    }
}
.top-news__view-more{
    text-align: right;
    margin-top: 60px;
}
.top-news__bnr{
    max-width: 900px;
    width: 100%;
    margin: 100px auto 0;
}


/* BREADCRUMBS */
.breadcrumbs-wrap{
    margin-top: 70px;
}
.breadcrumbs{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 5px 0;
}
.breadcrumbs span,
.breadcrumbs a{
    font-size: 12px;
    line-height: normal;
    display: inline-block;
    letter-spacing: 0.1em;
}
.breadcrumbs > span::after{
    content: "";
    display: inline-block;
    width: 5px;
    height: 9px;
    background: url(img/common/breacrumbs-arrow.svg) no-repeat center center / contain;
    margin: 0 20px;
}
.breadcrumbs > span:last-child::after{
    display: none;
}
.breadcrumbs a{
    color: var(--theme-color);
}


/* PAGE */
.page-mv{
    margin-top: 100px;
    position: relative;
    z-index: 1;
}
.short-mv{
    margin: 66px 0;
}
.page-mv__flex{
    justify-content: space-between;
    flex-direction: row-reverse;
}
.page-mv__flex-img{
    width: 100%;
    max-width: 680px;
}
.page-mv__flex-img img{
    width: calc(100% + var(--space));
    max-width: calc(100% + var(--space));
    height: 420px;
    object-fit: cover;
}
.page-title.center{
    text-align: center;
}
.page-title__en{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--theme-color);
    font-family: var(--font-poppins);
}
.page-title__text{
    font-size: 46px;
    font-weight: 500;
    letter-spacing: 0.3em;
    font-family: var(--font-shippori);
    line-height: 1.86;
}
.page-title__text.sm{
    font-size: 40px;
}
.first-section{
    padding-top: 100px;
}
.label-mv{
    margin: 26px 0 60px;
}
.label-mv__text{
    text-align: center;
    font-weight: bold;
    font-family: var(--font-poppins);
    letter-spacing: 0.2em;
    font-size: 140px;
    -webkit-text-stroke: 1px #F9E2DC;
    color: transparent;
}
.label-mv .page-title{
    margin-top: -110px;
    position: relative;
    z-index: 1;
}
.page-mv__text{
    text-align: center;
    margin-top: 40px;
    line-height: 1.6;
}


/* COMPANY */
.company-mv__label{
    position: absolute;
    top: -100px;
    left: -80px;
    font-family: var(--font-poppins);
    font-size: 172px;
    line-height: 1;
    -webkit-text-stroke: 1px #F9E2DC;
    color: transparent;
    font-weight: bold;
    letter-spacing: 0.2em;
    z-index: 1;

}
.company-mv .page-title{
    position: relative;
    z-index: 2;
}
.company-mv__text{
    line-height: 1.6;
    margin-top: 40px;
}
.company-sec01__grid{
    display: grid;
    position: relative;
}
.company-sec01__grid.col2{
    grid-template-columns: repeat(2,1fr);
}
.company-sec01__grid.col3{
    grid-template-columns: repeat(3,1fr);
}
.company-sec01__grid-item{
    border: 1px solid var(--theme-color);
}
.company-sec01__grid.col2 .company-sec01__grid-item:nth-of-type(2n){
    border-left: none;
}
.company-sec01__grid.col2 .company-sec01__grid-item:nth-of-type(n + 3){
    border-top: none;
}
.company-sec01__grid.col3 .company-sec01__grid-item{
    border-top: none;
}
.company-sec01__grid.col3 .company-sec01__grid-item:not(:first-child){
    border-left: none;
}
.company-sec01__grid-illust{
    position: absolute;
    right: -79px;
    bottom: -53px;
    z-index: 1;
}
.company-sec02__flex-title .title-en{
    color: #fff;
}
.company-sec02__flex-title .title{
    margin-bottom: 80px;
}
.company-sec02__flex-content{
    background-color: #fff;
    padding: 60px 40px;
}
.company-info dl{
    display: flex;
    flex-wrap: wrap;
    padding: 30px 0 30px 20px;
    border-bottom: 1px dashed #ccc;
}
.company-info dl:first-child{
    padding-top: 0;
}
.company-info dl:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.company-info dl dt{
    font-size: 15px;
    font-weight: bold;
    width: 100%;
    max-width: 185px;
}
.company-info dl dd{
    font-size: 15px;
    width: 100%;
    max-width: calc(100% - 185px);
}
.company-sec03,
.crosstalk-sec02{
    padding: 80px 0;
}


/* ENTRY */
.entry-sec01{
    margin-top: -90px;
    padding: 210px 0 100px;
}
.entry-sec01__title{
    text-align: center;
    margin-bottom: 40px;
}
.entry-sec01__text{
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}
.entry-sec01__flex{
    justify-content: center;
    gap: 20px;
}
.entry-sec01__flex-box{
    width: 100%;
    max-width: 185px;
}
@media screen and (min-width: 992px) {
    .entry-sec01__flex-box__item{
        border: 1px solid var(--theme-color);
        background-color: #fff;
        height: 120px;
        align-items: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .entry-sec01__flex-box__item::before{
        content: "";
        width: 7px;
        height: 14px;
        background-color: var(--theme-color);
        position: absolute;
        transform: translate(100%,-50%);
        top: 50%;
        right: -8px;
        clip-path: polygon(0 0, 100% 50%, 0 100%);
    }
    .entry-sec01__flex-box:last-child .entry-sec01__flex-box__item::before{
        display: none;
    }
}
.entry-sec01__flex-box__item-step{
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: var(--theme-color);
    line-height: normal;
    font-family: var(--font-poppins);
}
.entry-sec01__flex-box__item-text{
    font-weight: 500;
    font-family: var(--font-shippori);
    letter-spacing: 0.3em;
    text-align: center;
}
.entry-sec01__flex-box__item-text small{
    display: block;
    font-size: 12px;
    font-weight: normal;
    font-family: var(--base-font);
    letter-spacing: 0.1em;
    margin-top: 8px;
}
.entry-sec01__flex-box__note{
    font-size: 11px;
    margin-top: 10px;
    text-align: center;
}


/* REQUIREMENTS */
.requirements-sec01__flex-side{
    width: 100%;
    max-width: 216px;
    padding-top: 100px;
}
.requirements-sec01__flex-side__sticky{
    position: sticky;
    top: 180px;
}
.requirements-sec01__flex-side ul li,
.requirements-sec01__flex-side ul li a{
    font-size: 15px;
    font-weight: 500;
    line-height: normal;
}
.requirements-sec01__flex-side ul li{
    margin-bottom: 12px;
}
.requirements-sec01__flex-side ul li::before{
    content: "";
    width: 18px;
    height: 18px;
    display: inline-block;
    margin-right: 8px;
    background: url(img/common/icon-down.svg) no-repeat center center / contain;
    vertical-align: bottom;
    position: relative;
    top: -1px;
}
.requirements-sec01__flex-side ul li:last-child{
    margin-bottom: 0;
}
.requirements-sec01__flex-main{
    width: 100%;
    max-width: calc(100% - 216px);
    padding-left: 104px;
}
.requirements-sec01__flex-main__content{
    padding-top: 100px;
}
.requirements-sec01__flex-main__content-ttl{
    font-size: 22px;
    font-weight: bold;
    padding-left: 24px;
    margin-bottom: 30px;
}
.requirements-sec01__flex-main__content-ttl::before{
    content: "";
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 12px;
    display: inline-block;
    background-color: var(--theme-color);
    position: relative;
    top: -1px;
    margin-left: -24px;
}
.requirements-sec01__flex-main__content-info dl{
    padding: 30px 0;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.requirements-sec01__flex-main__content-info dl::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: url(img/common/line.svg) repeat-x center center / contain;
}
.requirements-sec01__flex-main__content-info dl:last-child::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: url(img/common/line.svg) repeat-x center center / contain;
}
.requirements-sec01__flex-main__content-info dl dt{
    width: 100%;
    max-width: 260px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0;
}
.requirements-sec01__flex-main__content-info dl dd{
    width: 100%;
    max-width: calc(100% - 260px);
    line-height: normal;
    font-weight: normal;
    letter-spacing: 0;
}
.requirements-sec01__flex-main__content-info dl dd small{
    font-size: 12px;
}
.requirements-sec01__flex-main__content-info dl dd b{
    font-weight: 500;
}
.requirements-sec01__flex-main__content-entry{
    margin-top: 60px;
}
.requirements-sec01__flex-main__content-entry a{
    width: 100%;
    max-width: 300px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--theme-color);
    background-color: var(--theme-color);
    color: #fff;
    position: relative;
    font-weight: bold;
}
.requirements-sec01__flex-main__content-entry a span{
    display: block;
    font-size: 12px;
    font-weight: bold;
    font-family: var(--font-poppins);
    letter-spacing: 0.2em;
}
.requirements-sec01__flex-main__content-entry a::before{
    content: "";
    width: 14px;
    height: 12px;
    background: url(img/common/arrow-color.svg) no-repeat center center / contain;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
    transition: var(--transition);
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
    z-index: 1;
    pointer-events: none;
}
@media screen and (min-width: 992px) {
    .requirements-sec01__flex-main__content-entry a:hover{
        opacity: 1;
        color: var(--theme-color);
        background-color: transparent;
    }
    .requirements-sec01__flex-main__content-entry a:hover::before{
        -webkit-filter: initial;
        -moz-filter: initial;
        -o-filter: initial;
        -ms-filter: initial;
        filter: initial;
        right: 10px;
    }
}
.requirements-sec01__flex-main__content-note{
    margin-top: 30px;
}
.requirements-sec01__flex-main__content-note__text{
    color: var(--theme-color);
    margin-bottom: 30px;
    letter-spacing: 0;
}
.requirements-sec01__flex-main__content-note__box{
    border: 1px solid var(--theme-color);
    padding: 30px;
}
.requirements-sec01__flex-main__content-note__box-ttl{
    font-weight: bold;
    margin-bottom: 13px;
    letter-spacing: 0;
}
.requirements-sec01__flex-main__content-note__box-text{
    letter-spacing: 0;
}


/* NEWS ARCHIVE */
.archive-sec__content{
    max-width: 880px;
    margin: 0 auto;
}
.pagenation{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}
.pagenation a.previouspostslink{
    margin-right: 10px;
    transform: rotate(180deg);
}
.pagenation a.nextpostslink{
    margin-left: 10px;
}
.pagenation span,
.pagenation a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    line-height: normal;
    letter-spacing: 0;
    font-weight: normal;
    font-family: var(--font-poppins);
}
.pagenation .current{
    background-color: var(--theme-color);
    color: #fff;
    pointer-events: none;
}
@media screen and (min-width: 992px) {
    .pagenation a.page:hover{
        opacity: 1;
        background-color: var(--bg-gray);
    }
    .pagenation a.previouspostslink:hover,
    .pagenation a.nextpostslink:hover{
        background-color: var(--text-color);
        opacity: 1;
        background-image: url(img/common/arrow.svg);
    }
}
.pagenation a.previouspostslink,
.pagenation a.nextpostslink{
    border-color: var(--text-color);
    background: url(img/common/arrow-bk.svg) no-repeat center center / 9px;
}
.pagenation a.disabled{
    opacity: 0.2;
    pointer-events: none;
}


/* NEWS SINGLE */
.single-sec__inner{
    border-top: dotted #ccc;
    border-bottom: dotted #ccc;
    padding: 40px;
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
}
.single-sec__header{
    margin-bottom: 40px;
}
.single-sec__header-date{
    font-size: 13px;
    letter-spacing: 0;
    margin-bottom: 10px;
    color: #aaa;
    font-family: var(--font-poppins);
}
.single-sec__header-title{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
}
.single-sec__body > *:not(:last-child){
    margin: 40px 0;
}
.single-sec__body p{
    line-height: 1.6;
}
.single-sec__body figure{
    text-align: center;
}
.single-sec__body figcaption{
    line-height: 1.4;
    margin-top: 14px;
    text-align: center;
    font-size: 13px;
}
.single-sec__body h2{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}
.single-sec__body h3,
.single-sec__body h4,
.single-sec__body h5,
.single-sec__body h6{
    font-weight: bold;
    line-height: 1.6;
}
.single-sec__body ul li{
    padding-left: 1em;
}
.single-sec__body ul li::before{
    content: "・";
    margin-left: -1em;
}
.single-sec__body ol{
    counter-reset: list-item;
}
.single-sec__body ol li{
    counter-increment: list-item;
    padding-left: 1em;
}
.single-sec__body ol li::before{
    content: counter(list-item)".";
    margin-left: -1em;
}
.single-sec__back{
    text-align: center;
    margin-top: 40px;
}
.single-sec__back a{
    display: block;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--theme-color);
    color: #fff;
    border: 1px solid var(--theme-color);
    font-weight: bold;
    padding: 24px 0;
    position: relative;
}
.single-sec__back a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%) rotate(180deg);
    top: 50%;
    left: 20px;
    width: 14px;
    height: 12px;
    background: url(img/common/arrow-color.svg) no-repeat center center / contain;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
    transition: var(--transition);
    z-index: 1;
    pointer-events: none;
}
@media screen and (min-width: 992px) {
    .single-sec__back a:hover{
        opacity: 1;
        color: var(--theme-color);
        background-color: transparent;
    }
    .single-sec__back a:hover::before{
        left: 10px;
        -webkit-filter: initial;
        -moz-filter: initial;
        -o-filter: initial;
        -ms-filter: initial;
        filter: initial;
    }
}



/* CROSS TALK */
.crosstalk-sec01 .crosstalk-card:not(:last-child){
    margin-bottom: 40px;
}



/* PEOPLE */
.people-sec01__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 60px 20px;
}



/* WORKS */
.works-sec01__content{
    margin: 0 auto 40px;
    border: 1px solid var(--theme-color);
    padding: 40px 80px 40px 40px;
    max-width: 1080px;
}
.works-sec01__content:last-child{
    margin-bottom: 0;
}
.works-sec01__content-img{
    width: 100%;
    max-width: calc(100% - 500px);
    padding-right: 80px;
}
.works-sec01__content-box{
    width: 100%;
    max-width: 500px;
    padding-top: 40px;
    display: flex;
    flex-direction: column;
}
.works-sec01__content-box__ttl{
    margin-bottom: 30px;
}
.works-sec01__content-box__ttl-num{
    font-weight: bold;
    font-size: 12px;
    line-height: normal;
    font-family: var(--font-poppins);
    color: var(--theme-color);
    letter-spacing: 0.1em;
}
.works-sec01__content-box__ttl-text{
    font-size: 26px;
    font-weight: 500;
    font-family: var(--font-shippori);
    letter-spacing: 0.3em;
}
.works-sec01__content-box__more{
    margin-top: auto;
    text-align: right;
    padding-bottom: 40px;
}
.works-sec01__content-box__more-text{
    width: 100%;
    display: block;
    max-width: 240px;
    text-align: center;
    border: 1px solid var(--theme-color);
    margin-left: auto;
    font-weight: bold;
    color: var(--theme-color);
    padding: 18px 0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}
@media screen and (min-width: 992px) {
    .works-sec01__content-box__more-text:hover{
        opacity: 1;
        background-color: var(--theme-color);
        color: #fff;
    }
    .works-sec01__content-box__more-text:hover::before,
    .works-sec01__content-box__more-text:hover::after{
        background-color: #fff;
    }
}
.works-sec01__content-box__more-text::before,
.works-sec01__content-box__more-text::after{
    content: "";
    position: absolute;
    transform: translate(50%,-50%);
    top: 50%;
    right: 26px;
    width: 12px;
    height: 1px;
    background-color: var(--theme-color);
    transition: var(--transition);
}
.works-sec01__content-box__more-text::after{
    transform: translate(50%,-50%) rotate(-90deg);
}
.works-sec01__content-box__more-text.active::after{
    transform: translate(50%,-50%) rotate(0deg);
}
.works-sec01__content-box__more-text.active{
    background-color: #eee;
    color: var(--text-color);
    border-color: #eee;
}
.works-sec01__content-box__more-text.active::before,
.works-sec01__content-box__more-text.active::after{
    background-color: var(--text-color);
}
.works-sec01__content-body{
    padding-top: 60px;
    display: none;
}
.works-sec01__content-body__item{
    margin-bottom: 40px;
}
.works-sec01__content-body__item-ttl{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}
.works-sec01__content-body__item-ttl::before{
    content: "";
    top: 15px;
    left: 0;
    width: 20px;
    height: 1px;
    background-color: var(--theme-color);
    position: absolute;
}
.works-sec01__content-body__item-tag{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.works-sec01__content-body__item-tag span{
    display: block;
    font-size: 12px;
    padding: 3px 13px;
    border-radius: 14px;
    border: 1px solid var(--text-color);
}
.works-sec01__content-body__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 40px 0;
}
.works-sec01__content-body__grid-img img{
    width: 100%;
}



/* PEOPLE SINGLE */
.single-people-sec .wrap,
.single-crosstalk-sec .wrap{
    max-width: 1080px;
}
.single-people-sec__header,
.single-crosstalk-sec__header{
    padding-top: 46px;
    position: relative;
    z-index: 0;
    margin-top: 46px;
    margin-bottom: 80px;
}
.single-people-sec__header::before,
.single-crosstalk-sec__header::before{
    content: "";
    position: absolute;
    top: 0;
    right: calc(-1 * ((100vw - 1080px)/2));
    background-color: var(--theme-color);
    width: 100%;
    max-width: calc(820px + ((100vw - 1080px)/2));
    height: 75%;
    z-index: -1;
}
.single-people-sec__header-img-wrap{
    position: relative;
}
.single-people-sec__header-box{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    background-color: #fff;
    padding: 40px 77px 0 40px;
}
.single-people-sec__header-box__name{
    font-weight: bold;
    font-family: var(--font-poppins);
    font-size: 30px;
    letter-spacing: 0.2em;
    color: var(--theme-color);
    margin-bottom: 10px;
}
.single-people-sec__header-box__ttl{
    font-size: 14px;
    margin-bottom: 30px;
}
.single-people-sec__header-box__tag span{
    display: inline-block;
    border: 1px solid var(--theme-color);
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 13px;
    color: #fff;
    background-color: var(--theme-color);
}
.single-people-sec__header-box__tag.career span{
    color: var(--theme-color);
    background-color: #fff;
}
.single-people-sec__header-copy{
    position: absolute;
    z-index: 1;
    bottom: 40px;
    right: 80px;
    width: max-content;
}
.single-people-sec__header-copy span{
    background-color: var(--text-color);
    color: #fff;
    display: inline-block;
    font-size: 30px;
    font-weight: 500;
    font-family: var(--font-shippori);
    padding: 2px 20px;
    margin-bottom: 10px;
    transition: 1s;
    clip-path: inset(0 100% 0 0);
}
.single-people-sec__header-copy span:last-child{
    margin-bottom: 0;
}
.single-people-sec__header-copy.scrollin span{
    clip-path: inset(0 0 0 0);
}
.single-people-sec__body{
    max-width: 880px;
    margin: 0 auto;
}
.single-people-sec__back{
    margin-top: 60px;
}
.single-people-sec__body-item,
.single-people-sec__body-img{
    margin-bottom: 60px;
}
.single-people-sec__body-item__num{
    margin-bottom: 10px;
}
.single-people-sec__body-item__num span{
    display: inline-block;
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    font-family: var(--font-poppins);
    padding: 0 13px;
    line-height: 25px;
    background-color: var(--theme-color);
}
.single-people-sec__body-item__ttl{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
}
.single-people-sec__body-video{
    margin-top: 60px;
}
.single-people-sec__body-video__ttl{
    margin-bottom: 30px;
    font-size: 20px;
    padding-left: 22px;
    position: relative;
    font-weight: 600;
}
.single-people-sec__body-video__ttl::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.single-people-sec__body-video__youtube{
    width: 100%;
    aspect-ratio: 16/9;
}
.single-people-sec__body-video__youtube.short{
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 9/16;
}
.single-people-sec__body-video__youtube iframe{
    width: 100%;
    height: 100%;
    vertical-align: bottom;
}
.single-people-sec__back a{
    display: block;
    max-width: 240px;
    margin: 0 auto;
    width: 100%;
    border: 1px solid var(--theme-color);
    color: var(--theme-color);
    font-weight: bold;
    padding: 18px 0;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    text-align: center;
}
@media screen and (min-width: 992px) {
    .single-people-sec__back a:hover{
        opacity: 1;
        background-color: var(--theme-color);
        color: #fff;
    }
    .single-people-sec__back a:hover::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(1);
        -moz-filter: brightness(0) grayscale(100%) invert(1);
        -o-filter: brightness(0) grayscale(100%) invert(1);
        -ms-filter: brightness(0) grayscale(100%) invert(1);
        filter: brightness(0) grayscale(100%) invert(1);
    }
}
.single-people-sec__back a::before{
    content: "";
    width: 14px;
    height: 12px;
    background: url(img/common/arrow-color.svg) no-repeat center center / contain;
    display: inline-block;
    left: 20px;
    top: 50%;
    position: absolute;
    transform: translateY(-50%) scaleX(-1);
    transition: var(--transition);
}
.people-sec01__ttl{
    margin-bottom: 60px;
    text-align: center;
}
.people-sec01__ttl-en{
    font-weight: bold;
    font-family: var(--font-poppins);
    font-size: 42px;
    letter-spacing: 0.1em;
    color: var(--theme-color);
}
.people-sec01__ttl-text{
    letter-spacing: 0.3em;
    font-family: var(--font-shippori);
}


/* CROSSTALK SINGLE */
.single-crosstalk-sec__header .crosstalk-card__box__text span{
    font-size: 34px;
}
.single-crosstalk-sec__header-img-wrap{
    position: relative;
}

.single-crosstalk-sec__member-box{
    display: flex;
    flex-wrap: wrap;
}
.single-crosstalk-sec__member-ttl{
    margin-bottom: 20px;
    font-size: 22px;
    padding-left: 22px;
    position: relative;
    font-weight: 600;
}
.single-crosstalk-sec__member-ttl::before{
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--theme-color);
}
.single-crosstalk-sec__member-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 40px;
    border: 1px solid var(--theme-color);
    margin-bottom: 20px;
}
.single-crosstalk-sec__member-box:last-child{
    margin-bottom: 0;
}
.single-crosstalk-sec__member-box__icon{
    width: 180px;
}
.single-crosstalk-sec__member-box__item{
    width: calc(100% - 180px);
    padding-left: 60px;
}
.single-crosstalk-sec__member-box__item-meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 30px;
    margin-bottom: 10px;
}
.single-crosstalk-sec__member-box__item-meta__name{
    font-family: var(--font-poppins);
    color: var(--theme-color);
    font-weight: bold;
    font-size: 30px;
    letter-spacing: 0.2em;
}
.single-crosstalk-sec__member-box__item-meta__job{
    font-size: 14px;
}
.single-crosstalk-sec__member-box__item-meta__tag span{
    display: inline-block;
    color: var(--theme-color);
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    font-family: var(--font-poppins);
    padding: 0 13px;
    line-height: 23px;
    background-color: #fff;
    border: 1px solid var(--theme-color);
}
.single-crosstalk-sec__body{
    max-width: 880px;
    margin: 60px auto 0;
}
.single-crosstalk-sec__body-ttl{
    font-size: 30px;
    font-weight: bold;
    margin: 60px 0 40px;
    letter-spacing: 0;
}
.single-crosstalk-sec__body-question{
    font-size: 20px;
    font-weight: bold;
    margin: 40px 0 30px;
    letter-spacing: 0;
}
.single-crosstalk-sec__body-talk{
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0;
}
.single-crosstalk-sec__body-talk__icon{
    width: 80px;
    text-align: center;
}
.single-crosstalk-sec__body-talk__icon-text{
    margin-top: 10px;
    color: var(--theme-color);
    font-weight: bold;
    letter-spacing: 0.2em;
}
.single-crosstalk-sec__body-talk__text{
    width: calc(100% - 80px);
    padding-left: 30px;
    letter-spacing: 0;
}
.single-crosstalk-sec__body-img{
    margin: 60px 0;
}
.single-crosstalk-other__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}
.single-crosstalk-other .crosstalk-card__img img{
    height: 404px;
    object-fit: cover;
}
.single-crosstalk-other .crosstalk-card__box{
    bottom: 40px;
    left: 40px;
}
.single-crosstalk-other .crosstalk-card__ttl{
    font-size: 22px;
}