@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
:root {
  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #333;
  --color-theme-darken: #333;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);
}

html {
  font-family: "Spartan", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  line-height: 1.8;
  height: 100%;
  word-break: break-word;
}

body {
  font-size: 1.6rem;
  margin: 0;
  background: #000;
  color: #fff;
}

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

::-moz-selection {
  color: #fff;
  background: var(--color-theme);
}

::selection {
  color: #fff;
  background: var(--color-theme);
}

img {
  border: 0;
  margin: 0;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1 span {
  font-size: 0.8em;
}

.l-inner {
  position: relative;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.mv01 .l-inner {
  padding-bottom: 0;
}

.mv01 .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.mv01 .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 3.2rem;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}

.mv01 .swiper-pagination-bullet {
  display: block;
  width: 3px;
  height: 4rem;
  cursor: pointer;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.4);
}

.mv01 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 0.8rem;
}

.mv01 .swiper-pagination-bullet-active {
  background-color: var(--color-theme);
}

.mv01 .slide-media {
  height: 800px;
}

.mv01 .slide-media img {
  transition: 7s 1s ease-out;
}

.mv01 .slide-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.6;
  position: absolute;
  right: 8rem;
  bottom: 15%;
  margin-left: 16rem;
  text-align: right;
  color: #fff;
}

.mv01 .swiper-slide[class*=-active] .slide-media img {
  transition-delay: 0s;
  transform: scale(1.05);
}

.mv01 .swiper-slide[class*=-active] .slide-title {
  animation: mv01-fadeIn 2s 0.5s var(--easing) both;
}
@keyframes mv01-fadeIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
    filter: blur(300px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .l-inner {
    padding: 0 4rem;
  }
  .pc {
    display: none !important;
  }
  .mv01 {
    margin-bottom: 8rem;
  }
  .mv01 .slide-media {
    height: max(70vh, 70vw);
  }
}
@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
  .pc-tab {
    display: none !important;
  }
  .mv01 .slide-title {
    font-size: 2.8rem;
    right: 4rem;
    margin-left: 6rem;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    transform: scale(1.2);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
header {
  height: 80px;
  padding: 1vw;
}

a {
  color: #fff;
}

.anim-box.a7s {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  margin: 30px auto;
  text-align: center;
  padding: 30px;
  border: solid 1px #fff;
  width: -moz-fit-content;
  width: fit-content;
}

.anim-box.a7s::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}

.anim-box.a7s:hover::before {
  animation: a7s 0.5s linear;
}

@keyframes a7s {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.tabs {
  margin-top: 50px;
  padding-bottom: 40px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 700px;
  margin: 0 auto;
}

.tab_item {
  width: 33.3333333333%;
  height: 50px;
  border-bottom: 1px solid #fff;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
}

.tab_item:hover {
  opacity: 0.75;
}

input[name=tab_item] {
  display: none;
}

.tab_content {
  display: none;
  padding: 40px 40px 0;
  clear: both;
  overflow: hidden;
  background-color: #000;
}

.tab_content_description {
  height: 400px;
  overflow: auto;
}

#all:checked ~ #all_content,
#programming:checked ~ #programming_content,
#design:checked ~ #design_content {
  display: block;
}

.tabs input:checked + .tab_item {
  background-color: #000;
  color: #fff;
}

:root {
  --delay: 0;
  --duration: 800ms;
  --iterations: 1;
}

.fadeUp {
  font-size: 20px;
}

.fadeUp,
.fadeUp::after {
  animation-delay: var(--animation-delay, 2s);
  animation-iteration-count: var(--iterations, 1);
  animation-duration: var(--duration, 800ms);
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.fadeUp {
  --animation-delay: var(--delay, 0);
  --animation-duration: var(--duration, 800ms);
  --animation-iterations: var(--iterations, 1);
  position: relative;
  animation-name: clip-text;
  white-space: nowrap;
  cursor: default;
}

.fadeUp::after {
  content: "";
  position: absolute;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  animation-name: text-revealer;
}
@keyframes clip-text {
  from {
    -webkit-clip-path: inset(0 100% 0 0);
    clip-path: inset(0 100% 0 0);
  }
  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
@keyframes text-revealer {
  0%, 50% {
    transform-origin: 0 50%;
  }
  60%, 100% {
    transform-origin: 100% 50%;
  }
  60% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.container {
  max-width: 90vw;
  margin: 0 auto;
}

.tac {
  text-align: center;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 1px;
  width: 25px;
  background-color: #ffffff;
  position: absolute;
}

.menu-btn span:before {
  bottom: 8px;
}

.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 80;
  background-color: #3584bb;
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 80vw;
  height: 100%;
  position: fixed;
  top: 0;
  right: 100%;
  /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #565656;
  transition: all 0.5s;
  /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  right: 0;
  /*メニューを画面内へ*/
}

.flex_container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 768px) {
  .flex_container {
    flex-direction: column;
  }
}
.flex_container .column {
  padding: 15px;
}

section,
footer {
  margin-top: 10vw;
}

footer p {
  padding-bottom: 5vw;
}

.ifrem_wide {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.bold {
  font-weight: bold;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  place-content: center;
  width: 6.4rem;
  height: 6.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid var(--color-gray);
  border-width: 3px 3px 0 0;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.gallery {
  overflow: hidden;
}

.gallery .swiper {
  max-width: 90vw;
  margin: auto;
}

.gallery .swiper-main {
  overflow: visible;
  margin-bottom: 3vw;
}

.gallery .swiper-thumb {
  padding-top: 8px;
}

.gallery .swiper-fade .swiper-slide {
  transition-property: opacity, transform !important;
  pointer-events: none;
}

.gallery .swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.gallery .swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 62.5%;
}

.gallery .swiper-button-prev,
.gallery .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.gallery .swiper-button-prev {
  right: calc(100% + 3.2rem);
}

.gallery .swiper-button-next {
  left: calc(100% + 3.2rem);
}

.gallery .swiper-scrollbar {
  position: relative;
  margin-top: 1.6rem;
}

.gallery .swiper-scrollbar::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  margin: auto;
  content: "";
}

.gallery .swiper-scrollbar-drag {
  height: 20px;
  padding: 8px 0;
  cursor: pointer;
  background-color: var(--color-theme);
  background-clip: content-box;
}

.gallery .swiper-scrollbar-drag:active {
  background-color: var(--color-theme-darken);
}

.gallery .slide {
  display: block;
  overflow: hidden;
  margin-bottom: 5;
}

.gallery .slide-media {
  padding-top: 62.5%;
  border-radius: 4px;
}

.gallery .thumb-media {
  padding-top: 100%;
  transition: var(--transition);
  border-radius: 4px;
}

.gallery .thumb-media img {
  height: calc(100% + 8px);
  transition: var(--transition);
  transform: translateY(-8px);
}

.gallery .swiper-slide-thumb-active {
  transition: var(--transition);
  opacity: 0.3;
}

.gallery .swiper-slide-thumb-active .thumb-media {
  transform: translateY(-8px);
}

.gallery .swiper-slide-thumb-active .thumb-media img {
  transform: translateY(0);
}

@media only screen and (max-width: 1024px) {
  .l-inner {
    padding: 0 4rem;
  }
  .gallery .swiper-button-prev::before,
  .gallery .swiper-button-next::before {
    background-color: rgba(0, 0, 0, 0.3);
    box-shadow: var(--box-shadow-dark);
  }
  .gallery .swiper-button-prev::after,
  .gallery .swiper-button-next::after {
    border-color: #fff;
  }
  .gallery .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
  .gallery .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}
@media only screen and (max-width: 599px) {
  html {
    font-size: 50%;
  }
  .pc-tab {
    display: none !important;
  }
}
@media only screen and (min-width: 1025px) {
  .tab-sp {
    display: none !important;
  }
  .swiper-button-prev::before,
  .swiper-button-next::before {
    transition: var(--transition);
  }
  .swiper-button-prev:hover::before,
  .swiper-button-next:hover::before {
    transform: scale(1.2);
  }
  .gallery .swiper-scrollbar-drag:hover {
    background-color: var(--color-theme-darken);
  }
  .gallery .thumb-media:hover {
    transform: translateY(-8px);
  }
  .gallery .thumb-media:hover img {
    transform: translateY(0);
  }
}
@media only screen and (min-width: 600px) {
  .sp {
    display: none !important;
  }
}
.btn_more {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  border: solid 1px #fff;
  margin: auto;
  padding: 15px 40px;
  min-width: 200px;
  text-align: center;
  font-weight: bold;
  margin-top: 3vw;
}
.btn_more:hover {
  background-color: #fff;
  color: #000;
  border-color: #000;
  transition: 0.5s;
}

h3 {
  margin-bottom: 3vw;
}

h4 {
  margin-bottom: 1.5vw;
}

.sns,
.sns_sp {
  display: flex;
  gap: 20px;
  opacity: 0.9;
  margin: 1vw;
  justify-content: end;
}
.sns img,
.sns_sp img {
  width: auto;
  height: 20px;
  display: block;
}
.sns a:hover,
.sns_sp a:hover {
  opacity: 0.3;
}

@media only screen and (max-width: 600px) {
  .sns {
    display: none !important;
  }
  .sns_sp {
    margin: 2vw;
  }
  h1 {
    padding: 4vw;
  }
  .sp_none {
    display: none;
  }
}
@media only screen and (min-width: 600px) {
  .sns_sp {
    display: none !important;
  }
  .pc_none {
    display: none;
  }
}
.tab_content_description ul li {
  padding-bottom: 1vw;
  border-bottom: dotted #767676 1px;
  margin-bottom: 2vw;
}

.about p:first-child {
  border-bottom: 1px #fff solid;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
}

.tab_content_description ul li a:hover {
  opacity: 0.7;
}

.cf {
  margin: auto;
  max-width: 600px;
  margin-top: 5vw;
}
.cf .cf_btn {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.5rem;
}
.cf .cf_btn:hover {
  color: #767676;
}
.cf a.btn-border {
  border-radius: 0;
}
.cf a.btn-border:before,
.cf a.btn-border:after {
  position: absolute;
  width: 100%;
  height: 1px;
  content: "";
  transition: all 0.3s;
  background: #fff;
}
.cf a.btn-border:before {
  top: 0;
  left: 0;
}
.cf a.btn-border:after {
  right: 0;
  bottom: 0;
}
.cf a.btn-border:hover:before,
.cf a.btn-border:hover:after {
  width: 0;
}

.cf_iframe {
  max-width: 700px;
}
.cf_iframe iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

.cf-title {
  font-size: clamp(1.25rem, 0.886rem + 1.82vw, 2.25rem);
  text-align: center;
}/*# sourceMappingURL=top.css.map */