@charset "utf-8";
/*
Theme Name: 
Theme URL: 
Description: 
Version: 1.0.0
Author: 
Author URI: 
*/
/* 上記WordPress用 */



/* --- ResetCSS START --- */

/* 要素のフォントサイズやマージン・パディング */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
	font-weight: normal;
	font-style: normal;
    vertical-align:baseline;
}

/* スクロールバーを常に表示 */
html {
	overflow-y: scroll;
}

/* 行の高さをフォントサイズと同じに */
body {
    line-height:1;
}
 
/* section要素などをブロック要素へ変更 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* リストスタイルを削除 */
ol, ul {
    list-style:none;
}

/* 引用符の表示が出ないように */
blockquote, q {
    quotes:none;
}
 
/* blockquote要素、q要素の前後にコンテンツを追加しないように */
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
 
/* a要素のフォントサイズなどをリセットしフォントの縦方向の揃え位置を親要素のベースラインに揃える */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
	text-decoration: none;
	color: #000000;
}
 
/* ins要素のデフォルトをセットし、色を変える場合はここで変更できるように */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
 
/* mark要素のデフォルトをセットし、色やフォントスタイルを変える場合はここで変更できる
mark要素は、文書内の検索結果で該当するフレーズをハイライトして、目立たせる際に使用*/
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
 
/* テキストに打ち消し線を付ける */
del {
    text-decoration: line-through;
}
 
/* IEではデフォルトで点線を下線表示する設定ではないので、下線がつくように
マウスオーバー時にヘルプカーソルの表示が出るように */
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
 
/* 隣接するセルのボーダーを重ねて表示し、間隔を0に指定 */
table {
    border-collapse:collapse;
    border-spacing:0;
}
 
/* 水平罫線のデフォルトである立体的な罫線を不可視に */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
 
/* 縦方向の揃え位置を中央揃えに指定 */
input, select {
    vertical-align:middle;
}

/* 画像を縦に並べたときに余白が出ないように */
img {
	vertical-align: bottom;
	font-size:0;
	line-height: 0;
	border: 0;
}

/* 文字を太字に */
strong {
	font-weight: bold;
}

/* サイズにpaddingとborderを含める */
*, *:before, *:after {
	box-sizing: border-box;
}

/* clearfix */
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}

button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

/* --- ResetCSS END --- */


.sp-nav {
	display: none;
}

.sp {
  display: none;
}

html {
	font-size: 62.5%;
}

body {
	font-size: 1.6rem;
	color: #333333;
	position: relative;
	font-family: ryo-gothic-plusn, sans-serif;
	font-weight: 400;
	font-style: normal;
    letter-spacing: .05em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.en {
    font-family: 'Montserrat', sans-serif;
}


/* ヘッダー */
  header {
    height: 80px;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 24px;
  }
  .header_logo img {
    height: 50px;
  }
  header nav {
    display: flex;
    align-items: center;
    margin: 0 0 0 auto;
    margin-right: 60px;
  }
  .list_nav_header {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  @media screen and (min-width:768px) and ( max-width:1024px) {
    .list_nav_header {
      display: none;
    }
  }

  @media screen and (max-width:768px) {
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
    header {
      height: 70px;
      padding: 0 20px;
    }
    .header_logo img {
      height: 40px;
    }
    .list_nav_header {
      display: none;
    }
  }
  
  /* バーガー */
  .burger {
    width: 40px;
    height: 40px;
    background-image: url(../img/burger.svg);
    background-size: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #fff;
    margin: 0 0 0 80px;
    border-radius: 4px;
    cursor: pointer;
    position: fixed;
    z-index: 2;
    right: 25px;
  }
  .burger:hover {
    background-color: #ddd;
  }
  .burger.is-active {
    background-image: url(../img/close.svg);
    position: fixed;
    right: 25px;
    background-color: #333;
  }
  
  /* メニュー */
  .modal_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 100vh;
    background-color: #333;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
  }
  .menu {
    color: #fff;
    display: flex;
    justify-content: center;
    gap: 80px;
  }
  .modal_menu li a {
    color: #fff;
  }
  .modal_menu.is-active {
    display: flex;
  }
  .modal_menu .menu ul li {
    font-size: 5rem;
    padding-bottom: 30px;
  }
  .modal_menu_subinner {
    align-items: flex-start;
  }
  .modal_menu_subinner li {
    line-height: .5;
  }
  .modal_menu_subinner li a {
    font-size: 3rem;
  }

  @media screen and (max-width:768px) {
    .burger {
      right: 5px;
    }
    .burger.is-active {
      right: 5px;
    }
    .menu {
      flex-direction: column;
      text-align: center;
      gap: 35px;
    }
    .modal_menu .menu ul li {
      font-size: 3rem;
      padding-bottom: 20px;
    }
    .modal_menu_subinner {
      align-items: flex-start;
    }
    .modal_menu_subinner li {
      line-height: .5;
    }
    .modal_menu_subinner li a {
      font-size: 1.8rem;
    }
  }

/*ワーク*/
.work {
  padding-bottom: 150px;
}
.work_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.work_item {
  width: 23%;
  border-radius: 10px 10px 10px 10px;
  box-shadow: -5px -5px 20px #fff,
  5px 5px 20px #babecc;
  transition: all .2s ease-in-out;
  cursor: pointer;
  background-color: #f8f8f8;
}

.work_item:hover {
  box-shadow: -2px -2px 5px #fff,
  2px 2px 5px #babecc;
}

.work_item img {
  width:  100%;
  border-radius: 10px 10px 0 0;
}

.work_title {
  padding: 20px 15px 25px;
  font-size: 1.8rem;
  font-weight: 700;
}

.work_hashtag {
  padding: 0px 15px 20px;
  line-height: 1.2;
}

.work button {
  display: block;
  margin: 0 auto;
}

.work .button {
  padding: 20px 80px;
}

@media screen and (min-width:768px) and ( max-width:1024px) {
  
}

@media screen and (max-width:768px) {
  .work {
    padding-bottom: 150px;
  }
  .work_inner {
    flex-direction: column;
    margin-bottom: 60px;
  }
  
  .work_item {
    width: 100%;
    margin-bottom: 50px;
  }
  
  .work_title {
    padding: 20px 15px 25px;
    font-size: 1.6rem;
  }
  
  .work_hashtag {
    font-size: 1.4rem;
  }
  
  .work button {
    display: block;
    margin: 0 auto;
  }
}

/*コンタクト*/
.contact {
    background-color: #F8F8F8;
    padding: 130px 0;
  }

  .section_title {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: .04em;
  }
  
  .contact_inner {
    display: flex;
    justify-content: center;
   }
  
   .contact_inner a {
    border: 5px solid #333333;
    padding: 40px 30px;
    box-shadow: -10px -10px 20px #fff,
    10px 10px 20px #babecc;
    transition: all .2s ease-in-out;
    cursor: pointer;
   }
  
   .contact_inner a:hover {
    box-shadow: -2px -2px 5px #fff,
    2px 2px 5px #babecc;
   }
  
   .section_title_contact {
    margin-bottom: 50px;
   }
  
  .contact_txt {
    text-align: center;
  }

  @media screen and (max-width:768px) {
    .contact {
      padding: 80px 0;
    }
  
    .section_title {
      font-size: 3rem;
      margin-bottom: 60px;
    }
    
     .contact_inner a {
      padding: 30px 20px;
     }
    
     .contact_inner .section_title_contact {
      margin-bottom: 30px;
     }
  }

  /*フッター*/
  .footer {
    background-color: #202020;
  }

  .footer_inner {
    display: flex;
    justify-content: space-between;
    padding: 80px 0 80px;
  }

  .footer_menu_inner {
    display: flex;
    gap: 100px;
  }

  .footer_menu_inner ul li {
    margin-bottom: 20px;
  }

  .footer_menu_inner ul li a {
    color: #fff;
  }

  .copy {
    color: #fff;
    text-align: center;
    font-size: 1.4rem;
    padding-bottom: 20px;
  }

  @media screen and (max-width:768px) {
    .footer_inner {
      flex-direction: column;
      padding: 60px 0 40px;
    }

    .footer_logo {
      text-align: center;
      padding-bottom: 60px;
    }
  
    .footer_menu_inner {
      gap: 0;
      justify-content: space-around;
    }
  
    .footer_menu_inner ul li a {
      font-size: 1.4rem;
    }
  
    .copy {
      color: #fff;
      text-align: center;
      font-size: 1.4rem;
      padding-bottom: 20px;
    }
  }

/*ページ*/
.main_title {
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 100px;
  letter-spacing: .04em;
}

.section_subtitle {
  font-family: ryo-gothic-plusn, sans-serif;
  font-weight: 400;
	font-style: normal;
  font-size: 2rem;
  display: block;
  margin-top: 15px;
}

@media screen and (max-width:768px) {
  .main_title {
    font-size: 3rem;
    margin-bottom: 60px;
  }
  
  .section_subtitle {
    font-size: 1.7rem;
  }
}