@charset "UTF-8";
/*------------------------------------------
variables
-------------------------------------------*/
/*----- color -----*/
/*----- font -----*/
/*------------------------------------------
break points
-------------------------------------------*/
/*----- map型 -----*/
/*------------------------------------------
media query
-------------------------------------------*/
/*--------------------------------------------------
responsive
--------------------------------------------------*/
.is-pc {
  display: block;
}
@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: block;
}
@media (min-width: 1281px) {
  .is-tab {
    display: none;
  }
}
@media (max-width: 767px) {
  .is-tab {
    display: none;
  }
}

.is-sp {
  display: block;
}
@media (min-width: 1281px) {
  .is-sp {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .is-sp {
    display: none;
  }
}

/*--------------- set style ---------------*/
@media (min-width: 1281px) {
  .is-tab-and-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-pc-and-tab {
    display: none;
  }
}

/*--------------------------------------------------
common
--------------------------------------------------*/
body {
  font-size: 16px;
  font-size: 1rem;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  letter-spacing: 0.1rem;
}

a {
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

img {
  max-width: 100%;
  height: auto;
}

.page-inner-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 767px) {
  .page-inner-wrap {
    display: block;
  }
}

/*--------------- global-nav ---------------*/
.global-nav {
  width: 185px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f2f2f2;
}

.global-nav__contents {
  width: 100%;
}

.global-nav__items {
  margin-bottom: 55px;
}

.global-nav__link {
  font-size: 14px;
  font-size: 0.875rem;
  padding: 15px 38px;
  display: block;
  font-family: "Jost", sans-serif;
}
.global-nav__link:hover {
  background: #fff;
}

.global-nav__link.active {
  background-color: #fff;
}

.global-nav__logo {
  width: 100%;
  position: absolute;
  bottom: 30px;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.global-nav__logo-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.25rem;
}

.global-nav__copyright {
  font-size: 10px;
  font-size: 0.625rem;
  display: block;
  margin-top: 10px;
}

/*--------------------------------------------------
top
--------------------------------------------------*/
.top-page {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  position: relative;
  background: #f2f2f2;
}

.top-contents {
  text-align: center;
}

.top-contents__logo-item {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.6rem;
  font-family: "Zen Old Mincho", serif;
  margin-left: 10px;
  font-optical-sizing: auto;
}
@media (max-width: 767px) {
  .top-contents__logo-item {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

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

.top-contents__nav-item {
  margin-top: 28px;
}

.top-contents__nav-item__link {
  font-size: 15px;
  font-size: 0.9375rem;
  /*アンダーラインの位置を決めるための基準 */
  position: relative;
  font-family: "Jost", sans-serif;
}

.top-contents__nav-item__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #888;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.top-contents__nav-item__link:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.copyright {
  position: absolute;
  bottom: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 12px;
  font-size: 0.75rem;
}

/*--------------------------------------------------
works
--------------------------------------------------*/
/*--------------- works-nav ---------------*/
.works-nav {
  width: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  position: relative;
  position: fixed;
  top: 0;
  left: 185px;
  background-color: #fff;
}

.works-nav__contents {
  width: 100%;
}

.works-nav__items {
  text-align: center;
}

.works-nav__item + .works-nav__item {
  margin-top: 38px;
}

.works-nav__item {
  font-size: 15px;
  font-size: 0.9375rem;
}

.works-nav__item:hover {
  /*矢印と下線の基点とするためrelativeを指定*/
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*矢印と下線の形状*/
.works-nav__item::before {
  content: "";
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 2%;
  /*下線の形状*/
  width: 97%;
  height: 1px;
  background: #333;
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.works-nav__item::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -6px;
  right: 0;
  /*矢印の形状*/
  width: 10px;
  height: 1px;
  background: #333;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
  /*アニメーションの指定*/
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.works-nav__item.active {
  /* 矢印と下線の基点とするためrelativeを指定 */
  position: relative;
  /* 形状 */
  display: inline-block;
  padding: 0 20px;
  color: #333;
  text-decoration: none;
  outline: none;
}

.works-nav__item.active::after {
  content: "";
  /* 絶対配置で下線の位置を決める */
  position: absolute;
  bottom: -8px;
  /* 下線の形状 */
  width: 97%;
  height: 1px;
  background: #333;
  /* アニメーションの指定 */
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.works-nav__item.active::after {
  content: "";
  /* 絶対配置で矢印の位置を決める */
  position: absolute;
  bottom: -6px;
  right: 0;
  /* 矢印の形状 */
  width: 10px;
  height: 1px;
  background: #333;
  -webkit-transform: rotate(22deg);
          transform: rotate(22deg);
  /* アニメーションの指定 */
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*--------------- works contents photo ---------------*/
.photo-link {
  display: block;
}

.photo-contents {
  background: #fff;
  width: calc(100% - 365px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 365px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.photo-contents__inner {
  position: relative;
  width: 100%;
  padding-right: 70px;
}

.photo-contents__txt {
  position: absolute;
  right: 70px;
  bottom: 0;
  background: #f2f2f2;
  width: 300px;
  padding: 15px 20px;
  padding-bottom: 0;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.2rem;
}

.photo-contents__txt-heading {
  font-weight: bold;
  margin-bottom: 5px;
}

.page-heading {
  position: fixed;
  padding-left: 20px;
  margin-top: -20px;
  padding-top: 10px;
  z-index: 80;
  font-family: "Jost", sans-serif;
}
@media (max-width: 767px) {
  .page-heading {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.page-heading__txt:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 1px;
  height: 3.5em;
  margin-left: 25px;
  margin-bottom: 10px;
  vertical-align: middle;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.project-items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  width: calc(100% - 40px);
  gap: 50px 40px;
  padding-top: 40px;
  padding-bottom: 50px;
}

.project-item {
  width: 45%;
}
@media (max-width: 767px) {
  .project-item {
    width: 100%;
  }
}

.project-item__labeling {
  margin-top: 10px;
  padding-left: 20px;
  border-left: 1px solid #666;
}
@media (max-width: 767px) {
  .project-item__labeling {
    padding-left: 15px;
    margin-left: 10px;
  }
}

.project-item__name {
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 15px;
}

.project-item__view-btn {
  font-size: 12px;
  font-size: 0.75rem;
  border: 1px solid #000;
  padding: 5px 20px;
}

/*--------------------------------------------------
works-details
--------------------------------------------------*/
.details-contents__txt {
  width: 320px;
  padding: 80px 25px;
  position: fixed;
  top: 0;
  left: 184px;
  height: 100vh;
  font-size: 12px;
  line-height: 1.5rem;
  letter-spacing: 0.05rem;
  background: #fff;
  overflow-y: hidden;
  /* 縦方向のオーバーフロー時にスクロール可能にする */
}
@media (min-width: 768px) and (max-width: 1280px) {
  .details-contents__txt {
    width: 350px;
    left: 0;
    padding-left: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .details-contents__txt {
    position: static;
    height: auto;
    line-height: 1.1rem;
    padding: 30px 20px;
  }
}

/* スクロールバーを非表示にする */
.details-contents__txt::-webkit-scrollbar {
  display: none;
}

/* オプション: スクロールバーがマウスホバー時に表示されるようにする場合 */
.details-contents__txt:hover::-webkit-scrollbar {
  display: none;
}

.details-contents__txt-heading {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  margin-bottom: 25px;
  letter-spacing: 0.1rem;
  padding-bottom: 25px;
  border-bottom: 1px solid #e6e6e6;
}

.details-contents__photo-items {
  padding-right: 50px;
  padding-top: 80px;
  position: absolute;
  left: 504px;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .details-contents__photo-items {
    left: 350px;
    padding-top: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .details-contents__photo-items {
    position: static;
    padding-top: 40px;
    padding-right: 40px;
  }
}

.details-contents__photo + .details-contents__photo {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .details-contents__photo + .details-contents__photo {
    margin-top: 10px;
  }
}

.details-contents__photo {
  width: 100%;
}

.project-info {
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 767px) {
  .project-info {
    margin-bottom: 0;
  }
}

.project-info__category,
.project-info__txt {
  padding: 5px 0;
}

.project-info__txt {
  padding-left: 15px;
}

.back-btn {
  margin-top: 50px;
  padding-left: 16px;
}

.back-btn__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-family: "Jost", sans-serif;
  width: 80px;
}
.back-btn__link::before {
  position: absolute;
  content: "";
  background: url(../img/arrow.png) no-repeat center center/contain;
  width: 15px;
  height: 10px;
  left: -18px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (hover) {
  .back-btn__link:hover::before {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px);
    /* X軸方向に10px動かす */
  }
}
.project_name-small {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: normal;
}

/*--------------- scroll & page top ---------------*/
.guide-items {
  position: fixed;
  top: 0;
  right: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.2rem;
  font-size: 15px;
  font-size: 0.9375rem;
}

.guide-items__scroll {
  position: fixed;
  top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.guide-items__scroll .guide-items__arrow-img {
  width: 50px;
  margin-top: 10px;
}

.guide-items__pagetop {
  position: fixed;
  bottom: 20px;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.guide-items__pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
.guide-items__pagetop .guide-items__arrow-img {
  width: 50px;
  margin-bottom: 10px;
}

.guide-items__scroll-txt {
  display: none;
}

.guide-items__pagetop-txt {
  display: none;
}

.guide-items__scroll,
.guide-items__pagetop {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-family: "Jost", sans-serif;
}

/*--------------- sp ---------------*/
.page-heading-cover {
  position: fixed;
  padding-left: 30px;
  z-index: 80;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: -10px;
}
@media (max-width: 767px) {
  .page-heading-cover {
    padding-left: 20px;
  }
}

.page-heading__txt-sp {
  padding-top: 5px;
  line-height: 40px;
  font-family: "Jost", sans-serif;
}

.page-heading__project-name {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  margin-left: 25px;
}
@media (max-width: 767px) {
  .page-heading__project-name {
    padding-top: 22px;
  }
}

.page-heading__txt-sp:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 1px;
  height: 3.6em;
  margin-left: 25px;
  margin-top: -5px;
  vertical-align: middle;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
}

.page-heading-bg {
  width: 100%;
  height: 40px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
}

/*--------------------------------------------------
about
--------------------------------------------------*/
.office-outline {
  width: 370px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 185px;
  background-color: #fff;
  letter-spacing: 0.05rem;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .office-outline {
    width: 360px;
    position: static;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .office-outline {
    width: 100%;
    position: static;
    height: auto;
    padding: 70px 60px 0 20px;
  }
}

.office-outline__office-heading {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 20px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
}

.office-outline__txt {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.4rem;
  margin-top: 20px;
  letter-spacing: 0.03rem;
}

.office-outline__txt-category {
  margin-bottom: 5px;
}

.office-outline__txt-item {
  border-left: 1px solid #ccc;
  padding-left: 10px;
  margin-bottom: 20px;
}

.office-outline__business {
  margin-top: 55px;
}

.office-outline__business-heading {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.14rem;
}

.about-contents {
  width: calc(100% - 565px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 565px;
  padding: 0 3%;
  border-left: 1px solid #e6e6e6;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .about-contents {
    width: calc(100% - 360px);
    position: static;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .about-contents {
    position: static;
    width: 100%;
    height: auto;
    padding: 0 60px 70px 20px;
    border-left: none;
  }
}

.about-contents__inner {
  width: 100%;
}

.about-contents__profile {
  border-bottom: 1px solid #ccc;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.7rem;
  width: 100%;
}
@media (max-width: 767px) {
  .about-contents__profile {
    padding: 50px 0;
  }
}

.about-contents__profile-items,
.about-contents__profile-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .about-contents__profile-items {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-contents__profile-items {
    display: block;
  }
}

.about-contents__profile-item {
  width: 465px;
  max-width: 100%;
  min-width: 200px;
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .about-contents__profile-item {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .about-contents__profile-item {
    display: block;
    text-align: center;
    margin: 0 auto;
  }
}

.about-contents__career {
  width: 280px;
  max-width: 100%;
  min-width: 225px;
  margin-bottom: 40px;
}
.about-contents__career th {
  padding-right: 12px;
}
@media (max-width: 767px) {
  .about-contents__career {
    margin: 50px auto 0;
    width: 250px;
    min-width: auto;
  }
}

.profile-item__img {
  width: 200px;
  max-width: 100%;
  min-width: 150px;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .profile-item__img {
    width: 250px;
    margin: 0 auto;
  }
}

.profile-item__txt {
  line-height: 1.2rem;
  padding-right: 25px;
  min-width: 220px;
}
@media (max-width: 767px) {
  .profile-item__txt {
    padding-right: 0;
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    min-width: auto;
  }
}

.profile-item__txt-wrap {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1.5rem;
  margin-top: 20px;
}

.profile-item__txt-name {
  font-size: 18px;
  font-size: 1.125rem;
}

.profile-item__txt-furi {
  font-size: 12px;
  font-size: 0.75rem;
}

.about-contents__profile-txt {
  line-height: 1.4rem;
  margin: 30px 0;
}

.about-contents__publication {
  margin-top: 30px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .about-contents__publication {
    margin: 0 auto;
    width: 350px;
    max-width: 100%;
    margin-top: 30px;
  }
}

.about-contents__award {
  margin-top: 30px;
  font-size: 12px;
  font-size: 0.75rem;
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .about-contents__award {
    max-width: 100%;
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .about-contents__inner {
    margin: 0 auto;
    width: 350px;
    max-width: 100%;
  }
}

.about-contents__publication-heading {
  font-size: 18px;
  font-size: 1.125rem;
  margin-bottom: 30px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05rem;
}

.about-contents__publication-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 1.8em;
}

.about-contents__award-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  line-height: 1.8em;
  margin-bottom: 30px;
}

.about-contents__publication-item + .about-contents__publication-item {
  margin-top: 22px;
}

.publication-link {
  display: inline-block;
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.05rem;
}
.publication-link::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(../img/link-icon.png) no-repeat center/contain;
  display: inline-block;
  opacity: 0.5;
  vertical-align: middle;
  margin-left: 3px;
  padding-bottom: 2px;
  margin-bottom: 3px;
}

.award-link {
  display: inline-block;
  border-bottom: 1px solid #ccc;
  letter-spacing: 0.05rem;
}

.l-publication-link {
  margin-right: 15px;
}

.publication-item__heading,
.award-item__heading {
  margin-right: 15px;
}

.sns-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  margin-top: 8px;
  margin-left: 3px;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .sns-icons {
    -webkit-column-gap: 14px;
       -moz-column-gap: 14px;
            column-gap: 14px;
  }
}
@media (max-width: 767px) {
  .sns-icons {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}

.sns-icons__icon {
  margin-top: 5px;
  margin-left: -4px;
}
@media (max-width: 767px) {
  .sns-icons__icon {
    margin-left: 0;
    margin-top: 18px;
  }
}
.sns-icons__icon img {
  opacity: 0.9;
  width: 22px;
}
@media (max-width: 767px) {
  .sns-icons__icon a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.sns-icons__icon a span {
  margin-left: 7px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}

.fb-icon {
  opacity: 0.6 !important;
  width: 18px !important;
}

/*--------------------------------------------------
work-frow
--------------------------------------------------*/
.workfrow-title-line {
  width: 270px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 185px;
  padding: 80px 30px;
}

.workfrow-items {
  position: static;
  padding: 0 80px 70px 0;
  width: 100%;
}
@media (min-width: 1281px) {
  .workfrow-items {
    width: calc(100% - 455px);
    position: absolute;
    top: 0;
    left: 455px;
    padding: 80px 50px;
    border-left: 1px solid #e6e6e6;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.5rem;
  }
}
@media (max-width: 767px) {
  .workfrow-items {
    padding: 0 60px 70px 0;
  }
}

.workfrow-title-line__title {
  text-align: center;
  background: #fff;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .workfrow-title-line__title {
    -moz-text-align-last: left;
         text-align-last: left;
    background: #f2f2f2;
  }
}
@media (max-width: 767px) {
  .workfrow-title-line__title {
    -moz-text-align-last: left;
         text-align-last: left;
    background: #f2f2f2;
  }
}

.workfrow-title-line__title-txt {
  padding: 5px 30px;
}
@media (min-width: 1281px) {
  .workfrow-title-line__title-txt {
    font-size: 15px;
    font-size: 0.9375rem;
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 10px 6px;
    color: #333;
    text-decoration: none;
    outline: none;
  }
}

/*矢印と下線の形状*/
@media (min-width: 1281px) {
  .workfrow-title-line__title-txt::before {
    content: "";
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: -8px;
    left: 2%;
    /*下線の形状*/
    width: 97%;
    height: 1px;
    background: #333;
    /*アニメーションの指定*/
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}

@media (min-width: 1281px) {
  .workfrow-title-line__title-txt::after {
    content: "";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: -6px;
    right: 0;
    /*矢印の形状*/
    width: 10px;
    height: 1px;
    background: #333;
    -webkit-transform: rotate(22deg);
            transform: rotate(22deg);
    /*アニメーションの指定*/
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
  }
}

.workfrow-title-heading {
  background: #f2f2f2;
  padding: 5px 50px;
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .workfrow-title-heading {
    padding-left: 20px;
    margin-bottom: 30px;
  }
}

.workfrow-title-heading__txt {
  font-size: 15px;
  font-size: 0.9375rem;
}

.workfrow-item__heading {
  font-size: 15px;
  font-size: 0.9375rem;
  margin-bottom: 16px;
}
.workfrow-item__heading span {
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
}

.workfrow-item {
  padding-bottom: 40px;
  border-bottom: 1px solid #e6e6e6;
  line-height: 1.8;
}
.workfrow-item p {
  font-size: 12px;
  font-size: 0.75rem;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .workfrow-item {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .workfrow-item {
    margin-left: 20px;
  }
}

.workfrow-item + .workfrow-item {
  margin-top: 40px;
}

/*--------------- contact-btn ---------------*/
.contact-btn__cover {
  margin-top: 30px;
}

.contact-btn {
  border: 1px solid #ccc;
  padding: 10px 30px;
  border-radius: 25px;
  font-size: 12px;
  font-size: 0.75rem;
}
.contact-btn:hover {
  background: #f2f2f2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

/*--------------- design fee ---------------*/
.design-fee {
  padding: 20px 30px 10px;
  background: #f2f2f2;
  margin-top: 50px;
  border-radius: 3;
  line-height: 1.8;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .design-fee {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .design-fee {
    padding: 20px 20px 10px;
    margin-left: 20px;
  }
}

.design-fee__heading {
  font-size: 15px;
  font-size: 0.9375rem;
}

.design-fee__item {
  padding: 15px 0;
}
.design-fee__item p {
  font-size: 12px;
  font-size: 0.75rem;
}

.design-fee__item + .design-fee__item {
  border-top: 1px dashed #ccc;
}

/*------------------------------------------
global-nav-sp
-------------------------------------------*/
.global-nav-sp {
  position: fixed;
  right: 0;
  top: 0;
  width: 40px;
  height: 100vh;
  background: #f2f2f2;
  z-index: 100;
}

.hamburger-menu__txt {
  line-height: 40px;
  margin-top: 40px;
  font-size: 16px;
  font-size: 1rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1rem;
  font-family: "Jost", sans-serif;
}

.global-nav-sp__logo-cover,
.works-top-btn__cover {
  position: relative;
  text-align: center;
  font-size: 2.5rem;
}

.global-nav-sp__logo-cover:before,
.global-nav-sp__logo-cover:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 1px;
  height: 1.3em;
  margin: 0;
  vertical-align: middle;
  -webkit-transform: rotate(-52deg);
          transform: rotate(-52deg);
}

.global-nav-sp__logo {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 40px;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.works-top-btn__cover:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #000;
  width: 1px;
  height: 1.3em;
  margin-top: -20px;
  vertical-align: middle;
  -webkit-transform: rotate(-52deg);
          transform: rotate(-52deg);
}

.works-top-btn {
  font-size: 16px;
  font-size: 1rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 40px;
  font-family: "Jost", sans-serif;
}

.sample5-3::before {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  display: block;
}

.arrow {
  position: relative;
  display: inline-block;
  padding-top: 25px;
  padding-right: 20px;
  vertical-align: middle;
}

.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.sample5-3::after {
  left: 5px;
  width: 4px;
  height: 4px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.global-nav-sp__copyright {
  font-size: 12px;
  font-size: 0.75rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  line-height: 40px;
}

/*--------------- drawer menu ---------------*/
.hamburger-menu {
  width: 40px;
}
@media (min-width: 1281px) {
  .hamburger-menu {
    display: none;
  }
}

.button-drawer {
  cursor: pointer;
  width: 40px;
  height: 100px;
  background-color: rgba(0, 0, 0, 0);
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: top center;
  background-image: url(../img/hamburger-open.png);
}

.is-checked {
  background-image: url(../img/hamburger-close.png);
}

.drawer {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 90;
  display: none;
  padding-right: 40px;
}

.drawer__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
}

.drawer__menu-cover {
  margin: 0 auto;
  width: 300px;
  text-align: center;
}

.drawer__menu {
  color: #fff;
  padding: 25px 0;
  display: block;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Jost", sans-serif;
}

body.is-fixed {
  overflow: hidden;
}

/*--------------------------------------------------
contact form
--------------------------------------------------*/
.contact-title-line {
  width: 200px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 185px;
  padding: 80px 30px;
  border-right: 1px solid #ccc;
}

.contact__wrapper {
  position: static;
  padding-left: 20px;
  width: 100%;
}
@media (min-width: 1281px) {
  .contact__wrapper {
    position: absolute;
    width: calc(100% - 384px);
    top: 0;
    left: 384px;
    padding: 80px 50px;
  }
}

.contact__form {
  width: 550px;
  max-width: 100%;
  color: #000;
  line-height: 120%;
  font-size: 90%;
}

.formTable {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
.formTable th {
  width: auto;
  display: block;
  margin-top: 5px;
  border-bottom: 0;
  margin-bottom: 8px;
  line-height: 1.4rem;
  font-size: 12px;
  font-size: 0.75rem;
}
.formTable td {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-size: 0.75rem;
}

@media (min-width: 768px) and (max-width: 1280px) {
  .formTable__th {
    background: #f2f2f2;
    padding: 2px 10px;
    border-radius: 2px;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  .formTable__th {
    background: #f2f2f2;
    padding: 2px 10px;
    border-radius: 2px;
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .formTable__td {
    padding: 10px 10px 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .formTable__td {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
  }
}

.formTable__attention {
  display: inline-block;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .formTable__attention {
    display: block;
    margin-left: 0;
  }
}

.formTable__input,
.formTable__texterea {
  border: 1px solid #ccc;
  width: 100%;
}

.formTable__texterea {
  padding: 15px;
}

.formTable__input {
  height: 35px;
  padding: 0 15px;
}

.formTable__required {
  background: #4d4d4d;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  font-size: 0.625rem;
  padding: 2px 4px;
  margin-right: 8px;
}

::-webkit-input-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
}

::-moz-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
}

:-ms-input-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
}

::-ms-input-placeholder {
  font-size: 12px;
  font-size: 0.75rem;
}

::placeholder {
  font-size: 12px;
  font-size: 0.75rem;
}

.btn-items {
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .btn-items {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .btn-items {
    margin-top: 30px;
  }
}

.btn-item {
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 5px 30px;
  font-size: 12px;
  font-size: 0.75rem;
}
.btn-item:hover {
  background: #f2f2f2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
@media (max-width: 767px) {
  .btn-item {
    width: 80%;
    padding: 8px 0;
  }
}

.btn-item + .btn-item {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .btn-item + .btn-item {
    margin-left: 0;
    margin-top: 20px;
  }
}

.form-attention {
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  margin-bottom: 30px;
}

.error_messe {
  font-size: 12px;
  font-size: 0.75rem;
}

/*--------------------------------------------------
other
--------------------------------------------------*/
/*--------------- 準備中のページスタイル ---------------*/
.temporary-display {
  width: calc(100% - 40px);
  position: static;
  height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
}
@media (min-width: 1281px) {
  .temporary-display {
    width: calc(100% - 185px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 185px;
    border-right: 1px solid #ccc;
    background-color: #fff;
  }
}

.temporary-display__contents {
  width: 100%;
  text-align: center;
  line-height: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.attention {
  line-height: 1.8;
}

.instagram {
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
}

.info {
  margin-top: 30px;
}
.info p {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 3;
}

.coming-soon {
  margin-bottom: 30px;
  color: #888;
}

/*--------------- works-top (tablet and sp) ---------------*/
.photo-box {
  width: 45%;
}
@media (max-width: 767px) {
  .photo-box {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */