@charset "UTF-8";
:root {
  --gutter: 20;
  --screen-width: 375;
  --container-width: 1000;
  --color__text: #393939;
  --color__primary: #3208C3;
  --color__secondary: #21C9CA;
}

@media (min-width: 768px) {
  :root {
    --screen-width: 960;
  }
}
@media (min-width: 960px) {
  :root {
    --screen-width: 1240;
  }
}
/*----------------------------------------------

  FOUNDATION

----------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  -webkit-print-color-adjust: exact;
  color-adjust: exact;
       print-color-adjust: exact;
}

* {
  min-width: 0;
}

*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p, figure, ul, ol, dl, dt, dd {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

svg {
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: inherit;
}
a:hover img {
  opacity: 1;
}
a:hover {
  outline: none;
  color: inherit;
}

a[target=_blank]:after {
  display: none;
}

b,
strong {
  font-weight: bold;
}

img {
  max-width: 100%;
  max-height: 100%;
}

ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*---------------------------------------
   BASE
---------------------------------------*/
body {
  font-family: "Noto Sans JP", Avenir, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana, "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  color: #333;
  font-size: min( calc( 15 / var(--screen-width) * 100vw ), 15px );
  line-height: 2;
  position: relative;
  overflow-x: clip;
  background-color: #EAEDF0;
}

/*----------------------------------------------

  LAYOUT

----------------------------------------------*/
/*---------------------------------------
   l-header
---------------------------------------*/
.l-header {
  height: min( calc( 55 / var(--screen-width) * 100vw ), 70px );
}
.l-header__fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: inherit;
  background-color: #fff;
  z-index: 100;
}
.l-header__container {
  height: inherit;
  width: 100%;
  padding: 0 min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  max-width: calc((var(--gutter) * 2 + var(--container-width)) * 1px);
  margin: auto;
}
.l-header__body {
  height: inherit;
  display: flex;
  align-items: center;
  gap: min( calc( 50 / var(--screen-width) * 100vw ), 50px );
}
.l-header__body .logo {
  width: min( calc( 60 / var(--screen-width) * 100vw ), 80px );
  margin-right: auto;
}
.l-header__body .logo a {
  display: block;
  transition: opacity 0.3s;
}
.l-header__body .logo a img {
  display: block;
  width: 100%;
  height: auto;
}
.l-header__body .logo a:hover {
  opacity: 0.7;
}
.l-header__body .menu {
  display: none;
}
@media (min-width: 960px) {
  .l-header__body .menu {
    display: flex;
    gap: min( calc( 50 / var(--screen-width) * 100vw ), 50px );
    font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
    line-height: 1.5;
  }
  .l-header__body .menu a {
    display: block;
    transition: opacity 0.3s;
  }
  .l-header__body .menu a:hover {
    opacity: 0.7;
  }
}
.l-header__body .menu-toggle-button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  aspect-ratio: 1;
  width: min( calc( 55 / var(--screen-width) * 100vw ), 55px );
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header__body .menu-toggle-button span {
  display: block;
  width: 50%;
  height: 1px;
  background-color: var(--color__text);
  position: absolute;
  transition: transform 0.3s;
}
.l-header__body .menu-toggle-button span:first-child {
  transform: translateY(-8px);
}
.l-header__body .menu-toggle-button span:last-child {
  transform: translateY(8px);
}
.l-header__body .menu-toggle-button.--opened span:first-child {
  transform: rotate(45deg);
}
.l-header__body .menu-toggle-button.--opened span:nth-child(2) {
  display: none;
}
.l-header__body .menu-toggle-button.--opened span:last-child {
  transform: rotate(-45deg);
}
@media (min-width: 960px) {
  .l-header__body .menu-toggle-button {
    display: none;
  }
}
.l-header__body .contact {
  display: none;
}
@media (min-width: 960px) {
  .l-header__body .contact {
    color: #fff;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, var(--color__primary), var(--color__secondary));
    padding: min( calc( 5 / var(--screen-width) * 100vw ), 5px ) min( calc( 30 / var(--screen-width) * 100vw ), 30px );
    font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
    gap: 0.5em;
    transition: opacity 0.3s;
    font-weight: 500;
  }
  .l-header__body .contact .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    width: min( calc( 22 / var(--screen-width) * 100vw ), 22px );
    border-radius: min( calc( 6 / var(--screen-width) * 100vw ), 6px );
    background-color: #fff;
  }
  .l-header__body .contact .icon:before {
    content: "";
    width: 72.7272727273%;
    aspect-ratio: 1;
    display: block;
    mask-image: var(--url);
    -webkit-mask-image: var(--url);
    mask-size: contain;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
            mask-repeat: no-repeat;
    -webkit-repeat: no-repeat;
    background-color: var(--color__primary);
  }
  .l-header__body .contact:hover {
    opacity: 0.7;
  }
}

/*---------------------------------------
   l-mobile-menu
---------------------------------------*/
.l-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  padding-top: min( calc( 55 / var(--screen-width) * 100vw ), 70px );
  z-index: 1000;
  opacity: 0;
  transform: translateY(-20px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  /* scroll
  ----------------------------------*/
  /* body
  ----------------------------------*/
}
.l-mobile-menu.--opened {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
@media (min-width: 960px) {
  .l-mobile-menu {
    display: none;
  }
}
.l-mobile-menu__scroll {
  height: 100%;
  overflow-y: auto;
  -ms-overflow-style: none;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  position: relative;
}
.l-mobile-menu__scroll:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.l-mobile-menu__scroll::-webkit-scrollbar {
  display: none;
}
.l-mobile-menu__body {
  width: 100%;
  padding: min( calc( 50 / var(--screen-width) * 100vw ), 50px ) min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  max-width: calc((var(--gutter) * 2 + var(--container-width)) * 1px);
  margin: auto;
  display: grid;
  gap: min( calc( 50 / var(--screen-width) * 100vw ), 50px );
  pointer-events: auto;
  min-height: 100%;
  align-content: center;
}
.l-mobile-menu__body .menu {
  display: grid;
  gap: min( calc( 35 / var(--screen-width) * 100vw ), 35px );
  justify-items: center;
  color: #fff;
}
.l-mobile-menu__body .menu a {
  display: grid;
  align-content: flex-start;
  font-size: min( calc( 18 / var(--screen-width) * 100vw ), 18px );
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px );
  line-height: 1.4;
  font-weight: bold;
  transition: opacity 0.3s;
}
.l-mobile-menu__body .menu a:hover {
  opacity: 0.7;
}
.l-mobile-menu__body .menu a small {
  display: flex;
  align-items: center;
  font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
  font-weight: normal;
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px );
}
.l-mobile-menu__body .menu a small:before {
  content: "";
  display: block;
  width: min( calc( 35 / var(--screen-width) * 100vw ), 35px );
  height: 1px;
  background-color: var(--color__text);
}
.l-mobile-menu__body .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px );
  background-image: linear-gradient(to right, var(--color__primary), var(--color__secondary));
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: min( calc( 235 / var(--screen-width) * 100vw ), 235px );
  padding: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
  margin: auto;
  transition: opacity 0.3s;
}
.l-mobile-menu__body .contact:hover {
  opacity: 0.7;
}
.l-mobile-menu__body .contact::after {
  content: "";
  display: block;
  width: min( calc( 8 / var(--screen-width) * 100vw ), 8px );
  aspect-ratio: 1;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/*---------------------------------------
   l-contents
---------------------------------------*/
.l-contents {
  padding: min( calc( 50 / var(--screen-width) * 100vw ), 100px ) 0;
  /* container
  ----------------------------------*/
}
.l-contents__container {
  padding: 0 min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  width: 100%;
  max-width: calc((var(--gutter) * 2 + var(--container-width)) * 1px);
  margin: auto;
}

/*---------------------------------------
   l-page-top-button
---------------------------------------*/
.l-page-top-button {
  position: relative;
  width: 100%;
  padding: 0 min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  max-width: calc((var(--gutter) * 2 + var(--container-width)) * 1px);
  margin: auto;
}
.l-page-top-button button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  aspect-ratio: 1;
  width: min( calc( 60 / var(--screen-width) * 100vw ), 60px );
  border-radius: 50%;
  background-color: var(--color__primary);
  position: absolute;
  right: min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  transform: translateY(-50%);
  color: #fff;
  font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  display: grid;
  justify-items: center;
  align-content: center;
  cursor: pointer;
  z-index: 1;
}
.l-page-top-button button:before {
  content: "";
  aspect-ratio: 1;
  width: min( calc( 8 / var(--screen-width) * 100vw ), 8px );
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}
.l-page-top-button button:after {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 50%;
}

/*---------------------------------------
   l-pagetop-button
---------------------------------------*/
.l-pagetop-button {
  width: 100%;
  padding: 0 min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  max-width: calc((var(--gutter) * 2 + var(--container-width)) * 1px);
  margin: auto;
  position: -webkit-sticky;
  position: sticky;
  bottom: 60px;
  z-index: 100;
  pointer-events: none;
  /* body
  ---------------------------------------*/
  /* button
  ---------------------------------------*/
}
.l-pagetop-button__body {
  position: relative;
}
.l-pagetop-button button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  aspect-ratio: 55/65;
  width: 55px;
  cursor: pointer;
  overflow: hidden;
  pointer-events: auto;
  position: absolute;
  top: -25px;
  right: 0;
}
.l-pagetop-button button img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*---------------------------------------
   l-footer
---------------------------------------*/
.l-footer {
  position: relative;
  background-color: #EAEDF0;
  padding-top: min( calc( 30 / var(--screen-width) * 100vw ), 30px );
  /* container
  ---------------------------------------*/
  /* body
  ---------------------------------------*/
  /* logo
  ---------------------------------------*/
  /* navi
  ---------------------------------------*/
  /* contact
  ---------------------------------------*/
  /* copyright
  ---------------------------------------*/
}
.l-footer:before {
  content: "";
  display: block;
  width: 100%;
  height: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
}
@media (min-width: 960px) {
  .l-footer {
    padding: min( calc( 50 / var(--screen-width) * 100vw ), 50px ) 0;
  }
}
.l-footer__container {
  width: 100%;
  padding: 0 min( calc( var(--gutter) / var(--screen-width) * 100vw ), calc(var(--gutter) * 1px) );
  max-width: calc((var(--gutter) * 2 + var(--container-width)) * 1px);
  margin: auto;
}
.l-footer__body {
  position: relative;
  display: grid;
  gap: min( calc( 50 / var(--screen-width) * 100vw ), 50px );
}
.l-footer__body > * {
  position: relative;
}
.l-footer__body > *:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: max( calc( -25 / var(--screen-width) * 100vw ), -25px );
}
.l-footer__body > *:first-child:before {
  content: none;
}
@media (min-width: 960px) {
  .l-footer__body {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .l-footer__body > * {
    border-left: 1px solid #fff;
    min-height: min( calc( 240 / var(--screen-width) * 100vw ), 240px );
  }
  .l-footer__body > *:before {
    content: none;
  }
  .l-footer__body > *:first-child {
    border-left: 0;
  }
}
.l-footer .logo {
  display: grid;
  gap: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
}
.l-footer .logo a {
  display: block;
  transition: opacity 0.3s;
  width: min( calc( 210 / var(--screen-width) * 100vw ), 210px );
  margin: auto;
}
.l-footer .logo a:hover {
  opacity: 0.7;
}
.l-footer .logo p {
  font-size: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 960px) {
  .l-footer .logo {
    align-content: center;
  }
  .l-footer .logo a {
    margin-left: 0;
  }
  .l-footer .logo p {
    text-align: left;
  }
}
.l-footer .navi {
  font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
  font-weight: 500;
  line-height: 1.5;
  display: grid;
  gap: min( calc( 20 / var(--screen-width) * 100vw ), 20px );
  justify-content: center;
}
@media (min-width: 960px) {
  .l-footer .navi {
    align-content: center;
  }
}
.l-footer .contact {
  display: grid;
  gap: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
}
.l-footer .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px );
  background-image: linear-gradient(to right, var(--color__primary), var(--color__secondary));
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 100%;
  padding: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
  margin: auto;
  transition: opacity 0.3s;
}
.l-footer .contact a:hover {
  opacity: 0.7;
}
.l-footer .contact p {
  font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 960px) {
  .l-footer .contact {
    align-content: center;
  }
  .l-footer .contact a {
    width: min( calc( 215 / var(--screen-width) * 100vw ), 215px );
    margin-right: 0;
  }
  .l-footer .contact p {
    width: min( calc( 215 / var(--screen-width) * 100vw ), 215px );
    margin-left: auto;
    margin-right: 0;
  }
}
.l-footer .copyright {
  font-size: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
  color: #fff;
  padding: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
  line-height: 1.2;
  position: relative;
  z-index: 1;
  text-align: center;
  min-height: auto;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.l-footer .copyright:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background-color: var(--color__text);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 960px) {
  .l-footer .copyright {
    color: var(--color__text);
    padding: 0;
    transform: none;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: left;
    border: 0;
  }
  .l-footer .copyright:before {
    content: none;
  }
}

/*----------------------------------------------

  OBJECT - PROJECT

----------------------------------------------*/
/*---------------------------------------
   p-works-articles
---------------------------------------*/
.p-works-articles {
  display: grid;
  gap: min( calc( 20 / var(--screen-width) * 100vw ), 40px );
}
@media (min-width: 768px) {
  .p-works-articles {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-works-articles article {
  --color: rgb( from var(--color__text) r g b / 0.1 );
  box-shadow: 0 0 10px var(--color);
  width: 100%;
  flex-shrink: 0;
  background-color: #fff;
}
.p-works-articles article a {
  display: grid;
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px );
  padding: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
}
.p-works-articles article a .img {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
.p-works-articles article a .img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-works-articles article a .txt {
  display: flex;
  flex-wrap: wrap;
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px ) min( calc( 5 / var(--screen-width) * 100vw ), 5px );
}
.p-works-articles article a .txt .date {
  font-size: min( calc( 13 / var(--screen-width) * 100vw ), 13px );
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
}
.p-works-articles article a .txt .category {
  font-size: min( calc( 13 / var(--screen-width) * 100vw ), 13px );
  line-height: 1.2;
  font-family: "Roboto", sans-serif;
  display: flex;
  align-items: center;
  gap: min( calc( 5 / var(--screen-width) * 100vw ), 5px );
}
.p-works-articles article a .txt .category:before {
  content: "";
  display: block;
  width: 1px;
  height: 1em;
  background-color: var(--color__text);
}
.p-works-articles article a .txt .title {
  font-size: min( calc( 14 / var(--screen-width) * 100vw ), 14px );
  line-height: 1.5;
  width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
}
.p-works-articles article.is-movie .img {
  position: relative;
}
.p-works-articles article.is-movie .img:before {
  content: "";
  display: block;
  --url: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 35 35' width='35' height='35'><circle fill='%23e50303' cx='17.5' cy='17.5' r='16.5'/><path fill='%23fff' d='M25.5,17.5l-12,7.5v-15l12,7.5Z'/></svg>");
  background-image: var(--url);
  background-repeat: no-repeat;
  background-size: contain;
  width: min( calc( 35 / var(--screen-width) * 100vw ), 35px );
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

/*---------------------------------------
   p-pagination
---------------------------------------*/
.p-pagination {
  font-family: "Roboto", sans-serif;
  display: flex;
  justify-content: center;
  color: var(--color__text);
  font-weight: bold;
  gap: min( calc( 10 / var(--screen-width) * 100vw ), 10px );
}
.p-pagination a,
.p-pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  width: min( calc( 30 / var(--screen-width) * 100vw ), 40px );
}
.p-pagination a.page,
.p-pagination span.page {
  position: relative;
}
.p-pagination a.page svg,
.p-pagination span.page svg {
  display: block;
  height: 100%;
  width: auto;
  position: absolute;
  fill: #fff;
  stroke: var(--color__text);
  z-index: -1;
}
.p-pagination a.page.--active,
.p-pagination span.page.--active {
  color: #fff;
}
.p-pagination a.page.--active svg,
.p-pagination span.page.--active svg {
  fill: var(--color__text);
}
.p-pagination a.prev, .p-pagination a.next,
.p-pagination span.prev,
.p-pagination span.next {
  position: relative;
}
.p-pagination a.prev svg, .p-pagination a.next svg,
.p-pagination span.prev svg,
.p-pagination span.next svg {
  display: block;
  fill: none;
  stroke: var(--color__text);
  width: 75%;
  position: absolute;
}
.p-pagination a.prev,
.p-pagination span.prev {
  transform: scaleX(-1);
}
/*# sourceMappingURL=theme.css.map */