@charset "UTF-8";
/*
Thema Name: cototabi
Thema URI: https://cototabi.com
Description: ことたびデザインのWEBサイトテーマです。
Version： 1.0
Auther: Osamu Moshio 
Authr URI： https://cototabi.com
*/
/******************

　　  color

******************/
/******************

　　   font

******************/
@font-face {
  font-family: 'bangla MN';
  src: url(./font/BanglaMN.ttf) format("ttf");
  src: url(./font/BanglaMN.woff) format("woff");
}

.font-banglaMN {
  font-family: 'Bangla MN',serif;
  text-transform: uppercase;
}

.font-mincho {
  font-family: 'Noto Serif JP', serif;
}

/******************

　　fluid-image

******************/
img {
  max-width: 100%;
  height: auto;
}

/******************

　　    all

******************/
html {
  font-size: 62.5%;
  /*16px × 62.5%=10px*/
}

body {
  color: #333;
  overflow-x: hidden;
  font-family: YuGothic,'Yu Gothic',sans-serif;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  letter-spacing: 0.025em;
}

body h1, body h3, body p, body span, body a, body time {
  font-weight: 500;
}

.body__wrapper {
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #333333;
  word-wrap: break-word;
}

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

.inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 60px;
}

.wrapper {
  background-color: #f5f5f5;
  padding-bottom: 96px;
}

.main__wrapper {
  overflow-x: hidden;
}

header {
  background-color: #ffffff;
}

hr {
  width: 40px;
  margin: 20px auto;
}

.section-title {
  padding-top: 48px;
  text-transform: uppercase;
  margin-bottom: 96px;
}

.section-title h2 {
  font-size: 32px;
  line-height: 1;
}

.section-title p {
  font-size: 1.6rem;
}

h3 span {
  display: inline-block;
  line-height: 2;
}

.clearfix__after {
  content: "";
  display: block;
  clear: both;
}

.icon-size {
  font-size: 2em;
}

/******************

　 　 IE対応

******************/
@media all and (-ms-high-contrast: none) {
  /* ここに書く */
  main {
    display: block;
  }
}

/******************

　body-menuボタン

******************/
.body__menu {
  width: 50px;
  position: fixed;
  top: 40px;
  right: 40px;
  z-index: 101;
  opacity: .5;
}

.body__menu:hover {
  cursor: pointer;
}

/* 画面外にいる状態 */
.fadeinMenu {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 600ms;
}

/* 画面内に入った状態 */
.fadeinMenu.scrollinMenu {
  opacity: 1;
  transform: translate(0, 0);
}

/******************

　　page-topボタン

******************/
#page_top {
  position: fixed;
  right: 40px;
  bottom: 100px;
  z-index: 1000;
}

#page_top:hover {
  cursor: pointer;
}

#page_top span {
  width: 60px;
  height: 60px;
  text-decoration: none;
}

#page_top span::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f139';
  font-size: 50px;
  color: rgba(221, 221, 221, 0.6);
}

/* 画面外にいる状態 */
.fadeinPagetop {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 1000ms;
}

/* 画面内に入った状態 */
.fadeinPagetop.scrollinPagetop {
  opacity: 1;
  transform: translate(0, 0);
}

/******************

　　fadein設定

******************/
/* 画面外にいる状態 */
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 画面内に入った状態 */
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/******************

bodyタグのfadein設定

******************/
.fadeinBody {
  display: none;
}

/******************

　 menubarの固定

******************/
.menubarFixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 1px 1px 5px #f5f5f5;
  z-index: 2;
  animation: fixfadein 0.5s;
}

@keyframes fixfadein {
  0% {
    margin-top: -60px;
  }
  100% {
    margin-top: 0;
  }
}

/******************

ブログサムネイルhover

******************/
.blog__archive--sumbnail {
  overflow: hidden;
}

.blog__archive--sumbnail img {
  transition: .3s all;
}

.blog__archive--sumbnail img:hover {
  filter: brightness(110%);
  transform: scale(1.1);
}

/******************

　　drop-shadow

******************/
.drop-shadow {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.drop-shadow--splash {
  filter: drop-shadow(2px 2px 4px rgba(221, 221, 221, 0.2));
}

/******************

　　drop-title

******************/
.letterDrop {
  position: relative;
  top: 0;
  transform: rotateX(-90deg);
  z-index: 1;
  animation: letterDrop 1.2s ease 1 normal forwards;
}

@media screen and (max-width: 991px) {
  .letterDrop {
    animation: letterDrop-sp 1.2s ease 1 normal forwards;
  }
}

@keyframes letterDrop {
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.8;
    top: calc(40vh - 110px);
    transform: rotateX(-360deg);
  }
  100% {
    opacity: 1;
    top: calc(50vh - 110px);
    transform: rotateX(360deg);
  }
}

@keyframes letterDrop-sp {
  10% {
    opacity: 0.5;
  }
  20% {
    opacity: 0.8;
    top: calc(40vh - 80px);
    transform: rotateX(-360deg);
  }
  100% {
    opacity: 1;
    top: calc(50vh - 80px);
    transform: rotateX(360deg);
  }
}

.delay1 {
  animation-delay: 0.6s;
}

.delay2 {
  animation-delay: 0.7s;
}

.delay3 {
  animation-delay: 0.8s;
}

.delay4 {
  animation-delay: 0.9s;
}

.delay5 {
  animation-delay: 1.0s;
}

.delay6 {
  animation-delay: 1.1s;
}

.delay7 {
  animation-delay: 1.2s;
}

.delay8 {
  animation-delay: 1.3s;
}

/******************

　 snsボタンを回転

******************/
.navigation__sns li:hover {
  animation: snsSpin .5s;
}

@keyframes snsSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/******************

　borderAnimation

******************/
.borderAnimation {
  width: 0;
}

.boderAnimationActive {
  width: 100%;
}

/******************

　    splash

******************/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #ffffff;
  text-align: center;
  color: #fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  margin-left: -5px;
}

/*画面遷移アニメーション*/
body {
  background: #f5f5f5;
  /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: #ffffff;
  /*画面を開いた後の背景色を指定*/
}

.splashbg {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 0px;
  /*開始はボーダーの太さは0*/
  border-style: solid;
  border-color: #f5f5f5;
  /*拡大する四角の色*/
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

@keyframes backBoxAnime {
  99.9% {
    /*アニメーション終了ぎりぎりまで*/
    z-index: 2;
    /*最前面に*/
    border-width: 0px;
    /*開始はボーダーの太さは0*/
  }
  100% {
    z-index: -1;
    /*最背面に*/
    border-width: 0px;
    /*終了はボーダーの太さは0*/
    display: none;
  }
}

/*画面遷移の後現れるコンテンツ設定*/
.main__wrapper {
  position: relative;
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear .main__wrapper {
  animation-name: PageAnimeAppear;
  animation-duration: 0.8s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/******************

    header-top

******************/
.home .blog__header1, .home .blog__header2 > .inner, .home .blog__header--bgsky {
  display: none;
}

/******************

    main-visual

******************/
.main-visual {
  position: relative;
  height: 100vh;
}

/*.main-visual::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background-color: #dddddd;
  border-radius: 10px;
  z-index: 2;
  bottom: 0;
  left: 50%;
  z-index: 2;
  animation: scrolldown 1.6s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
    0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    75% {
        transform-origin: top;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
}*/

.main-visual__image {
  /*clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);*/
  position: relative;
  background-image: url("https://cototabi.com/wp-content/themes/cototabi_splash/images/main-visual-pc.jpg");
  background-position: bottom right;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 1;
  height: 100%;
}

.main-visual__image--wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/*.main-visual__image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(100vw * 0.128) 100vw;
  border-color: transparent transparent #fff transparent;
  z-index: 1;
}*/

.main-visual__title {
  position: absolute;
  top: 10%;
  left: 27%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,sans-serif;
  color: #fff;
  font-size: 5.2rem;
  letter-spacing: 2rem;
  text-shadow: 3px 3px 6px #666;
}

.main-visual__title::nth-of-type(2) {
  top: 18%;
}

.main-visual__logo {
  position: absolute;
  width: 283px;
  top: 40%;
  left: 20%;
  transform: translateY(-50%);
  z-index: 1;
}

.main-visual__logo--top {
  margin-left: 4px;
  margin-bottom: 50px;
}

.main-visual__logo--top img {
  margin-right: 32px;
}

.main-visual__logo--top img:first-of-type {
  width: 37px;
}

.main-visual__logo--top img:nth-of-type(2) {
  width: 38px;
}

.main-visual__logo--top img:nth-of-type(3) {
  width: 45px;
}

.main-visual__logo--top img:nth-of-type(4) {
  width: 46px;
  margin-right: 0;
}

.main-visual__logo--bottom img {
  margin-right: 32px;
}

.main-visual__logo--bottom img:first-of-type {
  width: 44px;
}

.main-visual__logo--bottom img:nth-of-type(2) {
  width: 48px;
}

.main-visual__logo--bottom img:nth-of-type(3) {
  width: 40px;
}

.main-visual__logo--bottom img:nth-of-type(4) {
  width: 39px;
  margin-right: 0;
}

.main-visual__menu {
  width: 50px;
  z-index: 1;
  margin-top: 40px;
}

.main-visual__menu:hover {
  cursor: pointer;
}

.main-visual__navigation {
  position: absolute;
  width: 60px;
  height: 50px;
  top: 52%;
  left: 20%;
  z-index: 2;
  color: #ffffff;
}

.main-visual__navigation span {
  display: block;
  width: 45px;
  height: 5px;
  transition: all 0.5s;
  margin-bottom: 12px;
  background-color: #ffffff;
}

.btn-trigger {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background-color: transparent;
  position: absolute;
  top: 45%;
  left: 16%;
  height: 20px;
  z-index: 3;
}

.btn-trigger span {
  display: block;
  width: 40px;
  height: 5px;
  transition: all 0.5s;
  margin-bottom: 10px;
  background-color: #ffffff;
  box-shadow: 3px 3px 6px #666;
}

.navigation__bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  opacity: 0.1;
  z-index: -1;
}

.navigation__area {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 43%;
  height: 100%;
  background-color: #ffffff;
  font-size: 2.4rem;
  z-index: 2;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.05);
}

.navigation__list {
  margin-top: 80px;
}

.navigation__list li {
  line-height: 1;
  margin-bottom: 48px;
}

.navigation__close {
  width: 2em;
  margin: 0 auto;
}

.navigation__close:hover {
  cursor: pointer;
}

.navigation__sns {
  display: flex;
  justify-content: center;
}

.navigation__sns .fa-facebook {
  color: #3B5998;
  margin: 72px 24px;
}

.navigation__sns .fa-twitter {
  color: #1DA1F2;
  margin: 72px 24px;
}

.navigation__sns i:hover {
  cursor: pointer;
}

/******************

      about

******************/
.about {
  position: relative;
  padding-bottom: 180px;
}

.about::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background-color: #dddddd;
  border-radius: 10px;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  z-index: 1;
  animation: scrolldown 1.6s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
    0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    75% {
        transform-origin: top;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
}


.about__content {
  padding: 0 20px;
}

.about__title .section-title {
    padding-top: 100px;
}

.about__title--wrapper {
  position: relative;
  margin-bottom: 32px;
}

.about__title span {
  background-color: #ffffff;
  padding-right: 32px;
}

.about__title--separation {
  position: absolute;
  top: 50%;
  display: block;
  background-color: #333333;
  height: 1px;
  z-index: -1;
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.about__subtitle {
  position: relative;
  font-size: 28px;
  margin-bottom: 72px;
  /*		&::after{
			content:'';
			position: absolute;
			top:50%;
			left:0;
			transform: translateY(-50%);
			background-color: $black;
			height: 2px;
			width:100%;
			z-index:-1;
		}*/
}

.about__subtitle span {
  background-color: #ffffff;
  padding-right: 32px;
}

.about__paragraph {
  margin-bottom: 96px;
}

.about__profile {
  display: flex;
}

.about__profile--image {
  width: 344px;
}

.about__profile--text {
  margin-left: 56px;
}

.about__profile--top {
  display: flex;
  align-items: flex-end;
  margin-bottom: 24px;
}

.about__profile--name {
  font-size: 32px;
  line-height: 2;
}

.about__profile--name span {
  font-size: 18px;
  display: block;
  line-height: 1;
}

.about__profile--birthinfo {
  margin-left: 32px;
  line-height: 1;
}

.about__profile--paragraph {
  margin-bottom: 48px;
}

.about__profile--paragraph a {
  color: #021893;
}

.about__profile--paragraph a:hover {
  color: #00abf4;
  text-decoration: underline;
}

/******************

      works

******************/
.works {
  position: relative;
  background-color: #f5f5f5;
}

.works::before {
  content: "";
  position: absolute;
  top: calc(100vw * -0.128);
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(100vw * 0.128) 100vw;
  border-color: transparent transparent #f5f5f5 transparent;
  z-index: -1;
  /*transform: scale(-1,1); 左右反転させる*/
}

.works::after {
  content: "";
  position: absolute;
  bottom: calc(100vw * -0.128);
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(100vw * 0.128) 100vw;
  border-color: transparent transparent transparent #f5f5f5;
  z-index: 1;
  /*transform: scale(-1,1); 左右反転させる*/
}

.works__list {
  display: flex;
  flex-wrap: wrap;
}

.works__item {
  box-sizing: border-box;
  width: 50%;
  padding: 0 20px;
  margin-bottom: 96px;
}

.works__item--title {
  text-align: center;
}

.works__item--title h3 {
  line-height: 1;
  margin-bottom: 20px;
}

.works__item p {
  margin-bottom: 20px;
}

.works__item--link a {
  font-size: 1.6rem;
  color: #021893;
}

.works__item--link a:hover {
  color: #00abf4;
  text-decoration: underline;
}

.works__item--text {
  padding: 0 40px;
  letter-spacing: 1.6px;
}

/******************

    service

******************/
.service {
  position: relative;
  margin-top: 180px;
  margin-bottom: 96px;
  padding-bottom: 180px;
}

.service::before {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background-color: #dddddd;
  border-radius: 10px;
  z-index: 2;
  top: -156px;
  left: 50%;
  z-index: 1;
  animation: scrolldown 1.6s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
    0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    75% {
        transform-origin: top;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
}

.service::after {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background-color: #dddddd;
  border-radius: 10px;
  z-index: 2;
  bottom: -70px;
  left: 50%;
  z-index: 1;
  animation: scrolldown 1.6s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
    0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    75% {
        transform-origin: top;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
}

.service__list {
  display: flex;
}

.service__item {
  width: 33.3%;
  padding: 0 32px;
}

.service__item--separation {
  display: block;
  background-color: #333333;
  height: 1px;
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.service__item--image {
  padding: 0 40px;
}

.service__item h3 {
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
}

.service__title--number {
  display: inline-block;
  font-size: 3.2rem;
}

.service__title--number::after {
  content: "";
  display: inline-block;
  background-color: #dddddd;
  height: 2px;
  width: 48px;
  transform: rotate(-45deg);
}

.service__title--main {
  display: inline-block;
  font-weight: 700;
  margin-bottom: -10px;
  margin-left: 20px;
}

/******************

     blog

******************/
.blog__section {
  position: relative;
  background-color: #f5f5f5;
  padding-bottom: 96px;
}

.blog__section::before {
  content: "";
  position: absolute;
  top: calc(100vw * -0.128);
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(100vw * 0.128) 100vw;
  border-color: transparent transparent #f5f5f5 transparent;
  z-index: -1;
  /*transform: scale(-1,1); 左右反転させる*/
}

.blog__section::after {
  content: "";
  position: absolute;
  bottom: calc(100vw * -0.128);
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 calc(100vw * 0.128) 100vw;
  border-color: transparent transparent transparent #f5f5f5;
  z-index: 1;
  /*transform: scale(-1,1); 左右反転させる*/
}

.blog__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
}

.blog__item {
  box-sizing: border-box;
  width: calc(25% - 16px);
  margin: 0 8px 32px;
  box-shadow: 3px 3px 15px -3px #dddddd;
  display: flex;
  flex-direction: column;
}

.blog__archive--sumbnail {
  position: relative;
  cursor: pointer;
}

.blog__archive--sumbnail .post-categories {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #4AC8E7;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 2px 8px;
}

.blog__archive--sumbnail .post-categories li {
  display: none;
}

.blog__archive--sumbnail .post-categories li:nth-of-type(2) {
  display: block;
}

.blog__archive--sumbnail .post-categories a {
  color: #ffffff;
}

.blog__archive--box {
  flex-grow: 1;
  position: relative;
  border: 1px solid #ddd;
  border-top: none;
  background-color: #fff;
}

.blog__archive--box a:hover {
  text-decoration: underline;
}

.blog__archive--title {
  font-size: 1.8rem;
  padding: 16px 16px 0;
}

.blog__archive--text {
  font-size: 1.4rem;
  padding: 16px 16px 0;
  margin-bottom: 56px;
}

.blog__archive--parts {
  position: absolute;
  bottom: 0;
  padding: 16px;
}

.blog__archive--parts i {
  margin-right: 8px;
}

.blog__button {
  padding: 24px;
  background-color: #4AC8E7;
  width: 28%;
  margin: 64px auto 0;
  transition: all 0.3s;
}

.blog__button--text {
  color: #ffffff;
}

.blog__button:hover {
  filter: brightness(110%);
}

/******************

     contact

******************/
.contact {
  position: relative;
  margin-top: 180px;
}

.contact::before {
  position: absolute;
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background-color: #dddddd;
  border-radius: 10px;
  z-index: 2;
  top: -154px;
  left: 50%;
  z-index: 1;
  animation: scrolldown 1.6s cubic-bezier(0.76, 0, 0.3, 1) forwards infinite;
}

@keyframes scrolldown {
    0%{
        transform-origin: top;
        transform: scaleY(0);
    }
    75% {
        transform-origin: top;
        transform: scaleY(1);
    }
    100%{
        transform-origin: bottom;
        transform: scaleY(1);
    }
}

.contact__read {
  font-size: 2.4rem;
  margin-bottom: 96px;
}

.contact__button {
  display: inline-block;
  background-color: #ffffff;
  border: 2px solid #4AC8E7;
  padding: 20px 40px;
  margin-bottom: 128px;
  border-radius: 50px;
  font-size: 3.6rem;
  width: 50%;
  transform: all 0.3s;
}

.contact__button--text {
  color: #4AC8E7;
}

.contact__button--text:hover {
  color: #ffffff;
}

.contact__button:hover {
  background-color: #4AC8E7;
  filter: brightness(110%);
}

/******************

     footer

******************/
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #091939;
  height: 80px;
}

.footer small img {
  margin: 0 1px;
}

/******************

    blog-page

******************/
.blog__header1 {
  border-bottom: 2px solid #dddddd;
}

.blog__header2 {
  position: relative;
}

.blog__header--logo {
  width: 196px;
}

.blog__header--menu img {
  width: 50px;
}

.blog__header--menu:hover {
  cursor: pointer;
}

.blog__header--top {
  display: flex;
  align-items: center;
  height: 120px;
  justify-content: center;
  padding: 0 28px;
}

.blog__header--bottom {
  display: flex;
  align-items: center;
  height: 120px;
  justify-content: space-between;
  padding: 0 28px;
}

.blog__header--bottom i:hover {
  cursor: pointer;
}

.blog__header--bgsky {
  background-color: #4AC8E7;
  color: #ffffff;
  font-size: 1.8rem;
}

.blog__header--bgskyFixed {
  margin-top: 60px;
}

.blog__header--breadcrumb {
  display: table-cell;
  vertical-align: middle;
  height: 60px;
  padding: 0 28px;
}

.blog__header--breadcrumb i {
  margin-right: 16px;
}

.blog__header--breadcrumb a {
  color: white;
  cursor: pointer;
}

.blog__header--breadcrumb span {
  display: inline-block;
}

.blog__header--searchbar {
  position: absolute;
  top: -2px;
  left: 0;
  background-color: #010101;
  height: 122px;
  width: 100%;
  color: #dddddd;
  font-size: 32px;
  display: none;
}

.blog__header--searchbar p {
  width: 100%;
  border-bottom: 2px solid #dddddd;
  margin-left: 28px;
  margin-right: 28px;
}

.blog__header--searchbar i {
  display: inline-block;
  margin-right: 36px;
}

.blog__header--searchbar form {
  display: flex;
  align-items: center;
  height: 120px;
}

.blog__header--searchbar form input[type="text"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #ffffff;
  background-color: #010101;
  width: 100%;
  border-bottom: 2px solid #dddddd;
  margin-left: 28px;
  margin-right: 28px;
  font-size: 32px;
}

.blog__header--searchbar form input[type="text"]:focus {
  outline: none;
}

.blog__category--pc {
  display: block;
}

.blog__category--sp {
  display: none;
}

.blog__category--first {
  display: flex;
  align-items: flex-start;
  padding-top: 40px;
}

.blog__category--button {
  float: right;
  padding-right: 28px;
  margin-left: auto;
  margin-top: 2px;
  color: #091939;
}

.blog__category--button img {
  width: 24px;
  margin-right: 12px;
}

.blog__category--expand {
  display: none;
}

.blog__category--expand img {
  margin-right: 20px;
}

.blog__category--expandbtn {
  display: none;
  margin-right: 28px;
}

.blog__category--list {
  display: flex;
  flex-wrap: wrap;
  width: 68%;
  padding: 0 28px;
}

.blog__category--item {
  box-sizing: border-box;
  width: 20%;
  margin-bottom: 40px;
  font-size: 1.8rem;
  text-align: center;
  border-right: 4px solid #dddddd;
}

.blog__category--item:first-of-type {
  border-left: 4px solid #dddddd;
}

.blog__category--item:nth-of-type(6) {
  border-left: 4px solid #dddddd;
}

.blog__category--item:nth-of-type(11) {
  border-left: 4px solid #dddddd;
}

.blog__item:first-of-type {
  margin-bottom: 32px;
}

.blog__item:nth-of-type(3) {
  margin-bottom: 32px;
}

.blog__item:nth-of-type(5) {
  margin-bottom: 32px;
}

.blog__item:nth-of-type(7) {
  margin-bottom: 32px;
}

.blog__button--all {
  display: flex;
  justify-content: center;
}

.blog__button--prev {
  padding: 24px;
  background-color: #4AC8E7;
  width: 28%;
  margin: 64px 0 0;
  border-right: 0.5px solid #ffffff;
}

.blog__button--prev:hover {
  filter: brightness(110%);
}

.blog__button--prev a {
  color: #ffffff;
  padding: 24px 80px;
}

.blog__button--next {
  padding: 24px;
  background-color: #4AC8E7;
  width: 28%;
  margin: 64px 0 0;
}

.blog__button--next:hover {
  filter: brightness(110%);
}

.blog__button--next a {
  color: #ffffff;
  padding: 24px 80px;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  margin-top: 96px;
}

.wp-pagenavi span, .wp-pagenavi .page {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  text-align: center;
  background-color: #dddddd;
  color: #ffffff;
  font-size: 24px;
  margin: 0 10px;
}

.wp-pagenavi .current {
  background-color: #4AC8E7;
}

.active .active-none {
  display: none;
}

.active .active-block {
  display: block;
}

.cat-item {
  box-sizing: border-box;
  width: 20%;
  margin-bottom: 40px;
  font-size: 1.6rem;
  text-align: center;
  border-right: 4px solid #dddddd;
  display: none;
}

.cat-item:first-of-type {
  border-left: 4px solid #dddddd;
}

.cat-item:nth-of-type(6) {
  border-left: 4px solid #dddddd;
}

.cat-item:nth-of-type(11) {
  border-left: 4px solid #dddddd;
}

.cat-item:nth-of-type(-n+5) {
  display: block;
}

/******************

   article-page

******************/
.article {
  background-color: #ffffff;
  margin: 0 28px;
}

.article__wrapper {
  background-color: #f5f5f5;
  padding-bottom: 96px;
}

.article__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.article__main {
  padding: 40px;
}

.article__main h2 {
  background-color: #4AC8E7;
  color: #ffffff;
  margin: 32px 0 16px;
  font-size: 2.4rem;
  border-radius: 2px;
  padding: 1rem;
}

.article__main h3 {
  font-size: 1.8rem;
  border-left: 4px solid #dddddd;
  padding-left: 10px;
  margin-bottom: 16px;
}

.article__main p {
  margin-bottom: 2em;
}

.article__main a {
  color: #021893;
}

.article__main a:hover {
  color: #00abf4;
  text-decoration: underline;
}

.article__category--list {
  display: flex;
}

.article__category--list .post-categories {
  display: flex;
  flex-wrap: wrap;
}

.article__category--list .post-categories li {
  background-color: #4AC8E7;
  font-size: 1.4rem;
  margin-bottom: 32px;
  margin-right: 16px;
  padding: 8px;
  width: 90px;
  text-align: center;
}

.article__category--list .post-categories li:first-of-type {
  display: none;
}

.article__category--list .post-categories a {
  color: #ffffff;
}

.article__title {
  font-size: 32px;
  margin-bottom: 32px;
}

.article__title p {
  margin-bottom: 32px;
}

.article__title--option {
  display: flex;
  font-size: 2.4rem;
  line-height: 1;
}

.article__title--option img {
  margin-right: 8px;
}

.article__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #333333;
  border-radius: 2.5px;
}

.article__title--date {
  display: inline-block;
  vertical-align: middle;
  margin-top: 32px;
  margin-bottom: 32px;
}

.article__title--date img {
  display: inline-block;
  width: 24px;
}

.article__title--update {
  margin-top: 32px;
  margin-bottom: 32px;
  margin-left: 32px;
}

.article__title--update img {
  display: inline-block;
  width: 24px;
}

.article__title--sumbnail {
  margin-bottom: 32px;
  max-width: 640px;
}

#toc_container {
  padding: 1em 2em 1em !important;
  border: 1px solid #dddddd !important;
}

#toc_container p.toc_title {
  margin-bottom: 0.7em !important;
}

#toc_container ul {
  margin: 0 !important;
}

#toc_container li a {
  display: block;
  padding: .5em 0;
  border-top: 1px dotted #dddddd;
  color: #021893;
}

#toc_container li a:hover {
  color: #00abf4;
  text-decoration: underline;
}

#toc_container li li a {
  padding-left: 0.7em;
}

/******************

   contact-page

******************/
.contact__main {
  padding: 40px;
}

.contact__article {
  background-color: #ffffff;
  margin: 0 28px;
}

.contact__wrapper {
  background-color: #f5f5f5;
  padding: 96px 28px;
}

.contact__wrapper .section-title {
  margin-bottom: 32px;
}

.contact__form {
  font-size: 2.4rem;
}

.contact__form--label {
  display: inline-block;
  margin: 24px 0;
}

.contact__form--label span {
  font-size: 1.6rem;
  background-color: #f00;
  color: #ffffff;
  padding: 8px;
  margin-left: 16px;
}

.contact__form input {
  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  border-radius: 3px;
}

.contact__form textarea {
  width: 100%;
  height: 320px;
  box-sizing: border-box;
  border: 1px solid #dddddd;
  border-radius: 2px;
}

.contact__form--button {
  width: 32%;
  margin: 64px auto 0;
}

.contact__form--button input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 80px;
  background-color: #4AC8E7;
  color: #ffffff;
  border: none;
}

.contact__form--button input[type="submit"]:hover {
  filter: brightness(110%);
}

.contact__privacypolicy {
  background-color: #f5f5f5;
  margin: 64px 40px;
  padding: 24px;
  line-height: 1.75;
}

.contact__privacypolicy hr {
  width: 240px;
  border: 1px solid #333333;
}

.contact__privacypolicy--subtitle {
  margin: 32px 0;
  font-weight: bold;
}

.contact__title {
  font-size: 3.2rem;
  margin: 40px 0;
}

.contact__title::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background-color: #333333;
  border-radius: 2.5px;
}

.contact__title h3 {
  padding-bottom: 8px;
}

.contact__mail--image {
  width: 112px;
  margin: 96px auto 0;
}

.contact__mail--text {
  margin: 56px 0 160px;
  font-size: 3.6rem;
}

.contact__mail--text a {
  color: #4AC8E7;
}

.pageTitle {
  display: none;
}

/******************

   search-page

******************/
.search__result {
  margin-left: 28px;
  margin-bottom: 32px;
}

/******************

　　media-query

******************/
@media only screen and (min-width: 1200px) {
  /******************

xxl:min-width:1200px

******************/
  /******************

	      setting

	******************/
  .section-title {
    padding-top: 48px;
  }
  /******************

	   main-visual

	******************/
  .main-visual::after {
    bottom: 3vh;
  }
  /******************

	      about

	******************/
  .about::before {
    top: -112px;
  }
  .about::after {
    bottom: 12px;
  }
  .about .section-title {
    padding-top: 100px;
  }
  /******************

	      works

	******************/
  .works::before {
    top: calc(100vw * -0.09);
    border-width: 0 0 calc(100vw * 0.09) 100vw;
  }
  .works::after {
    bottom: calc(100vw * -0.09);
    border-width: 0 0 calc(100vw * 0.09) 100vw;
  }
  .works__item:last-of-type {
    margin-bottom: 48px;
  }
  /******************

	      service

	******************/
  .service {
    padding-bottom: 90px;
  }
  .service::before {
    top: -166px;
  }
  .service::after {
    bottom: -58px;
  }
  /******************

	      blog

	******************/
  .blog__section {
    padding-bottom: 48px;
  }
  .blog::before {
    top: calc(100vw * -0.09);
    border-width: 0 0 calc(100vw * 0.09) 100vw;
  }
  .blog::after {
    bottom: calc(100vw * -0.09);
    border-width: 0 0 calc(100vw * 0.09) 100vw;
  }
  /******************

	     contact

	******************/
  .contact::before {
    top: -142px;
  }
}

/******************

xl:max-width:1199px

******************/
@media only screen and (max-width: 1199px) {
  /******************

	      setting

	******************/
  /******************

	   main-visual

	******************/
  .main-visual::after {
    bottom: 2vh;
  }
  /******************

	      about

	******************/
  /******************

	      works

	******************/
  /******************

	      service

	******************/
  /******************

	      blog

	******************/
  /******************

	     contact

	******************/
  .contact__article {
    margin: 0;
  }
}

/******************

 l:max-width:991px

******************/
@media only screen and (max-width: 991px) {
  /******************

 l:max-width:991px

******************/
  /******************

	      setting

	******************/
  html {
    font-size: 56.25%;
  }
  /******************

	    main-visual

	******************/
  .main-visual::after {
    bottom: 1vh;
  }
  /******************

	       about

	******************/
  .about {
    padding-bottom: 90px;
  }
  .about::before {
    top: -110px;
  }
  .about::after {
    bottom: 10px;
  }
  /******************

	       works

	******************/
  .works__item {
    margin-bottom: 48px;
  }
  .works__item--text {
    padding: 0 20px;
  }
  /******************

	      service

	******************/
  .service {
    padding-bottom: 90px;
  }
  .service__item {
    padding: 0 16px;
  }
  .service__item--image {
    padding: 0 20px;
  }
  .service__title--main {
    margin-left: 0;
  }
  .service::before {
    top: -166px;
  }
  .service::after {
    bottom: -82px;
  }
  /******************

	       blog

	******************/
  .blog__item--top {
    width: 50%;
  }
  .blog__item--top:first-of-type {
    margin-bottom: 40px;
  }
  /******************

	      contact

	******************/
  .contact::before {
    top: -168px;
  }
  /******************

	    blog-page

	******************/
  .blog__item {
    width: calc(50% - 16px);
  }
  /******************

	    contact-page

	******************/
  .contact__privacypolicy {
    margin: 64px 0;
  }
  .contact__privacypolicy--subtitle {
    margin: 16px 0;
  }
  .contact__wrapper .inner {
    padding: 0;
  }
}

/******************

 m:max-width:767px

******************/
@media only screen and (max-width: 767px) {
  /******************

	      setting

	******************/
  .inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .wrapper {
    padding-bottom: 48px;
  }
  .section-title {
    margin-bottom: 48px;
  }
  /******************

	    main-visual

	******************/
  .main-visual__logo {
    top: 45%;
    left: 10%;
  }
  .main-visual__menu {
    left: 10%;
    width: 60px;
  }
  .main-visual::after {
    bottom: 0;
  }
  .navigation__area {
    width: 75%;
  }
  .navigation__top {
    margin-top: 40px;
  }
  .navigation__list {
    margin-top: 60px;
  }
  .navigation__list li {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .navigation__close {
    width: 1.5em;
  }
  .navigation__sns .fa-facebook {
    margin: 32px 24px;
  }
  .navigation__sns .fa-twitter {
    margin: 32px 12px;
  }
  .icon-size {
    font-size: 1.5em;
  }
  /******************

	      about

	******************/
  .about {
    padding-bottom: calc(100vw * 0.22);
  }
  .about::before {
    top: -88px;
  }
  .about::after {
    bottom: 18px;
  }
  .about__title {
    font-size: 2.2rem;
  }
  .about__subtitle {
    font-size: 2.2rem;
  }
  .about__paragraph {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }
  .about__subtitle {
    margin-bottom: 36px;
  }
  .about__profile {
    display: block;
  }
  .about__profile--top {
    margin-bottom: 16px;
  }
  .about__profile p:first-of-type span {
    font-size: 1.2rem;
  }
  .about__profile--image {
    width: 100%;
    margin-bottom: 16px;
    padding: 0 96px;
    box-sizing: border-box;
  }
  .about__profile--name {
    font-size: 2rem;
    font-weight: 400;
    line-height: 3;
  }
  .about__profile--name span {
    display: block;
    font-weight: 700;
    line-height: 1;
  }
  .about__profile--birthinfo {
    padding-left: 0;
    font-size: 1.2rem;
    margin-left: 16px;
    line-height: 1;
  }
  .about__profile--text {
    margin-left: 0;
  }
  .about__profile--paragraph {
    font-size: 1.4rem;
  }
  /******************

	      works

	******************/
  .works::before {
    top: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .works::after {
    bottom: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .works__list {
    display: block;
  }
  .works__item {
    width: 100%;
    margin-bottom: 48px;
    padding: 0;
  }
  .works__item img {
    padding-left: 10px;
  }
  .works__item--title h3 {
    font-size: 1.8rem;
  }
  .works__item--text {
    font-size: 1.4rem;
    padding: 0 20px;
  }
  .works__item:last-of-type {
    padding-bottom: 48px;
  }
  /******************

	     service

	******************/
  .service {
    margin-top: 180px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .service::before {
    top: -160px;
  }
  .service::after {
    bottom: -78px;
  }
  .service__list {
    display: block;
  }
  .service__item {
    width: 100%;
    margin-bottom: 96px;
    padding: 0 20px;
    box-sizing: border-box;
  }
  .service__item--image {
    padding: 0 64px;
  }
  .service__item:last-of-type {
    padding-bottom: calc(100vw * 0.22);
  }
  .service__title--main {
    margin-left: calc(100vw * 0.15);
  }
  .service p {
    font-size: 1.4rem;
  }
  /******************

	      blog

	******************/
  .blog__section::before {
    top: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .blog__section::after {
    bottom: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .blog__section .blog__item {
    width: 100%;
    display: none;
  }
  .blog__section .blog__item:first-of-type {
    display: block;
  }
  .blog__list {
    display: block;
  }
  .blog__button {
    width: 80%;
    box-sizing: border-box;
    margin-top: 48px;
  }
  /******************

	      contact

	******************/
  .contact::before {
    top: -160px;
  }
  .contact__read {
    font-size: 1.4rem;
  }
  .contact__button {
    font-size: 1.8rem;
  }
  /******************

	    blog-page

	******************/
  .blog__header1 {
    border-bottom-width: 1px;
  }
  .blog__header--logo {
    width: 90px;
  }
  .blog__header--top {
    height: 60px;
  }
  .blog__header--bottom {
    height: 60px;
    padding: 0;
  }
  .blog__header--menu {
    width: 30px;
  }
  .blog__header--searchbar {
    height: 62px;
    font-size: 1.6rem;
  }
  .blog__header--searchbar i {
    margin-right: 8px;
  }
  .blog__header--searchbar form {
    display: flex;
    align-items: center;
    height: 62px;
  }
  .blog__header--searchbar form input[type="text"] {
    margin-left: 0;
    margin-right: 8px;
    font-size: 2.2rem;
  }
  .blog__header--breadcrumb {
    height: 60px;
    font-size: 1.2rem;
    padding: 0;
  }
  .blog__header--breadcrumb i {
    margin-right: 8px;
  }
  .blog__category--button {
    padding-right: 0;
    font-size: 1.2rem;
    margin-top: 0;
  }
  .blog__category--button img {
    width: 16px;
  }
  .blog__category--expand {
    padding-right: 0;
  }
  .blog__category--expandbtn {
    margin-right: 19px;
  }
  .blog__category--list {
    padding-left: 0;
  }
  .blog__category--item {
    font-size: 1.2rem;
    width: 33.3%;
  }
  .blog__category--item:nth-of-type(6) {
    border-left: none;
  }
  .blog__category--item:nth-of-type(11) {
    border-left: none;
  }
  .blog__category--item:nth-of-type(4) {
    border-left: 4px solid #dddddd;
  }
  .blog__category--item:nth-of-type(7) {
    border-left: 4px solid #dddddd;
  }
  .blog__category--item:nth-of-type(10) {
    border-left: 4px solid #dddddd;
  }
  .blog__category--item:nth-of-type(13) {
    border-left: 4px solid #dddddd;
  }
  .blog__list {
    padding: 0;
  }
  .blog__item {
    display: block;
    padding: 0;
    width: 100%;
    margin: 0 0 32px;
  }
  .blog__item:last-of-type {
    margin-bottom: 0;
  }
  .blog__button--all a {
    padding: 18px 24px;
    margin: 48px 0 0;
  }
  .blog__pagenation {
    margin: 48px auto 0;
  }
  .cat-item {
    box-sizing: border-box;
    width: 33.3%;
    margin-bottom: 40px;
    font-size: 1.1rem;
    text-align: center;
    border-right: 4px solid #dddddd;
    display: none;
  }
  .cat-item:first-of-type {
    border-left: 4px solid #dddddd;
  }
  .cat-item:nth-of-type(4) {
    border-left: 4px solid #dddddd;
  }
  .cat-item:nth-of-type(7) {
    border-left: 4px solid #dddddd;
  }
  .cat-item:nth-of-type(10) {
    border-left: 4px solid #dddddd;
  }
  .cat-item:nth-of-type(13) {
    border-left: 4px solid #dddddd;
  }
  .cat-item:nth-of-type(6) {
    border-left: none;
  }
  .cat-item:nth-of-type(11) {
    border-left: none;
  }
  .cat-item:nth-of-type(-n+5) {
    display: none;
  }
  .cat-item:nth-of-type(-n+3) {
    display: block;
  }
  /******************

	   article-page

	******************/
  .article {
    margin: 0;
  }
  .article__wrapper {
    padding-bottom: 48px;
  }
  .article__wrapper .inner {
    padding: 0 20px;
  }
  .article__inner {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
  }
  .article__main {
    padding: 20px;
  }
  .article__main h2 {
    font-size: 1.8rem;
    margin-top: 16px;
  }
  .article__main h3 {
    font-size: 1.6rem;
  }
  .article__main p {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }
  .article__title {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .article__title--date {
    font-size: 1.6rem;
  }
  .article__title--date img {
    width: 16px;
  }
  .article__title--update {
    font-size: 1.6rem;
  }
  .article__title--update img {
    width: 16px;
  }
  .article__title p {
    margin-bottom: 16px;
  }
  .article__category--list .post-categories li {
    font-size: 1.1rem;
    width: 60px;
    margin-bottom: 20px;
  }
  .article__heading--2 {
    font-size: 1.8rem;
    margin: 20px 0;
  }
  .article__heading--3 {
    font-size: 1.6rem;
    border-left: 4px solid #dddddd;
    padding-left: 10px;
    margin: 20px 0;
  }
  .article__paragraph {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
  /******************

	   contact-page

	******************/
  .contact__main {
    padding: 0 0 40px;
  }
  .contact__article {
    margin: 0;
    padding: 0 20px;
  }
  .contact__article .section-title {
    padding-top: 48px;
  }
  .contact__wrapper {
    padding: 56px 0 48px;
  }
  .contact__wrapper .inner {
    padding: 0 20px;
  }
  .contact__form {
    font-size: 1.8rem;
  }
  .contact__form span {
    font-size: 1.2rem;
  }
  .contact__form--button {
    width: 36%;
    margin: 32px auto 0;
  }
  .contact__form input[type="submit"] {
    height: 60px;
  }
  .contact__privacypolicy {
    margin: 40px 8px;
  }
  .contact__privacypolicy p {
    font-size: 1.2rem;
  }
  .contact__mail--image {
    width: 56px;
  }
  .contact__mail--text {
    margin: 28px 0 80px;
    font-size: 1.8rem;
  }
  /******************

	   search-page

	******************/
  .search__result {
    margin-top: 32px;
    margin-bottom: 32px;
    margin-left: 0;
  }
  .search__result:last-of-type {
    margin-bottom: 160px;
  }
}

/******************

 s:max-width:575px

******************/
@media only screen and (max-width: 575px) {
  /******************

	      setting

	******************/
  .inner {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
  #page_top {
    right: 20px;
  }
  .body__menu {
    right: 20px;
  }
  /******************

	    main-visual

	******************/
  .main-visual__image {
    background-image: url("./images/main-visual-sp.jpg");
    background-position: bottom right;
    -webkit-background-size: cover;
    background-size: cover;
  }
  .main-visual__image::after {
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .main-visual__logo img {
    margin-right: 16px;
  }
  .main-visual__logo--top img:first-of-type {
    width: 27px;
  }
  .main-visual__logo--top img:nth-of-type(2) {
    width: 28px;
  }
  .main-visual__logo--top img:nth-of-type(3) {
    width: 35px;
  }
  .main-visual__logo--top img:nth-of-type(4) {
    width: 36px;
  }
  .main-visual__logo--bottom img:first-of-type {
    width: 34px;
  }
  .main-visual__logo--bottom img:nth-of-type(2) {
    width: 38px;
  }
  .main-visual__logo--bottom img:nth-of-type(3) {
    width: 30px;
  }
  .main-visual__logo--bottom img:nth-of-type(4) {
    width: 29px;
  }
  /******************

	       about

	******************/
  .about::before {
    top: -96px;
  }
  .about::after {
    bottom: -8px;
  }
  .about__profile--image {
    padding: 0 24px;
    margin-bottom: 16px;
  }
  /******************

	       works

	******************/
  .works::before {
    top: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .works::after {
    bottom: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  /******************

	      service

	******************/
  .service::before {
    top: -184px;
  }
  .service::after {
    bottom: -104px;
  }
  .service__title--main {
    margin-left: calc(100vw * 0.08);
  }
  .service__item--image {
    padding: 0 24px;
  }
  /******************

	       blog

	******************/
  .blog__section::before {
    top: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  .blog__section::after {
    bottom: calc(100vw * -0.24);
    border-width: 0 0 calc(100vw * 0.24) 100vw;
  }
  /******************

	      contact

	******************/
  .contact {
    margin-top: 180px;
  }
  .contact .section-title {
    padding-top: 48px;
  }
  .contact::before {
    top: -180px;
  }
  /******************

	    contact-page

	******************/
}

/******************

 xs:max-width:320px

******************/
@media only screen and (max-width: 320px) {
  .main-visual__menu {
    top: 60%;
    margin-left: 12px;
  }
}

/******************

    waves

******************/

/* wavesポシション */

.waves__wrap {
    position: absolute;
    bottom: -1px;
    -moz- bottom: -3px;
    left: 0;
    width:100%;
    z-index: 2;
}

/* waves svg */

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
}
