@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-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;
}

/* -----------------------------------------------------
    JavaScriptControl
------------------------------------------------------- */
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}

.scroll_up.on {
  transform: translateY(0);
  opacity: 1;
}

.scroll_right {
  transition: 0.8s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

.scroll_left {
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1;
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  transform: translateX(0);
}

/* -------------------------------------------
    BUTTON_SQUARE
--------------------------------------------- */
.btn_square {
  display: inline-block;
  background-color: transparent;
  width: 180px;
  height: 180px;
  border: solid 1px #FD7E00;
  transition: all 0.5s ease;
}
@media screen and (max-width: 834px) {
  .btn_square {
    width: 130px;
    height: 130px;
  }
}
@media screen and (max-width: 600px) {
  .btn_square {
    width: 100px;
    height: 100px;
  }
}
.btn_square:hover {
  background-color: #FD7E00;
}

.btn_square_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.btn_square_contents {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}

/* -----------------------------------------------
    VERTICAL_TITLE  縦書き
------------------------------------------------- */
.vertical_ttl {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.vertical_ttl_number {
  display: block;
  color: #FD7E00;
  font-size: clamp(21px, 2.51798561vw, 63px);
  font-family: "Arbutus", sans-serif;
  padding-bottom: 10px;
  margin: 0 auto;
  max-width: -moz-max-content;
  max-width: max-content;
}
.vertical_ttl_line {
  display: block;
  color: #fff;
  font-size: clamp(30px, 30px + (100vw - 834px) * 0.0770483468, 89.019033675px);
  font-family: "Arbutus", sans-serif;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
  margin: 0 auto;
}

/* -----------------------------------------------
    HORIZONTAL_TITLE    横書き
------------------------------------------------- */
.horizontal_ttl {
  display: block;
  font-size: clamp(30px, 30px + (100vw - 834px) * 0.0770483468, 89.019033675px);
  color: #fff;
  font-family: "Arbutus", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.horizontal_ttl_orenge {
  color: #FD7E00;
}

/* ----------------------------------------------------
    BREADCRUMB
------------------------------------------------------- */
.breadcrumb_area {
  padding: 10px 0;
}

.breadcrumb {
  display: flex; /* リストを横並びに */
  flex-wrap: wrap; /* リストが折り返すように */
  list-style: none; /* リストスタイルを無しに */
}
.breadcrumb_list:not(:last-of-type)::after {
  content: ">"; /* 区切り文字 */
  margin: 0 0.6em; /* 区切り文字の左右の余白 */
}

.bc_text {
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
}
.bc_text:not(:last-child) {
  color: #fff;
}

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

ul, li {
  text-decoration: none;
}

.wrapper {
  color: #fff;
  font-family: "Montserrat", "Arbutus", "Noto Sans JP", sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* --------------------------------------------------
    HEADER
------------------------------------------------------ */
.header {
  padding: 0 20px;
  box-sizing: border-box;
  background-color: #000;
  width: 100%;
  transition: 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header_inner {
  display: flex;
  align-items: center;
  height: 60px;
}

.header_logo_area {
  box-sizing: border-box;
  padding-top: 10px;
}
@media screen and (max-width: 600px) {
  .header_logo_area {
    padding-top: 0;
  }
}

.header_logo {
  display: block;
  height: 40px;
  width: auto;
}
@media screen and (max-width: 600px) {
  .header_logo {
    height: 30px;
  }
}

.header_nav_area {
  margin-left: auto;
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  height: 60px;
  width: 60px;
  cursor: pointer;
  position: relative;
  z-index: 2000;
}
.header_nav:hover {
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}

/* ---------------------------------------------------------
    MENU
---------------------------------------------------------- */
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  transform: translateX(100vw);
  transition: all 0.6s linear;
}

.menu.is_active {
  box-sizing: border-box;
  padding: 0 20px;
  transform: translateX(0);
}

body.menu_active {
  overflow: hidden;
}

.menu_item {
  box-sizing: border-box;
  text-align: center;
  color: #fff;
  font-size: clamp(30px, 30px + (100vw - 834px) * 0.0770483468, 89.019033675px);
  font-family: "Arbutus", sans-serif;
  letter-spacing: 0.1em;
  width: 100%;
  height: auto;
  padding: 2% 15%;
}

.menu_item_contents {
  display: block;
  width: 100%;
}
.menu_item_contents:hover {
  opacity: 0.6;
  transition: 0.3s ease-in-out;
}

/* ---------------------------------------------------
    背景エリア
---------------------------------------------------- */
.bg_black {
  position: relative;
  padding: 0 20px;
  background-color: #000;
}

/* ----------------------------------------------------------
    FOOTER
------------------------------------------------------------ */
.footer {
  background-color: #000;
  padding: 0 20px;
  position: relative;
}

.footer_inner {
  padding: 30px 0;
  border-top: 1px solid #555555;
  width: 100%;
}

.copy_right_area {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.copy_right {
  color: #fff;
  font-size: 12px;
}

/* ----------------------------------------------------------
    TOPページ以外の上部見出しエリア
------------------------------------------------------------ */
.horizontal_ttl_area {
  width: 100%;
  padding-top: 60px;
  border-bottom: solid 3px #555555;
}

.horizontal_ttl_inner {
  width: 100%;
  padding: 50px 0;
}

/* ---------------------------------
    VIDEOエリア
----------------------------------- */
.video_box {
  position: fixed;
  top: 60px;
  right: 20px;
  width: 75vw;
  height: 66.6666666667vh;
  background-color: #000;
  opacity: 0.6;
  z-index: 0;
  filter: grayscale(100);
}
@media screen and (max-width: 600px) {
  .video_box {
    width: calc(100vw - 40px);
    position: fixed;
    top: 0;
    left: 20px;
  }
}

.video {
  max-width: 100%;
  min-width: 100%;
  width: auto;
  height: auto;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

/* ----------------------------------------------------------
    上に乗ってる部分
------------------------------------------------------------- */
.main {
  position: relative;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  padding-top: 300px;
}

/* ------------------------------------
    SECTION_TOP
------------------------------------- */
.top {
  width: 100%;
  margin-bottom: 500px;
}
.top_contents {
  width: 80%;
  margin: 0 auto;
}

.top_contents {
  position: relative;
}

.heading {
  display: block;
  width: 100%;
}
.heading_ttl_line {
  color: #fff;
  font-size: clamp(16px, 9.5923261vw, 120px);
  font-family: "Arbutus", sans-serif;
  width: 100%;
  vertical-align: bottom;
}
.heading_ttl_line:nth-child(1), .heading_ttl_line:nth-child(2) {
  padding-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .heading_ttl_line:nth-child(1), .heading_ttl_line:nth-child(2) {
    padding-bottom: 30px;
  }
}
.heading_ttl_line_orange {
  color: #FD7E00;
}

.dreams {
  padding-top: 200px;
}
.dreams_box {
  width: 70%;
}

.dreams_role {
  display: block;
  color: #fff;
  font-size: 18px;
  font-family: "Arbutus", sans-serif;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}

.dreams_contents {
  font-size: clamp(30px, 30px + (100vw - 834px) * 0.0770483468, 89.019033675px);
  line-height: 1.5;
  font-weight: 700;
}

.mission {
  padding-top: 160px;
  margin-left: auto;
}

.top_btn_area {
  padding-top: 100px;
  position: absolute;
  right: 0;
}

/* -----------------------------------------------------
    スクロールしたら被さる黒い背景
-------------------------------------------------------- */
.bg_black_box {
  background-color: #000;
}

/* ---------------------------------------
    SECTION_WORKS
------------------------------------------ */
.works {
  padding: 100px 0;
  position: relative;
}

.works_ttl_area {
  position: absolute;
  top: 100px;
  left: 20%;
  z-index: 100;
}

.works_slide_area {
  overflow: hidden;
  padding-top: 100px;
}
.works_slide_area .slide_inner {
  margin: 0 0 0 auto;
  width: 60%;
  padding-left: 4rem;
  padding-right: 4rem;
}
@media screen and (max-width: 600px) {
  .works_slide_area .slide_inner {
    margin: auto;
    padding-left: 0%;
    width: auto;
  }
}
.works_slide_area .lineup {
  position: relative;
}
.works_slide_area .lineup_carousel .slide_list {
  text-align: center;
  margin-right: 24px;
  filter: grayscale(100);
  transition: 0.3s;
}
.works_slide_area .lineup_carousel .slide_list:hover {
  filter: none;
}
@media screen and (max-width: 600px) {
  .works_slide_area .lineup_carousel .slide_list {
    margin-right: 10px;
  }
}
.works_slide_area .lineup_carousel .slide_list .list_items {
  display: block;
  margin: 0;
  padding: 0;
}
.works_slide_area .lineup_carousel .slide_list .list_items .slide_figure {
  display: block;
  margin-bottom: 16px;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.works_slide_area .lineup_carousel .slide_list .list_items .slide_ttl {
  color: #fff;
  font-size: 14px;
}
.works_slide_area .slick-list {
  overflow: visible;
}
.works_slide_area .slick_nav_arrows {
  position: absolute;
  top: -40px;
  right: 0;
}
.works_slide_area .slick-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid #555555;
}
.works_slide_area .slick-arrow:hover {
  border: 1px solid #FD7E00;
  transition: 0.3s ease-in-out;
}
.works_slide_area .slick-next {
  right: -64px;
}
.works_slide_area .slick-prev {
  left: -51px;
}
.works_slide_area .slick-next:before, .works_slide_area .slick-prev:before {
  color: #fff;
  font-size: 18px;
}

.works_btn_area {
  position: absolute;
  top: 80%;
  left: 30%;
}

/* ---------------------------------------
    SECTION_SKILLS
------------------------------------------ */
.skills {
  padding: 100px 0;
  position: relative;
}

.skills_ttl_area {
  position: absolute;
  top: 100px;
  left: 10%;
}

.skills_contents_area {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: row;
  padding-top: 100px;
  gap: 3%;
  width: 80%;
  margin-left: auto;
}
@media screen and (max-width: 834px) {
  .skills_contents_area {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .skills_contents_area {
    gap: 15px;
  }
}

.skills_box {
  width: calc(33.333% - 10px);
  background-color: #111;
  border-right: solid 1px #FD7E00;
  border-bottom: solid 1px #FD7E00;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .skills_box {
    width: 95%;
  }
  .skills_box:nth-child(1), .skills_box:nth-child(2) {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 600px) {
  .skills_box {
    width: 90%;
  }
}

.ui_ux {
  transition-delay: 0.2s;
}

.graphic {
  transition-delay: 0.4s;
}

.skills_box_inner {
  padding: 20% 15%;
}
@media screen and (max-width: 834px) {
  .skills_box_inner {
    padding: 50px 40px;
  }
}

.skills_category {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.skills_description {
  font-size: 14px;
  line-height: 1.7;
  padding-top: 15%;
}
@media screen and (max-width: 834px) {
  .skills_description {
    padding-top: 5%;
  }
}

.skills_ico_area {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 15%;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .skills_ico_area {
    padding-top: 5%;
  }
}

.skills_ico {
  display: block;
  width: 35px;
  height: 35px;
  padding: 5px;
}

/* -------------------------------------------
    SECTION_ABOUT
--------------------------------------------- */
.about {
  padding: 100px 0 200px 0;
  position: relative;
}

.about_ttl_area {
  position: absolute;
  top: 100px;
  left: 0;
}

@media screen and (max-width: 600px) {
  .about_contents_area {
    width: 90%;
  }
}

.about_contents_inner {
  background-color: #111;
  padding: 80px 0;
  margin: 100px 0 0 15%;
  width: 60%;
  border-right: solid 1px #FD7E00;
  border-bottom: solid 1px #FD7E00;
}
@media screen and (max-width: 834px) {
  .about_contents_inner {
    width: 80%;
  }
}

.name_area {
  padding: 0 10%;
  padding-bottom: 20px;
}
.name_area .name {
  font-size: 14px;
  line-height: 1.7;
}
.name_area .name:nth-child(1) {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.name_area .name:nth-child(2) {
  color: #555555;
}

.description_me {
  padding: 0 10%;
  font-size: 14px;
  line-height: 1.7;
}

.about_btn_area {
  position: absolute;
  top: 70%;
  left: 70%;
}
@media screen and (max-width: 834px) {
  .about_btn_area {
    position: absolute;
    top: 75%;
    left: 25%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .about_btn_area {
    top: 85%;
    left: 50%;
  }
}

.works_main {
  padding-top: 50px;
}

.w_list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 0;
}
@media screen and (max-width: 834px) {
  .w_list {
    align-items: center;
    flex-direction: column;
  }
}

.ws_img_area {
  width: 55%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .ws_img_area {
    width: 80%;
    margin-left: auto;
  }
}
@media screen and (max-width: 600px) {
  .ws_img_area {
    width: 100%;
  }
}
.ws_img_area .ws_img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
.ws_img_area .ws_head {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  padding-top: 10px;
  transition-delay: 0.2s;
}

.ws_contents_area {
  width: 40%;
  padding-top: 150px;
}
@media screen and (max-width: 834px) {
  .ws_contents_area {
    width: 100%;
    padding-top: 50px;
  }
}
.ws_contents_area .ws_contents_head {
  color: #fff;
  font-size: clamp(30px, 30px + (100vw - 834px) * 0.0770483468, 89.019033675px);
  font-family: "Arbutus", sans-serif;
  line-height: 1.2;
  margin-left: -120px;
  margin-bottom: 80px;
  transition-delay: 0.4s;
}
@media screen and (max-width: 834px) {
  .ws_contents_area .ws_contents_head {
    margin-left: 0;
  }
}
.ws_contents_area .ws_description {
  font-size: 14px;
  line-height: 1.7;
  width: 100%;
  transition-delay: 0.2s;
}
@media screen and (max-width: 834px) {
  .ws_contents_area .ws_description {
    width: 70%;
    margin-left: auto;
    margin-top: -40px;
  }
}
@media screen and (max-width: 600px) {
  .ws_contents_area .ws_description {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
  }
}
.ws_contents_area .ws_btn_area {
  max-width: 180px;
  margin-left: -120px;
  padding-top: 40px;
}
@media screen and (max-width: 834px) {
  .ws_contents_area .ws_btn_area {
    max-width: 130px;
    margin-left: 0;
  }
}
@media screen and (max-width: 600px) {
  .ws_contents_area .ws_btn_area {
    max-width: 100px;
    margin: 0 auto;
  }
}/*# sourceMappingURL=style.css.map */