@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-style: normal;
  font-weight: 100;
}

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
-------------------- */
.contact__wrapper {
  width: 80vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact__wrapper {
    margin: 0 auto 10.15625vw;
  }
}

.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;
    width: 25.3125vw;
  }
}

.contact__text {
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  .contact__text {
    text-align: center;
    margin-bottom: 3.125vw;
    font-size: min(1.09375vw, 14px);
  }
}

.contact__img {
  margin: 0 auto 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .contact__img {
    margin: 0 auto 3.125vw;
    width: 21.71875vw;
  }
}

.sns_btn {
  display: block;
  margin: 0 auto 21.3333333333vw;
  padding: 4vw 0;
  color: #333;
  border: solid 1px #333;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  width: 80vw;
}
@media screen and (min-width: 768px) {
  .sns_btn {
    margin: 0 auto 0vw;
    padding: 20px 0;
    width: 640px;
  }
  .sns_btn:hover {
    border: solid 1px #fff;
    color: #fff;
    background-color: #cacaca;
  }
}

/* --------------------
		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 */