@charset "UTF-8";
/* -------------------------------------------- */
/* 共通設定 */
/* -------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body, h1, h2, h3, h4, h5, p, ul, li, ol, dl, dt, figure, input, textarea {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  list-style: none;
  outline: 0;
}

body {
  font-family: sans-serif;
  font-size: 1.6em;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #fff;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  line-height: 1.7;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

body {
  font-size: 1.4rem;
  background-color: #000;
}

/* PC */
@media (min-width: 1024px) {
  body {
    font-size: 1.6rem;
  }
}

.inner {
  margin: 0 auto;
  max-width: 1000px;
  padding: 0 4%;
}

/* -------------------------------------------- */
/* 見出しタイトル */
/* -------------------------------------------- */
.heading {
  padding-top: 40px;
  text-align: center;
  font-size: calc(3rem + ((1vw - 0.375rem) * 3.0222));
  min-height: 0vw;
}

/* タブレット */
@media (min-width: 768px) {
  .heading {
    padding-top: 60px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .heading {
    font-size: 6.4rem;
    padding-top: 80px;
  }
}

/* -------------------------------------------- */
/* セクション */
/* -------------------------------------------- */
section {
  padding: 30px 0;
}

/* タブレット */
@media (min-width: 768px) {
  section {
    padding: 40px 0;
  }
}

/* PC */
@media (min-width: 1024px) {
  section {
    padding: 60px 0;
  }
}

/* -------------------------------------------- */
/* セクションの見出し */
/* -------------------------------------------- */
.section_heading {
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  text-align: center;
  font-size: calc(2.8rem + ((1vw - 0.375rem) * 1.7778));
  min-height: 0vw;
}

h2:before, h2:after {
  content: '';
  background-color: #fff;
  position: absolute;
  width: 30%;
  height: 1px;
  display: inline-block;
  top: 50%;
}

h2:before {
  left: 0;
}

h2:after {
  right: 0;
}

/* タブレット */
@media (min-width: 768px) {
  .section_heading {
    margin-bottom: 60px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .section_heading {
    margin-bottom: 80px;
    font-size: 4.8rem;
  }
}

/* -------------------------------------------- */
/* ボタン */
/* -------------------------------------------- */
.btn {
  border: 2px solid #707070;
  width: 100%;
  text-align: center;
  border-radius: 6px;
}

.btn a {
  background-color: #fff;
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
  padding: 14px;
  color: #333;
  -webkit-transition: .4s;
  transition: .4s;
}

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

/* タブレット */
@media (min-width: 768px) {
  .btn {
    width: 40%;
    margin: 0 auto;
  }
  .btn a {
    padding: 16px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .btn {
    width: 200px;
  }
}

.fas {
  margin-left: 5px;
}

/* -------------------------------------------- */
/* ヘッダー */
/* -------------------------------------------- */
header {
  background-color: #263858;
  text-align: center;
  height: 150px;
}

header .inner {
  width: 100%;
  padding: 0;
  height: 100%;
}

header .home {
  height: 50px;
  border: 1px solid #fff;
}

header a {
  display: block;
  line-height: 50px;
}

header a:hover {
  opacity: .7;
}

@media (min-width: 768px) {
  header {
    height: 70px;
  }
  header a {
    font-size: 1.6rem;
    display: inline;
  }
  header .home {
    border: 0px solid #707070;
  }
  header .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 70px;
    padding: 0 4%;
    width: 100%;
  }
  header .nav {
    width: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  header .nav li {
    width: auto;
    border: 0px solid #707070;
  }
  header .nav li a {
    display: inline;
    margin-left: 24px;
  }
}

/* -------------------------------------------- */
/* メインビジュアル */
/* -------------------------------------------- */
.top_works .mv {
  width: 100%;
  height: 185px;
  margin-bottom: 30px;
}

.top_works .mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

.thumbnail li {
  width: 31%;
  border: 1px solid #fff;
  height: 78px;
}

.thumbnail li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タブレット */
@media (min-width: 768px) {
  .top_works .mv {
    height: 500px;
    margin-bottom: 60px;
  }
  .top_works .mv img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .top_works .thumbnail {
    margin-bottom: 60px;
  }
  .top_works .thumbnail li {
    height: 200px;
  }
  .top_works .thumbnail li a {
    display: block;
    height: 100%;
  }
  .top_works .thumbnail li a img {
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all .6s;
    transition: all .6s;
  }
  .top_works .thumbnail li a img:hover {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

/* PC */
@media (min-width: 1024px) {
  .thumbnail {
    margin-bottom: 60px;
  }
}

/* -------------------------------------------- */
/* プロフィール */
/* -------------------------------------------- */
.top_profile .top_profile_text_wrapper {
  margin-bottom: 40px;
}

.top_profile .top_profile_text_wrapper li:first-child {
  font-weight: bold;
}

.top_profile .top_profile_text_wrapper li:not(:last-child) {
  margin-bottom: 20px;
}

/* タブレット */
@media (min-width: 768px) {
  .top_profile .top_profile_text_wrapper {
    margin-bottom: 60px;
  }
  .top_profile .top_profile_text_wrapper li:not(:last-child) {
    margin-bottom: 30px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .top_profile .top_profile_text_wrapper {
    margin-bottom: 80px;
  }
}

/* -------------------------------------------- */
/* フッター */
/* -------------------------------------------- */
footer {
  text-align: center;
  background-color: #263858;
  padding: 15px 0;
}

footer p {
  font-size: 1rem;
}

footer a:hover {
  opacity: .7;
}

/* PC */
@media (min-width: 1024px) {
  footer p {
    font-size: 1.2rem;
  }
}

/* -------------------------------------------- */
/* worksページ */
/* -------------------------------------------- */
.works p {
  margin-bottom: 30px;
}

.works .works_container .works_wrapper {
  margin-bottom: 20px;
  text-align: center;
}

.works .works_container .works_img_wrapper {
  margin-bottom: 20px;
  height: 185px;
  width: 100%;
}

.works .works_container .works_img_wrapper img {
  width: 100%;
  height: 100%;
  min-width: 345px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* タブレット */
@media (min-width: 768px) {
  .works p {
    margin-bottom: 60px;
    text-align: center;
  }
  .works .works_container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .works .works_container .works_wrapper {
    text-align: center;
    width: 47%;
  }
  .works .works_container .works_wrapper .works_img_wrapper {
    margin-bottom: 20px;
    height: 260px;
    width: 100%;
    overflow: hidden;
  }
  .works .works_container .works_wrapper .works_img_wrapper img {
    width: 100%;
    height: 100%;
    min-width: 345px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all .6s;
    transition: all .6s;
  }
  .works .works_container .works_wrapper .works_img_wrapper img:hover {
    -webkit-transform: scale(1.1, 1.1);
            transform: scale(1.1, 1.1);
  }
}

/* PC */
@media (min-width: 1024px) {
  .works .works_container .works_wrapper {
    margin-bottom: 40px;
  }
}

/* -------------------------------------------- */
/* プロフィールページ */
/* -------------------------------------------- */
.profile h3 {
  border-bottom: 5px solid #fff;
  margin-bottom: 30px;
  padding-bottom: 8px;
  font-size: calc(2.4rem + ((1vw - 0.375rem) * 1.0667));
  min-height: 0vw;
}

.profile h3 span {
  font-size: calc(1.4rem + ((1vw - 0.375rem) * 0.5333));
  min-height: 0vw;
  font-weight: normal;
  display: block;
}

.skills .skills_container .skill_wrapper {
  margin-bottom: 40px;
  width: 100%;
}

.skills .skills_container .skill_wrapper .skill_name {
  margin-bottom: 8px;
  font-weight: bold;
}

/* タブレット */
@media (min-width: 768px) {
  .skills .skills_container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .skills .skills_container .skill_wrapper {
    width: 48%;
    margin-bottom: 40px;
  }
  .skills .skills_container .skill_wrapper .skill_name {
    margin-bottom: 12px;
  }
}

/* PC */
@media (min-width: 1024px) {
  .profile h3 {
    font-size: 3.6rem;
  }
  .profile h3 span {
    font-size: 2rem;
  }
}

/* -------------------------------------------- */
/* コンタクトページ */
/* -------------------------------------------- */
.contact form {
  width: 100%;
  margin: 0 auto;
}

.contact form .label_wrapper {
  margin-bottom: 8px;
}

.contact form .label_wrapper .must {
  color: #fff;
  margin-right: 10px;
  padding: 6px 10px;
  background: #f58694;
  border-radius: 5px;
}

.contact form .label_wrapper .free {
  color: #fff;
  margin-right: 10px;
  padding: 6px 10px;
  background: #7fbfff;
  border-radius: 5px;
}

.contact form .label_wrapper label {
  font-weight: bold;
}

.contact form input[type="text"],
.contact form input[type="email"],
.contact form textarea {
  width: 100%;
  padding: 8px 15px;
  margin-bottom: 30px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
}

.contact form textarea {
  height: 200px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.contact form input[type="submit"] {
  display: block;
  width: 100%;
  height: 60px;
  border-color: #000;
  background: #fff;
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  border-radius: 6px;
  margin-top: 30px;
}

.contact form input[type="submit"]:hover {
  opacity: .8;
}

.contact form .wpcf7-list-item {
  font-size: calc(1.2rem + ((1vw - 0.375rem) * 0.1778));
  min-height: 0vw;
  text-align-last: left;
}

.contact p {
  font-size: calc(1.4rem + ((1vw - 0.375rem) * 0.5333));
  min-height: 0vw;
  text-align: center;
}

@media (min-width: 768px) {
  .contact form .label_wrapper {
    width: 80%;
    margin: 0 auto 8px;
  }
  .contact form input[type="text"],
  .contact form input[type="email"],
  .contact form textarea {
    width: 80%;
    margin: 0 auto 30px;
    display: block;
  }
  .contact form input[type="submit"] {
    width: 30%;
    margin: 30px auto 0;
  }
  .contact form .wpcf7-list-item {
    width: 80%;
    margin: 0 auto;
  }
  .contact p br {
    display: none;
  }
}

@media (min-width: 1024px) {
  .contact form .label_wrapper {
    width: 800px;
  }
  .contact form input[type="text"],
  .contact form input[type="email"],
  .contact form textarea {
    width: 800px;
    margin: 0 auto 40px;
  }
  .contact form input[type="submit"] {
    margin: 40px auto 0;
  }
  .contact form .wpcf7-list-item {
    font-size: 1.6rem;
    width: 800px;
  }
  .contact p {
    font-size: 2rem;
  }
}

/* エラーメッセージを見やすくする */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: red;
  font-weight: 600;
  margin-bottom: 10px;
}

/* -------------------------------------------- */
/* 記事ページ */
/* -------------------------------------------- */
.single .mv {
  height: 185px;
  margin-bottom: 30px;
  width: 100%;
  overflow: scroll;
}

.single .mv img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.single ul {
  margin-bottom: 30px;
}

.single ul .single_first {
  margin-bottom: 8px;
  font-weight: bold;
}

.single ul .single_second {
  font-size: calc(1.4rem + ((1vw - 0.375rem) * 0.1778));
  min-height: 0vw;
}

.single ul a {
  color: #005CFF;
}

.single ul a:hover {
  opacity: .7;
}

@media (min-width: 768px) {
  .single .mv {
    height: 500px;
    margin-bottom: 40px;
  }
  .single .mv img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .single ul {
    margin-bottom: 40px;
  }
  .single ul .single_second {
    font-size: 1.6rem;
  }
}

/* -------------------------------------------- */
/* ハンバーガーメニュー */
/* -------------------------------------------- */
.sp_nav {
  display: none;
}

@media (min-width: 768px) {
  #show {
    width: 60px;
    height: 60px;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 3;
    color: #fff;
    cursor: pointer;
  }
  #show div {
    width: 60%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transition: .3s;
    transition: .3s;
  }
  #show div:nth-of-type(1) {
    -webkit-transform: translate(-50%, 13px);
            transform: translate(-50%, 13px);
  }
  #show div:nth-of-type(3) {
    -webkit-transform: translate(-50%, -13px);
            transform: translate(-50%, -13px);
  }
  #show.active div:nth-of-type(2) {
    opacity: 0;
  }
  #show.active div:nth-of-type(1) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: 25%;
  }
  #show.active div:nth-of-type(3) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    left: 25%;
  }
  #sp_nav_menu {
    width: 15%;
    position: fixed;
    right: -15%;
    top: 60px;
    padding: 24px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    z-index: 2;
    -webkit-transition: .4s;
    transition: .4s;
  }
  #sp_nav_menu .sp_nav {
    display: block;
  }
  #sp_nav_menu .sp_nav li {
    margin-bottom: 20px;
  }
  #sp_nav_menu .sp_nav li a:hover {
    opacity: .7;
  }
  #sp_nav_menu.active {
    right: 0;
  }
  #cover.active {
    display: block;
  }
}

/* -------------------------------------------- */
/* WPのナビメニュー用CSS */
/* -------------------------------------------- */
header .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

header .menu li {
  width: 50%;
  height: 50px;
  border: 1px solid #fff;
}

@media (min-width: 768px) {
  header {
    height: 70px;
  }
  header a {
    font-size: 1.6rem;
    display: inline;
  }
  header .menu {
    width: auto;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  header .menu li {
    width: auto;
    border: 0px solid #707070;
  }
}

footer .menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 8px;
}

/* PC */
@media (min-width: 1024px) {
  footer .menu {
    margin-bottom: 10px;
  }
}
/*# sourceMappingURL=styles.css.map */