@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Open+Sans:wght@400;700&family=Quicksand:wght@400;700&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

html {
  overflow-x: hidden;
}

body {
  background: #fff;
  color: #333;
  font-family: "Open Sans", "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  padding-top: 70px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

@media screen and (min-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 577px) and (max-width: 768px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  .hidden-sm {
    display: none;
  }
}

img {
  max-width: 100%;
  height: auto;
  border: none;
}

p {
  line-height: 1.6;
  margin-top: 14px;
}

p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 960px) {
  p {
    margin-top: 12px;
  }
}

@media screen and (max-width: 320px) {
  p {
    font-size: 14px;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: inherit;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 1199px) {
  .inner {
    padding: 0 24px;
  }
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 16px;
  }
}

@media screen and (max-width: 576px) {
  .inner {
    padding: 0 16px;
  }
}

.marker-main {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(87, 146, 100, 0.5)));
  background: linear-gradient(transparent 70%, rgba(87, 146, 100, 0.5) 0%);
  display: inline-block;
}

.marker-sub {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, rgba(160, 216, 206, 0.5)));
  background: linear-gradient(transparent 70%, rgba(160, 216, 206, 0.5) 0%);
  display: inline-block;
}

.util-link {
  color: #333;
  display: inline-block;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  padding-left: 30px;
  height: 64px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
}

.util-link::before {
  position: absolute;
  content: '';
  background-color: #a0d8ce;
  border-radius: 50px;
  top: -30%;
  left: 0px;
  width: 64px;
  height: 64px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

.util-link::after {
  content: '';
  position: absolute;
  top: 40%;
  left: 30px;
  width: 80%;
  height: 1px;
  background-color: #333;
}

.util-link:hover::before {
  border-radius: 50px;
  padding-right: 30px;
  width: 100%;
}

.section {
  padding: 120px 0;
}

@media screen and (max-width: 1199px) {
  .section {
    padding: 96px 0;
  }
}

@media screen and (max-width: 576px) {
  .section {
    padding: 80px 0;
  }
}

.section-title {
  color: rgba(0, 0, 0, 0);
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 88px;
  line-height: 0.9;
  -webkit-text-stroke: 1px #333;
  text-shadow: 3px 3px 0 #579264;
  position: relative;
}

.section-title::after {
  position: absolute;
  color: #333;
  content: '';
  display: inline-block;
  font-size: 24px;
  letter-spacing: 1px;
  bottom: 0px;
  margin-left: -16px;
  text-shadow: none;
  -webkit-text-stroke: 0px;
  text-align: left;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 56px;
    text-shadow: 2px 2px #579264;
  }
  .section-title::after {
    font-size: 18px;
    margin-left: -8px;
  }
}

@media screen and (max-width: 576px) {
  .section-title {
    font-size: 48px;
  }
}

@media screen and (max-width: 320px) {
  .section-title {
    font-size: 42px;
  }
  .section-title::after {
    font-size: 16px;
    margin-left: -8px;
  }
}

.sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sns-icon {
  background-color: #a0d8ce;
  border-radius: 50%;
  color: #fff;
  display: inline-block;
  font-size: 18px;
  height: 32px;
  margin-right: 8px;
  position: relative;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 32px;
}

.sns-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .sns-icon {
    font-size: 16px;
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }
}

.sns-icon:hover {
  background-color: #579264;
}

.bg {
  background: transparent url(../img/bg.png) no-repeat top right/contain;
  background-size: auto 720px;
  height: 720px;
  position: relative;
}

@media screen and (max-width: 1199px) {
  .bg {
    background-size: auto 640px;
    height: 640px;
  }
}

@media screen and (max-width: 960px) {
  .bg {
    background-size: auto 560px;
    height: 560px;
  }
}

@media screen and (max-width: 768px) {
  .bg {
    background: transparent url(../img/bg_md.png) no-repeat top right/contain;
    background-size: auto 720px;
    height: 720px;
  }
}

@media screen and (max-width: 576px) {
  .bg {
    background: transparent url(../img/bg_sp.png) no-repeat top right/contain;
    background-size: auto 680px;
    height: 680px;
  }
}

@media screen and (max-width: 320px) {
  .bg {
    background-size: auto 560px;
    height: 560px;
  }
}

.container {
  position: absolute;
  top: 50%;
  -webkit-transform: scaleX(-1) translateY(-50%);
          transform: scaleX(-1) translateY(-50%);
  width: 100%;
}

.top-button {
  border-radius: 50%;
  background-color: #579264;
  width: 48px;
  height: 48px;
  position: fixed;
  bottom: 32px;
  right: 32px;
  opacity: .7;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 30;
}

.top-button a {
  color: #fff;
}

@media screen and (min-width: 1200px) {
  .top-button:hover {
    opacity: 1;
  }
}

.top-button i {
  display: block;
  font-size: 24px;
  text-align: center;
  position: relative;
  width: 48px;
  height: 48px;
  line-height: 48px;
}

.breadcrumb {
  color: #579264;
  font-size: 12px;
}

.breadcrumb a {
  color: #579264;
}

.breadcrumb .home::before {
  content: "\f015";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  margin-right: 10px;
}

.breadcrumb a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.breadcrumb a:hover {
  opacity: 0.6;
}

.breadcrumb i {
  margin-left: 15px;
  margin-right: 15px;
}

.pagenation {
  margin-top: 40px;
  text-align: center;
}

.pagenation a {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagenation a:hover {
  opacity: .7;
}

.pagenation a.next,
.pagenation a.prev {
  background: transparent;
  font-size: 30px;
}

.page-numbers {
  background: #fff;
  border: 1px solid #579264;
  border-radius: 50px;
  color: #579264;
  display: inline-block;
  font-size: 20px;
  height: 40px;
  line-height: 38px;
  margin-right: 14px;
  min-width: 40px;
  text-align: center;
  text-decoration: none;
}

.page-numbers:last-child {
  margin-right: 0;
}

.page-numbers.current {
  background: #579264;
  border: 1px solid #579264;
  color: #fff;
  font-weight: 700;
}

.page-numbers.dots,
.page-numbers.next,
.page-numbers.prev {
  border: none;
  line-height: 40px;
  min-width: initial;
  width: auto;
}

.fa-angle-left,
.fa-angle-right {
  position: relative;
}

.fa-angle-left::before,
.fa-angle-right::before {
  position: absolute;
  bottom: -10px;
}

.fa-angle-left::before {
  right: 0px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 20;
}

.header.-transform {
  background: rgba(255, 255, 255, 0.7);
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo {
  width: 96px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-logo:hover {
  opacity: .6;
}

/* global menu */
.header-nav {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .header-nav {
    background: rgba(87, 146, 100, 0.9);
    padding: 24px 0;
    padding-top: 70px;
  }
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav li {
  margin-right: 40px;
}

.header-nav li.menu {
  font-weight: 700;
}

.header-nav li:last-child {
  margin-right: 0;
}

.header-nav li > a {
  display: block;
  color: #333;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  line-height: 70px;
  letter-spacing: .1em;
  position: relative;
}

.header-nav li > a::after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  background-color: #a0d8ce;
  border-radius: 50%;
  z-index: -1;
}

.header-nav li > a:hover::after {
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .header-nav li > a:hover::after {
    width: 0;
    height: 0;
  }
}

.header-nav li > a.active::after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #a0d8ce;
  border-radius: 50%;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .header-nav li > a.active::after {
    width: 0;
    height: 0;
  }
}

/* Hamburger icon */
@media screen and (max-width: 768px) {
  .drawer--right .header .drawer-hamburger {
    right: 4px;
    top: 5px;
  }
  .header .drawer-hamburger-icon {
    background: #579264;
  }
  .header .drawer-hamburger-icon::before, .header .drawer-hamburger-icon::after {
    background: #579264;
  }
  .header .drawer-hamburger-icon::after {
    color: #579264;
    content: 'menu';
    font-size: 11px;
    height: 0px;
    top: 8px;
  }
  .drawer-open .header .drawer-hamburger-icon {
    background: transparent;
  }
  .drawer-open .header .drawer-hamburger-icon::before {
    background: #fff;
  }
  .drawer-open .header .drawer-hamburger-icon::after {
    background: #fff;
    content: '';
    height: 2px;
    top: 0;
  }
}

/* drawer menu */
.drawer-nav {
  background: rgba(87, 146, 100, 0.9);
}

.drawer-menu {
  display: none;
}

@media screen and (max-width: 768px) {
  .drawer-menu {
    display: block;
    padding: 24px 0;
    padding-top: 70px;
  }
  .drawer-menu .drawer-menu-item {
    padding: 0;
  }
  .drawer-menu li {
    font-weight: 700;
  }
  .drawer-menu li:last-child {
    font-weight: normal;
  }
  .drawer-menu li > a {
    color: #fff;
    display: block;
    font-family: "Quicksand", "Noto Sans JP", sans-serif;
    letter-spacing: .1em;
    line-height: 56px;
    padding-left: 16px;
  }
}

.bg.top {
  position: relative;
  margin-top: -70px;
}

.top-container {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

.top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .top-content {
    display: block;
  }
}

.top-message {
  width: 50%;
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  .top-message {
    width: 80%;
    margin: 16px auto 0;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .top-message {
    width: 90%;
  }
}

@media screen and (max-width: 320px) {
  .top-message {
    width: 100%;
    margin: 8px auto 0;
  }
}

.top-image {
  position: relative;
  margin-left: -2%;
  width: 60%;
}

@media screen and (max-width: 768px) {
  .top-image {
    margin: 8% auto 0;
    width: 65%;
  }
}

@media screen and (max-width: 576px) {
  .top-image {
    margin: 12% auto 0;
    width: 80%;
  }
}

@media screen and (max-width: 320px) {
  .top-image {
    margin: 16% auto 0;
  }
}

.top-image-icon {
  position: absolute;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.top-image-icon.design {
  top: 8%;
  left: 10%;
  width: 20%;
}

.top-image-icon.design:hover {
  top: 7%;
  left: 9%;
  width: 22%;
}

.top-image-icon.coding {
  bottom: 0;
  left: 26%;
  width: 12%;
  -webkit-animation-delay: .1s;
          animation-delay: .1s;
}

.top-image-icon.coding:hover {
  bottom: -1%;
  left: 25%;
  width: 14%;
}

.top-image-icon.dev {
  bottom: 20%;
  right: 10%;
  width: 16%;
  -webkit-animation-delay: .2s;
          animation-delay: .2s;
}

.top-image-icon.dev:hover {
  bottom: 19%;
  right: 9%;
  width: 18%;
}

.top-message-title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 0;
  line-height: 1;
}

.top-message-title span {
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-size: 72px;
}

@media screen and (max-width: 1199px) {
  .top-message-title {
    font-size: 36px;
  }
  .top-message-title span {
    font-size: 64px;
  }
}

@media screen and (max-width: 960px) {
  .top-message-title {
    font-size: 32px;
  }
  .top-message-title span {
    font-size: 52px;
  }
}

@media screen and (max-width: 768px) {
  .top-message-title {
    font-size: 32px;
  }
  .top-message-title span {
    font-size: 48px;
  }
}

@media screen and (max-width: 320px) {
  .top-message-title {
    font-size: 24px;
  }
  .top-message-title span {
    font-size: 32px;
  }
}

.top-message-text {
  margin-top: 40px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .top-message-text {
    margin-top: 24px;
    text-align: center;
  }
}

@media screen and (max-width: 576px) {
  .top-message-text {
    text-align: left;
  }
}

@media screen and (max-width: 320px) {
  .top-message-text {
    margin-top: 16px;
  }
}

.top-message > .util-link {
  margin-top: 40px;
}

@media screen and (max-width: 960px) {
  .top-message > .util-link {
    margin-top: 32px;
  }
}

@media screen and (max-width: 768px) {
  .top-message > .util-link {
    margin-top: 28px;
  }
}

.scroll {
  position: absolute;
  left: 50%;
  bottom: -3%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 3em;
  height: 3em;
  border: 1px solid #579264;
  border-radius: 50%;
}

.scroll span {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 25%;
  left: 33%;
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
  border-left: 3px solid #579264;
  border-bottom: 3px solid #579264;
  z-index: 2;
  -webkit-animation: popping-arrow 2s infinite ease-out;
          animation: popping-arrow 2s infinite ease-out;
}

.scroll:hover span {
  -webkit-transform: translateY(0.5em) rotate(-45deg);
          transform: translateY(0.5em) rotate(-45deg);
  -webkit-animation: paused;
          animation: paused;
}

@media screen and (max-width: 768px) {
  .scroll {
    border: none;
    bottom: -3%;
  }
}

@-webkit-keyframes popping-arrow {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  30% {
    -webkit-transform: translateY(0.5em) rotate(-45deg);
            transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}

@keyframes popping-arrow {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  30% {
    -webkit-transform: translateY(0.5em) rotate(-45deg);
            transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}

#portfolio.section-title {
  text-align: center;
  margin-left: -80px;
}

@media screen and (max-width: 768px) {
  #portfolio.section-title {
    margin-left: -40px;
  }
}

#portfolio.section-title::after {
  content: 'My Work';
  width: 160px;
}

@media screen and (max-width: 768px) {
  #portfolio.section-title::after {
    width: 100px;
  }
}

#portfolio.section-title.jp::after {
  content: '制作実績';
}

.portfolio-category-item {
  margin-right: 24px;
}

.portfolio-category-item:last-child {
  margin-right: 0;
}

@media screen and (max-width: 576px) {
  .portfolio-category-item {
    margin-right: 16px;
  }
  .portfolio-category-item:last-child {
    margin-right: 0;
  }
}

.portfolio-categories-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .portfolio-categories-list {
    margin-top: 32px;
  }
}

.portfolio-category-item {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  position: relative;
  cursor: pointer;
}

.portfolio-category-item a {
  color: #333;
}

.portfolio-category-item::after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 0px;
  height: 0px;
  background-color: #a0d8ce;
  border-radius: 50%;
  z-index: -1;
}

.portfolio-category-item:hover::after {
  width: 40px;
  height: 40px;
}

.portfolio-category-item.active::after {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background-color: #a0d8ce;
  border-radius: 50%;
  z-index: -1;
}

.portfolio-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 980px;
  margin: auto;
  min-height: 340px;
}

@media screen and (max-width: 1199px) {
  .portfolio-items {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .portfolio-items {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 324px;
    width: 620px;
  }
}

@media screen and (max-width: 576px) {
  .portfolio-items {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.portfolio-item {
  border-radius: 8px;
  display: block;
  margin-right: 40px;
  margin-top: 40px;
  max-width: 300px;
  max-height: 300px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: calc(33.3333333% - 40px * 2 / 3);
}

.portfolio-item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1199px) {
  .portfolio-item {
    margin-top: 24px;
    margin-right: 24px;
  }
}

@media screen and (max-width: 960px) {
  .portfolio-item {
    margin-top: 24px;
    margin-right: 0;
    width: calc(50% - 24px * 1 / 2);
  }
  .portfolio-item:nth-child(3n) {
    margin-right: 0;
  }
  .portfolio-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .portfolio-item {
    width: 100%;
    margin-top: 24px;
  }
}

.portfolio-item:hover {
  opacity: .7;
  -webkit-transform: translateY(4px);
          transform: translateY(4px);
}

.portfolio-item-image {
  border: 1px solid #efefef;
  border-bottom: 0px;
  border-radius: 8px 8px 0px 0px;
  max-height: 200px;
  overflow: hidden;
}

.portfolio-item-body {
  border-radius: 0px 0px 8px 8px;
  border: 1px solid #efefef;
  line-height: 1.6;
  padding: 14px;
  height: 99px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .portfolio-item-body {
    padding: 12px;
  }
}

@media screen and (max-width: 576px) {
  .portfolio-item-body {
    padding: 14px;
    height: auto;
  }
}

.portfolio-item-title {
  color: #579264;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.portfolio-item-title span {
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
}

.portfolio-item-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4px auto 0;
  width: 90%;
}

@media screen and (max-width: 768px) {
  .portfolio-item-meta {
    width: 100%;
  }
}

@media screen and (max-width: 576px) {
  .portfolio-item-meta {
    width: 90%;
  }
}

.portfolio-item-category {
  border: 1px solid #a0d8ce;
  border-radius: 16px;
  color: #a0d8ce;
  font-size: 12px;
  padding: 0 8px;
  line-height: 20px;
  max-height: 20px;
  margin-right: 8px;
}

.portfolio-item-desc {
  color: #333;
  font-size: 14px;
  margin-top: -1px;
  max-height: 44px;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .portfolio-item-desc {
    word-break: break-all;
  }
}

@media screen and (max-width: 576px) {
  .portfolio-item-desc {
    word-break: normal;
  }
}

.portfolio-footer {
  margin-top: 40px;
  text-align: center;
}

#about.section-title::after {
  content: "Profile";
  width: 160px;
}

@media screen and (max-width: 768px) {
  #about.section-title::after {
    width: 100px;
  }
}

#about.section-title.jp::after {
  content: '私について';
}

.bg.about {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.about-container {
  position: absolute;
  top: 50%;
  -webkit-transform: scaleX(-1) translateY(-50%);
          transform: scaleX(-1) translateY(-50%);
  width: 100%;
}

.about-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
}

@media screen and (max-width: 1199px) {
  .about-content {
    margin-top: 40px;
  }
}

@media screen and (max-width: 960px) {
  .about-content {
    margin-top: 24px;
  }
}

@media screen and (max-width: 768px) {
  .about-content {
    display: block;
  }
}

.about-image {
  width: 240px;
  margin-right: 40px;
}

@media screen and (max-width: 1199px) {
  .about-image {
    width: 200px;
    margin-right: 24px;
  }
}

@media screen and (max-width: 768px) {
  .about-image {
    width: 160px;
  }
}

@media screen and (max-width: 576px) {
  .about-image {
    width: 140px;
  }
}

@media screen and (max-width: 320px) {
  .about-image {
    width: 120px;
  }
}

.about-text {
  width: 600px;
}

@media screen and (max-width: 1199px) {
  .about-text {
    width: 100%;
    max-width: 600px;
  }
}

@media screen and (max-width: 768px) {
  .about-text {
    width: 100%;
  }
}

.about-title {
  font-size: 32px;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-weight: 700;
  margin-right: 12px;
}

@media screen and (max-width: 768px) {
  .about-title {
    font-size: 24px;
  }
}

.about-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .about-head {
    margin-top: 24px;
  }
}

.about-title-sub {
  font-size: 14px;
  font-weight: normal;
  font-style: italic;
  margin-top: 8px;
}

.about-text {
  margin-top: 40px;
}

@media screen and (max-width: 1199px) {
  .about-text {
    margin-top: 24px;
  }
}

@media screen and (max-width: 576px) {
  .about-text {
    margin-top: 16px;
  }
}

.about-skills {
  margin-top: 40px;
}

.about-skills img {
  height: 32px;
  margin-right: 2px;
}

@media screen and (max-width: 960px) {
  .about-skills img {
    height: 28px;
  }
}

@media screen and (max-width: 1199px) {
  .about-skills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 24px;
  }
}

@media screen and (max-width: 576px) {
  .about-skills {
    display: block;
    margin-top: 16px;
  }
}

@media screen and (max-width: 1199px) {
  .about-skills-web {
    margin-right: 2px;
  }
}

.about-skills-design {
  margin-top: 16px;
}

@media screen and (max-width: 1199px) {
  .about-skills-design {
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  .about-skills-design {
    margin-top: 16px;
  }
}

.section.concept {
  padding-bottom: 140px;
}

@media screen and (max-width: 1199px) {
  .section.concept {
    padding: 110px 0;
  }
}

@media screen and (max-width: 576px) {
  .section.concept {
    padding: 100px 0;
  }
}

.concept-container {
  width: 80%;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.concept-container::before {
  background: transparent url(../img/matsu_50.png) no-repeat center center/contain;
  content: '';
  position: absolute;
  width: 240px;
  height: 160px;
  bottom: -30%;
  right: 0;
  z-index: -1;
}

@media screen and (max-width: 960px) {
  .concept-container::before {
    width: 220px;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .concept-container::before {
    width: 200px;
    height: 100%;
  }
}

.concept-container p {
  width: 85%;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .concept-container p {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .concept-container {
    width: 90%;
  }
}

@media screen and (max-width: 576px) {
  .concept-container {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .bg.contact {
    background-size: auto 640px;
    height: 640px;
  }
}

.contact-container {
  position: absolute;
  top: 50%;
  left: 35%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
}

@media screen and (max-width: 1199px) {
  .contact-container {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

@media screen and (max-width: 576px) {
  .contact-container {
    width: 100%;
  }
}

#contact.section-title {
  margin-left: 0;
}

#contact.section-title::after {
  content: 'Get in touch';
  width: 160px;
}

@media screen and (max-width: 768px) {
  #contact.section-title::after {
    width: 120px;
  }
}

#contact.section-title.jp::after {
  content: 'お問い合わせ';
}

.contact-text {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .contact-text {
    margin-top: 24px;
  }
}

#wpforms-74-field_0-container {
  margin: 24px auto 0;
}

.contact-item {
  margin-top: 16px;
}

.contact-item:first-child {
  margin-top: 0;
}

.contact-item label {
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-weight: 700;
}

div.wpforms-container-full .wpforms-form .wpforms-required-label, .wpforms-required-label {
  color: #579264 !important;
  font-weight: 700;
  position: relative;
}

div.wpforms-container-full .wpforms-form .wpforms-required-label:after, .wpforms-required-label:after {
  position: absolute;
  /*content: 'Required';*/
  font-size: 12px;
	font-weight: 700;
  padding-left: 4px;
  top: 4px;
}

#wpforms-74-field_0, #wpforms-74-field_1, #wpforms-74-field_2,
#wpforms-110-field_0, #wpforms-110-field_1, #wpforms-110-field_2 {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border: 1px solid #efefef;
  border-radius: 8px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  padding: 8px;
  margin: 0;
  margin-top: 4px;
  max-width: 100%;
  width: 400px;
}

@media screen and (max-width: 576px) {
  #wpforms-74-field_0, #wpforms-74-field_1, #wpforms-74-field_2,
  #wpforms-110-field_0, #wpforms-110-field_1, #wpforms-110-field_2 {
    width: 100%;
  }
}

/* WPForms input */
#wpforms-74-field_0, #wpforms-74-field_1,
#wpforms-110-field_0, #wpforms-110-field_1 {
  height: 40px;
}

/* WPForms textarea */
#wpforms-74-field_2,
#wpforms-110-field_2 {
  min-height: 120px;
  resize: vertical;
}

/* WPForms submit */
div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button {
  border: none;
}

#wpforms-submit-74,
#wpforms-submit-110 {
  background: #a0d8ce;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 24px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin-top: 24px;
}

#wpforms-submit-74:hover,
#wpforms-submit-110:hover {
  background: #579264;
  color: white;
}

.wpforms-error {
  margin-top: 6px !important;
}

#wpforms-confirmation-74 {
  background: #a0d8ce;
  border: none;
  margin-top: 16px;
}

.footer {
  background: #579264;
  padding: 40px 0;
}

.footer a {
  color: #fff;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-logo {
  width: 88px;
  margin-right: 16px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.footer-logo:hover {
  opacity: .7;
}

.footer .sns-icon {
  background: #fff;
  color: #579264;
}

.footer .sns-icon:hover {
  opacity: .7;
}

.footer-image {
  margin: 24px auto 0;
  width: 88px;
}

@media screen and (max-width: 576px) {
  .footer-image {
    margin-top: 16px;
  }
}

.footer-copyright {
  opacity: .7;
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 576px) {
  .footer-copyright {
    margin-top: 16px;
  }
}

.entry,
.section.home {
  padding: 40px 0 120px;
}

@media screen and (max-width: 1199px) {
  .entry,
  .section.home {
    padding: 40px 0 96px;
  }
}

@media screen and (max-width: 576px) {
  .entry,
  .section.home {
    padding: 40px 0 80px;
  }
}

.entry-head {
  text-align: center;
}

.entry-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .entry-title {
    font-size: 24px;
  }
}

@media screen and (max-width: 576px) {
  .entry-title {
    display: inline;
  }
}

@media screen and (max-width: 320px) {
  .entry-title {
    font-size: 18px;
  }
}

.entry-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}

.entry-meta-url a {
  color: #333;
  font-size: 12px;
}

.entry-meta-url a:hover {
  opacity: .7;
}

.entry-eyecatch {
  width: 600px;
  margin: 24px auto 0;
}

@media screen and (max-width: 768px) {
  .entry-eyecatch {
    width: 100%;
  }
}

.entry-body {
  margin: 24px auto 0;
  max-width: 800px;
  width: 100%;
}

.entry-data-table {
  margin: 24px auto 0;
  width: auto;
}

@media screen and (max-width: 576px) {
  .entry-data-table {
    width: 100%;
  }
}

.entry-data-table th {
  font-weight: 700;
  text-align: left;
  width: 100px;
  padding-top: 8px;
}

.entry-data-table td {
  line-height: 1.6;
  padding-top: 8px;
}

.entry-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 24px auto 0;
  max-width: 600px;
  width: 100%;
}

.entry-images-1 {
  margin-right: 16px;
  width: calc(100% - 20% - 16px);
}

.entry-images-2 {
  width: 20%;
  margin: auto;
}

.entry-images-2 img {
  width: 100%;
  margin: auto;
}

.prev-next-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 80px auto 0;
  max-width: 800px;
  width: 100%;
}

@media screen and (max-width: 576px) {
  .prev-next-link {
    display: block;
  }
}

.prev-link,
.next-link {
  width: 45%;
  color: #333;
  font-size: 14px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.prev-link:hover,
.next-link:hover {
  opacity: .7;
}

@media screen and (max-width: 576px) {
  .prev-link,
  .next-link {
    width: 100%;
  }
}

.next-link .prev-next-label {
  text-align: right;
}

@media screen and (max-width: 576px) {
  .next-link .prev-next-label {
    text-align: left;
    margin-top: 16px;
    border-top: 1px solid #efefef;
    padding-top: 8px;
  }
}

.prev-next-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 8px;
}

.prev-next-body.next {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
}

@media screen and (max-width: 576px) {
  .prev-next-body.next {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}

.prev-next-body .prev-next-title {
  width: calc(100% - 80px);
  margin-left: 8px;
}

.prev-next-body .prev-next-title.next {
  margin-left: 0;
  margin-right: 8px;
}

@media screen and (max-width: 576px) {
  .prev-next-body .prev-next-title.next {
    margin-left: 8px;
    margin-right: 0;
  }
}

.prev-next-title {
  line-height: 1.6;
}

.prev-next-text {
  font-size: 14px;
  color: #efefef;
}

.prev-next-img {
  width: 80px;
}

.entry-404 {
  text-align: center;
}

.entry-404-head {
  color: #579264;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-size: 80px;
  font-weight: 700;
}

@media screen and (max-width: 576px) {
  .entry-404-head {
    font-size: 64px;
    line-height: 1.2;
  }
}

.entry-404-head span::after {
  content: " ";
}

.entry-404-lead {
  color: #a0d8ce;
  font-family: "Quicksand", "Noto Sans JP", sans-serif;
  font-size: 32px;
  font-weight: 600;
  margin-top: 24px;
}

@media screen and (max-width: 576px) {
  .entry-404-lead {
    font-size: 24px;
    line-height: 1.2;
  }
}

.entry-404-content {
  margin-top: 40px;
}

.entry-404-btn {
  margin-top: 40px;
}
