@charset "UTF-8";
/* 基本設定 ------------------------------------------------------------------- */
html, body {
  height: 100%;
}
html {
  font-size: 62.5%;
}
body {
  color: #fff;
  font-family: Arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
a {
  color: #fff;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a, img {
  outline: none;
}
ul, ol {
  list-style: none;
}
* {
  padding: 0;
  margin: 0;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
}
.clearfix {
  display: block;
}
.clearfix:before, .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
/* ブロック設定 --------------------------------------------------------------- */
#wrap {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  height: auto !important;
  height: 100%;
  background-color: #0087be;
  overflow: hidden;
}
.section {
  padding: 150px 0;
}
.content-area {
  margin: auto;
  padding: 0 15px;
}
.content-area.lg {
  max-width: 1280px;
}
.content-area.md {
  max-width: 960px;
}
.content-area.sm {
  max-width: 760px;
}
.msg-box p {
  margin-top: 10px;
}
/* スクロールアニメ設定 --------------------------------------------------------- */
.fa {
  opacity: 0;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  transition: all 1s ease-out;
}
.fa.show {
  opacity: 1;
  transform: none;
}
.fade-left {
  transform: translate(-100px, 0);
}
.fade-right {
  transform: translate(100px, 0);
}
.fade-up {
  transform: translate(0, 100px);
}
.fade-down {
  transform: translate(0, -100px);
}
.zoom-in {
  transform: scale(0.5);
}
.zoom-out {
  transform: scale(1.5);
}
.rotate-left {
  transform: rotate(180deg);
}
.rotate-right {
  transform: rotate(-180deg);
}
/* ヘッダー設定 --------------------------------------------------------------- */
#header {
  position: fixed;
  width: 100%;
  height: 70px;
  z-index: 1000;
  -webkit-transition: all 0.7s ease-in;
  -moz-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}
.scroll.do {
  background-color: rgba(0, 0, 0, 0.5);
}
#header-inner {
  display: flex;
  max-width: 1280px;
  height: 70px;
  margin: auto;
  padding: 10px 15px;
  align-items: center;
}
#header .logo.active img {
  filter: none;
}
#header .logo {
  z-index: 1000;
}
.logo a {
  display: inline-block;
}
.logo img {
  width: 150px;
  height: 25px;
}
.home .logo img {
  filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.7));
}
/* PCナビ設定 ----------------------------------------------------------------- */
.nav-icon {
  display: block;
  position: relative;
  width: 5px;
  height: 5px;
  margin: auto auto 5px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  -webkit-transition: -webkit-transform ease-out 0.1s, background 0.2s;
  -moz-transition: -moz-transform ease-out 0.1s, background 0.2s;
  transition: transform ease-out 0.1s, background 0.2s;
  box-shadow: 1px 1px 3px #000;
}
.nav-icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0;
}
#pc-nav .gnav a:hover .nav-icon {
  background: rgba(255, 255, 255, 0.75);
  -webkit-transform: scale(0.93);
  -moz-transform: scale(0.93);
  -ms-transform: scale(0.93);
  transform: scale(0.93);
}
#pc-nav .gnav a:hover .nav-icon:after {
  -webkit-animation: sonarEffect 1.3s ease-out 75ms;
  -moz-animation: sonarEffect 1.3s ease-out 75ms;
  animation: sonarEffect 1.3s ease-out 75ms;
}
.thumb, .nav-item-description {
  -webkit-transition: all 0.7s ease-in;
  -moz-transition: all 0.7s ease-in;
  transition: all 0.7s ease-in;
}
#pc-nav .gnav a:hover .thumb, #pc-nav .gnav a:hover .nav-item-description {
  opacity: 0.7;
}
.current .nav-icon {
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
.current .nav-icon::after {
  opacity: 1;
  box-shadow: 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff, 0 0 15px #fff;
}
.current a:hover .nav-icon {
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0);
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  transition: all 0.7s ease-out;
}
@-webkit-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    opacity: 0;
  }
}
@-moz-keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -moz-transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes sonarEffect {
  0% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(255, 255, 255, 0.5);
  }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #3851bc, 0 0 0 10px rgba(255, 255, 255, 0.5);
    transform: scale(1.5);
    opacity: 0;
  }
}
#pc-nav {
  width: calc(100% - 150px);
}
#pc-nav .gnav-wrap {
  position: relative;
}
#pc-nav .gnav {
  display: flex;
  justify-content: flex-end;
}
#pc-nav .gnav > li {
  margin-left: 10%;
  -webkit-transition: all 0.7s ease-out;
  -moz-transition: all 0.7s ease-out;
  transition: all 0.7s ease-in-out;
}
#pc-nav .gnav a {
  text-shadow: 1px 1px 5px #000;
}
#pc-nav .gnav > li:hover .mega-menu {
  max-height: 9999px;
  padding: 20px 0;
  opacity: 1;
}
#pc-nav .mega-menu {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  max-height: 0;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  opacity: 0;
  overflow: hidden;
}
#pc-nav .sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#pc-nav .sub-menu li {
  position: relative;
  width: 180px;
  height: 120px;
  margin: 0 3%;
  text-align: center;
}
.thumb {
  display: block;
  position: relative;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: hidden;
}
.thumb.web-create {
  background-image: url(../images/coding-1920.jpg);
}
.thumb.graphic-design {
  background-image: url(../images/image-editing-1920.jpg);
}
.thumb.branding {
  background-image: url(../images/web-design-1920.jpg);
}
#pc-nav .sub-menu .nav-item-description {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: auto;
}
.menu-item {
  font-size: 1.2rem;
  text-transform: uppercase;
}
/* モバイルナビ設定 ------------------------------------------------------------ */
.menu-btn {
  display: none;
  position: fixed;
  top: 25px;
  right: 20px;
  width: 30px;
  height: 20px;
  z-index: 1000;
  cursor: pointer;
}
.menu-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  transition: transform 0.3s;
}
.line-center {
  top: 9px;
}
.line-bottom {
  bottom: -1px;
}
.line-top.active {
  top: 8px;
  transform: rotate(45deg);
}
.line-center.active {
  transform: scaleX(0);
}
.line-bottom.active {
  bottom: 10px;
  transform: rotate(135deg);
}
#sp-nav {
  display: none;
}
#sp-nav .gnav-wrap {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #21759b;
  z-index: 999;
}
#sp-nav .gnav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#sp-nav .menu-item {
  margin-top: 30px;
}
#sp-nav .menu-item:first-child {
  margin-top: auto;
}
#sp-nav .menu-item a {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
#sp-nav .sub-menu .menu-item {
  margin-top: 15px;
}
#sp-nav .sub-menu a {
  margin-left: 20px;
  font-size: 1.8rem;
  font-weight: normal;
  font-style: normal;
}
#sp-nav .menu-item a:hover {
  opacity: 0.5;
}
/* パンくずリスト設定 ---------------------------------------------------------- */
#breadcrumb {
  position: relative;
  max-width: 1280px;
  margin: auto;
  z-index: 1;
}
#breadcrumb ul {
  position: absolute;
  top: 0;
  left: 15px;
  padding: 10px 0;
}
#breadcrumb li {
  display: inline-block;
}
#breadcrumb li:first-child a {
  font-weight: bold;
}
#breadcrumb li:first-child a span {
  padding-left: 0;
  font-size: 1.2rem;
}
#breadcrumb li:first-child a span::before {
  content: none;
}
#breadcrumb span {
  position: relative;
  padding-left: 17px;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
}
#breadcrumb span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 5px;
  height: 5px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* タイトル設定 --------------------------------------------------------------- */
.title-l {
  font-size: 3.6rem;
  font-style: italic;
  font-weight: bold;
  white-space: nowrap;
  line-height: 1;
}
.title-l span {
  margin-left: 15px;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.01em;
}
.title-l.list {
  margin-bottom: 50px;
  padding-bottom: 5px;
}
.title-m {
  font-size: 1.8rem;
}
.contact-box .title-l {
  font-size: 3rem;
}
/* ボタン設定 ----------------------------------------------------------------- */
.shine-btn {
  display: block;
  position: relative;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: #464646;
  -webkit-transition: 0.7s ease-in-out;
  -moz-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
  overflow: hidden;
}
.shine-btn:before {
  content: "";
  position: absolute;
  top: -10%;
  left: -200%;
  width: 200%;
  height: 200%;
  background-color: rgba(255, 255, 255, .2);
  transform: rotate(-45deg);
  -webkit-transition: 0.7s ease-in-out;
  -moz-transition: 0.7s ease-in-out;
  transition: 0.7s ease-in-out;
}
.shine-btn:hover:before {
  left: 60%;
}
.shine-effect {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.shine-effect::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 2;
}
.shine-effect:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* ファーストビュー設定 -------------------------------------------------------- */
#first-view {
  height: 750px;
  background-position: 50% 25%;
  background-repeat: no-repeat;
  background-image: url(../images/aerial-1920.jpg);
  -webkit-transition: background-position 5s ease-out;
  -moz-transition: background-position 5s ease-out;
  transition: background-position 5s ease-out;
}
body.sf #first-view {
  background-position: 50% 50%;
}
#first-view .content-area {
  width: 100%;
  height: 100%;
}
#fv-box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.fadein-text, .fadein-text span {
  opacity: 0;
}
#fv-msg {
  position: absolute;
  top: 50%;
  left: 0;
  font-weight: bold;
  font-style: italic;
  font-size: 6rem;
  letter-spacing: 0.05em;
  text-shadow: 2px 2px 5px #000;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/* 新着情報欄設定 ------------------------------------------------------------- */
#news-box {
  max-width: 760px;
  width: 100%;
  margin: auto auto 30px;
  background-color: rgba(0, 0, 0, 0.7);
}
#news-box dl {
  display: flex;
}
#news-box dt {
  font-weight: bold;
}
#news-box dt, #news-box dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px;
}
#news-box dd {
  border-left: solid 1px rgba(255, 255, 255, 0.5);
}
#news-box .date {
  font-size: 1rem;
}
.icon-list {
  margin: 5px;
  vertical-align: middle;
}
.icon-list::before {
  font-size: 1.8rem;
}
.news-title {
  word-break: break-all;
  text-decoration: underline;
}
#news-box a {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
}
#news-box a:hover {
  opacity: 0.7;
}
/* ホーム・サービス ------------------------------------------------------------ */
.sa-box {
  position: relative;
  padding: 100px 0;
}
.sa-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: -70%;
  width: 100%;
  height: 100%;
  background-color: #004e80;
  transform: skewX(-25deg);
}
.sa-content {
  position: relative;
  width: 50%;
  padding: 100px 100px 100px 50px;
  background-color: #01aadc;
  z-index: 1;
}
.sa-content h3 {
  margin-top: 20px;
}
.sa-content p {
  margin-top: 10px;
}
.sa-content a {
  margin-top: 30px;
}
.sa-box figure {
  float: right;
  position: relative;
  width: calc(50% + 50px);
  margin-top: 100px;
  z-index: 2;
}
.sa-box.rev::before {
  left: -70%;
  right: auto;
}
.sa-box.rev figure {
  float: left;
  margin-right: -50px;
  text-align: right;
}
.sa-box.rev .sa-content {
  float: right;
  padding: 100px 50px 100px 100px;
}
/* ホーム・ワークス ------------------------------------------------------------ */
#works-area, #contact-area {
  padding: 100px 0;
  background-color: #21759b;
}
.works-box {
  display: flex;
  height: 300px;
  border-bottom: solid 10px #464646;
  transform: skewX(-25deg);
}
.works-box::after {
  content: '';
  position: absolute;
  bottom: calc(30px + 10px);
  left: 0;
  width: 100%;
  height: 10px;
  background: #004e80;
}
.img-box {
  position: relative;
  width: 50%;
  text-align: center;
  overflow: hidden;
}
.img-box img {
  transform-origin: 0% 80%;
  transform: skewX(25deg) scale(1.4);
}
.img-box-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: calc(30px + 10px);
  line-height: calc(20px + 10px);
  background-color: #004f81;
}
.content-box {
  display: flex;
  flex-direction: column;
  width: 50%;
}
.text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 240px;
  padding-left: 50px;
  background-color: #01aadc;
}
.text-box p {
  margin-top: 15px;
}
.text-box-bottom {
  margin-top: auto;
  padding-left: 15px;
  height: 50px;
  line-height: 50px;
  background-color: #464646;
}
.skew-inner {
  transform: skewX(25deg);
}
/* ホーム・コンタクト ---------------------------------------------------------- */
.contact-box {
  display: flex;
  height: 100px;
}
.contact-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  font-size: 2rem;
  transform: skewX(-25deg);
}
.tel-box {
  background-color: #01aadc;
}
.mail-box {
  position: relative;
  background-color: #004e7f;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: 0.7s;
}
.mail-box a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.mail-box span {
  margin-left: 5px;
  font-size: 1.8rem;
  vertical-align: bottom;
}
.mail-box:hover {
  background-color: #0087be;
}
/* 固定ページ共通設定 ---------------------------------------------------------- */
#keyvisual {
  position: relative;
  height: 400px;
  background-image: url(../images/tokyo-1920.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#keyvisual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.service #keyvisual {
  background-position: 50% 80%;
  background-image: url(../images/office-1920.jpg);
}
.web-create #keyvisual {
  background-position: 50% 20%;
  background-image: url(../images/coding-1920.jpg);
}
.graphic-design #keyvisual {
  background-position: 50% 65%;
  background-image: url(../images/image-editing-1920.jpg);
}
.branding #keyvisual {
  background-position: 50% 40%;
  background-image: url(../images/web-design-1920.jpg);
}
.about #keyvisual {
  background-image: url(../images/hall-1920.jpg);
}
.news #keyvisual, .category-news #keyvisual {
  background-position: 50% 60%;
  background-image: url(../images/office2-1920.jpg);
}
.term-works #keyvisual, .post-type-archive-works #keyvisual, .single-works #keyvisual {
  background-image: url(../images/office3-1920.jpg);
}
.contact #keyvisual {
  background-image: url(../images/lounge-1920.jpg);
}
.page-title-box {
  position: relative;
  max-width: 1280px;
  width: 100%;
  height: 100%;
  margin: auto;
}
.page-title-box::before {
  content: '';
  position: absolute;
  left: -70%;
  width: 100%;
  height: 100%;
  text-align: right;
  background-color: rgba(33, 117, 155, 0.7);
  transform: skew(25deg);
}
.page-title {
  position: absolute;
  left: 15px;
  top: 50%;
  font-size: 4rem;
  font-style: italic;
  font-weight: bold;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.page-title span {
  display: block;
  font-size: 1.4rem;
}
.skew-bgc {
  position: relative;
}
.skew-bgc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00aadc;
  transform: skewX(-25deg);
}
.skew-bgc > div {
  position: relative;
}
/* サービスページ設定 ---------------------------------------------------------- */
.sl-box {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: 200px;
  margin-top: 50px;
  overflow: hidden;
}
.sl-box:before {
  top: 10px;
  left: 10px;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.sl-box:after {
  top: 10px;
  left: 10px;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.sl-box a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.sl-img {
  position: relative;
  width: 35%;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../images/coding-1920.jpg);
}
.sl-img.graphic-design {
  background-image: url(../images/image-editing-1920.jpg);
}
.sl-img.branding {
  background-image: url(../images/web-design-1920.jpg);
}
.sl-img::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.sl-title {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: bold;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
.sl-content {
  display: flex;
  align-items: center;
  width: 65%;
  padding-left: 50px;
  background-color: #21759b;
}
.sl-content::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  margin: auto;
  border: solid 1px #fff;
}
.sl-content h3 {
  font-size: 2rem;
}
.sl-box:before, .sl-box:after, .sl-box *, .sl-box *:before, .sl-box *:after {
  -webkit-transition: all 0.55s ease;
  -moz-transition: all 0.55s ease;
  transition: all 0.55s ease;
}
.sl-box .rm-box {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 10px;
}
.sl-box:after, .sl-box .rm-box:before, .sl-box .rm-box:after {
  content: '';
  position: absolute;
  width: 1000px;
  height: 1px;
  background-color: #fff;
}
.sl-box .rm-box:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}
.sl-box .rm-box:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.sl-box:before, .sl-box .rm-box p:before, .sl-box .rm-box p:after {
  content: '';
  position: absolute;
  width: 1px;
  height: 300px;
  background-color: #fff;
  z-index: 1;
}
.sl-box .rm-box p:before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.sl-box .rm-box p:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}
.sl-box span {
  display: block;
  padding: 2px 5px;
  color: #21759b;
  background-color: #fff;
}
.sl-box:hover:before, .sl-box:hover:after, .sl-box:hover .rm-box:before, .sl-box:hover .rm-box:after, .sl-box:hover .rm-box p:before, .sl-box:hover .rm-box p:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}
.sl-box:hover:before, .sl-box:hover:after, .sl-box:hover .rm-box:before, .sl-box:hover .rm-box:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
/* サービス下層ページ共通設定 --------------------------------------------------- */
.flow-area {
  margin-top: 50px;
}
.tab-btn {
  display: flex;
  width: 100%;
  margin-top: 15px;
  overflow: hidden;
}
.tab-btn li {
  position: relative;
  width: 25%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background-color: #21759b;
  cursor: pointer;
}
.tab-btn li, .tab-btn li:before, .tab-btn li:after {
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
}
.tab-btn li:last-child:before, .tab-btn li:last-child:after {
  display: none;
}
.tab-btn li:before, .tab-btn li:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  margin: auto;
}
.tab-btn li:before {
  top: -15px;
  right: -15px;
  border-style: solid;
  border-color: transparent transparent transparent #0087be;
  border-width: 50px 0 50px 15px;
  z-index: 10;
}
.tab-btn li:after {
  top: -15px;
  right: -10px;
  border-style: solid;
  border-color: transparent transparent transparent #21759b;
  border-width: 50px 0 50px 15px;
  z-index: 10;
}
.tab-btn li.current {
  font-weight: bold;
  background-color: #005082;
  cursor: auto;
}
.tab-btn li.current:after, .tab-btn li:hover:after {
  border-color: transparent transparent transparent #005082;
}
.tab-btn li:hover {
  background-color: #005082;
}
.tab-area {
  margin-top: 30px;
}
.tab-area ul {
  display: none;
}
.tab-area ul.show {
  display: block;
}
.tab-content {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.tab-content figure {
  width: 30%;
}
.tab-content div {
  width: 70%;
  padding: 0 30px;
}
.tab-content div p {
  margin-top: 15px;
  font-size: 1.6rem;
}
/* アバウトページ設定 ---------------------------------------------------------- */
.company-data-area {
  margin-top: 50px;
}
.company-data {
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
}
.company-data dt, .company-data dd {
  border-bottom: solid 1px #fff;
}
.company-data dt {
  width: 25%;
  padding: 15px 0;
  font-weight: bold;
}
.company-data dd {
  width: 75%;
  padding: 15px 0;
}
.map {
  height: 400px;
  margin-top: 50px;
}
.map iframe {
  width: 100%;
  height: 100%;
}
/* コンタクトページ設定 --------------------------------------------------------- */
.content-form-area {
  text-align: center;
}
.content-form-area br {
  display: none;
}
.mw_wp_form {
  margin-top: 50px;
  padding: 50px;
  background-color: #00aadc;
}
.contact-form {
  width: 100%;
  max-width: 760px;
  margin: auto;
}
.submit-btn {
  margin-top: 30px;
}
.contact-form th, .contact-form td {
  display: block;
  width: 100%;
}
.contact-form th {
  margin-top: 30px;
  font-weight: normal;
  text-align: left;
}
.contact-form td {
  margin-top: 5px;
}
input[type="submit"] {
  display: block;
  margin: 15px auto;
  padding: 10px 15px;
  color: #fff;
  text-align: center;
  border: none;
  background-color: #dc820e;
  cursor: pointer;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
.contact-form option, .contact-form textarea, .contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=search], .contact-form input[type=url] {
  width: 100%;
  padding: 5px;
  font-size: 1.8rem;
}
.contact-form .required {
  margin-left: 10px;
  padding: 5px;
  font-size: 8pt;
  color: #fff;
  background-color: #dc820e;
  border-radius: 2px;
  vertical-align: middle;
  white-space: nowrap;
}
.submit-btn input {
  background-color: #005082;
  pointer-events: none;
}
input[type="submit"]:hover {
  opacity: 0.8;
}
.submit-back {
  text-align: center;
}
/* カテゴリーページ設定 --------------------------------------------------------- */
.article-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -15px;
}
.article-area article {
  width: 50%;
  min-width: 340px;
  max-width: 370px;
  padding: 15px;
}
.category-news article a {
  display: block;
}
.news-wrap {
  position: relative;
}
.news-wrap::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: -moz-linear-gradient(top, transparent 25%, #000 100%);
  background: -webkit-linear-gradient(top, transparent 25%, #000 100%);
  background: linear-gradient(to bottom, transparent 25%, #000 100%);
}
.news-wrap figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 15px;
}
.news-wrap p {
  font-size: 1.2rem;
}
.post-wrap {
  position: relative;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.post-wrap * {
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.post-wrap img {
  opacity: 1;
  width: 100%;
  -webkit-transition: opacity 0.35s;
  -moz-transition: opacity 0.35s;
  transition: opacity 0.35s;
}
.post-wrap:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  -webkit-transform: skew(-45deg) scaleX(0);
  transform: skew(-45deg) scaleX(0);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.7;
}
.post-wrap figcaption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding: 0 50px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}
.post-wrap h2, .post-wrap p {
  opacity: 0;
}
.post-wrap h2 {
  margin-top: 5px;
}
.post-wrap:hover:after {
  -webkit-transform: skew(-45deg) scaleX(1);
  transform: skew(-45deg) scaleX(1);
  -webkit-transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.post-wrap:hover figcaption h2, .post-wrap:hover figcaption p {
  -webkit-transform: translate3d(0%, 0%, 0);
  transform: translate3d(0%, 0%, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.post-wrap:hover figcaption h2 {
  opacity: 1;
}
.post-wrap:hover figcaption p {
  opacity: 1;
}
/* 投稿ページ設定 -------------------------------------------------------------- */
.share {
  position: relative;
  text-align: center;
}
.share li {
  display: inline-block;
}
.share li a {
  margin: 0 5px;
  font-size: 2rem;
}
.share .icon-line:before {
  color: #fff;
}
.share.work {
  margin-top: 50px;
}
.post-data {
  padding-bottom: 5px;
  font-size: 1.2rem;
  border-bottom: solid 1px #fff;
}
.post-data .date {
  margin-left: 10px;
}
.post-title {
  margin-bottom: 10px;
  padding: 10px 0;
  font-size: 1.6rem;
  border-bottom: solid 1px #fff;
}
.post-content {
  padding-top: 15px;
}
.screen-reader-text {
  display: none;
}
.nav-links {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.nav-links ul {
  display: flex;
}
.nav-links ul li {
  margin: auto 2px;
}
.nav-links ul li span, .nav-links ul li a {
  display: block;
  padding: 10px 15px;
  background-color: #00aadc;
  -webkit-transition: all 0.7s;
  -moz-transition: all 0.7s;
  transition: all 0.7s;
}
.nav-links ul li a:hover {
  background-color: #005082;
}
.nav-links ul li span.current {
  background-color: #005082;
}
/* 実績ページ設定 -------------------------------------------------------------- */
.work-img {
  position: relative;
  width: 68%;
  margin-left: auto;
}
.work-img::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -50%;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.work-img.patisserie::before {
  background-image: url(../images/patisserie-640.png);
}
.work-img.ramen::before {
  background-image: url(../images/ramen-640.png);
}
.work-img.florist::before {
  background-image: url(../images/florist-640.png);
}
.work-img.hotel::before {
  background-image: url(../images/hotel-640.png);
}
.work-data {
  position: relative;
  padding: 0 25%;
  font-size: 1.2rem;
}
.work-data h2 {
  margin: 15px auto 10px;
  padding-bottom: 5px;
  font-size: 1.8rem;
  border-bottom: solid 1px #fff;
}
.work-data dl {
  display: flex;
  margin-top: 5px;
}
.work-data dt {
  width: 90px;
}
.work-data dd {
  margin-left: 10px;
}
.view-site {
  margin-top: 15px;
  padding-top: 40px;
  border-top: solid 1px #fff;
}
.view-site a {
  margin: auto;
}
.single-pager ul {
  display: flex;
  position: relative;
  margin-top: 40px;
}
.single-pager .prev {
  margin-right: auto;
}
.single-pager .list {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.single-pager .next {
  margin-left: auto;
}
.related-area {
  background-color: #21759b;
}
/* フッター設定 --------------------------------------------------------------- */
#footer {
  margin-top: auto;
  background-color: #333;
}
#page-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
#page-top a {
  display: block;
  position: relative;
  padding: 24px;
  background-color: #000;
  opacity: 0.7;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  transition: all 0.7s;
}
#page-top a::before {
  content: "";
  position: absolute;
  top: 60%;
  bottom: 50%;
  left: 0;
  right: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-top: 3px solid #fcfcfc;
  border-right: 3px solid #fcfcfc;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#page-top a:hover {
  opacity: 0.5;
}
#footer-inner {
  display: flex;
  flex-wrap: wrap;
  padding-top: 150px;
  padding-bottom: 120px;
}
#footer-address {
  flex: 0 0 300px;
  margin-bottom: 5px;
}
#footer .logo img {
  filter: none;
}
.tel .icon-phone_in_talk {
  margin-right: 5px;
}
.address {
  margin-top: 10px;
  font-size: 1.4rem;
}
.address span {
  margin-right: 5px;
}
#footer-nav-area {
  flex: 1 1 400px;
}
#footer-nav-box {
  display: flex;
  flex-wrap: wrap;
}
.menu-footer-nav1-container {
  flex: 1 1 400px;
}
#footer .sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
#footer .sub-menu li {
  flex-basis: 140px;
  margin-top: 10px;
  text-align: center;
}
#footer .sub-menu a {
  font-size: 1.2rem;
}
.menu-footer-nav2-container {
  flex-basis: 300px;
  flex: 1 1 300px;
}
#footer .menu {
  margin-bottom: 10px;
}
#menu-footer-nav2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#social-btn {
  width: 100px;
  margin-left: auto;
}
#social-btn ul {
  display: flex;
  justify-content: space-between;
}
#social-btn li {
  font-size: 2rem;
}
.copyright {
  padding: 10px;
  text-align: center;
}
/* 404ページ設定 -------------------------------------------------------------- */
#not-found {
  text-align: center;
}
#not-found .shine-btn {
  margin: 50px auto auto;
}
@media screen and (max-width: 960px) {
  .sa-content {
    width: auto;
    padding: 100px 50px 100px 50px;
  }
  .sa-box figure {
    padding: 0 0 50px 50px;
  }
  .sa-box.rev figure {
    margin-right: auto;
    padding: 0 50px 50px 0;
  }
  .sa-box.rev .sa-content {
    float: none;
    padding: 100px 50px 100px 50px;
  }
}
@media screen and (max-width: 767px) {
  #pc-nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  #sp-nav {
    display: block;
  }
  .title-l {
    font-size: 2.8rem;
  }
  .title-m {
    font-size: 1.6rem;
  }
  #first-view {
    height: 500px;
    background-size: cover;
  }
  #fv-msg {
    font-size: 5rem;
  }
  #news-box {
    margin: auto auto 20px;
  }
  .sa-box figure {
    float: none;
    width: auto;
    margin-top: auto;
    padding: 0;
  }
  .sa-content {
    padding: 50px;
  }
  .sa-box.rev figure {
    float: none;
    padding: 0;
  }
  .sa-box.rev .sa-content {
    padding: 50px;
  }
  .works-box {
    display: block;
    height: auto;
    border-bottom: none;
    transform: none;
  }
  .works-box::after {
    content: none;
  }
  .img-box {
    width: auto;
  }
  .img-box img {
    transform: none;
  }
  .img-box-bottom {
    display: none;
  }
  .content-box {
    width: auto;
  }
  .text-box {
    height: auto;
    padding: 50px;
    background-color: #01aadc;
  }
  .text-box-bottom {
    display: none;
  }
  .skew-inner {
    transform: none;
  }
  .contact-box {
    display: block;
    height: auto;
  }
  .contact-inner {
    width: auto;
    height: 100px;
    transform: none;
  }
  .sl-box {
    height: 150px;
  }
  .sl-title {
    font-size: 1.6rem;
  }
  .sl-content {
    padding-left: 30px;
  }
  .sl-content h3 {
    font-size: 1.6rem;
  }
  .sl-box span {
    padding: 0 5px;
  }
  .tab-content figure {
    width: 100%;
  }
  .tab-content div {
    width: 100%;
    padding: 20px 0;
  }
  .tab-content div p {
    margin-top: 15px;
    font-size: 1.6rem;
  }
  .work-data {
    padding: 0 15%;
  }
}
@media screen and (max-width: 500px) {
  body {
    font-size: 1.2em;
  }
  .section {
    padding: 100px 0;
  }
  #first-view {
    height: 400px;
  }
  #fv-msg {
    font-size: 3rem;
  }
  .title-m {
    font-size: 1.4rem;
  }
  .sa-content, .sa-box.rev .sa-content {
    padding: 50px 15px;
  }
  .text-box {
    padding: 50px 15px;
  }
  #keyvisual {
    height: 300px;
  }
  .page-title {
    font-size: 2.8rem;
  }
  .page-title span {
    font-size: 1.2rem;
  }
  .sl-box {
    height: 100px;
  }
  .sl-title {
    font-size: 1.2rem;
    white-space: normal;
  }
  .sl-content {
    padding-left: 10px;
  }
  .sl-content h3 {
    font-size: 1.2rem;
  }
  .sl-box:before {
    top: 5px;
    left: 5px;
  }
  .sl-box:after {
    top: 5px;
    left: 5px;
  }
  .sl-content::before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .sl-box .rm-box {
    bottom: 5px;
    right: 5px;
    padding: 5px;
  }
  .company-data-area .title-l span, .related-area .title-l.list span {
    display: block;
    margin: 10px auto auto;
  }
  .map {
    height: 300px;
  }
  .mw_wp_form {
    padding: 15px;
  }
  .content-form-area br {
    display: block;
  }
  .article-area article {
    min-width: 320px;
  }
  .share.work {
    margin-top: 30px;
  }
  .work-data {
    padding: 0;
  }
  .work-data dl:last-of-type {
    flex-wrap: wrap;
  }
  .work-data dl:last-of-type dd:first-of-type {
    width: calc(100% - 100px);
  }
  .work-data dl:last-of-type dd:last-of-type {
    margin-left: 100px;
  }
  #footer-inner {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
