@charset "UTF-8";
/* -------------------mixin----------------------- */
:root {
  --c-txt:#000;
}

@media screen and (max-width: 999px) {
  .pc__only {
    display: none !important;
  }
}

@media screen and (min-width: 1000px) {
  .sp__only {
    display: none !important;
  }
}

/* ----px → vw---- */
/* ----px → vw  pc---- */
/* ----------------------------------------
		base
---------------------------------------- */
* {
  line-height: 1;
  font-weight: 400;
  font-style: normal;
  color: #3E3E3E;
  letter-spacing: 0.1em;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  line-height: 2;
}
* img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 999px) {
  #content__body {
    overflow: hidden;
  }
}
#content__body img {
  width: 100%;
  height: auto;
}
#content__body .nav {
  position: fixed;
  width: 100%;
  padding: 1.5625vw;
  display: flex;
  justify-content: space-between;
  font-size: 0.859375vw;
  z-index: 100;
}
@media screen and (max-width: 999px) {
  #content__body .site__top {
    display: none;
  }
}
#content__body nav ul {
  display: flex;
  justify-content: space-between;
}
#content__body nav ul li:nth-child(n+2) {
  padding-left: 3.90625vw;
}
@media screen and (max-width: 999px) {
  #content__body nav ul {
    display: none;
  }
}

/* ----------------------------------------
	menu
---------------------------------------- */
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 14.4vw;
  height: 14.4vw;
  cursor: pointer;
  background-color: #000;
  opacity: 0.8;
  z-index: 101;
  transition: all 0.3s ease-in-out;
}

.menu-btn-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  height: 1px;
  width: 50%;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.menu-btn-line::before,
.menu-btn-line::after {
  content: "";
  height: 1px;
  width: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  transition: inherit;
}

.menu-btn-line::before {
  top: -10px;
}

.menu-btn-line::after {
  top: 10px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
  transition: all 0.5s;
  visibility: visible;
  opacity: 1;
}

.open .menu-btn {
  border-color: #fff;
}

.open .menu-btn-line {
  background-color: transparent;
}

.open .menu-btn-line::before,
.open .menu-btn-line::after {
  top: 0;
  background: #fff;
}

.open .menu-btn-line::before {
  transform: rotate(45deg);
}

.open .menu-btn-line::after {
  transform: rotate(-45deg);
}

/*開いたメニュー*/
.menu {
  position: fixed;
  display: flex;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: all 0.5s;
  visibility: hidden;
  opacity: 0;
  z-index: 100;
}
.menu .nav_wrap {
  margin: 5.333vw;
  width: 100%;
}

.menu ul {
  width: 77.33vw;
  justify-content: center;
  padding-top: 25.33vw;
}
.menu ul li {
  width: 20.8vw;
  text-align: center;
}
.menu ul li a {
  display: block;
  font-size: 1.4rem;
  color: #000;
  text-decoration: none;
  transition: all 0.2s;
}
.menu ul li a:hover {
  transform: translateY(-5px);
  transition: all 0.2s;
}

/* ----------------------------------------
		about
---------------------------------------- */
#about {
  display: flex;
}
@media screen and (max-width: 999px) {
  #about {
    display: flex;
    flex-direction: column;
  }
}

.about__left {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 50%;
  height: 100vh;
  display: block;
}
@media screen and (max-width: 999px) {
  .about__left {
    width: 100%;
    position: static;
  }
}
.about__left__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__left__inner__ph {
  width: 13.28125vw;
  margin-bottom: 2.34375vw;
  margin: 0 auto 2.34375vw;
}
@media screen and (max-width: 999px) {
  .about__left__inner__ph {
    width: 45.3333333333vw;
    margin-bottom: 8vw;
    margin: 0 auto 8vw;
  }
}
.about__left__inner__ph img {
  border-radius: 50%;
}
.about__left__inner h1 {
  text-align: center;
  font-size: 1.5625vw;
  line-height: 1;
  margin-bottom: 2.34375vw;
}
@media screen and (max-width: 999px) {
  .about__left__inner h1 {
    font-size: 5.3333333333vw;
    margin-bottom: 8vw;
  }
}
.about__left__inner h1 span {
  font-size: 0.78125vw;
}
@media screen and (max-width: 999px) {
  .about__left__inner h1 span {
    font-size: 2.6666666667vw;
  }
}

.app {
  display: flex;
  justify-content: center;
  margin-bottom: 2.34375vw;
}
@media screen and (max-width: 999px) {
  .app {
    margin-bottom: 8vw;
  }
}
.app li {
  position: relative;
  margin-right: 0.9375vw;
}
@media screen and (max-width: 999px) {
  .app li {
    margin-right: 3.2vw;
  }
}
.app li .app__circle {
  width: 3.515625vw;
}
@media screen and (max-width: 999px) {
  .app li .app__circle {
    width: 12vw;
  }
}
.app li .app__txt {
  font-size: 0.78125vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 999px) {
  .app li .app__txt {
    font-size: 2.6666666667vw;
  }
}
.app li:last-child {
  margin: 0;
}

.about__info {
  width: 14.0625vw;
  margin: 0 auto 3.90625vw;
}
@media screen and (max-width: 999px) {
  .about__info {
    width: 48vw;
    margin: 0 auto 13.3333333333vw;
  }
}
.about__info li {
  width: 15.625vw;
  display: flex;
  align-items: center;
  margin-bottom: 1.5625vw;
}
@media screen and (max-width: 999px) {
  .about__info li {
    width: 53.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.about__info .about__info__icon-1 {
  width: 1.171875vw;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .about__info .about__info__icon-1 {
    width: 4vw;
  }
}
.about__info .about__info__icon {
  width: 1.328125vw;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .about__info .about__info__icon {
    width: 4.5333333333vw;
  }
}
.about__info .about__info__txt {
  font-size: 0.78125vw;
  text-align: left;
  margin-left: 1.5625vw;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .about__info .about__info__txt {
    font-size: 2.6666666667vw;
    margin-left: 5.3333333333vw;
  }
}

.about__right {
  position: relative;
  width: 50%;
  display: block;
  background: url(../img/bk.jpg) repeat;
  background-blend-mode: lighten;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .about__right {
    position: static;
    width: 100%;
  }
}
.about__right h2 {
  text-align: center;
  margin: 11.71875vw auto 7.8125vw;
  font-size: 2.34375vw;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .about__right h2 {
    margin: 40vw auto 26.6666666667vw;
    font-size: 8vw;
  }
}
.about__right h2 span {
  font-size: 0.78125vw;
}
@media screen and (max-width: 999px) {
  .about__right h2 span {
    font-size: 2.6666666667vw;
  }
}

.about__job-h2, .about__skill-h2, .about__pr-h2, .about__hobby-h2 {
  position: relative;
  z-index: 10;
}
.about__job-h2:after, .about__skill-h2:after, .about__pr-h2:after, .about__hobby-h2:after {
  content: "HISTORYHISTORY";
  display: block;
  position: absolute;
  top: -3.125vw;
  left: -0.78125vw;
  color: #FBFBFA;
  font-size: 10.9375vw;
  opacity: 0.5;
  z-index: -1;
}
@media screen and (max-width: 999px) {
  .about__job-h2:after, .about__skill-h2:after, .about__pr-h2:after, .about__hobby-h2:after {
    top: -10.6666666667vw;
    left: -2.6666666667vw;
    font-size: 34.6666666667vw;
  }
}

.about__skill-h2:after {
  content: "SKILLSKILL";
}

.about__pr-h2:after {
  content: "SELFPROMOTION";
}

.about__hobby-h2:after {
  content: "HOBBYHOBBY";
}

.about__job {
  position: relative;
  width: 39.0625vw;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .about__job {
    width: 80vw;
  }
}
.about__job:after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-right: solid 1px var(--c-txt);
}
.about__job li {
  position: relative;
  background-color: #fff;
  padding: 3.90625vw 4.6875vw;
  margin-bottom: 6.25vw;
  z-index: 10;
}
@media screen and (max-width: 999px) {
  .about__job li {
    padding: 13.3333333333vw 10.6666666667vw;
    margin-bottom: 21.3333333333vw;
  }
}
.about__job__year {
  font-size: 0.78125vw;
  text-align: center;
  background-color: #fff;
  border: solid 1px var(--c-txt);
  padding: 0.390625vw 1.171875vw;
  border-radius: 1.5625vw;
  position: absolute;
  top: -1.171875vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 999px) {
  .about__job__year {
    font-size: 2.6666666667vw;
    padding: 1.3333333333vw 4vw;
    border-radius: 5.3333333333vw;
    top: -4vw;
  }
}
.about__job__ttl {
  font-size: 1.328125vw;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2.34375vw;
}
@media screen and (max-width: 999px) {
  .about__job__ttl {
    font-size: 4.5333333333vw;
    margin-bottom: 8vw;
  }
}
.about__job__ttl span {
  font-size: 0.78125vw;
}
@media screen and (max-width: 999px) {
  .about__job__ttl span {
    font-size: 2.6666666667vw;
  }
}
.about__job__txt {
  font-size: 1.015625vw;
  margin-bottom: 0.78125vw;
}
@media screen and (max-width: 999px) {
  .about__job__txt {
    font-size: 3.4666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.about__job__link a {
  font-size: 0.859375vw;
  text-decoration: underline;
}
@media screen and (max-width: 999px) {
  .about__job__link a {
    font-size: 2.9333333333vw;
  }
}

.about__skill {
  position: relative;
  width: 39.0625vw;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .about__skill {
    width: 80vw;
  }
}
.about__skill__inner__ttl {
  text-align: center;
  font-size: 1.484375vw;
  margin-bottom: 1.5625vw;
}
@media screen and (max-width: 999px) {
  .about__skill__inner__ttl {
    text-align: center;
    font-size: 5.0666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}
.about__skill__inner p {
  font-size: 1.015625vw;
}
@media screen and (max-width: 999px) {
  .about__skill__inner p {
    font-size: 3.4666666667vw;
  }
}
.about__skill li {
  padding: 6.25vw 1.953125vw;
  border-bottom: solid 1px #B1B1B1;
}
@media screen and (max-width: 999px) {
  .about__skill li {
    padding: 21.3333333333vw 6.6666666667vw;
    flex-direction: column;
  }
}
.about__skill li:first-child {
  padding-top: 0;
}
.about__skill li:last-child {
  border-bottom: 0;
}

.about__pr {
  position: relative;
  width: 39.0625vw;
  margin: 0 auto;
}
@media screen and (max-width: 999px) {
  .about__pr {
    width: 80vw;
  }
}
.about__pr li {
  padding: 6.25vw 1.953125vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: solid 1px #B1B1B1;
}
@media screen and (max-width: 999px) {
  .about__pr li {
    padding: 21.3333333333vw 6.6666666667vw;
    display: flex;
    flex-direction: column;
  }
}
.about__pr li:first-child {
  padding-top: 0;
}
.about__pr li:last-child {
  padding: 6.25vw 1.953125vw 6.25vw 0;
  border-bottom: 0;
}
@media screen and (max-width: 999px) {
  .about__pr li:last-child {
    padding: 21.3333333333vw 6.6666666667vw;
  }
}
.about__pr__icon {
  width: 14.375vw;
}
@media screen and (max-width: 999px) {
  .about__pr__icon {
    width: 49.0666666667vw;
  }
}
.about__pr__inner {
  width: 18.90625vw;
}
@media screen and (max-width: 999px) {
  .about__pr__inner {
    width: 64.5333333333vw;
  }
}
.about__pr__inner__ttl {
  font-size: 1.484375vw;
  margin-bottom: 0.78125vw;
}
@media screen and (max-width: 999px) {
  .about__pr__inner__ttl {
    text-align: center;
    font-size: 5.0666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.about__pr__inner p {
  font-size: 1.015625vw;
}
@media screen and (max-width: 999px) {
  .about__pr__inner p {
    font-size: 3.4666666667vw;
  }
}

.about__hobby {
  width: 39.0625vw;
  margin: 0 auto 7.8125vw;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .about__hobby {
    width: 80vw;
    margin: 0 auto 26.6666666667vw;
  }
}
.about__hobby li {
  position: relative;
  width: 11.328125vw;
  height: 11.328125vw;
  background-color: #fff;
  border-radius: 0.78125vw;
}
@media screen and (max-width: 999px) {
  .about__hobby li {
    width: 38.6666666667vw;
    height: 38.6666666667vw;
  }
}
.about__hobby li:nth-child(n+3) {
  margin-bottom: 2.34375vw;
}
@media screen and (max-width: 999px) {
  .about__hobby li:nth-child(n+2) {
    margin-bottom: 2.6666666667vw;
  }
}
.about__hobby .about__hobby__icon {
  width: 3.90625vw;
  margin: 2.578125vw auto 0;
}
@media screen and (max-width: 999px) {
  .about__hobby .about__hobby__icon {
    width: 13.3333333333vw;
    margin: 8.8vw auto 0;
  }
}
.about__hobby p {
  font-size: 0.9375vw;
  position: absolute;
  bottom: 2.34375vw;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  .about__hobby p {
    font-size: 3.2vw;
    position: absolute;
    bottom: 8vw;
  }
}

.about__last {
  font-size: 0.9375vw;
  text-align: center;
  margin-bottom: 3.90625vw;
}
@media screen and (max-width: 999px) {
  .about__last {
    font-size: 3.2vw;
    margin-bottom: 13.3333333333vw;
  }
}

@media screen and (max-width: 999px) {
  .back {
    padding-bottom: 26.6666666667vw;
  }
}
.back a {
  font-size: 1.015625vw;
  text-align: center;
  width: 31.25vw;
  padding: 2.34375vw 0;
  margin: 0 auto 11.71875vw;
  display: block;
  background-color: var(--c-txt);
  color: #fff;
  text-align: center;
  line-height: 1;
  transition: all 0.2s ease;
}
@media screen and (max-width: 999px) {
  .back a {
    font-size: 3.4666666667vw;
    width: 106.6666666667vw;
    padding: 8vw 0;
    margin: 0 auto 40vw;
  }
}
.back a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 999px) {
  .back a {
    font-size: 4vw;
    width: 80%;
    padding: 10.6666666667vw 0;
    margin: 26.6666666667vw auto 0;
    background-color: var(--c-txt);
  }
}

footer {
  font-size: 10px;
  text-align: center;
  background-color: #000;
  padding: 3.90625vw 0;
  color: #fff;
}
@media screen and (max-width: 999px) {
  footer {
    font-size: 2.6666666667vw;
    padding: 13.3333333333vw 0;
  }
}
/*# sourceMappingURL=style_about.css.map */