@charset "UTF-8";
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
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, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* 追加設定
----------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  max-width: 100%;
}

/* 追加設定
----------------------------------------------- */
/* 共通設定
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

body {
  font-family: 'Noto Sans JP', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.8em;
  color: #0e0e0e;
  letter-spacing: 0.25em;
}

a {
  text-decoration: none;
  color: #606060;
}

ul li {
  list-style-type: none;
}

/* ハンバーガーボタン
----------------------------------------------- */
.humberger {
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 55px;
  height: 55px;
  background: url("../images/common/open.png") no-repeat;
  background-size: contain;
  top: 20px;
  right: 18px;
  cursor: pointer;
  z-index: 101;
  text-indent: -9999px;
}

.humberger.open {
  background: url("../images/common/close.png") no-repeat;
  background-size: contain;
}

/* ヘッダー
----------------------------------------------- */
header {
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
  /* mobile */
}

header h1 {
  margin-left: 50px;
  margin-top: 100px;
  font-family: "Roboto", "Avenir-Light", sans-serif;
  font-size: 10px;
  font-weight: 100;
  letter-spacing: 0.33em;
}

header h1 img {
  margin-bottom: 5px;
}

header .contact_area {
  margin-top: 45px;
  margin-right: 50px;
}

header .contact_area a.contact_btn .text {
  display: inline-block;
  color: #276FC4;
  font-family: "Roboto", "Avenir-Light", sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-style: italic;
  margin-right: 20px;
}

header .contact_area a.contact_btn .icon {
  width: 53px;
  height: 53px;
  background: #276FC4;
  display: inline-block;
  text-align: center;
  border-radius: 53px;
  padding-top: 18px;
  position: relative;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
          box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

header .contact_area a.contact_btn .icon:before {
  -webkit-transition: 0.1s;
  transition: 0.1s;
  content: "";
  display: block;
  width: 10px;
  padding-top: 3px;
  background: #276FC4;
  position: absolute;
  left: -20px;
  top: 50%;
  opacity: 0;
}

header .contact_area a.contact_btn:hover {
  cursor: pointer;
}

header .contact_area a.contact_btn:hover .icon:before {
  left: -10px;
  opacity: 1;
}

@media print, screen and (max-width: 767px) {
  header {
    display: block;
    margin-bottom: 40px;
  }
  header h1 {
    margin-left: 20px;
    margin-top: 40px;
  }
}

/* グローバルナビ
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  nav.global {
    background: white;
  }
  nav.global ul {
    padding: 35px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  nav.global ul li a {
    font-family: "Roboto", "Avenir-Light", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    display: inline-block;
    margin-right: 100px;
    padding: 10px;
    position: relative;
  }
  nav.global ul li a:before {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    position: absolute;
    top: 10px;
    left: -8px;
    content: url("../images/header/dot.png");
    opacity: 0;
  }
  nav.global ul li a:hover:before {
    opacity: 1;
  }
  nav.global ul li:last-child a {
    margin-right: 50px;
  }
  nav.global ul li a.current {
    position: relative;
  }
  nav.global ul li a.current:after {
    position: absolute;
    top: 10px;
    left: -8px;
    content: url("../images/header/dot.png");
  }
}

@media screen and (max-width: 767px) {
  nav.global {
    display: none;
    overflow-y: auto;
    background: white;
    position: fixed;
    z-index: 9999;
    height: 100%;
    top: 0;
    width: 300px;
    border-right: solid 1px #e4e2d8;
  }
  nav.global ul li a {
    font-family: "Roboto", "Avenir-Light", sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.15em;
    display: block;
    padding: 10px;
  }
  nav.global ul > li {
    white-space: nowrap;
    padding: 1em;
    border-bottom: dotted 1px #cccccc;
  }
}

/* PC */
@media print, screen and (min-width: 768px) {
  body.fixed header {
    margin-bottom: 175px;
  }
  body.fixed .global {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
  }
}

/* コンテンツ部分の囲みと直下のh2
----------------------------------------------- */
div.container {
  max-width: 1200px;
  margin: 0 auto;
}

div.container > h2 {
  font-family: "Roboto", "Avenir-Light", sans-serif;
  font-size: 16px;
  color: #606060;
  letter-spacing: 0.25em;
  margin-left: 35px;
  margin-bottom: 120px;
  font-weight: 100;
  /* mobile */
}

@media print, screen and (max-width: 767px) {
  div.container > h2 {
    margin-bottom: 50px;
  }
}

.content_720 {
  max-width: 720px;
  margin: 0 auto;
}

.content_780 {
  max-width: 780px;
  margin: 0 auto;
}

/* サブページカバー
----------------------------------------------- */
h1.sub_cover {
  text-indent: -9999px;
  padding-top: 5.5%;
  margin-bottom: 45px;
  /* mobile */
}

@media print, screen and (max-width: 767px) {
  h1.sub_cover {
    padding-top: 18%;
    margin-bottom: 15px;
  }
}

h1.cover_works {
  background: url("../images/works/cover.jpg") no-repeat left center;
  background-size: cover;
}

h1.cover_blog {
  background: url("../images/blog/cover.jpg") no-repeat left center;
  background-size: cover;
}

h1.cover_profile {
  background: url("../images/profile/cover.jpg") no-repeat left center;
  background-size: cover;
}

h1.cover_contact {
  background: url("../images/contact/cover.jpg") no-repeat left center;
  background-size: cover;
}

h1.cover_workflow {
  background: url("../images/workflow/cover.jpg") no-repeat left center;
  background-size: cover;
}

/* パンくずナビ
----------------------------------------------- */
section.breadcrumbs {
  font-size: 10px;
  color: #606060;
  letter-spacing: 0.25em;
  margin-bottom: 115px;
  /* mobile */
}

@media print, screen and (max-width: 767px) {
  section.breadcrumbs {
    padding: 0 10px;
    margin-bottom: 65px;
  }
}

/* フッター
----------------------------------------------- */
.footer {
  padding: 0 35px 35px;
  /* mobile */
}

.footer .sns {
  padding-bottom: 50px;
}

.footer .sns a {
  display: inline-block;
  padding: 0 10px 20px 5px;
}

.footer .content_wrap {
  overflow: hidden;
  position: relative;
  letter-spacing: 0.15em;
  background: url("../images/footer/ants_bg.png") no-repeat right bottom #f5f5f5;
  padding: 85px 55px 25px;
  z-index: 0;
}

.footer .content_wrap .company_info {
  margin-bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .content_wrap .company_info .logo {
  margin-right: 50px;
}

.footer .content_wrap .company_info .address {
  font-size: 10px;
  line-height: 1.8em;
}

.footer .content_wrap .copy {
  font-size: 10px;
  color: #606060;
}

@media print, screen and (max-width: 767px) {
  .footer {
    padding: 0 10px 95px;
  }
  .footer .content_wrap {
    padding: 85px 10px 15px;
    background: url("../images/footer/ants_bg.png") no-repeat right -85px bottom #f5f5f5;
  }
  .footer .content_wrap .company_info {
    margin-bottom: 35px;
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .content_wrap .company_info .logo {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .footer .content_wrap .copy {
    font-size: 10px;
    color: #606060;
  }
  .footer .content_wrap:after {
    top: -255px;
  }
}

/* ページトップボタン
----------------------------------------------- */
#btn-block {
  position: fixed;
  bottom: 35px;
  right: 35px;
  z-index: 9999;
}

#btn-block .page_top {
  color: #276FC4;
  border: solid 1px #276FC4;
  border-radius: 55px;
  background: white;
  width: 55px;
  height: 55px;
  cursor: pointer;
  text-align: center;
  padding-top: 8px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

#btn-block .page_top span {
  font-size: 12px;
}

@media print, screen and (min-width: 768px) {
  #btn-block .page_top:hover {
    padding-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  #btn-block {
    bottom: 0;
    right: 10px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #btn-block .btn_contact {
    max-width: calc(100% - 70px);
    width: 100%;
    height: 55px;
    padding-left: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #btn-block .btn_contact a {
    text-align: center;
    -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
    color: #0e0e0e;
    padding-top: 10px;
    font-size: 12px;
    display: block;
    width: 49%;
    height: 55px;
    line-height: 1.7em;
  }
  #btn-block .btn_contact a i.fa {
    font-size: 16px;
  }
  #btn-block .btn_contact a.tel {
    background: gainsboro;
  }
  #btn-block .btn_contact a.reserve {
    background: gainsboro;
  }
}

/* 投稿一覧
----------------------------------------------- */
ul.post_archive {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
  /* mobile */
}

ul.post_archive li {
  width: 50%;
  margin-bottom: 45px;
}

ul.post_archive li a {
  /* PC */
}

ul.post_archive li a .thumb {
  position: relative;
  overflow: hidden;
  padding-top: 50%;
}

ul.post_archive li a .thumb img {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

ul.post_archive li a .title_wrap {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  padding: 20px;
}

ul.post_archive li a .title_wrap .title {
  line-height: 1.4em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 14px;
  color: #0e0e0e;
  font-weight: 900;
  letter-spacing: 0.3em;
  margin-bottom: 15px;
}

ul.post_archive li a .title_wrap .date {
  font-size: 10px;
  color: #606060;
  font-family: "Roboto", "Avenir-Light", sans-serif;
  letter-spacing: 0.15em;
}

@media print, screen and (min-width: 768px) {
  ul.post_archive li a:hover .thumb img {
    -webkit-transform: scale(1.01, 1.01);
            transform: scale(1.01, 1.01);
  }
  ul.post_archive li a:hover .title_wrap {
    background: #f0f0f0;
  }
  ul.post_archive li a:hover .title_wrap .title {
    color: gray;
  }
}

@media print, screen and (max-width: 767px) {
  ul.post_archive {
    width: 100%;
    display: block;
    padding: 0 10px;
  }
  ul.post_archive li {
    width: 100%;
    margin-bottom: 35px;
  }
  ul.post_archive li a .thumb {
    margin-bottom: 15px;
  }
  ul.post_archive li a .title {
    margin-bottom: 10px;
  }
}

/* ページナビ */
.page_nav {
  text-align: center;
  margin-bottom: 125px;
  /* mobile */
}

.page_nav .wp-pagenavi {
  letter-spacing: 2em;
  font-size: 20px;
  font-family: "Roboto", "Avenir-Light", sans-serif;
}

@media print, screen and (max-width: 767px) {
  .page_nav {
    margin-bottom: 75px;
  }
}

/* 矢印ボタン */
.arrow_btn {
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #276FC4;
  font-family: "Roboto", "Avenir-Light", sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-style: italic;
  width: 300px;
  padding-bottom: 15px;
  border-bottom: solid 1px #276FC4;
  background: url("../images/common/skew_line.png") no-repeat right bottom;
}

.arrow_btn:hover {
  /* PC */
}

@media print, screen and (min-width: 768px) {
  .arrow_btn:hover {
    padding-left: 3px;
  }
}
/*# sourceMappingURL=common.css.map */