@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

:root {
  --size-unit: 16;
  /* body font-size in design - no px */
  --size-container-ideal: 1440;
  /* screen-size in design - no px */
  --size-container-min: 992px;
  --size-container-max: 1440px;
  --size-container: clamp(var(--size-container-min), 100vw, var(--size-container-max));
  --size-font: calc(var(--size-container) / (var(--size-container-ideal) / var(--size-unit)));
  --black: #111;
  --txt-black: #1e1e1e;
  --white: #F9F9F9;
  --offwhite: #DEDEDE;
  --red: #D7003A;
  --yellow: #FADD08;
  --light: 300;
  --normal: 400;
  --medium: 500;
  --bold: 700;
  --boldest: 900;
  --font-oswald: "Oswald", sans-serif; }

/* Tablet */
@media screen and (max-width: 992px) {
  :root {
    --size-unit: 14;
    --size-container-ideal: 834;
    /* screen-size in design - no px */
    --size-container-min: 768px;
    --size-container-max: 991px; } }
/* Mobile Landscape */
@media screen and (max-width: 768px) {
  :root {
    --size-unit: 14;
    --size-container-ideal: 550;
    /* screen-size in design - no px */
    --size-container-min: 480px;
    --size-container-max: 767px; } }
/* Mobile Portrait */
@media screen and (max-width: 480px) {
  :root {
    --size-unit: 14;
    --size-container-ideal: 390;
    /* screen-size in design - no px */
    --size-container-min: 320px;
    --size-container-max: 479px; } }
*, *::before, *::after {
  box-sizing: border-box; }

::selection {
  background: var(--yellow);
  color: var(--txt-black); }

::-moz-selection {
  background: var(--yellow);
  color: var(--txt-black); }

.container {
  max-width: var(--size-container);
  margin: auto; }

.container.medium {
  max-width: calc(var(--size-container) * 0.85); }

.container.small {
  max-width: calc(var(--size-container) * 0.7); }

@media screen and (max-width: 992px) {
  .container.medium {
    max-width: calc(var(--size-container) * 0.85); }

  .container.small {
    max-width: calc(var(--size-container) * 0.8); } }
@media screen and (max-width: 768px) {
  .container.medium {
    max-width: calc(var(--size-container) * 0.9); }

  .container.small {
    max-width: calc(var(--size-container) * 0.9); } }
.oswald {
  font-family: var(--font-oswald); }

html {
  font-size: 100%;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.1em;
  color: var(--text-black);
  background: #fff;
  line-height: 1.4;
  color: var(--black); }

body {
  font-size: var(--size-font); }

a, button {
  text-decoration: none;
  transition: all 0.3s; }

input[type="submit"],
input[type="button"], input[type=checkbox], button {
  cursor: pointer;
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  margin: 0;
  border: none;
  box-sizing: border-box;
  transition: all 0.3s; }
  input[type="submit"]::-webkit-search-decoration,
  input[type="button"]::-webkit-search-decoration, input[type=checkbox]::-webkit-search-decoration, button::-webkit-search-decoration {
    display: none; }
  input[type="submit"]::focus,
  input[type="button"]::focus, input[type=checkbox]::focus, button::focus {
    outline-offset: -2px; }

video {
  width: 100%; }

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

.pc {
  display: block; }
  @media screen and (max-width: 992px) {
    .pc {
      display: none; } }

.tablet {
  display: none; }
  @media screen and (max-width: 992px) {
    .tablet {
      display: block; } }

.mb-l {
  display: none; }
  @media screen and (max-width: 768px) {
    .mb-l {
      display: block; } }

.mb-p {
  display: none; }
  @media screen and (max-width: 480px) {
    .mb-p {
      display: block; } }

.w-light {
  font-weight: var(--light); }

.w-medium {
  font-weight: var(--medium); }

.w-bold {
  font-weight: var(--bold); }

.jpn {
  letter-spacing: -0.02em; }

/*----------------------------------------------------------------------
								Header 
----------------------------------------------------------------------*/
/* ---------------
 header  
 ----------------- */
#hover-circle {
  transition: r 0.4s ease, cx 0.1s ease, cy 0.1s ease;
  pointer-events: none; }

.header {
  width: 100%;
  padding: 1em 2em;
  position: fixed;
  z-index: 998;
  background-image: linear-gradient(#000000 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  display: flex;
  align-items: center;
  z-index: 999;
  justify-content: space-between; }
  @media screen and (max-width: 768px) {
    .header {
      padding: 1em 1.5em 0; } }
  .header .down {
    transform: translate(0px, -80px); }
  .header .logo {
    max-width: 60px;
    width: 100%;
    height: auto; }
    .header .logo a {
      display: block;
      line-height: 0; }
    .header .logo .cls-1 {
      transition: transform 0.5s ease, fill 0.5s ease;
      transform-box: fill-box; }
    .header .logo .rect-a, .header .logo .rect-b {
      transition: transform 0.5s ease, fill 0.5s ease;
      transform-box: fill-box; }
    .header .logo .rect-a {
      fill: var(--red); }
    .header .logo .rect-b {
      fill: var(--yellow); }
  .header .logo:hover .rect-a {
    transform: translate(-5.44px, -2.33px);
    fill: var(--red); }
  .header .logo:hover .rect-b {
    transform: translate(5.44px, 2.33px);
    fill: var(--yellow); }
  .header .gnav {
    font-family: var(--font-oswald); }
    .header .gnav ul {
      display: flex;
      grid-column-gap: 1em; }
      .header .gnav ul li {
        grid-column-gap: 1em;
        display: flex;
        align-items: center;
        letter-spacing: 0.08rem; }
        .header .gnav ul li::after {
          content: "";
          width: 3px;
          height: 3px;
          background: var(--yellow);
          position: relative; }
      .header .gnav ul li:last-of-type::after, .header .gnav ul li:nth-last-child(2)::after {
        display: none; }
      .header .gnav ul li:not(.menu) {
        display: flex; }
        @media screen and (max-width: 768px) {
          .header .gnav ul li:not(.menu) {
            display: none; } }
      .header .gnav ul .btn-white a {
        color: var(--txt-black); }
    .header .gnav a {
      font-size: 1.1em;
      color: var(--white);
      font-weight: 400; }

.header.black .logo .cls-1 {
  fill: var(--black); }
.header.black .logo .rect-a, .header.black .logo .rect-b {
  transition: transform 0.5s ease, fill 0.5s ease;
  transform-box: fill-box; }
.header.black .logo .rect-a {
  fill: var(--red); }
.header.black .logo .rect-b {
  fill: var(--yellow); }
.header.black .logo:hover .rect-a {
  transform: translate(-5.44px, -2.33px);
  fill: var(--red); }
.header.black .logo:hover .rect-b {
  transform: translate(5.44px, 2.33px);
  fill: var(--yellow); }
.header.black .gnav ul .btn-white a {
  color: var(--white); }
.header.black .gnav a {
  color: var(--black); }
.header.black .menu button:hover .dot {
  background-color: var(--yellow); }
.header.black .menu button .dot {
  background-color: var(--black); }

.menu button {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  grid-template-rows: repeat(3, 4px);
  gap: 4px;
  width: auto;
  background: transparent;
  border: none;
  cursor: pointer; }
  .menu button:hover .dot {
    background-color: var(--yellow); }
  .menu button .dot {
    width: 4px;
    height: 4px;
    background-color: var(--offwhite);
    border-radius: 0%;
    display: block;
    transition: background-color 0.6s; }

.close {
  background: transparent;
  border: none;
  padding: 0; }
  .close:hover path {
    stroke: var(--yellow); }
  .close path {
    transition: stroke 0.6s; }

.sp-menu .close {
  position: absolute;
  top: 1.5em;
  right: 3.5em; }
  @media screen and (max-width: 992px) {
    .sp-menu .close {
      top: 1.2em;
      right: 3em; } }
  @media screen and (max-width: 768px) {
    .sp-menu .close {
      right: 1.5em; } }

.transition {
  z-index: 9999;
  flex-flow: wrap;
  grid-template-columns: repeat(8, 1fr);
  place-content: center;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  right: 0%; }

.transition-block {
  aspect-ratio: 1;
  background-color: var(--yellow);
  width: 100%;
  height: 100%; }

@media screen and (max-width: 767px) {
  .transition {
    grid-template-columns: repeat(6, 1fr); } }
@media screen and (max-width: 479px) {
  .transition {
    grid-template-columns: repeat(4, 1fr); } }
.sp-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black);
  /* 背景色（変更可） */
  color: white;
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  /* 初期は非操作 */
  opacity: 0; }

.sp-menu.is-open {
  pointer-events: auto;
  opacity: 1; }

.sp-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center; }

.sp-menu ul li {
  font-size: 2rem;
  margin: 1rem 0;
  cursor: pointer; }

/*----------------------------------------------------------------------
								body 
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
								home 
----------------------------------------------------------------------*/
.container {
  padding: 0 2em; }
  @media screen and (max-width: 768px) {
    .container {
      padding: 0 1.5em; } }

.divider {
  position: relative; }

.divider::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0%;
  content: '';
  width: 100%;
  height: 1px;
  opacity: 0.25; }

#hero-section {
  position: relative;
  overflow: hidden; }
  #hero-section .container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    grid-row-gap: 10em; }
    @media screen and (max-width: 992px) {
      #hero-section .container {
        grid-row-gap: 5em; } }
    @media screen and (max-width: 768px) {
      #hero-section .container {
        padding: 0 1.5em;
        grid-row-gap: 3.5em;
        justify-content: flex-start; } }
  #hero-section .hero-text {
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    grid-row-gap: 2em;
    color: var(--offwhite); }
    #hero-section .hero-text h2 {
      color: var(--white);
      letter-spacing: -0.02em;
      font-size: 3em; }
    #hero-section .hero-text p {
      font-size: 1.1em; }
    @media screen and (max-width: 768px) {
      #hero-section .hero-text {
        margin-top: 15vh;
        margin-top: 15dvh;
        grid-row-gap: 1em; }
        #hero-section .hero-text h2 {
          font-size: 2.5em; } }
  #hero-section .hero-text-2 {
    color: #fff;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    grid-row-gap: 1em;
    line-height: 1.5;
    color: var(--offwhite); }
    #hero-section .hero-text-2 p.jpn {
      font-size: 1em; }
    #hero-section .hero-text-2 p.eng {
      font-size: 0.85em; }
  #hero-section .hero-visual {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0; }

#about-section, #contact-section {
  overflow: hidden; }
  #about-section .container, #contact-section .container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
    grid-row-gap: 3.2em;
    padding-bottom: 5em;
    margin-top: 3.2em; }
    #about-section .container .h3, #contact-section .container .h3 {
      font-size: 3em;
      color: var(--white);
      text-align: center; }
      @media screen and (max-width: 768px) {
        #about-section .container .h3, #contact-section .container .h3 {
          font-size: 2em; } }
    #about-section .container p.txt, #contact-section .container p.txt {
      font-size: 1.5em;
      color: #333;
      text-align: center;
      line-height: 2; }
      @media screen and (max-width: 768px) {
        #about-section .container p.txt, #contact-section .container p.txt {
          font-size: 1.1em; } }

.small-headline {
  text-align: center;
  color: #666; }
  .small-headline .jpn {
    font-size: 0.8em; }

.marquee-advanced__item {
  display: inline-block;
  padding-right: 2rem; }

.marquee-advanced {
  width: 100vw;
  position: relative;
  overflow: hidden; }

.marquee-advanced__scroll {
  will-change: transform;
  width: 100%;
  display: flex;
  position: relative;
  height: 100%;
  align-items: center;
  white-space: nowrap; }

.marquee-advanced__collection {
  will-change: transform;
  display: flex;
  display: inline-flex;
  white-space: nowrap;
  position: relative; }

.marquee-advanced__item {
  justify-content: flex-start;
  align-items: center;
  font-size: max(8em, 12vw);
  display: flex; }

.marquee__advanced__p {
  white-space: nowrap;
  color: #222222;
  margin-bottom: 0;
  margin-right: .25em;
  font-size: 1em;
  line-height: 1;
  padding-bottom: 0.2em; }

.text-highlight::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), #d7003a 10%, rgba(0, 0, 0, 0) 10%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none; }

#service-section {
  overflow: hidden;
  position: relative; }
  #service-section .container-wrapper {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh; }
  #service-section .container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
    overflow: hidden;
    position: relative;
    grid-row-gap: 3.2em;
    padding-bottom: 5em;
    margin-top: 3.2em; }
    #service-section .container > * {
      position: relative;
      z-index: 1; }
    #service-section .container .small-headline {
      text-align: left; }
    #service-section .container .h3 {
      font-size: 3em;
      color: var(--white);
      text-align: left; }
      @media screen and (max-width: 768px) {
        #service-section .container .h3 {
          font-size: 2em; } }
    #service-section .container .h4 {
      font-size: 1.5em;
      color: var(--white);
      text-align: left; }
      @media screen and (max-width: 768px) {
        #service-section .container .h4 {
          font-size: 1.4em; } }
    #service-section .container p.exp {
      font-size: 1em;
      color: var(--offwhite);
      text-align: left;
      line-height: 2; }
      @media screen and (max-width: 768px) {
        #service-section .container p.exp {
          font-size: 1.1em; } }
    #service-section .container .service-list {
      color: var(--white);
      margin-top: 1em; }
  @media screen and (max-width: 480px) {
    #service-section .service-visual-creative, #service-section .service-visual-marketing {
      opacity: 0.3; } }

.filter-button {
  color: var(--white);
  background-color: #0000;
  border: 1px solid #fff0;
  border-radius: .25em;
  padding: 1.125em 1.5em;
  transition: border-color .25s;
  position: relative; }

.filter-button.small {
  padding: .375em .5em; }

.filter-button.active {
  visibility: visible;
  border-color: #ffffff26; }

.filter-bar {
  padding: 4px;
  border: 1px solid #efeeec14;
  border-radius: .5em;
  background-color: #efeeec0f;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: flex; }

.filter-bar.small {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  padding: .25em; }

.filter-inner-link {
  z-index: 2;
  position: absolute;
  inset: 0%; }

.tab-container {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100%;
  padding-top: 2em;
  display: flex;
  position: relative;
  z-index: 1; }
  @media screen and (max-width: 480px) {
    .tab-container {
      width: 100%; } }

.tab-container-top {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex; }

.tab-content-item {
  z-index: 1;
  grid-column-gap: 1.25em;
  grid-row-gap: 1.25em;
  visibility: hidden;
  flex-flow: column;
  display: flex;
  position: absolute;
  inset: auto 0% 0%; }

.tab-content-item.active {
  visibility: visible; }

.tab-content-wrap {
  width: 100%;
  min-width: 24em;
  position: relative;
  padding-top: 18em; }
  @media screen and (max-width: 992px) {
    .tab-content-wrap {
      padding-top: 18.5em; } }
  @media screen and (max-width: 480px) {
    .tab-content-wrap {
      padding-top: 19em; } }

.tab-visual-wrap {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%; }

.tab-visual-item {
  visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%; }

.tab-visual-item.active {
  visibility: visible; }

.tab-button__bg {
  z-index: 0;
  background-color: #efeeec0f;
  pointer-events: none;
  border: 1px solid #efeeec14;
  border-radius: .25em;
  position: absolute;
  inset: -1px; }

.tab-container-top {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex; }

.tabs-vid-wrap-inner {
  aspect-ratio: 1.6;
  border-radius: .25em;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden; }

.tabs-vid-wrap {
  overflow: hidden; }

.single-line-wrap {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  line-height: 1.6; }

#news-section {
  padding-bottom: 5em; }
  #news-section .container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
    overflow: hidden;
    position: relative;
    grid-row-gap: 3.2em;
    padding-bottom: 5em;
    margin-top: 3.2em; }
    @media screen and (max-width: 992px) {
      #news-section .container {
        grid-row-gap: 5em; } }
    @media screen and (max-width: 768px) {
      #news-section .container {
        padding: 0 1.5em;
        grid-row-gap: 3.5em;
        justify-content: flex-start; } }

.post-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  grid-row-gap: 2em;
  color: var(--white); }
  @media screen and (max-width: 480px) {
    .post-list {
      grid-row-gap: 2em; } }
  .post-list a {
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 1.2em 1em;
    border: 1px solid #efeeec14;
    border-radius: .5em;
    background-color: #efeeec0f;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    grid-column-gap: 2em;
    inset: -1px; }
    @media screen and (max-width: 480px) {
      .post-list a {
        flex-direction: column;
        grid-row-gap: 1em;
        padding: 2em 1.5em; } }
    .post-list a:hover {
      border-color: #ffffff26;
      background-color: #efeeec12; }
      .post-list a:hover .post-arrow {
        width: 28px;
        height: 28px; }
  .post-list .post-thumb {
    max-width: 167px; }
    @media screen and (max-width: 480px) {
      .post-list .post-thumb {
        max-width: 100%; } }
    .post-list .post-thumb img {
      display: block; }
  .post-list .post-content {
    display: flex;
    flex-direction: column;
    grid-row-gap: 1em; }
  .post-list .post-meta {
    display: flex;
    align-items: center;
    grid-column-gap: 1em;
    font-size: 0.85em; }
    .post-list .post-meta .cat {
      background-color: #333;
      color: var(--yellow);
      border-radius: 6px;
      padding: 0.5em 1em; }
  .post-list .post-title {
    font-size: 1em; }
  .post-list .post-arrow {
    margin-left: auto;
    background-color: var(--offwhite);
    line-height: 1;
    padding: 4px;
    width: 24px;
    height: 24px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    border-radius: 4px; }
    .post-list .post-arrow svg {
      width: 100%;
      height: 100%; }

.updates-list__overlay {
  z-index: 0;
  background-image: linear-gradient(0deg, #111111 40%, rgba(17, 17, 17, 0));
  pointer-events: none;
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 15em;
  padding-bottom: 3em;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
  pointer-events: none; }
  .updates-list__overlay a {
    pointer-events: visible;
    z-index: 1; }

.pixelated-image-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  aspect-ratio: 1;
  /* 画像とグリッドを正方形に */
  width: 100%;
  /* 任意で固定幅指定も可 */
  max-width: 400px;
  /* 例 */ }

.pixelated-image-wrapper img {
  display: block;
  width: 100%;
  height: auto; }

.pixel-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2; }

.pixel {
  position: absolute;
  aspect-ratio: 1/1;
  background: var(--white);
  opacity: 1; }

.grid-bg {
  position: absolute;
  pointer-events: visible;
  inset: 0%;
  height: 100%;
  width: 100%;
  z-index: 0; }

#contact-section .container p.txt {
  color: var(--white); }
#contact-section > div {
  position: relative;
  z-index: 1;
  pointer-events: none; }
#contact-section a {
  pointer-events: visible; }
#contact-section div.grid-bg {
  position: absolute;
  pointer-events: visible;
  inset: 0%;
  height: 100%;
  width: 100%;
  z-index: 0; }

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: var(--black);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999; }

.loader-logo svg {
  width: 80px; }
  @media screen and (max-width: 480px) {
    .loader-logo svg {
      width: 40px;
      height: 40px; } }

.pixel-block {
  width: 80px;
  height: 80px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px;
  margin-top: 20px; }
  @media screen and (max-width: 480px) {
    .pixel-block {
      width: 40px;
      height: 40px; } }

.pixel-block div {
  background: var(--white);
  width: 100%;
  height: 100%;
  opacity: 0; }

/*----------------------------------------------------------------------
								sub 
----------------------------------------------------------------------*/
body#sub {
  background: #f8f8f8; }
  body#sub .header {
    pointer-events: none;
    background: none; }
    body#sub .header .logo, body#sub .header .gnav {
      pointer-events: visible; }
  body#sub .sub-section {
    position: relative; }
  body#sub .content-header {
    padding: 10em 2em 8em;
    position: relative;
    background: var(--black); }
    body#sub .content-header .container {
      background: none;
      padding: 0;
      padding-bottom: 0;
      position: relative;
      z-index: 1;
      pointer-events: none; }
    body#sub .content-header .page-title {
      display: flex;
      justify-content: space-between;
      font-size: 3em;
      color: var(--white);
      align-items: baseline;
      text-transform: uppercase; }
      @media screen and (max-width: 480px) {
        body#sub .content-header .page-title {
          flex-direction: column; } }
      body#sub .content-header .page-title .jpn {
        display: block;
        font-size: 1rem; }
  body#sub .contents .container {
    padding: 8em 6em;
    background: #fff;
    position: relative;
    z-index: 1;
    margin-top: -5em;
    margin-bottom: 5em; }
    @media screen and (max-width: 768px) {
      body#sub .contents .container {
        padding: 4em 3em; } }

.bread-crumb {
  margin-top: 1em;
  display: flex;
  color: var(--white);
  line-height: 1.4;
  grid-column-gap: .5em; }
  .bread-crumb li {
    grid-column-gap: .5em;
    display: flex;
    align-items: center;
    letter-spacing: 0.08rem; }
    .bread-crumb li::after {
      content: "";
      width: 3px;
      height: 3px;
      background: var(--yellow);
      position: relative; }
    .bread-crumb li > span {
      color: var(--yellow); }
  .bread-crumb li:last-of-type::after, .bread-crumb li:nth-last-child(1)::after {
    display: none; }
  .bread-crumb a {
    color: var(--white);
    pointer-events: visible; }

#contact-page .container.contents {
  position: relative;
  padding-bottom: 5em; }

.contact-form {
  width: 100%;
  margin: auto; }
  .contact-form .form-group {
    margin-bottom: 40px; }
    .contact-form .form-group:last-of-type {
      margin-bottom: 0;
      margin-top: 80px; }
  .contact-form label {
    font-weight: var(--medium);
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 16px; }
    .contact-form label span.required {
      margin-left: 8px;
      background: var(--red);
      font-size: 12px;
      font-weight: var(--bold);
      color: var(--white);
      padding: 4px 8px;
      border-radius: 4px;
      display: block; }
  .contact-form textarea, .contact-form select, .contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel] {
    background: var(--white);
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 16px;
    width: 50%; }
    @media screen and (max-width: 768px) {
      .contact-form textarea, .contact-form select, .contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel] {
        width: 100%; } }
    .contact-form textarea::placeholder, .contact-form select::placeholder, .contact-form input[type=text]::placeholder, .contact-form input[type=email]::placeholder, .contact-form input[type=tel]::placeholder {
      color: #ADADAD; }
  .contact-form textarea {
    position: relative;
    width: 100%; }
    .contact-form textarea#request {
      min-height: 200px; }
      @media screen and (max-width: 768px) {
        .contact-form textarea#request {
          min-height: 300px; } }
  .contact-form select, .contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel] {
    min-height: 40px; }
  .contact-form .completed_message {
    font-size: 24px;
    font-weight: var(--bold); }
    @media screen and (max-width: 768px) {
      .contact-form .completed_message {
        font-size: clamp(1.125rem, calc(0.85714rem + 1.33929vw), 1.5rem); } }
  .contact-form .consent {
    text-align: center; }
    .contact-form .consent p {
      margin-bottom: 1em; }
    .contact-form .consent a.underline {
      color: #0066cf; }
    .contact-form .consent div {
      display: flex;
      grid-column-gap: 0.2em;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px; }
      .contact-form .consent div label {
        margin: 0;
        font-size: 1.1em; }

.btn.form-btn {
  margin: auto; }

button.submit {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1em;
  font-weight: var(--bold);
  letter-spacing: .5em;
  max-width: 240px;
  height: 72px; }

.other_content h2 {
  font-size: 1.1em;
  font-weight: var(--bold);
  margin-bottom: 0.9em;
  margin-top: 2.8em;
  line-height: 1.3; }
.other_content p, .other_content ul {
  line-height: 2; }

body#sub .footer {
  background: var(--black); }

/*----------------------------------------------------------------------
								Footer
----------------------------------------------------------------------*/
.footer {
  width: 100%;
  padding: 2em 0;
  display: flex;
  flex-direction: column;
  grid-row-gap: 10em; }
  .footer .container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center; }
  .footer .logo {
    max-width: 60px;
    width: 100%;
    height: auto; }
    .footer .logo a {
      display: block;
      line-height: 0; }
    .footer .logo .rect-a, .footer .logo .rect-b {
      transition: transform 0.5s ease, fill 0.5s ease;
      transform-box: fill-box; }
    .footer .logo .rect-a {
      fill: var(--red); }
    .footer .logo .rect-b {
      fill: var(--yellow); }
  .footer .logo:hover .rect-a {
    transform: translate(-5.44px, -2.33px);
    fill: var(--red); }
  .footer .logo:hover .rect-b {
    transform: translate(5.44px, 2.33px);
    fill: var(--yellow); }
  .footer .gnav {
    font-family: var(--font-oswald); }
    .footer .gnav ul {
      display: flex;
      grid-column-gap: 1em; }
      .footer .gnav ul li {
        grid-column-gap: 1em;
        display: flex;
        align-items: center;
        letter-spacing: 0.08rem; }
        .footer .gnav ul li::after {
          content: "";
          width: 3px;
          height: 3px;
          background: var(--yellow);
          position: relative; }
      .footer .gnav ul li:last-of-type::after, .footer .gnav ul li:nth-last-child(1)::after {
        display: none; }
      .footer .gnav ul li:not(.menu) {
        display: flex; }
        @media screen and (max-width: 768px) {
          .footer .gnav ul li:not(.menu) {
            display: none; } }
      .footer .gnav ul .btn-white a {
        color: var(--txt-black); }
    .footer .gnav a {
      font-size: 1.1em;
      color: var(--white);
      font-weight: 400; }
  .footer small {
    color: var(--offwhite);
    font-size: .7em;
    text-align: center;
    display: flex;
    justify-content: center;
    letter-spacing: 0; }

/*----------------------------------------------------------------------
								animation 
----------------------------------------------------------------------*/
.underline {
  color: #fff;
  position: relative;
  line-height: 2; }

.underline::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: #fff;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg); }

.black .underline::before {
  background-color: var(--black); }

.underline.yellow::before {
  background-color: var(--yellow); }

.underline.red::before {
  background-color: var(--red); }

.underline.blue::before {
  background-color: #0066cf; }

.underline:hover::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg); }

.black .btn {
  color: var(--white); }
.black .btn__bg {
  background-color: var(--black);
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.inlineblock {
  display: inline-block; }

.btn {
  border-radius: 3px;
  padding: 0.5rem 2rem;
  position: relative;
  display: block;
  color: var(--txt-black);
  transition: color 0.5s ease; }

.btn.mid {
  padding: 1rem 3rem;
  font-size: 1.2em;
  min-width: 180px;
  text-align: center; }
  .btn.mid.form-btn {
    padding: 0;
    max-width: 240px; }

.btn__text {
  position: relative; }

.btn__bg {
  transition: background-color 0.5s ease;
  background-color: var(--white);
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0; }

.btn__circle-wrap {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

.btn__circle {
  pointer-events: none;
  background: var(--red);
  width: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 0%;
  transition: transform 0.7s cubic-bezier(0.625, 0.05, 0, 1), background-color 0.4s cubic-bezier(0.625, 0.05, 0, 1);
  transform: translate(-50%, -50%) scale(0) rotate(0.001deg); }

.before__100 {
  padding-top: 100%;
  display: block; }

.btn .btn__text {
  transition: color 0.7s cubic-bezier(0.625, 0.05, 0, 1); }

.btn:hover .btn__circle {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg); }

.btn:hover .btn__text {
  color: #FFF; }

.text-up {
  overflow: hidden; }

.text-up > * {
  display: inline-block;
  transform: translate(0px, 100%); }

.btn.black .btn__text {
  color: #FFF; }
.btn.black .btn__bg {
  background-color: var(--black); }
