@charset "UTF-8";
/* CSS Document */
/*--------------------hamburger--------------------*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  top: 20px;
  left: 20px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #333;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.hamburger h1 {
  position: relative;
  left: 50%;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px;
  left: 6px;
  width: 24px;
  background: #FFF;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}
.hamburger.active span:nth-child(3) {
  top: 16px;
  width: 24px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.hamburger::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 52px;
  height: 52px;
  margin: -32px 0 0 -32px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all .75s;
}
.hamburger.active::after {
  border: 2px solid #FFF;
}
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  color: #FFF;
  background: #909090;
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  visibility: hidden;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
.globalMenuSp-bg {
  background-color: #333333;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
  background: #DDD;
}
nav.globalMenuSp ul li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #FFF;
  padding: 1em 0;
  text-decoration: none;
}
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}
@media (min-width: 768px) {
  .hamburger span {
    height: 5px;
    left: 6px;
  }
  .hamburger.active::after {
    border: 5px solid #FFF;
  }
}
@media (min-width: 1024px) {
  nav.globalMenuSp ul li a {
    font-size: 2.4rem;
  }
}
/*--------------------hamburger--------------------*/
/*--------------------section-top--------------------*/
.section-top {
  position: relative;
  height: 100vh;
}
.section-top__profile {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #333;
}
.section-top__profile h1 {
  font-size: 3.0rem;
}
.section-top__profile h2 {
  font-size: 1.8rem;
  padding-top: 1em;
}
.section-top__job {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 3rem;
  font-size: 1.8rem;
  color: #333;
}
.section-top__scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}
/*Scrollテキストの描写*/
.section-top__scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: -15px;
  /*テキストの形状*/
  color: #333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
/* 線の描写 */
.section-top__scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@media (min-width: 768px) {
  .section-top__profile h1 {
    font-size: 4.0rem;
  }
  .section-top__profile h2 {
    font-size: 2.8rem;
    padding-top: 4rem;
  }
  .section-top__job {
    line-height: 5rem;
    font-size: 2.8rem;
  }
}
@media (min-width: 1280px) {
  .section-top__profile h1 {
    font-size: 5.0rem;
  }
  .section-top__profile h2 {
    font-size: 3.8rem;
    padding-top: 5rem;
  }
  .section-top__job {
    line-height: 5rem;
    font-size: 3.0rem;
  }
}
/*--------------------section-top--------------------*/
/*--------------------section-about--------------------*/
.section-about {
  margin: 15vh 0 0;
}
.section-about__wrapper {
  width: 80%;
  margin: 0 auto;
}
.section-about__box {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-direction: row-reverse;
  align-items: flex-end;
  padding-bottom: 30px;
}
.section-about__box__1 {
  width: 50%;
  text-align: center;
}
.box-photo {
  width: 100%;
  vertical-align: top;
  max-width: 250px;
}
.section-about__box_2 {
  text-align: left;
}
.about-title {
  position: absolute;
  top: 0;
}
.about-title p {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333;
}
.person-name {
  line-height: 1;
}
.person-name h3 {
  font-size: 2.0rem;
  font-weight: 400;
  color: #333;
}
.person-name span {
  font-size: 1.2rem;
}
.person-data {
  padding: 1rem 0 0;
}
.person-data span {
  display: block;
}
.section-about__description {
  text-align: left;
  line-height: 3rem;
  color: #333;
  border-top: 0.5px #333 solid;
  padding: 16px 0 30px;
  font-family: YuMincho, /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
}
@media(min-width: 768px) {
  .section-about__box {
    width: 80%;
    margin: 0 auto;
  }
  .about-title p {
    font-size: 3.8rem;
    letter-spacing: 0.1em;
    color: #333;
  }
  .box-photo {
    padding-right: 0;
  }
  .section-about__box_2 {
    padding-left: 0;
  }
  .person-data {
    padding: 2rem 0 0;
    font-size: 2.0rem;
  }
  .person-name h3 {
    font-size: 3.0rem;
    font-weight: 400;
    color: #333;
  }
  .section-about__description {
    width: 80%;
    display: inline-block;
    padding: 20px 0 30px;
    font-size: 2.0rem;
    line-height: 4rem;
  }
}
@media(min-width: 1024px) {
  .section-about {
    margin: 25vh 0 0;
  }
  .section-about__box {
    justify-content: flex-end;
  }
  .section-about__box__1 {
    max-width: 360px;
  }
}
/*--------------------section-about--------------------*/
/*--------------------section-policy-skill--------------------*/
.section-policy-skill {
  margin: 15vh auto;
}
.section-policy-skill__wrapper {
  width: 80%;
  margin: 0 auto;
}
.section-skill {
  list-style: none;
  text-align: left;
  padding-top: 2.5rem;
}
.section-skill__title {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding-bottom: 3rem;
  color: #333;
  text-shadow: -4px 5px 3px #808080;
}
.section-skill li {
  display: inline-block;
  padding-bottom: 30px;
}
.section-skill li:last-child {
  padding-bottom: 0;
}
.section-skill li p {
  color: #333;
  padding-bottom: 8px;
}
.section-skill li h3 {
  font-weight: 300;
  padding-top: 8px;
  font-family: YuMincho, /* Mac用 */ 'Yu Mincho', /* Windows用 */ serif;
}
.section-skill__htmlcss {
  position: relative;
  border-top: #E44D26 0.5px solid;
}
.section-skill__htmlcss::before {
  content: "";
  position: absolute;
  isplay: block;
  line-height: 0;
  top: -0.5px;
  right: 0;
  width: 70%;
  bottom: 0px;
  height: inherit;
  border-top: #264DE3 0.5px solid;
}
.section-skill__javascript {
  border-top: #F7DF1B 0.5px solid;
}
.section-skill__dreamweaver {
  border-top: #FF4FF4 0.5px solid;
}
.section-skill__xd {
  border-top: #FF3EFA 0.5px solid;
}
.section-skill__photoshop {
  border-top: #1C9CFF 0.5px solid;
}
.section-skill__illustrator {
  border-top: #FF8500 0.5px solid;
}

@media(min-width:768px) {
  .section-skill {
    padding-top: 0;
  }
  .section-skill__title {
    font-size: 3.8rem;
    letter-spacing: 0.1em;
    padding-bottom: 3rem;
    color: #333;
  }
  .section-skill li {
    width: 45%;
    display: block;
    padding-bottom: 1.5rem;
  }
  .section-skill li p {
    display: inline-block;
    font-size: 2.0rem;
  }
  .section-skill br {
    display: none;
  }
  .section-skill__flex {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
  }
}
@media (min-width:1024px) {
  .section-policy-skill {
    margin: 25vh 0;
  }
  .section-skill li {
    width: 30%;
  }
}
/*--------------------section-policy-skill--------------------*/
/*--------------------section-product--------------------*/
.section-product {
  margin: 15vh auto 0;
}
.section-product__wrapper {
  width: 100%;
}
.section-product__title {
  width: 90%;
  margin: 0 auto;
  text-align: left;
  font-weight: 600;
}
.section-product__title p {
  display: inline-block;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: #333;
  text-shadow: -4px 5px 3px #808080;
}
.section-product__logo {
  margin: 15vh auto 0;
}
.product__logo__ksm {
  width: 80%;
}
.section-product__box {
  width: 80%;
  margin: 50px auto;
}
.section-product__body {
  position: relative;
  width: 100%;
  border-bottom: 0.5px #333 solid;
}
.section-product__body a {
  text-decoration: none;
  color: #000;
}
.section-product__bg img {
  position: relative;
  width: 100%;
}
.section-product__description {
  width: 80%;
  margin: 0 auto;
  display: block;
  text-align: left;
  padding: 25px 0 20px;
}
.section-product__about {
  display: flex;
  justify-content: flex-start;
  padding-bottom: 1.5rem;
  text-align: left;
  width: 80%;
  margin: 0 auto;
}
.section-product__about dt {
  min-width: 130px;
  font-weight: 600;
}
.section-product__about dd {
  min-width: 130px;
  border-bottom: 0.5px #333 dotted;
}
.section-product__about dd img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.product-website__viwemore {
  margin: 10px 0 30px;
}
.btn, a.btn, button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
a.btn-svg {
  font-weight: 700;
  line-height: 54px;
  width: 204px;
  height: 54px;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  background-color: transparent;
}
a.btn-svg svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
a.btn-svg svg rect {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  stroke: #000;
  stroke-width: 2;
  stroke-dasharray: 200px, 16px;
  stroke-dashoffset: 70px;
}
a.btn-svg:hover svg rect {
  stroke-dashoffset: 284px;
}
a.btn-svg span {
  color: #000;
}
@media(min-width:768px) {
  .section-product__title p {
    font-size: 3.8rem;
  }
  .section-product__box {
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .section-product__body {
    position: relative;
    width: 45%;
  }
  .section-product__body::after {
    ontent: "";
    display: block;
    width: 50%;
    height: 0;
}
  .product-name {
    font-size: 2.4rem;
  }
  
  .section-product__description {
    font-size: 2rem;
}
  .section-product__role {
    font-size: 2.0rem;
}
}
@media(min-width:1024px) {
  .section-product {
    margin: 25vh auto 0;
  }
  .section-product__box {
    display: flex;
    flex-wrap: wrap;
  }
  .section-product__body {
    width: 40%;
  }
  .section-product__body::after {
    ontent: "";
    display: block;
    width: 40%;
    height: 0;
}
  .section-product__1__description h4 a,
  .section-product__2__description h4 a,
  .section-product__3__description h4 a,
  .section-product__4__description h4 a,
  .section-product__5__description h4 a{
    border-bottom: none;
  }
}
/*--------------------section-product--------------------*/
/*--------------------text-slide__2--------------------*/
.text-slide__2 {
  height: 15vw;
  background: #333; /*背景色*/
  overflow: hidden;
}
.text-slide__2 p {
  display: inline-block;
  font-size: 12vw; /*文字サイズ*/
  color: #FFF; /*文字の色*/
  line-height: 15vw;
  margin: 0;
  font-style: italic;
  font-weight: 600;
  animation: flowing 10s linear infinite; /*アニメーション*/
  transform: translateX(100%); /*最初の位置*/
  white-space: nowrap;
}
.text-slide__2 p a {
  text-decoration: none;
  color: #FFF;
}
.text-slide__2 p:hover {
  color: #333;
}
@keyframes flowing {
  100% {
    transform: translateX(-200%); /*終了の位置*/
  }
}
@media(min-width:768px) {
  .text-slide__2 {
    height: 8vw;
  }
  .text-slide__2 p {
    font-size: 5vw; /*文字サイズ*/
    line-height: 8vw;
    margin: 0;
  }
}
/*--------------------text-slide__2--------------------*/
/*--------------------section-footer--------------------*/
.section-footer__index {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 300px;
  background-color: #333;
  border-top: 0.5px solid #FFF;
}
.section-footer a {
  text-decoration: none;
}
.footer-menu_1 a {
  color: #FFF;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.footer-menu_1 ul {
  padding: 40px 0 20px 20px;
}
.footer-menu_1 ul li {
  font-family: 'Raleway', sans-serif;
  list-style: none;
  width: 20%;
  padding-bottom: 16px;
  text-align: left;
}
.footer-menu_1 p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  font-weight: 100;
  color: #FFF;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .footer-menu_1 a {
    font-size: 2.4rem;
  }
}
/*--------------------section-footer--------------------*/