@charset "UTF-8";
/* --------------------------------------------

変数、関数定義

--------------------------------------------*/
/* --------------------------------------------

スペース関連

--------------------------------------------*/
/* --------------------------------------------

配置関連

--------------------------------------------*/
/* --------------------------------------------

その他

--------------------------------------------*/
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-67.4%);
            transform: translateX(-67.4%);
  }
}

@keyframes loop {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-67.4%);
            transform: translateX(-67.4%);
  }
}

@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-37.5%);
            transform: translateX(-37.5%);
  }
}

@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-37.5%);
            transform: translateX(-37.5%);
  }
}

/* --------------------------------------------

メディアクエリ設定

--------------------------------------------*/
/* ----------------------------------------------


/* ----------------------------------------------

基本設定

------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5em;
  font-size: 16px;
  font-family: 'Noto Serif JP',serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: normal;
}

#app {
  overflow: hidden;
}

h2 {
  font-size: 42px;
  font-family: 'Shippori Mincho B1', serif;
  display: inline-block;
  margin-bottom: 1.5em;
  background-image: url(../svg/fude.svg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
}

h3 {
  font-size: 32px;
  font-family: 'Shippori Mincho B1', serif;
  display: inline-block;
}

p {
  text-align: justify;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: black;
}

main {
  padding-left: 3.125%;
  padding-right: 3.125%;
  position: relative;
}

span {
  display: inline-block;
}

section[id] {
  margin-bottom: 150px;
}

body {
  background: url(../img/back.png);
}

#mv {
  margin-left: -3.29%;
  margin-right: -3.29%;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 750px) {
  main {
    padding-left: 4.66667%;
    padding-right: 4.66667%;
  }
  #mv {
    margin-left: -5.01%;
    margin-right: -5.01%;
    padding-left: 0;
    padding-right: 0;
  }
  h2 {
    font-size: 32px;
    background-size: 80%;
  }
  h3 {
    font-size: 24px;
  }
}

@media screen and (min-width: 1280px) {
  main > section:not(#mv) {
    width: 1120px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
  }
}

#loading {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: #fff;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}

#loading figure {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#loading figure img {
  width: 8%;
  -webkit-animation: spin 4s infinite linear;
          animation: spin 4s infinite linear;
}

@media screen and (max-width: 750px) {
  #loading figure img {
    width: 15%;
  }
}

/* ----------------------------------------------

header nav

------------------------------------------------*/
header {
  position: fixed;
  top: 5%;
  right: 2%;
  z-index: 10;
}

header nav #gnav-check {
  display: none;
}

header nav .gnav-btn figure {
  width: 80px;
  height: 80px;
  cursor: pointer;
}

header nav .gnav-btn figure img:hover {
  -webkit-animation: spin 4s infinite linear;
          animation: spin 4s infinite linear;
}

header nav .gnav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

header nav .gnav-menu > * {
  opacity: 0;
  z-index: -10;
}

header nav #gnav-check:checked ~ .gnav-menu {
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(127, 127, 127, 0.8);
}

header nav #gnav-check:checked ~ .gnav-menu > * {
  opacity: 1;
  z-index: 20;
}

header nav #gnav-check:checked ~ .gnav-menu ul {
  height: 100%;
}

header nav #gnav-check:checked ~ .gnav-menu ul li {
  -ms-writing-mode: unset;
  -webkit-writing-mode: unset;
          writing-mode: unset;
  font-size: 48px;
  background: url(../svg/fude2.svg) 100%/80% no-repeat;
  text-align: center;
  width: 90%;
  margin-bottom: 1em;
}

header nav #gnav-check:checked ~ .gnav-menu ul li a {
  color: #fff;
  padding: 0 4em;
}

header nav #gnav-check:checked ~ .gnav-btn {
  z-index: 50;
  position: fixed;
  right: 2%;
  top: 5%;
}

@media screen and (max-width: 750px) {
  header nav {
    width: 60px;
  }
  header nav .gnav-btn figure {
    width: 60px;
    height: 60px;
  }
  header nav .gnav-btn figure img:hover {
    -webkit-animation: none;
            animation: none;
  }
  header nav #gnav-check:checked ~ .gnav-menu ul li {
    font-size: 32px;
  }
  header nav #gnav-check:checked ~ .gnav-menu ul li a {
    padding: 0 2em;
  }
}

/* ----------------------------------------------

mv

------------------------------------------------*/
#mv {
  position: relative;
  background: url(../img/makimono.png) right 0 top 0/cover no-repeat;
  height: 88vh;
}

#mv .mv-posi {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
}

#mv .mv-posi h1 {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 70%;
}

#mv .mv-posi h1 figure:nth-of-type(1) {
  position: absolute;
  top: 0;
  right: 0;
}

#mv .mv-posi h1 figure:nth-of-type(1) img {
  width: 70%;
}

#mv .mv-posi h1 figure:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 0;
}

#mv .mv-posi h1 figure:nth-of-type(2) img {
  width: 70%;
}

#mv .mv-posi .mv-chach1 {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 80%;
}

#mv .mv-posi .mv-chach1 img {
  width: 70%;
}

#mv .mv-posi .mv-chach2 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 80%;
  text-align: right;
}

#mv .mv-posi .mv-chach2 img {
  width: 35%;
}

#mv .mv-posi .mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 20%;
}

#mv .mv-vis, #mv .sp-vis {
  position: absolute;
  top: 3.7%;
  left: 0;
}

#mv .mv-vis img, #mv .sp-vis img {
  width: 100vw;
  height: 81.3vh;
}

#mv .sp-vis {
  display: none;
}

@media screen and (max-width: 750px) {
  #mv {
    height: 90vh;
  }
  #mv .mv-posi h1 {
    width: 90%;
    height: 60%;
  }
  #mv .mv-posi h1 figure:nth-of-type(1) {
    width: auto;
    right: -10%;
  }
  #mv .mv-posi h1 figure:nth-of-type(1) img {
    width: 50%;
  }
  #mv .mv-posi h1 figure:nth-of-type(2) {
    width: auto;
    left: 8%;
  }
  #mv .mv-posi h1 figure:nth-of-type(2) img {
    width: 50%;
  }
  #mv .mv-posi .mv-chach1 img {
    width: 80%;
  }
  #mv .mv-posi .mv-chach2 img {
    width: 45%;
  }
  #mv .mv-posi .mv-logo {
    width: 50%;
  }
  #mv .mv-vis img, #mv .sp-vis img {
    height: 83.1vh;
  }
  #mv .mv-vis {
    display: none;
  }
  #mv .sp-vis {
    display: block;
  }
}

/* ----------------------------------------------

introduction

------------------------------------------------*/
#introduction {
  text-align: center;
}

#introduction h2 {
  background-position: bottom 2px left 20px;
  width: 180px;
}

#introduction .introduction-flex {
  position: relative;
}

#introduction .introduction-flex .introduction-inner-flex {
  width: 65%;
  padding: 32px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  z-index: 1;
  position: relative;
  text-align: left;
}

#introduction .introduction-flex .introduction-inner-flex h3 {
  margin-bottom: 1em;
}

#introduction .introduction-flex .introduction-inner-flex h3 span {
  font-size: 24px;
}

#introduction .introduction-flex .introduction-inner-flex p {
  margin-bottom: 1em;
}

#introduction .introduction-flex .introduction-inner-flex p:nth-of-type(3) {
  margin-bottom: 0.5em;
}

#introduction .introduction-flex .introduction-inner-flex .intro-h4 {
  font-size: 20px;
}

#introduction .introduction-flex .introduction-inner-flex .intro-h4 > span {
  font-size: 20px;
}

#introduction .introduction-flex .introduction-mv {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

#introduction .introduction-flex .introduction-mv figure:nth-of-type(2) {
  position: absolute;
  top: 0;
  right: 0;
}

#introduction .introduction-flex .introduction-mv figure:nth-of-type(2) img {
  opacity: 0;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
}

#introduction .introduction-flex .introduction-mv figure:nth-of-type(2) img:hover {
  opacity: 1;
  -webkit-transition: opacity 1.5s;
  transition: opacity 1.5s;
}

#introduction .introduction-flex .introduction-mv figure:nth-of-type(n+3) {
  display: none;
}

@media screen and (max-width: 950px) {
  #introduction h2 {
    background: url(../svg/fude.svg) bottom 2px left 20px/cover no-repeat;
    color: #fff;
    width: 180px;
  }
  #introduction .introduction-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #introduction .introduction-flex .introduction-inner-flex {
    width: 100%;
    padding: 1rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #introduction .introduction-flex .introduction-mv {
    position: relative;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: -5rem;
  }
}

@media screen and (max-width: 750px) {
  #introduction h2 {
    background: url(../svg/fude.svg) bottom -6px left 20px/cover no-repeat;
    color: #fff;
    width: 180px;
  }
  #introduction .introduction-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #introduction .introduction-flex .introduction-inner-flex {
    width: 100%;
    padding: 1rem;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #introduction .introduction-flex .introduction-mv {
    position: relative;
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: -12rem;
  }
  #introduction .introduction-flex .introduction-mv figure:nth-of-type(1), #introduction .introduction-flex .introduction-mv figure:nth-of-type(2) {
    display: none;
  }
  #introduction .introduction-flex .introduction-mv figure:nth-of-type(3) {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
  }
  #introduction .introduction-flex .introduction-mv figure:nth-of-type(3) img {
    opacity: 1;
    -webkit-transition: opacity 1.5s;
    transition: opacity 1.5s;
  }
  #introduction .introduction-flex .introduction-mv figure:nth-of-type(3) img:hover {
    opacity: 0;
    -webkit-transition: opacity 1.5s;
    transition: opacity 1.5s;
  }
  #introduction .introduction-flex .introduction-mv figure:nth-of-type(4) {
    display: block;
  }
}

/* ----------------------------------------------

work

------------------------------------------------*/
#work {
  text-align: center;
}

#work h2 {
  background-position: left 30px bottom;
  width: 200px;
}

#work .hp-section > h3 {
  background: url(../svg/fude2.svg) right -120% bottom/90% no-repeat;
  color: #fff;
  width: 60%;
  margin-bottom: 1.5em;
}

#work .hp-section > p {
  margin-bottom: 3rem;
  display: inline-block;
}

#work .hp-section .work-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#work .hp-section .work-flex > section {
  width: 45%;
  margin-bottom: 75px;
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 1;
}

#work .hp-section .work-flex > section h4 {
  font-size: 28px;
  margin-bottom: 1em;
}

#work .hp-section .work-flex > section p:nth-of-type(1) {
  font-size: 24px;
  display: inline-block;
}

#work .hp-section .work-flex > section figure {
  margin: 2rem 0;
  width: 100%;
  overflow: hidden;
}

#work .hp-section .work-flex > section figure img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 1s;
  transition: all 1s;
}

#work .hp-section .work-flex > section p {
  margin-bottom: 1rem;
}

#work .hp-section .work-flex > section .work-h5, #work .hp-section .work-flex > section .work-h6 {
  font-size: 20px;
  margin-bottom: 0.25rem;
}

#work .hp-section .work-flex > section .work-h6 {
  cursor: pointer;
}

#work .hp-section .work-flex > section .work-h6 > span {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-left: 1rem;
  padding: 0.01rem 0.3rem;
  border: 1px solid #000;
  border-radius: 100%;
  background: #666;
  color: #fff;
  -webkit-transition: all 1s;
  transition: all 1s;
}

#work .hp-section .work-flex > section p:nth-of-type(5) .fontweight {
  font-size: 17.6px;
  font-weight: bold;
  display: inline;
  -webkit-text-decoration: underline 0.5px #000;
          text-decoration: underline 0.5px #000;
}

#work .hp-section .work-flex > section #video1, #work .hp-section .work-flex > section #video2, #work .hp-section .work-flex > section #video3, #work .hp-section .work-flex > section #video4 {
  display: none;
}

#work .hp-section .work-flex > section label:nth-of-type(1) {
  cursor: pointer;
  position: relative;
}

#work .hp-section .work-flex > section label:nth-of-type(1)::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

#work .hp-section .work-flex > section label:nth-of-type(1):hover p {
  color: #666;
}

#work .hp-section .work-flex > section label:nth-of-type(1):hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
}

#work .hp-section .work-flex > section label:nth-of-type(2) > div {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#work .hp-section .work-flex > section label:nth-of-type(2) > div video {
  display: none;
}

#work .hp-section .work-flex > section #video1:checked ~ label:nth-of-type(2) > div, #work .hp-section .work-flex > section #video3:checked ~ label:nth-of-type(2) > div, #work .hp-section .work-flex > section #video4:checked ~ label:nth-of-type(2) > div {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 50;
  width: 100vw;
  height: 100vh;
  background: rgba(127, 127, 127, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}

#work .hp-section .work-flex > section #video1:checked ~ label:nth-of-type(2) > div video, #work .hp-section .work-flex > section #video3:checked ~ label:nth-of-type(2) > div video, #work .hp-section .work-flex > section #video4:checked ~ label:nth-of-type(2) > div video {
  display: inline-block;
  width: 80%;
}

#work .hp-section .work-flex > section #video2:checked ~ label:nth-of-type(2) > div {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
  z-index: 50;
  width: 100vw;
  height: 100vh;
  background: rgba(127, 127, 127, 0.8);
  position: fixed;
  top: 0;
  left: 0;
}

#work .hp-section .work-flex > section #video2:checked ~ label:nth-of-type(2) > div video {
  display: inline-block;
  width: 80%;
  height: 80%;
}

#work .bannar-section > h3 {
  background: url(../svg/fude2.svg) right -120% bottom/90% no-repeat;
  color: #fff;
  width: 50%;
  margin-bottom: 1.5em;
}

#work .bannar-section > p {
  margin-bottom: 3rem;
  display: inline-block;
}

#work .bannar-section .bannar-srider {
  width: 100%;
  overflow: hidden;
  text-align-last: left;
}

#work .bannar-section .bannar-srider .bannar-inner-srider {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: loop 20s infinite linear 0s both;
          animation: loop 20s infinite linear 0s both;
  text-align: left;
}

#work .bannar-section .bannar-srider .bannar-inner-srider figure {
  margin-right: 32px;
  display: inline-block;
  width: 9%;
  overflow: hidden;
}

#work .bannar-section .bannar-srider .bannar-inner-srider figure img:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

@media screen and (max-width: 950px) {
  #work .hp-section .work-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  #work .hp-section .work-flex > section {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  #work .hp-section > h3 {
    background: url(../svg/fude2.svg) left bottom/120% no-repeat;
    width: 100%;
  }
  #work .hp-section .work-flex > section p:nth-of-type(1) {
    font-size: 20px;
    white-space: nowrap;
  }
  #work .bannar-section > h3 {
    background: url(../svg/fude2.svg) left bottom/120% no-repeat;
    width: 100%;
  }
  #work .bannar-section .bannar-srider .bannar-inner-srider {
    -webkit-animation: loop2 20s infinite linear 0s both;
            animation: loop2 20s infinite linear 0s both;
  }
  #work .bannar-section .bannar-srider .bannar-inner-srider figure {
    margin-right: 16px;
    width: 5%;
  }
}

/* ----------------------------------------------

skill

------------------------------------------------*/
#skill {
  text-align: center;
}

#skill h2 {
  background-position: left 30px bottom;
  width: 200px;
}

#skill .skill-flex {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#skill .skill-flex .skill-inner-flex {
  width: 45%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
}

#skill .skill-flex .skill-inner-flex > div {
  width: 55%;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  text-align: left;
}

#skill .skill-flex .skill-inner-flex > div > p {
  margin-bottom: 1.5rem;
  font-size: 20px;
}

#skill .skill-flex .skill-inner-flex > div > span {
  position: relative;
}

#skill .skill-flex .skill-inner-flex > div > span > span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(100, 100, 100, 0.5);
  z-index: 2;
  border-top-right-radius: 100%;
  -webkit-transition: width 3s;
  transition: width 3s;
}

#skill .skill-flex .skill-inner-flex > div .skill-meter-css > span {
  width: 80%;
}

#skill .skill-flex .skill-inner-flex > div .skill-meter-js > span, #skill .skill-flex .skill-inner-flex > div .skill-meter-xd > span {
  width: 70%;
}

#skill .skill-flex .skill-inner-flex > div .skill-meter-wp > span, #skill .skill-flex .skill-inner-flex > div .skill-meter-ai > span, #skill .skill-flex .skill-inner-flex > div .skill-meter-ps > span {
  width: 60%;
}

#skill .skill-flex .skill-inner-flex figure {
  width: 35%;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

#skill .skill-flex .skill-inner-flex > p {
  width: 100%;
  padding: 1rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

#skill .skill-flex .skill-inner-flex > p .fontweight {
  font-size: 17.6px;
  font-weight: bold;
  display: inline;
  -webkit-text-decoration: underline 0.5px #000;
          text-decoration: underline 0.5px #000;
}

#skill .skill-flex > .skill-inner-flex:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 750px) {
  #skill {
    text-align: center;
  }
  #skill .skill-flex .skill-inner-flex {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  #skill .skill-flex .skill-inner-flex > div {
    width: 60%;
  }
  #skill .skill-flex .skill-inner-flex figure {
    width: 25%;
  }
}

/* ----------------------------------------------

inquiry

------------------------------------------------*/
#inquiry {
  text-align: center;
}

#inquiry h2 {
  background-image: url(../svg/fude3.svg);
  background-position: left 54% bottom;
  background-size: 300px 60px;
  width: 100%;
}

#inquiry > p {
  text-align: left;
  display: inline-block;
  width: 80%;
  margin-bottom: 2rem;
}

#inquiry form {
  text-align: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

#inquiry form dl {
  text-align: left;
}

#inquiry form dl label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 1.5rem;
}

#inquiry form dl label dt {
  font-size: 20px;
  display: inline-block;
  width: 30%;
}

#inquiry form dl label dt span {
  font-size: 20px;
  color: red;
}

#inquiry form dl label dd {
  display: inline-block;
  width: 67%;
}

#inquiry form dl label dd input[type="name"] {
  width: 50%;
  height: 2rem;
}

#inquiry form dl label dd input[type="email"], #inquiry form dl label dd input[type="tel"] {
  width: 80%;
  height: 2rem;
}

#inquiry form dl label dd textarea {
  width: 100%;
  height: 200px;
}

#inquiry form p {
  display: inline-block;
}

#inquiry form p input[type="submit"] {
  padding: 1rem;
  font-size: 20px;
  border-radius: 10%;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  #inquiry {
    text-align: center;
  }
  #inquiry h2 {
    background-position: left 80% bottom;
    background-size: 230px 50px;
  }
  #inquiry > p {
    width: 100%;
  }
  #inquiry form {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #inquiry form dl label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #inquiry form dl label dt {
    font-size: 19.2px;
    width: 100%;
    margin-bottom: 1rem;
  }
  #inquiry form dl label dd {
    width: 100%;
  }
  #inquiry form dl label dd input[type="name"] {
    width: 50%;
    height: 2rem;
  }
  #inquiry form dl label dd input[type="email"], #inquiry form dl label dd input[type="tel"] {
    width: 80%;
    height: 2rem;
  }
  #inquiry form dl label dd textarea {
    width: 100%;
    height: 200px;
  }
  #inquiry form p input[type="submit"] {
    padding: 0.5rem;
    font-size: 17.6px;
  }
}

/* ----------------------------------------------

topicon

------------------------------------------------*/
.topicon {
  position: relative;
}

.topicon a img {
  position: absolute;
  bottom: 32px;
  right: 0;
  width: 7%;
  -webkit-animation: spin 4s infinite linear;
          animation: spin 4s infinite linear;
}

@media screen and (max-width: 750px) {
  .topicon a img {
    width: 20%;
  }
}

/* ----------------------------------------------

footer

------------------------------------------------*/
footer {
  background: url(../img/makimono2.png) center center/100% 100% no-repeat;
  height: 100px;
}

footer p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

footer p small {
  text-align: center;
}

footer p small span {
  font-size: 20px;
}

@media screen and (max-width: 750px) {
  footer p small span {
    font-size: 16px;
  }
}

/* ----------------------------------------------

js css

------------------------------------------------*/
.fade-in {
  opacity: 0;
  -webkit-transform: translate(0, 80px);
          transform: translate(0, 80px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.scroll-in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.scroll-up {
  position: fixed;
  width: 80%;
  bottom: 0;
  right: 2%;
  opacity: .6;
}

.scroll-width {
  width: 0 !important;
}

.rota {
  -webkit-transform: rotate(-90deg) !important;
          transform: rotate(-90deg) !important;
  background: #ccc !important;
  color: #000 !important;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-fade {
  opacity: 0;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.js-fade-in {
  opacity: 1;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
}

.js-block {
  display: block !important;
}

.js-onload {
  -webkit-animation-iteration-count: 0 !important;
          animation-iteration-count: 0 !important;
}

.js-onloadcomp {
  opacity: 0 !important;
  -webkit-transition: opacity 2s;
  transition: opacity 2s;
}
/*# sourceMappingURL=style.css.map */