@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #303030; /* RGB */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #F6F6F6;
  -webkit-font-smoothing: antialiased;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #303030;
  z-index: 9999999;
  text-align: center;
  color: #fff;
}
#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1.2;
  letter-spacing: 3px;
  font-size: 2.4rem;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
}
.blur {
  animation-name: blurAnime;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}
@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger {
  opacity: 0;
}
/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}
/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #303030; /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}
@keyframes PageAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
  50% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0.01; /*はじめは透過0に*/
}
/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1160px) {
  #splash-logo {
    font-size: 4.8rem;
  }
}
header {
  width: 100%;
  height: 60px;
}
.header_wrapper {
  padding: 0 30px;
}
h1 {
  font-size: 1.8rem;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: bold;
  text-align: left;
  width: auto;
  padding: 18px 0;
}
.site_title {
  text-decoration: none;
  color: #303030;
}
.header_nav {
  display: none;
}
@media (max-width: 1160px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0; /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #f6f6f6;
    /*動き*/
    transition: all 0.3s;
  }
  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 9000;
  }
  /*ナビゲーション*/
  #g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #g-nav.panelactive ul {
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #303030;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    display: block;
    position: absolute;
    z-index: 9999; /*ボタンを最前面に*/
    cursor: pointer;
    right: 11px;
    top: 22px;
    width: 40px;
    height: 40px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    height: 1px;
    background: #303030;
    width: 21px;
    left: 0;
    top: 0;
  }
  .openbtn span:nth-of-type(1) {
    top: 0;
  }
  .openbtn span:nth-of-type(2) {
    top: 7px;
  }
  .openbtn span:nth-of-type(3) {
    top: 14px;
  }
  .openbtn.active {
    position: fixed;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 0;
    right: 11px;
    transform: translateY(6px) rotate(-45deg);
    width: 21px;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 12px;
    right: 11px;
    transform: translateY(-6px) rotate(45deg);
    width: 21px;
  }
}
@media (min-width: 1160px) {
  header {
    height: 80px;
  }
  .header_wrapper {
    padding: 0 115px;
    position: relative;
    height: 80px;
  }
  h1 {
    font-size: 2.4rem;
    padding: 25px 0;
    position: absolute;
  }
  #g-nav {
    display: block;
  }
  #g-nav ul {
    display: flex;
    justify-content: flex-end;
    padding: 25px 0;
    width: 100%;
  }
  #g-nav ul li {
    margin-right: 44px;
  }
  #g-nav ul li:last-child {
    margin-right: 0;
  }
  #g-nav ul li a {
    text-decoration: none;
    color: #303030;
    font-size: 1.6rem;
    font-family: "Outfit", "Noto Sans JP", sans-serif;
    font-weight: 400;
  }
  .close-button {
    display: none;
  }
}
footer {
  width: 100%;
  height: auto;
  background-color: #303030;
}
.footer_wrapper {
  padding: 80px 24px 10px;
}
.footer_wrapper h2 {
  color: #ffffff;
  font-size: 2.0rem;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  margin-bottom: 40px;
}
.contact_btn {
  height: 58px;
  margin-bottom: 100px;
}
.mail_btn_text {
  text-decoration: none;
  font-size: 1.3rem;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  color: #ffffff;
  border: solid 1px #ffffff;
  padding: 16px 36px;
  position: relative;
  display: block;
  width: 185px;
  margin: 0 auto;
}
.mail_btn_text::before {
  content: " ";
  background-color: #ffffff;
  width: 5px;
  height: 5px;
  position: absolute;
  border-radius: 5px;
  top: 27px;
  right: -36px;
}
.mail_btn_text::after {
  content: " ";
  background-color: #ffffff;
  width: 50px;
  height: 1px;
  position: absolute;
  top: 29px;
  right: -36px;
}
small {
  font-size: 1.0rem;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  color: #707070;
  text-align: right;
  display: block;
}
@media (min-width: 1160px) {
  .footer_wrapper {
    padding: 100px 24px 20px;
  }
  .footer_wrapper h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
  }
}
.paragraph {
  display: block;
  margin-bottom: 10px;
}
@media (min-width: 1160px) {
  .paragraph {
    margin-bottom: 20px;
  }
}
.works_content-card {
  width: 100%;
}
.works_content-card img {
  width: 100%;
  height: 27vh;
  object-fit: cover;
  margin-bottom: 7px;
}
.works {
  padding: 0 8%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px 0;
  margin-bottom: 60px;
  z-index: 100;
  position: relative;
}
.label_wrapper {
  width: 70px;
  height: 26px;
  background-color: #303030;
  margin-bottom: 6px;
}
.label {
  color: #ffffff;
  font-family: "Outfit", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 2.2;
}
.works_title {
  text-align: left;
  font-size: 1.4rem;
  font-weight: bold;
}
.works_link {
  text-decoration: none;
  font-size: 1.4rem;
  color: #303030;
}
@media (min-width: 600px) {
  .works_content-card img {
    height: 462px;
  }
}
@media (min-width: 1160px) {
  .works {
    display: flex;
    flex-wrap: wrap;
    gap: 100px 6%;
    width: 75%;
    margin: 0 auto;
    padding: 0;
  }
  .works_content-card {
    width: 47%;
  }
  .works img {
    margin-bottom: 14px;
    height: 32vh;
  }
  .works_title_wrap {
    display: flex;
  }
  .label_wrapper {
    margin-right: 20px;
  }
  .works_link {
    font-size: 1.6rem;
  }
  .mobile {
    display: none;
  }
}
/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}
.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.5s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/* 左から */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeRightTrigger, .fadeLeftTrigger, .fadeUpTrigger {
  opacity: 0;
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}