@charset "UTF-8";
/*
全てのページに影響するCSSに関して記述しているファイル
phpで作成したpartsごとのファイルを作成する様にする
*/
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.header {
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.header.hidden {
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px); /* ヘッダの高さだけ上に移動 */
}
@media screen and (max-width: 820px) {
  .header {
    top: 24px;
  }
}
@media screen and (max-width: 640px) {
  .header {
    top: 24px;
  }
}
.header > .container > .box-logo {
  position: fixed;
  top: 26px;
  left: 34px;
  z-index: 80;
}
@media screen and (max-width: 480px) {
  .header > .container > .box-logo {
    top: 16px;
    left: 20px;
  }
}
.header > .container > .box-logo > .link > .image {
  width: 94px;
  height: 101px;
}
@media screen and (max-width: 820px) {
  .header > .container > .box-logo > .link > .image {
    width: 56px;
    height: 61px;
  }
}
.header > .container > .box-logo > .link > .image.black {
  display: none;
}
.header > .container > .hamburger-menu {
  position: fixed;
  top: 35px;
  right: 34px;
  width: 52px;
  height: 40px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 820px) {
  .header > .container > .hamburger-menu {
    height: 31px;
  }
}
@media screen and (max-width: 480px) {
  .header > .container > .hamburger-menu {
    top: 25px;
    right: 18px;
  }
}
.header > .container > .hamburger-menu > .line {
  position: absolute;
  right: 0;
  width: 100%;
  height: 2px;
}
.header > .container > .hamburger-menu > .line:first-child {
  top: 0;
  width: 49px;
}
@media screen and (max-width: 820px) {
  .header > .container > .hamburger-menu > .line:first-child {
    width: 49px;
  }
}
.header > .container > .hamburger-menu > .line:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 52px;
}
@media screen and (max-width: 820px) {
  .header > .container > .hamburger-menu > .line:nth-child(2) {
    width: 42px;
  }
}
.header > .container > .hamburger-menu > .line:last-child {
  bottom: 0;
  width: 37px;
}
@media screen and (max-width: 820px) {
  .header > .container > .hamburger-menu > .line:last-child {
    width: 27px;
  }
}
.header > .container > .hamburger-menu > .line.active {
  background-color: #ffffff;
}
.header > .container > .hamburger-menu > .line.active:first-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 7px;
}
@media screen and (max-width: 820px) {
  .header > .container > .hamburger-menu > .line.active:first-child {
    top: -1px;
  }
}
@media screen and (max-width: 640px) {
  .header > .container > .hamburger-menu > .line.active:first-child {
    top: 7px;
    width: 41px;
  }
}
.header > .container > .hamburger-menu > .line.active:nth-child(2) {
  display: none;
}
.header > .container > .hamburger-menu > .line.active:last-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 31px;
  right: 6px;
  width: 49px;
}
@media screen and (max-width: 640px) {
  .header > .container > .hamburger-menu > .line.active:last-child {
    bottom: 24px;
    width: 39px;
  }
}
.header > .container > .hamburger-menu > .line > .image.black {
  display: none;
}
.header > .container > .menu-sp {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../../assets/imgs/background.png);
  background-size: cover;
  width: 100%;
  height: 100vh;
  padding: 18px;
  z-index: 90;
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp {
    padding: 46px 18px;
    overflow: auto;
  }
}
.header > .container > .menu-sp > .box-menu-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .header > .container > .menu-sp > .box-menu-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content {
    position: relative;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content {
    overflow: auto;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 660px;
}
@media screen and (max-width: 1024px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu {
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu {
    max-width: 100%;
    -webkit-column-count: unset;
       -moz-column-count: unset;
            column-count: unset;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu {
    margin: 0;
  }
}
.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: #000000;
  font-size: 24px;
  padding: 24px 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 1440px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link {
    font-size: 14px;
  }
}
.header > .container > .menu-sp > .box-menu-content > .list-menu > .menu > .link > .english {
  display: block;
  color: #818181;
  font-size: 10px;
  margin-bottom: 8px;
}
.header > .container > .menu-sp > .box-menu-content > .box-image {
  -ms-flex-item-align: start;
      align-self: flex-start;
  max-width: 437px;
  width: 100%;
  margin-left: 40px;
}
@media screen and (max-width: 1024px) {
  .header > .container > .menu-sp > .box-menu-content > .box-image {
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 640px) {
  .header > .container > .menu-sp > .box-menu-content > .box-image {
    display: none;
  }
}
.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;
}
.header.scroll-nav > .container > .hamburger-menu > .line > .image.black {
  display: block;
}
.header.scroll-nav > .container > .hamburger-menu > .line > .image.white {
  display: none;
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.footer {
  position: relative;
  background-color: #1c1713;
  padding: 54px 0 34px 20px;
}
@media screen and (max-width: 820px) {
  .footer {
    padding: 34px 20px 34px;
  }
}
.footer > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer > .container > .box-logo {
  position: absolute;
  right: 0;
  width: 336px;
  margin-left: 27px;
  margin-top: -139px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-logo {
    position: relative;
    width: 250px;
    margin: 0 auto 40px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-logo {
    max-width: 170px;
  }
}
.footer > .container > .list-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 25px;
  margin-right: 320px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .list-menu {
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .list-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer > .container > .list-menu > .menu {
  margin: 0 18px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 1440px) {
  .footer > .container > .list-menu > .menu {
    margin: 0 11px;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .list-menu > .menu {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-align: center;
    margin: 0 0 16px;
  }
}
.footer > .container > .list-menu > .menu > .link {
  color: #ffffff;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
.footer > .container > .list-menu > .menu > .link > .english {
  color: #818181;
  font-size: 10px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer > .container > .box-link > .button {
  background-image: url(../../assets/imgs/button-frame-white.svg);
  width: 282px;
  margin-bottom: 24px;
}
@media screen and (max-width: 1440px) {
  .footer > .container > .box-link > .button {
    max-width: 252px;
  }
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-link > .button {
    margin: 0 12px 16px;
  }
}
@media screen and (max-width: 480px) {
  .footer > .container > .box-link > .button {
    margin: 0 0 16px;
  }
}
.footer > .container > .box-link > .button > .link {
  color: #ffffff;
  padding: 24px 56px;
}
@media screen and (max-width: 1440px) {
  .footer > .container > .box-link > .button > .link {
    padding: 18px 12px;
  }
}
@media screen and (max-width: 820px) {
  .footer > .container > .box-link > .button > .link {
    padding: 21px 12px;
  }
}
.footer > .container > .box-link > .button > .link > .icon {
  width: 11px;
}
.footer > .container > .box-link > .copyright {
  color: #e8e8e8;
  font-size: 11px;
  letter-spacing: 0.17em;
  margin-top: 43px;
}
@media screen and (max-width: 1024px) {
  .footer > .container > .box-link > .copyright {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .footer > .container > .box-link > .copyright {
    margin-top: 24px;
  }
}

/*
変数関係をまとめたファイル
 */
/*
ブレイクポイントに関して記述しているファイル
下のブレイクポイントの設定を変更するときは必ずPMに一声かける
 */
.section-contact {
  max-width: 93%;
  margin: 0 auto 20px;
  padding: 0 20px;
}
@media screen and (max-width: 1440px) {
  .section-contact {
    max-width: 95%;
  }
}
@media screen and (max-width: 820px) {
  .section-contact {
    max-width: 100%;
  }
}
.section-contact > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 640px) {
  .section-contact > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.section-contact > .container > .section-title {
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-right: 32px;
}
@media screen and (max-width: 640px) {
  .section-contact > .container > .section-title {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    margin-right: 0;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .section-title {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
.section-contact > .container > .section-title > .english {
  color: #818181;
  font-size: 11px;
  letter-spacing: 0.14em;
}
.section-contact > .container > .list-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.section-contact > .container > .list-contact > .contact {
  position: relative;
  background-color: #d9d9d9;
  text-align: center;
  width: 100%;
  padding: 24px;
  margin-bottom: 20px;
}
.section-contact > .container > .list-contact > .contact:before, .section-contact > .container > .list-contact > .contact:after {
  content: "";
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-top-color: #e3e3e3;
  position: absolute;
  top: 0;
}
.section-contact > .container > .list-contact > .contact:before {
  border-left-color: #e3e3e3;
  left: 0;
}
.section-contact > .container > .list-contact > .contact:after {
  border-right-color: #e3e3e3;
  right: 0;
}
.section-contact > .container > .list-contact > .contact > .triangle:before, .section-contact > .container > .list-contact > .contact > .triangle:after {
  content: "";
  width: 0;
  height: 0;
  border: 12px solid transparent;
  border-bottom-color: #e3e3e3;
  position: absolute;
  bottom: 0;
}
.section-contact > .container > .list-contact > .contact > .triangle:before {
  border-left-color: #e3e3e3;
  left: 0;
}
.section-contact > .container > .list-contact > .contact > .triangle:after {
  border-right-color: #e3e3e3;
  right: 0;
}
.section-contact > .container > .list-contact > .contact > .label {
  color: #818181;
  font-size: 11px;
  margin-bottom: 4px;
}
.section-contact > .container > .list-contact > .contact > .text {
  margin-bottom: 8px;
}
.section-contact > .container > .list-contact > .contact > .text > .link {
  color: #000000;
  font-size: 24px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 640px) {
  .section-contact > .container > .list-contact > .contact > .text > .link {
    font-size: 16px;
  }
}
.section-contact > .container > .list-contact > .contact > .notice {
  color: #818181;
  font-size: 12px;
}
.section-contact > .container > .list-contact > .contact:first-child {
  margin-right: 20px;
}
@media screen and (max-width: 820px) {
  .section-contact > .container > .list-contact > .contact:first-child {
    margin-right: 0;
  }
}
.section-contact > .container > .list-contact > .contact:first-child, .section-contact > .container > .list-contact > .contact:nth-child(2) {
  max-width: 386px;
}
@media screen and (max-width: 820px) {
  .section-contact > .container > .list-contact > .contact:first-child, .section-contact > .container > .list-contact > .contact:nth-child(2) {
    max-width: 100%;
  }
}
.section-contact > .container > .list-contact > .contact:last-child {
  max-width: 792px;
  text-align: left;
  padding: 29px 52px;
}
@media screen and (max-width: 480px) {
  .section-contact > .container > .list-contact > .contact:last-child {
    padding: 29px 33px;
  }
}
.section-contact > .container > .list-contact > .contact:last-child > .link > .label {
  color: #818181;
  font-size: 11px;
}
.section-contact > .container > .list-contact > .contact:last-child > .link > .text {
  color: #000000;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.section-contact > .container > .list-contact > .contact:last-child > .link > .notice {
  color: #818181;
  display: inline-block;
  vertical-align: middle;
  margin-left: 40px;
}
@media screen and (max-width: 640px) {
  .section-contact > .container > .list-contact > .contact:last-child > .link > .notice {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }
}
.section-contact > .container > .list-contact > .contact:last-child > .link > .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 26px;
  width: 14px;
}

body {
  font-family: "source-han-serif-jp-subset", sans-serif;
  color: #000000;
  overflow: auto;
}
body.static {
  overflow: hidden;
}

.box-background {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../../assets/imgs/background.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh;
}

img {
  width: 100%;
  vertical-align: top;
}

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

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

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

.inline-block {
  display: inline-block;
}

section {
  position: relative;
}

.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;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: url(../../assets/imgs/button-frame-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 356px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .button {
    width: 256px;
  }
}
.button > .link {
  display: inline-block;
  color: #000000;
  letter-spacing: 0.17em;
  padding: 32px 66px;
}
@media screen and (max-width: 820px) {
  .button > .link {
    font-size: 14px;
    padding: 19px 46px;
  }
}
@media screen and (max-width: 640px) {
  .button > .link {
    font-size: 12px;
    padding: 23px 36px;
  }
}
.button > .link > .icon {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 14px;
}
@media screen and (max-width: 820px) {
  .button > .link > .icon {
    right: 30px;
    width: 10px;
  }
}
@media screen and (max-width: 640px) {
  .button > .link > .icon {
    right: 14px;
  }
}

.decoration {
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: italic;
}

.box-title {
  position: absolute;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
.box-title > .section-title {
  font-size: 30px;
  letter-spacing: 0.3em;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .box-title > .section-title {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}
.box-title > .section-title > .english {
  color: #818181;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  color: black;
  border-radius: 0;
  background-color: #000000;
  font-family: "minion-pro", serif;
  font-size: 25px;
  z-index: 400;
}
@media screen and (max-width: 480px) {
  .loader {
    font-size: 14px;
  }
}
.loader > .loading {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 500;
}
.loader > .image {
  position: absolute;
  top: 50.3%;
  left: 49.5%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 150px;
}
@media screen and (max-width: 480px) {
  .loader > .image {
    width: 110px;
  }
}