@charset "UTF-8";
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fef2f4;
  z-index: 9999999;
  text-align: center;
  color: #fff; }

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
  .loader_letter {
    text-transform: uppercase;
    color: #f9452d;
    font-family: sofia-pro, "sofia pro", Helvetica, Arial, sans-serif;
    font-weight: bold;
    padding: 0 .2em;
    font-size: 2em;
    line-height: 1;
    position: relative;
    display: inline-block;
    animation: bounce 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite alternate; }
    .loader_letter:nth-child(1) {
      animation-delay: 0s; }
    .loader_letter:nth-child(2) {
      animation-delay: 0.05s; }
    .loader_letter:nth-child(3) {
      animation-delay: 0.1s; }
    .loader_letter:nth-child(4) {
      animation-delay: 0.15s; }
    .loader_letter:nth-child(5) {
      animation-delay: 0.2s; }
    .loader_letter:nth-child(6) {
      animation-delay: 0.25s; }
    .loader_letter:nth-child(7) {
      animation-delay: 0.3s; }
  @media only screen and (max-width: 767px) {
    .loader_letter {
      font-size: 1em; } }

@keyframes bounce {
  0% {
    transform: translateY(0px); }
  100% {
    transform: translateY(-1em); } }
/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none; }

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg,
body::after {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #f9452d;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards; }

@keyframes PageAnime {
  0% {
    transform-origin: right;
    transform: scaleX(0); }
  50% {
    transform-origin: right;
    transform: scaleX(1); }
  50.001% {
    transform-origin: left; }
  100% {
    transform-origin: left;
    transform: scaleX(0); } }
/*画面遷移の後現れるコンテンツ設定*/
.bg-container {
  opacity: 0;
  /*はじめは透過0に*/ }

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

@keyframes PageAnimeAppear {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.work-title span {
  opacity: 0;
  transform: translateY(100%); }

.work-title.cue span {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1); }

.work-title.cue span:nth-child(1) {
  transition-delay: 0.1s; }

.work-title.cue span:nth-child(2) {
  transition-delay: 0.2s; }

.work-title.cue span:nth-child(3) {
  transition-delay: 0.3s; }

.work-title.cue span:nth-child(4) {
  transition-delay: 0.4s; }

.work-title.cue span:nth-child(5) {
  transition-delay: 0.5s; }

.work-title.cue span:nth-child(6) {
  transition-delay: 0.6s; }

.work-title.cue span:nth-child(7) {
  transition-delay: 0.7s; }

.work-title.cue span:nth-child(8) {
  transition-delay: 0.8s; }

.work-title.cue span:nth-child(9) {
  transition-delay: 0.9s; }

.work-title.cue span:nth-child(9) {
  transition-delay: 0.9s; }

.fade {
  margin-top: 120vh;
  text-align: center;
  opacity: 0;
  transition: opacity 3s; }

prof-img .fade.view {
  opacity: 1; }

/*common*/
body {
  margin: 0;
  font-family: sofia-pro, "sofia pro", Helvetica, Arial, sans-serif;
  background-color: #fef2f4;
  font-weight: lighter; }
  body article,
  body aside,
  body details,
  body figcaption,
  body figure,
  body footer,
  body header,
  body main,
  body menu,
  body nav,
  body section,
  body summary {
    display: block;
    word-break: keep-all;
    line-break: strict;
    word-wrap: break-word;
    overflow-wrap: break-word; }
  body *,
  body *:before,
  body *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
  body body,
  body button,
  body input,
  body select,
  body textarea {
    color: #333333;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.8; }
  body h1,
  body h2,
  body h3,
  body h4,
  body h5,
  body h6 {
    clear: both;
    line-height: 1.1;
    margin: 0; }
  body h1 svg {
    width: 26px;
    height: 26px;
    vertical-align: middle; }
  body h3 {
    font-size: 1.3em; }
  body img {
    max-width: 100%;
    height: auto;
    border: 0;
    margin: 0;
    vertical-align: top; }
  body a {
    text-decoration: none; }
  body a:link,
  body a:visited,
  body a:active {
    color: #333333; }
  body .work-details .work-text p,
  body .cont-wrap p {
    line-height: 1.4em;
    font-size: 1.3em; }
  body .color-gray {
    color: #7F7F7F; }
  body .pc-pb-20 {
    padding-bottom: 20px; }

/*========= ナビゲーションのためのCSS ===============*/
.g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background: #fef2f4;
  /*動き*/
  transition: all 0.6s; }

/*アクティブクラスがついたら位置を0に*/
.g-nav.panelactive {
  right: 0; }

/*ナビゲーションの縦スクロール*/
.g-nav.panelactive .g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

/*ナビゲーション*/
.g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0; }
  .g-nav ul li {
    list-style: none;
    text-align: center;
    font-size: 2em;
    margin-top: 40px; }
    .g-nav ul li a,
    .g-nav ul li span {
      color: #f9452d;
      text-decoration: none;
      padding: 10px;
      display: inline;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: bold;
      width: 100%;
      padding-bottom: 5px; }
  .g-nav ul li:last-child {
    margin-top: 40px; }

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 0.8em;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px; }

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #333333;
  width: 45%; }

.openbtn span:nth-of-type(1) {
  top: 15px; }

.openbtn span:nth-of-type(2) {
  top: 23px; }

.openbtn span:nth-of-type(3) {
  top: 31px; }

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%; }

.openbtn.active span:nth-of-type(2) {
  opacity: 0; }

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%; }

/* btn*/
.btn_right,
.btn_left {
  font-size: 1.5em;
  display: inline-block;
  width: 20vh;
  padding: 10px 10px 10px 10px;
  text-align: center;
  color: #f9452d;
  margin: 5px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: inline-block; }

.btn_right:hover::after {
  right: 0px;
  width: 30px; }

.btn_left:hover::after {
  left: 0px;
  width: 30px; }

.btn_right::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  width: 30px;
  height: 5px;
  border: none;
  border-right: 2px solid #f9452d;
  border-bottom: 1px solid #f9452d;
  transform: skew(45deg);
  transition: .3s; }

.btn_left::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 10px;
  width: 30px;
  height: 5px;
  border: none;
  border-left: 2px solid #f9452d;
  border-bottom: 1px solid #f9452d;
  transform: skew(-45deg);
  transition: .3s; }

.btn_textlink {
  position: relative;
  display: inline-block;
  color: #f9452d;
  text-decoration: none;
  line-heigt: 1.2em;
  -webkit-transition: .8s;
  transition: .8s; }

.btn_textlink:hover {
  cursor: pointer;
  text-decoration: none; }

.btn_textlink::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #f9452d;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform .3s; }

.btn_textlink:hover::after {
  transform-origin: left top;
  transform: scale(1, 1); }

a.linkhover:hover {
  opacity: 40%;
  transition: 0.5s; }

.dot {
  margin-right: 8px;
  margin-left: 8px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  color: #fef2f4; }

.rolling {
  position: absolute;
  z-index: -1;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  left: 0;
  top: 0;
  right: 0; }
  .rolling .emblem-about {
    left: 0;
    right: 0;
    top: 0;
    position: relative;
    margin: 0 auto;
    width: 250vw;
    height: 250vh;
    border-radius: 50%;
    font-weight: bold;
    animation: spinZ 90s linear infinite;
    text-align: center;
    color: transparent;
    text-shadow: none;
    -webkit-text-stroke: 1px #f9452d; }
    .rolling .emblem-about span {
      position: absolute;
      display: inline-block;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      text-transform: uppercase;
      font-size: 10.5vw;
      transition: all 0.5s cubic-bezier(0, 0, 0, 1); }
@keyframes spinZ {
  0% {
    transform: rotateZ(360deg); }
  100% {
    transform: rotateZ(0deg); } }
/*ヘッダー*/
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 1em;
  z-index: 999; }
  .site-header .site-icon,
  .site-header .site-lang {
    width: auto;
    display: inline-block; }
  .site-header .site-title {
    margin-bottom: 0;
    font-size: 36px; }
  .site-header .site-lang .socials {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .site-header .site-lang .socials a,
    .site-header .site-lang .socials span {
      font-size: 24px; }

.border--top {
  top: 0;
  height: 4em;
  left: 0;
  right: 0; }

.border--top,
.border--right,
.border--bottom,
.border--left {
  position: fixed;
  z-index: 99; }

.border--right {
  right: 0; }

.border--right,
.border--left {
  bottom: 0;
  top: 0;
  width: 3em; }

.side-panel-text {
  display: block;
  font-size: 14px;
  width: 300px;
  left: 50%;
  letter-spacing: 0.24em;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 50%; }

/*-----右メニュー------------------------------------------------*/
.border--right .side-panel-text .list-socials {
  position: fixed;
  z-index: 1000;
  top: 50%;
  right: 30px;
  z-index: 500;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: -webkit-transform 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  -moz-transition: -moz-transform 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms;
  transition: transform 500ms cubic-bezier(0.7, 0, 0.3, 1) 0ms; }

.list-socials {
  padding: 0px;
  margin: 0px;
  list-style: none; }

.list-socials li a {
  height: 25px;
  width: 25px;
  line-height: 25px;
  display: block;
  text-align: center;
  margin-bottom: 2px; }

.list-socials li a .icon {
  display: inline-block;
  vertical-align: middle; }

.icon svg {
  display: block; }

svg:not(:root) {
  overflow: hidden; }

.list-socials li a .icon svg path {
  -webkit-transition: fill 150ms linear 0ms;
  -moz-transition: fill 150ms linear 0ms;
  transition: fill 150ms linear 0ms; }

/*-----左メニュー------------------------------------------------*/
.border--left .side-panel-text {
  transform: translateX(-50%) translateY(-50%) rotate(-90deg); }

div.wrapper {
  overflow: hidden; }
  div.wrapper .fluid {
    width: 40vh;
    /*横幅*/
    height: 40vh;
    /*縦幅*/
    background: #fff100;
    /*背景色*/
    animation: fluidrotate 30s ease 0s infinite;
    /*アニメーションの設定*/
    overflow: hidden;
    position: absolute;
    display: block;
    left: 0;
    top: 0; }
@keyframes fluidrotate {
  0%,
		100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%; }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%; }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%; }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%; }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%; }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%; }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%; } }
.scroll {
  display: inline-block;
  position: absolute;
  right: 50%;
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 60px;
  overflow: hidden;
  color: #fef2f4;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  writing-mode: vertical-lr; }

div.scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #fef2f4;
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite; }

@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0; }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0; }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%; }
  70%,
	100% {
    transform: scale(1, 0);
    transform-origin: 0 100%; } }
/*トップ*/
.top {
  background-color: #f9452d;
  align-items: center;
  overflow: hidden;
  height: calc(var(--vh, 1vh) * 100); }
  .top .top-blur {
    backdrop-filter: blur(3px);
    height: calc(var(--vh, 1vh) * 100);
    width: 100vw;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden; }
  .top .top-title {
    width: 100vw;
    z-index: 5;
    position: absolute;
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center; }
    .top .top-title .box {
      display: inline-flex;
      overflow: hidden;
      flex-direction: column;
      align-items: flex-start;
      transform: translate3d(0, 20%, 0);
      opacity: 0; }
      body.appear .top .top-title .box {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        transition: all 0.5s ease-out 1.5s; }
    .top .top-title p {
      margin: 0;
      font-weight: 700;
      color: transparent;
      text-shadow: none;
      -webkit-text-stroke: 1px #fef2f4;
      font-size: 10vw;
      font-weight: 600;
      line-height: 1.1em; }
  .top .top-bg {
    overflow: hidden;
    height: calc(var(--vh, 1vh) * 100); }
    .top .top-bg .top-loop .content {
      color: #fef2f4;
      opacity: 5%; }

.top-loop {
  position: relative;
  opacity: 1;
  display: flex;
  white-space: nowrap;
  height: auto; }
  .top-loop .content {
    font-weight: 700;
    color: transparent;
    text-shadow: none;
    -webkit-text-stroke: 1px #fef2f4;
    font-size: 8vw;
    font-weight: 600;
    -webkit-animation: loop-slide 20s infinite linear 1s both;
    padding-right: 0.3em;
    animation: loop-slide 60s infinite linear 1s both;
    line-height: normal; }
@keyframes loop-slide {
  from {
    transform: translateX(0); }
  to {
    transform: translateX(-100%); } }
/*-----section work-------------------------------------------------*/
.work {
  height: auto;
  position: relative;
  margin-bottom: 30vh;
  display: block;
  padding-bottom: 60vh; }
  .work .work-content.is-height-hidden {
    grid-template-rows: repeat(3, 1fr) !important; }
  .work .content-box.is-hidden {
    opacity: 0;
    height: 0 !important;
    margin: 0; }
    .work .content-box.is-hidden a {
      pointer-events: none;
      display: none; }
  .work .fadeIn {
    opacity: 1;
    transition: opacity 1s ease 0s !important;
    transition: all .3s; }
  .work .more {
    text-align: center;
    margin-top: -30px; }
    .work .more button {
      border: none;
      cursor: pointer;
      outline: none;
      padding: 0;
      height: 50px;
      line-height: 50px;
      width: 24vh;
      color: #f9452d;
      background-color: #ffffff;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
      transition: all .3s !important;
      font-family: sofia-pro, "sofia pro", Helvetica, Arial, sans-serif;
      font-weight: bold; }
    .work .more button:hover {
      box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
      top: -3px; }
  .work .top-loop .content {
    -webkit-text-stroke: 1px #f9452d;
    font-size: 13vw;
    padding-top: 10vh;
    margin: 10vh 0;
    -webkit-animation: loop-slide 90s infinite linear 1s both;
    padding-right: 0.3em;
    animation: loop-slide 90s infinite linear 1s both; }
  .work .work-list .work-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 90%;
    margin: 0 auto;
    padding: 0 4%;
    position: static !important; }
    .work .work-list .work-content .content-box {
      background-color: #ffffff;
      height: 100%;
      box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
      transition: all .3s; }
      .work .work-list .work-content .content-box h2 {
        margin: 10px 0;
        color: #f9452d; }
    .work .work-list .work-content .content-box:hover {
      box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
      top: -3px; }
    .work .work-list .work-content .box-text {
      padding: 2% 5%; }
    .work .work-list .work-content .content-box:nth-child(1n) {
      grid-area: 1 / 1 / 2 / 2; }
    .work .work-list .work-content .content-box:nth-child(2n) {
      grid-area: 1 / 2 / 2 / 3; }
    .work .work-list .work-content .content-box:nth-child(3n) {
      grid-area: 2 / 1 / 3 / 2; }
    .work .work-list .work-content .content-box:nth-child(4n) {
      grid-area: 2 / 2 / 3 / 3; }
    .work .work-list .work-content .content-box:nth-child(5n) {
      grid-area: 3 / 1 / 4 / 2; }
    .work .work-list .work-content .content-box:nth-child(6n) {
      grid-area: 3 / 2 / 4 / 3; }
    .work .work-list .work-content .content-box:nth-child(7n) {
      grid-area: 4 / 1 / 5 / 2; }
    .work .work-list .work-content .content-box:nth-child(8n) {
      grid-area: 4 / 2 / 5 / 3; }
    .work .work-list .work-content .content-box:nth-child(9n) {
      grid-area: 5 / 1 / 6 / 2; }
    .work .work-list .work-content .content-box:nth-child(10n) {
      grid-area: 5 / 2 / 6 / 3; }
    .work .work-list .work-content .content-box:nth-child(11n) {
      grid-area: 6 / 1 / 7 / 2; }
    .work .work-list .work-content .content-box:nth-child(12n) {
      grid-area: 6 / 2 / 7 / 3; }

/*アバウト*/
.about {
  padding: 0 10%;
  position: relative;
  height: auto;
  width: 100vw;
  margin: 0 auto;
  margin-bottom: 24vh; }
  .about .rolling {
    top: -50vh; }
  .about .inner-block {
    padding-top: 4%; }

.cont-wrap .ttl {
  color: #f9452d;
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 40px; }

@media screen and (min-width: 767px) {
  .cont-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .cont-wrap .txt-area {
      width: 50%;
      margin-left: 6%; }
    .cont-wrap .img-area {
      width: 48%; } }
.img-area {
  position: relative; }

.img-area .prof-img {
  margin-left: auto;
  overflow: hidden;
  height: 60vh;
  width: 34vw; }
  .img-area .prof-img img {
    width: 72%; }
  .img-area .prof-img video {
    width: 100%;
    height: 100%; }

/*-----コンタクト-------------------------------------------------*/
.contact {
  margin: 0 auto;
  padding: 200px 0;
  width: 100%;
  text-align: center;
  background-color: #f9452d;
  color: #fef2f4; }
  .contact h2 {
    font-size: 3em;
    padding: 10px; }
  .contact p {
    margin: 0;
    font-size: 1.5em;
    padding: 10px; }
  .contact .socials {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    align-items: center; }
    .contact .socials a {
      color: #fef2f4;
      font-size: 1.2em; }

/*-----フッター-------------------------------------------------*/
.site-footer {
  width: 100%;
  z-index: 999;
  padding: 12px 2.2em;
  text-align: center;
  font-size: 75%; }

/*----sp--------------------------------------------------*/
@media only screen and (max-width: 1023px) {
  .work .top-loop .content {
    font-size: 90pt; }

  .about {
    margin-bottom: 0; }
    .about .rolling {
      top: -45vh; }
      .about .rolling .emblem-about span {
        font-size: 14vw; }
      .about .rolling .emblem-about .inner-block {
        top: -190px;
        position: relative; } }
@media only screen and (min-width: 768px) {
  .pc_none {
    display: none; } }
@media only screen and (max-width: 767px) {
  body .sp-pb-6 {
    padding-bottom: 6px; }

  .sp_none {
    display: none; }

  p {
    font-size: 1.2em; }

  .top .top-title p {
    font-size: 11vw;
    line-height: 1.2em; }
  .top .content {
    font-size: 80pt; }

  .work {
    padding-bottom: 10vh; }
    .work .top-loop {
      font-size: 80pt; }
    .work .work-list .work-content {
      display: block;
      width: 100%;
      padding: 0 10%; }
      .work .work-list .work-content .content-box {
        margin-bottom: 30px; }
    .work .work-list .more {
      margin-top: 80px; }

  .about {
    margin: 50vh 0 20vh 0; }
    .about .rolling {
      top: -35vh; }
      .about .rolling .emblem-about {
        width: 200vw;
        height: 200vh; }
        .about .rolling .emblem-about span {
          font-size: 16vw; }
    .about h3 {
      font-size: 2em; }
    .about .img-area {
      margin: 10% auto; }
      .about .img-area .skater02 {
        margin: 0 auto; }
      .about .img-area .prof-img {
        margin: 0 auto;
        width: 100%;
        text-align: center; } }
@media only screen and (max-width: 640px) {
  .work .top-loop .content {
    font-size: 70pt; }

  .about {
    margin: 40vh 0; }
    .about h3 {
      font-size: 2em; }
    .about .inner-block {
      padding-top: 8%; }
    .about .rolling {
      top: -25vh; }
      .about .rolling .emblem-about span {
        font-size: 18vw; }
      .about .rolling .emblem-about .inner-block {
        top: -190px;
        position: relative; } }
@media only screen and (max-width: 426px) {
  .work {
    margin-bottom: 30vh; }
    .work .top-loop .content {
      font-size: 55pt;
      margin: 5vh 0; }

  .about {
    margin-top: 30vh;
    margin-bottom: 15vh; }
    .about .rolling {
      top: -20vh; }
      .about .rolling .emblem-about {
        width: 125vw;
        height: 125vh; }
        .about .rolling .emblem-about span {
          font-size: 16vw; }

  .top .content {
    font-size: 60pt; }

  .contact h2 {
    font-size: 2em; } }

/*# sourceMappingURL=style.css.map */
