@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  padding: 29px 44px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 80;
}
.header.hidden {
  -webkit-transform: translate(-50%, -100px);
          transform: translate(-50%, -100px); /* ヘッダの高さだけ上に移動 */
}
.header > .container {
  display: block;
  max-width: 100%;
  padding: 0;
}
.header > .container > .list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 18px;
}
.header > .container > .list-menu > .menu {
  margin: 0 12px;
  padding: 5px;
}
.header > .container > .list-menu > .menu > .link {
  color: #95FF00;
  font-size: clamp(0.625rem, 1vw, 0.75rem);
}
.header > .container > .box-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding-right: 17px;
}
.header > .container > .box-info > .list-environment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #000000;
  border: 1px solid #95FF00;
  border-radius: 50px;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin-right: 12px;
  padding: 9px 24px;
}
.header > .container > .box-info > .list-environment > .environment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 5px;
}
.header > .container > .box-info > .list-environment > .environment > .label,
.header > .container > .box-info > .list-environment > .environment > .data {
  color: #95FF00;
  font-size: clamp(10px, 0.8vw, 11px);
}
.header > .container > .box-info > .box-instagram {
  width: 40px;
}
.header > .container > .hamburger-menu {
  display: none;
  position: absolute;
  top: 38px;
  right: 32px;
  width: 50px;
  height: 12px;
  cursor: pointer;
  z-index: 1100;
}
@media screen and (max-width: 640px) {
  .header > .container > .hamburger-menu {
    top: 30px;
    right: 20px;
  }
}
.header > .container > .hamburger-menu > .line {
  background-color: #ffffff;
  position: absolute;
  left: 0;
  height: 1px;
}
.header > .container > .hamburger-menu > .line:first-child {
  width: 100%;
  top: 0;
}
.header > .container > .hamburger-menu > .line:last-child {
  width: 80%;
  bottom: 0;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu > .line {
    height: 1px;
  }
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 8px;
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu > .line.active:first-child {
    top: 6px;
  }
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  width: 100%;
  bottom: 5px;
}
.header > .container > .menu-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #000000;
  width: 100%;
  height: 100vh;
  padding: 88px;
  z-index: 1000;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp {
    padding: 50px 20px;
  }
}
.header > .container > .menu-sp > .box-menu-content {
  position: absolute;
  width: 80%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content {
    width: 90%;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu {
  padding-bottom: 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu {
    padding-bottom: 28px;
    margin-bottom: 38px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu {
  min-width: 290px;
  margin-bottom: 40px;
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu:nth-child(odd) {
  margin-right: 40px;
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu {
    margin-bottom: 20px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
  color: #95FF00;
  font-size: 16px;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
    font-size: 13px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link > .english-instrument {
  display: block;
  color: #ffffff;
  font-size: 47px;
  margin-bottom: 8px;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link > .english-instrument {
    font-size: 37px;
  }
}
.header > .container > .menu-sp.active {
  display: block;
}
.header.scroll-nav > .container > .box-logo > .link > .image.black {
  display: block;
}
.header.scroll-nav > .container > .box-logo > .link > .image.white {
  display: none;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  position: relative;
  padding: 37px;
}
.footer > .container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-image: url(../../assets/imgs/background_footer.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  max-width: 100%;
  padding: 34px 29px 34px 34px;
}
.footer > .container > .box-logo {
  max-width: 434px;
  width: 100%;
}
.footer > .container > .box-logo > .link {
  width: 100%;
  height: 100%;
  display: inline-block;
}
.footer > .container > .box-information > .address {
  color: #000000;
  font-size: clamp(16px, 1.54vw, 28px);
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-align: right;
  margin-bottom: 229px;
}
.footer > .container > .box-information > .list-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 14px;
}
.footer > .container > .box-information > .list-sns > .sns {
  background-color: #000000;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  margin-left: 8px;
  padding-top: 2px;
}
.footer > .container > .box-information > .list-sns > .sns > .link {
  color: #95FF00;
  font-size: 10px;
  padding: 6px 8px 6px 10px;
}
.footer > .container > .box-information > .copyright {
  color: #000000;
  font-size: clamp(16px, 1.54vw, 28px);
  text-align: right;
}

body {
  font-family: eb-garamond, "Shippori Mincho", serif;
  background-color: #000000;
  background-image: url(../../assets/imgs/background.png);
  background-attachment: fixed;
  top: 0;
  color: #95FF00;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.english-ttcomons {
  font-family: "tt-commons-pro", sans-serif;
  font-weight: 500;
}

.english-instrument {
  font-family: "instrument-serif", sans-serif;
  font-weight: 400;
}

.english-instrument-italic {
  font-family: "instrument-serif", sans-serif;
  font-weight: 400;
  font-style: italic;
}

img {
  width: 100%;
}

@media screen and (max-width: 820px) {
  .pc {
    display: none;
  }
}

.md {
  display: none;
}
@media screen and (max-width: 1024px) {
  .md {
    display: block;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 820px) {
  .sp {
    display: block;
  }
}

.xs {
  display: none;
}
@media screen and (max-width: 480px) {
  .xs {
    display: block;
  }
}

section {
  position: relative;
  width: 100%;
}

.container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1186px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

.fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
}

.fade-up {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
  transition: all 1s cubic-bezier(0.42, 0, 0.21, 1);
}

.button {
  position: relative;
  padding: 16px 60px;
  background-color: #95FF00;
  border-radius: 50px;
  color: #000000;
}
.button:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  border: 1px solid #95FF00;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  z-index: -1;
}