@charset "UTF-8";
#red {
  color: #e20505;
}
:root {
  /* 色管理用の変数 */
  --black-color: #000;
  --white-color: #fff;
  --btn-color: #00d0ff;
  --primary-color: #005caf;
  --accent-color: #f214d8;
  --gray-color: #707070;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 760px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
}

body {
  font-family: "DIN 2014", "Noto+Sans+JP", "Oswald";
  font-size: 18px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 20px;
  }
}
main {
  padding-top: 70px;
}
@media screen and (min-width: 960px) {
  main {
    padding-top: 59px;
  }
}
.m_btn__mail-box {
  width: 19px;
  height: 15px;
}
.sns_logo {
  width: 30px;
  height: 30px;
}
.l_header {
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0px;
  background-color: #fff;
  border-bottom: 3px solid var(--primary-color);
}
.l_header-contact {
  background-color: var(--primary-color);
  z-index: 100;
  top: 0px;
}
.l_header_inner {
  padding: 8px 10% 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
}

@media screen and (min-width: 960px) {
  .l_header-nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}
.l_header_hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
}
@media screen and (min-width: 700px) {
  /*PC時非表示にする*/
  .l_header_hamburger {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .l_header-nav.active {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: var(--white-color);
  }
}
@media screen and (max-width: 700px) {
  .l_header-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    transition: all 0.5s; /*アニメーション設定*/
  }
}
.l_header-list {
  padding-top: 250px;
  padding-bottom: 200px;
}
@media screen and (min-width: 700px) {
  .l_header-list {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
.l_header-nav_item {
  color: var(--black-color);
  width: 100%;
  display: block;
  text-align: center;
  font-size: 18px;
  margin-bottom: 24px;
}
/* @media screen and (min-width: 960px) {
  .l_header-nav_item {
    font-size: 20px;
  }
} */
@media screen and (min-width: 700px) {
  .l_header-nav_item {
    margin-bottom: 0;
  }
}
/*PC時のナビゲーションメニュー、横並びにする*/
@media screen and (min-width: 700px) {
  .l_header-list {
    margin-left: 2rem;
    gap: 1.5rem;
    display: flex;
    align-items: center;
    height: initial;
  }
}
@media screen and (min-width: 960px) {
  .l_header-list {
    margin-left: 2rem;
    gap: 3rem;
  }
}
.l_header-nav_link:last-child {
  margin-bottom: 0;
}

/* module */
.m_hamburger {
  width: 30px;
  height: 100%;
}

.m_hamburger-bar {
  display: block;
  width: 30px;
  height: 5px;
  position: relative;
  background: #000;
  transition: ease 0.4s; /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
}

.m_hamburger-bar:nth-child(1) {
  top: 0;
}

.m_hamburger-bar:nth-child(2) {
  margin: 6px 0;
}

.m_hamburger-bar:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル  */

.l_header_hamburger.active .m_hamburger-bar:nth-child(1) {
  top: 5px;
  transform: rotate(225deg);
}

.l_header_hamburger.active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.l_header_hamburger.active .m_hamburger-bar:nth-child(3) {
  top: -17px;
  transform: rotate(-225deg);
}
.m_section-ttl-first {
  padding-top: 90px;
  text-align: center;
}
.m_section-ttl {
  padding-bottom: 60px;
  margin: 0 auto;
  text-align: center;
}

.m_section-ttl_sub {
  font-size: 20px;
  font-weight: bold;
  color: var(--gray-color);
  position: relative;
}
@media screen and (min-width: 960px) {
  .m_section-ttl_sub {
    font-size: 30px;
  }
}

.m_section-ttl_sub::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--gray-color);
  position: absolute;
  top: 50%;
  transform: translate(-72px, -50%);
}

.m_section-ttl_sub::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 3px;
  background-color: var(--gray-color);
  position: absolute;
  top: 50%;
  transform: translate(32px, -50%);
}

.m_page_top {
  position: fixed;
  bottom: 50px;
  right: 10px;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .m_page_top {
    position: fixed;
    bottom: 50px;
    z-index: 1;
    text-align: end;
  }
}
@media screen and (min-width: 960px) {
  .m_page_top_img {
    width: 40px;
    height: 40px;
  }
}

/* header */
.header-logo,
.l_header-nav_link {
  text-decoration: none;
  color: var(--black-color);
}
.header-logo {
  font-weight: 900;
  color: var(--black-color);
  white-space: nowrap;
  display: flex;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .header-logo {
    line-height: 1;
  }
}
.opening_kv-face {
  width: 147px;
  height: 147px;
  margin: 40px 0 40px;
}

/* top */
.news-box {
  text-align: center;
}

.section-news {
  text-align: left;
  display: inline-block;
  list-style: none;
}

.m_section-news {
  margin-bottom: 20px;
}

/* カルーセル */
img {
  max-width: 100%;
  vertical-align: bottom;
}
.content {
  width: 100%;
  padding-bottom: 50px;
}
#slider {
  width: 80%;
  margin: 100px auto 80px;
  position: relative;
}
@media screen and (min-width: 700px) {
  #slider {
    margin: 100px auto;
    position: relative;
  }
}

.slick-next:before,
.slick-prev:before {
  color: #000 !important;
}

#news {
  padding-top: 0;
  padding-bottom: 200px;
}
@media screen and (min-width: 700px) {
  #news .m_section-ttl_sub {
    margin-bottom: 0;
  }
}

.top_kv {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 100% 20%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* @media screen and (min-width: 700px) {
  .top_kv {
    height: 500px;
    width: 500px;
  }
} */
.top_kv-face {
  height: 300px;
}
/* @media screen and (min-width: 700px) {
  .top_kv-face {
    height: 500px;
  }
} */

.top_kv-ttl,
.top_kv-ttl2 {
  font-size: 48px;
  font-weight: 900;
}

/* profile */
.section_profile {
  margin-top: 0;
}
.m_section_txt {
  color: var(--gray-color);
  text-align: center;
}
.m_section_txt_sub {
  max-width: calc(375px - 32px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 960px) {
  .m_section_txt_sub {
    max-width: 100vw;
    white-space: nowrap;
  }
}
.name-roma {
  font-size: 18px;
  margin-bottom: 15px;
}
@media screen and (min-width: 960px) {
  .name-roma {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.name {
  font-size: 30px;
  margin-bottom: 80px;
}
@media screen and (min-width: 960px) {
  .name {
    font-size: 40px;
    margin-bottom: 120px;
  }
}

/* works */
.work-box {
  padding-top: 60px;
}
.section_work-box {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
  .section_work-box {
    width: 60%;
  }
}
@media screen and (min-width: 1700px) {
  .section_work-box {
    width: 40%;
  }
}
.m_section_txt_sub-ttl {
  font-size: 32px;
  margin-bottom: 40px;
}
.m_section_txt:not(:first-child) {
  margin-top: 80px;
}
.m_section_txt_sub:not(:first-child) {
  margin-top: 24px;
}
.section_stage-txt {
  line-height: 2;
}
@media screen and (min-width: 1160px) {
  .m_section_txt:nth-child(2) {
    margin-top: 0;
  }
}

.m_section_doc {
  font-size: 16px;
  color: var(--gray-color);
  margin-left: auto;
  margin-right: auto;
  text-align: start;
  font-weight: normal;
}
.m_section_doc-box {
  font-size: 16px;
  color: var(--gray-color);
  margin-left: auto;
  margin-right: auto;
  text-align: start;
  margin-bottom: 16px;
  font-weight: normal;
}
@media screen and (min-width: 960px) {
  .m_section_doc {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    font-weight: normal;
    line-height: 2em;
  }
}
@media screen and (min-width: 960px) {
  .m_section_doc-box {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    font-weight: normal;
    line-height: 2em;
    margin-bottom: 32px;
  }
}
.scenario-box {
  padding: 20px 0;
}
.scenario-ttl {
  font-weight: bold;
  font-size: 16px;
  color: var(--gray-color);
  text-align: start;
  margin-bottom: 12px;
}
@media screen and (min-width: 960px) {
  .scenario-ttl {
    font-size: 18px;
    line-height: 2em;
  }
}
/* about */

/* sns */
.sns_logo {
  width: 30px;
  height: 30px;
}
@media screen and (min-width: 960px) {
  .sns_logo {
    width: 40px;
    height: 40px;
  }
}
.m_cta_sns_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 140px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 699px) {
  .m_cta_sns_box {
    flex-flow: column;
    /* align-items: center; */
    justify-content: space-between;
    height: 200px;
    margin-left: 20px;
    width: 100%;
  }
}
.m_cta_box {
  position: fixed;
  bottom: 50px;
}
@media screen and (max-width: 700px) {
  .m_cta_box {
    width: 100vw;
  }
}
@media screen and (min-width: 701px) {
  .m_cta_box {
    position: fixed;
    top: 60%;
    height: 100vh;
    transform: translateY(-150px);
  }
}
.triangle {
  background: #000;
  height: calc(tan(60deg) * 30px / 2);
  width: 30px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  margin-right: 40px;
}

/* 404 */

/* contact */
.container {
  margin: 0 auto;
  text-align: center;
}
input {
  margin-bottom: 10px;
}
textarea {
  height: 100px;
  margin-bottom: 10px;
}

/* footer */
.l_footer {
  font-size: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 701px) {
  .l_footer {
    font-size: 16px;
  }
}

/* thanks */
#thanks {
  padding-top: 88px;
  margin: 0 auto;
  max-width: 1200px;
}
#thanks h1 {
  padding: 40px 0 80px;
}

/* parallax */

section {
  margin: 60px 0 100px;
  width: 100%;
}

.bg-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  /*範囲外の背景画像を隠す*/
  clip-path: inset(0);
}

.bg1,
.bg2,
.bg3 {
  /*背景画像の位置を固定する*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.bg1 {
  background-image: url("/img/work-kv.jpg");
}

.bg2 {
  background-image: url("/img/contact-kv.jpg");
}

.bg3 {
  background-image: url("画像のパス");
}
