@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);
}

/*========= ボタンのためのCSS ===============*/
.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: 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;
}

/*========= ナビゲーションのためのCSS終わり ===============*/
#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;
}

.nav_sp li:last-child {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.nav_sp li span {
  display: block;
  margin: 0 1.3333333333vw;
  padding-top: 0.5333333333vw;
  font-family: "garamond-premier-pro", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}

.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
-------------------- */
.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 100px;
    width: 25.3125vw;
  }
}

.sec-01, .sec-04 {
  width: 80vw;
  margin: 0 auto 21.3333333333vw;
  padding-bottom: 21.3333333333vw;
  border-bottom: #c5c5c5 1px solid;
}
@media screen and (min-width: 768px) {
  .sec-01, .sec-04 {
    margin: 0 auto 6.25vw;
    padding-bottom: 6.25vw;
  }
}

.sec-02 {
  width: 80vw;
  margin: 0 auto 21.3333333333vw;
  padding-bottom: 21.3333333333vw;
  border-bottom: #c5c5c5 1px solid;
}
@media screen and (min-width: 768px) {
  .sec-02 {
    margin: 0 auto 6.25vw;
    padding-bottom: 6.25vw;
  }
}

.sec-03 {
  width: 80vw;
  margin: 0 auto 21.3333333333vw;
  padding-bottom: 21.3333333333vw;
  border-bottom: #c5c5c5 1px solid;
}
@media screen and (min-width: 768px) {
  .sec-03 {
    margin: 0 auto 6.25vw;
    padding-bottom: 6.25vw;
  }
}

.sec-03 .news {
  display: block;
}

@media screen and (min-width: 768px) {
  .sec-03 .news__img {
    width: 52.5vw;
    margin-bottom: 1.953125vw;
  }
}

.sec-04 {
  width: 80vw;
  margin: 0 auto 21.3333333333vw;
  padding-bottom: 21.3333333333vw;
  border-bottom: #c5c5c5 1px solid;
}
@media screen and (min-width: 768px) {
  .sec-04 {
    margin: 0 auto 6.25vw;
    padding-bottom: 6.25vw;
  }
}
.sec-04 .news__inner {
  width: 100%;
}

.sec-05 {
  width: 80vw;
  margin: 0 auto 21.3333333333vw;
  padding-bottom: 21.3333333333vw;
  border-bottom: #c5c5c5 1px solid;
}
@media screen and (min-width: 768px) {
  .sec-05 {
    margin: 0 auto 6.25vw;
    padding-bottom: 6.25vw;
  }
}

@media screen and (min-width: 768px) {
  .news {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
    width: 52.5vw;
  }
}
.news__img {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__img {
    margin-bottom: 0;
    width: 25.390625vw;
  }
}

@media screen and (min-width: 768px) {
  .sec-02 .news {
    flex-direction: row-reverse;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 0 auto;
    width: 52.5vw;
  }
}

.news__img small {
  display: block;
  margin-top: 2.6666666667vw;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__img small {
    margin-top: 0.78125vw;
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 768px) {
  .news__inner {
    width: 25.078125vw;
  }
}

.location {
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  .location {
    margin-bottom: 0;
  }
}

.news__contents {
  position: relative;
  font-size: 13px;
  line-height: 1.5em;
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .news__contents {
    margin-top: 5.859375vw;
  }
}

.news__contents a {
  display: block;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #333;
}

.news__contents li {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .news__contents li {
    margin-bottom: 0.78125vw;
  }
}

.news__contents li:first-child {
  display: flex;
  align-items: center;
}
.news__contents__img {
  width: 3.2vw;
  margin-left: 0.8vw;
}
@media screen and (min-width: 768px) {
  .news__contents__img {
    width: 0.78125vw;
    margin-left: 0.234375vw;
  }
}

.attention {
  font-size: 13px;
  line-height: 1.5em;
}

.news__name {
  position: relative;
  margin-bottom: 2.6666666667vw;
  text-align: start;
  font-size: 4.8vw;
  letter-spacing: 0.1em;
  line-height: 1.5em;
}
@media screen and (min-width: 768px) {
  .news__name {
    margin-bottom: 0.78125vw;
    font-size: 1.40625vw;
    letter-spacing: 0.1em;
  }
}

.day {
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .day {
    margin-bottom: 0.78125vw;
  }
}

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