@charset "UTF-8";
/*-----------------------------------------------------------------
はじめに

CSSを変更する際は必ずSCSSも一緒に変更お願いします。
----------------------------------------------------------------- */
/*-----------------------------------------------------------------
Bootstrap リセット 設定
----------------------------------------------------------------- */
.container {
  max-width: 1155px;
}

@media (max-width: 1024px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}
.modal-dialog {
  max-width: 90%;
}

@media (max-width: 1024px) {
  .modal-dialog {
    width: 90%;
    margin: 20% auto;
  }
}
.btn {
  font-size: 1.6em;
}

@media (max-width: 1024px) {
  .btn {
    font-size: 1.3em;
  }
}
.position_r {
  position: relative;
}

/*-----------------------------------------------------------------
アニメーション 設定
----------------------------------------------------------------- */
.effect-fade {
  opacity: 0;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.effect-fade.effect-scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.effect-fade.slidein_up {
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translate(0, 45px);
          transform: translate(0, 45px);
}

.effect-fade.slidein_left {
  -webkit-animation: slideIn 1s;
          animation: slideIn 1s;
  -webkit-transform: translateX(180px);
          transform: translateX(180px);
}

@-webkit-keyframes slidein_plus {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slidein_plus {
  0% {
    -webkit-transform: translateX(180px);
            transform: translateX(180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.effect-fade.fadein {
  -webkit-animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
          animation: fadeIn 2s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.effect-fade.slidein {
  -webkit-animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-transform: translateX(-180px);
            transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-transform: translateX(-180px);
            transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.effect-fade.slidein__delay_01 {
  -webkit-animation: slideIn__delay_01 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: slideIn__delay_01 1.2s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes slideIn__delay_01 {
  0% {
    -webkit-transform: translateX(-180px);
            transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes slideIn__delay_01 {
  0% {
    -webkit-transform: translateX(-180px);
            transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.effect-fade.zoomin {
  -webkit-animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
          animation: zoomIn 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}

@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/*-----------------------------------------------------------------
共通 設定
----------------------------------------------------------------- */
/* 共通　追加CSS */
html {
  background-color: #FFFFFF;
  font-size: 10px;
}

body {
  margin: 0 auto;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif, "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  -webkit-box-sizing: border-box;
  font-size: 1.6rem;
  color: #322a27;
  font-weight: 500;
  letter-spacing: 0.025em;
  min-width: 1280px;
}

@media (max-width: 1024px) {
  body {
    width: 100%;
    /* ブラウザの幅固定解除 */
    min-width: 100%;
    /* ブラウザの幅固定解除 */
    font-size: 1.4rem;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

p {
  margin-bottom: 0;
  padding-bottom: 0;
  line-height: 2.25;
}

@media (max-width: 767px) {
  p {
    line-height: 1.9;
  }
}
a {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

.sponly {
  display: none;
}

.sponly_inline {
  display: none;
}

@media (max-width: 1024px) {
  .sponly {
    display: block;
  }
  .sponly_inline {
    display: inline-block;
  }
  .pconly {
    display: none;
  }
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

strong {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(24, 177, 67, 0.5)));
  background: linear-gradient(transparent 50%, rgba(24, 177, 67, 0.5) 50%);
}

.en {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.085em;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/*-----------------------------------------------------------------
共通見出し 設定
----------------------------------------------------------------- */
h2 {
  margin-bottom: 32px;
  position: relative;
  line-height: 1;
}
h2::before {
  position: absolute;
  content: "";
  left: -50px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #322a27;
}
h2 .heading {
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 16px;
}

@media (max-width: 1024px) {
  h2 {
    margin-bottom: 42px;
    line-height: 1.3;
  }
  h2 .heading {
    font-size: 2.2rem;
    padding-bottom: 8px;
  }
  h2::before {
    left: -18px;
  }
}
/*-----------------------------------------------------------------
ボタン見出し 設定
----------------------------------------------------------------- */
.btn__normal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-item: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: auto;
  max-width: 320px;
  width: 100%;
  padding: 15px 0 16px;
  color: #FFFFFF;
  background-color: #322a27;
  border: 1px #322a27 solid;
  font-weight: bold;
  position: relative;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
.btn__normal span {
  position: relative;
  z-index: 3;
  color: #322a27;
  width: 100%;
  height: 100%;
}
.btn__normal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #D3CDC3;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.btn__normal:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.btn__normal::after {
  position: absolute;
  content: "";
  display: block;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 20px;
  background: url("img/icon-arrow-right-w.svg") center/cover no-repeat;
  width: 22px;
  height: 22px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
  z-index: 3;
}
.btn__normal:hover {
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.btn__normal:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 12px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}

.btn__ghost {
  color: #322a27;
  background-color: #ECE9E3;
  border: 2px #322a27 solid;
  border-radius: 2px;
}
.btn__ghost::after {
  background: url("img/icon-arrow-right-br.svg") center/cover no-repeat;
}

/*-----------------------------------------------------------------
TOP 共通設定
----------------------------------------------------------------- */
.bg_text__img {
  position: absolute;
  bottom: -4px;
  z-index: 1;
  right: 0;
}

.bg_text__img_left {
  left: 0;
}

.bg_text__img_center {
  bottom: 0;
  top: 60px;
  right: 0;
  left: 0;
  margin: auto;
}

/*-----------------------------------------------------------------
ハンバーガーメニュー 設定
----------------------------------------------------------------- */
.header .overlay {
  content: "";
  display: block;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.header .overlay.open {
  width: 100%;
  height: 100%;
  opacity: 1;
}
.header .menu-trigger {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 100;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header .menu-trigger.active {
  /* transform: translateX(-400px); */
  z-index: 150;
}
.header .menu-trigger.active span {
  background-color: #FFFFFF;
}
.header .menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
          transform: translateY(12px) rotate(-45deg);
  top: -7px;
}
.header .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.header .menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-12px) rotate(45deg);
          transform: translateY(-12px) rotate(45deg);
}
.header .menu-trigger span {
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2B2B2B;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 20%;
}
.header .hamburger-menu {
  max-width: 400px;
  width: 100%;
  height: 100%;
  padding: 100px 48px;
  background-color: #322a27;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  -webkit-transform: translate(400px);
          transform: translate(400px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.header .hamburger-menu.open {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.header .hamburger-menu .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 24px;
  list-style-type: none;
  margin: 0 auto 24px;
}
.header .hamburger-menu .main-menu a {
  display: block;
  margin-bottom: 20px;
  color: #FFFFFF;
}
.header .hamburger-menu .main-menu a::after {
  position: absolute;
  right: 0;
  content: "";
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: 11px 11px;
  width: 11px;
  height: 11px;
}
.header .hamburger-menu .main-menu a .en {
  font-size: 1.2rem;
}
.header .hamburger-menu .main-menu .sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .hamburger-menu .main-menu .sns li {
  margin-right: 16px;
}
.header .hamburger-menu .main-menu .sns li:last-child {
  margin-right: 0;
}
.header .menu-trigger {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
}
.header .menu-trigger span {
  position: relative;
  display: block;
  height: 3px;
  margin-bottom: 6px;
  width: 40px;
  background: #322a27;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header .menu-trigger:hover {
  cursor: pointer;
}
.header .menu-trigger:hover span:nth-child(odd) {
  width: 35px;
}
.header .menu-trigger:hover span:nth-child(even) {
  width: 25px;
}
.header .menu-trigger.clicked span:nth-child(even) {
  opacity: 0;
}
.header .menu-trigger.clicked span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 12px;
  background-color: #FFFFFF;
}
.header .menu-trigger.clicked span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: -9px;
  background-color: #FFFFFF;
}
.header .menu-trigger.clicked:hover {
  -webkit-transform: scale(0.75);
          transform: scale(0.75);
}
.header .menu-trigger.clicked:hover span {
  width: 40px !important;
}

@media (max-width: 1024px) {
  .header .hamburger-menu {
    max-width: 320px;
  }
}
/*-----------------------------------------------------------------
top背景 設定
----------------------------------------------------------------- */
.blueprint {
  background: url("img/fv-bg.svg") center/cover no-repeat;
  background-color: #ECE9E3;
  position: relative;
}
.blueprint::after {
  position: absolute;
  content: "";
  display: block;
  background: url("img/blueprint-gradation-bg.png") center/cover no-repeat;
  width: 100%;
  height: 314px;
  bottom: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .blueprint {
    background: url("img/fv-bg-sp.svg") center/cover no-repeat;
    background-color: #ECE9E3;
  }
  .blueprint::after {
    background: url("img/blueprint-gradation-bg-sp.png") center/cover no-repeat;
    height: 160px;
  }
}
/*-----------------------------------------------------------------
fv 設定
----------------------------------------------------------------- */
.fv {
  max-height: 700px;
  height: 100vh;
  width: 100%;
  padding-top: 290px;
}
.fv h1 {
  margin-left: 40px;
}
.fv h1 span {
  display: block;
}
.fv h1 .logo {
  margin-bottom: 30px;
}

@media (max-width: 1024px) {
  .fv {
    max-height: 400px;
    padding-top: 240px;
  }
  .fv h1 {
    margin-left: 0;
  }
  .fv h1 .logo {
    margin-bottom: 16px;
    max-width: 228px;
  }
  .fv h1 .ruby {
    max-width: 268px;
  }
}
/*-----------------------------------------------------------------
about 設定
----------------------------------------------------------------- */
.top .about {
  padding-top: 120px;
  padding-bottom: 160px;
  position: relative;
}
.top .about h2 {
  margin-left: 16px;
}
.top .about .container {
  max-width: 1255px;
}
.top .about .about__list {
  position: relative;
  z-index: 1;
}
.top .about .about__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.top .about .about__list li .about__text {
  max-width: 710px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 80px 60px 80px 90px;
  position: relative;
  z-index: 1;
}
.top .about .about__list li .about__p {
  font-weight: 400;
}
.top .about .about__list li .about__p p:first-child {
  margin-bottom: 32px;
}
.top .about .about__list li .about__img {
  position: absolute;
  right: 0;
  top: 116px;
}
.top .about .about__list li .about__img img {
  width: 100%;
  max-width: 570px;
}

@media (max-width: 1024px) {
  .top .about {
    padding-top: 60px;
    padding-bottom: 210px;
  }
  .top .about .about__list li {
    max-width: 750px;
    margin: auto;
  }
  .top .about .about__list li h2 {
    margin-bottom: 16px;
  }
  .top .about .about__list li .about__text {
    padding: 32px 28px 32px 34px;
    max-width: 80%;
  }
  .top .about .about__list li .about__p p:first-child {
    margin-bottom: 16px;
  }
  .top .about .about__list li .about__img {
    right: 0;
    bottom: -150px;
    width: 240px;
    top: auto;
    z-index: 1;
  }
}
@media (max-width: 1024px) {
  .top .about .bg_text__img {
    width: 225px;
  }
}
/*-----------------------------------------------------------------
実績 設定
----------------------------------------------------------------- */
.top .works {
  padding-top: 120px;
  position: relative;
}
.top .works .bg_text__img {
  left: 0;
  right: auto;
}
.top .works .works__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top .works .works__section .tab-content {
  width: 100%;
}
.top .works .works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 720px;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 180px;
}
.top .works .works__list .works__item {
  background-color: #322a27;
  color: #FFFFFF;
  margin-bottom: 20px;
  margin-right: 20px;
  max-width: 340px;
  width: 100%;
  padding: 24px 30px 48px;
  position: relative;
  overflow: hidden;
}
.top .works .works__list .works__item .casecard__tag {
  position: relative;
  padding-left: 25px;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.top .works .works__list .works__item .casecard__tag::before {
  position: absolute;
  content: "";
  background: url("img/icon-tag-w.svg") center/cover no-repeat;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top .works .works__list .works__item .casecard__title {
  font-weight: bold;
  line-height: 1.875;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}
.top .works .works__list .works__item .casecard__title > span {
  padding-bottom: 5px;
}
.top .works .works__list .works__item .tag__list {
  font-size: 1.2rem;
  margin-bottom: 0;
}
.top .works .works__list .works__item .tag__list .flex {
  margin-bottom: 12px;
}
.top .works .works__list .works__item .tag__list .flex + .flex {
  margin-bottom: 0;
}
.top .works .works__list .works__item .tag__list dt {
  font-weight: bold;
  max-width: 60px;
  width: 100%;
}
.top .works .works__list .works__item .tag__list dd {
  padding: 2px 14px 1px;
  background-color: #FFFFFF;
  color: #322a27;
  border-radius: 30px;
  margin-bottom: 0;
}
.top .works .works__list .works__item .casecard__year {
  position: absolute;
  font-size: 110px;
  font-family: "Josefin Sans", sans-serif;
  line-height: 1;
  opacity: 0.1;
  bottom: -30px;
  right: 0;
}
.top .works .works__list .works__item .works__item__img {
  width: 100%;
}
.top .works .works__list .works__img {
  padding: 0;
  background-color: transparent;
}
.top .works .works__list .works__noimg {
  background-color: #ECE9E3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 40px;
  font-family: "Josefin Sans", sans-serif;
  padding: 16px 0 0;
}
.top .works .works__menu {
  max-width: 260px;
  width: 100%;
  margin-left: auto;
  border-left: 1px #D3CDC3 solid;
  display: block;
}
.top .works .works__menu .works__menu__item {
  font-weight: bold;
  border-bottom: 1px #D3CDC3 solid;
}
.top .works .works__menu .works__menu__item:first-child {
  border-top: 1px #D3CDC3 solid;
}
.top .works .works__menu .works__menu__item:last-child {
  margin-bottom: 110px;
}
.top .works .works__menu .works__menu__item a {
  width: 100%;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #322a27;
  position: relative;
}
.top .works .works__menu .works__menu__item a span {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top .works .works__menu .works__menu__item a span:hover {
  color: #322a27;
}
.top .works .works__menu .works__menu__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #ECE9E3;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}
.top .works .works__menu .works__menu__item a:hover::before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
.top .works .works__menu .works__menu__item .active {
  background-color: #322a27;
  color: #FFFFFF;
  position: relative;
}

@media (max-width: 1024px) {
  .top .works {
    padding-top: 60px;
  }
  .top .works .bg_text__img {
    width: 257px;
  }
  .top .works h2 {
    margin-left: 16px;
  }
  .top .works .works__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .top .works .works__section .works__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 0;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw) 42px;
    width: 100vw;
    border-left: 0;
    border-top: 1px #D3CDC3 solid;
  }
  .top .works .works__section .works__menu .works__menu__item {
    width: 33.333333%;
    border-right: 1px #D3CDC3 solid;
  }
  .top .works .works__section .works__menu .works__menu__item:first-child {
    border-top: 0;
  }
  .top .works .works__section .works__menu .works__menu__item:nth-child(3n) {
    border-right: 0;
  }
  .top .works .works__section .works__menu .works__menu__item:last-child {
    margin-bottom: 0;
    border-right: 0;
    margin-top: 0;
    border-top: 0;
  }
  .top .works .works__section .works__menu .works__menu__item a {
    height: 46px;
    opacity: 1;
  }
  .top .works .works__section .works__menu .works__menu__item a::before {
    display: none;
  }
  .top .works .works__section .works__menu .works__menu__item a span:hover {
    color: #FFFFFF;
  }
  .top .works .works__list {
    padding-bottom: 60px;
    margin: auto;
  }
  .top .works .works__list .works__item {
    padding: 24px 16px 28px;
    margin-bottom: 16px;
    margin-right: 0;
  }
  .top .works .works__list .works__item .casecard__year {
    font-size: 80px;
    bottom: -18px;
  }
  .top .works .works__list .works__item .casecard__tag {
    margin-bottom: 8px;
  }
  .top .works .works__list .works__item .casecard__title {
    margin-bottom: 24px;
  }
  .top .works .works__list .works__item .tag__list .flex {
    margin-bottom: 8px;
  }
  .top .works .works__list .works__img {
    padding: 0;
  }
  .top .works .works__list .works__noimg {
    padding: 110px 16px 100px;
    font-size: 24px;
  }
}
@media (max-width: 730px) {
  .top .works .works__list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
/*-----------------------------------------------------------------
会社概要 設定
----------------------------------------------------------------- */
.top .company {
  position: relative;
  background-color: #ECE9E3;
  padding-top: 120px;
  padding-bottom: 240px;
}
.top .company h2 {
  margin-left: 50px;
}
.top .company .company__list {
  padding-top: 30px;
  width: 100%;
}
.top .company .company__list dt, .top .company .company__list dd {
  font-weight: 500;
  padding: 24px 10px 20px;
  margin-bottom: 0;
}
.top .company .company__list dt {
  width: 25%;
  border-bottom: 1px #322a27 solid;
}
.top .company .company__list dd {
  width: 75%;
  border-bottom: 1px #D3CDC3 solid;
}
.top .company .company__list dd p {
  margin-bottom: 24px;
}
.top .company .company__list dd .company__text__list li {
  margin-bottom: 8px;
  list-style: disc;
  margin-left: 18px;
}

@media (max-width: 1024px) {
  .top .company {
    padding-top: 60px;
    padding-bottom: 70px;
  }
  .top .company .bg_text__img {
    width: 350px;
  }
  .top .company h2 {
    margin-left: 16px;
  }
  .top .company .company__list {
    padding-top: 0;
  }
  .top .company .company__list dd p {
    margin-bottom: 16px;
  }
}
/*-----------------------------------------------------------------
採用情報 設定
----------------------------------------------------------------- */
.top .recruit {
  position: relative;
  padding-top: 120px;
  padding-bottom: 136px;
}
.top .recruit .recruit_text p {
  margin-bottom: 24px;
}
.top .recruit .bg_text__img {
  margin: auto;
  right: 0;
  left: 0;
  top: 0;
}

@media (max-width: 1024px) {
  .top .recruit {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .top .recruit .bg_text__img {
    width: 302px;
  }
  .top .recruit h2 {
    margin-left: 16px;
    margin-bottom: 24px;
  }
  .top .recruit .recruit_text p {
    margin-bottom: 16px;
  }
}
/*-----------------------------------------------------------------
お問い合わせ 設定
----------------------------------------------------------------- */
.top .contact {
  position: relative;
  padding-top: 40px;
  padding-bottom: 224px;
}
.top .contact .bg_text__img {
  left: 0;
  right: auto;
}
.top .contact h2 {
  margin-left: 40px;
}
.top .contact .contact_text {
  margin-bottom: 80px;
  margin-left: 40px;
}
.top .contact .form__section {
  width: 100%;
  max-width: 796px;
  margin-bottom: 20px;
}
.top .contact .form__section dt, .top .contact .form__section dd {
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 24px;
}
.top .contact .form__section dt {
  width: 42%;
  text-align: right;
  padding: 10px 24px 10px 10px;
}
.top .contact .form__section dt .required {
  display: inline-block;
  background-color: #B69A77;
  font-size: 1rem;
  color: #FFFFFF;
  padding: 2px 6px 3px;
  margin-left: 12px;
}
.top .contact .form__section dd {
  width: 58%;
}
.top .contact input, .top .contact textarea {
  width: 100%;
  background-color: #ECE9E3;
  border: 0;
  border-radius: 2px;
  padding: 4px 10px;
}
.top .contact input:focus, .top .contact textarea:focus {
  border: 2px solid #B69A77;
  z-index: 1;
  outline: 0;
}
.top .contact input {
  height: 100%;
}
.top .contact input[type=submit], .top .contact input[type=button] {
  padding: 0;
  background-color: #312927;
  color: #fff;
  font-weight: bold;
  padding: 15px 0 16px;
}
.top .contact ::-webkit-input-placeholder {
  color: #D3CDC3;
}
.top .contact ::-moz-placeholder {
  color: #D3CDC3;
}
.top .contact :-ms-input-placeholder {
  color: #D3CDC3;
}
.top .contact ::-ms-input-placeholder {
  color: #D3CDC3;
}
.top .contact ::placeholder {
  color: #D3CDC3;
}
.top .contact .btn__normal {
  padding: 0;
}
.top .contact .btn__normal:hover {
  opacity: 0.8;
}
.top .contact input:-webkit-autofill {
  -webkit-transition: background-color 5000s ease-in-out 0s !important;
  transition: background-color 5000s ease-in-out 0s !important;
}

@media (max-width: 1024px) {
  .top .contact {
    padding-top: 0;
    padding-bottom: 100px;
  }
  .top .contact h2 {
    margin-left: 0;
  }
  .top .contact .bg_text__img {
    width: 318px;
    bottom: -2px;
  }
  .top .contact h2 {
    margin-left: 16px;
    margin-bottom: 24px;
  }
  .top .contact .contact_text {
    margin-bottom: 42px;
    margin-left: 0;
  }
  .top .contact .form__section .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .top .contact .form__section dt, .top .contact .form__section dd {
    width: 100%;
  }
  .top .contact .form__section dt {
    text-align: left;
    margin-bottom: 0;
    padding-left: 0;
  }
  .top .contact .form__section dt .required {
    margin-left: 8px;
    padding: 2px 4px;
  }
  .top .contact .form__section dd {
    margin-bottom: 12px;
  }
  .top .contact input {
    height: 40px;
  }
  .top .contact input[type=submit] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .top .contact .btn__normal {
    max-width: 280px;
  }
}
.confirmation__page.top .contact input, .confirmation__page.top .contact textarea {
  background-color: #FFFFFF;
}
.confirmation__page.top .contact textarea {
  padding-left: 0;
  padding-top: 10px;
}
.confirmation__page.top .contact .btn__ghost {
  margin-bottom: 32px;
}
.confirmation__page.top .contact input[type=submit], .confirmation__page.top .contact input[type=button] {
  padding: 0;
  background-color: #312927;
  color: #fff;
  font-weight: bold;
  padding: 15px 0 16px;
}
.confirmation__page.top .contact input[type=button] {
  color: #322a27;
  background-color: #FFFFFF;
}
.confirmation__page.top .contact .btn__normal {
  margin-bottom: 12px;
}

.submit__page.top .thanks {
  height: 70vh;
  width: 100%;
  padding: 20vh 0;
  text-align: center;
}
.submit__page.top .thanks .btn__normal {
  margin-top: 32px;
  border: 0;
}
.submit__page.top .thanks .btn__normal span {
  color: #FFFFFF;
}
.submit__page.top a:hover {
  color: #FFFFFF;
}

/*-----------------------------------------------------------------
フッター 設定
----------------------------------------------------------------- */
.footer {
  position: relative;
  padding-top: 140px;
  padding-bottom: 124px;
  background-color: #322a27;
  color: #FFFFFF;
  top: -6px; /*googlemap margin埋め*/
}
.footer .back__top {
  position: absolute;
  top: -20px;
  right: 40px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: #B69A77;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .footer__section {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer li {
  margin-bottom: 16px;
}
.footer .logo__area {
  max-width: 300px;
  width: 100%;
}
.footer h2 img {
  width: 100%;
}
.footer a {
  color: #FFFFFF;
}
.footer a:hover {
  color: #ECE9E3;
}
.footer .footer__sab_menu {
  flex-row: column;
}
.footer .footer__sab_menu li:first-child, .footer .footer__sab_menu li:nth-child(2) {
  margin-bottom: 12px;
}
.footer .footer__sab_menu li:first-child span, .footer .footer__sab_menu li:nth-child(2) span {
  border-bottom: 1px #FFFFFF solid;
  display: inline-block;
  padding-bottom: 4px;
}
.footer .footer__sab_menu .icon {
  margin-right: 12px;
}

.copyright {
  padding: 15px 70px 20px;
  background-color: #FFFFFF;
  font-size: 1.4rem;
  color: #83807F;
  text-align: right;
}

@media (max-width: 1024px) {
  .footer {
    padding: 60px 0;
    font-size: 1.2rem;
  }
  .footer .logo__area {
    max-width: 230px;
  }
  .footer h2 img {
    max-width: 320px;
  }
  .footer .footer__section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .footer__sab_menu .icon {
    max-width: 16px;
    margin-right: 8px;
  }
  .footer .footer__sab_menu .sns li {
    margin-right: 12px;
  }
  .copyright {
    padding: 16px;
    font-size: 1rem;
    text-align: center;
  }
}