html {
  font-size: 62.5%;
  color: #222;
  letter-spacing: 1px;
  font-feature-settings: "palt";
}

::selection {
  background: rgba(0, 0, 0, 0.99);
  color: #fff;
}

html,
body,
a {
  cursor: none;
}

#cursor {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  pointer-events: none;
  position: fixed;
  top: -4px;
  left: -4px;
  width: 8px;
  height: 8px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  z-index: 999;
  -webkit-transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
  transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
}

@media screen and (max-width: 768px) {
  #cursor {
    display: none;
    background: rgba(0, 0, 0, 0);
  }
}

#cursor.hov_ {
  top: -12px;
  left: -12px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 768px) {
  #cursor.hov_ {
    display: none;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0);
  }
}

.btn {
  display: block;
  width: 160px;
  margin: 40px auto;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.btn a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 8px;
  background-color: #007adf;
}

p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 2;
  color: #111;
  text-align: justify;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  p {
    font-size: 1.3rem;
  }
}

p > a {
  text-decoration: underline;
}

p > a:hover {
  text-decoration: none;
  color: #999;
}

h4 > a {
  text-decoration: underline;
}

h4 > a:hover {
  text-decoration: none;
  color: #999;
}

body {
  margin: 0;
  -webkit-text-size-adjust: 100%;
}

span.txtfade {
  /*各テキストにanimationを設定*/
  color: transparent;
  /*テキストを透明にしてtext-shadowだけ表示する*/
  animation: blur 10s ease-out forwards;
}

span.txtfade:nth-child(1) {
  /*一文字ずつ遅延させる*/
  animation-delay: 0.1s;
}

span.txtfade:nth-child(2) {
  animation-delay: 0.2s;
}

span.txtfade:nth-child(3) {
  animation-delay: 0.3s;
}

span.txtfade:nth-child(4) {
  animation-delay: 0.4s;
}

span.txtfade:nth-child(5) {
  animation-delay: 0.5s;
}

span.txtfade:nth-child(6) {
  animation-delay: 0.6s;
}

span.txtfade:nth-child(7) {
  animation-delay: 0.7s;
}

@keyframes blur {
  /*opacityとtext-shadow+animationでフェードインを表現する*/
  0% {
    text-shadow: 0 0 100px #111;
    opacity: 0;
  }

  5% {
    text-shadow: 0 0 90px #111;
  }

  15% {
    opacity: 1;
  }

  20% {
    text-shadow: 0 0 0px #111;
  }

  80% {
    text-shadow: 0 0 0px #111;
  }

  85% {
    opacity: 1;
  }

  95% {
    text-shadow: 0 0 0px #111;
    opacity: 1;
  }

  100% {
    text-shadow: 0 0 0px #111;
    opacity: 1;
  }
}

/*--------------------

cleaffix

--------------------*/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

body {
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-family: "Roboto", "Arial", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", sans-serif, "ten-mincho-text", メイリオ, "Meiryo";
  position: relative;
  animation: fadeIn 2.2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2.2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

ul,
ol,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

.pc_none {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_none {
    display: block;
  }
}

.sp_none {
  display: block;
}

@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

/* ----------------

コンテンツcssここから

----------------*/

/* ヘッダー */

.contents_wrapper {
  width: 100%;
}

header {
  padding: 60px 5%;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  header {
    padding: 40px 30px;
    max-width: 1300px;
    margin: 0 auto;
  }
}

.logo_wrapper {
  float: left;
}

@media screen and (max-width: 768px) {
  .logo_wrapper {
    float: none;
    text-align: left;
  }
}

.hdg_lv1 {
  display: inline;
}

.logo {
  float: left;
  width: 110px;
}
@media screen and (max-width: 768px) {
  .logo {
    width: 85px;
  }
}

.logo_about {
  width: 160px;
}
@media screen and (max-width: 768px) {
  .logo_about {
    width: 180px;
  }
}

.gnav_wrapper {
  font-size: 1.2rem;
  text-align: right;
  margin-top: 4px;
  line-height: 2rem;
}

@media screen and (max-width: 768px) {
  .gnav_wrapper {
    font-size: 1.2rem;
    text-align: right;
    margin: 24px 0 8px 0;
  }
}

.gnav_wrapper > ul > li {
  display: inline-block;
  margin-left: 24px;
  letter-spacing: 0.5px;
}

@media screen and (max-width: 768px) {
  .gnav_wrapper > ul > li:first-child {
    padding-left: 0;
  }
}

.gnav_wrapper > ul > li > a {
  position: relative;
  text-decoration: none;
  padding-bottom: 12px;
}

.gnav_wrapper > ul > li > a ._blank {
  padding-bottom: 0;
}

.gnav_wrapper > ul > li > a::before,
.gnav_wrapper > ul > li > a::after {
  border-bottom: solid 1px #222;
  bottom: 0;
  content: "";
  display: block;
  position: absolute;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  width: 0;
}

.gnav_wrapper > ul > li > a::before {
  left: 50%;
}

.gnav_wrapper > ul > li > a::after {
  right: 50%;
}

.gnav_wrapper > ul > li > a:hover::before,
.gnav_wrapper > ul > li > a:hover::after {
  width: 50%;
}

.gnav_wrapper > ul > .current {
  padding-bottom: 8px;
  border-bottom: 2px solid #111;
}

/* ファーストビュー */

.fv_wrapper {
  width: 100%;
  padding: 140px 0 20px 0;
}

.fv_inner {
  max-width: 1300px;
  padding: 0 5%;
  margin: 0 auto;
  /* height: 100vh; */
}

@media screen and (max-width: 768px) {
  .fv_inner {
    padding: 0 32px;
    background-size: 35%;
  }
}

.copy_pc > img {
  width: 30%;
  max-width: 260px;
  min-width: 160px;
}

.copy_sp {
  width: auto;
}

.h2_top_wrapper {
  margin-right: 25%;
  padding: 0 0 0 5%;
  position: relative;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto;
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
  height: 45vh;
  bottom: 20%;
}

@media screen and (max-width: 1600px) {
  .h2_top_wrapper {
    margin-right: 16%;
  }
}

@media screen and (max-width: 768px) {
  .h2_top_wrapper {
    width: 100%;
    margin-right: 0;
    position: relative;
    background: none;
    height: 85vh;
  }
}

.h2_top {
  font-size: 7.2rem;
  font-weight: normal;
  line-height: 1;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  position: fixed;
  top: 200px;
  margin-left: -3px;
  z-index: 50;
}

@media screen and (max-width: 1600px) {
  .h2_top {
    margin-bottom: 24px;
    letter-spacing: 0;
    top: 200px;
  }
}

@media screen and (max-width: 1300px) {
  .h2_top {
    font-size: 5rem;
    margin-bottom: 24px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 768px) {
  .h2_top {
    font-size: 5.4rem;
    margin: 0 0 8px 0;
    letter-spacing: 0;
    position: absolute;
    bottom: 35%;
  }
}

.h2_top > .h2_top_caption {
  display: block;
  font-size: 1.2rem;
  margin-top: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.08rem;
  margin-left: 8px;
}

@media screen and (max-width: 1300px) {
  .h2_top > .h2_top_caption {
    font-size: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .h2_top > .h2_top_caption {
    display: block;
    font-size: 1rem;
    margin: 16px 0 48px 0;
    margin-left: 0;
  }
}

.h2_top_read {
  font-size: 12px;
  box-sizing: border-box;
  max-width: 300px;
  margin-left: 8px;
  margin-top: 16px;
  font-weight: normal;
  display: inline-block;
  line-height: 2.4;
}

@media screen and (max-width: 768px) {
  .h2_top_read {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 48px;
    max-width: 95%;
  }
}

.btn_wrapper {
  text-align: center;
}

.btn_general {
  max-width: 300px;
  width: 80%;
  border: 1px solid #111;
  padding: 20px;
  /* border-radius: 30px; */
  font-size: 1.4rem;
  text-align: center;
  margin-top: 36px;
  cursor: pointer;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.btn_general:hover {
  max-width: 360px;
  width: 80%;
  border: 1px solid #111;
  padding: 20px;
  font-size: 1.4rem;
  text-align: center;
  margin-top: 36px;
  color: #222;
  cursor: pointer;
}

.recentwork_wrapper {
  width: 65%;
  margin-top: 40px;
  /* display: none; */
}

@media screen and (max-width: 768px) {
  .recentwork_wrapper {
    display: none;
  }
}

.recentwork {
  margin-top: 30px;
  font-size: 1.2rem;
}

.recent_ttl {
  font-weight: 600;
  margin-right: 24px;
}

.recent_txt {
  font-weight: 100;
}

.img_recentwork {
  width: 100%;
  max-width: 730px;
  -moz-box-shadow: 0px 13px 22px -2px rgba(150, 150, 150, 0.5);
  -webkit-box-shadow: 0px 13px 22px -2px rgba(150, 150, 150, 0.5);
  -ms-box-shadow: 0px 13px 22px -2px rgba(150, 150, 150, 0.5);
  box-shadow: 0px 13px 22px -2px rgba(150, 150, 150, 0.5);
}

/* /ファーストビュー */

/* ワークス */

.hdg_lv2_1 {
  margin: 0 0 40px 0;
  font-size: 2.4rem;
}

.works_wrapper_top {
  display: flex;
  background: #f9f9f9;
  /* Old browsers */
  /* background: -moz-linear-gradient(
    top,
    #ffffff 0%,
    #ffffff 15%,
    #f9f9f9 15%,
    #f9f9f9 100%
  ); */
  /* FF3.6-15 */
  /* background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #ffffff 15%,
    #f9f9f9 15%,
    #f9f9f9 100%
  ); */
  /* Chrome10-25,Safari5.1-6 */
  /* background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 15%,
    #f9f9f9 15%,
    #f9f9f9 100%
  ); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f9f9f9', GradientType=0); */
  /* IE6-9 */
  /* background-color: #f9f9f9; */
  width: 100%;
  padding: 200px 0 0 0;
}

@media screen and (max-width: 768px) {
  .works_wrapper_top {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+50,f9f9f9+51,f9f9f9+100 */
    background: #ffffff;
    /* Old browsers */
    /* background: -moz-linear-gradient(
      top,
      #ffffff 0%,
      #ffffff 3.5%,
      #f9f9f9 3.5%,
      #f9f9f9 100%
    ); */
    /* FF3.6-15 */
    /* background: -webkit-linear-gradient(
      top,
      #ffffff 0%,
      #ffffff 3.5%,
      #f9f9f9 3.5%,
      #f9f9f9 100%
    ); */
    /* Chrome10-25,Safari5.1-6 */
    /* background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 3.5%,
      #f9f9f9 3.5%,
      #f9f9f9 100%
    ); */
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    /* filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f9f9f9', GradientType=0); */
    /* IE6-9 */
    /* background-color: #f9f9f9; */
    width: 100%;
    padding: 80px 0 0 0;
    display: block;
  }
}

.works_wrap_inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5% 80px 5%;
}

@media screen and (max-width: 768px) {
  .works_wrap_inner {
    padding: 0 30px 40px 30px;
  }
}

@media screen and (max-width: 768px) {
  .works_wrapper {
    padding: 54px 24px 80px 24px;
  }
}

/* .works_box_wrapper {
  margin-top: -240px;
}

@media screen and (max-width: 768px) {
  .works_box_wrapper {
    margin-top: -120px;
  }
} */

.works_box_inner {
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-direction: row;
}

@media screen and (max-width: 768px) {
  .works_box_inner {
    flex-direction: inherit;
  }
}

.works_box {
  margin-right: 42px;
  margin-bottom: 56px;
  /* width: calc(48% - 84px * 1 / 2); */
}

@media screen and (max-width: 1600px) {
  .works_box {
    margin-right: 30px;
    margin-bottom: 48px;
    /* width: calc(24% - 30px * 3 / 4); */
  }
}

@media screen and (max-width: 1300px) {
  .works_box {
    margin-right: 24px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 926px) {
  .works_box {
    margin-bottom: 24px;
  }
}

/* @media screen and (max-width: 540px) {
  .works_box {
    margin-bottom: 24px;
    width: 44%;
  }
} */

@media screen and (max-width: 460px) {
  .works_box {
    margin-right: 0;
    margin-bottom: 24px;
  }
}

/* .works_box:nth-child(4n + 4) {
  margin-right: 0;
}

@media screen and (max-width: 1300px) {
  .works_box:nth-child(4n + 4) {
    margin-right: 24px;
  }

  .works_box:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 460px) {
  .works_box:nth-child(4n + 4) {
    margin-right: 0;
  }
} */

.works_box > div > p {
  font-size: 1rem;
  font-weight: lighter;
  color: #666;
  margin-top: 8px;
  margin-bottom: 0;
  width: 100%;
}

.works_box > div > .works_ttl {
  font-size: 1.1rem;
  margin: 8px 0;
}

.works_box > div > .works_ctg {
  margin: 0;
  text-align: right;
  align-items: center;
  display: flex;
}

.works_box > div > .works_ctg:before {
  border-top: 1px solid #ddd;
  content: "";
  flex-grow: 1;
}

.works_box > div > .works_ctg:before {
  margin-right: 1rem;
}

.works_box > a > span> img {
  max-width: 100%;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .works_box > a > img {
    max-width: 100%;
  }
}

/*　画像の拡大＋テキスト出現　*/

.zoomInText{/*テキストの基点となる位置を定義*/
  position: relative;
}

.zoomInText span.mask{
  position: relative;
  transition: .3s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  display: block;/*画像をくくるspanタグをブロック要素にする*/
    line-height: 0;/*行の高さを0にする*/
    overflow:hidden;/*拡大してはみ出る要素を隠す*/
}

.zoomInText:hover span.mask::before{/*hoverした時の変化*/
  content:"";
  position: absolute;
  z-index:2;
  top:0;
  left:0;
  width: 100%;
    height: 100%;
  background:rgba(0,0,0,0.2);/*背景色*/
  mix-blend-mode: multiply;
}

.zoomInText img{
  transform: scale(1);
  filter: blur(0);
  transition: .35s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomInText:hover img{/*hoverした時の変化*/
  transform: scale(1.01);/*拡大の値を変更したい場合はこの数値を変更*/
  filter: blur(8px);/*ぼかし具合を変更したい場合はこの数値を変更*/
}

.zoomInText span.cap_wrapper{
  opacity:0;
  transition: .5s ease-in-out;/*移り変わる速さを変更したい場合はこの数値を変更*/
  position: absolute;
  z-index:3;/*テキストを前面に出す*/
  top: 50%;
    left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;/*テキストの色を変えたい場合はここを修正*/
    line-height: 1.5;/*行の高さを1.5にする*/
    text-align: center;
}

.zoomInText:hover span.cap_wrapper{/*hoverした時の変化*/
  opacity:1;
}

.cap_ttl{
  font-size: 3.2rem;
  font-weight: bold;
}

.cap_categoly{
  font-size: 1.6rem;
}

.works_wrapper > p {
  text-align: right;
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  .works_wrapper > p {
    text-align: justify;
  }
}

/* /ワークス */

/* プロフィール */

.profile_wrapper {
  max-width: 100%;
  background: #f9f9f9;
}

.profile_inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 56px 100px;
}

@media screen and (max-width: 768px) {
  .profile_inner {
    padding: 56px 24px;
  }
}

.profile_col_wrapper {
  width: 100%;
  display: flex;
}

@media screen and (max-width: 768px) {
  .profile_col_wrapper {
    display: block;
  }
}

.col_wrapper {
  display: flex;
}

@media screen and (max-width: 768px) {
  .col_wrapper {
    display: block;
  }
}

.col_wrapper > .profile_col:last-child {
  margin-right: 0;
}

.col_left {
  max-width: 840px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .col_left {
    max-width: 100%;
    padding-right: 0;
  }
}

.col_right {
  padding-left: 36px;
  max-width: 300px;
  border-left: 1px solid #ccc;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .col_right {
    padding-left: 0;
    max-width: 100%;
    border-left: none;
    margin-left: auto;
    margin-top: 36px;
  }
}

.media_col > .txt_link {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .media_col > .txt_link {
    text-align: left;
  }
}

.hdg_lv2_2 {
  margin-bottom: 20px;
  margin-top: 0;
  height: 50px;
  font-size: 2.4rem;
}

.hdg_lv3_1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 24px 0 0 0;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ,
    "Meiryo";
}

.hdg_lv4_3 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.hdg_lv4_1 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.hdg_lv4_1 + p {
  padding-left: 16px;
}

.profile_col {
  margin-right: 48px;
}

@media screen and (max-width: 768px) {
  .profile_col {
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.profile_col,
.media_col > p {
  font-size: 1.3rem;
  text-align: justify;
}

.hdg_lv4_2 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 8px;
  font-weight: normal;
}

.media_txt {
  margin-bottom: 0;
}

/* /プロフィール */

/* お問い合わせ */
.contact_wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 100px;
}

@media screen and (max-width: 768px) {
  .contact_wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 58px 30px;
  }
}

.hdg_lv2_3 {
  font-size: 2.6rem;
  text-align: center;
  font-family: "Lato", "Arial", sans-serif, "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", メイリオ, "Meiryo";
  line-height: 1.7rem;
}

.contact_wrapper > p {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .contact_wrapper > p {
    font-size: 1.3rem;
    text-align: justify;
  }
}

._blank {
  background-image: url(../img/ico_blank.svg);
  padding-right: 20px;
  background-position: right 2px;
  background-repeat: no-repeat;
  line-height: 1.8;
}

.gnav_wrapper>ul>li>a: ._blank {
  background-image: url(../img/ico_blank.svg);
  padding-right: 20px;
  background-position: right;
  background-repeat: no-repeat;
}

/* /お問い合わせ */

/*--------------------
フォーム
--------------------*/

.resource_wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  padding: 8px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.resource {
  margin-bottom: 12px;
  text-align: center;
  padding: 8px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.schedule {
  margin-bottom: 0px;
}

.schedule_month {
  font-weight: bold;
}

.contact_form {
  width: 50%;
  margin: 0 auto;
}

.must_txt {
  font-size: 1.2rem;
  margin-bottom: 0;
  text-align: right;
  color: #999;
}

.mark_must {
  color: #ff0000;
  font-size: ;
}

.form_label {
  font-size: 1.4rem;
}

.form_label > span {
  display: inline-block;
  margin-bottom: 8px;
}

.contact-result {
  width: 100%;
  padding-top: 16px;
  text-align: center;
  color: #111;
  display: none;
}

input {
  display: block;
  margin: 8px 0 24px 0;
}

input::placeholder,
textarea::placeholder {
  color: #aaa;
}

/* Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #aaa;
}

/* IE11 & IE10 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  color: #aaa;
}

textarea {
  display: block;
  margin: 8px 0 24px 0;
}

.input_form {
  -moz-box-shadow: inset 1px 4px 9px -4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 4px 9px -4px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 4px 9px -4px rgba(0, 0, 0, 0.1);
  border: 0px;
  height: 40px;
  width: 100%;
  border-radius: 2px;
  background-color: #e8e8e8;
  padding-left: 8px;
  margin-bottom: 16px;
}

.text_form {
  -moz-box-shadow: inset 1px 4px 9px -4px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: inset 1px 4px 9px -4px rgba(0, 0, 0, 0.1);
  box-shadow: inset 1px 4px 9px -4px rgba(0, 0, 0, 0.1);
  border: 0px;
  height: 120px;
  width: 100%;
  border-radius: 4px;
  background-color: #e8e8e8;
  padding: 8px;
}

input:focus {
  border: 1px solid #111;
}

textarea:focus {
  border: 1px solid #111;
}

@media screen and (max-width: 768px) {
  .text_center_wrap {
    text-align: center;
    margin: 0 auto;
  }

  .text_center_wrap_text-02 {
    width: 90%;
    display: inline-block;
    text-align: center;
    margin: 16px 0 0 0;
  }

  /*--------------------

フォームモジュール

--------------------*/

  .contact_form {
    width: 100%;
    margin: 0 auto;
  }
}

.btn_wrap {
  margin-top: 48px;
  text-align: center;
}

.btn_wrap > input {
  display: inline-block;
  padding: 20px 100px;
  width: 100%;
  max-width: 300px;
  /* border-radius: 100px; */
  color: #fff;
  font-size: 1.4rem;
  background-color: #111;
  cursor: pointer;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.btn_wrap > input:hover {
  max-width: 360px;
}

/* /フォーム */

/* フッター・コピーライト */

.copyright_wrapper {
  position: fixed;
  /* top: calc(80% - 8.325rem); */
  z-index: 500;
  right: 20px;
  bottom: 30px;
}

@media screen and (max-width: 768px) {
  .copyright_wrapper {
    right: 2px;
    bottom: 10px;
  }
}

.copyright_wrapper > p {
  margin-bottom: 0;
}

.copyright_wrapper > p {
  font-size: 1.2rem;
  color: #111;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -o-writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .copyright_wrapper > p {
    font-size: 0.8rem;
  }
}

/* /フッター・コピーライト */

a {
  color: #222;
  text-decoration: none;
  transition: all 0.2s;
}

p > a {
  color: #222;
  text-decoration: underline;
  transition: all 0.2s;
  font-weight: 400;
}

.list_Published_txt > a {
  text-decoration: underline;
  transition: all 0.2s;
}

.list_Published_txt > a:hover {
  text-decoration: none;
}

dl > dd > a {
  text-decoration: underline;
  transition: all 0.2s;
}

dl > dd > a:hover {
  text-decoration: none;
}

p > a:hover {
  text-decoration: none;
}

.text_center_wrap_text-01 + .text_center_wrap_text-01 {
  margin-top: 0;
}

a > img:hover {
  opacity: 0.5;
  transition: all 0.2s;
}

/* /コピーライト */

.hdg_lv2_2 {
  font-size: 5.6rem;
  font-weight: 500;
  margin: 0 0 48px 0;
  color: #111;
}

@media screen and (max-width: 1200px) {
  .hdg_lv2_2 {
    margin: 0 0 16px 0;
  }
}

.hdg_lv3_0 {
  font-size: 3rem;
  margin: 0 0 40px 0;
  line-height: 1.8;
}

.about_wrapper {
  padding: 200px 0 48px 0;
  position: relative;
}

@media screen and (max-width: 768px) {
  .about_wrapper {
    padding: 140px 0 48px 0;
  }
}

.about_wrapper_inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .about_wrapper_inner {
    padding: 0 30px;
    box-sizing: border-box;
  }
}

.about_wrapper_inner + .about_wrapper_inner {
  margin-top: 64px;
}

.about_read {
  font-size: 1.6rem;
  font-weight: 600;
}

.works_wrapper {
  padding: 200px 0 48px 0;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .works_wrapper {
    padding: 140px 0 48px 0;
    position: relative;
  }
}

.works_wrapper_inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.hdg_lv2_2_wrap {
  flex-wrap: nowrap;
  position: fixed;
  left: 5%;
}

@media screen and (max-width: 1200px) {
  .hdg_lv2_2_wrap {
    flex-wrap: nowrap;
    position: static;
    left: 5%;
    margin-bottom: 58px;
    padding: 0;
  }
}

.work_nav {
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 1200px) {
  .work_nav > li {
    display: inline-block;
    margin-right: 16px;
  }
}

.hdg_lv3_0 > .txtfade > span::before {
  content: "";
  border: 2px solid #111;
  width: 300px;
  padding: 0 200px;
  margin-right: 10px;
}

.profile_txt {
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
  margin: 0 0 16px 0;
}

.profile_name {
  font-size: 1.3rem;
  font-weight: 200;
  margin: 12px 0 4px 0;
  display: inline-block;
}

.profile_job {
  font-size: 1.2rem;
  font-weight: lighter;
}

.contact_area_glay {
  background-color: #f9f9f9;
  margin-top: 200px;
}

@media screen and (max-width: 1200px) {
  .contact_area_glay {
    margin-top: 80px;
  }
}

/* /調整用class */

.mt_40 {
  margin-top: 40px;
}

.mt_60 {
  margin-top: 60px;
}

.mt_80 {
  margin-top: 80px;
}

/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 7%;
  bottom: 15%;
  /*全体の高さ*/
  height: 50px;
}

@media screen and (max-width: 768px) {
  .scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 10%;
    bottom: 10%;
    /*全体の高さ*/
    height: 50px;
  }
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #222;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #222;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
