@charset "utf-8";
/* =============================================
全体設定
============================================= */
* {
  min-width: 0; /*Slick+flexの不具合回避*/
  min-height: 0; /*Slick+flexの不具合回避*/
}
h1, h2, h3, h4, nav, footer, button, strong {
  font-family: 'Oswald', sans-serif;
}
body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  background-image: url("../img/bg.png");
}
p {
  font-size: 16px;
  margin-bottom: 0.5em;
}
strong {
  font-size: 1.1rem;
  font-weight: bold;
}
img {
  width: 100%;
  height: auto;
}
h2 {
  font-size: 1.8rem;
  margin: 60px 0;
  padding: 0.5em 0;
  border-top: solid 3px #0f0f0f;
  border-bottom: solid 3px #0f0f0f;
  text-align: center;
}
h3 {
  font-size: 1.6rem;
  margin: 30px 0;
  text-align: center;
}
/*PC版コンテナ*/
.container {
  max-width: 1200px;
  margin: 0 auto;
}
/*テーブルの装飾*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 15px;
}
table tr {
  border-bottom: solid 1px #000;
}
table th, table td {
  text-align: start;
  padding: 15px 0;
}
table th {
  width: 30%;
}
/*蛍光ペンアンダーライン*/
.marker_yellow {
    background: linear-gradient(transparent 60%, #ffff66 60%);
}
/* =============================================
ヘッダー
============================================= */
/*ロゴ*/
.logo {
  text-align: center;
  padding: 30px 0;
}
/*ナビゲーションメニュー*/
nav ul {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  padding: 0;
  font-size: 24px;
}
/*リンク*/
a {
  color: inherit;
  text-decoration: none;
}
nav a {
  display: inline-block;
  position: relative;
}
nav a:hover {
  opacity: 0.7;
}
/*navのマウスオーバー時にアンダーライン*/
nav a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #555;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
footer nav a:before {
  background: #fff;
}
nav a:hover:before {
  transform: scale(1);
}
/* =============================================
メインビジュアル
============================================= */
/*メインビジュアル*/
.main_visual {
  padding: 30px 0;
}
/* PC時の画像表示切り替え */
.pcimg {
  display: block !important;
}
.spimg {
  display: none !important;
}
/* =============================================
Profile
============================================= */
/*Profile*/
.container .profile {
  display: flex;
  flex-direction: row;
}
.prof-itemA {
  flex-basis: 45%;
  margin-right: 50px;
}
.prof-itemB {
  flex-basis: 55%;
}
.prof-itemB h2 {
  margin: 0 0 30px 0;
}
/*.prof-text{
	margin-bottom: 0.5em;
}*/
/* =============================================
Skill
============================================= */
.skill_area {
  display: flex;
  justify-content: space-around;
}
.skill_area p {
  text-align: center;
}
.skillname {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
}
figure img {
  cursor: pointer;
}
.skill_detail {
  text-align: center;
  margin: 30px;
  font-weight: bold;
}
.skill_detail_area {
  margin: 30px;
  padding: 20px;
  background: #fefefe;
  height: auto;
}
/* =============================================
Works：ボタンに関する記述
============================================= */
.works-side {
  font-size: 1.2rem;
  padding: 5px;
  margin: 0px;
  text-shadow: 2px 2px 3px #fff, -2px 2px 3px #fff, 2px -2px 3px #fff, -2px -2px 3px #fff;
}
.works-fixed {
  position: fixed;
  right: 10px;
  top: 30vh;
  z-index: 2;
}
.works-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}
button {
  background: #0f0f0f;
  color: #fff;
  border: none;
  position: relative;
  width: 5em;
  height: 60px;
  font-size: 1.6rem;
  padding: 0 1.5rem;
  cursor: pointer;
  transition: 800ms ease all;
  outline: none;
  margin: 10px 0;
}
button:hover {
  background: rgba(255, 255, 255, .0);
  color: #0f0f0f;
}
button:before, button:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 2px;
  width: 0;
  background: #0f0f0f;
  transition: 400ms ease all;
}
button:after {
  right: inherit;
  top: inherit;
  left: 0;
  bottom: 0;
}
button:hover:before, button:hover:after {
  width: 100%;
  transition: 800ms ease all;
}
/* =============================================
Works：Webサイト制作実績
============================================= */
.web_box {
  display: flex;
}
.web_pic_slider {
  flex: 1.2;
}
.web_txt_slider {
  flex: 1;
  padding-left: 30px;
}
.br-pb {
  display: block;
  content: "";
  padding-bottom: 10px;
}
/* =============================================
Works：バナー制作実績
============================================= */
#works_bn {
  margin-top: 60px;
}
.banner {
  display: flex;
  justify-content: space-between;
}
.bn-itemA, .bn-itemB, .bn-itemC {
  flex-basis: 30%;
}
/* =============================================
Works：動画制作実績
============================================= */
.movie {
  display: flex;
  justify-content: space-between;
}
.mov-itemA, .mov-itemB {
  flex-basis: 48%;
}
/* =============================================
Works：その他制作実績
============================================= */
.container .others {
  display: flex;
  flex-direction: row;
  margin-bottom: 30px;
}
.oth-itemA {
  flex: 1.2;
  margin-right: 50px;
}
.oth-itemB {
  flex: 1;
}
.oth-itemB h2 {
  margin: 0 0 30px 0;
}
/* =============================================
フッター
============================================= */
.pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  text-align: center;
  background: #0f0f0f;
  line-height: 50px;
}
footer {
  margin-top: 60px;
  padding-bottom: 15px;
  background-color: #0f0f0f;
  color: #ffffff;
  height: auto;
  text-align: center;
}
footer nav {
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
}
.footer-nav-sp {
  display: none;
}
/* =============================================
JQuery用の記述
============================================= */
/*inview(フェードイン)*/
/*その場でフェードイン*/
.fadein {
  opacity: 0;
  transition: 1s;
}
.fadein.is-show {
  opacity: 1;
}
/*上方向へフェードイン*/
.fade_to_top {
  opacity: 0;
  transform: translate(0, 30%);
  transition: 1s;
}
.fade_to_top.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*右方向へフェードイン*/
.fade_to_right {
  opacity: 0;
  transform: translate(-30%, 0);
  transition: 1s;
  padding: 0;
}
.fade_to_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*左方向へフェードイン*/
.fade_to_left {
  opacity: 0;
  transform: translate(30%, 0);
  transition: 1s;
  padding: 0;
}
.fade_to_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/* =============================================
Luminous用の記述
============================================= */
/*虫眼鏡アイコン*/
a.zoom {
  position: relative;
  display: block;
}
a.zoom::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: url("../img/zoom.png");
  background-size: 1em 1em;
  background-position: center center;
  background-repeat: no-repeat;
}
/*ズーム後の画像サイズ*/
.lum-lightbox-inner img {
  max-width: 40%;
  max-height: 100%;
}
/*矢印削除*/
.lum-gallery-button {
  display: none !important;
}
/* =============================================
タブレット用の記述
============================================= */
@media (max-width : 1024px) {
  .container {
    max-width: 750px;
    margin: 0 auto;
  }
  /*inview.js：タブレット以下は左右のフェードインを上方向へ変更*/
  .fade_to_right, .fade_to_left {
    transform: translate(0, 30%);
  }
  /*画面右側に固定しているWorksボタンの設定*/
  button {
    font-size: 1.4rem;
    margin: 5px;
  }
  .works-side {
    display: none;
  }
  .works-fixed {
    position: static;
    right: 0;
    top: 0;
  }
  .works-btn {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }
  .web_box {
    flex-direction: column;
  }
  .web_txt_slider {
    padding-left: 0;
  }
  .movie {
    flex-direction: column;
    text-align: center;
  }
  /*固定フッターメニュー*/
  footer {
    padding-bottom: 49px;
    background-color: rgba(0, 0, 0, 1);
  }
  footer nav {
    padding: 5px 0;
    max-width: 100%;
    margin: 0 auto;
    color: #fff;
  }
  .footer-nav-sp {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .footer-nav-list {
    display: table;
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  .footer-nav-item {
    display: table-cell;
    border-left: dotted 0.5px gray;
    border-right: dotted 0.5px gray;
    padding: 4px 0px;
  }
  .footer-nav-item a {
    text-decoration: none;
    display: block;
  }
  .footer-nav-item i {
    display: block;
    font-size: 24px;
  }
  .footer-nav-item a span {
    display: block;
    font-size: 10px;
  }
  .footer-nav-pc {
    display: none;
  }
  .pagetop {
    bottom: 90px;
  }
}
/* =============================================
スマートフォン用の記述
============================================= */
@media (max-width : 599px) {
  h2 {
    margin: 30px 0;
  }
  h3 {
    margin: 15px 0;
  }
  .container {
    max-width: 414px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  /*ヘッダーのnav削除*/
  header nav {
    display: none;
  }
  /* スマートフォン時の画像表示切り替え */
  .pcimg {
    display: none !important;
  }
  .spimg {
    display: block !important;
  }
  /*Profile*/
  .container .profile {
    flex-direction: column;
  }
  .prof-itemA {
    margin-right: 0;
  }
  /*Skill*/
  .skill_area {
    justify-content: center;
    flex-wrap: wrap;
  }
  .skill-item {
    width: 30%;
    margin: 5px;
  }
  /*Works*/
  .works-btn {
    flex-direction: column;
  }
  button {
    width: 100%;
    margin: 5px 0;
  }
  .banner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .container .others {
    flex-direction: column;
  }
  .oth-itemA {
    margin-right: 0;
  }
  /*iframeの横幅*/
  iframe {
    width: 100%;
  }
  /*固定ページトップボタン非表示*/
  .pagetop a {
    display: none;
  }
  /*Luminous用の記述*/
  /*ズーム後の画像サイズ*/
  .lum-lightbox-inner img {
    max-width: 100%;
  }
}