@charset "UTF-8";
body {
  font-family: "Lato", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #333;
}

a {
  transition: opacity 0.3s;
  text-decoration: none;
  color: #1ca9e3;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border-style: none;
}

ul,
li {
  list-style: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

/*--------------------------------
   レイアウト
  ---------------------------------*/
.section {
  padding: 80px 0;
}

.inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}

/*--------------------------------
   見出し
  ---------------------------------*/
.title_wrapper {
  /*
    background-color: #e9bebe;
    */
  padding: 5px;
  margin-bottom: 40px;
}
.title_wrapper .title {
  font-size: 34px;
  font-weight: normal;
  line-height: 1;
  /*
    margin-bottom: 40px;
    */
  text-align: center;
  letter-spacing: 0.05em;
  /*
    color: #7a5360;
    */
}
.title_wrapper .title + .inview {
  animation-name: fadeInanime;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInanime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.lead {
  margin-bottom: 30px;
  text-align: center;
}

/*--------------------------------
  ヘッダー
  ---------------------------------*/
.header {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  transition: background-color 0.6s;
}
.header.active {
  background-color: #e2afaf;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.header-logo {
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  margin-right: 20px;
  letter-spacing: 0.05em;
}
.header-logo a {
  color: #3f0912;
}

.header-nav-list {
  display: flex;
  justify-content: space-between;
}

.header-nav-item:not(:last-child) {
  margin-right: 20px;
}
.header-nav-item a {
  font-size: 13px;
  padding: 5px 0;
  letter-spacing: 0.1em;
  color: #3f0912;
}
.header-nav-item a:hover {
  opacity: 0.8;
}

/*--------------------------------
   メインビジュアル
  ---------------------------------*/
.main-visual-img {
  height: 700px;
  background-image: url(../img/mv.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  /***カーテンのように開くアニメーション***/
}
.main-visual-img::before, .main-visual-img::after {
  content: "";
  position: fixed; /*固定表示*/
  top: 0;
  width: 50vw;
  height: 100vh;
  background: #e2afaf; /*劇のカーテン色*/
  animation: curtainOpen 1s forwards;
  animation-delay: 4s; /*遅延時間(遅延時間)*/
  z-index: 999; /*最前面に*/
}
.main-visual-img::before {
  left: 0;
}
.main-visual-img::after {
  right: 0;
}
.main-visual-img .loding {
  font-size: 3em;
  z-index: 1000;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  animation: lodingAnimation 2s forwards 2s;
}

@keyframes curtainOpen {
  0% {
    width: 50vw; /*閉じている状態*/
  }
  100% {
    width: 0; /*開く*/
    visibility: hidden; /*非表示に*/
  }
}
@keyframes lodingAnimation {
  to {
    width: 0;
    height: 0;
    overflow: hidden;
  }
}
@-webkit-keyframes lodingAnimation {
  to {
    width: 0;
    height: 0;
    visibility: hidden;
  }
}
.sub-main-visual-img {
  height: 180px;
  background-image: url(../img/mv-002.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

/*--------------------------------
   プロフィール
  ---------------------------------*/
.profile {
  padding: 50px 0;
}

.profile-title {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
  color: #737d6d;
}

.profile-text {
  max-width: 500px;
  margin: 0 auto;
}

/*--------------------------------
   Works
  ---------------------------------*/
.works-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}

.works-text {
  text-align: center;
  margin: 10px auto;
}

.works-item {
  width: 31.74603%;
  height: auto;
  margin-right: 1.5873%;
  margin-bottom: 40px;
}
.works-item a {
  color: #290010;
}
.works-item a:hover {
  color: #ff2a5f;
  opacity: 0.9;
}
.works-item a:nth-of-type(3n) {
  margin-right: 0;
}

.works-img img {
  border: 1px solid #e6e6e6;
  width: 400px;
  height: 300px;
}

.works-name {
  font-size: 12px;
  font-weight: bold;
  margin-top: 8px;
}

.works-info {
  font-size: 10px;
}

/* 表示エフェクト */
/* 画面外にいる状態 */
@media screen and (min-width: 768px) {
  .works-item {
    /* opacity: 0.1; */
    /* transform : translate(0, 100px); */
    transform: scale(1.2);
    transition: all 1s;
    /* 画面内に入った状態 */
  }
  .works-item.scrollin {
    opacity: 1;
    /* transform : translate(0, 0); */
    transform: scale(1);
  }
  .works-item.scrollin:nth-of-type(3n + 1) {
    transition-delay: 0.2s;
  }
  .works-item.scrollin:nth-of-type(3n + 2) {
    transition-delay: 0.4s;
  }
  .works-item.scrollin:nth-of-type(3n) {
    transition-delay: 0.6s;
  }
}
/* 2つ目の要素に400msのdelayをかける */
/*
    .works-list {
      .works-item:nth-of-type(2) {
        -moz-transition-delay:400ms;
        -webkit-transition-delay:400ms;
        -o-transition-delay:400ms;
        -ms-transition-delay:400ms;
        transition-delay: 400ms;
      }
*/
/* 3つ目の要素に800msのdelayをかける */
/*
      .works-item:nth-of-type(3) {
      -moz-transition-delay:800ms;
      -webkit-transition-delay:800ms;
      -o-transition-delay:800ms;
      -ms-transition-delay:800ms;
      transition-delay: 800ms;
    }
  }
 */
/*--------------------------------
   Skill
  ---------------------------------*/
.skill-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -50px;
}

.skill-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 48%;
  margin-bottom: 50px;
}

/*
  .skill-img {
    width: 60px;
    height: auto;
    margin-right: 20px;
  }
  */
.skill-name {
  margin: 0; /* デフォルトCSS打ち消し */
  font-size: 24px; /* 文字サイズ指定 */
  position: relative; /* 位置調整 */
  font-weight: normal; /* 文字の太さ調整 */
  margin-bottom: 15px; /* 周りの余白指定 */
  border-radius: 2px; /* 角丸指定 */
}
.skill-name .head_test-point {
  background-color: #ff2a5f; /* 背景色指定 */
  border-radius: 50%; /* 丸くする */
  padding: 5px 15px; /* 余白指定 */
  font-size: 40px; /* 文字サイズ指定 */
  color: #fff; /* 文字色指定 */
  margin-right: 5px; /* 周りの余白指定 */
  font-family: monospace;
}
.skill-name .head_test-point_ja {
  background-color: #ff2a5f; /* 背景色指定 */
  border-radius: 50%; /* 丸くする */
  padding: 3px 8px; /* 余白指定 */
  font-size: 40px; /* 文字サイズ指定 */
  color: #fff; /* 文字色指定 */
  margin-right: 5px; /* 周りの余白指定 */
}

.skill-body {
  flex: 1;
}

.skill-name {
  margin-bottom: 3px;
  transform: scale(1.1);
  transition: all 1s;
}
.skill-name.inview {
  transform: scale(1);
}

/*--------------------------------
   Contact
  ---------------------------------*/
.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-item {
  display: block;
  margin: 0 20px;
  text-align: center;
}

.contact-text {
  margin-top: 10px;
  text-align: center;
}

/* メールアイコン */
#mail__wrapper {
  width: 50px;
  height: 40px;
  margin: 0 auto;
  margin-top: 50px;
}
#mail__wrapper .mail__anvelopebg {
  width: 70px;
  height: 40px;
  background-color: #e9b004;
  position: absolute;
  margin-bottom: 0;
  z-index: 3;
}
#mail__wrapper .mail__anvelope {
  width: 0px;
  height: 0px;
  position: relative;
  margin-bottom: 0;
  border-left: 35px #ffc000 solid;
  border-bottom: 20px #ffcc00 solid;
  border-right: 35px #ffcc00 solid;
  border-top: 20px rgba(0, 0, 0, 0) solid;
  box-shadow: 0px 4px 0px 0px rgb(24, 116, 86);
  -webkit-box-shadow: 0px 4px 0px 0px rgb(24, 116, 86);
  z-index: 4;
}
#mail__wrapper .mail__letter {
  width: 54px;
  height: 44px;
  background-color: #fff;
  position: relative;
  top: -95px;
  left: 8px;
  z-index: 3;
}
#mail__wrapper .mail__letter:after {
  content: "";
  position: absolute;
  width: 32px;
  height: 6px;
  background-color: #9bbeb2;
  top: 6px;
  left: 6px;
}
#mail__wrapper .mail__letter:before {
  content: "";
  position: absolute;
  width: 21px;
  height: 6px;
  background-color: #9bbeb2;
  top: 15px;
  left: 6px;
}
#mail__wrapper .mail__opener {
  position: relative;
  width: 0;
  height: 0;
  border-left: 35px rgba(0, 0, 0, 0) solid;
  border-bottom: 31px #e9b004 solid;
  border-right: 35px rgba(0, 0, 0, 0) solid;
  top: -71px;
  z-index: 2;
  transform-origin: 0 100%;
  -ms-transform-origin: 0 100%; /* IE 9 */
  -webkit-transform-origin: 0 100%; /* Safari and Chrome */
}
@keyframes letteranim {
  0% {
    top: -95px;
  }
  50% {
    top: -71px;
  }
  100% {
    top: -71px;
  }
}
@-webkit-keyframes letteranim {
  0% {
    top: -95px;
  }
  50% {
    top: -71px;
  }
  100% {
    top: -71px;
  }
}
@keyframes openanim {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  50% {
    -webkit-transform: rotateX(0deg);
    z-index: 2;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    z-index: 5;
  }
}
@-webkit-keyframes openanim {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  50% {
    -webkit-transform: rotateX(0deg);
    z-index: 2;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    z-index: 5;
  }
}
#mail__wrapper:hover .mail__letter {
  animation: letteranim 1s ease-out 0s 2 alternate;
  -webkit-animation: letteranim 1s ease-out 0s 2 alternate; /* Safari and Chrome */
}
#mail__wrapper:hover .mail__opener {
  animation: openanim 1s ease-out 0s 2 alternate;
  -webkit-animation: openanim 1s ease-out 0s 2 alternate; /* Safari and Chrome */
}

/*--------------------------------
   ページトップ
  ---------------------------------*/
.page-top {
  font-weight: bold;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  background-color: #e2afaf;
}
.page-top .material-icons-outlined {
  vertical-align: bottom;
}

/*--------------------------------
   フッター
  ---------------------------------*/
.footer {
  padding: 30px;
  background-color: #3d2a30;
}

.copyright {
  font-size: 10px;
  text-align: center;
  color: #bba8ae;
}

/*--------------------------------
   下層：Worksページ
  ---------------------------------*/
.article {
  padding: 50px 0;
}

.article-inner {
  max-width: 1040px;
  margin: 50px auto;
  padding: 0 20px;
}

.article-title {
  margin-bottom: 20px;
  text-align: center;
}

.article-img {
  margin-bottom: 20px;
  text-align: center;
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  /* 見積もり例 */
  /* 料金表 */
}
.article-body-marker {
  background-image: linear-gradient(90deg, #ffff66, #ffff66); /* 単色の場合は同じ色、グラデーションさせる場合は別々の色 */
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% 30%; /* '30%'の部分にマーカーの太さを記入 */
}
.article-body-red {
  color: darkred;
  font-weight: bold;
}
.article-body ul,
.article-body ol {
  background: #ffe1e1;
  box-shadow: 0px 0px 0px 10px #fffde8; /*線の外側*/
  border: dashed 2px #e09090; /*破線*/
  border-radius: 9px;
  margin-left: 10px; /*はみ出ないように調整*/
  margin-right: 10px; /*はみ出ないように調整*/
  padding: 0.5em 0.5em 0.5em 2em;
}
.article-body ul li,
.article-body ol li {
  line-height: 1.5;
  padding: 0.5em 0;
}
.article-body ul {
  margin-bottom: 50px;
}
.article-body ul p {
  margin: 10px 0;
  padding: 5px;
  font-weight: 700;
  border-top: 1px dotted #3d2a30;
}
.article-body ul div {
  margin: 10px 10px 20px 30px;
}
.article-body ul li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f138";
  font-weight: 900;
  left: 0.5em; /*左端からのアイコンまでの距離*/
  padding: 3px;
  color: rgb(255, 0, 0); /*アイコン色*/
}
.article-body table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 650px;
  table-layout: fixed;
}
.article-body table tr {
  background-color: #ffe1e1;
  padding: 0.35em;
}
.article-body table tr.last {
  border-bottom: 2px solid #fff;
}
.article-body table td:not(:first-child) {
  border-bottom: 2px dotted #fff;
}
.article-body table th,
.article-body table td {
  padding: 1em 10px 1em 1em;
  border-right: 2px solid #fff;
}
.article-body table th {
  font-size: 0.95em;
}
.article-body table thead tr {
  background-color: #e2afaf;
  color: #3d2a30;
}
.article-body table tbody th {
  background: #e09090;
  color: #fff;
}
.article-body .txt {
  text-align: left;
  font-size: 0.95em;
}
.article-body .price {
  text-align: right;
  color: #290010;
  font-weight: bold;
}
.article-body .non {
  background: #fff;
}
@media screen and (max-width: 600px) {
  .article-body table {
    border: 0;
    width: 100%;
  }
  .article-body table th {
    background-color: #ffe1e1;
    display: block;
    border-right: none;
  }
  .article-body table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .article-body table tr {
    display: block;
    margin-bottom: 0.625em;
  }
  .article-body table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: 0.8em;
    text-align: right;
    position: relative;
    padding: 0.625em 0.625em 0.625em 4em;
    border-right: none;
  }
  .article-body table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167f92;
  }
  .article-body table td:last-child {
    border-bottom: 0;
  }
  .article-body table tbody th {
    color: #fff;
  }
}

.article-info-title {
  font-size: 15px;
}

.article-body img,
.article-body p {
  margin-bottom: 30px;
}

.home-link {
  text-align: center;
}

/*media Queries 767
  ----------------------------------------------------*/
@media screen and (max-width: 767px) {
  body {
    font-size: 13px;
    line-height: 1.7;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  /* 見出し */
  .title {
    font-size: 26px;
    margin-bottom: 20px;
  }
  /* レイアウト */
  .section {
    padding: 40px 0;
  }
  .inner {
    padding: 0 15px;
  }
  /* ヘッダー */
  .header {
    background-color: #e6e6e6;
  }
  .header-logo {
    font-size: 16px;
  }
  .header-nav-item:not(:last-child) {
    margin-right: 10px;
  }
  .header-nav-item a {
    font-size: 12px;
  }
  /* メインビジュアル */
  .main-visual-img {
    height: 60vh;
    background-image: url(../img/sp_mv.jpg);
  }
  .sub-main-visual-img {
    height: 100px;
    background-image: url(../img/sp_mv.jpg);
  }
  /* プロフィール */
  .profile {
    padding: 30px 0;
  }
  .profile-title {
    font-size: 20px;
  }
  /* Works */
  .works-name {
    font-size: 10px;
  }
  .works-list {
    justify-content: space-between;
  }
  .works-item {
    flex: 0 0 48%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  /* Skill */
  .skill-list {
    display: block;
    margin-bottom: 0;
  }
  .skill-item {
    width: 100%;
    margin-bottom: 35px;
  }
  .skill-item:last-child {
    margin-bottom: 0;
  }
  /* Contact */
  .contact-item {
    margin: 0 10px;
  }
  /* フッター */
  .footer {
    padding: 20px 0;
  }
}/*# sourceMappingURL=style.css.map */