/*======================
  base
======================*/

body {
  word-wrap: break-word;
  color: #000;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", "Yu Gothic", YuGothic, "メイリオ", Meiryo, '源ノ角ゴシック JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.71;
  overflow-wrap: break-word;
  overflow-x: hidden;
}



/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */

/*=======================
  footer
=======================*/

.footer {
  background: #15171B;
  padding: 80px 0 42px;
}

.footer__box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__logo {
  display: block;
  margin: 0 auto 84px;
  transition: opacity 0.3s;
  width: 150px;
}

.footer__logo:hover {
  opacity: 0.8;
}

.footer__logo img {
  width: 100%;
}

.footer__item:not(:last-child) {
  margin-bottom: 25px;
}

.footer__item a {
  color: #fff;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.1;
  text-align: center;
  transition: opacity 0.3s;
}

.footer__item a:hover {
  opacity: 0.8;
}

.footer__cv {
  margin-top: 40px;
}

.footer__cv-item:not(:last-child) {
  margin-bottom: 24px;
}

.footer__copyright {
  border-top: 1px solid #666666;
  color: #666666;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1;
  margin-top: 80px;
  padding-top: 30px;
  text-align: center;
}

/*=======================
  header
=======================*/

.header {
  background: #fff;
  height: 60px;
  left: 0;
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 990;
}

.header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1340px !important;
  position: relative;
}

.header__logo {
  display: inline-block;
  font-size: 0;
  line-height: 1;
  width: 56px;
}

.header__logo a {
  display: block;
  transition: opacity 0.3s;
}

.header__logo a:hover {
  opacity: 0.8;
}

.header__logo a img {
  width: 100%;
}

/*=======================
  gnav
=======================*/

.gnav-btn {
  background: transparent;
  cursor: pointer;
  display: inline-block;
  height: 18px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  z-index: 999;
}

.gnav-btn__bar {
  background-color: #000;
  display: block;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: background-color 0.3s, transform 0.3s;
  width: 100%;
}

.gnav-btn__bar.m-top {
  transform: translate(-50%, calc(-50% - 8px));
}

.gnav-btn__bar.m-middle {
  transform: translate(-50%, -50%);
}

.gnav-btn__bar.m-bottom {
  transform: translate(-50%, calc(-50% + 8px));
}

/*
.gnav {
  background: #333333;
  box-sizing: border-box;
  height: 100vh;
  overflow-y: scroll;
  padding: 96px 10.66vw 20px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(110%);
  transition: transform 0.5s;
  width: 100%;
  z-index: 998;
}

.gnav__link {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  transition: border-color 0.3s;
}
 */

.gnav {
  background: #333333;
  box-sizing: border-box;
  height: 100vh;
  overflow-y: scroll;
  padding: 110px 10.66vw 20px;
  position: fixed;
  /* ←入れないとだめ */
  top: 0;
  width: 100%;
  z-index: 998;
  /* ↓を入れて右にしまっておくイメージ、transitionでゆっくりでてくる */
  right: -100%;
  transition: right .5s;
}

.gnav__link {
  border-bottom: 1px solid transparent;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  transition: border-color 0.3s;
}

.gnav.sp_open {
  right: 0;
  /* これを入れるとopenの間は-100だったのが0になって表示される */
  display: block;
  position: absolute;
}

/* navが開いてる間のバツボタン */

.gnav-btn.open .gnav-btn__bar.m-top {
  background: #ffffff;
  transform: translate(-50%, 0) rotate(45deg);
}

.gnav-btn.open .gnav-btn__bar.m-middle {
  display: none;
}

.gnav-btn.open .gnav-btn__bar.m-bottom {
  background: #ffffff;
  transform: translate(-50%, 0) rotate(-45deg);
}

/* gnavのスタイル */

.gnav__list {
  margin-top: -40px;
}

.gnav__item {
  line-height: 1.2;
}

.gnav__item:not(:last-child) {
  margin-bottom: 24px;
}

.gnav__link.u-pc-none {
  margin-top: 40px;
}

.gnav__logo {
  left: 20px;
  position: absolute;
  top: 20px;
  width: 56px;
}

.gnav__sns {
  display: flex;
  margin-top: 98px;
}

.gnav__sns-item:not(:last-child) {
  margin-right: 24px;
}

.gnav__sns-item a {
  display: block;
}

.gnav__sns-item a:hover img {
  transform: scale(1.2);
}

.gnav__sns-item a img {
  display: inline-block;
  transition: transform 0.3s;
}

.gnav__sns-item a img.m-fb {
  width: 10px;
}

.gnav__sns-item a img.m-tw {
  width: 20px;
}

.gnav__sns-item a img.m-ins {
  width: 20px;
}


/*=======================
  inner
=======================*/

.inner {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 600px;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

/*=======================
  main
=======================*/

.main {
  display: block;
}

/* -----------------------------------------------------------------
  Component
----------------------------------------------------------------- */

/*=======================
  btn
=======================*/

.btn {
  background-color: transparent;
  border: 2px solid #000;
  border-radius: 30px;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  height: 55px;
  letter-spacing: 0.1em;
  line-height: 51px;
  position: relative;
  text-align: center;
  transition: color 0.3s linear, background-color 0.3s linear;
  width: 250px;
}

.btn::after {
  background: transparent no-repeat center center/contain;
  background-image: url(../img/common/arrow.svg);
  content: "";
  display: block;
  height: 14px;
  position: absolute;
  right: 16px;
  top: calc(50% - 6px);
  transition: background-image 0.3s linear;
  width: 8px;
}

.btn:hover {
  background-color: #000;
  color: #fff;
}

.btn:hover::after {
  background-image: url(../img/common/arrow_w.svg);
}

.btn.m-white {
  border-color: #fff;
  color: #fff;
}

.btn.m-white::after {
  background-image: url(../img/common/arrow_w.svg);
}

.btn.m-white:hover {
  background-color: #fff;
  color: #000;
}

.btn.m-white:hover::after {
  background-image: url(../img/common/arrow.svg);
}

.btn.m-center {
  display: block;
  margin: 0 auto;
}

.btn.m-en {
  font-family: "Roboto", sans-serif;
}

/*=======================
  section-heading
=======================*/

.section-heading {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 48px;
  position: relative;
  text-align: center;
}

.section-heading::before {
  background: #333333;
  bottom: -24px;
  content: "";
  display: block;
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 100px;
}

.section-heading.m-white {
  color: #fff;
}

.section-heading.m-white::before {
  background: #fff;
}

.section-heading.m-left {
  text-align: left;
}

.section-heading.m-left::before {
  left: 0;
  transform: none;
}

/*=======================
  section-heading
=======================*/

.page-heading {
  overflow: hidden;
  padding-bottom: 110px;
  position: relative;
}

.page-heading__picture {
  margin-left: auto;
  position: relative;
  width: 89.3333333333%;
}

.page-heading__picture::before {
  background: #333333;
  content: "";
  display: block;
  height: calc(100% + 10px);
  left: -11.9402985075%;
  position: absolute;
  top: 100px;
  width: 100%;
  z-index: -1;
}

.page-heading__picture img {
  width: 100%;
}

.page-heading__title {
  color: #fff;
  display: block;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.page-heading__title>.en {
  -webkit-text-stroke: 1px #FFF;
  color: transparent;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 50px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 4px;
}

.page-heading__title>.ja {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.page-heading__breadcrumb {
  bottom: 24px;
  left: 50%;
  max-width: 1250px;
  position: absolute;
  position: absolute;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}

/* -----------------------------------------------------------------
 Utility
---------------------------------------------------------------- */

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

.u-sp-none {
  display: none;
}

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

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



/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */

/*=======================
  breadcrumb
=======================*/

.breadcrumb {
  display: block;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}

.breadcrumb__item {
  position: relative;
}

.breadcrumb__item:not(:last-child) {
  margin-right: 24px;
}

.breadcrumb__item:not(:last-child)::after {
  color: #000;
  content: "/";
  font-size: 12px;
  font-weight: 700;
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb__item>a {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 2.6666666667;
  transition: opacity 0.3s;
}

.breadcrumb__item>a:hover {
  opacity: 0.7;
}

.breadcrumb__item>a.is-current {
  color: #fff;
  pointer-events: none;
}

.breadcrumb.m-post .breadcrumb__list {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 1252px;
  padding: 0 20px;
}

.breadcrumb.m-post .breadcrumb__item>a.is-current {
  color: #DEDEDE;
}

.breadcrumb.m-contact {
  margin: 20px 5.33vw 0;
}

.breadcrumb.m-contact .breadcrumb__list {
  margin: 0 auto;
  max-width: 1250px;
}

.breadcrumb.m-contact .breadcrumb__item>a.is-current {
  color: #DEDEDE;
}

/*=======================
  request section
=======================*/

.request {
  background: transparent url(../img/common/request_bg_sp.jpg) no-repeat center center/cover;
  padding: 80px 0 140px;
}

.request__description {
  color: #fff;
  font-weight: bold;
  margin-bottom: 40px;
  text-align: justify;
}


/*=======================
  fadeIn section
=======================*/




/************************
　スクロールアニメーション用
*************************/
.animation {
  opacity: 0;
  transition: opacity 800ms;
}

.animation.fadeIn {
  opacity: 1;
}


.animation {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1600ms, transform 1600ms;
}

.animation.fadeIn {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------
  animation
---------------------- */

@-webkit-keyframes animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes animation {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes animation {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes animation {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}


/*=======================
  responsive
=======================*/

@media screen and (min-width: 768px) {
  .footer__nav {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 400px;
  }

  .header {
    height: 70px;
  }

  .header__logo {
    width: 100px;
  }

  .gnav__logo {
    width: 100px;
  }

  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }

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

  .main {
    padding-top: 38px;
  }
}



@media screen and (min-width: 1024px) {
  body {
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 2;
  }

  .footer__inner {
    max-width: 1170px !important;
  }

  .footer__box {
    align-items: flex-start;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__logo {
    margin: 0;
    width: 176px;
  }

  .footer__nav {
    flex-wrap: wrap;
    margin: 0 0 0 32.4786324786%;
  }

  .footer__item {
    margin-bottom: 18px !important;
    width: 50%;
  }

  .footer__item a {
    text-align: left;
  }

  .footer__cv {
    margin-top: 0;
  }

  .footer__copyright {
    margin-top: 40px;
    padding-top: 40px;
  }

  .header {
    height: 90px;
  }

  .header__logo {
    width: 135px;
  }

  .gnav-btn {
    display: none;
  }

  .gnav {
    background: transparent;
    display: block;
    height: auto;
    padding: 0;
    position: static;
    transform: none;
    width: auto;
  }

  .gnav__list {
    align-items: center;
    display: flex;
    margin-top: 0;
  }

  .gnav__item:not(:last-child) {
    margin-bottom: 0;
    margin-right: 40px;
  }

  .gnav__item:nth-child(5) {
    margin-right: 0;
  }

  .gnav__link {
    color: #000;
  }

  .gnav__link:hover {
    border-bottom: 1px solid #000;
  }

  .gnav__sns {
    display: none;
  }

  .inner {
    max-width: 900px;
  }

  .inner.m-wide {
    max-width: 1250px;
  }

  .section-heading {
    font-size: 28px;
    line-height: 1.4285714286;
  }

  .page-heading__picture {
    width: 81.25%;
  }

  .page-heading__picture::before {
    left: -23.08%;
    top: 100px;
  }

  .page-heading__title>.en {
    -webkit-text-stroke: 2px #FFF;
    font-size: 100px;
    margin-bottom: 10px;
  }

  .page-heading__title>.ja {
    font-size: 16px;
  }

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

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

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

  .breadcrumb.m-post .breadcrumb__list {
    padding: 0 40px;
  }

  .request {
    padding: 80px 0 120px;
  }

  .request>.inner {
    max-width: 1252px;
  }

  .request {
    background: transparent url(../img/common/request_bg.jpg) no-repeat center center/cover;
  }

  .main {
    padding-top: 58px;
  }
}

@media screen and (max-width: 1023px) {
  .gnav__link.m-btn {
    border-color: #fff;
    color: #fff;
    margin-bottom: 24px;
  }

  .gnav__link.m-btn::after {
    background-image: url(../img/common/arrow_w.svg);
  }

  .gnav__link.m-btn:hover {
    background: #fff;
    color: #000;
  }

  .gnav__link.m-btn:hover::after {
    background-image: url(../img/common/arrow.svg);
  }
}

/*=======================
  自分で足したもの
=======================*/

.wrapper {
  padding: 120px 0;
}

.section__title {
  margin-bottom: 104px;
}

/*=======================
  404
=======================*/

.c-404 {
  padding: 100px 0;
}

.c-404__title {
  font-size: 2em;
  margin-bottom: 1em;
  text-align: center;
}

.c-404__description {
  letter-spacing: 0;
  line-height: 2;
  text-align: center;
}

.c-404__link {
  color: #004EA2;
  display: block;
  margin-top: 1em;
  text-align: center;
  text-decoration: underline;
}