@charset "UTF-8";
/* ------------------------------
SUSSで行った設定
------------------------------ */
/* ----px → vw---- 書き方：vw(px値) */
/* ----px → vw (pc)---- 書き方：vw-pc(px値) */
.font-eg {
  font-family: "acumin-pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.font-jp {
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
}

a {
  cursor: pointer;
}

img {
  width: 100%;
  height: auto;
}

.fadeIn {
  opacity: 0;
  transition: 1.3s;
  transition-delay: 0.5s;
}
.fadeIn.active {
  opacity: 1;
}

.fadeInUp {
  opacity: 0;
  transition: 1s;
  transition-delay: 0.4s;
  transform: translateY(40px);
}
.fadeInUp.active {
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  opacity: 0;
  transform: translate(-20px, 0);
  transition: all 1.3s ease 0.3s;
}
.fadeInLeft.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* --------------------
		ナビゲーション
-------------------- */
.openbtn1 {
  position: fixed;
  z-index: 10000; /*ボタンを最前面に*/
  top: 0px;
  right: 5.3333333333vw;
  cursor: pointer;
  width: 35px;
  height: 35px;
  margin-top: 2.6666666667vw;
}

.hamburger__wrapper {
  position: fixed;
  z-index: 10000;
  width: 100vw;
  height: 17.3333333333vw;
  background-color: #fff;
}

.name {
  z-index: 3000;
  position: fixed;
  top: 5.3333333333vw;
  left: 5.3333333333vw;
  margin: 0 auto;
  font-weight: 300;
  font-size: min(4.5333333333vw, 28px);
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  color: #333;
}
@media screen and (min-width: 768px) {
  .name {
    position: static;
    margin: 0;
    padding-top: 17px;
    padding-left: 30px;
    text-align: center;
    font-size: min(1.5625vw, 20px);
  }
}
.name a {
  text-decoration: none;
  color: #333;
}
@media screen and (min-width: 768px) {
  .name a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background-color: #333;
  width: 35px;
}

.openbtn1 span:nth-of-type(1) {
  top: 12px;
}

.openbtn1 span:nth-of-type(2) {
  top: 22px;
}

.openbtn1 span:nth-of-type(3) {
  bottom: 1px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 13px;
  transform: translateY(8px) rotate(-45deg);
}

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

.openbtn1.active span:nth-of-type(3) {
  transform: translateY(-12px) rotate(45deg);
  bottom: 0px;
}

#g_nav {
  position: fixed;
  z-index: 9999;
  top: -120%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  transition: all 0.6s;
}

#g_nav.panelactive {
  top: 0;
}

.g_nav__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  width: 120px;
  margin: 0 auto;
}

/*ナビゲーション*/
#g_nav ul {
  z-index: 999;
  border-bottom: solid 1px rgba(51, 51, 51, 0.4);
}
@media screen and (min-width: 768px) {
  #g_nav ul {
    margin-top: 3.90625vw;
  }
}

#g_nav li {
  list-style: none;
  text-align: center;
}

#g_nav li a {
  position: relative;
  display: block;
  margin-bottom: 10.6666666667vw;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 4.2666666667vw;
  line-height: 1.3em;
}
@media screen and (min-width: 768px) {
  #g_nav li a {
    margin-bottom: 3.90625vw;
    font-size: 1.25vw;
  }
}

.flex__box {
  background-color: #fff;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
}

#fixedBox {
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  /* width: max(50%,640px); */
}

#fixedBox-pc {
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  margin: 0 auto;
  /* width: max(50%,640px); */
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.nav__inner {
  margin-top: 60px;
  margin-left: 60px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}

.nav__inner ul li {
  margin-bottom: 40px;
  font-size: 20px;
}
.nav__inner ul li:last-child {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}
.nav__inner ul li:last-child a {
  width: 20px;
}

.nav_sp li:last-child {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.nav__flexbox {
  position: fixed;
  display: flex;
  z-index: 30000;
  width: 100%;
  height: 60px;
  background-color: #fff;
}

.nav__flexbox ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0 0 20px auto;
  list-style: none;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .nav__flexbox ul {
    font-size: min(1.171875vw, 15px);
  }
}

.nav__flexbox ul li {
  margin-right: 50px;
  line-height: 18px;
  letter-spacing: 0.15em;
}
.nav__flexbox ul li a {
  list-style: none;
  text-decoration: none;
  text-align: center;
  color: #333;
  transition: all 0.7s ease;
}

.nav__flexbox ul li a:hover {
  opacity: 0.4;
}

.nav__flexbox ul li:last-child {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-top: 0;
  margin-bottom: -3px;
}

.now-position {
  margin-bottom: 40px;
  opacity: 0.4;
  letter-spacing: 0.15em;
  line-height: 18px;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .now-position {
    margin-right: 50px;
    margin-bottom: 0;
    font-size: min(1.171875vw, 15px);
  }
}

.now-position a:hover {
  pointer-events: none;
}

.insta__logo {
  width: 18px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .insta__logo {
    margin-right: 10px;
  }
}

.face__logo {
  width: 12px;
}

/* --------------------
		main
-------------------- */
.biography__wrapper {
  width: 80vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .biography__wrapper {
    margin: 0 auto 4.6875vw;
  }
}

.translation-eg, .translation-jp {
  position: static;
  text-align: center;
  z-index: 999;
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .translation-eg, .translation-jp {
    position: fixed;
    top: 0px;
    right: 50px;
    margin-top: 60px;
    text-align: end;
    font-size: min(1.171875vw, 15px);
  }
}

.translation-jp a {
  text-decoration: none;
  color: #333;
}
.translation-jp a:first-child {
  cursor: default;
  opacity: 0.4;
}

.translation-eg a {
  text-decoration: none;
  color: #333;
}
.translation-eg a:last-child {
  cursor: default;
  opacity: 0.4;
}

.ttl {
  position: relative;
  text-align: center;
  margin: 37.3333333333vw auto 0;
  font-size: 6.6666666667vw;
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .ttl {
    margin: 130px auto 0;
    font-size: min(1.71875vw, 22px);
    font-weight: 200;
  }
}

.ttl__wrapper {
  position: relative;
  margin: 0 auto 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .ttl__wrapper {
    margin: 0 auto 130px;
  }
}

@media screen and (min-width: 768px) {
  .profile {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin: 0 auto;
  }
}
.profile__img {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .profile__img {
    margin-bottom: 0;
    width: 25.390625vw;
  }
}

@media screen and (min-width: 768px) {
  .profile__inner {
    margin-left: 40px;
  }
}

.profile__contents {
  position: relative;
  list-style: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .profile__contents {
    margin-top: 2.34375vw;
    width: 40.390625vw;
  }
}
.profile__contents p {
  font-size: min(4vw, 15px);
  letter-spacing: 0.06em;
  line-height: 2em;
  margin-top: 0;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .profile__contents p {
    font-size: min(1.015625vw, 13px);
    /* width: max(50%,640px); */
    margin-bottom: 1.5625vw;
  }
}

.profile__name {
  position: relative;
  margin-bottom: 16vw;
  text-align: start;
  font-size: 6.1333333333vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .profile__name {
    margin-bottom: 0;
    font-size: min(1.640625vw, 21px);
    letter-spacing: 0.2em;
  }
}
.profile__name small {
  display: block;
  margin-bottom: 0.7em;
  text-indent: 0.2em;
  letter-spacing: 0.2em;
  font-size: min(2.9333333333vw, 11px);
  opacity: 0.6;
}
@media screen and (min-width: 768px) {
  .profile__name small {
    margin-bottom: 0.7em;
    text-indent: 0.2em;
    font-size: min(0.859375vw, 11px);
    letter-spacing: 0.2em;
  }
}

.list {
  margin: 10.6666666667vw auto;
  padding-left: 0;
  list-style: none;
  text-decoration: none;
  letter-spacing: 0.08em;
  line-height: 1em;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .list {
    display: flex;
    justify-content: center;
    margin: 3.90625vw auto;
    font-size: min(0.859375vw, 11px);
  }
}
@media screen and (min-width: 768px) {
  .list li {
    margin-bottom: 0.78125vw;
    width: 36.71875vw;
  }
}
.list p {
  font-size: 3.4666666667vw;
  letter-spacing: 0.06em;
  line-height: 2em;
  margin-top: 0;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .list p {
    font-size: min(1.015625vw, 13px);
    margin-bottom: 1.5625vw;
  }
}

@media screen and (min-width: 768px) {
  .flex-left {
    width: 36.71875vw;
    margin-right: 4.6875vw;
  }
}

@media screen and (min-width: 768px) {
  .flex-right {
    width: 36.71875vw;
  }
}

.year {
  opacity: 0.6;
  font-size: min(3.4666666667vw, 13px);
}
@media screen and (min-width: 768px) {
  .year {
    font-size: min(1.015625vw, 13px);
    margin-bottom: 0.390625vw;
  }
}

.section01, .section02, .section03, .section04 {
  margin: 0 auto 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .section01, .section02, .section03, .section04 {
    margin: 0 auto 6.25vw;
  }
}

.section04 .list {
  padding-left: 0;
}

.section04 ul li {
  margin: 0 auto;
  text-align: center;
}

.awards {
  position: relative;
  line-height: 2em;
  text-align: center;
  margin: 0 auto 2.6666666667vw;
  letter-spacing: 0.3em;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .awards {
    font-size: min(1.25vw, 16px);
  }
}

/* --------------------
		footer
-------------------- */
.footer__copyright {
  text-align: center;
  margin: 0 auto 8vw;
  opacity: 0.4;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    margin: 0 auto 1.5625vw;
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */