@charset "UTF-8";
/*--------------------------------
setting
----------------------------------*/
body {
    color: #333;
    font-family: "Lato","Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.875;
    background: #fafafa;
}
p,h1,h2,h3,h4,h5,h6{
    margin: 0;
}

a{
    text-decoration: none;
}
picture{
    display: block;
}
/* text */


/* laout */
:root{
    --content:min(1140px,calc(100vw - 230px));
    --blank:calc(100vw - var(--content));
    --side:calc(var(--blank) / 2);
    --side-left: calc(var(--blank) / 2);
    --side-right: calc(var(--blank) / 2);
}
.aligndefa{
    width:var(--content);
    margin-left: var(--side-left) !important;
    margin-right: var(--side-right) !important;
}
.alignslim{
    width:min(900px,calc(100vw - 230px));
    margin-left: auto !important;
    margin-right: auto !important;
}
.align900{
    width: min(900px,100%);
    margin-left: auto !important;
    margin-right: auto !important;
}
.alignfull{
    width: 100vw;
    margin-right: calc(-1 * var(--side-right)) !important;
    margin-left: calc(-1 * var(--side-left)) !important;
    /* margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important; */
}


/*--------------------------------
password
----------------------------------*/
body#enter {
    margin: 0;
    background: #eee;
    padding: 100px 30px;
    align-items: center;
}
body#enter form {
    background: #fff;
    padding: 50px;
    height: fit-content;
    border-radius: 2px;
    display: flex;
    flex-wrap: wrap;
    width: 500px;
}
body#enter button {
    cursor: pointer;
    background: #333;
    color: #fff;
    border-radius: 2px;
    width: 40px;
    aspect-ratio: 1 / 1;
    display: block;
    flex-shrink: 0;
}
body#enter button:hover{
    background: #18DEDB;
}
body#enter input[type="password"] {
    width: 100%;
    padding: 0.3em 0.5em;
    flex-grow: 1;
    flex-basis: 0;
}
body#enter input[type="password"]::placeholder {
    font-size: var(--f14px);
    color: #c9c9c9;
    font-weight: normal;
}
body#enter p.errortxt {
    width: 100%;
    color: #ff830e;
    font-size: var(--f14px);
    margin: 1em 0 0;
}
/*--------------------------------
#loader
----------------------------------*/
#loader {
    position: fixed;
    z-index: 9999;
    inset: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
    width: 100vw;
    height: 100vh;
}
#loader .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transform: translateY(-50%) translateX(-50%);
    transition: all .5s ease;
}
#loadinganime{
    width: 100px;
    height: 100px;
}
#loader.shrink .items{
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader.loaded {
    opacity: 0;
    visibility: hidden;
}
#loader.shrink .inner {
    animation: load 1s ease-in-out forwards;
}

@keyframes load{
    0%{
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
    30%{
        width: calc(100vw - (var(--side-right) + var(--side-left)) - 7vw);
        height: calc(100vh - 180px);
        border-radius: 20px;
    }
    80%{
        width: calc(100vw - (var(--side-right) + var(--side-left)) + 3vw);
        height: calc(100vh - 40px);
        border-radius: 20px;
    }
    100%{
        width: calc(100vw - (var(--side-right) + var(--side-left)));
        height: calc(100vh - 80px);
        border-radius: 20px;
    }
}
#loader.shrink .items{
    transition: none;
    opacity: 0;
}
#loader.loaded {
    display: none;
}

.half-circle-spinner, .half-circle-spinner * {
    box-sizing: border-box;
  }

  .half-circle-spinner {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    position: relative;
  }

  .half-circle-spinner .circle {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: calc(60px / 10) solid transparent;
  }

  .half-circle-spinner .circle.circle-1 {
    border-top-color: #18DEDB;
    animation: half-circle-spinner-animation 1s infinite;
  }

  .half-circle-spinner .circle.circle-2 {
    border-bottom-color: #18DEDB;
    animation: half-circle-spinner-animation 1s infinite alternate;
  }

  @keyframes half-circle-spinner-animation {
    0% {
      transform: rotate(0deg);
    }
    100%{
      transform: rotate(360deg);
    }
  }

/*--------------------------------
header
----------------------------------*/
#header {
    top: 40px;
    left: 23px;
    line-height: 1;
    position: fixed;
    z-index: 500;
    transform: translateX(calc(-100% - 23px));
    transition: transform 0.3s ease-in-out;
    transition-delay: 1s;
}
#header.active {
    transform: translate(0);
}

#h-nav{
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: var(--f14px);
}
.h-nav-item{
    display: flex;
    gap: 5px;
    align-items: center;
}
.h-nav-item::before{
    content: "";
    width: 10px;
    height: 10px;
    display: block;
    background-color: #d5d5d5;
    border-radius: 10px;
    position: relative;
    top: 1px;
}
.h-nav-item.here::before{
    background-color: #18DEDB;
}
.h-nav-item a{
    display: block;
    position: relative;
}
.h-nav-item a::after{
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    background-color: currentColor;
    position: absolute;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
}
.h-nav-item a:hover::after{
    transform: scaleX(1);
}

/*--------------------------------
about
----------------------------------*/
.bggrid {
    background-color: #dafff9;
    background-image: linear-gradient(90deg, #ffffff 1px, transparent 1px), linear-gradient(#ffffff 1px, transparent 1px);
    background-position: center;
    background-size: 21px 21px;
}
#about{
    padding: 40px 0;
    background: #fff;
    min-height: 100vh;
}
#about .inner{
    height: 100%;
}
#scrollinfo {
    position: sticky;
    bottom: 40px;
    left: calc(100% - 80px);
    width: 60px;
    aspect-ratio: 1 / 1;
    transform: translateY(calc(100% + 40px));
    transition: transform 0.3s ease-in-out;
    transition-delay: 1s;
}
#scrollinfo.active{
    transform: translateY(0);
}
#scrollinfo a{
    width: 100%;
    height: 100%;
    padding: 20px;
    border: solid 1px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#scrollinfo .inner{
    animation: scrollmove 0.5s alternate infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
@keyframes scrollmove{
    0%{
    transform: translateY(-10%);
    }
    100%{
    transform: translateY(10%);
    }
}
#scrollinfo a:hover .inner{
    animation: none;
}

.about-wrap{
    width: 100%;
    height: calc(100vh - 80px);
    border-radius: 20px;
    background-attachment: fixed;
    overflow: hidden;
    position: sticky;
    top: 40px;
}

#about .card {
    background: #fff;
    width: min(95%, 514px);
    position: absolute;
    top: 60%;
    right: 0;
    padding: 60px;
    padding-right: 30px;
    transform: translateY(-50%) translateX(100%);
    transition: transform .5s ease-in-out;
}
#about .card.active {
    transform: translateY(-50%) translateX(0);
}
#about .card p{
    font-size: var(--f14px);
}

#jump,#down,#pull {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}
#pull {
    transform: translateY(27%) translateX(-50%);
}
#down,
#pull {
    display: none;
}

/*--------------------------------
works
----------------------------------*/
.ttl_en{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: var(--f14px);
    gap: 1em;
}
.ttl_en::before{
    content: attr(data-en);
    display: block;
    font-size: 5.28em;
    color: #fff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #333;
    line-height: 1;
}
#works {
    padding: 40px 0 0;
}
.ttl_en.blue::before{
    color: #dafff9;
}

/* search */
#search{
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 30px 0;
    display: flex;
    gap: 20px 5%;
}
#search h3{
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: var(--f20px);
    border-right: solid 1px;
    width: 200px;
    flex-shrink: 0;
    justify-content: center;
}
#search h3 .icon{
    position: relative;
    top: -2px;
}
#search .search__checks p{
   font-size: var(--f12px);
}
#search .search__checks label{
    font-size: var(--f20px);
    display: flex;
    align-items: center;
}
#search input[type='checkbox'] {
    border: none;
    background: #d5d5d5;
    border-radius: 1px;
    width: 1.2em;
    flex-shrink: 0;
}
#search .grp__checks{
    display: flex;
    gap: 0 1.2em;
    flex-wrap: wrap;
}
#search input[type='checkbox']:checked {
    background-color: #18DEDB;
}
#search input[type='checkbox']:after {
    position: absolute;
    left: 0.3em;
    top: 0;
    width: 0.6em;
    height: 0.9em;
    border: solid #fff;
    border-width: 0 3px 3px 0;
}

#no-results{
    text-align: center;
    color: #b8b8b8;
    font-size: var(--f14px);
}
#no-results:not(.is-showing){
    display: none;
}

/* list */
#workslist{
    --gridgap:calc(var(--content) * 0.05);
    --itemwidth:calc((var(--content) - (var(--gridgap) * 2)) / 3);
    --bggrid:calc(var(--itemwidth) + (var(--gridgap) / 2));
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 var(--gridgap);
    grid-auto-flow: dense;
}
.workslist__item{
    position: relative;
    cursor: pointer;
    margin-bottom: var(--gridgap);
}
.workslist__item::before{
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background: #333;
    position: absolute;
    top: 0;
    right: calc(var(--gridgap) * -0.5);
}
.workslist__item::after{
    content: "";
    height: 1px;
    width: 100%;
    display: block;
    background: #333;
    position: absolute;
    left: 0;
    bottom: calc(var(--gridgap) * -0.5);
}
.workslist__item.is-3n::before {
    display: none !important;
}
.workslist__item.is-bottom::after {
    display: none !important;
}
.workslist__item .img{
    width: 100%;
    aspect-ratio: 27/20;
    overflow: hidden;
    border-radius: 2px;
    margin-bottom: 10px;
    transition: all .4s ease-out;
}
.workslist__item:hover .img{
    background: #000;
}
.workslist__item:hover .img img{
    transform: scale(1.05);
    opacity: 0.5;
}
.workslist__item .name{
    line-height: 1.3;
    font-size: var(--f14px);
}
.workslist__item .flow {
    border-top: solid 1px;
    border-bottom: solid 1px;
    display: flex;
    font-size: var(--f12px);
    position: relative;
    margin-bottom: 10px;
}
.workslist__item .flow__item{
    position: relative;
    color: #D9D9D9;
    background: #fff;
    text-align: center;
    flex-grow: 1;
}
.workslist__item .flow__item:nth-of-type(1){z-index: 3;}
.workslist__item .flow__item:nth-of-type(2){z-index: 2;}
.workslist__item .flow__item:nth-of-type(3){z-index: 1;}
.workslist__item .flow__item.check {
    color: #ffffff;
    background: #8b8b8b;
    font-weight: normal;
}
.workslist__item .flow__item:not(:last-of-type)::after{
    content: "";
    display: block;
    width: 9px;
    height: 100%;
    background: inherit;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateX(100%);
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.workslist__item .flow__item:not(:last-of-type)::before{
    content: "";
    display: block;
    background: url("../images/icon_arrowr.svg") no-repeat;
    background-size: contain;
    height: calc(100% + 3px);
    aspect-ratio: 10 / 25;
    position: absolute;
    top: -1px;
    right: 0;
    transform: translateX(100%);
    z-index: 10;
}
.workslist__item .flow__item:not(:first-child){
    padding-left: 10px;
}





.workslist__item {
    opacity: 1;
    visibility: visible;
    animation: none;
}
.workslist__item.is-showing {
animation: fadeIn 0.3s ease-out forwards;
}
#no-results.is-hiding,
.workslist__item.is-hiding {
animation: fadeOut .3s ease-out forwards;
pointer-events: none;
}
.workslist__item.is-hiding.really-hidden {
display: none;
}

@keyframes fadeIn {
0% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    visibility: visible;
    filter: blur(5px);
}
100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    filter: blur(0);
}
}

@keyframes fadeOut {
0% {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    filter: blur(0);
}
100% {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    visibility: hidden;
    filter: blur(5px);
}
}
#no-results.is-showing {
animation: resultsIn 0.2s ease-in-out forwards;
}
@keyframes resultsIn {
0% {
    opacity: 0;
    filter: blur(5px);
}
100% {
    opacity: 1;
    filter: blur(0);
}
}



/* 詳細 */
.bggrid.gray{
    background-color: #e3e6e9;
}
#detailArea {
    width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    border-top: solid 1px;
    border-bottom: solid 1px;
    grid-column: 1 / -1;
    display: none;
    overflow: hidden;
    transition: none;
    transform: translateY(calc((var(--content) * -0.025) - 1px));
    z-index: 10;
}
#detailArea .btnarea {
    display: flex;
    justify-content: center;
    margin-right: var(--side-right);
    margin-left: var(--side-left);
    transition: all .2s;
}
#detailArea button.close-detail {
    margin: 0 calc((var(--content) / 3)* 0.3);
    display: flex;
    background: #333;
    color: #fff;
    width: calc((var(--content) / 3)* 0.4);
    aspect-ratio: 2 / 1;
    clip-path: circle(60.0% at 50% 0);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    line-height: 1;
    gap: 2px;
    font-size: var(--f12px);
    padding: 10px;
    transition: transform .3s ease-out;
    transform: translateX(0) scale(1);
}
#detailArea.left button.close-detail {
    --btn-x: calc((var(--content) / 3)* -1);
}
#detailArea.center button.close-detail {
    --btn-x: 0;
}
#detailArea.right button.close-detail {
    --btn-x: calc(var(--content) / 3);
}
#detailArea button.close-detail {
    transform: translateX(var(--btn-x)) scale(var(--btn-scale, 1));
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: top;
}
#detailArea button.close-detail.animate-out {
    transform: translateX(var(--btn-x)) scale(0.1);
    opacity: 0;
    transition: transform 0.2s ease-in, opacity 0.2s ease-in;
}
#detailArea button.close-detail.animate-in {
    transform: translateX(var(--btn-x)) scale(1.05);
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
#detailArea button.close-detail.animate-in.animated-done {
    transform: translateX(var(--btn-x)) scale(1);
    opacity: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}
#detailArea button.close-detail:hover {
    transform: translateX(var(--btn-x)) scale(1.05) !important;
}

.work-detail .inner {
    display: flex;
    padding: 70px 0;
    gap: 20px 6%;
}
.work-detail .images{
    width: 42%;
    display: grid;
    grid-template-columns: 64.49fr 18.65fr 16.86fr;
    grid-template-rows: 1fr auto 10px;
    flex-shrink: 0;
}
.work-detail .image{
    border-radius: 2px;
    overflow: hidden;
    border: solid 1px;
}
.work-detail .pc{
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}
.work-detail .sp{
    grid-column: 2 / 4;
    grid-row: 2 / 4;
}
.work-detail .txts{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.work-detail .ttlwrap {
    border-top: solid 1px;
    border-bottom: solid 1px;
    padding: 1em 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.work-detail .ttlwrap .ttl{
    font-size: var(--f28px);
    line-height: 1.3;
}
.work-detail .ttlwrap .url{
    color: #FF6F00;
    display: flex;
    align-items: center;
    gap: 5px;
}
.work-detail .desc{
    border-bottom: solid 1px;
    padding: 1em 0;
    flex-grow: 1;
}
.work-detail .info{
    border-bottom: solid 1px;
    padding: 1em 0;
}
.work-detail .info dl{
    margin: 0;
    display: flex;
    gap: 10px 1em;
}
.work-detail .info dt{
    width: 5em;
    flex-shrink: 0;
}
.work-detail .info dd{
    margin: 0;
}


.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(3px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out,filter 0.4s ease-out;
    will-change: opacity, transform, filter;
}
.fade-in-up.is-animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}
/*--------------------------------
skills
----------------------------------*/
#skills{
    background: #fff;
    padding: 90px 0;
}

.skillslist{
    border-top: solid 2px;
    border-bottom: solid 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.skillslist__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #fafafa;
    margin: 0;
    padding: 20px 30px;
    gap: 10px 2em;
    line-height: 1.3;
}
.skillslist__item:nth-child(2n) {
    background: #eaeaea;
}
.skillslist__item dt {
   font-size: var(--f20px);
   width: 9em;
   flex-shrink: 0;
}
.skillslist__item dd {
    margin: 0;
}
.skillslist__item dd.year {
    font-size: var(--f26px);
    text-align: center;
    width: 4em;
    flex-shrink: 0;
}
.skillslist__item dd.year .count{
    color: #FF6F00;
}
.skillslist__item dd.year .count .unit{
    font-size: 0.6em;
    margin-left: 2px;
}
.skillslist__item dd.year .start{
    background: #FF6F00;
    color: #fff;
    padding: 2px 0.5em;
    font-size: var(--f14px);
    border-radius: 1px;
    font-weight: normal;
}
.skillslist__item dd.txt {
    font-size: var(--f14px);
    flex-grow: 1;
    flex-basis: 0;
}
/*--------------------------------
footer
----------------------------------*/
footer {
    padding: 20px var(--side);
}
footer p{
    text-align: center;
    font-size: var(--f12px);
}




/*--------------------------------
animation
----------------------------------*/
.fadeUpTrigger{
    opacity: 0;
}
.fadeUpTrigger.showin {
    animation-name: fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity: 0;
}
@keyframes fadeUpAnime{
    0% {
    opacity: 0;
    transform: translateY(100px);
    }
    70% {
    opacity: 1;
    transform: translateY(-20px);
    }
    100% {
    opacity: 1;
    transform: translateY(0);
    }
}

.slidetoRightTrigger{
    opacity: 0;
}
.slidetoRightTrigger.showin {
    animation-name: slidetoRight;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-delay: 0.25s;
    opacity: 0;
}
@keyframes slidetoRight{
    0% {
    opacity: 0;
    transform: translateX(-100px);
    }
    100% {
    opacity: 1;
    transform: translateX(0);
    }
}
.slidetoLeftTrigger{
    opacity: 0;
}
.slidetoLeftTrigger.showin {
    animation-name: slidetoLeft;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-delay: 0.5s;
    opacity: 0;
}
@keyframes slidetoLeft{
    0% {
    opacity: 0;
    transform: translateX(100px);
    }
    100% {
    opacity: 1;
    transform: translateX(0);
    }
}

.colorTrigger{
    background: #18DEDB;
}
.colorTrigger img{
    opacity: 0;
}
.colorTrigger.showin img{
    animation-name: coloring;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-timing-function: ease-in-out;
}
@keyframes coloring{
    0% {
    	opacity: 0;
    }
    100% {
    	opacity: 1;
    }
}

.upTrigger.showin img{
    animation-name: uping;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    animation-timing-function: ease-in-out;
}
@keyframes uping{
    0% {
    	transform: scale(1);
    }
    50% {
        transform: scale(1.05) rotate(5deg);
    }
    100% {
        transform: scale(1);
    }
}

.boundTrigger::before{
    transform-origin: bottom;
}
.boundTrigger.showin::before{
    animation-name: bound;
    animation-duration:1s;
    animation-fill-mode:forwards;
    animation-timing-function: ease-in-out;
}
@keyframes bound{
    0% {
    	transform:translateY(0);
    }
    50% {
        transform: translateY(-20%);
    }
    100% {
        transform: translateY(0);
    }
}
/*--------------------------------
----------------------------------
breakpoint
----------------------------------
----------------------------------*/
@media(max-width:1024px){
    /* :root {
        --content: min(1140px, calc(100vw - (115px + 4vw)));
        --side-left: 115px;
        --side-right: 4vw;
      } */
      :root {
        --content: calc(100vw - 8vw);
        --side-left: 4vw;
        --side-right: 4vw;
    }
    body{
        margin-bottom: 40px;
    }
    #header {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100vw;
        background: #fafafa;
        transform: translateY(100%);
    }
    #h-nav {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        margin: 10px;
    }
    #search {
        flex-direction: column;
        border-top: none;
    }
    #search h3 {
        border-right: none;
        border-bottom: solid 1px;
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 10px;
        font-size: var(--f16px);
    }
    #detailArea button.close-detail {
        margin: 0 30%;
        width: 120px;
    }
    .work-detail .inner {
        padding: 30px 0;
        flex-direction: column;
        align-items: center;
    }
    .work-detail .images {
        width: min(100%,500px);
    }
    .work-detail .txts {
        width: 100%;
    }

    .skillslist__item dd.txt {
        flex-basis: 100%;
    }
    .skillslist__item dt {
        flex-grow: 1;
        width: auto;
    }
    .skillslist__item dd.year {
        width: 3em;
    }
}
@media(max-width:768px){
    #about .card {
        padding: 30px;
        padding-right: 0;
    }
    #workslist {
        grid-template-columns: 1fr;
        --gridgap: 20px;
        row-gap: 30px;
    }
    .workslist__item::before,
    .workslist__item::after{
        content: none;
    }
    .workslist__item .img{
        margin-bottom: 0;
        border-radius: 2px 2px 0 0;
    }
    #detailArea{
        transform: none;
        margin-bottom: var(--gridgap);
    }
    #detailArea.left button.close-detail,
    #detailArea.right button.close-detail,
    #detailArea.center button.close-detail {
        --btn-x: 0;
    }
    .work-detail .images {
        width: 100%;
    }
    .skillslist__item dd.year {
        position: relative;
        top: -10px;
        right: -20px;
    }
}
@media(max-width:540px){
    
    #about h1{
        font-size: var(--f24px);
    }
    #search .search__checks label {
        font-size: var(--f16px);
    }
    #detailArea {
        margin-left: -4vw;
    }

}

