@charset "utf-8";
/* CSS Document */


*{
    margin: 0;
    padding: 0;
    font-family: 'Raleway','Hiragino Kaku Gothic ProN', 'Meiryo', 'sans-serif';
}

/*ヘッダー：メニュー*/

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #fff;

}

.logo {
  font-size: 24px;
}

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

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
  
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  left: 0;/* メニューを画面に入れる */
}

.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .4s;

}
.menu-trigger.active span:nth-of-type(1) {
  transform: translate(50%) scale(0);
}
.menu-trigger.active span:nth-of-type(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-trigger.active span:nth-of-type(2)::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.menu-trigger.active span:nth-of-type(3) {
  transform: translate(-50%) scale(0);
}
.drawer-content li{
    list-style: none;
}
.drawer-content a{
    text-decoration: none;
    color:#000;
    display: block;
    text-align: center;
    padding: 20px 0px;
    color: #444;
}
.drawer-content a:hover{
    background-color: #eee;
}
.logo img{
    width:300px;
    height: auto;
}
.list_min{
    display: block;
    font-size: 14px;
    padding: -20px 0px;
    margin: -10px 0px;
}

/*ヒーローイメージ*/
.hero{
    background-image: linear-gradient(rgba(230,230,230,0.7),rgba(230,230,230,0.7)),url(../image/heroimage.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    width: auto;
}
.hero{
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero img{
    height: auto;
    width:50vw;
    max-width: 500px;
    max-height: 300px;
}

/*スクロールダウンアニメーション*/
.hero a {
  display: inline-block;
  position: absolute;
  right: 40px;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 110px;
  overflow: hidden;
  color: #444;
  font-size: 14px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr;
}
.hero a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background: #444;
}
.hero a::after {
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/*TOPへ戻るボタン*/
#page_top{
  width: 60px;
  height: 60px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
#page_top a{
  width: 60px;
  height: 60px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f139';
  font-size: 50px;
  color: #444;
}



/*メイン アバウト*/

.con_about{
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
}
.con{
     margin: 20px 30px;
    color:#444;
}
.con h1{
    font-size: 22px;
    letter-spacing: 0.3em;
    margin-left: 0.3em;
    text-align: center;
    margin-top: 30px;
}
.con h2{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.con p{
    font-size: 14px;
    line-height: 1.8;
}
.link_btn a{
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    color:#444;
    letter-spacing: 0.3em;
    margin-left: 0.3em;
    padding: 5px 20px;
    border-left: 1px solid #444;
    border-bottom: 1px solid #444;
    border-radius: 2px;
    width:100px;
}
.link_btn a:hover{
    background-color: #eee;
}
.link_btn{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 50px;
}

/*work*/
.con_work{
    margin: 0;
    padding: 1px 30px;
    background-color: #eee;
}
.link_btn_work a{
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    color:#444;
    letter-spacing: 0.3em;
    margin-left: 0.3em;
    padding: 5px 20px;
    border-left: 1px solid #444;
    border-bottom: 1px solid #444;
    border-radius: 2px;
    width:100px;
}
.link_btn_work a:hover{
    background-color: #999;
}
.link_btn_work{
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
}

/*スライダー*/
.slider{
    margin: 20px auto;
    width: 100%;
    max-width: 1200px;
}
.slider img{
    height: auto;
    width: 90%;
}
/*slick setting*/
.slick-prev:before,
.slick-next:before {
    color: #444;
}
.slider{
    margin: 0px auto;
    width: 100%;
    opacity: 0;
    transition: 3s;
}
.slick-initialized{
    opacity: 1
}

/*サービス*/
.con_service{
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
    margin-top: 50px;
}
.con_service p{
    text-align: center;
}
.text{
    text-align: center;
    margin: 30px 20px;
}
.text h3{
    margin: 10px 0px;
    letter-spacing: 0.2em;
}
.text p{
    font-size: 13px;
}
@media(min-width:768px){
    .iconbox{
        display: flex;
    }
    .text{
        flex: 1;
        margin-top: 30px;
        margin-right: 15px;
    }
    .text img{
        width: 100px;
        height: auto;
    }
}

/*フッター*/
.foot{
    background-color: #eee;
    text-align: center
}
.foot img{
    width:50%;
    height: auto;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.foot p{
    padding: 20px;
}

/*プロフィール*/

.con_plo{
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
}
/*プロフィール-スキル*/
.skill{
    margin-left: auto;
    margin-right: auto;
   max-width: 1080px;
}
.list_skill{
    list-style: none;
    display: block;

    font-size: 14px;
}
.list_skill li{
    margin: 20px 20px;
}
.plo_title{
    margin: 10px 20px;
    background-color: #eee;
    padding: 5px 5px;
    text-align: center;
    letter-spacing: 0.3em;
    margin-top: 30px;
}
.name{
    font-size: 18px;
    margin-bottom: 15px;
    padding: 0px 20px 5px 20px;
    text-align: center;
    font-weight: 400;
    border-bottom: 2px solid #eee;
    display: block;
}
.plo_ai:before{
        content: '';/*何も入れない*/
      display: inline-block;/*忘れずに！*/
      width: 30px;/*画像の幅*/
      height: 30px;/*画像の高さ*/
      background-image: url(../image/icon_ai.png);
      background-repeat: none;
      background-size: contain;
      vertical-align: middle;
    margin-right: 10px;
}
.plo_ps:before{
        content: '';/*何も入れない*/
      display: inline-block;/*忘れずに！*/
      width: 30px;/*画像の幅*/
      height: 30px;/*画像の高さ*/
      background-image: url(../image/icon_ps.png);
      background-repeat: none;
      background-size: contain;
      vertical-align: middle;
    margin-right: 10px;
}
.plo_web:before{
        content: '';/*何も入れない*/
      display: inline-block;/*忘れずに！*/
      width: 30px;/*画像の幅*/
      height: 30px;/*画像の高さ*/
      background-image: url(../image/icon_web.png);
      background-repeat: none;
      background-size: contain;
      vertical-align: middle;
    margin-right: 10px;
}
.plo_mp:before{
        content: '';/*何も入れない*/
      display: inline-block;/*忘れずに！*/
      width: 30px;/*画像の幅*/
      height: 30px;/*画像の高さ*/
      background-image: url(../image/icon_comic.png);
      background-repeat: none;
      background-size: contain;
      vertical-align: middle;
    margin-right: 10px;
}

/*プロフィール-キャリア*/
.career{
    margin-left: auto;
    margin-right: auto;
   max-width: 1080px;
}
.list_career{
    list-style: none;
    display: block;
    margin: 20px 20px;
    font-size: 14px;
}
.list_career li{
    margin: 30px 0px;
    line-height: 1.5;
    color:#444;
}
.car_text{
    display: block;
    font-size: 15px;
    margin-bottom: -10px;
    border-bottom: 2px dotted #ccc;
    
}

/*WORK*/
.work_wrap{
   width:90%;
    margin: 0 auto;
}

.work_gd{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1080px;
}
.work_gd img{
    width: 100px;
    height: 100px;
    padding: 5px;
}
.work_gd img:hover{
    opacity: 0.5;
}
.work_text{
    text-align: center;
}

.work_pc{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1080px;
}
.work_pc img{
    width: auto;
    height: 100px;
    padding: 5px;
}
.work_pc img:hover{
    opacity: 0.5;
}
.work_comic{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    max-width: 1080px;
}
.work_comic img{
    width: auto;
    height: 300px;
    padding: 5px;
}
.work_comic img:hover{
    opacity: 0.5;
}
.comic_link{
    text-align: center;
    font-size: 14px;
}
.comic_link a{
    text-decoration: none;
    color: #444;
    background-color:#fff;
    border: 1px solid #444;
    padding: 3px 20px;
    display: inline-block;
    margin: 20px 0px 10px 0px;
}
.comic_link a:hover{
    background-color: #eee;
}
.comic_link p{
    font-size: 13px;
}

/*CONTACT*/
.contact_text h1{
    font-size: 22px;
    letter-spacing: 0.3em;
    margin-left: 0.3em;
    text-align: center;
    margin-top: 30px;
}
.contact_text h2{
    font-size: 20px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
.contact_text p{
    font-size: 14px;
    line-height: 1.8;
}