@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");
/*======================================================
 Foundation
======================================================*/
/*============================================
 Reset
============================================*/
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/*============================================
 Base
============================================*/
*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
}
html.is-skip-splash #splash-wrapper {
  background: none !important;
}
html.is-skip-splash #splash-skip {
  display: none !important;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  /*font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", 'Noto Sans JP', sans-serif;*/
  color: #171717;
  font-size: 1rem;
  line-height: 1.5;
  background-color: #F7F7F7;
  overflow-x: clip;
}
body.is-menu-open {
  overflow: hidden;
}
body.is-modal-open {
  overflow: hidden;
}
body.is-splashing {
  overflow: hidden;
  visibility: hidden;
}
body.is-splashing #splash-wrapper {
  visibility: visible;
}
body.is-splashing .l-header,
body.is-splashing .l-container,
body.is-splashing .bg-loop {
  pointer-events: none;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 0;
}
body.splash-finished .l-wrapper {
  display: block;
}
body.splash-finished .l-header,
body.splash-finished .l-container,
body.splash-finished .bg-loop {
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}

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

input,
select,
textarea,
button {
  width: 100%;
  color: inherit;
  font: inherit;
  font-size: 0.875rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 0;
}

::placeholder {
  color: #9C9C9C;
  opacity: 1;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

button {
  width: auto;
  background-color: transparent;
  border: none;
  cursor: pointer;
}

@media screen and (min-width: 768px) {
  a,
  button {
    transition: 0.3s;
  }
  a:hover,
  button:hover {
    opacity: 0.6;
  }
}
/*======================================================
 Layout
======================================================*/
/*============================================
 Splash
============================================*/
#splash-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  padding: 0 20px;
  background: #E60012;
  transition: opacity 0.5s ease;
  opacity: 1;
  z-index: 9999;
}
#splash-wrapper.is-fadeout {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #splash-wrapper {
    padding: 0 15px;
  }
}

#splash-canvas {
  display: none;
  width: 100%;
  height: 100%;
}

#splash-logo-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.splash-skip {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .splash-skip {
    right: 50px;
  }
}

/*============================================
 Header
============================================*/
.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #F7F7F7;
  border-bottom: 1px solid #818181;
  z-index: 100;
}
.l-header__logo {
  display: inline-flex;
  margin-left: 21px;
}
.l-header__title {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  top: 100px;
  right: 15px;
  width: 100%;
  color: #000;
  font-family: "Lato", sans-serif;
  z-index: 1;
}
.l-header__title::before {
  content: "";
  flex-grow: 1;
  height: 1px;
  margin: 1.3em 15px 0 0;
  background: #E60012;
}
.l-header__text {
  display: flex;
  flex-direction: column;
  font-size: 1.375rem;
  line-height: 91%;
}
.l-header__text > *:nth-child(2) {
  color: #E60012;
}
@media screen and (min-width: 768px) {
  .l-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    position: inherit;
    height: auto;
    padding: 17px 30px 20px;
    background: none;
    border-bottom: none;
  }
  .l-header__logo {
    margin: 4px 0 0;
  }
  .l-header__title {
    flex: 1 0 0;
    position: inherit;
    width: auto;
  }
  .l-header__title::before {
    margin: 2em 15px 0 11.4754vw;
    background: #E60012;
  }
  .l-header__text {
    font-size: 2.125rem;
  }
}

/*============================================
 Menu
============================================*/
.l-menu {
  position: relative;
  transition: transform 0.8s ease;
  z-index: 100;
}
.l-menu__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 30px;
  right: 26px;
  background: none;
  border: none;
  z-index: 100;
}
.l-menu__hamburger-lines {
  position: relative;
  width: 35px;
  height: 12px;
}
.l-menu__hamburger-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 35px;
  height: 2px;
  background: #E60012;
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.l-menu__hamburger-line:first-child {
  top: 0;
}
.l-menu__hamburger-line:last-child {
  top: 10px;
}
.l-menu__hamburger-label {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  margin-left: 12px;
}
.l-menu__hamburger.is-open .l-menu__hamburger-line:first-child {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.l-menu__hamburger.is-open .l-menu__hamburger-line:last-child {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.l-menu__link, .l-menu__page-top {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    right: 0;
    width: 80px;
    height: 100svh;
    background: #F7F7F7;
    border-left: 1px solid #818181;
    z-index: 100;
  }
  .l-menu__hamburger {
    flex-direction: column;
    top: 50%;
    right: 0;
    width: 80px;
    height: auto;
    padding: 16px 0;
    transform: translateY(-50%);
  }
  .l-menu__hamburger-lines {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 36px;
  }
  .l-menu__hamburger-line {
    width: 2px;
    height: 36px;
    top: auto;
    bottom: 0;
    transform-origin: bottom center;
    transition: transform 0.3s ease;
  }
  .l-menu__hamburger-line:first-child {
    top: 0;
    left: calc(50% - 5px);
    transform: rotate(0deg);
  }
  .l-menu__hamburger-line:last-child {
    top: 0;
    left: calc(50% + 3px);
    transform: rotate(0deg);
  }
  .l-menu__hamburger-label {
    text-orientation: sideways;
    writing-mode: vertical-rl;
    margin: 14px 0 0;
    transform: rotate(0.03deg);
  }
  .l-menu__hamburger.is-open .l-menu__hamburger-line:first-child {
    top: 0;
    transform: rotate(13deg);
  }
  .l-menu__hamburger.is-open .l-menu__hamburger-line:last-child {
    top: 0;
    transform: rotate(-13deg);
  }
  .l-menu__link {
    display: flex;
    align-items: center;
    position: relative;
    text-orientation: sideways;
    writing-mode: vertical-rl;
    margin-bottom: 50px;
  }
  .l-menu__link::before {
    content: "";
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    width: 2px;
    height: 8px;
    margin: auto;
    background-color: #E60012;
  }
  .l-menu__link-text {
    font-size: 0.75rem;
  }
  .l-menu__page-top {
    display: block;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-menu.is-animating {
    transform: translateX(80px);
  }
}
@media screen and (min-width: 768px) {
  .l-menu.is-visible {
    transform: translate(0, 0);
  }
}

/*============================================
 Nav
============================================*/
.l-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background: #E60012 url(../img/common/bg_nav.svg) no-repeat left -10px top 80px/auto calc(100% - 50px);
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  z-index: 50;
}
.l-nav__list {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
  padding-top: 80px;
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 7s;
  opacity: 0;
}
.l-nav__link {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 78.372%;
}
.l-nav.is-visible {
  pointer-events: auto;
  transform: translateY(0);
  opacity: 1;
}
.l-nav.is-visible .l-nav__list {
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .l-nav {
    transform: translateX(100%);
  }
  .l-nav.is-visible {
    transform: translateX(0);
  }
}
@media screen and (min-width: 768px) {
  .l-nav {
    background: #E60012 url(../img/common/bg_nav.svg) no-repeat right center/auto 150%;
  }
  .l-nav__list {
    padding-top: 0;
  }
}

/*============================================
 Wrapper
============================================*/
.l-wrapper {
  min-height: 100svh;
}
.l-wrapper--index {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding-right: 80px;
  }
}

/*============================================
 Container
============================================*/
.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-container {
    min-height: calc(100svh - 130px);
    padding-top: 0;
  }
}

/*============================================
 Main
============================================*/
.l-main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  padding: 110px 25px 0;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding: 10px 15px 0;
  }
}

/*============================================
 Footer
============================================*/
.l-footer {
  width: 100%;
  padding: 41px 0 26px;
  margin-top: 180px;
  background-color: #F4F4F4;
}
.l-footer__logo {
  display: flex;
  justify-content: center;
  width: 100%;
}
.l-footer__logo > img {
  width: 37.7778vw;
}
.l-footer__copyright {
  font-size: 0.75rem;
  line-height: 220%;
  text-align: center;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer {
    margin-top: 265px;
  }
  .l-footer__logo > img {
    width: 212px;
  }
}

/*============================================
 Modal
============================================*/
.l-modal__overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.l-modal__container {
  position: relative;
  width: calc(100% - 25px);
  max-width: 600px;
  max-height: 90svh;
  padding: 30px 20px 50px;
  background-color: #fff;
  overflow-y: auto;
}
.l-modal__overlay, .l-modal__container {
  will-change: transform;
}
.l-modal__page {
  display: none;
  flex-direction: column;
}
.l-modal__page.is-active {
  display: flex;
}
.l-modal__date {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.l-modal__title {
  color: #000;
  font-weight: 700;
  line-height: 160%;
  margin-bottom: 20px;
}
.l-modal__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.l-modal__image--width > img {
  width: 100%;
  height: auto;
}
.l-modal__image--height > img {
  width: auto;
  max-height: 300px;
}
.l-modal__text-box > img {
  display: block;
  margin: 0 auto;
}
.l-modal__text {
  color: #000;
  font-size: 0.875rem;
  line-height: 160%;
  word-break: break-all;
}
* + .l-modal__text {
  margin-top: 1.5em;
}
.l-modal__text--paragraph {
  text-indent: 1em;
}
.l-modal__link {
  text-decoration: underline;
}
.l-modal__link-button {
  display: block;
  width: 100%;
  max-width: fit-content;
  color: #fff;
  text-align: center;
  padding: 5.5px 20px 7.5px;
  margin: 1.5em auto 0;
  background-color: #E60012;
  border-radius: 2.5em;
}
.l-modal__button {
  padding-top: 50px;
}
.l-modal__button-link {
  display: flex;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  max-width: 164px;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #B8B8B8;
  border-radius: 2.5em;
}
.l-modal__button-link--back {
  padding: 2.5px 0 2.5px 10px;
}
.l-modal__button-link:hover {
  opacity: 1;
}
.l-modal__button-link:hover .l-modal__button-circle {
  transform: scale(1.2);
}
.l-modal__button-text {
  order: 2;
  position: relative;
  padding-left: 70px;
}
.l-modal__button-text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 0;
  width: 30px;
  height: 1px;
  margin: auto;
  background-color: #171717;
  z-index: 2;
}
.l-modal__button-text::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 8px;
  bottom: 7.5px;
  width: 15px;
  height: 1px;
  margin: auto;
  background-color: #171717;
  transform: rotate(-30deg);
  z-index: 2;
}
.l-modal__button-circle {
  position: absolute;
  top: 8px;
  left: 9px;
  width: 19px;
  height: 19px;
  background: url(../img/common/bg_arrow.png) no-repeat center/19px;
  transform: scale(1);
  transition: transform 0.2s ease;
  pointer-events: auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-modal__container {
    padding: 30px 50px 50px;
  }
}

.micromodal-slide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.micromodal-slide[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.micromodal-slide[aria-hidden=false] .l-modal__overlay {
  opacity: 1;
}

/*======================================================
 Component
======================================================*/
/*============================================
 Heading
============================================*/
.c-heading {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 78.372%;
  text-align: center;
  padding: 10px 0 25px;
}
.c-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 62px;
  height: 2px;
  margin: auto;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s ease-out 0.3s;
}
.c-heading.is-visible::after {
  transform: scaleX(1);
}

/*============================================
 Button
============================================*/
.c-more-link {
  display: flex;
  justify-content: flex-end;
}
.c-more-link--main {
  margin-top: 22px;
}
.c-more-link--about {
  margin-top: 60px;
}
.c-more-link--works {
  margin-top: 45px;
}
.c-more-link__link {
  position: relative;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0 20px 20px 0;
}
.c-more-link__link:hover {
  opacity: 1;
}
.c-more-link__link:hover .c-more-link__circle.is-circle-shown {
  transform: scale(1.2);
}
.c-more-link__content {
  display: inline-block;
  position: relative;
  padding-right: 85px;
}
.c-more-link__content::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #171717;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease 0.2s;
}
.c-more-link__content::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 0;
  height: 1px;
  background-color: #171717;
  transform: rotate(30deg);
  transform-origin: right bottom;
  transition: width 0.2s ease-out 0.5s;
}
.c-more-link__text {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.3s ease-out;
}
.c-more-link__circle {
  position: absolute;
  top: 10px;
  right: -20px;
  width: 40px;
  height: 40px;
  background: url(../img/common/bg_arrow.png) no-repeat center/40px;
  transform: scale(0);
  transition: transform 0.2s ease;
  z-index: -1;
}
.c-more-link__circle.is-circle-shown {
  transform: scale(1);
}
.c-more-link.is-visible .c-more-link__content::before {
  transform: scaleX(1);
}
.c-more-link.is-visible .c-more-link__content::after {
  width: 26px;
}
.c-more-link.is-visible .c-more-link__text {
  clip-path: inset(0 0 0 0);
}
.c-more-link.is-visible .c-more-link__circle {
  animation: circlePop 0.3s ease 0.8s forwards;
}
@media screen and (min-width: 768px) {
  .c-more-link {
    margin: 45px 13px 0 0;
  }
  .c-more-link--main {
    margin-top: 22px;
  }
  .c-more-link--about, .c-more-link--work {
    margin-top: 45px;
  }
}

@keyframes circlePop {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*============================================
 Animation
============================================*/
.c-bg-loop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  min-height: 100svh;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}
.c-bg-loop svg,
.c-bg-loop canvas {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-height: none;
  object-fit: contain;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-bg-loop {
    width: calc(100vw - 80px);
  }
}

.c-fade-in {
  transition: opacity 1s ease-out, transform 1s ease-out;
  opacity: 0;
}
.c-fade-in.is-visible {
  opacity: 1;
}

a.c-fade-in.is-visible:hover {
  opacity: 0.6;
}

.c-wipe-in {
  opacity: 1;
  overflow: hidden;
}
.c-wipe-in__image {
  clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  transition: clip-path 1s ease-out;
  transition: clip-path 0.8s ease-out;
}
.c-wipe-in.is-visible .c-wipe-in__image {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/*======================================================
 Project
======================================================*/
/*============================================
 Index / Main
============================================*/
.p-index-main__message {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  pointer-events: none;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.p-index-main__message-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  clip-path: inset(100% 0 0 0);
  animation: clipRevealBar 0.6s ease-out forwards;
  overflow: hidden;
  z-index: 2;
}
.p-index-main__message-line img {
  display: block;
  height: 100%;
}
.p-index-main__message-text {
  margin-left: 4.44445vw;
  overflow: hidden;
}
.p-index-main__message-text img {
  display: block;
  position: relative;
  width: 100%;
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  z-index: 2;
}
.p-index-main__message-img {
  position: absolute;
  top: 45%;
  right: -12px;
  max-width: 41.81818vw;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
  opacity: 0;
  will-change: opacity;
  z-index: 1;
}
.p-index-main__message-img.is-visible {
  opacity: 1;
}
.p-index-main__message.is-shown {
  pointer-events: auto;
  opacity: 1;
}
.p-index-main__message.is-shown .p-index-main__message-line img {
  animation: barDrop 0.6s ease-out forwards;
}
.p-index-main__message.is-shown .p-index-main__message-text img {
  animation: clipReveal 0.6s ease-out forwards;
}
@media screen and (min-width: 768px) {
  .p-index-main__message {
    max-width: 80vw;
  }
  .p-index-main__message-text {
    margin-left: 55px;
  }
  .p-index-main__message-text > img {
    width: 100vw;
  }
  .p-index-main__message-img {
    top: 32%;
    right: -3%;
    max-width: 28.84615vw;
  }
}

@keyframes clipRevealBar {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes clipReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  40% {
    clip-path: inset(0 25% 0 0);
  }
  70% {
    clip-path: inset(0 5% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
/*============================================
 Index / NEWS
============================================*/
.p-index-news {
  position: relative;
  margin-top: 70px;
  transition: opacity 1s ease;
  opacity: 0;
  will-change: opacity;
  z-index: 2;
}
.p-index-news.is-visible {
  opacity: 1;
}
.p-index-news__inner {
  padding: 20px;
  background-color: #D9D9D9;
}
.p-index-news__title {
  position: absolute;
  top: -9px;
  left: 0;
  font-size: 1.125rem;
  letter-spacing: 0.72px;
  line-height: 1;
}
.p-index-news__list {
  display: flex;
  flex-direction: column;
}
.p-index-news__item {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 160%;
}
.p-index-news__item + .p-index-news__item {
  margin-top: 10px;
}
.p-index-news__date {
  position: relative;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  padding-left: 20px;
}
.p-index-news__date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 12px;
  height: 1px;
  margin: auto;
  background-color: #E60012;
}
.p-index-news__text {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-index-news {
    width: 69.42623vw;
    margin: 80px -15px 0 auto;
  }
  .p-index-news__inner {
    padding: 20px 15px;
  }
  .p-index-news__item {
    font-size: 0.875rem;
  }
  .p-index-news__item + .p-index-news__item {
    margin-top: 5px;
  }
}

/*============================================
 Index / About Us
============================================*/
.p-index-about {
  margin-top: 180px;
}
.p-index-about__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 84px -25px 0;
  overflow: hidden;
}
.p-index-about__company-name {
  color: #E60012;
  font-family: "Lato", sans-serif;
  font-size: 8vw;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
}
.p-index-about__image {
  margin-top: 15px;
}
.p-index-about__image > img {
  width: 75.55556vw;
}
.p-index-about__message {
  padding: 0 25px;
  width: 100%;
  margin-top: 100px;
}
.p-index-about__message-image {
  width: 100%;
  /*width: 88.66667vw;*/
}
.p-index-about__message-image picture img {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-index-about {
    margin-top: 130px;
  }
  .p-index-about__body {
    margin: 90px auto 0;
  }
  .p-index-about__company-name {
    font-size: 3.5rem;
  }
  .p-index-about__image {
    margin-top: 20px;
  }
  .p-index-about__image > img {
    max-width: 453px;
  }
  .p-index-about__message {
    align-self: flex-end;
    text-align: right;
    padding: 0;
    margin: 150px 5.61538vw 0 0;
  }
  .p-index-about__message-image {
    max-width: 79.61538vw;
  }
}

/*============================================
 Index / Service
============================================*/
.p-index-service {
  margin-top: 190px;
}
.p-index-service__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  overflow: hidden;
}
.p-index-service__text {
  font-size: 1.125rem;
  line-height: 160%;
  text-align: center;
}
.p-index-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  width: 100%;
  margin-top: 60px;
}
.p-index-service__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 8px) / 2);
  background-color: #E1E1E1;
}
.p-index-service__item:nth-child(n+3) {
  margin-top: 10px;
}
.p-index-service__title {
  min-height: 80px;
  color: #fff;
  font-size: clamp(16px, 6.6667vw, 30px);
  font-weight: 500;
  line-height: 86%;
  padding: 12px 14px 16px;
  background: #E60012 url(../img/common/bg_nav.svg) no-repeat right -100px top/160px auto;
}
.p-index-service__contents {
  padding: 10px 14px 25px;
}
.p-index-service__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-index-service__content-item {
  color: #000;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 160%;
}
.p-index-service__content-field {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-index-service {
    padding-top: 50px;
    margin-top: 80px;
  }
  .p-index-service__text {
    font-size: 1.25rem;
    line-height: 163%;
  }
  .p-index-service__list {
    gap: 0 10px;
    max-width: 1070px;
  }
  .p-index-service__item {
    width: calc((100% - 30px) / 4);
  }
  .p-index-service__item:nth-child(n+3) {
    margin-top: 0;
  }
  .p-index-service__title {
    min-height: 110px;
    font-size: clamp(16px, 3.07692vw, 40px);
    line-height: 86%;
    padding: 16px 20px 20px;
    background: #E60012 url(../img/common/bg_nav.svg) no-repeat right -120px top/200px auto;
  }
  .p-index-service__contents {
    padding: 10px 20px 25px;
  }
  .p-index-service__content-item {
    font-size: 0.875rem;
    line-height: 163%;
  }
  .p-index-service__content-field {
    font-size: 0.6875rem;
    line-height: 150%;
  }
}

/*============================================
 Index / Works
============================================*/
.p-index-works {
  margin-top: 190px;
}
.p-index-works__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 60px;
  overflow: hidden;
}
.p-index-works__message, .p-index-works__message-image {
  width: 100%;
}
.p-index-works__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  width: 100%;
  margin-top: 60px;
}
.p-index-works__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc((100% - 8px) / 2);
  background-color: #fff;
}
.p-index-works__image {
  order: 1;
  width: 100%;
  height: 130px;
}
.p-index-works__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.p-index-works__text {
  order: 2;
  flex-grow: 1;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: center;
  padding: 6px 5px;
}
@media screen and (min-width: 768px) {
  .p-index-works {
    margin-top: 210px;
  }
  .p-index-works__message {
    max-width: 76.15384vw;
    text-align: center;
  }
  .p-index-works__list {
    max-width: 996px;
    gap: 12px;
    margin-top: 50px;
  }
  .p-index-works__item {
    width: calc((100% - 36px) / 4);
  }
  .p-index-works__image {
    height: 135px;
  }
  .p-index-works__text {
    line-height: 150%;
    padding: 10px 5px;
  }
}

/*============================================
 Index / Access
============================================*/
.p-index-access {
  margin-top: 190px;
}
.p-index-access__body {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 60px -25px 0;
  overflow: hidden;
}
.p-index-access__address {
  font-size: 1.125rem;
  line-height: 160%;
  text-align: center;
}
.p-index-access__map {
  width: 100%;
  height: 300px;
  margin: 60px auto 0;
  overflow: hidden;
}
.p-index-access__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media screen and (min-width: 768px) {
  .p-index-access {
    margin-top: 140px;
  }
  .p-index-access__body {
    margin: 60px 0 0;
  }
  .p-index-access__address {
    font-size: 1.25rem;
    line-height: 220%;
    text-align: center;
  }
  .p-index-access__map {
    max-width: 913px;
    height: 600px;
  }
}

/*============================================
 About / Main
============================================*/
.p-about-main__body {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
}
.p-about-main__title {
  font-size: clamp(16px, 9.5556vw, 43px);
  font-weight: 900;
}
.p-about-main__title--entertainment {
  display: block;
  letter-spacing: -0.1em;
  line-height: 50%;
}
.p-about-main__title b {
  color: #E60012;
}
.p-about-main__message {
  margin-top: 30px;
}
.p-about-main__text {
  color: #000;
  line-height: 180%;
}
.p-about-main__text--em {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 20px;
}
.p-about-main__company-name {
  color: #E60012;
  font-family: "Lato", sans-serif;
  font-size: 8vw;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 40px -25px 0;
}
.p-about-main__image {
  text-align: center;
  margin-top: 15px;
}
.p-about-main__image > img {
  width: 75.55556vw;
}
@media screen and (min-width: 768px) {
  .p-about-main__body {
    max-width: 700px;
    margin: 70px auto 0;
  }
  .p-about-main__title {
    font-size: clamp(16px, 5.38461vw, 70px);
  }
  .p-about-main__title--entertainment {
    letter-spacing: 0;
  }
  .p-about-main__message {
    margin-top: 55px;
  }
  .p-about-main__text {
    font-size: 1.125rem;
    line-height: 200%;
  }
  .p-about-main__text--em {
    font-size: 1.375rem;
    margin-top: 10px;
  }
  .p-about-main__company-name {
    font-size: 3.5rem;
    margin: 80px 0 0;
  }
  .p-about-main__image {
    margin-top: 30px;
  }
  .p-about-main__image > img {
    max-width: 453px;
  }
}

/*============================================
 About / Company
============================================*/
.p-about-company {
  margin-top: 180px;
}
.p-about-company__heading {
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 100%;
  text-align: center;
}
.p-about-company__heading--en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 5px;
}
.p-about-company__body {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
.p-about-company__title {
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 160%;
}
.p-about-company__title:nth-of-type(n + 2) {
  margin-top: 30px;
}
.p-about-company__content {
  color: #000;
  font-size: 0.875rem;
  line-height: 160%;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .p-about-company {
    margin-top: 140px;
  }
  .p-about-company__heading {
    font-size: 1.375rem;
  }
  .p-about-company__body {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 40px auto 0;
  }
  .p-about-company__title {
    width: 100px;
    margin-right: 10px;
  }
  .p-about-company__title:nth-of-type(n + 2) {
    margin-top: 20px;
  }
  .p-about-company__content {
    width: calc(100% - 110px);
    margin-top: 0;
  }
  .p-about-company__content:nth-of-type(n + 2) {
    margin-top: 20px;
  }
}

/*============================================
 About / Officer
============================================*/
.p-about-officer {
  margin-top: 180px;
}
.p-about-officer__heading {
  color: #000;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 100%;
  text-align: center;
}
.p-about-officer__heading--en {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-top: 5px;
}
.p-about-officer__body {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}
.p-about-officer__list {
  flex: 1 0 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
  min-width: 0;
}
.p-about-officer__list > * {
  flex: 1 0 0;
  min-width: 0;
}
.p-about-officer__list--outside {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 40px;
}
.p-about-officer__list--outside > * {
  flex: 0 0 auto;
}
.p-about-officer__title {
  color: #000;
  font-size: 0.75rem;
  line-height: 160%;
}
.p-about-officer__name {
  color: #000;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 100%;
  margin-top: 5px;
}
.p-about-officer__profile {
  color: #000;
  font-size: 0.875rem;
  line-height: 160%;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-about-officer {
    margin-top: 150px;
  }
  .p-about-officer__heading {
    font-size: 1.375rem;
  }
  .p-about-officer__body {
    max-width: 700px;
    gap: 40px;
    margin: 40px auto 0;
  }
  .p-about-officer__list {
    flex-direction: row;
    gap: 40px;
  }
}

/*============================================
 News / Tab
============================================*/
.p-news-list__body {
  margin-top: 60px;
}
.p-news-list__tab {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 42px;
  border-bottom: 2px solid #E60012;
}
.p-news-list__label {
  color: #fff;
  font-weight: 700;
}
.p-news-list__label--news {
  background-color: #E60012;
}
.p-news-list__label--notice {
  background-color: #000;
}
.p-news-list__label[aria-selected=true] {
  width: 160px;
  font-size: 1rem;
  padding: 8px 0;
  clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.p-news-list__label[aria-selected=false] {
  width: 110px;
  font-size: 0.75rem;
  padding: 5.5px 0 6.5px;
}
.p-news-list__panel {
  margin-top: 20px;
}
.p-news-list__panel.is-hidden {
  display: none;
}
.p-news-list__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-news-list__item {
  flex: 1 1 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  font-size: 0.875rem;
  line-height: 160%;
  padding-bottom: 20px;
  border-bottom: 1px solid #969696;
}
.p-news-list__date {
  color: #000;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
}
.p-news-list__text {
  color: #000;
  font-size: 0.875rem;
  line-height: 200%;
  text-align: left;
  text-decoration: underline;
}
.p-news-list__text:not(a, button) {
  text-decoration: none;
}
.p-news-list__pager {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.p-news-list__pager-prev {
  margin-right: 30px;
}
.p-news-list__pager-prev.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.3;
}
.p-news-list__pager-next {
  margin-left: 30px;
}
.p-news-list__pager-next.is-disabled {
  cursor: default;
  pointer-events: none;
  opacity: 0.3;
}
.p-news-list__pager-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  line-height: 26px;
  background-color: #969696;
  border-radius: 2.5em;
}
.p-news-list__pager-number + .p-news-list__pager-number {
  margin-left: 20px;
}
.p-news-list__pager-number.is-select {
  background-color: #E60012;
}
@media screen and (min-width: 768px) {
  .p-news-list__body {
    max-width: 700px;
    margin: 60px auto 0;
  }
  .p-news-list__panel {
    margin-top: 30px;
  }
  .p-news-list__item {
    flex-direction: row;
  }
  .p-news-list__date {
    width: 90px;
    font-size: 0.9375rem;
    line-height: 200%;
  }
  .p-news-list__text {
    flex: 1 1 0;
  }
  .p-news-list__link:hover {
    text-decoration: none;
    opacity: 1;
  }
  .p-news-list__pager {
    margin-top: 60px;
  }
}

/*============================================
 Works / Tab
============================================*/
.p-works-list__body {
  margin-top: 60px;
}
.p-works-list__tab {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 42px;
  border-bottom: 2px solid #E60012;
}
.p-works-list__label {
  color: #fff;
}
.p-works-list__label--service {
  background-color: #D85050;
}
.p-works-list__label--broadcast {
  background-color: #50D85B;
}
.p-works-list__label--video {
  background-color: #50A9D8;
}
.p-works-list__label[aria-selected=true] {
  flex: 1 0 0;
  max-width: 160px;
  font-size: 1rem;
  padding: 8px 0;
  clip-path: polygon(15px 0, 100% 0, 100% 100%, 0 100%, 0 8px);
}
.p-works-list__label[aria-selected=false] {
  max-width: 110px;
  font-size: 0.75rem;
  padding: 5.5px 10px 6.5px;
}
.p-works-list__panel {
  margin-top: 20px;
}
.p-works-list__panel.is-hidden {
  display: none;
}
.p-works-list__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 8px;
  width: 100%;
}
.p-works-list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: calc((100% - 8px) / 2);
  background-color: #fff;
}
.p-works-list__image {
  order: 1;
  width: 100%;
  height: 130px;
}
.p-works-list__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
}
.p-works-list__text {
  order: 3;
  flex-grow: 1;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: center;
  padding: 6px 5px;
}
.p-works-list__tag {
  order: 2;
  position: relative;
  width: 100%;
  text-align: left;
}
.p-works-list__tag::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: #969696;
}
.p-works-list__tag-text {
  display: inline-block;
  position: relative;
  color: #50A9D8;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 163%;
  padding: 0 10px 4px;
  background: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-works-list {
    max-width: 990px;
    margin: 0 auto;
  }
  .p-works-list__tab {
    gap: 5px;
  }
  .p-works-list__label[aria-selected=true] {
    flex: 0 0 auto;
    width: 160px;
  }
  .p-works-list__label[aria-selected=false] {
    width: 110px;
  }
  .p-works-list__panel {
    margin-top: 30px;
  }
  .p-works-list__list {
    gap: 30px 10px;
  }
  .p-works-list__item {
    width: calc((100% - 30px) / 4);
  }
  .p-works-list__image {
    height: 135px;
  }
  .p-works-list__text {
    line-height: 150%;
    padding: 10px 5px;
  }
}

/*============================================
 Recruit / Main
============================================*/
.p-recruit .l-footer {
  margin-top: 0;
}

.p-recruit-main {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.p-recruit-main__body {
  flex: 1 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
/*============================================
 Contact / Main
============================================*/
.p-contact-form__body {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .p-contact-form__body {
    max-width: 700px;
    margin: 70px auto 0;
  }
}

/*======================================================
 Utility
======================================================*/
.u-cf::after {
  content: "";
  clear: both;
  display: block;
}

.u-only-sp {
  display: block;
}

.u-only-pc {
  display: none;
}

.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (min-width: 768px) {
  .u-only-sp {
    display: none;
  }
  .u-only-pc {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */